/* ==========================================================================
   广往信息咨询（上海）有限公司  ·  GUANGWANG CONSULTING
   企业官网样式表  v1.0
   设计基调：商务 / 资讯 / 沉稳大气（深海军蓝 + 鎏金）
   ========================================================================== */

/* ---------- 1. 设计变量 ---------- */
:root {
  --navy-950: #04101f;
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --navy-700: #123a6b;
  --navy-600: #1b4e8a;
  --navy-500: #2a67ad;
  --gold-600: #a9853f;
  --gold: #c6a15b;
  --gold-300: #ddc38c;
  --gold-100: #f3e8cf;

  --ink: #0e1a2b;
  --body: #46586e;
  --muted: #7b8a9c;
  --line: #e4e9f0;
  --line-strong: #cdd7e3;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-mist: #eef3f9;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .06), 0 4px 12px rgba(11, 37, 69, .05);
  --shadow: 0 10px 30px rgba(11, 37, 69, .09);
  --shadow-lg: 0 24px 60px rgba(7, 26, 51, .16);

  --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Hiragino Sans GB",
          "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --font-num: "DIN Alternate", "Bahnschrift", "Segoe UI", var(--font);

  --nav-h: 76px;
  --container: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }

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

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: .01em;
}
h1 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.22; }
h2 { font-size: clamp(24px, 2.7vw, 36px); }
h3 { font-size: clamp(18px, 1.5vw, 22px); }
h4 { font-size: 17px; }
p { margin: 0 0 1.1em; }
a { color: var(--navy-600); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-600); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

