/* =========================================================
   Mingqian Visa · 茗签出国  —  Design System v2
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* 色阶 */
  --navy-950: #04101f;
  --navy-900: #071a33;
  --navy-800: #0a2540;
  --navy-700: #123657;
  --navy-600: #1a4a75;

  --ink-900: #0b182a;
  --ink-800: #172a44;
  --ink-700: #2b3f59;
  --ink-600: #445d7c;
  --ink-500: #62789a;
  --ink-400: #8ba1bd;
  --ink-300: #aebfd2;

  --line: #e4eaf3;
  --line-soft: #eff3f9;
  --line-strong: #d3dded;

  --bg: #f4f7fc;
  --bg-alt: #ffffff;
  --bg-sunken: #eef2f9;
  --card: #ffffff;

  --brand: #1657d6;
  --brand-600: #1348b4;
  --brand-dark: #0d3a94;
  --brand-light: #4d8bff;
  --brand-soft: #e9f0ff;
  --brand-tint: #f4f8ff;

  --teal: #0ea5a4;
  --teal-deep: #0b7f7e;
  --teal-soft: #e0f6f5;

  --accent: #ff8a3d;
  --accent-deep: #e06f22;
  --accent-soft: #fff1e7;

  --gold: #f5b544;
  --green: #15a04a;
  --green-soft: #e6f8ee;
  --rose: #e84a5f;
  --rose-soft: #fdecef;
  --violet: #7a5cf0;
  --violet-soft: #f0ecff;

  /* 圆角 */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* 阴影 —— 多层叠加，避免“一坨灰” */
  --sh-1: 0 1px 2px rgba(11, 24, 42, .05), 0 1px 1px rgba(11, 24, 42, .03);
  --sh-2: 0 2px 4px rgba(11, 24, 42, .04), 0 6px 16px rgba(11, 24, 42, .05);
  --sh-3: 0 4px 8px rgba(11, 24, 42, .05), 0 14px 34px rgba(11, 24, 42, .07);
  --sh-4: 0 8px 16px rgba(11, 24, 42, .06), 0 28px 64px rgba(11, 24, 42, .11);
  --sh-brand: 0 6px 14px rgba(22, 87, 214, .18), 0 16px 36px rgba(22, 87, 214, .22);
  --sh-accent: 0 6px 14px rgba(224, 111, 34, .18), 0 16px 34px rgba(224, 111, 34, .24);
  --ring: 0 0 0 4px rgba(22, 87, 214, .14);

  /* 间距节奏 */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 22px; --sp-6: 28px; --sp-7: 36px; --sp-8: 48px;
  --sp-9: 64px; --sp-10: 84px;

  --container: 1200px;
  --header-h: 74px;

  /* 缓动 */
  --ease: cubic-bezier(.22, .8, .28, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .48, 1);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", Roboto, Helvetica, Arial, sans-serif;
  --font-num: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", Consolas, monospace;

  --grad-brand: linear-gradient(135deg, #1657d6 0%, #3f8bff 55%, #0ea5a4 100%);
  --grad-head: linear-gradient(96deg, #7fb4ff 8%, #4fe3d8 58%, #ffd28a 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  margin: 0; color: var(--ink-900);
  font-weight: 700; letter-spacing: -.018em; line-height: 1.26;
  text-wrap: balance;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(22, 87, 214, .18); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 880px; }
.section { padding: var(--sp-10) 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-sunken { background: var(--bg-sunken); }
.section-dark { background: var(--navy-800); color: #c9d8ec; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

/* 上移并压在深色头图上：必须高于头图的定位伪元素 */
.pull-up { position: relative; z-index: 4; margin-top: -68px; }

.stack-sm > * + * { margin-top: 10px; }
.stack > * + * { margin-top: 20px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 排版 ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
  padding: 7px 15px 7px 13px; border-radius: var(--r-pill);
  border: 1px solid rgba(22, 87, 214, .1);
}
.eyebrow::before {
  content: ""; width: 16px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .55; flex-shrink: 0;
}
.eyebrow.on-dark {
  background: rgba(255, 255, 255, .09); color: #a8ccff;
  border-color: rgba(255, 255, 255, .16); backdrop-filter: blur(8px);
}
.eyebrow.teal { color: var(--teal-deep); background: var(--teal-soft); border-color: rgba(14, 165, 164, .14); }

.section-head { max-width: 720px; margin-bottom: var(--sp-8); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(27px, 3.5vw, 42px); margin: 18px 0 16px; line-height: 1.2;
}
.section-head p { color: var(--ink-500); font-size: 17px; line-height: 1.75; }
.lead { font-size: 18.5px; color: var(--ink-500); line-height: 1.8; }
.text-muted { color: var(--ink-500); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12.5px; }
.mono { font-family: var(--font-num); font-feature-settings: "tnum"; }
.center { text-align: center; }
.hl { color: var(--ink-900); font-weight: 700; }
/* 标题下划线强调 */
.mark {
  position: relative; z-index: 1; white-space: nowrap;
}
.mark::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .1em; height: .34em;
  background: linear-gradient(90deg, rgba(22, 87, 214, .18), rgba(14, 165, 164, .18));
  border-radius: 3px; z-index: -1;
}

/* ---------- 按钮 ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 23px; border-radius: var(--r-pill);
  font-weight: 650; font-size: 15px; white-space: nowrap; letter-spacing: .005em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease),
              background .24s var(--ease), color .24s var(--ease),
              border-color .24s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0));
  opacity: 0; transition: opacity .24s var(--ease);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(1px) scale(.985); }
.btn .arrow { transition: transform .28s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(22,87,214,.22), 0 22px 46px rgba(22,87,214,.28); }

.btn-accent { background: linear-gradient(135deg, #ff9a52, #ff7a26); color: #fff; box-shadow: var(--sh-accent); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(224,111,34,.22), 0 22px 44px rgba(224,111,34,.3); }

.btn-ghost { border: 1.5px solid var(--line-strong); background: #fff; color: var(--ink-900); box-shadow: var(--sh-1); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--sh-2); }

.btn-light {
  background: rgba(255, 255, 255, .1); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .26); backdrop-filter: blur(10px);
}
.btn-light:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .42); transform: translateY(-2px); }

.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 17px; font-size: 14px; }

/* ---------- 滚动进度条 ---------- */
#scrollProgress {
  position: fixed; inset: 0 auto auto 0; z-index: 120;
  height: 2.5px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--teal) 60%, var(--gold));
  box-shadow: 0 0 12px rgba(22, 87, 214, .5);
  transition: width .08s linear;
}

