/* ==========================================================================
   梦非凡想翻译公司官网 · 全站样式
   设计基调：深蓝 + 金色点缀，浅色专业风格，宽留白、克制的动效。
   组织顺序：变量 → 基础 → 布局 → 头部 → 首页模块 → 通用组件 → 内页 → 响应式
   ========================================================================== */

/* ---------- 1. 设计变量 ---------- */
:root {
  /* 主色 */
  --brand: #14508c;
  --brand-dark: #0d3763;
  --brand-deep: #0a2647;
  --brand-soft: #eaf2fb;
  --brand-line: #cfe0f2;

  /* 强调色 */
  --gold: #b4874a;
  --gold-soft: #f6efe3;
  --gold-dark: #8f6a35;

  /* 中性色 */
  --ink: #0f1c2e;
  --text: #1f2b3a;
  --muted: #5d6b7c;
  --muted-2: #8a97a6;
  --line: #e4e9f0;
  --line-soft: #eff3f8;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-soft-2: #eef4fa;

  /* 状态色 */
  --ok: #20795b;
  --warn: #b4651b;
  --danger: #b13a3a;

  /* 尺寸 */
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 28, 46, .05), 0 2px 8px rgba(15, 28, 46, .04);
  --shadow: 0 4px 12px rgba(15, 28, 46, .06), 0 12px 32px rgba(15, 28, 46, .06);
  --shadow-lg: 0 8px 24px rgba(15, 28, 46, .08), 0 24px 64px rgba(15, 28, 46, .1);
  --container: 1200px;
  --header-h: 68px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
  --font-en: "Times New Roman", Georgia, var(--font);
}

/* ---------- 2. 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }
h1, h2, h3, h4, h5 { margin: 0 0 .6em; line-height: 1.35; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.75rem); }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 3px; }

.sr-only, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: 8px; left: 8px; z-index: 200;
  background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 6px;
}

/* ---------- 3. 布局 ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.sec { padding: 72px 0; }
.sec-soft { background: var(--bg-soft); }
.sec-sub { margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--line); }
.sec-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.sec-actions.between { justify-content: space-between; }

.layout-2col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
.col-side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 22px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* 首页「服务项目」用两个 .grid-3 拼成两行（6 条服务线一次铺开、不滚动）。
   .grid 只有 gap 没有外边距，两个网格相邻会紧贴，这里补上行间距。
   限定在 .sec-services 内，避免影响其它页面上碰巧相邻的网格块。 */
.sec-services .grid + .grid { margin-top: 24px; }

/* ---------- 4. 区块标题 ---------- */
.sec-head { margin-bottom: 36px; max-width: 780px; }
.sec-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-eyebrow {
  display: inline-block; margin: 0 0 10px; font-size: .8125rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  position: relative; padding-left: 30px;
}
.sec-eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 20px; height: 1px; background: var(--gold);
}
.sec-title { margin-bottom: 10px; }
.sec-desc { color: var(--muted); font-size: 1rem; margin-bottom: 0; }

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 8px; border: 1px solid transparent;
  font-size: .9375rem; font-weight: 600; line-height: 1.2; text-decoration: none;
  transition: all .22s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 2px 10px rgba(20, 80, 140, .22); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 6px 18px rgba(20, 80, 140, .28); }