::selection { background: var(--navy-800); color: #fff; }

/* ---------- 3. 版心与栅格 ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }
.container--wide { max-width: 1420px; }

.section { padding: clamp(64px, 7vw, 108px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 76px) 0; }
.section--soft { background: var(--bg-soft); }
.section--mist { background: linear-gradient(180deg, #fff 0%, var(--bg-mist) 100%); }
.section--navy { background: var(--navy-900); color: #b9c8da; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy .section-lead { color: #9fb3c9; }

.grid { display: grid; gap: 26px; }
.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)); }

/* ---------- 4. 标题组 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section--navy .eyebrow { color: var(--gold-300); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-lead { font-size: 17px; color: var(--body); margin-bottom: 0; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: none;
}

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%); color: #fff; box-shadow: 0 8px 22px rgba(169, 133, 63, .28); }
.btn--gold:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(169, 133, 63, .36); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255, 255, 255, .38); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.btn--outline { border-color: var(--line-strong); color: var(--navy-800); background: #fff; }
.btn--outline:hover { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy-700);
}
.link-more::after { content: "→"; transition: transform .3s var(--ease); }
.link-more:hover::after { transform: translateX(5px); }
.section--navy .link-more { color: var(--gold-300); }

/* ---------- 6. 顶部条 ---------- */
.topbar {
  background: var(--navy-950);
  color: #90a5bd;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.topbar__list { display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.topbar a { color: #cfdcea; }
.topbar a:hover { color: var(--gold-300); }

/* ---------- 7. 页头导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 26px rgba(7, 26, 51, .1); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: var(--nav-h); }

.brand { display: inline-flex; align-items: center; gap: 13px; flex: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__cn { font-size: 19px; font-weight: 700; color: var(--navy-900); letter-spacing: .16em; }
.brand__en { font-size: 9.5px; letter-spacing: .17em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__menu > li { position: relative; margin: 0; }
.nav__link {
  display: block;
  padding: 10px 13px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 2px;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-600); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
}
.nav__caret { width: 10px; height: 10px; margin-left: 5px; opacity: .6; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 268px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .26s var(--ease);
}
.nav__menu > li:hover .dropdown,
.nav__menu > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--ink);
}
.dropdown a span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.dropdown a:hover { background: var(--bg-soft); color: var(--navy-800); }

.nav__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.nav__mail { display: flex; flex-direction: column; line-height: 1.25; text-align: right; }
.nav__mail span { font-size: 11.5px; color: var(--muted); letter-spacing: .06em; }
.nav__mail b {
  font-family: var(--font-num); font-size: 14.5px; font-weight: 600;
  color: var(--navy-800); letter-spacing: .01em; word-break: break-all;
}
.nav__mail:hover b { color: var(--gold-600); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--navy-800); display: block; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy-800);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* 移动端抽屉 */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
  padding: 84px 22px 40px;
  box-shadow: -20px 0 60px rgba(7, 26, 51, .18);
}
body.nav-open .drawer { transform: translateX(0); }
.drawer__backdrop {
  position: fixed; inset: 0; background: rgba(7, 26, 51, .5);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 70;
}
body.nav-open .drawer__backdrop { opacity: 1; visibility: visible; }
.drawer__group { border-bottom: 1px solid var(--line); padding: 6px 0; }
.drawer__group > a { display: block; padding: 12px 4px; font-size: 16px; font-weight: 600; color: var(--ink); }
.drawer__sub { list-style: none; margin: 0 0 8px; padding: 0 0 0 12px; }
.drawer__sub a { display: block; padding: 7px 4px; font-size: 14px; color: var(--body); }
.drawer__cta { margin-top: 24px; display: grid; gap: 12px; }
.drawer__contact { margin-top: 26px; font-size: 14px; color: var(--body); }
.drawer__contact b { display: block; font-family: var(--font-num); font-size: 20px; color: var(--navy-800); }
.drawer__contact b.drawer__mail { font-size: 14.5px; word-break: break-all; }
.footer-mail a { color: var(--gold-300); }
.footer-contact p { margin-bottom: 14px; }

/* ---------- 8. 首页主视觉 ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 74vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 16, 31, .95) 0%, rgba(7, 26, 51, .86) 42%, rgba(7, 26, 51, .42) 100%),
    radial-gradient(120% 90% at 88% 12%, rgba(198, 161, 91, .26) 0%, transparent 55%);
}
.hero__grid-lines {
  position: absolute; inset: 0; opacity: .16;
  background-image: linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(120deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 62%);
}
.hero__inner { position: relative; z-index: 2; padding: 92px 0 96px; width: 100%; }
.hero__content { max-width: 720px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; margin-bottom: 26px;
  border: 1px solid rgba(198, 161, 91, .5);
  border-radius: 100px;
  background: rgba(198, 161, 91, .12);
  font-size: 13px; letter-spacing: .1em; color: var(--gold-300);
}
.hero__badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198, 161, 91, .22); }
.hero h1 { color: #fff; letter-spacing: .02em; }
.hero h1 em { font-style: normal; color: var(--gold-300); }
.hero__lead { font-size: clamp(16px, 1.35vw, 19px); color: #b7c8dc; max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  max-width: 860px;
}
.hero__stat { padding: 22px 20px 20px; background: rgba(7, 26, 51, .28); }
.hero__stat b {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.hero__stat b small { font-size: .5em; margin-left: 2px; color: var(--gold-300); }
.hero__stat > span { display: block; margin-top: 6px; font-size: 13px; color: #93a9c0; letter-spacing: .04em; }

.hero__caps {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  font-size: 14px; color: #a9bcd0;
}
.hero__caps div { display: flex; align-items: center; gap: 9px; }
.hero__caps svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ---------- 9. 通用卡片 ---------- */
.card {
  position: relative;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--bg-mist), #fff);
  border: 1px solid var(--line);
  color: var(--navy-700);
}
.card__icon svg { width: 28px; height: 28px; }
.card__index {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--font-num); font-size: 34px; font-weight: 700;
  color: var(--bg-mist); line-height: 1;
}