/* ---------- 页眉 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(190%) blur(16px);
  -webkit-backdrop-filter: saturate(190%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .93);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 24, 42, .02), 0 8px 28px rgba(11, 24, 42, .06);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  /* 品牌 logo（透明 PNG）。不带底色，直接坐在页头浅色 / 页脚深色背景上 */
  position: relative; width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  transition: transform .4s var(--ease-spring);
}
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.07); }
.brand-text { display: flex; flex-direction: column; line-height: 1.06; }
.brand-text strong { font-size: 16.5px; color: var(--ink-900); letter-spacing: .015em; }
.brand-text em {
  font-style: normal; font-size: 10px; letter-spacing: .24em;
  color: var(--ink-400); text-transform: uppercase; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
  position: relative; padding: 9px 14px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 550; color: var(--ink-600);
  transition: color .22s var(--ease), background .22s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px; border-radius: 2px; background: var(--brand);
  transition: transform .28s var(--ease-out);
}
.nav a:hover { color: var(--brand); background: var(--brand-tint); }
.nav a.is-active { color: var(--brand); font-weight: 700; background: var(--brand-soft); }
.nav a.is-active::after { transform: translateX(-50%) scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 9px; margin-left: 10px; }
.header-actions .btn { padding: 10px 19px; font-size: 14px; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1.5px solid var(--line-strong); background: #fff; margin-left: auto;
  box-shadow: var(--sh-1);
}
.nav-toggle span { display: block; width: 17px; height: 2px; background: var(--ink-900); margin: 3.5px auto; border-radius: 2px; transition: .28s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-400);
}
.field input, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: #fafcff; color: var(--ink-900);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.field input::placeholder { color: var(--ink-300); }
.field input:hover, .field select:hover { border-color: var(--line-strong); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: var(--ring);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2362789a' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px;
}
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--bg-sunken); color: var(--ink-700);
  font-size: 13px; font-weight: 600;
  border: 1px solid transparent;
  transition: all .22s var(--ease);
}
.chip:hover {
  background: var(--brand-soft); color: var(--brand);
  border-color: rgba(22, 87, 214, .16); transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(22, 87, 214, .12);
}

/* =========================================================
   内容站组件（Editorial）：报头 / 版块导航 / 头条 / 文章流
   ========================================================= */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 报头 ---------- */
.masthead {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(152deg, #04101f 0%, #071a33 34%, #0a2540 68%, #123657 100%);
  color: #b7cbe4;
  padding: 70px 0 0;
}
/* 顶部渐变色带 —— 品牌识别锚点，与内页深色标题条呼应 */
.masthead::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 4;
  background: linear-gradient(90deg, var(--brand) 0%, var(--teal) 42%, var(--gold) 74%, var(--rose) 100%);
}
/* 彩色光晕层 */
.masthead::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(720px 390px at 86% -10%, rgba(14, 165, 164, .36), transparent 62%),
    radial-gradient(680px 380px at -6% 106%, rgba(22, 87, 214, .44), transparent 64%),
    radial-gradient(560px 320px at 48% 122%, rgba(122, 92, 240, .3), transparent 68%);
}
.mast-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
/* 网格遮罩 —— 给深色面一点结构感 */
.mast-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(128% 96% at 50% 0%, #000 16%, transparent 76%);
  -webkit-mask-image: radial-gradient(128% 96% at 50% 0%, #000 16%, transparent 76%);
}
/* 旋转轨道 */
.mast-bg::after {
  content: ""; position: absolute;
  width: 620px; height: 620px; right: -180px; top: -264px; border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .13);
  box-shadow: inset 0 0 0 74px rgba(255, 255, 255, .015);
  animation: spinSlow 52s linear infinite;
}
.mast-glow { position: absolute; border-radius: 50%; filter: blur(88px); }
.mast-glow.g1 { width: 660px; height: 460px; left: -200px; top: -240px; background: radial-gradient(circle, rgba(63, 139, 255, .3), transparent 70%); }
.mast-glow.g2 { width: 540px; height: 400px; right: -160px; top: -200px; background: radial-gradient(circle, rgba(232, 74, 95, .2), transparent 70%); }

