:root {
  --color-page: #f7f4eb;
  --color-card: #fffefc;
  --color-soft: #f3f7f4;
  --color-ink: #20292c;
  --color-body: #273236;
  --color-muted: #667477;
  --color-teal: #2f7074;
  --color-teal-dark: #1f4144;
  --color-teal-soft: #eaf5f1;
  --color-line: #c8ddd7;
  --color-red: #b95a52;
  --color-logo-red: #e30018;
  --color-red-soft: #f6e7e2;
  --color-gold: #c6a566;
  --color-white: #fff;
  --color-topbar: #1f2b2e;
  --color-footer: #183438;
  --shadow-card:
    0 16px 22px rgba(36, 68, 63, 0.105), 0 2px 5px rgba(31, 65, 68, 0.05);
  --shadow-mobile: 0 6px 8px rgba(36, 78, 77, 0.12);
  --shadow-float: 0 22px 46px rgba(23, 45, 46, 0.24);
  --radius-card: 14px;
  --radius-main: 16px;
  --radius-drawer: 22px;
  --content-width: 1408px;
  --font-sans:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Noto Sans CJK SC", Arial, sans-serif;
  --focus-ring: 0 0 0 3px rgba(47, 112, 116, 0.24);
}

/* 地区专属公开资源链接允许长区县名自然换行，不用缩小字号掩盖溢出。 */
.license-footer-nav .place-resource-link {
  max-width: 320px;
  height: auto;
  min-height: 32px;
  justify-content: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  line-height: 1.45;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  background: var(--color-page);
  color: var(--color-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
}
body.drawer-open {
  overflow: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-teal-dark);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-shell {
  min-height: 100vh;
}
.content-boundary {
  width: min(calc(100% - 128px), var(--content-width));
  margin-inline: auto;
}
.loading-card {
  width: min(560px, calc(100% - 24px));
  margin: 80px auto;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-main);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  color: var(--color-teal-dark);
  text-align: center;
}
.topbar {
  min-height: 38px;
  background: var(--color-topbar);
  color: #e8eeec;
  font-size: 14px;
}
.topbar-inner {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.topbar-left {
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.topbar-left a,
a.topbar-center,
.topbar-actions a {
  color: inherit;
  text-decoration: none;
}
.topbar-city-trigger {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.topbar-city-trigger:hover,
.topbar-city-trigger:focus-visible {
  color: #fff;
  text-decoration: underline;
}
.topbar-center em {
  color: #ff827d;
  font-style: normal;
  font-weight: 500;
}
.topbar-left a:hover,
.topbar-center:hover,
.topbar-actions a:hover {
  color: #fff;
  text-decoration: underline;
}
.topbar-center {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 7px;
  white-space: nowrap;
}
.topbar-ai-icon {
  display: inline-grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}
html[data-auth-pending="true"] .topbar-actions,
html[data-auth-pending="true"] .header-actions {
  position: relative;
  visibility: visible;
  pointer-events: none;
}
html[data-auth-pending="true"] .topbar-actions > *,
html[data-auth-pending="true"] .header-actions > * {
  visibility: hidden;
}
html[data-auth-pending="true"] .topbar-actions::after {
  display: inline-flex;
  min-width: 220px;
  min-height: 38px;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.78);
  content: "会员状态读取中";
  font-size: 14px;
  line-height: 38px;
  white-space: nowrap;
}
html[data-auth-pending="true"] .header-actions::after {
  box-sizing: border-box;
  display: inline-flex;
  width: 143px;
  height: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-logo-red);
  border-radius: 9px;
  background: var(--color-logo-red);
  color: #fff;
  content: "免费发布信息";
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.member-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.member-status strong {
  color: #fff;
  font-size: 14px;
}
.member-status span {
  color: #d9e4e1;
  font-size: 14px;
}
.plain-action {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.button-primary[hidden=""],
.button-secondary[hidden=""] {
  display: none !important;
}
.header-wrap {
  padding-top: 10px;
}
.header-card {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 348px 560px 1fr;
  align-items: center;
  gap: 20px;
  height: 94px;
  min-height: 94px;
  padding: 7px 23px 7px 19px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-main);
  background: linear-gradient(135deg, #fffefb, #f4faf7);
  box-shadow: var(--shadow-card);
}
.brand-group {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 16px;
}
.brand-logo {
  width: 84px;
  height: 54px;
  object-fit: contain;
}
.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  width: max-content;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
}
.brand-logo-wrap:after {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -55%;
  width: 24%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.88),
    transparent
  );
  content: "";
  filter: blur(1px);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: skewX(-20deg) translateX(0);
  will-change: transform;
  animation: xwang-logo-shine 6.8s ease-in-out infinite;
}
@keyframes xwang-logo-shine {
  0%,
  78% {
    transform: skewX(-20deg) translateX(0);
  }
  92%,
  100% {
    transform: skewX(-20deg) translateX(680%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-logo-wrap:after {
    animation: none;
    opacity: 0;
  }
}
.search-panel {
  display: grid;
  grid-template-rows: 30px 42px;
  width: 560px;
  height: 72px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: var(--color-white);
}
.search-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
}
.search-tab {
  min-height: 30px;
  padding: 3px 8px;
  border: 0;
  border-right: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-soft);
  color: var(--color-muted);
  font-size: 14px;
  cursor: pointer;
}
.search-tab:last-child {
  border-right: 0;
}
.search-tab.is-active {
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
}
.search-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 88px;
  min-width: 0;
}
.search-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  width: 19.2px;
  height: 19.2px;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}
