/* ==========================================================================
   main.css —— 全站样式（墨黑 + 琥珀金）
   --------------------------------------------------------------------------
   目录：
   00 设计变量 / 重置
   01 通用布局与排版组件
   02 按钮
   03 页头 / 导航 / 移动抽屉
   04 首屏
   05 内容区块通用（区块头、数据条、服务卡、优势、流程、行业）
   06 媒体占位与卡片
   07 新闻列表
   08 分公司（网络图 / 地图 / 卡片 / 区域分组）
   09 表格与时间轴
   10 表单
   11 CTA 条与页脚
   12 内页通用（面包屑、页面首屏）
   13 响应式
   ========================================================================== */

/* ============================== 00 设计变量 ============================== */
:root {
  --ink-900: #06070a;
  --ink-800: #0b0e13;
  --ink-750: #0f1319;
  --ink-700: #141922;
  --ink-600: #1c222c;
  --ink-500: #262e3a;

  --gold:      #d2a24c;
  --gold-2:    #e8c882;
  --gold-3:    #a97f2e;
  --gold-soft: rgba(210, 162, 76, .14);

  --paper:   #f7f6f3;
  --paper-2: #efece5;
  --paper-3: #e5e1d7;

  --text:    #14171c;
  --text-2:  #454b55;
  --muted:   #6d7480;
  --muted-d: #9aa3b0;

  --line:     rgba(20, 23, 28, .12);
  --line-d:   rgba(255, 255, 255, .10);
  --line-d-2: rgba(255, 255, 255, .18);

  --sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans SC",
          system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;

  --wrap: 1280px;
  --pad: 32px;
  --r: 4px;
  --r-lg: 8px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; line-height: 1.24; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
em, i { font-style: normal; }
::selection { background: var(--gold); color: #101214; }
body.no-scroll { overflow: hidden; }

/* 细化滚动条 */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-800); }
::-webkit-scrollbar-thumb { background: #333c49; border-radius: 6px; border: 2px solid var(--ink-800); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-3); }

/* ========================= 01 通用布局与排版组件 ========================= */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.eyebrow--dark { color: var(--gold-3); }

.sec { padding: 104px 0; position: relative; }
.sec--dark { background: var(--ink-800); color: #fff; }
.sec--dark-2 { background: var(--ink-750); color: #fff; }
.sec--paper { background: var(--paper); }
.sec--paper-2 { background: var(--paper-2); }
.sec--tight { padding: 72px 0; }
.sec--flush { padding: 0; }

.sec__hd { max-width: 860px; margin-bottom: 56px; }
.sec__hd--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec__hd h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -.02em;
}
.sec__hd .lead {
  margin-top: 18px; font-size: 16.5px; line-height: 1.9; color: var(--text-2); max-width: 720px;
}
.sec__hd--center .lead { margin-left: auto; margin-right: auto; }
.sec--dark .lead, .sec--dark-2 .lead { color: var(--muted-d); }
.sec__hd--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; max-width: none; }
.sec__hd--split .sec__hd-txt { max-width: 720px; }
.sec__hd--split .sec__hd-act { flex: none; padding-bottom: 6px; }

.hair { height: 1px; background: var(--line); border: 0; margin: 0; }
.sec--dark .hair, .sec--dark-2 .hair { background: var(--line-d); }

.rule { width: 56px; height: 3px; background: var(--gold); margin: 0 0 22px; }
.sec__hd--center .rule { margin-left: auto; margin-right: auto; }

.chip {
  display: inline-flex; align-items: center; height: 26px; padding: 0 11px;
  font-size: 12px; letter-spacing: .04em; color: var(--text-2);
  background: rgba(20, 23, 28, .05); border: 1px solid var(--line); border-radius: 999px;
}
.sec--dark .chip, .sec--dark-2 .chip { color: var(--muted-d); background: rgba(255, 255, 255, .05); border-color: var(--line-d); }

.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--2-1 { grid-template-columns: 1.35fr .95fr; gap: 56px; align-items: center; }
.grid--1-2 { grid-template-columns: .85fr 1.35fr; gap: 56px; }

/* 滚动动效 */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =============================== 02 按钮 =============================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 46px; padding: 0 24px; border: 1px solid transparent; border-radius: var(--r);
  font-size: 14.5px; font-weight: 600; letter-spacing: .02em; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #16130b; }
.btn--gold:hover { background: var(--gold-2); }
.btn--ink { background: var(--ink-800); color: #fff; }
.btn--ink:hover { background: var(--ink-600); }
.btn--line { border-color: var(--line-d-2); color: #fff; }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--ink-800); }
.btn--lg { height: 54px; padding: 0 32px; font-size: 15.5px; }
.btn--sm { height: 38px; padding: 0 18px; font-size: 13.5px; }
.btn--block { width: 100%; }
.btn--text { height: auto; padding: 0; color: var(--gold-3); }
.btn--text:hover { color: var(--gold); }
.btn svg { width: 15px; height: 15px; flex: none; }

.linkmore { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold-3); }
.linkmore svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.linkmore:hover svg { transform: translateX(4px); }
.sec--dark .linkmore, .sec--dark-2 .linkmore { color: var(--gold-2); }

/* ========================= 03 页头 / 导航 / 抽屉 ========================= */
.site-header { position: sticky; top: 0; z-index: 900; }

.topbar { background: var(--ink-900); color: #aab2be; font-size: 12.5px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.topbar__in { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 12px; min-width: 0; }
.topbar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(210, 162, 76, .18); flex: none; }
.topbar__tel { color: var(--gold-2); font-weight: 700; letter-spacing: .04em; }
.topbar__sep { width: 1px; height: 12px; background: rgba(255, 255, 255, .16); }
.topbar a:hover { color: #fff; }
.topbar__member { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-2); }
.topbar__member svg { width: 14px; height: 14px; flex: none; }
.topbar__member:hover { color: #fff; }

.bar { background: rgba(11, 14, 19, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-d); transition: background .3s var(--ease); }
.site-header.is-scrolled .bar { background: rgba(6, 7, 10, .96); }
.bar__in { display: flex; align-items: center; gap: 26px; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold) 0%, var(--gold-3) 100%);
  color: #12100a; font-size: 21px; font-weight: 800; border-radius: var(--r);
  letter-spacing: -.02em;
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__txt b { font-size: 18.5px; font-weight: 700; color: #fff; letter-spacing: .04em; }
.brand__txt i { font-size: 9.5px; letter-spacing: .18em; color: var(--muted-d); text-transform: uppercase; margin-top: 3px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 5px; height: 78px; padding: 0 15px;
  font-size: 15px; font-weight: 500; color: #d7dce3; transition: color .22s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__item.is-active > .nav__link { color: var(--gold); }
.nav__item.is-active > .nav__link::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 20px; height: 2px; background: var(--gold);
}
.nav__caret { width: 9px; height: 6px; opacity: .6; transition: transform .25s var(--ease); }
.nav__item.has-sub:hover .nav__caret { transform: rotate(180deg); }

.nav__sub {
  position: absolute; left: 0; top: 100%; min-width: 208px; padding: 10px;
  background: var(--ink-700); border: 1px solid var(--line-d); border-radius: var(--r-lg);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .5);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.nav__item.has-sub:hover .nav__sub,
.nav__item.has-sub.is-open .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a { display: block; padding: 10px 14px; font-size: 14px; color: #c3cad4; border-radius: var(--r); }
.nav__sub a:hover { background: rgba(210, 162, 76, .12); color: var(--gold-2); }

.bar__act { display: flex; align-items: center; gap: 14px; flex: none; }
.burger { display: none; width: 42px; height: 42px; padding: 0; background: none; border: 1px solid var(--line-d-2); border-radius: var(--r); cursor: pointer; position: relative; }
.burger i { position: absolute; left: 11px; width: 18px; height: 1.6px; background: #e6e9ee; transition: all .28s var(--ease); }
.burger i:nth-child(1) { top: 14px; }
.burger i:nth-child(2) { top: 20px; }
.burger i:nth-child(3) { top: 26px; }
.burger.is-open i:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; }
.burger.is-open i:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 78px 0 0; background: var(--ink-800); overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  border-top: 1px solid var(--line-d);
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__in { padding: 18px var(--pad) 60px; }
.drawer__grp { border-bottom: 1px solid var(--line-d); }
.drawer__link { display: block; padding: 16px 2px; font-size: 16.5px; font-weight: 600; color: #eaeef3; }
.drawer__grp > .drawer__link { border-bottom: 0; }
.drawer__subs { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 16px; }
.drawer__subs a { font-size: 13.5px; color: var(--muted-d); padding: 6px 12px; border: 1px solid var(--line-d); border-radius: 999px; }
.drawer > .drawer__in > .drawer__link { display: block; padding: 16px 2px; font-size: 16.5px; font-weight: 600; color: #eaeef3; border-bottom: 1px solid var(--line-d); }
.drawer__cta { display: grid; gap: 12px; margin-top: 30px; }
.drawer__member {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px; padding-top: 16px; height: 46px; font-size: 14px; color: #c3cad4;
  border-top: 1px solid var(--line-d);
}
.drawer__member svg { width: 15px; height: 15px; flex: none; }
.drawer__member:hover { color: var(--gold); }

/* ================================ 04 首屏 ================================ */
.hero { position: relative; background: #0b0e13 url('assets/img/banner-hero.jpg') center 38%/cover no-repeat; color: #fff; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, .92) 0%, rgba(8, 11, 16, .76) 46%, rgba(8, 11, 16, .36) 78%, rgba(8, 11, 16, .52) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, .34) 0%, rgba(8, 11, 16, 0) 36%, rgba(8, 11, 16, .68) 100%);
}
.hero::after {
  content: ''; position: absolute; left: -8%; right: -8%; bottom: -1px; height: 44%;
  background: linear-gradient(180deg, rgba(210, 162, 76, .12), rgba(210, 162, 76, 0));
  clip-path: polygon(0 100%, 16% 0, 84% 0, 100% 100%);
}
.hero__in { position: relative; z-index: 2; padding: 108px var(--pad) 0; min-height: 84vh; display: flex; flex-direction: column; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  padding: 7px 16px 7px 12px; border: 1px solid var(--line-d-2); border-radius: 999px;
  font-size: 12.5px; color: #cfd6de; letter-spacing: .06em; background: rgba(255, 255, 255, .03);
}
.hero__badge b { color: var(--gold); font-weight: 700; }
.hero h1 {
  margin: 30px 0 0; font-size: clamp(38px, 6.4vw, 84px); line-height: 1.06; letter-spacing: -.03em;
  font-weight: 800; max-width: 15em;
}
.hero h1 em { color: var(--gold); font-family: var(--serif); font-weight: 400; font-style: italic; }
.hero__sub {
  margin-top: 26px; font-size: 17px; line-height: 1.95; color: #b9c2ce; max-width: 640px;
}
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero__tags span {
  padding: 8px 15px; font-size: 13px; color: #cdd4dd;
  border: 1px solid var(--line-d); border-radius: var(--r); background: rgba(255, 255, 255, .03);
}
.hero__act { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__stats {
  position: relative; z-index: 2; margin-top: auto; padding: 34px 0 44px;
  border-top: 1px solid var(--line-d);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.hero__stat b { display: block; font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--gold); letter-spacing: -.02em; line-height: 1; }
.hero__stat b i { font-size: .5em; font-weight: 700; margin-left: 3px; font-style: normal; }
.hero__stat span { display: block; margin-top: 10px; font-size: 13px; color: #98a2af; letter-spacing: .04em; }

/* 内页首屏 */
.phero { position: relative; background: var(--ink-800); color: #fff; overflow: hidden; }
.phero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 76px),
    radial-gradient(80% 90% at 88% 10%, rgba(210, 162, 76, .22), transparent 60%),
    linear-gradient(160deg, #161c25 0%, #0b0e13 70%);
}
.phero__in { position: relative; z-index: 2; padding: 78px var(--pad) 66px; }
.phero h1 { font-size: clamp(30px, 4.4vw, 54px); letter-spacing: -.025em; margin-top: 14px; }
.phero__lead { margin-top: 20px; font-size: 16.5px; line-height: 1.9; color: #b7c0cc; max-width: 760px; }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted-d); }
.crumb a:hover { color: var(--gold); }
.crumb i { opacity: .45; }

/* ==================== 05 区块头 / 数据条 / 服务 / 优势 / 流程 ==================== */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.statband__i { background: var(--ink-800); padding: 34px 28px; }
.statband__i b { display: block; font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.statband__i b i { font-size: .5em; margin-left: 3px; }
.statband__i span { display: block; margin-top: 12px; font-size: 13.5px; color: var(--muted-d); }

.svc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc__i { background: var(--paper); padding: 38px 30px 34px; position: relative; transition: background .3s var(--ease); }
.svc__i:hover { background: #fff; }
.svc__no { font-family: var(--serif); font-size: 34px; color: var(--paper-3); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.svc__i h3 { margin-top: 20px; font-size: 20px; }
.svc__i h3 em { display: block; font-family: var(--serif); font-size: 11.5px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }
.svc__i p { margin-top: 15px; font-size: 14.5px; line-height: 1.85; color: var(--text-2); }
.svc__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }

.adv { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.adv__i { padding: 30px 24px; border: 1px solid var(--line-d); border-radius: var(--r-lg); background: rgba(255, 255, 255, .02); transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease); }
.adv__i:hover { border-color: rgba(210, 162, 76, .5); background: rgba(210, 162, 76, .06); transform: translateY(-4px); }
.adv__no { font-family: var(--serif); font-size: 13px; letter-spacing: .2em; color: var(--gold); }
.adv__i h3 { margin-top: 14px; font-size: 18.5px; }
.adv__i h3 em { display: block; font-family: var(--serif); font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); margin-top: 6px; }
.adv__i p { margin-top: 14px; font-size: 13.8px; line-height: 1.8; color: var(--muted-d); }

.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--line); }
.flow__i { padding: 30px 22px 28px 0; position: relative; border-right: 1px solid var(--line); padding-left: 22px; }
.flow__i:first-child { padding-left: 0; }
.flow__i:last-child { border-right: 0; }
.flow__no { font-family: var(--serif); font-size: 12px; letter-spacing: .2em; color: var(--gold-3); }
.flow__i h4 { margin-top: 12px; font-size: 16.5px; }
.flow__i p { margin-top: 10px; font-size: 13.5px; line-height: 1.78; color: var(--text-2); }

.ind { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.ind__i { background: var(--ink-800); padding: 26px 18px; text-align: center; transition: background .3s var(--ease); }
.ind__i:hover { background: var(--ink-700); }
.ind__i b { display: block; font-size: 15.5px; color: #e7ebf0; }
.ind__i span { display: block; margin-top: 6px; font-family: var(--serif); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); }

/* 资质 */
.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.creds li { padding: 22px 26px; background: var(--paper); font-size: 14.5px; color: var(--text-2); display: flex; gap: 13px; align-items: flex-start; }
.creds li::before { content: ''; flex: none; width: 7px; height: 7px; margin-top: 9px; background: var(--gold); transform: rotate(45deg); }

/* ======================= 06 媒体占位与卡片 ======================= */
.media {
  position: relative; display: block; overflow: hidden; border-radius: var(--r);
  background-color: var(--ink-700);
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 58px),
    radial-gradient(120% 96% at 78% 6%, rgba(210, 162, 76, .24), transparent 62%),
    linear-gradient(160deg, #1c222c 0%, #0b0e13 72%);
}
.media::after {
  content: ''; position: absolute; left: -6%; right: -6%; bottom: 0; height: 46%; pointer-events: none;
  background: linear-gradient(180deg, rgba(210, 162, 76, .13), rgba(210, 162, 76, 0));
  clip-path: polygon(0 100%, 17% 0, 83% 0, 100% 100%);
  border-top: 1px solid rgba(210, 162, 76, .3);
}
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--3x4  { aspect-ratio: 3 / 4; }
.media--21x9 { aspect-ratio: 21 / 9; }
.media__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.media__img.is-missing { display: none; }
.media__tag {
  position: absolute; z-index: 4; left: 14px; top: 14px; padding: 5px 12px;
  font-size: 11.5px; letter-spacing: .08em; color: #16130b; background: var(--gold); border-radius: 999px;
}
.media__ph {
  position: absolute; z-index: 2; left: 14px; bottom: 14px; max-width: calc(100% - 28px);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px; font-size: 11.5px; color: #cfd6de;
  border: 1px dashed rgba(255, 255, 255, .3); border-radius: 999px; background: rgba(6, 7, 10, .55);
}
.media__ph i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.media__ph em { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { border-color: rgba(210, 162, 76, .55); transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20, 23, 28, .1); }
.card .media { border-radius: 0; }
.card__body { padding: 24px 24px 26px; }
.card__meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.card__meta i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.card__title { margin-top: 12px; font-size: 18.5px; line-height: 1.44; }
.card__desc {
  margin-top: 12px; font-size: 14px; line-height: 1.82; color: var(--text-2);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card__foot { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter button {
  height: 38px; padding: 0 18px; font-size: 13.5px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r); color: var(--text-2);
  transition: all .25s var(--ease);
}
.filter button:hover { border-color: var(--gold); color: var(--gold-3); }
.filter button.is-on { background: var(--ink-800); border-color: var(--ink-800); color: #fff; }

/* 图集（关于我们 / 展厅） */
.collage { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; gap: 16px; }
.collage > :first-child { grid-row: span 2; }

/* =============================== 07 新闻列表 =============================== */
.newslist { border-top: 1px solid var(--line); }
.newsrow { display: grid; grid-template-columns: 108px 1fr auto; gap: 30px; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); transition: background .25s var(--ease), padding .25s var(--ease); }
.newsrow:hover { background: rgba(210, 162, 76, .06); padding-left: 14px; padding-right: 14px; }
.newsrow__date { display: flex; flex-direction: column; line-height: 1; }
.newsrow__date b { font-family: var(--serif); font-size: 34px; color: var(--ink-800); font-weight: 700; letter-spacing: -.02em; }
.newsrow__date i { margin-top: 8px; font-size: 12px; letter-spacing: .08em; color: var(--muted); }
.newsrow__cat { display: inline-block; font-size: 11.5px; letter-spacing: .1em; color: var(--gold-3); border: 1px solid rgba(169, 127, 46, .35); border-radius: 999px; padding: 3px 11px; }
.newsrow__title { display: block; margin-top: 10px; font-size: 18px; font-weight: 600; line-height: 1.5; }
.newsrow__desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 10px; font-size: 14px; line-height: 1.8; color: var(--text-2); }
.newsrow__more { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.newsrow__more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.newsrow:hover .newsrow__more { color: var(--gold-3); }
.newsrow:hover .newsrow__more svg { transform: translateX(4px); }
.sec--dark .newslist, .sec--dark-2 .newslist { border-top-color: var(--line-d); }
.sec--dark .newsrow, .sec--dark-2 .newsrow { border-bottom-color: var(--line-d); }
.sec--dark .newsrow__title, .sec--dark-2 .newsrow__title { color: #eef1f5; }
.sec--dark .newsrow__date b, .sec--dark-2 .newsrow__date b { color: #fff; }
.sec--dark .newsrow__desc, .sec--dark-2 .newsrow__desc { color: var(--muted-d); }
.sec--dark .newsrow__cat, .sec--dark-2 .newsrow__cat { color: var(--gold-2); border-color: rgba(210, 162, 76, .4); }
.sec--dark .newsrow:hover, .sec--dark-2 .newsrow:hover { background: rgba(210, 162, 76, .09); }

/* ===================== 08 分公司：网络图 / 地图 / 卡片 ===================== */
.nw-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.nw { width: 100%; height: auto; display: block; }
.nw__ring { fill: none; stroke: rgba(255, 255, 255, .13); stroke-width: 1; }
.nw__ring--dash { stroke-dasharray: 3 7; stroke: rgba(210, 162, 76, .34); }
.nw__ring--soft { stroke: rgba(255, 255, 255, .07); }
.nw__line { stroke: rgba(210, 162, 76, .32); stroke-width: 1; stroke-dasharray: 4 6; animation: dashmove 3.4s linear infinite; }
@keyframes dashmove { to { stroke-dashoffset: -40; } }
.nw__node { opacity: 0; animation: nwin .6s var(--ease) forwards; }
@keyframes nwin { from { opacity: 0; } to { opacity: 1; } }
.nw__dot { fill: #f2f4f7; }
.nw__pulse { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: .8; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .85; } 100% { transform: scale(2.6); opacity: 0; } }
.nw__label { fill: #dbe1e8; font-size: 15px; font-weight: 600; text-anchor: middle; font-family: var(--sans); }
.nw__hq { fill: var(--gold); }
.nw__hq-t { fill: #16130b; font-size: 19px; font-weight: 800; text-anchor: middle; font-family: var(--sans); }
.nw__hq-s { fill: rgba(22, 19, 11, .72); font-size: 9.5px; text-anchor: middle; font-family: var(--sans); letter-spacing: .03em; }
.nw__note { margin-top: 14px; font-size: 12.5px; color: var(--muted-d); text-align: center; }

.nwlist { display: grid; gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.nwlist__i { background: var(--ink-800); padding: 20px 24px; display: grid; grid-template-columns: 78px 1fr auto; gap: 20px; align-items: center; transition: background .25s var(--ease); }
.nwlist__i:hover { background: var(--ink-700); }
.nwlist__i b { font-size: 17px; color: #fff; }
.nwlist__i span { font-size: 13.5px; color: var(--muted-d); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nwlist__i em { font-family: var(--serif); font-size: 12px; letter-spacing: .12em; color: var(--gold); white-space: nowrap; }

#branch-map { width: 100%; height: 560px; border-radius: var(--r-lg); overflow: hidden; background: var(--ink-700); border: 1px solid var(--line-d); }
#branch-map.is-panel { height: auto; overflow: visible; border: 0; background: transparent; border-radius: 0; }
#branch-map.is-map { height: 560px; }

.mappanel { border: 1px solid var(--line-d); border-radius: var(--r-lg); background: var(--ink-800); overflow: hidden; }
.mappanel__hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding: 30px 32px; border-bottom: 1px solid var(--line-d); }
.mappanel__hd h3 { font-size: 21px; color: #fff; }
.mappanel__hd p { margin-top: 10px; font-size: 14px; line-height: 1.8; color: var(--muted-d); max-width: 620px; }
.mappanel__num { flex: none; text-align: right; }
.mappanel__num b { display: block; font-size: 46px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.mappanel__num span { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted-d); letter-spacing: .06em; }
.mappanel__body { padding: 8px 32px 26px; }
.map-rg { padding: 22px 0; border-bottom: 1px dashed rgba(255, 255, 255, .1); }
.map-rg:last-child { border-bottom: 0; }
.map-rg h4 { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #e7ebf0; letter-spacing: .06em; }
.map-rg h4 span { display: inline-grid; place-items: center; width: 20px; height: 20px; font-size: 11px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-2); }
.map-rg__body { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 16px; background: var(--line-d); border: 1px solid var(--line-d); }
.map-rg__body a { background: var(--ink-750); padding: 15px 16px; transition: background .25s var(--ease); }
.map-rg__body a:hover { background: var(--ink-600); }
.map-rg__body b { display: block; font-size: 16px; color: #fff; }
.map-rg__body span { display: block; margin-top: 6px; font-size: 11.5px; line-height: 1.6; color: var(--muted-d); }

.branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.branch { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px 24px; scroll-margin-top: 130px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.branch:hover { border-color: rgba(210, 162, 76, .6); box-shadow: 0 16px 38px rgba(20, 23, 28, .09); }
.branch__hd { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.branch__city { font-size: 25px; font-weight: 800; letter-spacing: -.01em; }
.branch__badge { font-size: 11.5px; letter-spacing: .08em; padding: 4px 11px; border-radius: 999px; background: var(--gold); color: #16130b; font-weight: 700; }
.branch__badge--o { background: rgba(20, 23, 28, .07); color: var(--text-2); font-weight: 500; }
.branch__list { margin-top: 18px; display: grid; gap: 13px; }
.branch__list li { display: grid; grid-template-columns: 68px 1fr; gap: 12px; font-size: 13.8px; line-height: 1.72; }
.branch__list span { color: var(--muted); }
.branch__list b { font-weight: 500; color: var(--text-2); }
.branch__list a { color: var(--gold-3); font-weight: 600; }

.rgs { display: grid; gap: 18px; }
.rg { display: grid; grid-template-columns: 168px 1fr; gap: 24px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line-d); }
.rg__hd h3 { font-size: 20px; color: #fff; }
.rg__hd span { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted-d); letter-spacing: .06em; }
.rg__body { display: flex; flex-wrap: wrap; gap: 10px; }
.rg__item { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 13px 18px; border: 1px solid var(--line-d); border-radius: var(--r); min-width: 152px; transition: border-color .25s var(--ease), background .25s var(--ease); }
.rg__item:hover { border-color: var(--gold); background: rgba(210, 162, 76, .08); }
.rg__item b { font-size: 16px; color: #fff; }
.rg__item span { font-size: 12.5px; color: var(--muted-d); }
.rg__item em { position: absolute; right: 12px; top: 12px; font-size: 10.5px; color: var(--gold); letter-spacing: .06em; }

/* ========================== 09 表格与时间轴 ========================== */
.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th, .tbl td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl th { font-size: 12.5px; letter-spacing: .08em; color: var(--muted); font-weight: 600; background: var(--paper-2); }
.tbl tbody tr:hover { background: rgba(210, 162, 76, .07); }
.tbl b { font-weight: 600; }

.tl { position: relative; padding-left: 34px; }
.tl::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.tl__i { position: relative; padding: 0 0 34px; }
.tl__i:last-child { padding-bottom: 0; }
.tl__i::before { content: ''; position: absolute; left: -34px; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--paper); border: 2px solid var(--gold); }
.tl__y { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--gold-3); letter-spacing: -.01em; }
.tl__i h4 { margin-top: 8px; font-size: 17px; }
.tl__i p { margin-top: 8px; font-size: 14px; line-height: 1.8; color: var(--text-2); }

/* ============================== 10 表单 ============================== */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; color: var(--text-2); letter-spacing: .02em; }
.field label i { color: #c0392b; margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-size: 14.5px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(210, 162, 76, .18);
}
.field--full { grid-column: 1 / -1; }
.form__tip { min-height: 22px; font-size: 13.5px; color: var(--muted); }
.form__tip.is-warn { color: #c0392b; }
.form__tip.is-ok { color: #2f7d52; }

/* ========================== 11 CTA 条与页脚 ========================== */
.cta-band { position: relative; background: var(--ink-800); color: #fff; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 88% 50%, rgba(210, 162, 76, .26), transparent 62%),
              linear-gradient(150deg, #171d26, #06070a);
}
.cta-band__in { position: relative; z-index: 2; padding: 68px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 46px; flex-wrap: wrap; }
.cta-band__txt h2 { font-size: clamp(24px, 2.9vw, 38px); letter-spacing: -.02em; }
.cta-band__txt p { margin-top: 14px; font-size: 15.5px; color: #b4bdc9; max-width: 640px; }
.cta-band__txt .eyebrow { margin-bottom: 12px; }
.cta-band__act { display: flex; flex-wrap: wrap; gap: 14px; flex: none; }

.site-footer { background: var(--ink-900); color: var(--muted-d); font-size: 14px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr .85fr .85fr 1.35fr; gap: 46px; padding: 66px 0 46px; }
.brand--foot .brand__txt b { font-size: 18px; }
.foot__slogan { margin-top: 20px; font-size: 14.5px; color: #b6bfca; letter-spacing: .02em; }
.foot__desc { margin-top: 14px; font-size: 13.5px; line-height: 1.85; color: #7d8794; max-width: 340px; }
.foot__tel { margin-top: 24px; }
.foot__tel span { display: block; font-size: 12px; letter-spacing: .1em; color: #6d7683; }
.foot__tel b { display: block; margin-top: 6px; font-size: 25px; font-weight: 800; color: var(--gold); letter-spacing: .01em; }
.foot__col h4 { font-size: 14px; color: #fff; letter-spacing: .08em; margin-bottom: 20px; }
.foot__col ul { display: grid; gap: 12px; }
.foot__col a { color: #98a2ae; transition: color .22s var(--ease); }
.foot__col a:hover { color: var(--gold); }
.foot__contact li { display: grid; gap: 5px; }
.foot__contact span:first-child { font-size: 12px; color: #6d7683; letter-spacing: .06em; }
.foot__contact b { color: #cfd6de; font-weight: 500; }
.foot__cities { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 24px 0; border-top: 1px solid var(--line-d); font-size: 13.5px; }
.foot__cities-t { letter-spacing: .1em; color: #6d7683; margin-right: 6px; }
.foot__cities a { color: #a8b2be; }
.foot__cities a:hover { color: var(--gold); }
.foot__cities em { color: #3d4552; }
.foot__bottom { border-top: 1px solid var(--line-d); }
.foot__bottom-in { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding: 22px 0 30px; font-size: 12.5px; color: #6d7683; }
.foot__lic a { color: #6d7683; }
.foot__lic a:hover { color: var(--gold); }
.foot__misc { display: flex; gap: 18px; margin-left: auto; }
.foot__misc a:hover { color: var(--gold); }

/* ========================== 12 内页通用 ========================== */
.prose { max-width: 820px; }
.prose h3 { margin: 34px 0 14px; font-size: 21px; }
.prose h4 { margin: 26px 0 12px; font-size: 17.5px; }
.prose p { margin: 14px 0; font-size: 15.5px; line-height: 1.95; color: var(--text-2); }
.prose ul { margin: 16px 0; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.9; color: var(--text-2); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.prose .quote { margin: 30px 0; padding: 24px 28px; border-left: 3px solid var(--gold); background: var(--paper-2); font-size: 16px; line-height: 1.95; color: var(--text); }

.anchor-pad { scroll-margin-top: 120px; }
.sec__hd--sm h2 { font-size: clamp(22px, 2.4vw, 30px); }

.infobox { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.infobox__i { background: var(--paper); padding: 24px 26px; display: grid; grid-template-columns: 88px 1fr; gap: 16px; font-size: 14.5px; }
.infobox__i span { color: var(--muted); }
.infobox__i b { font-weight: 500; color: var(--text); }
.infobox__i a { color: var(--gold-3); font-weight: 600; }

/* ============================== 13 响应式 ============================== */
@media (max-width: 1200px) {
  :root { --pad: 26px; }
  .nav__link { padding: 0 11px; font-size: 14.5px; }
  .adv { grid-template-columns: repeat(3, 1fr); }
  .ind { grid-template-columns: repeat(4, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow__i { padding-left: 20px; padding-right: 20px; }
  .flow__i:nth-child(3n) { border-right: 0; }
  .flow__i:nth-child(3n + 1) { padding-left: 0; }
  .branches { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: 1.4fr 1fr 1.4fr; gap: 36px; }
  .foot__col:nth-of-type(3) { display: none; }
}

@media (max-width: 1080px) {
  .nav, .bar__act .btn { display: none; }
  .burger { display: block; }
  /* 主导航隐藏后，原先由 .nav 的 margin-left:auto 承担的右推失效，
     .bar__act 会紧贴品牌导致按钮不贴边 —— 在此断点内由它自己承担右推 */
  .bar__act { margin-left: auto; }
  .bar__in { height: 68px; }
  .drawer { inset: 106px 0 0; }
  .svc { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .grid--2-1, .grid--1-2 { grid-template-columns: 1fr; }
  .grid--2-1, .grid--1-2 { gap: 40px; }
  .nw-wrap { grid-template-columns: 1fr; gap: 40px; }
  .collage { grid-template-columns: 1fr 1fr; }
  .collage > :first-child { grid-row: auto; grid-column: span 2; }
  /* 平板与手机：首屏改用竖向遮罩并重新取景，避免文字落在浅色区看不清 */
  .hero { background-position: 66% 44%; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 11, 16, .88) 0%, rgba(8, 11, 16, .72) 44%, rgba(8, 11, 16, .90) 100%);
  }
}

@media (max-width: 860px) {
  .sec { padding: 70px 0; }
  .sec--tight { padding: 52px 0; }
  /* 移动端隐藏顶部信息条，只留主导航，省出 38px 首屏空间（热线在抽屉里） */
  .topbar { display: none; }
  /* 抽屉改为悬浮面板：左右留边距、圆角、投影，不再贴屏幕两侧 */
  .drawer {
    inset: 76px var(--pad) 14px;
    border: 1px solid var(--line-d);
    border-radius: var(--r-lg);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .5);
  }
  .drawer__in { padding: 14px 16px calc(24px + env(safe-area-inset-bottom, 0px)); }
  .hero__in { padding: 62px var(--pad) 0; min-height: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 48px; }
  .sec__hd--split { flex-direction: column; align-items: flex-start; gap: 24px; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; }
  .adv { grid-template-columns: repeat(2, 1fr); }
  .ind { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow__i, .flow__i:nth-child(3n + 1) { padding-left: 18px; }
  .flow__i:nth-child(3n) { border-right: 1px solid var(--line); }
  .flow__i:nth-child(2n) { border-right: 0; }
  .flow__i:nth-child(2n + 1) { padding-left: 0; }
  .creds { grid-template-columns: 1fr; }
  .branches { grid-template-columns: 1fr; }
  .rg { grid-template-columns: 1fr; gap: 14px; }
  .nwlist__i { grid-template-columns: 68px 1fr; gap: 14px; }
  .nwlist__i em { grid-column: 2; }
  .map-rg__body { grid-template-columns: repeat(2, 1fr); }
  .mappanel__hd { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 22px; }
  .mappanel__num { text-align: left; }
  .mappanel__body { padding: 6px 22px 20px; }
  .newsrow { grid-template-columns: 74px 1fr; gap: 18px; }
  .newsrow__more { display: none; }
  .newsrow__date b { font-size: 27px; }
  .form__row { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; gap: 34px; padding: 50px 0 36px; }
  .foot__col:nth-of-type(3) { display: block; }
  .foot__misc { margin-left: 0; }
  #branch-map { height: 420px; }
  .tbl { font-size: 13px; }
  .tbl th, .tbl td { padding: 12px 12px; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  .hero { background-position: 58% 46%; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero__act .btn { width: 100%; }
  .cta-band__act { width: 100%; }
  .cta-band__act .btn { width: 100%; }
  .adv { grid-template-columns: 1fr; }
  .ind { grid-template-columns: repeat(2, 1fr); }
  .collage { grid-template-columns: 1fr; }
  .collage > :first-child { grid-column: auto; }
  .statband { grid-template-columns: 1fr; }
  .infobox__i { grid-template-columns: 1fr; gap: 6px; }
  .map-rg__body { grid-template-columns: 1fr; }
  .mappanel__hd { padding: 20px 18px; }
  .mappanel__body { padding: 4px 18px 16px; }
  .brand__txt i { letter-spacing: .1em; }
}

@media print {
  .site-header, .cta-band, .site-footer, .drawer { display: none; }
  body { background: #fff; }
}

/* ===================== 移动端触控与输入体验（全站） ===================== */
@media (max-width: 860px) {
  /* iOS 在字号小于 16px 的输入框获焦时会自动放大页面，统一提到 16px 规避 */
  .field input, .field select, .field textarea { font-size: 16px; }
  /* 触控目标不小于 44px 的可点区域 */
  .btn { min-height: 44px; }
  .btn--sm { min-height: 40px; }
  .filter button { min-height: 42px; }
  .tabs button { min-height: 44px; }
  .foot__col a { display: inline-block; padding: 3px 0; }
  /* 页脚与面包屑是独立的导航项，触控高度提到 36px 以上 */
  .foot__col ul { gap: 4px; }
  .foot__col a { padding: 7px 0; }
  .foot__contact li { padding: 3px 0; }
  .foot__cities { gap: 4px 4px; padding: 18px 0; }
  .foot__cities a { display: inline-block; padding: 7px 6px; }
  .foot__cities-t { padding: 7px 0; }
  .foot__misc { gap: 6px; }
  .foot__misc a { display: inline-block; padding: 7px 8px; }
  .foot__tel a, .foot__lic a { display: inline-block; padding: 5px 0; }
  .linkmore { padding: 7px 0; }
  .crumb a { display: inline-block; padding: 6px 2px; }
  .newsrow__more { padding: 6px 0; }
  /* 横滑容器加惯性与轻微回弹提示 */
  .tbl-scroll, [style*="overflow-x:auto"] { -webkit-overflow-scrolling: touch; }
  /* 首屏按钮整行铺开，避免两行挤压 */
  .hero__act .btn { flex: 1 1 100%; }
  .cta-band__act { width: 100%; }
  .cta-band__act .btn { flex: 1 1 100%; }
  /* 底部留出安全区，避免被 iPhone home 条遮挡 */
  .site-footer { padding-bottom: env(safe-area-inset-bottom, 0px); }
}