.card--service { display: flex; flex-direction: column; padding-top: 30px; }
.card--service .card__tag {
  display: inline-block; margin-bottom: 14px; padding: 3px 10px;
  font-size: 12px; letter-spacing: .1em; color: var(--gold-600);
  background: var(--gold-100); border-radius: 2px;
}
.card--service ul { list-style: none; padding: 0; margin: 16px 0 24px; }
.card--service ul li {
  position: relative; padding-left: 22px; font-size: 14.5px; color: var(--body); margin-bottom: 8px;
}
.card--service ul li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border: 1.5px solid var(--gold); transform: rotate(45deg);
}
.card--service .card__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }

.card--dark { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .12); color: #b9c8da; }
.card--dark:hover { background: rgba(255, 255, 255, .07); border-color: rgba(198, 161, 91, .4); }
.card--dark .card__icon { background: rgba(198, 161, 91, .12); border-color: rgba(198, 161, 91, .28); color: var(--gold-300); }

.card--link:hover h3 { color: var(--navy-700); }

/* ---------- 10. 特色亮点（左图右文） ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split__media--frame::before {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 45%; height: 55%; border: 1px solid var(--gold); opacity: .5;
  border-radius: var(--radius); z-index: -1;
}
.split__badge {
  position: absolute; left: -20px; bottom: 28px;
  padding: 20px 24px;
  background: var(--navy-900); color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.split__badge b { display: block; font-family: var(--font-num); font-size: 30px; line-height: 1; color: var(--gold-300); }
.split__badge span { font-size: 13px; color: #a9bcd0; }

.feature-list { list-style: none; padding: 0; margin: 26px 0 0; }
.feature-list li { position: relative; padding-left: 34px; margin-bottom: 18px; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-100);
}
.feature-list li::after {
  content: ""; position: absolute; left: 5px; top: 12px;
  width: 8px; height: 4px; border-left: 2px solid var(--gold-600); border-bottom: 2px solid var(--gold-600);
  transform: rotate(-45deg);
}
.feature-list b { display: block; color: var(--ink); font-weight: 600; font-size: 15.5px; }
.feature-list span { font-size: 14.5px; color: var(--body); }

/* ---------- 11. 数据条 ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.stat { padding: 30px 26px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-num); font-size: clamp(30px, 3vw, 44px); color: var(--navy-800); line-height: 1; }
.stat b small { font-size: .45em; color: var(--gold-600); margin-left: 3px; }
.stat > span { display: block; margin-top: 10px; font-size: 14px; color: var(--muted); }
.section--navy .stat { border-color: rgba(255, 255, 255, .12); }
.section--navy .stat b { color: #fff; }
.section--navy .stat b small { color: var(--gold-300); }

/* ---------- 12. 流程时间线 ---------- */
.flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; counter-reset: flow; }
.flow__item { position: relative; padding-top: 34px; }
.flow__item::before {
  content: ""; position: absolute; top: 9px; left: 0; right: 0; height: 1px; background: var(--line);
}
.flow__item:last-child::before { background: linear-gradient(90deg, var(--line), transparent); }
.flow__dot {
  position: absolute; top: 0; left: 0;
  width: 19px; height: 19px; border-radius: 50%;
  background: #fff; border: 2px solid var(--gold);
  display: grid; place-items: center;
}
.flow__dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.flow__no { font-family: var(--font-num); font-size: 13px; letter-spacing: .16em; color: var(--gold-600); }
.flow__item h4 { margin: 6px 0 8px; }
.flow__item p { font-size: 14.5px; margin-bottom: 0; }
.section--navy .flow__item::before { background: rgba(255, 255, 255, .14); }
.section--navy .flow__dot { background: var(--navy-900); }

/* ---------- 13. 行业覆盖 ---------- */
.industry {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.industry:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.industry svg { width: 26px; height: 26px; color: var(--navy-600); flex: none; }
.industry b { display: block; font-size: 15.5px; color: var(--ink); font-weight: 600; }
.industry span { font-size: 13px; color: var(--muted); }

/* ---------- 12.1 资讯分组 ---------- */
.news-group + .news-group { margin-top: clamp(40px, 5vw, 64px); }
.news-group__head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px; padding-left: 16px; border-left: 3px solid var(--gold);
}
.news-group__head h3 { margin: 0; font-size: clamp(19px, 1.8vw, 23px); color: var(--navy-800); }
.news-group__head span { font-size: 13.5px; color: var(--muted); }