.btn-ghost { background: #fff; color: var(--brand); border-color: var(--brand-line); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-soft); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ---------- 6. 头部（共享组件） ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.topbar { background: var(--brand-deep); color: rgba(255, 255, 255, .82); font-size: .8125rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 16px; }
.topbar-note { margin: 0; }
.topbar-contact { margin: 0; display: flex; align-items: center; gap: 14px; }
.tb-label { opacity: .7; }
.tb-tel { color: #fff; font-weight: 700; letter-spacing: .02em; }
.tb-tel:hover { color: #fff; }
.tb-qq {
  color: #fff; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px;
  padding: 2px 12px; font-size: .75rem;
}
.tb-qq:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.header-inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff; font-weight: 800; font-size: .9375rem; letter-spacing: .04em;
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(10, 38, 71, .25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.0625rem; color: var(--ink); letter-spacing: .02em; }
.brand-text small { font-size: .6875rem; color: var(--muted); letter-spacing: .08em; }

.main-nav { flex: 1; min-width: 0; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.nav-item { position: relative; margin: 0; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px; padding: 10px 12px; border-radius: 7px;
  color: var(--text); font-size: .9375rem; font-weight: 600; white-space: nowrap;
}
.nav-item > a:hover, .nav-item.is-active > a { background: var(--brand-soft); color: var(--brand); text-decoration: none; }
.caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; opacity: .55; margin-top: 2px;
}
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 280px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease); z-index: 110;
}
.nav-item.has-sub:hover .submenu, .nav-item.has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu ul { list-style: none; margin: 0; padding: 0; }
.submenu li { margin: 0; }
.submenu a { display: block; padding: 9px 12px; border-radius: 7px; font-size: .9rem; color: var(--text); }
.submenu a:hover { background: var(--brand-soft); text-decoration: none; }
.sub-name { display: block; font-weight: 600; }
.sub-desc { display: block; font-size: .75rem; color: var(--muted); font-weight: 400; line-height: 1.5; margin-top: 2px; }
.submenu li:last-child a { color: var(--brand); font-weight: 600; }

.header-actions { display: flex; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 9px 16px; font-size: .875rem; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff;
  border-radius: 9px; padding: 10px; flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- 7. 面包屑 ---------- */
.crumbs { background: var(--bg-soft); border-bottom: 1px solid var(--line-soft); font-size: .8125rem; }
.crumbs ol { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 11px 0; gap: 6px; }
.crumbs li { margin: 0; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; color: var(--line); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }

/* ---------- 8. 首屏（首页） ---------- */
.hero { position: relative; padding: 64px 0 0; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 62%); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 92% 8%, rgba(20, 80, 140, .09) 0%, transparent 70%),
    radial-gradient(45% 45% at 4% 92%, rgba(180, 135, 74, .07) 0%, transparent 70%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding-bottom: 56px;
}
.hero-eyebrow {
  display: inline-block; margin: 0 0 16px; padding: 5px 14px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold-dark); font-size: .8125rem; font-weight: 600;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--brand); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .28em;
  background: rgba(180, 135, 74, .22); border-radius: 2px; z-index: -1;
}
.hero-desc { font-size: 1.0625rem; color: var(--muted); max-width: 34em; }
.hero-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.hero-points li { position: relative; padding-left: 26px; color: var(--text); font-size: .9375rem; margin: 0; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 8px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg);
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-tel { margin: 18px 0 0; font-size: .9375rem; color: var(--muted); }
.hero-tel a { font-weight: 700; font-size: 1.0625rem; color: var(--brand); }
.hero-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.hero-stats {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.stat { padding: 26px 24px; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat-value { margin: 0 0 2px; font-size: 1.75rem; font-weight: 800; color: var(--brand); letter-spacing: -.01em; }
.stat-unit { font-size: .9375rem; font-weight: 600; margin-left: 3px; color: var(--brand); }
.stat-label { margin: 0; font-weight: 600; font-size: .9375rem; }
.stat-note { margin: 4px 0 0; font-size: .8125rem; color: var(--muted); line-height: 1.5; }

/* ---------- 9. 内页首屏 ---------- */
.page-hero {
  padding: 56px 0; background: linear-gradient(180deg, var(--bg-soft-2) 0%, #fff 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-inner { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.page-hero.has-image .page-hero-inner { grid-template-columns: 1.15fr .85fr; }
.ph-eyebrow {
  display: inline-block; margin: 0 0 14px; padding: 4px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--brand-line); color: var(--brand);
  font-size: .8125rem; font-weight: 600;
}
.page-hero h1 { margin-bottom: 14px; }
.ph-desc { font-size: 1.0625rem; color: var(--muted); max-width: 46em; margin-bottom: 0; }
.ph-meta { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ph-meta li {
  margin: 0; padding: 6px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .875rem; color: var(--text);
}
.ph-meta strong { color: var(--brand); }
.ph-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.ph-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ph-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- 10. 卡片 ---------- */
.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit;
  transition: all .26s var(--ease);
}
.card:hover {
  text-decoration: none; transform: translateY(-4px); border-color: var(--brand-line);
  box-shadow: var(--shadow-lg);
}
.card-media { overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  align-self: flex-start; margin-bottom: 10px; font-size: .75rem; font-weight: 600;
  color: var(--gold-dark); background: var(--gold-soft); padding: 3px 10px; border-radius: 999px;
}
.card-title { margin-bottom: 10px; font-size: 1.0625rem; }
.card-desc { margin-bottom: 14px; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.card-meta { list-style: none; padding: 0; margin: auto 0 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.card-meta li {
  margin: 0; font-size: .75rem; color: var(--muted); background: var(--bg-soft);
  padding: 3px 9px; border-radius: 5px;
}
.card-cta { font-size: .875rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; }
.card-cta i { font-style: normal; transition: transform .22s var(--ease); }
.card:hover .card-cta i { transform: translateX(4px); }

.mini-card {
  display: block; padding: 24px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none; color: inherit; transition: all .24s var(--ease);
}
.mini-card:hover {
  text-decoration: none; border-color: var(--brand-line); box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.mc-index { display: block; font-size: .8125rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.mc-title { margin-bottom: 8px; font-size: 1rem; }
.mc-desc { margin: 0; font-size: .875rem; color: var(--muted); line-height: 1.7; }
.mc-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; font-size: .8125rem; font-weight: 600; color: var(--brand); }
.mc-more i { font-style: normal; }

/* 场景卡 */
.scenario-card {
  padding: 26px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); border-top: 3px solid var(--brand);
}
.scenario-card h3 { font-size: 1.0625rem; margin-bottom: 14px; }
.sc-need, .sc-approach { font-size: .875rem; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
.sc-need:last-child, .sc-approach:last-child { margin-bottom: 0; }
.sc-need strong, .sc-approach strong {
  display: inline-block; margin-right: 8px; color: var(--brand); font-size: .75rem;
  background: var(--brand-soft); padding: 2px 8px; border-radius: 4px;
}

/* 客户名录 */
.client-groups .client-group { padding: 22px; background: var(--bg-soft); border-radius: var(--radius); }
.client-group h4 { color: var(--brand); font-size: .9375rem; margin-bottom: 12px; }
.client-group ul { list-style: none; padding: 0; margin: 0; }
.client-group li { font-size: .875rem; color: var(--muted); margin-bottom: 6px; padding-left: 14px; position: relative; }
.client-group li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ---------- 11. 语种云 / 索引 ---------- */
.lang-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.lang-chip {
  padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: .9rem; color: var(--text); transition: all .2s var(--ease);
}
.lang-chip:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); text-decoration: none; transform: translateY(-2px); }
.lang-chip.is-hot { border-color: var(--brand-line); background: var(--brand-soft); color: var(--brand); font-weight: 600; }

.lang-index { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px 32px; }
.lg-key {
  font-size: 1.0625rem; color: var(--brand); margin: 0 0 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-line);
}
.lg-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.lg-list li { margin: 0; }
.lg-list a { font-size: .9rem; color: var(--text); }
.lg-list a:hover { color: var(--brand); }

/* ---------- 12. 流程步骤 ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.step {
  display: flex; gap: 18px; align-items: flex-start; padding: 18px 0;
  border-bottom: 1px dashed var(--line); margin: 0;
}
.step:last-child { border-bottom: 0; }
.step-no {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); font-weight: 700; font-size: .9rem;
  border: 1px solid var(--brand-line);
}
.step-txt { padding-top: 7px; font-size: .9375rem; }

/* ---------- 13. 列表 / 表格 ---------- */
.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li {
  position: relative; padding-left: 26px; margin-bottom: 12px; font-size: .9375rem; line-height: 1.75;
}
.bullet-list li:last-child { margin-bottom: 0; }
.bullet-list li::before {
  content: ""; position: absolute; left: 6px; top: .62em; width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
}
.bullet-list strong { color: var(--ink); }
.bullet-lg li { font-size: 1rem; margin-bottom: 14px; }
.bullet-lg li::before { width: 7px; height: 7px; }
.bullet-check li::before {
  content: ""; left: 2px; top: .42em; width: 14px; height: 8px; background: none;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg); border-radius: 0;
}
.bullet-warn li::before {
  content: "!"; left: 0; top: .12em; width: 18px; height: 18px; background: var(--gold-soft);
  color: var(--gold-dark); border-radius: 50%; font-size: .75rem; font-weight: 700;
  display: grid; place-items: center;
}
.bullet-warn li { padding-left: 28px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.data-table { font-size: .9375rem; }
.data-table th, .data-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.data-table thead th {
  background: var(--bg-soft); font-weight: 600; color: var(--ink); font-size: .875rem;
  position: sticky; top: 0;
}
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--bg-soft); }
.spec-table th {
  width: 150px; background: var(--bg-soft); font-weight: 600; color: var(--ink); font-size: .9rem;
}
.td-foreign { font-family: var(--font-en); color: var(--ink); }

/* 标签链接 */
.tag-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-links li { margin: 0; }
.tag-links a {
  display: inline-block; padding: 6px 14px; border-radius: 7px; background: var(--bg-soft);
  border: 1px solid var(--line-soft); font-size: .875rem; color: var(--text);
  transition: all .2s var(--ease);
}
.tag-links a:hover { background: var(--brand-soft); border-color: var(--brand-line); color: var(--brand); text-decoration: none; }

/* ---------- 14. 内容区块 ---------- */
.block { margin-bottom: 44px; }
.block:last-child { margin-bottom: 0; }
.block h2 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.block h4 { margin-bottom: 12px; color: var(--ink); }
.block-text { font-size: .9375rem; line-height: 1.9; color: var(--text); }
.block-note { font-size: .875rem; color: var(--muted); background: var(--bg-soft); padding: 14px 18px; border-radius: var(--radius); border-left: 3px solid var(--brand-line); }
.inline-links { font-size: .875rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 12px; }
.two-lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.empty-note { color: var(--muted); padding: 40px 0; text-align: center; }

/* ---------- 15. FAQ 手风琴 ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-weight: 600; font-size: 1rem; color: var(--ink); }
.faq-item summary:hover .faq-q { color: var(--brand); }
.faq-ico { position: relative; flex-shrink: 0; width: 20px; height: 20px; margin-top: 4px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .25s var(--ease);
}
.faq-ico::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-ico::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-ico::after { transform: scaleY(0); }
.faq-a { padding: 0 40px 20px 0; }
.faq-a p { margin: 0; font-size: .9375rem; line-height: 1.9; color: var(--muted); }

/* ---------- 16. CTA 区 ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--brand-deep) 0%, var(--brand) 58%, #1a5f9e 100%);
  color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(180, 135, 74, .3) 0%, transparent 68%);
}
.cta-inner {
  position: relative; display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { color: #fff; margin-bottom: 8px; }
.cta-text p { margin: 0; color: rgba(255, 255, 255, .8); font-size: .9375rem; max-width: 46em; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- 17. 侧栏组件 ---------- */
.aside-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.aside-title { font-size: .9375rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.aside-nav { list-style: none; padding: 0; margin: 0; }
.aside-nav li { margin: 0; border-bottom: 1px solid var(--line-soft); }
.aside-nav li:last-child { border-bottom: 0; }
.aside-nav a { display: block; padding: 10px 2px; font-size: .9rem; color: var(--text); }
.aside-nav a:hover { color: var(--brand); }
.aside-nav li.is-active a { color: var(--brand); font-weight: 600; }
.aside-toc { max-height: 420px; overflow-y: auto; }
.aside-toc a { font-size: .8375rem; line-height: 1.6; }
.aside-posts { list-style: none; padding: 0; margin: 0; }
.aside-posts li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.aside-posts li:last-child { border-bottom: 0; }
.aside-posts a { font-size: .875rem; color: var(--text); line-height: 1.6; }
.aside-posts a:hover { color: var(--brand); }
.aside-posts time { flex-shrink: 0; font-size: .75rem; color: var(--muted); }

.contact-aside {
  background: linear-gradient(160deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff; border-radius: var(--radius); padding: 24px 22px;
}
.contact-aside .ca-head h3 { color: #fff; font-size: 1.0625rem; margin-bottom: 6px; }
.contact-aside .ca-head p { font-size: .8125rem; color: rgba(255, 255, 255, .75); margin-bottom: 18px; line-height: 1.6; }
.ca-list { list-style: none; padding: 0; margin: 0 0 18px; }
.ca-list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); margin: 0; font-size: .875rem; }
.ca-list li:last-child { border-bottom: 0; }
.ca-list span { color: rgba(255, 255, 255, .7); }
.ca-list a { color: #fff; font-weight: 600; }
.ca-list a:hover { color: #fff; text-decoration: underline; }
.ca-actions { display: grid; gap: 10px; }
.contact-aside .btn-primary { background: var(--gold); }
.contact-aside .btn-primary:hover { background: var(--gold-dark); }
.contact-aside .btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .3); }
.contact-aside .btn-ghost:hover { background: rgba(255, 255, 255, .18); color: #fff; }

.office-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }
.office-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.office-item .oi-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.office-item h3 { margin: 0; font-size: 1.0625rem; }
.oi-note { font-size: .75rem; color: var(--brand); background: var(--brand-soft); padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.oi-body { margin: 0; display: grid; gap: 10px; }
.oi-body > div { display: grid; grid-template-columns: 88px 1fr; gap: 12px; align-items: baseline; }
.oi-body dt { font-size: .8125rem; color: var(--muted); }
.oi-body dd { margin: 0; font-size: .9rem; }
.ofc-addr { font-size: .9rem; line-height: 1.7; margin-bottom: 14px; }

/* ---------- 18. 资讯 ---------- */
.news-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post-list { display: grid; gap: 0; }
.post-list.compact { gap: 0; }
.post-card { padding: 26px 0; border-bottom: 1px solid var(--line); }
.post-card:first-child { padding-top: 0; }
.pc-cat {
  display: inline-block; margin-bottom: 10px; font-size: .75rem; font-weight: 600;
  color: var(--brand); background: var(--brand-soft); padding: 3px 10px; border-radius: 999px;
}
.pc-cat:hover { text-decoration: none; }
.pc-title { margin-bottom: 10px; font-size: 1.125rem; }
.pc-title a { color: var(--ink); }
.pc-title a:hover { color: var(--brand); text-decoration: none; }
.pc-desc { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.pc-meta { display: flex; gap: 16px; margin: 0; font-size: .8125rem; color: var(--muted); }
.pc-kw { color: var(--gold-dark); }

.news-cols .post-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.news-cols .post-card:hover { border-color: var(--brand-line); box-shadow: var(--shadow); }
.news-cols .post-card .pc-title { font-size: 1.0625rem; }

.list-head { padding: 32px 0 0; }
.list-head h1 { font-size: 1.5rem; }

.article-head { padding: 48px 0 20px; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.article-cat { margin-bottom: 12px; }
.article-cat a {
  font-size: .8125rem; font-weight: 600; color: var(--brand); background: var(--brand-soft);
  padding: 4px 12px; border-radius: 999px;
}
.article-cat a:hover { text-decoration: none; }
.article-head h1 { margin-bottom: 14px; }
.article-desc { font-size: 1.0625rem; color: var(--muted); line-height: 1.8; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; font-size: .8125rem; color: var(--muted); }
.article-kw { color: var(--gold-dark); }
.article-layout { padding-top: 48px; padding-bottom: 64px; }
.article-body { font-size: 1rem; line-height: 1.95; }
.article-block h2 { font-size: 1.25rem; margin-top: 8px; }
.article-body p { margin-bottom: 1.15em; }
.article-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.an-item {
  display: block; padding: 16px 18px; background: var(--bg-soft); border-radius: var(--radius);
  font-size: .9rem; color: var(--ink); line-height: 1.6;
}
.an-item span { display: block; font-size: .75rem; color: var(--muted); margin-bottom: 4px; }
.an-item:hover { background: var(--brand-soft); color: var(--brand); text-decoration: none; }
.an-next { text-align: right; }

/* ---------- 19. 分页 ---------- */
.pager { display: flex; align-items: center; gap: 16px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.pager ul { list-style: none; display: flex; gap: 6px; margin: 0 auto; padding: 0; }
.pager li { margin: 0; }
.pager a, .pager .is-current {
  display: grid; place-items: center; min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: 8px; border: 1px solid var(--line); font-size: .9rem; color: var(--text);
}
.pager a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); text-decoration: none; }
.pager .is-current { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 600; }
.pg-prev, .pg-next { font-size: .875rem; font-weight: 600; color: var(--brand); }
.pg-prev.is-disabled, .pg-next.is-disabled { color: var(--line); font-weight: 400; }

/* ---------- 20. 服务城市 / 地图页 ---------- */
.city-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px 32px; }
.city-group h3 { font-size: 1rem; color: var(--brand); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--brand-line); }
.city-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.city-group li { margin: 0; }
.city-group a { font-size: .9rem; color: var(--text); display: inline-flex; align-items: center; gap: 5px; }
.city-group a:hover { color: var(--brand); }
.dot-office { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.legend { margin-top: 24px; font-size: .8125rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }

.map-group { margin-bottom: 36px; }
.map-group h2 { font-size: 1.0625rem; display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.map-count { font-size: .75rem; font-weight: 600; color: var(--brand); background: var(--brand-soft); padding: 2px 9px; border-radius: 999px; }
.map-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 6px 20px; }
.map-list li { margin: 0; }
.map-list a { font-size: .875rem; color: var(--muted); }
.map-list a:hover { color: var(--brand); }

/* ---------- 21. 法律文本 / 搜索 / 404 ---------- */
.legal-item { margin-bottom: 32px; }
.legal-item h2 { font-size: 1.0625rem; margin-bottom: 10px; color: var(--brand); }
.legal-item p { font-size: .9375rem; line-height: 1.95; color: var(--text); margin: 0; }

.search-form { display: flex; gap: 12px; margin-bottom: 28px; }
.search-form input {
  flex: 1; padding: 13px 18px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 1rem; background: #fff;
}
.search-form input:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px var(--brand-soft); }
.search-results { min-height: 80px; }
.sr-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.sr-item h3 { font-size: 1rem; margin-bottom: 4px; }
.sr-item p { font-size: .875rem; color: var(--muted); margin: 0; }
.sr-group-title { font-size: .8125rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin: 24px 0 8px; }

.err-page { padding: 80px 0 96px; text-align: center; }
.err-code { font-size: 5rem; font-weight: 800; color: var(--brand-line); margin: 0 0 8px; letter-spacing: -.03em; }
.err-page .block-text { max-width: 40em; margin: 0 auto 8px; }
.err-page .btn-row { justify-content: center; }
.err-links { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.err-links h2 { font-size: 1rem; }
.err-links .tag-links { justify-content: center; }

/* ---------- 22. 页脚 ---------- */
.site-footer { background: var(--brand-deep); color: rgba(255, 255, 255, .72); font-size: .875rem; }
.foot-main { display: grid; grid-template-columns: 1.25fr 2fr; gap: 56px; padding: 60px 24px 44px; }
.brand-foot .brand-text strong { color: #fff; }
.brand-foot .brand-text small { color: rgba(255, 255, 255, .55); }
.foot-intro { font-size: .875rem; line-height: 1.85; color: rgba(255, 255, 255, .68); margin: 18px 0; }
.foot-contact { list-style: none; padding: 0; margin: 0; font-size: .875rem; }
.foot-contact li { margin-bottom: 7px; }
.foot-contact a { color: #fff; font-weight: 600; }
.foot-contact a:hover { color: #fff; text-decoration: underline; }
.foot-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.foot-col h4 { color: #fff; font-size: .875rem; margin-bottom: 14px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: rgba(255, 255, 255, .68); font-size: .8125rem; }
.foot-col a:hover { color: #fff; }
.foot-offices { padding: 28px 24px; border-top: 1px solid rgba(255, 255, 255, .1); }
.foot-offices h4 { color: #fff; font-size: .875rem; margin-bottom: 14px; }
.foot-offices ul { list-style: none; padding: 0; margin: 0 0 14px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px 28px; }
.foot-offices li { margin: 0; font-size: .8125rem; color: rgba(255, 255, 255, .62); line-height: 1.7; }
.foot-offices li strong { color: #fff; margin-right: 8px; }
.foot-offices li span { display: block; color: rgba(255, 255, 255, .45); font-size: .75rem; }
/* ⚠️ 这个块同时带 .container，靠 .container 的 margin:0 auto 居中。
   这里必须写 margin: 0 auto —— 写成 margin: 0 会因选择器同权重、且本规则在
   .container 之后，把自动边距覆盖掉，导致大屏幕下整块贴到左边。 */
.foot-regions { font-size: .75rem; line-height: 1.8; color: rgba(255, 255, 255, .45); margin: 0 auto; }
.foot-bar { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0; }
.foot-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-bar p { margin: 0; font-size: .8125rem; color: rgba(255, 255, 255, .55); }
.foot-help { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; flex-wrap: wrap; }
.foot-help li { margin: 0; }
.foot-help a { font-size: .8125rem; color: rgba(255, 255, 255, .6); }
.foot-help a:hover { color: #fff; }

/* ---------- 23. 悬浮联系条 ---------- */
.float-bar {
  position: fixed; right: 18px; bottom: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 8px;
}
.fb-item {
  display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--text); font-size: .8125rem; font-weight: 600; text-decoration: none;
  transition: all .22s var(--ease);
}
.fb-item:hover { background: var(--brand); color: #fff; border-color: var(--brand); text-decoration: none; transform: translateX(-3px); }
.fb-ico { display: grid; place-items: center; width: 20px; font-size: .875rem; }
.fb-top { opacity: 0; visibility: hidden; }
.fb-top.is-visible { opacity: 1; visibility: visible; }
.fb-txt { white-space: nowrap; }

/* ---------- 24. 响应式 ---------- */
@media (max-width: 1080px) {
  .header-actions .btn-ghost { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { order: -1; }
  .page-hero.has-image .page-hero-inner { grid-template-columns: 1fr; }
  .layout-2col { grid-template-columns: 1fr; gap: 36px; }
  .col-side { position: static; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-main { grid-template-columns: 1fr; gap: 36px; }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .sec { padding: 52px 0; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .main-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .main-nav > ul { flex-direction: column; padding: 10px 16px 20px; gap: 0; }
  .nav-item > a { padding: 13px 8px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-radius: 0; padding: 0 0 8px 12px; display: none;
  }
  .nav-item.has-sub.is-expanded .submenu { display: block; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-actions { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(2) { border-right: 0; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .news-cols { grid-template-columns: 1fr; }
  .two-lists { grid-template-columns: 1fr; gap: 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .article-nav { grid-template-columns: 1fr; }
  .float-bar { right: 12px; bottom: 12px; }
  .fb-txt { display: none; }
  .fb-item { padding: 12px; border-radius: 50%; }
  .foot-offices ul { grid-template-columns: 1fr; }
  .oi-body > div { grid-template-columns: 1fr; gap: 2px; }
  .foot-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .lang-index, .city-groups { grid-template-columns: 1fr; }
  .topbar-note { display: none; }
}

/* ---------- 25. 大屏适配 ----------
   1440px 起步就已经出现「内容挤在中间 1200px、两侧大片空白」的情况，屏幕越宽越明显。
   这里按宽度分两档把容器和页脚列间距一起放大，保持"内容占屏比"稳定。
   只动变量与间距，不改任何栅格结构，所以对现有布局是安全的。 */
@media (min-width: 1440px) {
  :root { --container: 1280px; }
  .foot-main { gap: 64px; }
  .foot-cols { gap: 36px; }
}

@media (min-width: 1720px) {
  :root { --container: 1360px; }
  .foot-main { gap: 80px; padding-top: 68px; padding-bottom: 52px; }
  .foot-cols { gap: 44px; }
}

@media (min-width: 2100px) {
  :root { --container: 1440px; }
  .foot-main { gap: 96px; }
  .foot-cols { gap: 52px; }
}

/* ---------- 26. 布局辅助（语义容器，按需补样式） ---------- */
.hero-text, .ph-text, .col-main, .lang-group, .article, .legal, .foot-brand { min-width: 0; }
.aside-office .ca-list { margin-top: 4px; }
.aside-office .ofc-addr { color: var(--ink); }
.lang-group { margin-bottom: 4px; }

/* ---------- 27. 打印 ---------- */
@media print {
  .site-header, .float-bar, .site-footer, .cta-band, .col-side, .crumbs { display: none !important; }
  body { font-size: 12pt; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
  .sec { padding: 12pt 0; }
}

/* ---------- 28. 减少动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}


/* ==========================================================================
   29. 改版新增：微信咨询弹窗 / 合作名录滚动 / 全球服务 / 专项页组件
   （追加在末尾，只覆盖需要的新样式，不修改既有规则）
   ========================================================================== */

/* ---------- 29.1 行内文本按钮（正文中唤起微信弹窗） ---------- */
.link-btn {
  display: inline; padding: 0; margin: 0; border: 0; background: none;
  font: inherit; color: var(--brand); cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.link-btn:hover { color: var(--brand-dark); }
.link-btn-light { color: #fff; font-weight: 600; }
.link-btn-light:hover { color: #fff; }
.tb-wechat {
  border: 0; background: rgba(255, 255, 255, .16); color: #fff;
  font: inherit; font-size: .8125rem; font-weight: 600;
  padding: 4px 12px; border-radius: 999px; cursor: pointer;
}
.tb-wechat:hover { background: rgba(255, 255, 255, .28); }

/* ---------- 29.2 微信二维码弹窗 ---------- */
body.no-scroll { overflow: hidden; }
.wechat-modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.wechat-modal[hidden] { display: none; }
.wm-mask { position: absolute; inset: 0; background: rgba(10, 38, 71, .58); }
.wm-panel {
  position: relative; z-index: 1; width: 100%; max-width: 380px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 24px 22px; text-align: center; box-shadow: var(--shadow-lg);
  animation: wmIn .18s var(--ease);
}
@keyframes wmIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.wm-close {
  position: absolute; top: 6px; right: 8px; width: 36px; height: 36px;
  border: 0; background: none; color: var(--muted); font-size: 24px; line-height: 1;
  cursor: pointer; border-radius: 8px;
}
.wm-close:hover { background: var(--bg-soft); color: var(--ink); }
.wm-panel h3 { margin: 0 0 4px; font-size: 1.25rem; color: var(--ink); }
.wm-sub { margin: 0 0 16px; font-size: .8125rem; color: var(--muted); }
.wm-qr {
  width: 220px; height: 220px; margin: 0 auto 14px;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg-soft);
}
.wm-qr img { display: block; width: 100%; height: 100%; object-fit: contain; }
.wm-id { margin: 0 0 6px; font-size: .9375rem; color: var(--ink); }
.wm-id strong { font-family: var(--font-en); font-size: 1.0625rem; letter-spacing: .02em; }
.wm-note { margin: 0 0 16px; font-size: .8125rem; line-height: 1.7; color: var(--muted); }

/* ---------- 29.3 首页：合作名录滚动墙 ---------- */
.client-marquee {
  display: grid; gap: 14px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.cm-row { display: flex; width: max-content; animation: cmScroll var(--cm-speed, 48s) linear infinite; }
.cm-row.is-reverse { animation-direction: reverse; }
.client-marquee:hover .cm-row { animation-play-state: paused; }
.cm-track { display: flex; list-style: none; margin: 0; padding: 0; flex: none; }
.cm-chip {
  display: flex; align-items: center; gap: 10px; margin-right: 14px;
  padding: 12px 20px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.cm-name { font-size: .90625rem; font-weight: 600; color: var(--ink); }
.cm-tag { font-size: .75rem; color: var(--muted-2); padding-left: 10px; border-left: 1px solid var(--line); }
@keyframes cmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 29.4 首页：全球服务模块 ---------- */
.sec-global { background: linear-gradient(180deg, #fff 0%, var(--bg-soft-2) 100%); }
.global-inner { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 52px; align-items: center; }
.global-visual { color: var(--brand); display: flex; justify-content: center; }
.global-visual svg { width: 100%; max-width: 280px; height: auto; }
.region-list {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px;
}
.region-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 15px; border-left: 2px solid var(--gold);
  background: var(--bg-soft); border-radius: 0 8px 8px 0;
}
.region-list strong { font-size: .875rem; color: var(--ink); }
.region-list span { font-size: .78125rem; color: var(--muted); }

/* 服务范围：用真实数量支撑「全球」表述，避免口径不一致 */
.coverage-stats {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
}
.coverage-stats li {
  padding: 14px 16px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); text-align: center;
}
.coverage-stats strong {
  display: block; font-size: 1.5rem; line-height: 1.1;
  color: var(--brand); font-family: var(--font-en); font-weight: 700;
}
.coverage-stats span { display: block; margin-top: 6px; font-size: .78125rem; color: var(--muted); }

/* ---------- 29.5 首页：首屏补充 ---------- */
.hero-figure { position: relative; }
/* 右侧留出悬浮联系条的位置（.float-bar 宽约 120px + 右边距），避免图注被压住 */
.hero-figure-note {
  position: absolute; left: 16px; right: 152px; bottom: 16px; margin: 0;
  padding: 10px 16px; border-radius: 12px;
  background: rgba(10, 38, 71, .74); color: #fff;
  font-size: .78125rem; line-height: 1.7; letter-spacing: .02em;
  text-align: center;
}

/* ---------- 29.6 专项页：文件类型胶囊 ---------- */
.doc-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.doc-chips li {
  padding: 7px 14px; border-radius: 999px; font-size: .8125rem;
  background: var(--brand-soft); border: 1px solid var(--brand-line); color: var(--brand-dark);
}

/* ---------- 29.7 页脚：服务区域 ---------- */
.foot-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.foot-regions { padding: 0 24px 40px; }
.foot-regions h4 { color: #fff; font-size: .875rem; margin: 0 0 12px; letter-spacing: .04em; }
.foot-regions-text { font-size: .8125rem; line-height: 1.9; color: rgba(255, 255, 255, .6); margin: 0 0 14px; }
/* 省级入口链接（页脚全站铺开，指向 24 个省级页） */
.foot-prov-links {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
}
.foot-prov-links a { font-size: .8125rem; color: rgba(255, 255, 255, .72); }
.foot-prov-links a:hover { color: #fff; text-decoration: underline; }
/* 城市区标题行：左侧数量说明，右侧总览入口 */
.foot-city-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.foot-city-head span { font-size: .78125rem; color: rgba(255, 255, 255, .5); letter-spacing: .03em; }
.foot-city-head a { font-size: .78125rem; color: rgba(255, 255, 255, .72); }
.foot-city-head a:hover { color: #fff; }

/* ---------- 29.8 头部：导航项变多后收紧间距 ---------- */
.main-nav > ul { gap: 0; }
.nav-item > a { padding: 10px 10px; font-size: .90625rem; }
.header-actions { margin-left: 8px; }

/* ---------- 29.9 新增模块的响应式 ---------- */
@media (max-width: 1080px) {
  .global-inner { grid-template-columns: 1fr; gap: 32px; }
  .global-visual { order: -1; }
  .global-visual svg { max-width: 200px; }
  .main-nav > ul { gap: 0; }
  .nav-item > a { padding: 10px 8px; font-size: .875rem; }
}
@media (max-width: 860px) {
  .region-list { grid-template-columns: 1fr; }
  .foot-regions { padding: 0 24px 32px; }
  .nav-item > a { padding: 13px 8px; font-size: .9375rem; }
}
@media (max-width: 520px) {
  .wm-panel { padding: 24px 18px 18px; }
  .wm-qr { width: 190px; height: 190px; }
  .cm-chip { padding: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cm-row { animation: none; }
}

/* ==========================================================================
   30. 二次改版：客户 LOGO 轮播 / 通用横向轮播 / 资讯双栏 / 页脚 LOGO 与备案号
   ========================================================================== */

/* ---------- 30.1 板块间距收紧（原 72px → 54px，本轮再收至 40px） ---------- */
.sec { padding: 40px 0; }
.sec-head { margin-bottom: 24px; }
/* 板块内的次级分组（如「增值服务」）与底部动作区一并收紧 */
.sec-sub { margin-top: 40px; padding-top: 30px; }
.sec-actions { margin-top: 24px; }

/* ---------- 30.2 头部品牌 LOGO ---------- */
.brand-logo {
  height: 40px; width: auto; flex-shrink: 0;
  border-radius: 8px;
}

/* ---------- 30.3 客户 LOGO 滑动墙 ---------- */
.marquee-label {
  margin: 0 0 12px; font-size: .8125rem; font-weight: 600;
  color: var(--muted); letter-spacing: .06em;
}
.marquee-label + .logo-marquee { margin-bottom: 20px; }
.marquee-label + .client-marquee { margin-bottom: 0; }
/* 合作名录区块下方不再叠加残留留白（原「名录仅供了解…」说明已移除） */
.sec-clients { padding-bottom: 30px; }
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  margin-bottom: 0;
}
/* 单行、单向、匀速：两行反向滚动会让视线左右被拉扯，观感晃眼 */
.lm-row { display: flex; width: max-content; animation: lmScroll var(--lm-speed, 42s) linear infinite; }
.logo-marquee:hover .lm-row { animation-play-state: paused; }
.lm-track { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; flex: none; }
.lm-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  flex: none; width: 150px; height: 92px; margin-right: 16px; padding: 10px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.lm-pic { position: relative; display: flex; align-items: center; justify-content: center; height: 44px; }
.lm-pic img {
  max-width: 100%; max-height: 44px; width: auto; height: auto;
  object-fit: contain; transition: opacity .35s var(--ease);
}
.lm-pic .lm-bw { filter: grayscale(1); opacity: .62; }
/* 品牌彩色版常驻叠放，靠 opacity 切换——不用换 src，避免滚动时闪一下 */
.lm-pic .lm-color { position: absolute; inset: 0; margin: auto; opacity: 0; }
/* 滚到墙中部（由 main.js 的 initLogoFocus 打 is-focus）或鼠标悬停 → 显示品牌原色 */
.lm-cell.is-focus .lm-bw,
.lm-cell:hover .lm-bw { opacity: 0; }
.lm-cell.is-focus .lm-color,
.lm-cell:hover .lm-color { opacity: 1; }
.lm-cell.is-focus { border-color: var(--brand-line); box-shadow: var(--shadow); background: #fff; }
.lm-name { font-size: .6875rem; color: var(--muted-2); letter-spacing: .02em; }
@keyframes lmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 30.4 通用横向轮播 ---------- */
.cr { position: relative; }
.cr-viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.cr-viewport::-webkit-scrollbar { display: none; }
.cr-track {
  display: flex; list-style: none; margin: 0; padding: 4px 0 10px; gap: 20px;
}
.cr-item {
  flex: none; scroll-snap-align: start;
  width: calc((100% - 40px) / 3);
}
.cr[data-cr-perview="4"] .cr-item { width: calc((100% - 60px) / 4); }
.cr[data-cr-perview="2"] .cr-item { width: calc((100% - 20px) / 2); }
.cr-item > * { height: 100%; }
.cr-nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }
.cr-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 50%; cursor: pointer; font-size: 1.25rem; line-height: 1;
  box-shadow: var(--shadow-sm); transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.cr-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.cr-btn:active { transform: translateY(1px); }
/* 轮播内的卡片撑满格宽 */
.cr-item .mini-card, .cr-item .post-card, .cr-item .scenario-card { height: 100%; }

/* ---------- 30.5 资讯标题行列表 ---------- */
.hl-list { list-style: none; margin: 0 0 18px; padding: 0; }
.hl-item { border-bottom: 1px dashed var(--line); }
.hl-item:last-child { border-bottom: 0; }
.hl-item a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 2px; color: var(--ink);
}
.hl-item a:hover .hl-title { color: var(--brand); }
.hl-title {
  font-size: .875rem; line-height: 1.5; flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color .2s var(--ease);
}
.hl-date { flex: none; font-size: .75rem; color: var(--muted-2); font-variant-numeric: tabular-nums; }

/* ---------- 30.6 资讯双栏布局 ---------- */
.news-layout { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.news-side {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px 22px 20px;
}
.news-side-title { margin: 0 0 12px; font-size: 1rem; color: var(--ink); }
.news-side .btn-block { margin-top: 4px; }
/* 资讯左栏：4 篇竖排（原先是每屏 2 张的轮播，下方会空出一大块） */
.news-stack .post-card { padding: 20px 0; }
.news-stack .post-card:first-child { padding-top: 0; }
.news-stack .post-card:last-child { padding-bottom: 0; border-bottom: 0; }
/* 摘要限 2 行，保证 4 篇竖排后左栏高度与右侧标题列表接近 */
.news-stack .pc-desc {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 10px;
}

/* ---------- 30.7 全球服务：真实地球图 ---------- */
.global-visual { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.global-visual img {
  width: 100%; max-width: 240px; height: auto;
  filter: drop-shadow(0 14px 30px rgba(10, 38, 71, .22));
}
.global-visual figcaption {
  margin: 0; text-align: center; font-size: .8125rem;
  color: var(--muted); line-height: 1.6;
}

/* ---------- 30.8 页脚：LOGO 与备案号 ---------- */
.foot-logos {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 12px; padding: 9px 14px; margin-bottom: 18px;
}
.foot-logo { height: 34px; width: auto; }
.foot-wordmark { height: 28px; width: auto; }
.foot-beian { color: rgba(255, 255, 255, .72); }
.foot-beian:hover { color: #fff; text-decoration: underline; }

/* ---------- 30.8b 证件翻译价目表 ---------- */
.price-table caption {
  caption-side: top; text-align: left; padding: 0 0 12px;
  font-size: .875rem; font-weight: 600; color: var(--ink);
}
.price-table th[scope="row"] { width: 30%; }
.price-table th[scope="row"] a { color: var(--ink); font-weight: 600; }
.price-table th[scope="row"] a:hover { color: var(--brand); }
.pt-price { white-space: nowrap; width: 22%; }
.pt-price strong {
  font-size: 1.0625rem; color: var(--brand-dark);
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.pt-unit { font-size: .75rem; color: var(--muted); margin-left: 3px; }
.pt-note { font-size: .8125rem; line-height: 1.65; color: var(--muted); }

/* ---------- 30.8c 图文画廊：证书 / 证照 / 实景 ---------- */
.figure-grid { display: grid; gap: 18px; margin: 0; }
.figure-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.figure-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.figure-grid .fig-item {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.figure-grid img { display: block; width: 100%; height: auto; background: var(--bg-soft); }
.figure-grid figcaption {
  padding: 10px 14px 12px; border-top: 1px solid var(--line-soft);
  font-size: .8125rem; line-height: 1.65; color: var(--muted);
}
.figure-note { margin-top: 14px; font-size: .8125rem; line-height: 1.7; color: var(--muted-2); }

/* ---------- 30.9 响应式 ---------- */
@media (max-width: 1080px) {
  .news-layout { grid-template-columns: 1fr; gap: 30px; }
  .cr-item { width: calc((100% - 20px) / 2); }
  .cr[data-cr-perview="4"] .cr-item { width: calc((100% - 20px) / 2); }
  .global-visual img { max-width: 200px; }
}
@media (max-width: 860px) {
  .sec { padding: 32px 0; }
  .sec-head { margin-bottom: 20px; }
  .sec-sub { margin-top: 30px; padding-top: 22px; }
  .lm-cell { width: 130px; height: 84px; margin-right: 12px; }
  /* 窄屏悬浮条收成圆形图标，图注留白同步收窄 */
  .hero-figure-note { right: 68px; }
  .cr-item, .cr[data-cr-perview="4"] .cr-item { width: calc((100% - 14px) / 1.4); }
  .cr-track { gap: 14px; }
  .foot-logos { padding: 8px 12px; }
  .foot-logo { height: 28px; }
  .foot-wordmark { height: 22px; }
  .figure-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .cr-item, .cr[data-cr-perview="4"] .cr-item { width: 86%; }
  .hl-title { white-space: normal; }
  .news-side { padding: 18px 16px; }
  /* 证书类图片在窄屏按单列显示，避免缩到看不清印章与文字 */
  .figure-grid-2, .figure-grid-3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lm-row,
  .cm-row,
  .cym-row { animation: none; }
  .cr-viewport { scroll-behavior: auto; }
  /* 不滚动时不做"居中变色"（initLogoFocus 在 reduced-motion 下不启用），
     但仍保留鼠标悬停切换彩色，避免功能整体失效 */
  .lm-cell.is-focus .lm-bw { opacity: .62; }
  .lm-cell.is-focus .lm-color { opacity: 0; }
  .lm-cell:hover .lm-bw { opacity: 0; }
  .lm-cell:hover .lm-color { opacity: 1; }
  .lm-cell.is-focus { border-color: var(--line); box-shadow: var(--shadow-sm); }
}

/* ==========================================================================
   31. 服务城市：滚动条 / 省级卡片 / 城市分组
   ========================================================================== */

/* ---------- 31.1 城市滚动条（左右滑动，悬停暂停） ---------- */
/* 与 LOGO 墙同一套无缝循环：行内放两份相同轨道，位移 -50% 后无感接续。
   城市是真实链接，页脚铺一份等于给全站每个页面都加上了城市页的内链入口。 */
.city-marquee { overflow: hidden; position: relative; }
.cym-row {
  display: flex; width: max-content;
  animation: cymScroll var(--cym-speed, 60s) linear infinite;
}
.city-marquee:hover .cym-row { animation-play-state: paused; }
.cym-row + .cym-row { margin-top: 8px; }
.cym-track { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; flex: none; }
.cym-chip { margin: 0 4px; }
.cym-chip a {
  display: inline-block; padding: 5px 13px; border-radius: 999px; font-size: .78125rem;
  color: var(--muted); background: #fff; border: 1px solid var(--line);
  white-space: nowrap; transition: all .2s var(--ease);
}
.cym-chip a:hover {
  color: var(--brand); border-color: var(--brand); background: var(--brand-soft);
  text-decoration: none; transform: translateY(-1px);
}
@keyframes cymScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 页脚深色底变体 */
.city-marquee--foot .cym-chip a {
  color: rgba(255, 255, 255, .78); background: transparent; border-color: rgba(255, 255, 255, .18);
}
.city-marquee--foot .cym-chip a:hover {
  color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .45);
}

/* ---------- 31.2 省级服务范围卡片 ---------- */
.prov-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px;
}
.prov-card {
  display: block; padding: 20px 22px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: all .22s var(--ease);
}
.prov-card:hover {
  border-color: var(--brand); box-shadow: var(--shadow);
  transform: translateY(-3px); text-decoration: none;
}
.prov-card h3 { font-size: 1.0625rem; margin: 0 0 8px; color: var(--text); }
.prov-card:hover h3 { color: var(--brand); }
.pc-desc { font-size: .8125rem; line-height: 1.75; color: var(--muted); margin: 0 0 10px; }
.pc-meta { font-size: .78125rem; line-height: 1.7; color: var(--muted-2); margin: 0; }
.pc-meta strong { color: var(--brand); }

/* ---------- 31.3 城市分组里的省级页入口 ---------- */
.cg-hub { margin-left: 8px; font-size: .75rem; font-weight: 400; color: var(--brand); }
.cg-hub:hover { text-decoration: underline; }
.aside-more { margin: 10px 0 0; font-size: .8125rem; }

@media (max-width: 860px) {
  .prov-grid { grid-template-columns: 1fr; gap: 12px; }
  .cym-chip a { padding: 5px 11px; font-size: .75rem; }
  .foot-city-head { margin-bottom: 8px; }
  .coverage-stats { gap: 8px; }
  .coverage-stats li { padding: 11px 10px; }
  .coverage-stats strong { font-size: 1.25rem; }
}

/* ---------- 31.4 首页「服务动态」资讯滚动条 ---------- */
/* 与城市条同一套无缝循环做法（两份轨道 + 位移 -50%），区别是条目是长标题，
   所以用 title 属性承载完整文案、视觉上单行不换行；两行同向滚动，悬停暂停。 */
.news-marquee { overflow: hidden; position: relative; }
.nwm-row {
  display: flex; width: max-content;
  animation: nwmScroll var(--nwm-speed, 64s) linear infinite;
}
.news-marquee:hover .nwm-row { animation-play-state: paused; }
.nwm-row + .nwm-row { margin-top: 8px; }
.nwm-track { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; flex: none; }
.nwm-chip { margin: 0 5px; }
.nwm-chip a {
  display: inline-block; padding: 6px 15px; border-radius: 999px; font-size: .8125rem;
  color: var(--text); background: #fff; border: 1px solid var(--line);
  white-space: nowrap; transition: all .2s var(--ease);
}
.nwm-chip a:hover {
  color: var(--brand); border-color: var(--brand); background: var(--brand-soft);
  text-decoration: none; transform: translateY(-1px);
}
@keyframes nwmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* 放在动画声明之后：同层选择器下"后写的生效"，否则会被上面的 animation 覆盖 */
@media (prefers-reduced-motion: reduce) {
  .nwm-row { animation: none; }
}

/* 服务动态：紧跟「合作名录」下方的窄条，上边距收窄，形成"名录 → 动态"的连续阅读带 */
.sec-news-ticker { padding-top: 26px; padding-bottom: 40px; }
.ticker-head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 14px;
}
.ticker-title { font-size: 1.0625rem; margin: 0; color: var(--text); }
.ticker-note { margin: 0; font-size: .8125rem; color: var(--muted); flex: 1 1 320px; }
.ticker-more { font-size: .8125rem; font-weight: 600; color: var(--brand); white-space: nowrap; }
.ticker-more:hover { text-decoration: underline; }
.ticker-more i { font-style: normal; margin-left: 4px; }

/* ==========================================================================
   32. 文件与资料翻译：分组导航与分组块
   ========================================================================== */

.ft-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 6px; }
.ft-nav-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: .84375rem; color: var(--text); transition: all .2s var(--ease);
}
.ft-nav-item em {
  font-style: normal; font-size: .75rem; color: var(--muted-2);
  background: var(--bg-soft); border-radius: 999px; padding: 1px 8px;
}
.ft-nav-item:hover {
  border-color: var(--brand); color: var(--brand); background: var(--brand-soft);
  text-decoration: none;
}
.ft-nav-item:hover em { color: var(--brand); background: #fff; }

.ft-group { margin-top: 34px; }
.ft-group .sec-head { margin-bottom: 18px; }

@media (max-width: 860px) {
  .ft-nav { gap: 8px; }
  .ft-nav-item { padding: 7px 13px; font-size: .8125rem; }
  .ft-group { margin-top: 26px; }
}