.mast-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 56px;
  align-items: start; padding-bottom: 54px;
}
.mast-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 22px; }
.mast-update { font-size: 12.5px; color: #8ba6c6; }
.mast-update b { color: #dcebfb; font-family: var(--font-num); font-weight: 700; }
.mast-lead h1 {
  color: #fff; font-size: clamp(33px, 4vw, 54px);
  line-height: 1.1; letter-spacing: -.035em;
  text-shadow: 0 6px 34px rgba(0, 0, 0, .34);
}
.mast-lead > p { margin-top: 22px; max-width: 560px; color: #a8c1de; font-size: 17px; }
/* 栏目索引 —— 每个维度前一颗发光点 */
.mast-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 11px 24px; margin-top: 28px; }
.mast-tags span { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: #9db8d6; }
.mast-tags span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg, #4fe3d8, #7fb4ff);
  box-shadow: 0 0 10px rgba(79, 227, 216, .75);
}
/* 深色底上的渐变标题字 —— 换成更亮的浅色系渐变 */
.masthead .grad { background: var(--grad-head); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* 玻璃拟态查询面板 */
.mast-panel {
  padding: 22px 22px 20px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .16);
}
.mast-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .96);
  border: 1.5px solid transparent;
  border-radius: var(--r-md); padding: 6px 6px 6px 15px;
  box-shadow: 0 2px 6px rgba(4, 16, 31, .18), inset 0 1px 2px rgba(4, 16, 31, .04);
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.mast-search:focus-within { border-color: var(--brand-light); box-shadow: 0 0 0 4px rgba(79, 139, 255, .3); }
.mast-search .ico { font-size: 16px; opacity: .5; flex: 0 0 auto; }
.mast-search input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 15.5px; color: var(--ink-900); padding: 10px 0;
}
.mast-search input::placeholder { color: var(--ink-300); }
.mast-hints { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; }
.mast-hints .lbl { font-size: 12.5px; color: #8ba6c6; font-weight: 600; }
/* 深色底上的热词 chip */
.masthead .chip {
  background: rgba(255, 255, 255, .1); color: #c9dcf2;
  border-color: rgba(255, 255, 255, .16);
}
.masthead .chip:hover {
  background: rgba(255, 255, 255, .2); color: #fff;
  border-color: rgba(255, 255, 255, .34);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}
/* 玻璃面板底部的信任条 */
.mast-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.mt-faces { display: flex; flex: 0 0 auto; }
.mt-faces i {
  width: 27px; height: 27px; border-radius: 50%; margin-left: -9px;
  display: grid; place-items: center;
  font-style: normal; font-size: 11.5px; font-weight: 700; color: #fff;
  border: 2px solid rgba(255, 255, 255, .24);
  background: linear-gradient(140deg, var(--brand), var(--brand-light));
}
.mt-faces i:first-child { margin-left: 0; }
.mt-faces i:nth-child(2) { background: linear-gradient(140deg, var(--teal), #4fe3d8); }
.mt-faces i:nth-child(3) { background: linear-gradient(140deg, var(--accent-deep), var(--gold)); }
.mt-faces i:last-child { background: rgba(255, 255, 255, .15); font-size: 13px; }
.mast-trust .mt-txt { font-size: 12.5px; color: #90aac9; line-height: 1.5; }
.mast-trust .mt-txt b { color: var(--gold); font-family: var(--font-num); font-size: 14px; font-weight: 700; }

/* ---------- 版块导航条 ---------- */
.topic-bar {
  position: relative; z-index: 2;
  display: flex; gap: 2px;
  overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
  border-top: 1px solid rgba(255, 255, 255, .11);
}
.topic-bar::-webkit-scrollbar { display: none; }
.topic-bar a {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 15px; font-size: 14.5px; font-weight: 600; color: #a4bcd8;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .22s var(--ease), border-color .22s var(--ease);
}
.topic-bar a i {
  font-style: normal; font-family: var(--font-num); font-size: 11.5px;
  color: #8ba6c6; background: rgba(255, 255, 255, .09);
  border-radius: var(--r-pill); padding: 1px 7px;
  transition: color .22s var(--ease), background .22s var(--ease);
}
.topic-bar a:hover { color: #fff; border-bottom-color: #4fe3d8; }
.topic-bar a:hover i { color: #04222c; background: #4fe3d8; }

/* ---------- 区块标题行 ---------- */
.section-head-row {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: var(--sp-7);
}
.section-head-row h2 { font-size: clamp(23px, 2.5vw, 32px); margin-top: 14px; }
.section-head-row p { margin-top: 10px; color: var(--ink-500); font-size: 15.5px; max-width: 620px; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--brand); white-space: nowrap; }
.link-more .arrow { transition: transform .28s var(--ease-out); }
.link-more:hover .arrow { transform: translateX(4px); }

/* ---------- 头条 ---------- */
.lead-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 34px; align-items: start; }
.lead-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), border-color .34s var(--ease);
}
.lead-card:hover { transform: translateY(-5px); box-shadow: var(--sh-4); border-color: #d7e3f6; }
.lead-cover { position: relative; height: 286px; display: grid; place-items: center; overflow: hidden; }
/* 网格纹理 */
.lead-cover::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(96% 96% at 50% 50%, #000 8%, transparent 78%);
  -webkit-mask-image: radial-gradient(96% 96% at 50% 50%, #000 8%, transparent 78%);
}
/* 顶部高光 + 悬浮玻璃圆盘 */
.lead-cover::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .16) 0 76px, rgba(255, 255, 255, .05) 78px, transparent 132px),
    radial-gradient(115% 85% at 18% 8%, rgba(255, 255, 255, .22), transparent 62%);
}
.lead-cover .lead-emoji {
  position: relative; z-index: 2;
  font-size: 72px; line-height: 1;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, .38));
  transition: transform .5s var(--ease-spring);
}
.lead-card:hover .lead-emoji { transform: scale(1.1) rotate(-4deg); }
.lead-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.lead-body h3 { font-size: 25px; line-height: 1.36; transition: color .22s var(--ease); }
.lead-card:hover h3 { color: var(--brand); }
.lead-body p { margin-top: 13px; color: var(--ink-500); font-size: 15.5px; line-height: 1.78; }