/* ---------- 13.1 服务客户 ---------- */
.client-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.client {
  position: relative; padding: 26px 22px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.client::before {
  content: ""; position: absolute; left: 22px; top: -1px; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(198, 161, 91, 0));
}
.client:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.client b { display: block; font-size: 16.5px; color: var(--navy-800); font-weight: 600; line-height: 1.4; }
.client span { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }
.client--more { background: var(--navy-800); border-color: var(--navy-800); }
.client--more b { color: var(--gold-300); }
.client--more span { color: #93a9c0; }
.client-note { margin: 22px 0 0; text-align: center; font-size: 13.5px; color: var(--muted); }

/* ---------- 14. 资讯卡片 ---------- */
.news-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%;
  transition: all .35s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.news-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-mist); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__cat {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; font-size: 12px; letter-spacing: .08em;
  background: rgba(7, 26, 51, .82); color: var(--gold-300); border-radius: 2px;
  backdrop-filter: blur(4px);
}
.news-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-family: var(--font-num); font-size: 13px; color: var(--muted); letter-spacing: .06em; margin-bottom: 10px; }
.news-card h3 { font-size: 18px; line-height: 1.5; margin-bottom: 10px; }
.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--gold-600); }
.news-card p { font-size: 14.5px; color: var(--body); margin-bottom: 18px; }
.news-card .link-more { margin-top: auto; }