.search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-input {
  min-width: 0;
  height: 42px;
  padding: 0 16px 0 45px;
  border: 0;
  border-top: 1px solid var(--color-line);
  border-right: 0;
  border-radius: 11px 0 0 11px;
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 16px;
}
.search-submit {
  height: 42px;
  border: 0;
  border-radius: 0 0 11px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 750;
  cursor: pointer;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  width: 238px;
  gap: 10px;
  transform: translateY(-1px);
}
.header-actions .button-primary {
  width: 116px;
  min-height: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}
.header-actions .button-secondary {
  width: 112px;
  min-height: 40px;
  height: 40px;
  padding: 0;
}
.mobile-label,
.mobile-header-ctas {
  display: none;
}
.button-primary,
.button-secondary {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}
.button-primary {
  border: 1px solid var(--color-red);
  background: var(--color-red);
  color: var(--color-white);
}
.header-actions .button-primary,
.mobile-header-ctas .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.cta-leading-icon {
  display: inline-grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
}
.cta-leading-icon .line-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.button-secondary {
  border: 1px solid var(--color-red);
  background: var(--color-white);
  color: var(--color-red);
}
.ai-banner {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-main);
  background: var(--color-card);
  box-shadow: var(--shadow-mobile);
  color: inherit;
  text-decoration: none;
}
.ai-badge {
  display: grid;
  flex: 0 0 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #30519a, #213e70);
  color: var(--color-white);
  font-weight: 800;
}
.ai-banner strong {
  color: var(--color-ink);
  font-size: 15px;
}
.ai-banner p {
  color: var(--color-muted);
  font-size: 14px;
}
.main-nav {
  margin-top: 10px;
  height: 58px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}
.nav-scroll {
  display: grid;
  grid-template-columns: 73.285714px 95.285714px 95.285714px 95.285714px 95.285714px 107.285714px 95.285714px 95.285714px 73.285714px 95.285714px 95.285714px 95.285714px 95.285714px 125.285714px;
  column-gap: 4px;
  align-items: stretch;
  position: relative;
  top: -1px;
  height: 58px;
  min-height: 58px;
  overflow: visible;
  padding: 5px 11px;
}
.nav-item {
  position: relative;
  min-height: 46px;
  padding: 0 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}