.byline {
  display: flex; align-items: center; gap: 11px;
  margin-top: auto; padding-top: 22px; border-top: 1px dashed var(--line);
}
.byline .avatar {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  color: #fff; background: var(--grad-brand);
}
.byline .by-txt { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.byline .by-txt b { font-size: 14px; color: var(--ink-900); }
.byline .by-txt em { font-style: normal; font-size: 12px; color: var(--ink-400); }
.byline .by-meta { margin-left: auto; font-size: 12.5px; color: var(--ink-400); font-family: var(--font-num); white-space: nowrap; }

.lead-side { display: grid; gap: 16px; }
.mini-card {
  display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 18px; align-items: center;
  padding: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease);
}
.mini-card:hover { transform: translateX(4px); box-shadow: var(--sh-3); border-color: #d7e3f6; }
.mini-thumb {
  height: 98px; border-radius: var(--r-sm); overflow: hidden;
  display: grid; place-items: center; font-size: 34px; line-height: 1;
}
.mini-cat { font-size: 11.5px; font-weight: 800; color: var(--brand); letter-spacing: .05em; }
.mini-body h4 { margin-top: 7px; font-size: 16px; line-height: 1.5; transition: color .22s var(--ease); }
.mini-card:hover h4 { color: var(--brand); }
.mini-meta { margin-top: 8px; font-size: 12px; color: var(--ink-400); }

/* ---------- 文章流末端：查看更多磁贴 ---------- */
.ghost-tile {
  display: grid; place-content: center; justify-items: center; gap: 9px; text-align: center;
  min-height: 268px; padding: 24px;
  border: 1.5px dashed var(--line-strong); border-radius: var(--r);
  color: var(--ink-600);
  transition: border-color .26s var(--ease), color .26s var(--ease), background .26s var(--ease), transform .26s var(--ease);
}
.ghost-tile:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-tint); transform: translateY(-4px); }
.ghost-tile .gt-num { font-family: var(--font-num); font-size: 31px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.ghost-tile .gt-txt { font-size: 14px; font-weight: 600; }

/* ---------- 目的地快捷入口 ---------- */
.dest-chips { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.dest-chip {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 15px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.dest-chip:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: rgba(22, 87, 214, .34); }
/* 国旗放进磨砂方块 */
.dest-chip .dc-flag {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center; font-size: 22px; line-height: 1;
  background: linear-gradient(160deg, var(--bg-sunken), #e6ecf6);
  box-shadow: inset 0 0 0 1px rgba(11, 24, 42, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .42s var(--ease-spring), background .3s var(--ease), box-shadow .3s var(--ease);
}
.dest-chip:hover .dc-flag {
  transform: scale(1.08) rotate(-7deg);
  background: var(--grad-brand);
  box-shadow: var(--sh-brand);
}
.dest-chip .dc-txt { display: flex; flex-direction: column; line-height: 1.42; min-width: 0; }
.dest-chip .dc-txt b { font-size: 14.5px; color: var(--ink-900); }
.dest-chip .dc-txt em { font-style: normal; font-size: 12px; color: var(--ink-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- 下沉区（企业与服务） ---------- */
.band { background: var(--bg-sunken); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-head { max-width: 740px; margin: 0 auto var(--sp-8); text-align: center; }
.band-head .eyebrow { justify-content: center; }
.band-head h2 { font-size: clamp(24px, 2.7vw, 34px); margin: 18px 0 14px; }
.band-head p { color: var(--ink-500); font-size: 16.5px; line-height: 1.8; }

/* ---------- 响应式：内容站组件 ---------- */
@media (max-width: 1120px) {
  .mast-inner { grid-template-columns: minmax(0, 1fr) 350px; gap: 38px; }
  .lead-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 26px; }
  .dest-chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .mast-inner { grid-template-columns: 1fr; gap: 30px; }
  .mast-panel { max-width: 560px; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-cover { height: 240px; }
  .lead-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-card { grid-template-columns: 104px minmax(0, 1fr); gap: 14px; }
  .dest-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .masthead { padding-top: 44px; }
  .mast-inner { padding-bottom: 34px; }
  .mast-lead h1 { font-size: 32px; }
  .mast-update { display: none; }
  .mast-panel { padding: 16px; }
  .mast-bg::after { width: 420px; height: 420px; right: -140px; top: -184px; }
  .mast-search { flex-wrap: wrap; padding: 10px; }
  .mast-search .ico { display: none; }
  .mast-search input { padding: 10px 6px; }
  .mast-search .btn { width: 100%; }
  .lead-side { grid-template-columns: 1fr; }
  .lead-cover { height: 210px; }
  .lead-cover .lead-emoji { font-size: 54px; }
  .lead-body { padding: 20px; }
  .lead-body h3 { font-size: 21px; }
  .byline .by-meta { display: none; }
  .mini-card { grid-template-columns: 92px minmax(0, 1fr); gap: 13px; }
  .mini-thumb { height: 80px; font-size: 28px; }
  .mini-body h4 { font-size: 15px; }
  .ghost-tile { min-height: 152px; }
  .dest-chips { grid-template-columns: 1fr; }
}

/* ---------- 数据面板 ---------- */
.stats-panel {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-2);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 8px;
}
.stats-panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--teal), var(--gold), var(--violet));
  opacity: .85;
}
.stat { padding: 26px 24px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.stat .num {
  font-size: 38px; font-weight: 800; color: var(--ink-900);
  font-family: var(--font-num); letter-spacing: -.035em;
  line-height: 1.1; display: flex; align-items: baseline;
}
.stat .num small { font-size: 17px; margin-left: 3px; font-weight: 700; color: var(--brand); letter-spacing: 0; }
.stat .cap { font-size: 14px; color: var(--ink-500); margin-top: 6px; }
.stats-section-dark .stat .num { color: #fff; }
.stats-section-dark .stat .num small { color: #4fe3d8; }
.stats-section-dark .stat .cap { color: #9db4d1; }

/* 旧式独立卡片（保留兼容） */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats:not(.stats-panel) .stat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-1);
}
.stats:not(.stats-panel) .stat::before { display: none; }

/* ---------- 通用卡片 ---------- */
.card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px;
  box-shadow: var(--sh-1);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), border-color .34s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 220px at 50% -20%, rgba(22, 87, 214, .07), transparent 70%);
  opacity: 0; transition: opacity .34s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-4); border-color: #d7e3f6; }
.card:hover::after { opacity: 1; }
.card h3 { font-size: 19.5px; margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 15px; line-height: 1.75; }

.icon-badge {
  position: relative; width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 18px;
  background: var(--brand-soft); color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(22, 87, 214, .09);
  transition: transform .38s var(--ease-spring);
}
.card:hover .icon-badge { transform: scale(1.08) rotate(-5deg); }
.icon-badge.teal { background: var(--teal-soft); color: var(--teal-deep); box-shadow: inset 0 0 0 1px rgba(14,165,164,.1); }
.icon-badge.accent { background: var(--accent-soft); color: var(--accent-deep); box-shadow: inset 0 0 0 1px rgba(255,138,61,.12); }
.icon-badge.green { background: var(--green-soft); color: var(--green); box-shadow: inset 0 0 0 1px rgba(21,160,74,.1); }
.icon-badge.rose { background: var(--rose-soft); color: var(--rose); box-shadow: inset 0 0 0 1px rgba(232,74,95,.1); }
.icon-badge.violet { background: var(--violet-soft); color: var(--violet); box-shadow: inset 0 0 0 1px rgba(122,92,240,.1); }

/* ---------- 目的地卡片 ---------- */
.dest-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .38s var(--ease-out), box-shadow .38s var(--ease-out), border-color .38s var(--ease);
}
.dest-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 5;
  padding: 1px;
  background: linear-gradient(140deg, rgba(22, 87, 214, .55), rgba(14, 165, 164, .4) 50%, rgba(255, 138, 61, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .38s var(--ease);
}
.dest-card:hover { transform: translateY(-7px); box-shadow: var(--sh-4); border-color: transparent; }
.dest-card:hover::before { opacity: 1; }

.dest-cover {
  position: relative; height: 124px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; overflow: hidden;
}
.dest-cover::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 1.2px, transparent 1.2px);
  background-size: 15px 15px; opacity: .55;
}
.dest-cover::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(160px 100px at 100% 0%, rgba(255, 255, 255, .3), transparent 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, .16));
}
.dest-cover .flag {
  position: relative; z-index: 2;
  width: 62px; height: 62px; border-radius: 19px;
  display: grid; place-items: center; font-size: 33px; line-height: 1;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .34);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: transform .42s var(--ease-spring);
}
.dest-card:hover .dest-cover .flag { transform: scale(1.07) rotate(-6deg); }
.dest-cover .region-tag {
  position: relative; z-index: 2;
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  color: #fff; background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 5px 11px; border-radius: var(--r-pill);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.dest-body { padding: 21px; display: flex; flex-direction: column; flex: 1; }
.dest-body h3 { font-size: 19.5px; display: flex; align-items: baseline; gap: 8px; }
.dest-body h3 span {
  font-size: 11.5px; color: var(--ink-300); font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
}
.dest-type {
  font-size: 13.5px; color: var(--brand); font-weight: 650;
  margin-top: 7px; display: flex; align-items: center; gap: 6px;
}
.dest-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 17px; }
.dest-meta .m {
  font-size: 12.5px; color: var(--ink-600); background: var(--bg-sunken);
  padding: 5px 11px; border-radius: var(--r-xs);
  border: 1px solid rgba(0, 0, 0, .015);
  display: inline-flex; align-items: center; gap: 5px;
}
.dest-foot {
  margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.diff { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-500); }