/* ---------- 15. CTA 区块 ---------- */
.cta {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 130% at 88% 20%, rgba(198, 161, 91, .22) 0%, transparent 60%),
    linear-gradient(120deg, rgba(7, 26, 51, 1) 30%, rgba(18, 58, 107, .9) 100%);
}
.cta__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: clamp(48px, 5vw, 72px) 0;
  flex-wrap: wrap;
}
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: #a9bcd0; margin-bottom: 0; max-width: 620px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 16. 内页页头 ---------- */
.page-hero {
  position: relative;
  padding: clamp(70px, 8vw, 118px) 0 clamp(58px, 6vw, 88px);
  background: var(--navy-900);
  color: #b9c8da;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 16, 31, .96) 0%, rgba(7, 26, 51, .82) 55%, rgba(18, 58, 107, .62) 100%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { font-size: 17px; color: #a9bcd0; margin-bottom: 0; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: #8098b1; margin-bottom: 20px; }
.breadcrumb a { color: #a9bcd0; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span.sep { opacity: .5; }

/* ---------- 17. 内容排版 ---------- */
.prose h2 { margin-top: 1.6em; padding-bottom: .4em; border-bottom: 1px solid var(--line); }
.prose h3 { margin-top: 1.5em; }
.prose ul { padding-left: 1.1em; }
.prose ul li::marker { color: var(--gold); }
.prose blockquote {
  margin: 26px 0; padding: 22px 26px;
  background: var(--bg-soft); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px;
}

.table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
thead th {
  background: var(--navy-800); color: #fff; font-weight: 600; text-align: left;
  padding: 14px 18px; font-size: 14px; letter-spacing: .04em; white-space: nowrap;
}
tbody td { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: top; }
tbody tr:nth-child(even) { background: var(--bg-soft); }
tbody td strong { color: var(--navy-700); }

/* ---------- 18. 手风琴 FAQ ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 22px 4px; background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 17px; font-weight: 600; color: var(--ink); text-align: left;
}
.acc-head:hover { color: var(--navy-700); }
.acc-icon { position: relative; width: 18px; height: 18px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: var(--gold); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.acc-icon::before { top: 8px; left: 0; width: 18px; height: 1.6px; }
.acc-icon::after { left: 8px; top: 0; width: 1.6px; height: 18px; }
.acc-item.is-open .acc-icon::after { transform: rotate(90deg); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.acc-body__inner { padding: 0 4px 24px; font-size: 15px; color: var(--body); }
.acc-body__inner p:last-child { margin-bottom: 0; }
.acc-item.is-open .acc-body { max-height: 640px; }

/* ---------- 19. 侧栏 ---------- */
.layout-with-aside { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: clamp(30px, 4vw, 60px); align-items: start; }
.aside-nav { position: sticky; top: calc(var(--nav-h) + 24px); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.aside-nav__title { padding: 18px 22px; background: var(--navy-800); color: #fff; font-size: 15px; font-weight: 600; letter-spacing: .06em; }
.aside-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.aside-nav li { margin: 0; }
.aside-nav a {
  display: block; padding: 12px 22px; font-size: 14.5px; color: var(--ink);
  border-left: 3px solid transparent;
}
.aside-nav a:hover { background: var(--bg-soft); color: var(--navy-700); }
.aside-nav a.is-active { border-left-color: var(--gold); background: var(--bg-soft); color: var(--navy-800); font-weight: 600; }
.aside-cta { margin-top: 22px; padding: 26px 22px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.aside-cta h4 { margin-bottom: 8px; }
.aside-cta p { font-size: 14px; margin-bottom: 16px; }
.aside-cta .btn { width: 100%; }
.aside-cta__phone { display: block; margin-top: 14px; font-family: var(--font-num); font-size: 20px; color: var(--navy-800); text-align: center; }

/* ---------- 20. 表单 ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field label i { color: #d05a5a; font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font-family: var(--font); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(27, 78, 138, .1);
}
.field .err { font-size: 12.5px; color: #d05a5a; display: none; }
.field.has-error input, .field.has-error textarea { border-color: #d05a5a; }
.field.has-error .err { display: block; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success {
  display: none; padding: 16px 20px; border-radius: var(--radius-sm);
  background: #eef7f0; border: 1px solid #cbe6d3; color: #2c6b45; font-size: 14.5px;
}
.form-success.is-visible { display: block; }

/* 联系信息块 */
.contact-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: var(--bg-mist); color: var(--navy-700);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item b { display: block; font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: .06em; }
.contact-item p { margin: 2px 0 0; font-size: 16px; color: var(--ink); }
.contact-item p small { color: var(--muted); font-size: 13.5px; }

.map-frame { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-mist); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 21. 页脚 ---------- */
.site-footer { background: var(--navy-950); color: #8b9fb6; font-size: 14px; padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.footer-brand .brand__cn { color: #fff; }
.footer-brand .brand__en { color: #6d8199; }
.footer-brand p { margin: 22px 0 0; font-size: 13.5px; line-height: 1.85; color: #7f93aa; }
.footer-col h4 { color: #fff; font-size: 14.5px; letter-spacing: .08em; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #8b9fb6; font-size: 13.5px; }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact p { margin: 0 0 12px; font-size: 13.5px; color: #8b9fb6; }
.footer-contact b { color: #fff; font-family: var(--font-num); font-size: 20px; letter-spacing: .02em; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: #6d8199;
}
.footer-bottom a { color: #8b9fb6; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- 22. 返回顶部 ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 28px; z-index: 50;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--navy-800); color: #fff; border: 0; border-radius: 50%;
  cursor: pointer; opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all .3s var(--ease);
  box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }

/* ---------- 23. 动效 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 24. 杂项 ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 7px 16px; font-size: 13.5px; color: var(--navy-700);
  background: var(--bg-mist); border-radius: 100px;
}
.section--navy .pill { background: rgba(255, 255, 255, .08); color: #cfdcea; }

.divider-gold { width: 56px; height: 3px; background: var(--gold); margin: 22px 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.tag-list { display: grid; gap: 14px; }
.tag-line { display: flex; gap: 16px; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.tag-line b { flex: none; width: 78px; color: var(--navy-700); font-size: 14.5px; }
.tag-line span { font-size: 14.5px; }

/* ---------- 25. 响应式 ---------- */
@media (max-width: 1440px) {
  .nav { gap: 18px; }
  .nav__mail { display: none; }
  .nav__link { padding: 10px 11px; font-size: 14.5px; }
}

@media (max-width: 1180px) {
  .nav__menu { gap: 0; }
  .nav__link { padding: 10px 11px; font-size: 14.5px; }
  .nav__mail { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 30px; }
  .flow__item::before { display: none; }
  .flow__item { padding-top: 30px; }
  .flow__dot { top: 4px; }
  .layout-with-aside { grid-template-columns: 1fr; }
  .aside-nav { position: static; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sub-grid { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr; }
  .pol-strip__item { grid-template-columns: 96px 1fr; }
  .pol-strip__item i { display: none; }
}

@media (max-width: 860px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__badge { left: 12px; bottom: 12px; padding: 16px 20px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .topbar__list .topbar__item:nth-child(n+2) { display: none; }
  .topbar__list:last-child { display: none; }
  .hero__inner { padding: 68px 0 74px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .container { padding: 0 18px; }
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); padding: 22px 0; }
  .stat:first-child { border-top: 0; }
  .flow, .flow--4 { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .pol-item { padding: 22px 18px 16px; }
  .pol-item__head { gap: 8px; }
  .pol-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .metric { padding: 22px 18px; }
  .agent { padding: 26px 20px 20px; }
  .pol-strip__item { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
  .pol-strip__item .pol-date, .pol-strip__item .pol-org { justify-self: start; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat { padding: 18px 14px; }
  .client { padding: 20px 18px 18px; }
  .client::before { left: 18px; }
  .client b { font-size: 15.5px; }
  .client span { font-size: 12.5px; }
  .card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .split__badge { position: static; margin-top: 16px; display: inline-block; }
  .tag-line { flex-direction: column; gap: 6px; }
  .tag-line b { width: auto; }
}

/* ---------- 26. 打印 ---------- */
@media print {
  .site-header, .topbar, .to-top, .drawer, .cta, .site-footer { display: none !important; }
  body { color: #000; }
}

/* ---------- 14.1 政策中心 ---------- */
.pol-year + .pol-year { margin-top: clamp(36px, 4.4vw, 60px); }
.pol-year__head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px; padding-left: 16px; border-left: 3px solid var(--gold);
}
.pol-year__head h3 { margin: 0; font-size: clamp(20px, 2vw, 26px); color: var(--navy-800); }
.pol-year__head span { font-size: 13.5px; color: var(--muted); }
.pol-list { display: grid; gap: 18px; }
.pol-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px 20px; transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.pol-item:hover { border-color: rgba(198, 161, 91, .5); box-shadow: 0 18px 40px -26px rgba(7, 26, 51, .35); }
.pol-item__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.pol-date { font-family: var(--font-num); font-size: 13.5px; color: var(--muted); letter-spacing: .06em; }
.pol-org, .pol-tag {
  font-size: 12.5px; padding: 3px 10px; border-radius: 999px; letter-spacing: .02em;
}
.pol-org { background: var(--navy-050, #eef3f9); color: var(--navy-700); }
.pol-tag { background: var(--gold-100); color: var(--gold-700, #8a6a24); }
.pol-item h3 { font-size: clamp(17px, 1.6vw, 20px); margin: 0 0 10px; color: var(--navy-800); line-height: 1.45; }
.pol-doc { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; line-height: 1.7; }
.pol-doc b { color: var(--navy-700); font-weight: 600; }
.pol-points { list-style: none; padding: 0; margin: 0 0 16px; }
.pol-points li {
  position: relative; padding-left: 20px; margin-bottom: 9px;
  font-size: 14.5px; color: var(--body); line-height: 1.75;
}
.pol-points li::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.pol-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px dashed var(--line);
}
.pol-impact { font-size: 13px; color: var(--muted); }
.pol-src { font-size: 13px; color: var(--navy-600, #2c4a72); border-bottom: 1px solid rgba(198,161,91,.5); }
.pol-src:hover { color: var(--gold-600); }

.metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.metric {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 28px 26px; color: #b9c8da;
}
.metric__num { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.metric__num b {
  font-family: var(--font-num); font-size: clamp(30px, 3.2vw, 44px);
  color: #fff; line-height: 1; letter-spacing: .01em;
}
.metric__num span { font-size: 14px; color: var(--gold-300); }
.metric h4 { color: #fff; font-size: 16px; margin: 0 0 10px; }
.metric p { font-size: 14px; line-height: 1.75; margin: 0 0 14px; color: #a9bacd; }
.metric__src { font-size: 12.5px; color: rgba(198, 161, 91, .85); }
.metric-note { margin-top: 22px; font-size: 13px; color: #8fa3b8; line-height: 1.8; }

.flow--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }

/* ---------- 14.2 智能体产品 ---------- */
.agent-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.agent {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px 24px; display: flex; flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.agent:hover { border-color: rgba(198, 161, 91, .55); box-shadow: 0 22px 48px -30px rgba(7, 26, 51, .38); }
.agent__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.agent__icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--gold-600);
  background: var(--gold-100); border: 1px solid rgba(198, 161, 91, .3);
}
.agent__icon svg { width: 26px; height: 26px; }
.agent__tag { display: inline-block; font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.agent h3 { margin: 6px 0 0; font-size: clamp(18px, 1.7vw, 21px); color: var(--navy-800); line-height: 1.4; }
.agent__lead { font-size: 14.5px; color: var(--body); line-height: 1.8; margin: 0 0 20px; }
.agent__caps { list-style: none; padding: 0; margin: 0 0 20px; }
.agent__caps li { position: relative; padding-left: 20px; margin-bottom: 12px; }
.agent__caps li::before {
  content: ""; position: absolute; left: 1px; top: 7px;
  width: 8px; height: 4px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.agent__caps b { display: block; font-size: 14.5px; font-weight: 600; color: var(--navy-800); }
.agent__caps span { display: block; font-size: 13.5px; color: var(--body); line-height: 1.7; margin-top: 2px; }
.agent__scene {
  background: var(--mist, #f7f9fc); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; margin-bottom: 18px;
}
.agent__scene b { display: block; font-size: 13px; color: var(--gold-700, #8a6a24); letter-spacing: .04em; margin-bottom: 8px; }
.agent__scene ul { list-style: none; padding: 0; margin: 0; }
.agent__scene li { font-size: 13.5px; color: var(--body); padding-left: 14px; position: relative; margin-bottom: 6px; line-height: 1.7; }
.agent__scene li::before { content: "·"; position: absolute; left: 2px; color: var(--gold); font-weight: 700; }
.agent__fit {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--muted);
}

/* ---------- 14.3 首页：智能体 mini 卡片与政策雷达条 ---------- */
.agent--mini { text-decoration: none; color: inherit; padding: 28px 26px 22px; }
.agent--mini h3 { margin: 16px 0 10px; font-size: 18px; }
.agent--mini p { font-size: 14px; color: var(--body); line-height: 1.8; margin: 0 0 16px; }
.agent--mini .link-more { margin-top: auto; }

.pol-strip { display: grid; gap: 10px; }
.pol-strip__item {
  display: grid; grid-template-columns: 104px 118px 1fr auto; align-items: center;
  gap: 16px; padding: 16px 22px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; color: inherit; text-decoration: none;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pol-strip__item:hover {
  border-color: rgba(198, 161, 91, .55); transform: translateX(3px);
  box-shadow: 0 16px 34px -26px rgba(7, 26, 51, .4);
}
.pol-strip__item b { font-size: 15px; font-weight: 600; color: var(--navy-800); line-height: 1.5; }
.pol-strip__item i { font-style: normal; font-size: 12.5px; color: var(--muted); white-space: nowrap; }