.nav-item[data-nav-index="13"] {
  padding-right: 4px !important;
  padding-left: 4px !important;
  white-space: nowrap !important;
}
.nav-item:after {
  position: absolute;
  right: 18px;
  bottom: 3px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  content: "";
}
.nav-item:is(:hover, :focus-visible, .is-active) {
  background: var(--color-teal-soft);
  color: var(--color-teal-dark);
}
.nav-item.is-active {
  background: linear-gradient(135deg, var(--color-teal), #3c8987);
  color: var(--color-white);
}
.nav-item:is(:hover, :focus-visible, .is-active):after {
  background: #e30018;
}
.nav-item.is-active:after {
  background: transparent;
}
.nav-item.is-active:before {
  position: absolute;
  top: 2px;
  right: 12px;
  left: 12px;
  height: 1px;
  background: #8ec5bc;
  content: "";
  opacity: 0.55;
}
.nav-all {
  display: none;
}
.section-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 58px;
  min-height: 58px;
  padding: 8px 16px;
  border-bottom: 1px solid #e3ece9;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-heading-link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.section-heading-link:is(:hover, :focus-visible) h2 {
  color: var(--color-red);
}
.section-heading-link:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
  border-radius: 8px;
}
.section-heading h2 {
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.35;
}
.section-count {
  flex: 0 0 auto;
  padding: 6px 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-teal-soft);
  color: var(--color-teal);
  font-size: 14px;
  font-weight: 700;
}
.icon-slot {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-teal-soft);
  color: var(--color-teal);
}
.icon-slot.is-red {
  border-color: #eac3bc;
  background: var(--color-red-soft);
  color: var(--color-red);
}
.line-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guide-section {
  height: 126px;
  margin-top: 10px;
  overflow: hidden;
}
.guide-layout {
  position: relative;
  top: -1px;
  left: -1px;
  display: grid;
  grid-template-columns: 180px 1fr;
  width: 1408px;
  height: 126px;
  min-height: 126px;
}
.guide-intro {
  position: relative;
  display: grid;
  padding: 8px 14px;
  place-items: center;
  border-radius: 13px 0 0 13px;
  background: linear-gradient(145deg, #2f7074, #378887);
  color: var(--color-white);
  text-align: center;
}
.guide-intro:after {
  position: absolute;
  top: 8px;
  right: -1px;
  width: 1px;
  height: calc(100% - 16px);
  background: #c8ddd7;
  content: "";
  opacity: 0.9;
}
.guide-intro > .icon-slot {
  display: none;
}
.guide-intro h2 {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.guide-intro .guide-slogan {
  margin-top: 3px;
  color: #dceae8;
  font-size: 14px;
}
.guide-pill {
  display: inline-grid;
  min-width: 102px;
  min-height: 26px;
  margin-top: 8px;
  padding-inline: 10px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #ffffff1f;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}
.guide-mobile-link,
.guide-dots {
  display: none;
}
.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, 1fr);
  padding: 15px 24px 15px 20px;
}
.guide-item {
  position: relative;
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.guide-item:nth-child(-n + 6) {
  border-bottom: 1px dashed #e8ecea;
}
.guide-item:hover {
  background: var(--color-soft);
}
.guide-index {
  color: var(--color-red);
  font-size: 14px;
  font-weight: 800;
}
.guide-title {
  overflow: hidden;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guide-date {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 450;
  text-align: right;
}
.category-section {
  margin-top: 10px;
}
.category-section > .section-header {
  display: none;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: var(--color-card);
}
.category-columns {
  display: grid;
  grid-template-columns: 350fr 380fr 315fr 315fr;
  gap: 10px;
  height: 1250px;
  min-height: 1250px;
  padding-top: 0;
}
.category-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.category-card {
  position: relative;
  flex: none;
  min-height: 0;
  overflow: visible;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}
.category-card:first-child,
.category-column:not(:first-child) .category-card:first-child {
  border-radius: var(--radius-card);
}
.category-card[data-card-index="0"] {
  height: 1250px;
}
.category-card[data-card-index="1"] {
  height: 301px;
}
.category-card[data-card-index="2"] {
  height: 371px;
}
.category-card[data-card-index="3"] {
  height: 558px;
}
.category-card[data-card-index="4"] {
  height: 428px;
}
.category-card[data-card-index="5"] {
  height: 224px;
}
.category-card[data-card-index="6"] {
  height: 258px;
}
.category-card[data-card-index="7"] {
  height: 310px;
}
.category-card[data-card-index="8"] {
  height: 512px;
}
.category-card[data-card-index="9"] {
  height: 728px;
}
.category-card-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  min-height: 64px;
  width: 100%;
  padding: 10px 16px;
  border-bottom: 1px solid #e5eeeb;
  border-radius: 13px 13px 0 0;
  background: linear-gradient(135deg, #f5faf7, #fbf8ef);
}
.category-card-header .icon-slot {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
}
.category-title-link {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.category-title-copy {
  display: block;
  min-width: 0;
}
.category-count {
  display: none;
  color: var(--color-muted);
  font-size: 14px;
}
.category-card-header h3 {
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1.3;
}
.category-title-link.is-two-line h3 {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 18px;
}
.category-title-region,
.category-title-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.category-title-link.is-long-region .category-title-region {
  font-size: 14px;
}
.category-column:nth-child(n + 3) .category-title-link.is-long-region:not(.is-two-line) h3 {
  font-size: 16px;
  white-space: nowrap;
}
.category-column:nth-child(n + 3) .category-title-link.is-long-region + .category-publish {
  padding-inline: 4px;
  font-size: 13px;
  white-space: nowrap;
}
.category-title-link:is(:hover, :focus-visible) h3 {
  color: var(--color-logo-red);
}
.category-title-link:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
  border-radius: 8px;
}
.category-card-header p {
  display: none;
  color: var(--color-muted);
  font-size: 14px;
}
.category-publish {
  min-height: 36px;
  margin-left: auto;
  padding: 0 2px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.category-items {
  display: flex;
  flex-direction: column;
  height: calc(100% - 64px);
  padding: 11px 10px 9px;
}
.category-row {
  position: relative;
  display: grid;
  flex: 1 1 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
  min-height: 0;
}
.category-row:not(:last-child):after {
  position: absolute;
  right: 6px;
  bottom: 0;
  left: 6px;
  border-bottom: 1px dashed #e8efec;
  content: "";
  pointer-events: none;
}
.category-item {
  display: flex;
  position: relative;
  min-width: 0;
  min-height: 0;
  align-items: center;
  overflow: visible;
  padding: 3px 4px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-overflow: clip;
  white-space: nowrap;
  cursor: pointer;
}
.category-item:nth-child(2n) {
  padding-left: 0;
}
.category-item:nth-child(2n):before {
  margin-right: 6px;
  margin-left: -1px;
}
.category-item:before {
  display: inline-block;
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--color-teal);
  content: "";
  vertical-align: 3px;
}
.category-item:is(:hover, :focus-visible) {
  border-radius: 4px;
  background: #000;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.42);
  color: #fff;
}
.category-item:is(:hover, :focus-visible):before {
  background: transparent;
}
.sales-popover {
  position: fixed;
  z-index: 95;
  box-sizing: border-box;
  width: min(298px, calc(100vw - 20px));
  height: 243px;
  min-height: 243px;
  overflow: hidden;
  padding: 7px 10px;
  border: 2px solid #e30018;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px #1d3e402e;
  backdrop-filter: none;
}
.sales-popover[hidden=""],
.sales-popover h3,
.sales-popover p {
  display: none;
}
.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}
.sales-grid a {
  display: block;
  min-width: 0;
  height: 25px;
  min-height: 25px;
  overflow: hidden;
  padding: 0 3px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-body);
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.sales-grid a:hover,
.sales-grid a:focus-visible {
  border-color: var(--color-line);
  background: var(--color-teal-soft);
  color: var(--color-teal-dark);
}
.subcategory-popover {
  position: fixed;
  z-index: 95;
  box-sizing: border-box;
  width: min(var(--subcategory-width, 298px), calc(100vw - 16px));
  max-height: calc(100vh - 20px);
  overflow: auto;
  padding: 7px 13px;
  border: 2px solid #e30018;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px #1d3e402e;
  backdrop-filter: none;
}
.subcategory-popover[hidden=""] {
  display: none;
}
.subcategory-popover > header {
  display: none;
}
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(var(--subcategory-columns, 1), max-content);
  column-gap: 15px;
  row-gap: 0;
  margin: 0;
}
.subcategory-grid a {
  display: flex;
  min-width: 0;
  height: 25px;
  min-height: 25px;
  align-items: center;
  overflow: visible;
  padding: 0 2px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  text-overflow: clip;
  white-space: nowrap;
}
.subcategory-drawer-grid a {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid #e1ece8;
  border-radius: 9px;
  background: var(--color-soft);
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.45;
  text-decoration: none;
}
.subcategory-grid a:hover,
.subcategory-grid a:focus-visible,
.subcategory-drawer-grid a:focus-visible {
  border-color: var(--color-line);
  background: var(--color-teal-soft);
  color: var(--color-teal-dark);
}
.subcategory-all {
  display: none;
}
.drawer-primary-link {
  display: grid;
  margin-top: 12px;
  place-items: center;
  color: var(--color-white);
  text-decoration: none;
}
.data-section {
  margin-top: 10px;
}
.data-section > .section-header .icon-slot {
  display: none;
}
.data-section > .section-header {
  position: relative;
  width: 100%;
  padding-inline: 24px;
}
.data-section[data-section="latest"] {
  height: auto;
  min-height: 0;
  overflow: hidden;
}
.data-section[data-section="companies"] {
  height: auto;
  min-height: 138px;
  overflow: hidden;
}
.data-section[data-section="company-news"] {
  height: auto;
  min-height: 124px;
  overflow: hidden;
}
.data-section[data-section="latest"] .section-count {
  display: inline-grid;
  min-width: 126px;
  min-height: 36px;
  place-items: center;
  border-color: transparent;
  background: var(--color-red-soft);
  color: var(--color-red);
}
.data-section[data-section="company-news"] .section-count {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-weight: 400;
  box-shadow: none;
}
.latest-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 66px;
  gap: 10px 12px;
  height: auto;
  width: 100%;
  padding: 10px 24px;
}
.latest-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 66px;
  height: 66px;
  padding: 6px 9px;
  border: 1px solid #e2ebe8;
  border-radius: 12px;
  background: var(--color-soft);
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.latest-card:hover {
  background: var(--color-teal-soft);
}
.latest-card .icon-slot {
  width: 40px;
  height: 40px;
}
.latest-visual {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
}
.latest-visual.has-image {
  border: 1px solid var(--color-line);
  background: var(--color-white);
}
.latest-visual > .icon-slot {
  border: 0;
  border-radius: 0;
  background: center / 34px 34px no-repeat
    url("../images/x-logo-mark.webp?v=f9f2443d3920");
}
.latest-visual > .icon-slot .line-icon {
  display: none;
}
.latest-xmark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: #fff;
}
.latest-visual .latest-xmark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.latest-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-image-count {
  display: none;
}
.latest-copy {
  display: block;
  min-width: 0;
  overflow: hidden;
}
.latest-title {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.latest-meta {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.35;
}
.latest-meta time {
  flex: 0 0 auto;
  white-space: nowrap;
}
.tag-pill {
  min-width: 0;
  overflow: hidden;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--color-red-soft);
  color: var(--color-red);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  height: auto;
  width: 100%;
  padding: 10px 24px;
}
.company-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  height: 72px;
  min-height: 72px;
  padding: 10px 13px;
  border: 1px solid #e2ebe8;
  border-radius: 12px;
  background: var(--color-soft);
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.company-visual {
  display: grid;
  width: 58px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  transform: translateY(-1px);
}
.company-visual img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}
.company-card strong {
  display: block;
  overflow: hidden;
  color: var(--color-teal);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-card span {
  color: var(--color-muted);
  font-size: 14px;
}
.company-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-register {
  width: auto;
  min-height: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
}
.company-mobile-count {
  display: none;
}
.company-cta {
  display: none;
  justify-content: center;
  padding: 0 14px 14px;
}
.company-cta button {
  width: min(520px, 100%);
}
.news-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  height: 66px;
  width: 100%;
  min-height: 66px;
  padding: 8px 24px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.company-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 12px;
  padding: 0 24px 10px;
}
.company-news-list .news-body {
  height: 44px;
  min-height: 44px;
  padding: 4px 8px;
  border-bottom: 1px solid #e2ebe8;
}
.news-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 14px;
}
.news-meta .tag-pill {
  background: var(--color-teal-soft);
  color: var(--color-teal);
}
.company-news-title {
  display: block;
  margin-top: 0;
  overflow: hidden;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-date {
  color: var(--color-muted);
  font-size: 14px;
}
.service-title {
  display: none;
  margin: 20px 0 10px;
  color: var(--color-ink);
  font-size: 23px;
}
.service-grid {
  display: grid;
  grid-template-columns: 376px repeat(4, 246px);
  gap: 10px;
  height: 310px;
  margin-top: 10px;
}
.service-card {
  height: 310px;
  min-height: 310px;
  padding: 18px 19px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}
.service-card-header {
  display: flex;
  height: 44px;
  min-height: 44px;
  align-items: flex-start;
  gap: 12px;
}
.service-card-header .icon-slot {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
}
.service-card-header h3 {
  color: var(--color-ink);
  font-size: 18px;
  line-height: 22px;
}
.service-card:first-child .service-card-header h3 {
  color: var(--color-red);
}
.service-card-header p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 22px;
}
.service-card-rule {
  height: 1px;
  margin: 10px 0 8px;
  background: #e3ece9;
}
.about-copy {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.about-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 8px;
  margin-top: 8px;
}
.about-links a {
  min-height: 31px;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-body);
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
}
.about-links a:before {
  margin-right: 8px;
  color: var(--color-red);
  content: "\2022";
}
.about-links a:is(:hover, :focus-visible) {
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.qr-image {
  width: 156px;
  height: 156px;
  margin: 10px auto 8px;
  object-fit: contain;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #e3ece9;
}
.qr-caption {
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}
.contact-phone {
  margin-top: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5eae8;
  color: var(--color-red);
  font-size: 25px;
  font-weight: 750;
  line-height: 35px;
  text-align: center;
}
.contact-list {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 14px;
}
.contact-list span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-list span:before {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-red-soft);
  color: var(--color-red);
  font-size: 14px;
  font-weight: 700;
  content: "Q";
}
.contact-list span:nth-child(2):before {
  content: "\5fae";
}
.contact-list span:nth-child(3):before {
  content: "@";
}
@media (min-width: 768px) {
  .license-footer {
    min-height: 148px;
    margin-top: 10px;
    border-top: 3px solid #c6a566;
    background: linear-gradient(135deg, #123f43, #155e60);
    color: #eef6f3;
    font-family:
      Arial,
      Microsoft YaHei,
      \5fae\8f6f\96c5\9ed1,
      sans-serif;
  }
  .license-inner {
    display: block;
    min-height: 145px;
    padding: 10px 0 12px;
  }
  .license-footer-nav {
    display: flex;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin: 0 0 4px;
    padding: 0;
  }
  .license-footer-nav a {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    color: #eef6f3;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
    white-space: nowrap;
  }
  .license-footer-nav a:before {
    width: 4px;
    height: 4px;
    margin-right: 7px;
    border-radius: 50%;
    background: #c6a566;
    content: "";
  }
  .license-footer-nav a:is(:hover, :focus-visible) {
    color: #ffd98e;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .license-powered {
    margin: 0;
    padding: 7px 0 0;
    border-top: 1px solid rgba(238, 246, 243, 0.22);
  }
  .license-meta {
    display: flex;
    min-height: 33px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0 0 7px;
    color: #eef6f3;
    font-size: 14px;
    line-height: 22px;
  }
  .license-grid {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
  }
  a.license-item {
    display: inline-flex;
    min-width: 0;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 3px 10px;
    border: 1px solid rgba(238, 246, 243, 0.25);
    border-radius: 5px;
    background: #ffffff14;
    color: #eef6f3;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
  }
  .license-badge-image,
  .license-badge-icon {
    display: flex;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    object-fit: contain;
  }
  .license-badge-icon {
    background: #fff1f0;
    color: #f04438;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
  }
  .license-item strong {
    color: #eef6f3;
    font-size: 14px;
    font-weight: 400;
  }
  .license-item:is(:hover, :focus-visible) {
    color: #ffd98e;
    border-color: #ffd98ea6;
    text-decoration: none;
  }
  .governance-row {
    display: flex;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 4px auto 0;
    color: #eef6f3;
    font-size: 14px;
    line-height: 22px;
  }
  .governance-row span {
    min-width: 0;
    padding: 0 12px;
    white-space: nowrap;
  }
  .governance-row span + span {
    border-left: 1px solid rgba(238, 246, 243, 0.28);
  }
}
.mobile-quick-categories,
.mobile-feed,
.mobile-compact-footer,
.mobile-bottom-nav {
  display: none;
}
.drawer-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #17202175;
}
.drawer-backdrop[hidden=""] {
  display: none;
}
.drawer {
  width: min(820px, 100%);
  max-height: min(82vh, 820px);
  overflow: hidden;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-drawer);
  background: var(--color-card);
  box-shadow: var(--shadow-float);
}
.drawer-handle {
  display: none;
}
.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #e3ece9;
}
.drawer-header h2 {
  color: var(--color-ink);
  font-size: 22px;
}
.drawer-header p {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 14px;
}
.icon-button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.drawer-content {
  max-height: calc(min(82vh, 820px) - 88px);
  overflow-y: auto;
  padding: 16px 20px 24px;
  overscroll-behavior: contain;
}
.drawer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.drawer-action {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #e1ece8;
  border-radius: 10px;
  background: var(--color-soft);
  color: var(--color-body);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}