.dots { display: inline-flex; gap: 3px; }
.dots i {
  width: 13px; height: 4px; border-radius: 2px; background: var(--line-strong);
  display: block; transition: background .3s var(--ease);
}
.dots i.on { background: linear-gradient(90deg, var(--accent), #ffb066); }
.dest-card:hover .dots i.on { background: linear-gradient(90deg, var(--accent-deep), var(--accent)); }
.dest-foot .go {
  font-size: 13.5px; font-weight: 700; color: var(--brand);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.go .arrow { transition: transform .28s var(--ease-out); }
.dest-card:hover .go .arrow { transform: translateX(4px); }

/* ---------- 筛选栏 ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 15px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-2); margin-bottom: 26px;
}
.filter-bar .searchbox { flex: 1 1 250px; position: relative; }
.filter-bar input {
  width: 100%; padding: 12px 15px 12px 40px;
  border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fafcff;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.filter-bar input::placeholder { color: var(--ink-300); }
.filter-bar input:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: var(--ring); }
.filter-bar .searchbox .ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); opacity: .45; font-size: 14px; }

.seg { display: flex; gap: 3px; background: var(--bg-sunken); padding: 4px; border-radius: var(--r-pill); flex-wrap: wrap; }
.seg button {
  padding: 8px 15px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600; color: var(--ink-500);
  transition: all .24s var(--ease);
}
.seg button:hover { color: var(--brand); }
.seg button.is-active {
  background: #fff; color: var(--brand); font-weight: 700;
  box-shadow: 0 1px 2px rgba(11, 24, 42, .06), 0 4px 12px rgba(11, 24, 42, .07);
}
.result-count { font-size: 14px; color: var(--ink-500); margin-bottom: 20px; }
.result-count b { color: var(--ink-900); font-family: var(--font-num); font-size: 15.5px; }
.empty-state {
  grid-column: 1 / -1; text-align: center; padding: 76px 22px;
  border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg); background: #fff;
}
.empty-state .big { font-size: 46px; line-height: 1; }

/* ---------- 步骤时间线 ---------- */
.steps { position: relative; padding-left: 2px; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 24px; align-items: start; padding: 24px 0; position: relative; }
.step + .step { border-top: 1px dashed var(--line); }
.step-num {
  position: relative; width: 54px; height: 54px; border-radius: 17px;
  display: grid; place-items: center;
  font-family: var(--font-num); font-weight: 800; font-size: 19px; color: #fff;
  background: linear-gradient(140deg, var(--brand), #4d8bff 70%, var(--teal));
  box-shadow: 0 5px 12px rgba(22, 87, 214, .2), 0 14px 30px rgba(22, 87, 214, .22);
  transition: transform .4s var(--ease-spring);
}
.step:hover .step-num { transform: scale(1.07) rotate(-4deg); }
.step h3 { font-size: 19.5px; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: 15px; line-height: 1.78; }
.step .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.tag {
  font-size: 12.5px; padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--brand-soft); color: var(--brand); font-weight: 650;
  border: 1px solid rgba(22, 87, 214, .08);
}
.tag.teal { background: var(--teal-soft); color: var(--teal-deep); border-color: rgba(14,165,164,.12); }
.tag.accent { background: var(--accent-soft); color: var(--accent-deep); border-color: rgba(255,138,61,.14); }
.tag.green { background: var(--green-soft); color: #12803c; border-color: rgba(21,160,74,.12); }
.tag.grey { background: var(--bg-sunken); color: var(--ink-600); border-color: transparent; }

/* ---------- 文章卡片 ---------- */
.post-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: transform .38s var(--ease-out), box-shadow .38s var(--ease-out), border-color .38s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-4); border-color: #d7e3f6; }
.post-cover { position: relative; height: 164px; display: grid; place-items: center; overflow: hidden; }
.post-cover::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(92% 92% at 50% 40%, #000 6%, transparent 76%);
  -webkit-mask-image: radial-gradient(92% 92% at 50% 40%, #000 6%, transparent 76%);
}
.post-cover::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(200px 130px at 50% 30%, rgba(255, 255, 255, .24), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .26));
}
.post-cover .emoji {
  position: relative; z-index: 2; font-size: 56px; line-height: 1;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .28));
  transition: transform .5s var(--ease-spring);
}
.post-card:hover .post-cover .emoji { transform: scale(1.12) translateY(-3px); }
/* 大号水印字，增加设计感 */
.post-cover .wm {
  position: absolute; right: 10px; bottom: -20px; z-index: 1;
  font-size: 88px; font-weight: 900; line-height: 1;
  color: rgba(255, 255, 255, .13); letter-spacing: -.06em;
  font-family: var(--font-num); user-select: none;
}
.post-cat {
  position: absolute; top: 15px; left: 15px; z-index: 3;
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  background: rgba(255, 255, 255, .93); color: var(--ink-900);
  padding: 5px 12px; border-radius: var(--r-pill);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}