.drawer-action:hover {
  background: var(--color-teal-soft);
  color: var(--color-teal-dark);
}
.drawer-action.is-sales {
  border-color: #eac3bc;
  background: var(--color-red-soft);
  color: var(--color-red);
  font-weight: 750;
}
.drawer-primary {
  width: 100%;
  min-height: 48px;
  margin-bottom: 12px;
  border: 1px solid var(--color-red);
  border-radius: 12px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 750;
  cursor: pointer;
}
.drawer-copy {
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.75;
}
.drawer-copy time {
  display: block;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
}
.drawer-category-group + .drawer-category-group {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e3ece9;
}
.drawer-category-group h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 19px;
}
.drawer-category-group h3 small {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}
.drawer-footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.drawer-footer-qr-card {
  padding: 14px;
  border: 1px solid #e1ece8;
  border-radius: 14px;
  background: var(--color-soft);
  text-align: center;
}
.drawer-footer-qr-card h3 {
  color: var(--color-ink);
  font-size: 18px;
}
.drawer-footer-qr-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}
.drawer-footer-qr-image {
  display: block;
  width: min(148px, 100%);
  aspect-ratio: 1;
  margin: 10px auto 0;
  border-radius: 10px;
  object-fit: contain;
}
.drawer-single-qr {
  width: min(280px, 100%);
  margin: 0 auto;
}
.drawer-single-qr .drawer-footer-qr-card {
  background: var(--color-card);
}
.drawer-contact-card {
  display: grid;
  gap: 14px;
}
.drawer-phone-link {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 12px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}
.drawer-contact-list {
  display: grid;
  gap: 8px;
}
.drawer-contact-list p {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid #e1ece8;
  border-radius: 10px;
  background: var(--color-soft);
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.5;
}
.drawer-contact-list p span {
  overflow-wrap: anywhere;
  text-align: right;
}
.drawer-contact-list.is-compact {
  margin-top: 12px;
}
.drawer-license-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.drawer-license-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 72px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e1ece8;
  border-radius: 12px;
  background: var(--color-soft);
}
.drawer-license-item small {
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}
.drawer-license-item strong {
  display: block;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.drawer-governance-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px 14px 14px 32px;
  border-radius: 12px;
  background: var(--color-teal-soft);
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.6;
}
.drawer-about-copy {
  padding: 16px;
  border: 1px solid #e1ece8;
  border-radius: 12px;
  background: var(--color-soft);
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.75;
}
.toast {
  position: fixed;
  z-index: 150;
  bottom: 28px;
  left: 50%;
  max-width: min(620px, calc(100% - 32px));
  padding: 12px 18px;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  background: var(--color-topbar);
  box-shadow: var(--shadow-float);
  color: var(--color-white);
  font-size: 15px;
  transform: translate(-50%);
}
@media (max-width: 1499px) and (min-width: 768px) {
  .content-boundary {
    width: min(calc(100% - 48px), var(--content-width));
  }
  .header-card {
    grid-template-columns: 220px minmax(360px, 1fr) auto;
    gap: 12px;
  }
  .brand-group {
    grid-template-columns: 112px 1fr;
    gap: 10px;
  }
  .search-panel {
    width: 100%;
  }
  .header-actions {
    width: 240px;
    transform: none;
  }
  .header-actions .button-primary {
    width: 126px;
  }
  .header-actions .button-secondary {
    width: 104px;
  }
  .nav-scroll {
    display: flex;
    max-width: 100%;
    gap: 3px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 8px;
    scrollbar-width: thin;
  }
  .nav-item {
    flex: 1 0 auto;
    min-width: 72px;
    padding-inline: 7px;
    font-size: 14px;
  }
  .guide-section {
    height: auto;
    overflow: hidden;
  }
  .guide-layout {
    width: 100%;
    height: auto;
    min-height: 216px;
  }
  .guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, minmax(36px, 1fr));
  }
  .guide-item {
    min-height: 36px;
  }
  .category-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    min-height: 0;
  }
  .data-section[data-section="latest"],
  .data-section[data-section="companies"],
  .data-section[data-section="company-news"] {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }
  .company-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
  }
  .company-visual {
    width: 120px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }
  .sales-popover {
    width: min(298px, calc(100vw - 20px));
  }
}
@media (max-width: 960px) and (min-width: 768px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }
  .topbar-center {
    display: none;
  }
  .header-card {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 184px;
  }
  .brand-group {
    grid-column: 1;
    grid-row: 1;
  }
  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }
  .search-panel {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* 电脑端页头：推广区与搜索区共用同一网格，按钮恢复旧版紧凑比例。 */
@media (min-width: 961px) {
  :root {
    --color-page: #fff;
    --color-card: #fff;
    --color-soft: #fff;
    --color-ink: initial;
    --color-teal: initial;
    --color-teal-soft: #fff;
    --color-line: #d8d8d8;
    --color-footer: #181818;
  }
  html,
  body,
  .site-shell,
  #main-content {
    height: auto;
    min-height: 0;
  }
  .topbar {
    background: #000;
  }
  .brand-group {
    grid-template-columns: 124px 1fr;
    padding-left: 19px;
  }
  .brand-logo {
    width: 124px;
    height: 72px;
    transform: translateY(0);
  }
  .header-card {
    height: 88px;
    min-height: 88px;
    padding: 7px 0;
    border: 1px solid var(--color-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(36, 74, 71, 0.08);
  }
  .header-actions {
    gap: 8px;
    margin-right: clamp(28px, 4vw, 64px);
    transform: none;
  }
  .search-form {
    grid-template-columns: 2fr 1fr;
  }
  .header-actions .button-primary,
  .header-actions .button-secondary {
    width: auto;
    min-width: 108px;
    height: 38px;
    min-height: 38px;
    padding: 0 13px;
    border-color: var(--color-red);
    border-radius: 6px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    box-shadow: none;
  }
  .header-actions .button-primary {
    min-width: 124px;
  }
  .header-actions .cta-leading-icon {
    background: center / 17px 17px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h4L19 9l-4-4L4 16v4zM13.5 6.5l4 4M4 20h16'/%3E%3C/svg%3E");
  }
  .header-actions .cta-leading-icon .line-icon {
    visibility: hidden;
  }
  .header-actions .button-primary:hover,
  .header-actions .button-primary:focus-visible,
  .header-actions .button-secondary:hover,
  .header-actions .button-secondary:focus-visible {
    background: #e30018;
    color: var(--color-white);
  }
  .topbar-ai-icon,
  .search-tab.is-active,
  .nav-item.is-active,
  .guide-intro {
    background: #000;
  }
  .topbar-center em {
    color: #fff;
  }
  .guide-intro {
    background: linear-gradient(145deg, #171717 0%, #f00 58%, #101010 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -8px 14px rgba(0, 0, 0, 0.18),
      0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .icon-slot {
    border-color: #fff;
    background: #f00;
    color: #fff;
  }
  .line-icon {
    stroke: #fff;
  }
  .category-card {
    border: 0.5px solid #fff;
  }
  .category-card-header {
    border-bottom-color: #b8b8b8;
    background: #fff;
  }
  .category-card-header h3 {
    color: #000;
  }
  .category-publish {
    color: #ff0100;
    font-weight: 400;
  }
  .category-item {
    font-size: 14px;
  }
  .data-section > .section-header .section-heading h2 {
    font-size: 17px;
  }
  .data-section[data-section="latest"] .latest-title {
    font-weight: 400;
  }
  .data-section[data-section="latest"] .tag-pill {
    border-radius: 4px;
    background: #000;
    color: #fff;
  }
  .license-footer {
    min-height: 148px;
    margin-bottom: 0;
    border-top: 1.5px solid #fe0000;
    background: linear-gradient(178deg, #282828, #000);
  }
  .search-submit,
  .header-actions .button-primary,
  .header-actions .button-secondary {
    border-color: #e30018;
    background: #e30018;
    color: var(--color-white);
    font-weight: 400;
  }
  .guide-intro h2,
  .guide-pill,
  .guide-title {
    font-weight: 400;
  }
  .guide-index {
    color: #e30117;
    font-weight: 400;
  }
}

@media (min-width: 1500px) {
  .topbar-inner {
    grid-template-columns: 348px 560px minmax(0, 1fr);
    gap: 20px;
  }
  .topbar-center {
    width: 560px;
    justify-self: start;
    justify-content: center;
  }
  .topbar-actions > a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (min-width: 961px) and (max-width: 1499px) {
  .topbar-inner {
    grid-template-columns: 220px minmax(360px, 1fr) auto;
    gap: 12px;
  }
  .topbar-inner.is-region-compact {
    grid-template-columns: max-content minmax(0, 1fr) auto;
  }
  .topbar-inner.is-region-compact .topbar-center {
    min-width: 0;
    overflow: hidden;
  }
  .topbar-center {
    width: 100%;
    justify-self: stretch;
    justify-content: center;
  }
  .header-actions .button-primary,
  .header-actions .button-secondary {
    width: auto;
  }
}

/* 城市/区县首页：同城区域导航。区域名称与链接由服务器城市缓存生成。 */
.region-area-nav {
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(36, 68, 63, 0.08);
}
.region-area-scroll {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.region-area-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #dfe8e5;
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}
.region-area-link:hover,
.region-area-link:focus-visible,
.region-area-link:active {
  border-color: #000;
  background: #000;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  outline: none;
}
.region-area-link.is-active {
  border-color: #000;
  background: #000;
  color: var(--color-white);
  box-shadow: none;
}