.post-body { padding: 21px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 17.5px; line-height: 1.5; margin-bottom: 10px; transition: color .22s var(--ease); }
.post-card:hover h3 { color: var(--brand); }
.post-body p { font-size: 14.5px; color: var(--ink-500); line-height: 1.72; }
.post-meta {
  margin-top: auto; padding-top: 17px; display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--ink-400); flex-wrap: wrap;
}
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }

/* ---------- 深色头图（内页 / 文章 / 详情） ---------- */
.article-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800) 58%, #10395f);
  color: #b9cde8; padding: 48px 0 64px;
}
.article-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 360px at 88% -10%, rgba(14, 165, 164, .34), transparent 62%),
    radial-gradient(680px 340px at 2% 108%, rgba(22, 87, 214, .42), transparent 64%),
    radial-gradient(500px 300px at 55% 120%, rgba(122, 92, 240, .28), transparent 68%);
}
.article-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
}
.article-hero .inner { position: relative; z-index: 2; max-width: 840px; }
.article-hero h1 { color: #fff; font-size: clamp(27px, 3.9vw, 41px); line-height: 1.22; margin: 18px 0 20px; }
.article-hero .meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; color: #93aecd; }
.article-hero .meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-hero .inner > p { color: #a6c0e2; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-400); }
.crumbs a:hover { color: var(--brand); }
.crumbs.on-dark, .crumbs.on-dark a { color: #8ba6c6; }
.crumbs.on-dark a:hover { color: #fff; }
.crumbs .sep { opacity: .45; }

/* ---------- 文章正文 ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 324px; gap: 52px; align-items: start; }
.prose { font-size: 16.5px; color: var(--ink-700); }
.prose > * + * { margin-top: 21px; }
.prose h2 { font-size: 25px; margin-top: 48px; padding-left: 18px; position: relative; letter-spacing: -.02em; }
.prose h2::before {
  content: ""; position: absolute; left: 0; top: 5px; bottom: 5px; width: 5px;
  border-radius: 4px; background: linear-gradient(180deg, var(--brand), var(--teal));
  box-shadow: 0 2px 8px rgba(22, 87, 214, .3);
}
.prose h3 { font-size: 19.5px; margin-top: 32px; }
.prose p { line-height: 1.92; }
.prose ul, .prose ol { padding-left: 0; display: grid; gap: 11px; }
.prose ul li, .prose ol li { position: relative; padding-left: 28px; line-height: 1.82; }
.prose ul li::before {
  content: ""; position: absolute; left: 7px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft);
}
.prose ol { counter-reset: n; }
.prose ol li::before {
  counter-increment: n; content: counter(n);
  position: absolute; left: 0; top: 3px;
  width: 21px; height: 21px; border-radius: 7px;
  display: grid; place-items: center;
  font-size: 11.5px; font-weight: 800; color: #fff; font-family: var(--font-num);
  background: linear-gradient(140deg, var(--brand), var(--brand-light));
  box-shadow: 0 3px 8px rgba(22, 87, 214, .24);
}
.prose blockquote {
  margin: 0; padding: 20px 24px 20px 26px; border-radius: var(--r-sm);
  background: linear-gradient(100deg, var(--brand-soft), var(--brand-tint));
  border-left: 4px solid var(--brand);
  color: var(--ink-800); font-size: 15.5px; line-height: 1.85;
  position: relative;
}
.prose blockquote::after {
  content: "\201C"; position: absolute; right: 18px; top: 2px;
  font-size: 56px; line-height: 1; color: rgba(22, 87, 214, .14);
  font-family: Georgia, serif;
}
.prose .callout {
  display: flex; gap: 15px; padding: 19px 21px; border-radius: var(--r-sm);
  background: var(--accent-soft); border: 1px solid #ffdcc2;
  font-size: 15px; line-height: 1.8; box-shadow: var(--sh-1);
}
.prose .callout .ico { font-size: 20px; line-height: 1.45; flex-shrink: 0; }
.prose table {
  width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15px;
  border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden;
}
.prose th, .prose td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th {
  background: linear-gradient(180deg, #f7fafe, #f1f6fc);
  font-size: 13.5px; font-weight: 700; color: var(--ink-900);
  letter-spacing: .01em; white-space: nowrap;
}
.prose tbody tr:nth-child(even) td { background: #fbfdff; }
.prose tbody tr:hover td { background: var(--brand-tint); }
.prose tr:last-child td { border-bottom: 0; }
.prose strong { color: var(--ink-900); font-weight: 700; }

.article-foot {
  margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- 侧栏 ---------- */
.sidebar { position: sticky; top: calc(var(--header-h) + 18px); display: grid; gap: 20px; }
.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 23px; box-shadow: var(--sh-1);
}
.side-card h4 {
  font-size: 15px; margin-bottom: 15px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line-soft);
}
.toc a {
  display: block; padding: 8px 0 8px 15px; font-size: 14px; color: var(--ink-500);
  border-left: 2px solid var(--line); transition: all .24s var(--ease);
  line-height: 1.6;
}
.toc a:hover { color: var(--brand); border-left-color: var(--brand-light); }
.toc a.is-active {
  color: var(--brand); border-left-color: var(--brand);
  font-weight: 700; background: linear-gradient(90deg, var(--brand-tint), transparent);
}
.related-item { display: flex; gap: 13px; padding: 12px 0; }
.related-item + .related-item { border-top: 1px dashed var(--line); }
.related-item .thumb {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  font-size: 22px; flex-shrink: 0; box-shadow: var(--sh-1);
}
.related-item h5 { font-size: 14.5px; font-weight: 650; line-height: 1.5; margin-bottom: 5px; transition: color .22s var(--ease); }
.related-item a:hover h5 { color: var(--brand); }
.related-item .t { font-size: 12px; color: var(--ink-400); }
.cta-side {
  background: linear-gradient(158deg, var(--navy-900), var(--navy-700) 58%, #0e4a63);
  color: #c3d6ee; border-color: transparent; position: relative; overflow: hidden;
}
.cta-side::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 17px 17px; opacity: .6; pointer-events: none;
}
.cta-side > * { position: relative; z-index: 2; }
.cta-side h4 { color: #fff; font-size: 17.5px; border-bottom-color: rgba(255, 255, 255, .14); }
.cta-side p { font-size: 14px; color: #a6c0e2; line-height: 1.75; }

/* ---------- 手风琴 ---------- */
.accordion { display: grid; gap: 11px; }
.acc-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.acc-item:hover { border-color: var(--line-strong); }
.acc-item.is-open { border-color: rgba(22, 87, 214, .28); box-shadow: var(--sh-3); }
.acc-q {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 20px 23px; font-size: 16.5px; font-weight: 650; color: var(--ink-900);
  transition: color .22s var(--ease);
}
.acc-q:hover { color: var(--brand); }
.acc-q .idx {
  font-family: var(--font-num); font-size: 12.5px; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 3px 9px; border-radius: var(--r-xs);
  flex-shrink: 0;
}
.acc-q .plus {
  margin-left: auto; width: 29px; height: 29px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--bg-sunken); color: var(--brand);
  font-size: 17px; line-height: 1;
  transition: transform .34s var(--ease-spring), background .28s var(--ease), color .28s var(--ease);
}
.acc-item.is-open .acc-q .plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease-out); }
.acc-a .inner { padding: 0 23px 23px; color: var(--ink-500); font-size: 15.5px; line-height: 1.88; }

/* FAQ 分类小标题 */
.faq-cat-label {
  display: flex; align-items: center; gap: 10px;
  margin: 32px 0 13px; font-size: 16px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -.01em;
}
.faq-cat-label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); flex-shrink: 0;
}
.faq-cat-label:first-child { margin-top: 0; }

/* ---------- 客户评价 ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--sh-1); position: relative; overflow: hidden;
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), border-color .34s var(--ease);
}
.quote-card::before {
  content: "\201C"; position: absolute; right: 16px; top: -14px;
  font-size: 96px; line-height: 1; color: rgba(22, 87, 214, .07);
  font-family: Georgia, serif; pointer-events: none;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--sh-4); border-color: #d7e3f6; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2.5px; margin-bottom: 13px; }
.quote-card p { font-size: 15px; color: var(--ink-700); line-height: 1.85; }
.who { margin-top: auto; padding-top: 19px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0;
  background: var(--grad-brand);
  box-shadow: 0 3px 8px rgba(22, 87, 214, .22);
}
.who .n { font-size: 14.5px; font-weight: 650; color: var(--ink-900); }
.who .r { font-size: 12.5px; color: var(--ink-400); }

/* ---------- CTA 横幅 ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(148deg, var(--navy-950), #123d6b 56%, #0d5a6b);
  padding: 58px; color: #c6d8f0;
  display: grid; grid-template-columns: 1.4fr auto; gap: 36px; align-items: center;
  box-shadow: 0 10px 24px rgba(11, 24, 42, .1), 0 34px 80px rgba(11, 24, 42, .18);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 300px at 88% -20%, rgba(14, 165, 164, .38), transparent 64%),
    radial-gradient(500px 300px at 4% 120%, rgba(22, 87, 214, .4), transparent 66%);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .085) 1px, transparent 1px);
  background-size: 19px 19px; opacity: .7;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 35px); margin-bottom: 13px; }
.cta-band p { color: #a6c0e2; font-size: 16.5px; line-height: 1.78; }

/* ---------- 表单 ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 24px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg {
  font-size: 14px; padding: 14px 17px; border-radius: var(--r-sm);
  background: var(--green-soft); color: #12803c; font-weight: 600;
  display: none; line-height: 1.7;
}
.form-msg.is-on { display: block; animation: popIn .34s var(--ease-out); }
/* 个人信息处理告知与同意（收集信息时必须让用户可感知地看到隐私政策入口） */
.agree-line {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 16px; font-size: 13px; line-height: 1.7; color: var(--ink-500);
  cursor: pointer;
}
.agree-line input {
  width: 16px; height: 16px; margin: 3px 0 0; flex-shrink: 0;
  accent-color: var(--brand); cursor: pointer;
}
.agree-line a { color: var(--brand); font-weight: 650; }
.agree-line a:hover { text-decoration: underline; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes popIn { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- 面板 / 列表 ---------- */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; box-shadow: var(--sh-1);
}
.panel-tinted { background: linear-gradient(180deg, #fbfdff, #f7fafe); }
.panel h3 { font-size: 20px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }

.info-list { display: grid; gap: 0; }
.info-row {
  display: grid; grid-template-columns: 124px 1fr; gap: 18px; padding: 15px 0;
  border-bottom: 1px dashed var(--line); align-items: baseline;
}
.info-row:last-child { border-bottom: 0; }
.info-row .k { font-size: 13.5px; color: var(--ink-400); font-weight: 600; letter-spacing: .02em; }
.info-row .v { font-size: 15.5px; color: var(--ink-900); font-weight: 550; }

.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.78; }
.checklist .ck {
  width: 22px; height: 22px; border-radius: 8px; flex-shrink: 0; margin-top: 2px;
  display: grid; place-items: center; font-size: 11.5px; font-weight: 800;
  background: var(--green-soft); color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(21, 160, 74, .12);
}
.checklist.warn .ck { background: var(--rose-soft); color: var(--rose); box-shadow: inset 0 0 0 1px rgba(232, 74, 95, .12); }

.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 650; white-space: nowrap;
}
.badge-blue { background: var(--brand-soft); color: var(--brand); }
.badge-green { background: var(--green-soft); color: #12803c; }
.badge-amber { background: var(--accent-soft); color: var(--accent-deep); }
.badge-rose { background: var(--rose-soft); color: #c02c43; }
.badge-grey { background: var(--bg-sunken); color: var(--ink-600); }
a.badge-pill { transition: all .22s var(--ease); }
a.badge-pill:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

/* ---------- 页脚 ---------- */
.site-footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--navy-950), #061425);
  color: #8ea9c9; padding: 72px 0 0;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 139, 255, .5), rgba(79, 227, 216, .4), transparent);
}
.site-footer::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 82% 0%, rgba(22, 87, 214, .16), transparent 68%);
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 44px; padding-bottom: 48px; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text em { color: #5f7ba0; }
.footer-about p { font-size: 14.5px; line-height: 1.88; margin-top: 19px; max-width: 330px; color: #7f9abd; }
.footer-col h5 { color: #fff; font-size: 14.5px; margin-bottom: 17px; letter-spacing: .05em; }
.footer-col a {
  display: block; font-size: 14.5px; padding: 6.5px 0; color: #8ea9c9;
  transition: color .22s var(--ease), transform .22s var(--ease);
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .09); padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 13.5px;
}
.footer-bot .fb-left { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer-bot .fb-links, .footer-bot .fb-beian { display: inline-flex; flex-wrap: wrap; align-items: center; }
.footer-bot .fb-links { gap: 14px; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .16); }
.footer-bot .fb-links a { color: #9db6d4; transition: color .22s var(--ease); }
.footer-bot .fb-links a:hover { color: #fff; }
.footer-bot .fb-beian { gap: 14px; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .16); font-size: 12.5px; }
.footer-bot .fb-beian a { color: #5f7ba0; font-size: 12.5px; transition: color .22s var(--ease); }
.footer-bot .fb-beian a:hover { color: #9db6d4; }
.footer-bot .disclaimer { max-width: 640px; color: #5f7ba0; font-size: 12.5px; line-height: 1.75; }
@media (max-width: 620px) {
  .footer-bot { flex-direction: column; align-items: flex-start; }
  .footer-bot .fb-links, .footer-bot .fb-beian { padding-left: 0; border-left: 0; }
}

/* ---------- 回到顶部 ---------- */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  background: #fff; color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: 0 4px 10px rgba(11, 24, 42, .07), 0 16px 34px rgba(11, 24, 42, .12);
  opacity: 0; pointer-events: none; transform: translateY(14px) scale(.92);
  transition: all .34s var(--ease-spring);
  font-size: 17px;
}
.back-to-top.is-on { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--sh-brand); }

/* ---------- 入场动画 ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .78s var(--ease-out), transform .78s var(--ease-out);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1120px) {
}
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 38px; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cta-band { grid-template-columns: 1fr; padding: 42px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    margin: 0; padding: 14px 22px 24px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(11, 24, 42, .1);
    transform: translateY(-125%);
    transition: transform .38s var(--ease-out);
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 14px 15px; font-size: 16px; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-actions { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 19px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-panel { grid-template-columns: 1fr; padding: 6px; }
  .stat { padding: 20px 18px; }
  .stat + .stat::before { left: 18px; right: 18px; top: 0; bottom: auto; width: auto; height: 1px; }
  .stat:nth-child(3)::before { display: block; }
  .step { grid-template-columns: 1fr; gap: 15px; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; border-radius: var(--r); }
  .brand-text em { display: none; }
  .acc-q { font-size: 15.5px; padding: 17px 18px; gap: 12px; }
  .acc-a .inner { padding: 0 18px 19px; }
  .article-hero h1 { font-size: 25px; }
  .back-to-top { right: 16px; bottom: 16px; }
  .post-cover { height: 148px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .back-to-top, #scrollProgress, .cta-band { display: none; }
  body { background: #fff; }
  .prose { font-size: 12pt; }
}

/* =========================================================
   文章封面图（原创配图）与信息核对块
   ========================================================= */
.has-cv { position: relative; }
.cv-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.lead-card:hover .cv-img,
.mini-card:hover .cv-img,
.post-card:hover .cv-img { transform: scale(1.05); }
.has-cv::before { display: none; }

.article-figure {
  margin: 0 0 36px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-3); background: var(--bg-sunken);
}
.article-figure img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.verify-box {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px; padding: 14px 16px;
  background: var(--bg-sunken); border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.verify-box .vb-ico { font-size: 15px; line-height: 1.5; flex: 0 0 auto; }
.verify-box .vb-txt { display: flex; flex-direction: column; gap: 3px; font-size: 13px; }
.verify-box .vb-txt b { color: var(--ink-900); font-weight: 700; }
.verify-box .vb-txt span { color: var(--ink-500); }

@media (max-width: 620px) {
  .article-figure { margin-bottom: 24px; border-radius: var(--r-md); }
}

/* 站内静态文章索引（仅在未启用 JS 时可见，供爬虫发现全部文章） */
.noscript-index h2 { font-size: 24px; margin-bottom: 20px; }
.noscript-index ul { display: grid; gap: 12px; padding-left: 0; list-style: none; }
.noscript-index li { line-height: 1.8; }
.noscript-index a { color: var(--brand); font-weight: 600; }
