/* ==========================================================================
   感动新视界科技（深圳）有限公司 — 企业官网样式
   设计语言：简约大气 / 深空墨蓝 + 光学青蓝渐变 / 大量留白 / 细线分隔
   ========================================================================== */

/* ------------------------------ Design Tokens ----------------------------- */
:root {
  --ink: #070B16;
  --ink-2: #0C1324;
  --ink-3: #131C33;
  --paper: #FFFFFF;
  --paper-2: #F4F7FC;
  --paper-3: #EDF1F9;
  --line: #E3E9F3;
  --line-dark: rgba(255, 255, 255, 0.1);

  --text: #101728;
  --text-2: #38455F;
  --muted: #6B7A94;
  --on-dark: #FFFFFF;
  --on-dark-2: rgba(255, 255, 255, 0.66);
  --on-dark-3: rgba(255, 255, 255, 0.42);

  --brand: #0E9AAE;
  --brand-2: #4F46E5;
  --brand-3: #22D3C5;
  --grad: linear-gradient(120deg, #22D3C5 0%, #3B82F6 52%, #6D5BF6 100%);
  --grad-soft: linear-gradient(120deg, rgba(34, 211, 197, 0.14), rgba(109, 91, 246, 0.14));

  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 26px;
  --shadow-s: 0 2px 10px rgba(16, 23, 40, 0.05);
  --shadow: 0 14px 40px -18px rgba(16, 23, 40, 0.22);
  --shadow-l: 0 40px 90px -40px rgba(16, 23, 40, 0.4);

  --wrap: 1200px;
  --wrap-narrow: 880px;
  --nav-h: 72px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans SC",
    "Noto Sans SC", sans-serif;
}

/* --------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.24; font-weight: 600; letter-spacing: -0.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
::selection { background: rgba(34, 211, 197, 0.28); }

/* ------------------------------- Utilities -------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: calc(28px + var(--safe-l)) calc(28px + var(--safe-r)); }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: calc(28px + var(--safe-l)) calc(28px + var(--safe-r)); }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--light { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.center { text-align: center; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mono-num { font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* 分区标题 */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--brand); opacity: 0.6;
}
.section--dark .eyebrow { color: var(--brand-3); }
.section--dark .eyebrow::before { background: var(--brand-3); opacity: 0.7; }

.h-sec { font-size: clamp(28px, 3.4vw, 42px); margin-top: 18px; }
.h-sub { font-size: clamp(15px, 1.3vw, 17px); color: var(--muted); margin-top: 16px; max-width: 720px; }
.section--dark .h-sub { color: var(--on-dark-2); }
.sec-head { max-width: 780px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .h-sub { margin-inline: auto; }
.sec-head.center .eyebrow::before { display: none; }
.sec-head.center .eyebrow { padding: 7px 16px; border-radius: 999px; background: rgba(14, 154, 174, 0.08); }
.section--dark .sec-head.center .eyebrow { background: rgba(34, 211, 197, 0.12); }

/* --------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 50px; padding: 0 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s, background 0.22s, color 0.22s, border-color 0.22s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
/* 按钮内的行内图标统一为 16px，防止 SVG 无约束撑爆按钮 */
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -12px rgba(59, 130, 246, 0.65); }
.btn--primary:hover { box-shadow: 0 20px 44px -16px rgba(59, 130, 246, 0.7); }
.btn--ghost { border: 1px solid var(--line); background: #fff; color: var(--text); }
.btn--ghost:hover { border-color: #C8D3E6; box-shadow: var(--shadow-s); }
.btn--on-dark { border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; background: rgba(255, 255, 255, 0.04); }
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); }
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

/* --------------------------------- Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header.is-dark {
  background: rgba(7, 11, 22, 0.72); color: var(--on-dark);
  border-bottom-color: var(--line-dark);
}
.site-header .wrap { display: flex; align-items: center; gap: 26px; height: 100%; }

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
/* 品牌 LOGO 为 206×191 的横长方形（自带透明圆角），按高度缩放以保持原始比例 */
.brand__mark { height: 38px; width: auto; flex: none; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-size: 16.5px; font-weight: 700; letter-spacing: 0.01em; }
.brand__sub { font-size: 10px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }
.site-header.is-dark .brand__sub { color: var(--on-dark-3); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  position: relative; padding: 9px 15px; border-radius: 9px;
  font-size: 15px; font-weight: 500; color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); background: var(--paper-2); }
.nav__link.is-active { color: var(--text); font-weight: 600; }
.site-header.is-dark .nav__link { color: var(--on-dark-2); }
.site-header.is-dark .nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.site-header.is-dark .nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  border-radius: 2px; background: var(--grad);
}

.head-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.lang-toggle {
  display: inline-flex; padding: 3px; border-radius: 999px;
  background: var(--paper-3); font-size: 12.5px; font-weight: 600;
}
.site-header.is-dark .lang-toggle { background: rgba(255, 255, 255, 0.1); }
.lang-toggle button { padding: 5px 12px; border-radius: 999px; color: var(--muted); transition: all 0.2s; }
.site-header.is-dark .lang-toggle button { color: var(--on-dark-3); }
.lang-toggle button.is-on { background: #fff; color: var(--text); box-shadow: var(--shadow-s); }
.site-header.is-dark .lang-toggle button.is-on { background: var(--brand-3); color: var(--ink); }

.user-chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 14px 0 5px; border-radius: 999px;
  background: var(--paper-2); font-size: 13.5px; font-weight: 600;
}
.site-header.is-dark .user-chip { background: rgba(255, 255, 255, 0.1); }
.user-chip__avatar {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 700;
  background: var(--grad);
}
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 10px; place-items: center; }
.nav-burger span { display: block; width: 18px; height: 1.6px; background: currentColor; box-shadow: 0 -5.5px 0 currentColor, 0 5.5px 0 currentColor; }

/* 移动端抽屉 */
.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 59;
  background: #fff; padding: 18px calc(28px + var(--safe-r)) 40px calc(28px + var(--safe-l));
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  overflow-y: auto;
}
.nav-drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-drawer a { display: block; padding: 15px 4px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
.nav-drawer .head-actions { margin-top: 22px; }

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-dark);
  padding: 108px 0 96px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg svg { width: 100%; height: 100%; }
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none;
}
.hero__glow--a { width: 620px; height: 620px; top: -240px; right: -140px; background: radial-gradient(circle, rgba(59, 130, 246, 0.75), transparent 68%); }
.hero__glow--b { width: 520px; height: 520px; bottom: -260px; left: -120px; background: radial-gradient(circle, rgba(34, 211, 197, 0.5), transparent 68%); }
.hero__glow--c { width: 380px; height: 380px; top: 30%; left: 42%; background: radial-gradient(circle, rgba(109, 91, 246, 0.4), transparent 68%); }
.hero .wrap { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 10px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.05);
  font-size: 13px; color: var(--on-dark-2);
  backdrop-filter: blur(6px);
}
.hero__badge b { color: #fff; font-weight: 600; }
.dot-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 0 0 rgba(34, 211, 197, 0.7); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 197, 0.6); }
  70% { box-shadow: 0 0 0 11px rgba(34, 211, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 197, 0); }
}

.hero__title {
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.1; letter-spacing: -0.03em; font-weight: 700;
  margin-top: 26px; max-width: 14em;
}
.hero__lead {
  margin-top: 26px; max-width: 640px;
  font-size: clamp(15.5px, 1.5vw, 18.5px); color: var(--on-dark-2); line-height: 1.85;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 34px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.hero__meta div { font-size: 13.5px; color: var(--on-dark-3); display: flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 16px; height: 16px; flex: none; color: var(--brand-3); }

/* 首页 Hero：左文案 + 右主视觉 */
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 40px; align-items: center; }
.hero__copy { min-width: 0; }
.hero__visual {
  position: relative; justify-self: center; align-self: center;
  animation: hero-float 7s ease-in-out infinite;
}
.hero__visual img {
  position: relative; z-index: 2; display: block;
  height: var(--hero-visual-h, 540px); width: auto;
  filter: drop-shadow(0 34px 68px rgba(37, 99, 235, 0.4)) drop-shadow(0 10px 26px rgba(2, 6, 23, 0.5));
}
.hero__visual__halo {
  position: absolute; z-index: 1; inset: -14% -20%;
  background:
    radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.38), transparent 62%),
    radial-gradient(circle at 60% 70%, rgba(34, 211, 197, 0.26), transparent 58%);
  filter: blur(36px);
  animation: hero-halo 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes hero-halo { 0%, 100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) {
  .hero__visual, .hero__visual__halo { animation: none; }
}
/* 桌面端四项指标单行排列 */
@media (min-width: 1024px) {
  .hero__meta { flex-wrap: nowrap; gap: 10px 18px; }
  .hero__meta div { font-size: 12.5px; white-space: nowrap; }
  .hero__meta svg { width: 14px; height: 14px; }
}

/* --------------------------------- 数据条 --------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat-grid--dark { background: var(--line-dark); border-color: var(--line-dark); }
.stat { background: #fff; padding: 32px 26px; }
.stat-grid--dark .stat { background: var(--ink-2); }
.stat__num { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -0.03em; }
.stat__num small { font-size: 0.5em; font-weight: 600; margin-left: 3px; }
.stat__label { margin-top: 8px; font-size: 13.5px; color: var(--muted); }
.stat-grid--dark .stat__label { color: var(--on-dark-3); }

/* ---------------------------------- Cards --------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s, border-color 0.28s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D2DCEF; }
.card__ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--brand); margin-bottom: 18px;
}
.card__ico svg { width: 22px; height: 22px; }
.card__title { font-size: 18px; font-weight: 650; }
.card__desc { margin-top: 11px; font-size: 14.5px; color: var(--muted); line-height: 1.8; }
.card__list { margin-top: 16px; display: grid; gap: 9px; }
.card__list li { position: relative; padding-left: 18px; font-size: 14px; color: var(--text-2); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brand-3);
}
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 12.5px; padding: 4px 11px; border-radius: 999px;
  background: var(--paper-3); color: var(--text-2);
}
.card--dark { background: var(--ink-2); border-color: var(--line-dark); color: var(--on-dark); }
.card--dark .card__desc { color: var(--on-dark-2); }
.card--dark .card__ico { background: rgba(34, 211, 197, 0.12); color: var(--brand-3); }
.card--dark:hover { border-color: rgba(34, 211, 197, 0.4); box-shadow: 0 24px 60px -30px rgba(34, 211, 197, 0.4); }

/* 后台 · 访问统计 */
.adm-anrange.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.an-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 16px; }
.an-split--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.an-map .an-jd { fill: #EEF2F8; stroke: #9AA7BC; stroke-width: 1; stroke-dasharray: 3 2; }
@media (max-width: 900px) { .an-split, .an-split--2 { grid-template-columns: 1fr; } }

/* 行业方案卡（可点击） */
.sol-card { display: flex; flex-direction: column; cursor: pointer; }
.sol-card__num { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--brand); }
.sol-card__title { font-size: 21px; font-weight: 650; margin-top: 12px; letter-spacing: -0.02em; }
.sol-card__en { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.sol-card__desc { margin-top: 14px; font-size: 14.5px; color: var(--muted); flex: 1; }
.sol-card__metrics { display: flex; gap: 24px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.sol-card__metric b { display: block; font-size: 21px; font-weight: 700; letter-spacing: -0.03em; }
.sol-card__metric span { font-size: 12.5px; color: var(--muted); }
.sol-card__go { margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 7px; }
.sol-card__go svg { width: 15px; height: 15px; transition: transform 0.24s; }
.sol-card:hover .sol-card__go svg { transform: translateX(4px); }

/* ------------------------------- 技术金字塔 -------------------------------- */
.pyramid { display: grid; gap: 14px; }
.pyr-row { display: grid; grid-template-columns: 168px 1fr; gap: 26px; align-items: center; padding: 26px 30px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line-dark); }
.pyr-row__label { font-size: 15px; font-weight: 650; color: #fff; }
.pyr-row__label small { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-3); margin-bottom: 8px; }
.pyr-row__items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.pyr-item__t { font-size: 14.5px; font-weight: 600; color: #fff; }
.pyr-item__d { font-size: 13px; color: var(--on-dark-2); margin-top: 4px; }
.pyr-row--1 { margin-inline: 0; }
.pyr-row--2 { margin-inline: 22px; }
.pyr-row--3 { margin-inline: 44px; }

/* --------------------------------- 时间线 --------------------------------- */
.timeline { position: relative; display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 128px 1fr; gap: 26px; padding: 26px 0; border-top: 1px solid var(--line); }
.tl-item:first-child { border-top: 0; }
.tl-year { font-size: 15px; font-weight: 700; color: var(--brand); letter-spacing: -0.01em; }
.tl-body h4 { font-size: 16.5px; font-weight: 650; }
.tl-body p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }

/* -------------------------------- 对比表格 -------------------------------- */
.cmp { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; border-collapse: collapse; font-size: 14.5px; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp thead th { background: var(--paper-2); font-size: 13.5px; font-weight: 650; color: var(--text-2); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td:first-child { font-weight: 600; width: 30%; }

/* -------------------------------- 解决方案 -------------------------------- */
.sol-nav { display: flex; flex-wrap: wrap; gap: 9px; }
.sol-nav button {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 14px; font-weight: 550; color: var(--text-2); background: #fff;
  transition: all 0.2s;
}
.sol-nav button:hover { border-color: #C8D3E6; }
.sol-nav button.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
/* 行业导航吸附容器：移动端由下方断点接管为吸顶栏 */
.sol-navbar { margin-top: 36px; }

.sol-panel { display: none; }
.sol-panel.is-on { display: block; animation: fadeUp 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.sol-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
.sol-hero__title { font-size: clamp(26px, 3.1vw, 38px); letter-spacing: -0.025em; }
.sol-hero__en { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); margin-top: 12px; }
.sol-hero__desc { margin-top: 20px; font-size: 16px; color: var(--text-2); line-height: 1.9; }
.sol-aside { background: var(--paper-2); border-radius: var(--radius-l); padding: 30px; border: 1px solid var(--line); }
.sol-aside__t { font-size: 13px; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sol-kv { display: grid; gap: 0; margin-top: 12px; }
.sol-kv > div { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.sol-kv > div:last-child { border-bottom: 0; }
.sol-kv b { font-weight: 700; color: var(--brand); white-space: nowrap; }
.sol-kv span { color: var(--muted); }

.blk { margin-top: 46px; }
.blk__head { display: flex; align-items: baseline; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.blk__idx { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--brand); }
.blk__title { font-size: 19px; font-weight: 650; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.pain { padding: 24px; border-radius: var(--radius-s); background: #FFF7F5; border: 1px solid #FFE3DA; }
.pain__t { font-size: 15px; font-weight: 650; color: #B23A1E; }
.pain__d { margin-top: 9px; font-size: 13.8px; color: #8A4A34; line-height: 1.8; }

.gain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.gain { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius-s); background: var(--paper-2); border: 1px solid var(--line); }
.gain__b { font-size: 17px; font-weight: 700; color: var(--brand); white-space: nowrap; letter-spacing: -0.02em; min-width: 84px; }
.gain__t { font-size: 14.5px; font-weight: 600; }
.gain__d { font-size: 13.5px; color: var(--muted); margin-top: 5px; line-height: 1.75; }

.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
.metric { padding: 24px; border-radius: var(--radius-s); border: 1px solid var(--line); background: #fff; }
.metric b { display: block; font-size: 27px; font-weight: 700; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric span { font-size: 13px; color: var(--muted); }

/* ---------------------------------- CTA ---------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-l); padding: 60px 56px; background: var(--ink); color: #fff; }
.cta-band__glow { position: absolute; width: 520px; height: 520px; top: -220px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.6), transparent 68%); filter: blur(70px); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h3 { font-size: clamp(24px, 2.9vw, 34px); letter-spacing: -0.025em; }
.cta-band p { margin-top: 14px; color: var(--on-dark-2); max-width: 620px; font-size: 15.5px; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

/* ---------------------------------- 表单 ---------------------------------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > label { font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.field > label .req { color: #E4572E; margin-left: 3px; }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-s);
  border: 1px solid var(--line); background: #fff; font-size: 14.5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14, 154, 174, 0.12);
}
.textarea { min-height: 132px; resize: vertical; line-height: 1.8; }
.select { appearance: none; 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 d='M1 1.5 6 6.5l5-5' stroke='%236B7A94' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.form-note { font-size: 12.5px; color: var(--muted); }
.check-line { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-2); }
.check-line input { margin-top: 4px; accent-color: var(--brand); }

.msg { padding: 13px 16px; border-radius: var(--radius-s); font-size: 14px; display: none; }
.msg.is-on { display: block; }
.msg--ok { background: #ECFBF7; color: #10695A; border: 1px solid #B9EDE1; }
.msg--err { background: #FFF3F0; color: #A93517; border: 1px solid #FFD9CE; }
.msg--info { background: #EEF4FF; color: #24459B; border: 1px solid #D3E0FF; }

/* ---------------------------------- 登录 ---------------------------------- */
.auth-wrap { display: grid; grid-template-columns: 1.05fr 1fr; max-width: 1120px; margin: 44px auto 72px; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.auth-side { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 40px 52px 34px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.auth-side__glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.auth-side__glow--a { top: -220px; left: -160px; background: radial-gradient(circle, rgba(34,211,197,0.6), transparent 66%); }
.auth-side__glow--b { bottom: -260px; right: -180px; background: radial-gradient(circle, rgba(109,91,246,0.62), transparent 66%); }
.auth-side > *:not(.auth-side__glow) { position: relative; z-index: 2; }
.auth-side h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: -0.03em; }
.auth-side p { margin-top: 18px; color: var(--on-dark-2); font-size: 15.5px; line-height: 1.9; max-width: 460px; }
.auth-side__list { margin-top: 40px; display: grid; gap: 16px; }
.auth-side__list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--on-dark-2); align-items: flex-start; }
.auth-side__list svg { width: 18px; height: 18px; flex: none; color: var(--brand-3); margin-top: 3px; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 52px 32px; background: var(--paper-2); }
.auth-card { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 36px 34px; box-shadow: var(--shadow-s); }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: var(--paper-3); border-radius: 999px; margin-bottom: 30px; }
.auth-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: var(--paper-3); border-radius: 999px; margin-bottom: 22px; }
.auth-switch button { border: 0; background: transparent; padding: 10px 0; border-radius: 999px; font: inherit; font-size: 13.5px; font-weight: 600; color: var(--muted, #5b6478); cursor: pointer; }
.auth-switch button.is-on { background: var(--brand, #0E9AAE); color: #fff; }
.auth-tabs button { height: 40px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--muted); transition: all 0.2s; }
.auth-tabs button.is-on { background: #fff; color: var(--text); box-shadow: var(--shadow-s); }
.auth-form { display: none; }
.auth-form.is-on { display: block; }
.auth-title { font-size: 24px; letter-spacing: -0.02em; }
.auth-sub { margin-top: 8px; font-size: 14px; color: var(--muted); margin-bottom: 26px; }

/* —— 登录/注册页左侧品牌区：顶部品牌 · 中部内容 · 底部联系方式 —— */
.auth-side__brand { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 700; letter-spacing: 0.06em; color: #fff; }
.auth-side__mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, #0E9AAE, #6D5BF6); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; letter-spacing: 0; color: #fff; flex: none; }
.auth-side__brand-en { opacity: 0.55; font-weight: 500; font-size: 11px; letter-spacing: 0.18em; }
.auth-side__foot { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.16); font-size: 12.5px; color: var(--on-dark-2); }
.auth-side__foot span { display: inline-flex; align-items: center; gap: 7px; }
.auth-side__foot svg { width: 14px; height: 14px; color: var(--brand-3); flex: none; }

/* —— 登录表单：记住我 + 忘记密码同行 —— */
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.auth-row .check-line { margin: 0; }
.auth-form .link-btn[data-tab="forgot"], .auth-form .link-btn[data-tab="login"] { font-size: 13px; }

/* -------------------------------- 会员中心 -------------------------------- */
.member-head { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; padding: 34px; border-radius: var(--radius-l); background: var(--ink); color: #fff; }
.member-head__avatar { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; font-size: 24px; font-weight: 700; background: var(--grad); flex: none; }
.member-head h2 { font-size: 24px; letter-spacing: -0.02em; }
.member-head p { font-size: 14px; color: var(--on-dark-2); margin-top: 5px; }

.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-top: 40px; flex-wrap: wrap; }
.tabs button { padding: 12px 18px; font-size: 15px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; }
.tabs button.is-on { color: var(--text); border-bottom-color: var(--brand); }

.list-item { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.list-item__main { flex: 1; min-width: 240px; }
.list-item__t { font-size: 15.5px; font-weight: 650; }
.list-item__d { font-size: 14px; color: var(--muted); margin-top: 7px; line-height: 1.8; white-space: pre-wrap; word-break: break-word; }
.list-item__meta { font-size: 12.5px; color: var(--muted); margin-top: 11px; display: flex; flex-wrap: wrap; gap: 14px; }
.pill { font-size: 12px; padding: 4px 11px; border-radius: 999px; background: var(--paper-3); color: var(--text-2); font-weight: 600; }
.pill--ok { background: #ECFBF7; color: #10695A; }
.pill--wait { background: #FFF6E8; color: #9A6410; }
.pill--bad { background: #FDECEC; color: #A3231F; }

.empty { padding: 56px 0; text-align: center; color: var(--muted); font-size: 14.5px; }
.empty svg { width: 40px; height: 40px; margin: 0 auto 16px; color: #C3CDDE; }

/* 上传 */
.upload {
  border: 1.5px dashed #C8D3E6; border-radius: var(--radius); padding: 34px;
  text-align: center; background: var(--paper-2); transition: all 0.2s; cursor: pointer;
}
.upload:hover, .upload.is-drag { border-color: var(--brand); background: #F0FAFB; }
.upload svg { width: 30px; height: 30px; margin: 0 auto 14px; color: var(--brand); }
.upload__t { font-size: 15px; font-weight: 600; }
.upload__d { font-size: 13px; color: var(--muted); margin-top: 7px; }
.file-list { display: grid; gap: 10px; margin-top: 18px; }
.file-row { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-s); font-size: 14px; background: #fff; }
.file-row__ico { width: 34px; height: 34px; border-radius: 9px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.file-row__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-row__size { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.file-row a { color: var(--brand); font-size: 13px; font-weight: 600; }

/* --------------------------------- Footer -------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-2); padding: 76px 0 34px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.foot-brand .brand__name { color: #fff; }
.foot-brand p { margin-top: 20px; font-size: 14px; line-height: 1.85; max-width: 330px; }
.foot-brand .brand { color: #fff; }
/* 页脚旗下网站入口（感动新能源） */
.foot-sis { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; padding: 11px 16px 11px 12px;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; background: rgba(255,255,255,0.05);
  transition: all 0.2s; max-width: 340px; }
.foot-sis:hover { border-color: var(--brand-3); background: rgba(255,255,255,0.09); transform: translateY(-1px); }
.foot-sis__logo { width: 40px; height: 40px; border-radius: 9px; object-fit: contain; flex: none; }
.foot-sis__text { display: grid; gap: 2px; min-width: 0; }
.foot-sis__name { color: #fff; font-size: 14.5px; font-weight: 650; line-height: 1.25; }
.foot-sis__sub { color: var(--on-dark-2); font-size: 11.5px; line-height: 1.35; }
.foot-sis__go { margin-left: 4px; color: var(--brand-3); flex: none; transition: transform 0.2s; }
.foot-sis__go svg { width: 16px; height: 16px; }
.foot-sis:hover .foot-sis__go { transform: translateX(3px); }
.foot-col h5 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; font-weight: 650; }
.foot-col ul { margin-top: 20px; display: grid; gap: 12px; }
.foot-col a { font-size: 14px; transition: color 0.2s; }
.foot-col a:hover { color: var(--brand-3); }
.foot-contact li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.foot-contact a { color: inherit; text-decoration: none; }
.foot-contact a:hover { color: var(--brand-3); }
.foot-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--brand-3); }
.foot-bottom { margin-top: 58px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13px; color: var(--on-dark-3); }
.foot-bottom a:hover { color: #fff; }
.foot-bottom .links { display: flex; flex-wrap: wrap; gap: 20px; }

/* --------------------------------- Toast --------------------------------- */
.toast-host { position: fixed; z-index: 200; right: calc(24px + var(--safe-r)); bottom: 24px; display: grid; gap: 10px; }
.toast {
  min-width: 240px; max-width: 360px; padding: 14px 18px; border-radius: 13px;
  background: var(--ink); color: #fff; font-size: 14px; box-shadow: var(--shadow-l);
  animation: toastIn 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.toast--ok { background: #0E7A5F; }
.toast--err { background: #A93517; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ------------------------------ Scroll Reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------- Scrollbar ------------------------------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: #C8D3E6; border-radius: 99px; border: 2px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: #AEBBD2; }

/* ------------------------------- Responsive ------------------------------- */
@media (max-width: 1080px) {
  .grid--4, .stat-grid, .metric-row { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sol-hero { grid-template-columns: 1fr; gap: 30px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pyr-row { grid-template-columns: 1fr; gap: 16px; }
  .pyr-row--2, .pyr-row--3 { margin-inline: 0; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { padding: 40px 28px 34px; gap: 26px; }
  .auth-side__list { display: none; }
  .auth-side__foot { display: none; }
}
@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .grid--3, .grid--5, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gain-grid { grid-template-columns: 1fr; }
  .hero { padding: 76px 0 66px; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { margin-top: 30px; }
  .hero__visual img { height: min(78vw, 360px); }
  .cta-band { padding: 42px 26px; }
  .pyr-row__items { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .wrap, .wrap-narrow { padding-inline: calc(20px + var(--safe-l)) calc(20px + var(--safe-r)); }
  .stat-grid, .metric-row, .grid--4, .foot-top { grid-template-columns: 1fr; }
  .card { padding: 24px 22px; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .auth-card { padding: 30px 22px; }
  .brand__sub { display: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-burger { display: none; }
}

/* ==========================================================================
   页面级补充样式
   ========================================================================== */

/* ------------------------------ 内页头图 ------------------------------ */
.page-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); padding: 78px 0 68px; }
/* 页头可选背景图（如关于我们）：<img> 承载 + 深色渐变遮罩保证文字可读 */
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 22, 0.72) 0%, rgba(7, 11, 22, 0.55) 50%, rgba(7, 11, 22, 0.88) 100%); }
.page-hero__title { font-size: clamp(30px, 4.4vw, 48px); letter-spacing: -0.032em; font-weight: 700; margin-top: 20px; max-width: none; }
/* 中文横幅大标题桌面端不换行（英文按常规折行；手机端仍正常换行避免溢出） */
@media (min-width: 861px) {
  html[lang="zh-CN"] .page-hero__title { white-space: nowrap; }
}
.page-hero__lead { margin-top: 22px; max-width: 760px; color: var(--on-dark-2); font-size: clamp(15px, 1.35vw, 17.5px); line-height: 1.95; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--brand-3); }
.page-hero .eyebrow::before { background: var(--brand-3); opacity: 0.7; }

/* ------------------------------- 双列布局 ------------------------------- */
.split { display: grid; grid-template-columns: 1.28fr 0.72fr; gap: 52px; align-items: start; }
.split--wide { grid-template-columns: 1.35fr 0.65fr; }
.split--even { grid-template-columns: 1fr 1fr; }
.prose p { margin-top: 18px; font-size: 15.5px; color: var(--text-2); line-height: 1.95; }
.prose p:first-child { margin-top: 0; }
.quote { font-size: clamp(20px, 2.5vw, 30px); line-height: 1.55; letter-spacing: -0.025em; font-weight: 650; }

/* ------------------------------ 侧栏信息卡 ------------------------------ */
.aside-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px 30px; }
.aside-card__t { font-size: 12.5px; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fact-list { margin-top: 16px; display: grid; }
.fact-list > div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.fact-list > div:last-child { border-bottom: 0; }
.fact-list b { font-weight: 700; color: var(--brand); white-space: nowrap; }
.fact-list span { color: var(--text-2); }

/* ------------------------------ 勾选项列表 ------------------------------ */
.check-list { display: grid; gap: 11px; margin-top: 18px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.3px; color: var(--text-2); line-height: 1.8; }
.check-list svg { width: 16px; height: 16px; flex: none; margin-top: 5px; color: var(--brand); }

/* ------------------------------- 编号列表 ------------------------------- */
.numlist { display: grid; }
.numlist__item { display: grid; grid-template-columns: 62px 1fr; gap: 26px; padding: 28px 0; border-top: 1px solid var(--line); }
.numlist__item:first-child { border-top: 0; }
.numlist__idx { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--brand); font-variant-numeric: tabular-nums; padding-top: 4px; }
.numlist__t { font-size: 17.5px; font-weight: 650; }
.numlist__d { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.88; }

/* ------------------------------- 表格容器 ------------------------------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.table-scroll .cmp { min-width: 780px; border: 0; border-radius: 0; }
.note-line { margin-top: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* ------------------------------ 方案页尾部 ------------------------------ */
.sol-foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

/* ------------------------------- 地图卡片 ------------------------------- */
.loc-card { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; background: var(--paper-2); }
.loc-card__map { height: 196px; position: relative; background: linear-gradient(120deg, #0C1324, #131C33); }
.loc-card__map svg { display: block; }

/* ------------------------------ 模式提示条 ------------------------------ */
.mode-badge {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-top: 34px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.05);
  font-size: 12.5px; font-weight: 600; color: var(--on-dark);
}
.mode-badge--light { border-color: var(--line); background: var(--paper-2); color: var(--text); }
.mode-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-3); flex: none; }
.mode-badge--light .mode-badge__dot { background: var(--brand); }
.mode-badge__hint { font-weight: 400; color: var(--on-dark-3); }
.mode-badge--light .mode-badge__hint { color: var(--muted); }

/* ------------------------------- 登录页补充 ------------------------------- */
.auth-foot { margin-top: 22px; text-align: center; font-size: 13.5px; color: var(--muted); }
.link-btn { color: var(--brand); font-weight: 600; font-size: 13.5px; }
.link-btn:hover { text-decoration: underline; }

/* ------------------------------ 会员中心 Tabs ----------------------------- */
.tab-panel { display: none; }
.tab-panel.is-on { display: block; animation: fadeUp 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.tabs { margin-bottom: 4px; }

/* ------------------------------ 可点击卡片 ------------------------------- */
.sol-card:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.sol-card[data-goto] { user-select: none; }

/* ------------------------------ 响应式补充 ------------------------------- */
@media (max-width: 1080px) {
  .split, .split--wide, .split--even { grid-template-columns: 1fr; gap: 34px; }
  .page-hero { padding: 62px 0 56px; }
  .aside-card { padding: 26px 24px; }
}
@media (max-width: 860px) {
  .numlist__item { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .numlist__idx { padding-top: 0; }
  .tabs button { padding: 11px 13px; font-size: 14px; }
  .auth-side { padding: 40px 26px 36px; }
  .mode-badge { flex-direction: column; align-items: flex-start; border-radius: var(--radius); }
}
@media (max-width: 520px) {
  .quote { font-size: 21px; }
  .member-head { padding: 26px 22px; }
  .member-head__avatar { width: 54px; height: 54px; border-radius: 16px; font-size: 20px; }
}

/* ==========================================================================
   多端适配层（手机 / 平板 / 桌面）
   --------------------------------------------------------------------------
   识别机制：assets/js/device.js 在首屏渲染前把终端类型写入 html 属性，
   本层样式同时接受「媒体查询」与「设备属性」两条通道，两者互为补充：

     桌面   ≥ 1024px
     平板   768 – 1023px   +  html[data-device="tablet"]   → 双列栅格 / 右侧抽屉
     手机   < 768px        +  html[data-device="mobile"]   → 单列 / 底部快捷栏
     小屏   < 400px        → 进一步压缩留白与字号

   为何要双通道：手机横屏时宽度会超过 768px，单靠媒体查询会误判为平板，
   而设备属性记得住「这是一台手机」，底部快捷栏因此不会消失。
   ========================================================================== */

/* ------------------------------ 全局细节修正 ------------------------------ */
:root {
  --safe-b: env(safe-area-inset-bottom, 0px);
  /* 横屏刘海屏 / 挖孔屏的左右安全区（竖屏时为 0，不影响其他设备） */
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --scroll-gap: calc(var(--nav-h) + 16px);
  --bar-h: 62px;
}
/* 锚点跳转（页脚行业链接等）不被吸顶页头遮挡 */
[id] { scroll-margin-top: var(--scroll-gap); }

html { -webkit-tap-highlight-color: transparent; }
a, button, label, .sol-card, input, select, textarea { touch-action: manipulation; }
/* 长英文单词 / 邮箱地址在窄屏不撑破容器 */
.prose p, .card__desc, .list-item__d, .sol-hero__desc, .foot-brand p { overflow-wrap: break-word; }
.prose { max-width: 76ch; }

/* 不依赖悬停的设备：去掉位移与悬停态，避免点击后样式残留 */
html[data-touch="1"] .card:hover,
html[data-touch="1"] .btn:hover { transform: none; }
html[data-touch="1"] .card:hover { box-shadow: none; border-color: var(--line); }
html[data-touch="1"] .card--dark:hover { box-shadow: none; border-color: var(--line-dark); }
html[data-touch="1"] .sol-card:hover .sol-card__go svg { transform: none; }
html[data-touch="1"] .btn--primary:hover { box-shadow: 0 12px 30px -12px rgba(59, 130, 246, 0.65); }

/* 键盘焦点可见 */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* 抽屉打开时锁定页面滚动 */
html.is-locked, html.is-locked body { overflow: hidden; }
html.is-locked .mobile-bar, html.is-locked .to-top { opacity: 0; pointer-events: none; }

/* ------------------------------ 抽屉（通用增强） ------------------------------ */
.drawer-scrim {
  position: fixed; inset: var(--nav-h) var(--safe-r) 0 var(--safe-l); z-index: 58;
  background: rgba(7, 11, 22, 0.46);
  opacity: 0; pointer-events: none; transition: opacity 0.22s;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }

.nav-drawer { -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.nav-drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 12px; }
.nav-drawer__title { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.nav-drawer__close {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center; background: var(--paper-2); color: var(--text-2);
}
.nav-drawer__close svg { width: 18px; height: 18px; }
.nav-drawer .nav-drawer__link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-drawer .nav-drawer__link svg { width: 16px; height: 16px; flex: none; color: var(--muted); opacity: 0.7; }
.nav-drawer .nav-drawer__link.is-active { color: var(--brand); }
.nav-drawer .nav-drawer__link.is-active svg { color: var(--brand); opacity: 1; }
.nav-drawer__contact {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
  display: grid; gap: 12px; font-size: 14px; color: var(--text-2);
}
.nav-drawer__contact a { display: flex; align-items: center; gap: 10px; padding: 0; border: 0; font-weight: 500; }
.nav-drawer__contact svg { width: 16px; height: 16px; flex: none; color: var(--brand); }

/* 抽屉条目入场（打开时逐条浮现） */
.nav-drawer.is-open .nav-drawer__link,
.nav-drawer.is-open .nav-drawer__contact,
.nav-drawer.is-open .head-actions { animation: drawerIn 0.34s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.nav-drawer.is-open .nav-drawer__link:nth-of-type(1) { animation-delay: 0.02s; }
.nav-drawer.is-open .nav-drawer__link:nth-of-type(2) { animation-delay: 0.05s; }
.nav-drawer.is-open .nav-drawer__link:nth-of-type(3) { animation-delay: 0.08s; }
.nav-drawer.is-open .nav-drawer__link:nth-of-type(4) { animation-delay: 0.11s; }
.nav-drawer.is-open .nav-drawer__link:nth-of-type(5) { animation-delay: 0.14s; }
.nav-drawer.is-open .nav-drawer__contact { animation-delay: 0.17s; }
.nav-drawer.is-open .head-actions { animation-delay: 0.2s; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

/* ------------------------------ 底部快捷栏 ------------------------------ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 56;
  display: none; grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -20px rgba(16, 23, 40, 0.4);
  padding-bottom: var(--safe-b);
}
.mobile-bar__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: var(--bar-h); padding: 8px 4px;
  font-size: 11.5px; font-weight: 600; line-height: 1.2; color: var(--muted);
  transition: color 0.2s;
}
.mobile-bar__ico { width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center; }
.mobile-bar__item svg { width: 19px; height: 19px; }
.mobile-bar__item.is-active { color: var(--brand); }
.mobile-bar__item--cta { color: var(--brand); font-weight: 700; }
.mobile-bar__item--cta .mobile-bar__ico { background: var(--grad); color: #fff; box-shadow: 0 8px 18px -8px rgba(59, 130, 246, 0.7); }
/* 手机端自动显示（设备属性 + 媒体查询双通道） */
@media (max-width: 767px) { .mobile-bar { display: grid; } }
html[data-device="mobile"] .mobile-bar { display: grid; }
body.has-mobile-bar { padding-bottom: calc(var(--bar-h) + var(--safe-b)); }

/* 手机横屏时宽度会超过 767px，从而命中下方平板断点（那里把 --bar-h 置为 0），
   若此时仍显示底部快捷栏，栏体会盖住页面内容。横屏纵向空间本就紧张，
   故直接隐藏该栏，导航全部交由页头汉堡菜单完成——与 --bar-h: 0px 保持一致，
   也不会在页面底部留下空白占位。 */
@media (min-width: 768px) and (max-width: 1023px) {
  html[data-device="mobile"] .mobile-bar { display: none; }
}

/* 回到顶部 */
.to-top {
  position: fixed; right: calc(14px + var(--safe-r)); z-index: 55;
  bottom: calc(var(--bar-h) + var(--safe-b) + 12px);
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.96); border: 1px solid var(--line); color: var(--text-2);
  box-shadow: 0 12px 26px -16px rgba(16, 23, 40, 0.5);
  opacity: 0; transform: translateY(10px) scale(0.94); pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, color 0.2s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }
html[data-device="desktop"] .to-top { display: none; }

/* ------------------------------ 表格滑动提示 ------------------------------ */
.scroll-hint { display: none; align-items: center; gap: 7px; margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.scroll-hint svg { width: 15px; height: 15px; flex: none; color: var(--brand); }

/* ------------------------------ 通用间距类 ------------------------------ */
.mt-lg { margin-top: 52px; }
.mt-md { margin-top: 44px; }
.mt-sm { margin-top: 26px; }

/* ============================ 断点：≤ 1023px ============================ */
/* 平板与手机统一收起为抽屉导航（桌面完整导航在 1024px 以上保持） */
@media (max-width: 1023px) {
  .nav, .head-actions .btn { display: none; }
  .nav-burger { display: grid; }
  .head-actions { margin-left: auto; }
}

/* ======================== 断点：平板 768 – 1023px ======================== */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --nav-h: 66px; --bar-h: 0px; }

  .wrap, .wrap-narrow { padding-inline: calc(32px + var(--safe-l)) calc(32px + var(--safe-r)); }
  .section { padding: 84px 0; }
  .section--tight { padding: 60px 0; }
  .hero { padding: 88px 0 78px; }
  .hero__inner { gap: 30px; }
  .hero__visual img { height: 420px; }
  .hero__title { font-size: clamp(34px, 6vw, 48px); max-width: 16em; }
  .hero__lead { font-size: 16.5px; }
  .hero__meta { gap: 12px 26px; }
  .page-hero { padding: 66px 0 58px; }
  .page-hero__title { font-size: clamp(28px, 5vw, 38px); }
  .h-sec { font-size: clamp(26px, 3.6vw, 34px); }

  /* 双列栅格：平板比桌面窄，但两列比单列更能利用横向空间 */
  .grid { gap: 18px; }
  .grid--2, .grid--3, .grid--4, .grid--5, .grid--auto { grid-template-columns: repeat(2, 1fr); }
  .stat-grid, .metric-row { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .gain-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: repeat(2, 1fr); gap: 38px; }

  .card { padding: 26px 24px; }
  .stat { padding: 28px 24px; }
  .pyr-row { padding: 24px 26px; }
  .cta-band { padding: 48px 40px; }
  .tl-item { grid-template-columns: 104px 1fr; gap: 20px; }
  .numlist__item { grid-template-columns: 54px 1fr; gap: 22px; }
  .aside-card { padding: 28px 24px; }
  .auth-side { padding: 40px 40px 36px; }
  .auth-card { max-width: 440px; }

  /* 平板抽屉改为右侧面板，避免整屏留白 */
  .nav-drawer {
    inset: var(--nav-h) 0 0 auto;
    width: min(400px, 72vw);
    padding: 22px calc(26px + var(--safe-r)) 36px 26px;
    transform: translateX(18px);
    border-left: 1px solid var(--line);
    box-shadow: -34px 0 70px -34px rgba(16, 23, 40, 0.34);
  }
  .nav-drawer.is-open { transform: none; }
  .nav-drawer a { font-size: 16px; padding: 14px 4px; }

  /* 行业导航吸附在页头下方 */
  .sol-navbar { position: sticky; top: var(--nav-h); z-index: 30; margin-top: 30px; }
}

/* ============================ 断点：≤ 767px ============================ */
@media (max-width: 767px) {
  :root { --nav-h: 60px; --radius: 14px; --radius-l: 20px; }

  body { font-size: 15.5px; line-height: 1.72; }
  .wrap, .wrap-narrow { padding-inline: calc(18px + var(--safe-l)) calc(18px + var(--safe-r)); }
  .section { padding: 54px 0; }
  .section--tight { padding: 42px 0; }
  .mt-lg { margin-top: 32px; }
  .mt-md { margin-top: 30px; }
  .mt-sm { margin-top: 20px; }

  /* 页头 */
  .site-header .wrap { gap: 12px; padding-inline: calc(18px + var(--safe-l)) calc(18px + var(--safe-r)); }
  .brand { gap: 9px; }
  .brand__mark { height: 32px; }
  .brand__name { font-size: 15px; }
  .head-actions { gap: 8px; }
  .lang-toggle button { padding: 7px 12px; font-size: 12.5px; }
  .nav-burger { width: 44px; height: 44px; background: var(--paper-2); border-radius: 12px; }
  .site-header.is-dark .nav-burger { background: rgba(255, 255, 255, 0.12); }
  .user-chip { height: 36px; font-size: 13px; }

  /* 首屏 */
  .hero { padding: 50px 0 46px; }
  .hero__glow { filter: blur(58px); opacity: 0.42; }
  .hero__glow--c { display: none; }
  .hero__glow--a { width: 400px; height: 400px; top: -170px; right: -190px; }
  .hero__badge { font-size: 12px; padding: 6px 13px 6px 9px; line-height: 1.5; }
  .hero__title { font-size: clamp(27px, 8.6vw, 40px); margin-top: 20px; letter-spacing: -0.028em; }
  .hero__lead { margin-top: 18px; font-size: 15px; line-height: 1.8; }
  .hero__cta { margin-top: 26px; gap: 10px; }
  .hero__cta .btn { flex: 1 1 140px; }
  .hero__meta { margin-top: 30px; padding-top: 20px; gap: 10px 18px; }
  .hero__meta div { font-size: 12.5px; }
  .page-hero { padding: 42px 0 38px; }
  .page-hero__title { font-size: clamp(25px, 8vw, 34px); margin-top: 14px; }
  .page-hero__lead { margin-top: 16px; font-size: 14.5px; line-height: 1.85; }

  /* 版式 */
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; gap: 8px; }
  .eyebrow::before { width: 16px; }
  .sec-head.center .eyebrow { padding: 6px 13px; }
  .h-sec { font-size: 24.5px; margin-top: 14px; }
  .h-sub { font-size: 14.5px; margin-top: 12px; }
  .quote { font-size: 20px; line-height: 1.5; }

  /* 栅格 → 单列 */
  .grid, .grid--2, .grid--3, .grid--4, .grid--5, .grid--auto { grid-template-columns: 1fr; gap: 14px; }
  .stat-grid, .metric-row, .pain-grid, .gain-grid, .foot-top, .form-row { grid-template-columns: 1fr; }

  /* 卡片 */
  .card { padding: 22px 20px; }
  .card__ico { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 15px; }
  .card__ico svg { width: 20px; height: 20px; }
  .card__title { font-size: 17px; }
  .card__desc { font-size: 14px; }
  .stat { padding: 24px 20px; }
  .stat__num { font-size: 28px; }
  .sol-card__title { font-size: 19px; }
  .sol-card__metrics { gap: 18px; margin-top: 18px; padding-top: 16px; }
  .sol-card__metric b { font-size: 19px; }

  /* 按钮：加大触控热区（≥ 44px） */
  .btn { height: 48px; padding: 0 22px; font-size: 15px; }
  .btn--sm { height: 44px; }
  .link-btn { display: inline-block; padding: 6px 0; }

  /* 表单：16px 可避免 iOS 聚焦时自动放大页面 */
  .form { gap: 16px; }
  .input, .select, .textarea { font-size: 16px; padding: 12px 14px; }
  .textarea { min-height: 116px; }
  .field > label { font-size: 13px; }
  .check-line { font-size: 13px; }
  .upload { padding: 26px 18px; }

  /* 登录页：表单优先展示，避免先滚过大段品牌文案 */
  .auth-wrap { grid-template-columns: 1fr; min-height: 0; margin: 18px 14px 44px; }
  .auth-main { order: -1; padding: 30px 18px 36px; }
  .auth-card { padding: 26px 20px; border-radius: 20px; }
  .auth-title { font-size: 21px; }
  .auth-sub { margin-bottom: 20px; }
  .auth-side { padding: 40px 20px 44px; }
  .auth-side h2 { font-size: 23px; }
  .auth-side p { font-size: 14.5px; margin-top: 14px; }
  .auth-tabs { margin-bottom: 24px; }

  /* 会员中心 */
  .member-head { display: block; padding: 22px 20px; }
  .member-head__avatar { width: 52px; height: 52px; border-radius: 15px; font-size: 20px; margin-bottom: 14px; }
  .member-head h2 { font-size: 20px; }
  .tabs { margin-top: 26px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }
  .tabs button { white-space: nowrap; padding: 11px 14px; font-size: 14px; }
  .list-item { padding: 18px 0; }
  .list-item__main { min-width: 0; }
  .file-row { padding: 11px 13px; }

  /* 解决方案：行业导航横向滑动并吸附在页头下方。
     注意：吸附栏是通栏 <section> 的直接子元素，父级本身已占满整行，
     因此这里不能再加负外边距——那会把栏体推出视口右侧，制造 18px 的横向溢出
     （页面意外横向可滚动）。让左右内边距由滚动容器 .sol-nav 自己承担，
     行业胶囊同样能滑到屏幕边缘，且不会撑破页面。 */
  .sol-navbar {
    position: sticky; top: var(--nav-h); z-index: 30; margin-top: 28px;
    padding-block: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .sol-navbar .wrap { padding-inline: 0; }
  .sol-nav {
    flex-wrap: nowrap; overflow-x: auto; gap: 8px;
    padding-inline: calc(18px + var(--safe-l)) calc(18px + var(--safe-r));
    scroll-padding-inline: calc(18px + var(--safe-l)) calc(18px + var(--safe-r));
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .sol-nav::-webkit-scrollbar { display: none; }
  .sol-nav button { flex: none; scroll-snap-align: start; padding: 8px 14px; font-size: 13.5px; }

  .sol-hero { gap: 22px; }
  .sol-hero__title { font-size: 23px; }
  .sol-hero__desc { font-size: 15px; line-height: 1.85; margin-top: 16px; }
  .sol-aside { padding: 22px 20px; }
  .blk { margin-top: 34px; }
  .blk__head { gap: 10px; padding-bottom: 12px; }
  .blk__title { font-size: 17px; }
  .pain { padding: 18px 17px; }
  .gain { flex-direction: column; gap: 6px; padding: 18px; }
  .gain__b { min-width: 0; font-size: 16px; }
  .metric { padding: 18px; }
  .metric b { font-size: 24px; }
  .sol-foot { margin-top: 34px; padding-top: 24px; }
  .sol-foot .btn { flex: 1 1 auto; }

  /* 参数表：贴边滑动 + 提示 */
  .table-scroll { margin-inline: -18px; border-left: 0; border-right: 0; border-radius: 0; }
  .scroll-hint { display: flex; }
  .cmp th, .cmp td { padding: 12px 14px; font-size: 13.5px; }
  .cmp td:first-child { width: 34%; }

  /* 时间线 / 金字塔 / 编号列表 */
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .tl-year { font-size: 13.5px; }
  .tl-body h4 { font-size: 15.5px; }
  .tl-body p { font-size: 14px; }
  .pyr-row { padding: 20px 18px; gap: 14px; }
  .pyr-row__items { grid-template-columns: 1fr; gap: 12px; }
  .numlist__item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .numlist__t { font-size: 16.5px; }
  .numlist__d { font-size: 14px; }

  /* CTA / 页脚 */
  .cta-band { padding: 34px 22px; }
  .cta-band h3 { font-size: 22px; }
  .cta-band p { font-size: 14.5px; }
  .cta-band .btns { margin-top: 24px; }
  .cta-band .btns .btn { flex: 1 1 100%; }
  .site-footer { padding: 48px 0 26px; }
  .foot-top { gap: 30px; }
  .foot-brand p { font-size: 13.5px; margin-top: 16px; }
  .foot-col ul { margin-top: 16px; gap: 10px; }
  .foot-bottom { margin-top: 34px; padding-top: 20px; font-size: 12.5px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .foot-bottom .links { gap: 16px; }
  .loc-card__map { height: 168px; }

  /* Toast 上移，避免被底部快捷栏遮挡 */
  .toast-host { left: calc(14px + var(--safe-l)); right: calc(14px + var(--safe-r)); bottom: calc(var(--bar-h) + var(--safe-b) + 14px); }
  .toast { min-width: 0; max-width: none; width: 100%; }
}

/* ============================ 断点：≤ 399px ============================ */
@media (max-width: 399px) {
  .wrap, .wrap-narrow { padding-inline: calc(15px + var(--safe-l)) calc(15px + var(--safe-r)); }
  .hero__title { font-size: clamp(24px, 8.4vw, 32px); }
  .hero__lead { font-size: 14.5px; }
  .h-sec { font-size: 22px; }
  .h-sub { font-size: 14px; }
  .page-hero__title { font-size: 23px; }
  .btn { font-size: 14.5px; padding: 0 18px; }
  .card { padding: 20px 17px; }
  .brand__name { font-size: 14px; }
  .mobile-bar__item { font-size: 11px; }
  .mobile-bar__item svg { width: 18px; height: 18px; }
  .table-scroll { margin-inline: -15px; }
  /* 小屏下 .wrap 内边距降为 15px，横向滑动的行业导航同步收窄 */
  .sol-nav {
    padding-inline: calc(15px + var(--safe-l)) calc(15px + var(--safe-r));
    scroll-padding-inline: calc(15px + var(--safe-l)) calc(15px + var(--safe-r));
  }
  .stat__num { font-size: 25px; }
}

/* ================= 横屏矮屏（手机横放时压缩纵向留白） ================= */
@media (max-width: 1023px) and (orientation: landscape) and (max-height: 540px) {
  /* 横屏纵向空间紧张，页头同步收窄（覆盖平板层的 66px） */
  :root { --nav-h: 58px; }
  .hero { padding: 36px 0 32px; }
  .hero__title { font-size: clamp(23px, 4.6vw, 32px); }
  .hero__lead { font-size: 14.5px; }
  .hero__meta { display: none; }
  .page-hero { padding: 32px 0 28px; }
  .section { padding: 44px 0; }
  .nav-drawer { padding-top: 14px; }
  .nav-drawer a { padding: 11px 4px; font-size: 15.5px; }
}

/* ============================ 图文并茂配图 ============================ */
/* 子站（感动超算力）：深海蓝+金、直角边框，与 PPT 设计规范一致 */
.hpc-figure {
  margin: 26px 0 0;
  border: 1px solid rgba(212, 168, 83, 0.35);
  background: rgba(255, 255, 255, 0.03);
}
.hpc-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}
.hpc-figure figcaption {
  padding: 12px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244, 240, 228, 0.78);
  border-top: 1px solid rgba(212, 168, 83, 0.22);
  letter-spacing: 0.02em;
}
.hpc-nodes .hpc-figure { margin-top: 0; }

/* 主站（解决方案面板）：浅色圆角，与既有卡片语言一致 */
.sol-figure {
  margin: 26px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -28px rgba(16, 23, 40, 0.45);
}
.sol-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hpc-figure img, .sol-figure img { aspect-ratio: 16 / 10; }
}

/* ============================ 动效偏好适配 ============================ */@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   感动超算力（独立子站，supercomputing.html）
   设计规范（源自策划方案）：深海蓝 #0A1628 主色 + 金色 #D4A853 强调（占比 10-15%），
   直角边框无圆角，卡片底 #13233D，描边 #2A3A5C，亮白灰文字 #E8ECF4；
   动效克制（首屏淡入 + 滚动渐显 ≤ 0.8s），滚动渐显复用全站 .reveal。
   ========================================================================== */
:root {
  --hpc-navy: #0A1628;
  --hpc-card: #13233D;
  --hpc-line: #2A3A5C;
  --hpc-gold: #D4A853;
  --hpc-gold-2: #E8C57C;
  --hpc-paper: #E8ECF4;
}

.hpc-sec {
  background: var(--hpc-navy);
  color: var(--hpc-paper);
  padding: 88px 0;
}
.hpc-sec--panel { background: #081120; }
.hpc-sec .h-sub { color: rgba(232, 236, 244, 0.62); }
.hpc-sec .eyebrow { color: var(--hpc-gold); }
.hpc-mt { margin-top: 48px; }
.hpc-subtitle {
  margin: 56px 0 20px;
  font-size: 20px;
  color: var(--hpc-paper);
  padding-left: 14px;
  border-left: 3px solid var(--hpc-gold);
}

/* ---- Hero ---- */
.hpc-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 82% -10%, rgba(212, 168, 83, 0.14), transparent 62%),
    radial-gradient(700px 420px at 8% 110%, rgba(42, 58, 92, 0.55), transparent 60%),
    var(--hpc-navy);
  color: var(--hpc-paper);
  padding: 112px 0 84px;
}
/* 首屏背景图（后台可替换）：<img> 承载 + 常驻深蓝渐变遮罩保证文字可读 */
.hpc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hpc-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.60) 0%, rgba(10, 22, 40, 0.40) 45%, rgba(10, 22, 40, 0.88) 100%);
}
.hpc-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hpc-glow--a { width: 460px; height: 460px; left: -140px; top: -160px; background: rgba(212, 168, 83, 0.12); }
.hpc-glow--b { width: 520px; height: 520px; right: -180px; bottom: -220px; background: rgba(30, 58, 118, 0.5); }
.hpc-hero .wrap { position: relative; }
.hpc-tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--hpc-line);
  background: rgba(19, 35, 61, 0.72);
  color: var(--hpc-gold-2);
  font-size: 13.5px;
  letter-spacing: 0.06em;
}
.hpc-hero__title {
  margin: 26px 0 0;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.16;
  letter-spacing: 0.01em;
}
.hpc-gold {
  background: linear-gradient(100deg, var(--hpc-gold) 10%, var(--hpc-gold-2) 55%, var(--hpc-gold) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hpc-hero__lead {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 17.5px;
  color: rgba(232, 236, 244, 0.74);
}
.hpc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* 金色 / 描边按钮（直角） */
.hpc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.hpc-btn svg { width: 17px; height: 17px; }
.hpc-btn--gold {
  background: linear-gradient(120deg, var(--hpc-gold), var(--hpc-gold-2));
  color: #1A1305;
}
.hpc-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(212, 168, 83, 0.55); }
.hpc-btn--line { border-color: var(--hpc-line); color: var(--hpc-paper); background: rgba(19, 35, 61, 0.4); }
.hpc-btn--line:hover { border-color: var(--hpc-gold); color: var(--hpc-gold-2); }

/* ---- 核心数据 ---- */
.hpc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.hpc-stat {
  background: rgba(19, 35, 61, 0.82);
  border: 1px solid var(--hpc-line);
  border-top: 2px solid var(--hpc-gold);
  padding: 22px 20px 18px;
}
.hpc-stat__num {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--hpc-gold-2);
  font-variant-numeric: tabular-nums;
}
.hpc-stat__num small { font-size: 0.48em; margin-left: 3px; color: var(--hpc-gold); }
.hpc-stat__label { margin-top: 8px; font-size: 13.5px; color: rgba(232, 236, 244, 0.6); }

/* ---- 卡片（直角，金色悬停描边） ---- */
.hpc-sec .grid { gap: 18px; }
.hpc-card {
  background: var(--hpc-card);
  border: 1px solid var(--hpc-line);
  border-radius: 0;
  padding: 28px 26px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.hpc-card:hover { border-color: var(--hpc-gold); transform: translateY(-4px); }
.hpc-card__ico svg { width: 30px; height: 30px; color: var(--hpc-gold); }
.hpc-card__title { margin: 16px 0 8px; font-size: 18.5px; color: var(--hpc-paper); }
.hpc-card__desc { margin: 0; font-size: 14.8px; line-height: 1.8; color: rgba(232, 236, 244, 0.62); }

/* ---- 技术架构迷你卡 ---- */
.hpc-mini {
  background: rgba(19, 35, 61, 0.6);
  border: 1px solid var(--hpc-line);
  padding: 22px 20px;
}
.hpc-mini__ico svg { width: 26px; height: 26px; color: var(--hpc-gold); }
.hpc-mini h3 { margin: 12px 0 6px; font-size: 16.5px; color: var(--hpc-paper); }
.hpc-mini p { margin: 0; font-size: 13.8px; line-height: 1.75; color: rgba(232, 236, 244, 0.58); }

/* ---- 绿电专题 ---- */
.hpc-green {
  margin-top: 22px;
  border: 1px solid var(--hpc-line);
  border-left: 3px solid var(--hpc-gold);
  background: linear-gradient(120deg, rgba(212, 168, 83, 0.08), rgba(19, 35, 61, 0.85) 45%);
  padding: 30px 30px 26px;
}
.hpc-green__title { margin: 0; font-size: 21px; color: var(--hpc-paper); }
.hpc-green__desc { margin: 10px 0 0; max-width: 760px; font-size: 15px; color: rgba(232, 236, 244, 0.66); }
.hpc-green__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.hpc-green__item { border: 1px solid var(--hpc-line); background: rgba(10, 22, 40, 0.6); padding: 14px 16px; }
.hpc-green__item b { display: block; font-size: 15px; color: var(--hpc-gold-2); }
.hpc-green__item span { display: block; margin-top: 4px; font-size: 13px; color: rgba(232, 236, 244, 0.55); }
.hpc-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(212, 168, 83, 0.45);
  color: var(--hpc-gold-2);
  font-size: 13.5px;
}
.hpc-badge svg { width: 15px; height: 15px; }

/* ---- 区域布局 ---- */
.hpc-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.hpc-node {
  border: 1px solid var(--hpc-line);
  background: var(--hpc-card);
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
  min-height: 172px;           /* 给地标背景图留出可视高度 */
}
/* 城市地标背景图（后台可逐城替换；<img> 承载，无图时退化为纯色卡片） */
.hpc-node__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .6s ease;
}
/* 深蓝渐变遮罩：左下文字区可读，右上图面渐显 */
.hpc-node::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(202deg, rgba(10, 22, 40, 0.16) 0%, rgba(10, 22, 40, 0.44) 46%, rgba(8, 18, 34, 0.88) 100%);
}
.hpc-node > :not(.hpc-node__bg) { position: relative; z-index: 1; }
.hpc-node:hover .hpc-node__bg { transform: scale(1.06); }
.hpc-node__pin svg { width: 18px; height: 18px; color: var(--hpc-gold); filter: drop-shadow(0 1px 4px rgba(0,0,0,.5)); }
.hpc-node b { display: block; margin-top: 8px; font-size: 17px; color: var(--hpc-paper); text-shadow: 0 1px 6px rgba(0,0,0,.55); }
.hpc-node span { display: block; margin-top: 3px; font-size: 13.2px; color: rgba(238, 242, 248, 0.78); text-shadow: 0 1px 5px rgba(0,0,0,.6); }

/* ---- 服务能力 ---- */
.hpc-srv {
  border: 1px solid var(--hpc-line);
  background: rgba(19, 35, 61, 0.6);
  padding: 18px 18px 16px;
  border-top: 2px solid var(--hpc-gold);
}
.hpc-srv b { display: block; font-size: 15.5px; color: var(--hpc-paper); }
.hpc-srv span { display: block; margin-top: 4px; font-size: 13.2px; color: rgba(232, 236, 244, 0.55); }

/* ---- 信任与合规 ---- */
.hpc-trust {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 44px;
  align-items: center;
}
.hpc-checks { list-style: none; margin: 28px 0 0; padding: 0; }
.hpc-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(42, 58, 92, 0.55);
  font-size: 15.2px;
  color: rgba(232, 236, 244, 0.78);
}
.hpc-checks li:last-child { border-bottom: 0; }
.hpc-checks svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--hpc-gold); }
.hpc-trust__sla {
  text-align: center;
  border: 1px solid var(--hpc-line);
  border-top: 2px solid var(--hpc-gold);
  background: var(--hpc-card);
  padding: 40px 24px;
}
.hpc-trust__sla .hpc-stat__num { font-size: clamp(44px, 4.6vw, 62px); }
/* 右栏：立体安全底座图 + SLA 卡纵向堆叠（图限宽居中，紧凑不占空间） */
.hpc-trust__side { display: flex; flex-direction: column; gap: 22px; }
.hpc-figure--side { margin: 0 auto; max-width: 350px; width: 100%; }
.hpc-figure--side img { aspect-ratio: 1 / 1; }
.hpc-figure--side figcaption { font-size: 12.8px; text-align: center; }

/* ---- 底部 CTA ---- */
.hpc-cta {
  text-align: center;
  border: 1px solid var(--hpc-line);
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(212, 168, 83, 0.14), transparent 70%),
    var(--hpc-card);
  padding: 58px 28px;
}
.hpc-cta h2 { margin: 0; font-size: clamp(26px, 3.4vw, 38px); color: var(--hpc-paper); }
.hpc-cta p { margin: 14px auto 0; max-width: 620px; color: rgba(232, 236, 244, 0.62); }
.hpc-cta .hpc-btn { margin-top: 28px; }

/* ---- 响应式：平板 768–1023 ---- */
@media (max-width: 1023px) {
  .hpc-sec { padding: 64px 0; }
  .hpc-hero { padding: 84px 0 64px; }
  .hpc-stats { grid-template-columns: repeat(2, 1fr); }
  .hpc-green__grid { grid-template-columns: repeat(2, 1fr); }
  .hpc-nodes { grid-template-columns: repeat(2, 1fr); }
  .hpc-trust { grid-template-columns: 1fr; gap: 28px; }
  .hpc-trust__sla { max-width: 420px; margin: 0 auto; }
  .hpc-figure--side img { aspect-ratio: 16 / 9; }
}

/* ---- 响应式：手机 ≤767 ---- */
@media (max-width: 767px) {
  .hpc-sec { padding: 52px 0; }
  .hpc-hero { padding: 64px 0 52px; }
  .hpc-hero__lead { font-size: 15.5px; }
  .hpc-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 40px; }
  .hpc-stat { padding: 16px 14px 13px; }
  .hpc-green__grid { grid-template-columns: 1fr; }
  .hpc-nodes { grid-template-columns: repeat(2, 1fr); }
  .hpc-green { padding: 22px 18px 20px; }
  .hpc-cta { padding: 44px 20px; }
}

/* ---- 响应式：小屏 ≤399 ---- */
@media (max-width: 399px) {
  .hpc-stats { grid-template-columns: 1fr 1fr; }
  .hpc-stat__num { font-size: 24px; }
  .hpc-hero__cta .hpc-btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   演示版管理后台（admin.html）
   沿用全站浅色卡片语言，仅补充后台专属的看板卡片、工具条与行内操作按钮
   ========================================================================== */
.adm-gate { max-width: 520px; margin: 0 auto; }
.adm-gate__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px 34px 34px;
  box-shadow: var(--shadow-s);
}
.adm-gate__ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line);
}
.adm-gate__ico svg { width: 26px; height: 26px; color: var(--brand); }
.adm-gate__t { margin: 20px 0 0; font-size: 26px; }
.adm-gate__d { margin: 12px 0 26px; font-size: 14.5px; line-height: 1.85; color: var(--muted); }
.adm-hint { margin: 22px 0 0; font-size: 12.8px; line-height: 1.95; color: var(--muted); }
.adm-hint b { color: var(--text); }
.adm-hint code {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 6px; font-size: 12.2px;
}
.adm-back { margin: 26px 0 0; text-align: center; font-size: 14px; }
.adm-back a { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.adm-back svg { width: 15px; height: 15px; transform: rotate(180deg); }

.adm-head { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; }
.adm-head__txt { max-width: 720px; }
.adm-head__t { margin: 14px 0 0; font-size: clamp(26px, 3.2vw, 36px); }
.adm-head__d { margin: 12px 0 0; font-size: 14.5px; line-height: 1.8; color: var(--muted); }
.adm-head__d code {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 6px; font-size: 12.6px;
}
.adm-tools { display: flex; flex-wrap: wrap; gap: 10px; }
.adm-tools .btn svg { width: 16px; height: 16px; }

.adm-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 30px; }
.adm-stat {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 18px;
}
.adm-stat__n {
  font-size: 30px; font-weight: 750; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; color: var(--text);
}
.adm-stat__l { margin-top: 6px; font-size: 12.8px; color: var(--muted); }

.adm-tab__n {
  display: inline-block; margin-left: 7px; padding: 1px 7px; border-radius: 999px;
  background: var(--paper-3); color: var(--text-2);
  font-size: 11.5px; font-style: normal; font-weight: 650;
}
.tabs button.is-on .adm-tab__n { background: rgba(14, 154, 174, 0.12); color: var(--brand); }

.adm-act { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.adm-act__btn {
  height: 34px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--text-2);
  font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.adm-act__btn:hover { border-color: var(--brand); color: var(--brand); }
.adm-act__btn--danger { color: #B42318; }
.adm-act__btn--danger:hover { border-color: #B42318; color: #B42318; background: #FEF3F2; }

/* 商务合作：会员提交提示条（草稿自动暂存 / 已登录提示） */
.lead-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border-radius: var(--radius); padding: 13px 16px; margin-bottom: 18px;
  font-size: 13.5px; line-height: 1.65; border: 1px solid var(--line);
}
.lead-bar svg { width: 18px; height: 18px; flex: none; }
.lead-bar > span { flex: 1; min-width: 220px; }
.lead-bar.is-warn { background: #FFF8E6; border-color: #F0C36D; color: #7A5200; }
.lead-bar.is-ok { background: #EEFAF6; border-color: #BFE3D9; color: #10695A; }
.lead-bar .btn { flex: none; }
.adm-del {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: #B42318; font-size: 13.5px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px;
}
.adm-del:hover { color: #7A1A12; }

.adm-empty__act { margin-top: 20px; }
.adm-foot {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

/* ---- 内容编辑 / 方案文件（admin 扩展） ---- */
.adm-warn {
  padding: 14px 18px; border: 1px solid #E8C27A; border-radius: 12px;
  background: rgba(232, 194, 122, .12); color: var(--text);
  font-size: 13.5px; line-height: 1.8; margin: 0 0 22px;
}
.adm-warn b { color: inherit; }
/* 分区标题（主站 / 行业方案 / 超算力子站） */
.adm-cdiv {
  margin: 40px 0 2px; padding-bottom: 10px; border-bottom: 2px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
  font-size: 14px; font-weight: 800; letter-spacing: .02em; color: var(--text);
}
.adm-cdiv span { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.adm-cgroup {
  border: 1px solid var(--line); border-radius: 14px; background: var(--card, #fff);
  padding: 16px 22px 18px; margin-top: 14px;
}
.adm-cgroup > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; font-weight: 700; font-size: 15px; padding: 4px 0;
}
.adm-cgroup > summary::-webkit-details-marker { display: none; }
.adm-cgroup > summary::marker { content: ''; }
.adm-cgroup__arw {
  flex: 0 0 auto; width: 8px; height: 8px; margin-right: 4px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .18s ease;
}
.adm-cgroup[open] > summary .adm-cgroup__arw { transform: rotate(-135deg); }
.adm-cgroup__n { font-size: 12px; color: var(--muted); margin: 2px 0 12px; }
.adm-cgroup__body > .adm-cfield:first-of-type,
.adm-cgroup__body > .adm-cgroup__n + .adm-cfield { border-top: 0; padding-top: 6px; }
.adm-cfield__row--1 { grid-template-columns: 1fr; }
.adm-cfield { padding: 14px 0 4px; border-top: 1px dashed var(--line); }
.adm-cfield:first-of-type { border-top: 0; }
.adm-cfield__l { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.adm-cfield__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.adm-cfield__row label { font-size: 12px; color: var(--muted); display: block; }
.adm-cfield textarea, .adm-cfield input[type="text"] {
  width: 100%; margin-top: 5px; padding: 9px 11px; font: inherit; font-size: 13.5px;
  border: 1px solid var(--line); border-radius: 9px; background: var(--bg, #fafafa); color: var(--text);
  resize: vertical; min-height: 0;
}
.adm-cfield textarea { min-height: 64px; line-height: 1.7; }
.adm-imgrow { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; }
.adm-img {
  width: 148px; height: 84px; object-fit: cover; border-radius: 9px;
  border: 1px solid var(--line); background: var(--bg, #fafafa); flex: 0 0 auto;
}
.adm-img__hint { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.7; }
.adm-file { font: inherit; font-size: 13px; max-width: 100%; }
.adm-cbar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin: 26px 0 4px; padding-top: 18px; border-top: 1px solid var(--line);
}
.adm-cbar__hint { font-size: 12.5px; color: var(--muted); }
.adm-json { margin-top: 18px; }
.adm-json summary { cursor: pointer; font-size: 13px; color: var(--muted); }
.adm-json textarea {
  width: 100%; margin-top: 10px; min-height: 140px; padding: 10px 12px;
  font-family: Consolas, monospace; font-size: 12.5px; line-height: 1.6;
  border: 1px solid var(--line); border-radius: 9px; background: var(--bg, #fafafa); color: var(--text);
  resize: vertical;
}
.adm-up {
  display: grid; grid-template-columns: minmax(160px, 240px) 1fr auto; gap: 10px;
  align-items: center; padding: 16px; border: 1px dashed var(--line); border-radius: 12px; margin-bottom: 8px;
}
.adm-up .input { margin: 0; }
.adm-dl { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }

@media (max-width: 1023px) {
  .adm-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .adm-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .adm-stat { padding: 16px 14px; }
  .adm-stat__n { font-size: 24px; }
  .adm-tools { width: 100%; }
  .adm-tools .btn { flex: 1 1 calc(50% - 5px); }
  .adm-act { width: 100%; justify-content: flex-start; }
  .adm-gate__card { padding: 30px 22px 26px; }
  .adm-foot { font-size: 12.5px; }
  .adm-cfield__row { grid-template-columns: 1fr; }
  .adm-up { grid-template-columns: 1fr; }
  .adm-cgroup { padding: 16px 14px 18px; }
}

/* ==================== 社区二维码（前台联系页区块） ====================
   数据来自 site-config.js 的 contact.qr.items，后台可传多张；
   未上传任何二维码时 pages.js 不渲染本区块。每行三个。 */
.qr-block {
  border: 1px solid var(--line); border-radius: var(--radius-l);
  background: var(--paper-2); padding: 38px 34px;
}
.qr-block__head { max-width: 620px; }
.qr-grid {
  margin-top: 30px; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.qr-item { margin: 0; display: flex; flex-direction: column; align-items: center; }
.qr-item__box {
  width: 100%; display: flex; align-items: center; justify-content: center;
  padding: 14px; background: var(--bg, #fff);
  border: 1px solid var(--line); border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.qr-item__box:hover {
  transform: translateY(-3px); border-color: var(--brand);
  box-shadow: 0 16px 34px rgba(12, 19, 36, .1);
}
.qr-item__box img {
  width: 100%; max-width: 148px; aspect-ratio: 1 / 1; height: auto;
  display: block; border-radius: 8px; object-fit: contain;
}
.qr-item__cap {
  margin-top: 12px; font-size: 13.5px; font-weight: 600;
  color: var(--text-2); text-align: center;
}

@media (max-width: 900px) {
  .qr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 560px) {
  .qr-block { padding: 26px 20px; }
  .qr-grid { gap: 12px; }
  .qr-item__box { padding: 10px; border-radius: 13px; }
  .qr-item__cap { font-size: 12.5px; }
}

/* ==================== 社区二维码管理器（后台） ==================== */
.adm-qrzone {
  margin: 20px 0 4px; padding: 20px 20px 22px;
  border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--paper-2);
}
.adm-qrzone__t { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; }
.adm-qrzone__n {
  font-style: normal; font-size: 12px; font-weight: 600; color: var(--brand);
  background: rgba(34, 211, 197, .12); border-radius: 999px; padding: 2px 9px;
}
.adm-qrgrid {
  margin-top: 16px; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
}
.adm-qr {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg, #fff);
}
.adm-qr__img {
  width: 100%; max-width: 116px; aspect-ratio: 1 / 1; object-fit: contain; align-self: center;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.adm-qr input[type="text"] {
  width: 100%; padding: 7px 9px; font: inherit; font-size: 12.5px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg, #fafafa); color: var(--text);
}
.adm-qr .btn { align-self: flex-start; }
.adm-qrbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }
.adm-img--square { width: 96px; height: 96px; }

@media (max-width: 900px) {
  .adm-qrgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}



/* ==================== 产品中心 / 详情订购弹层 ==================== */
.prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.prod-card { background: var(--bg, #fff); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(7, 11, 22, .12); }
.prod-card__media { aspect-ratio: 1 / 1; background: linear-gradient(135deg, #0C1324, #1b2a4a); position: relative; }
.prod-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 12px; box-sizing: border-box; }
.prod-card__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .5); }
.prod-card__ph svg { width: 52px; height: 52px; }
.prod-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-card__t { font-size: 17px; line-height: 1.4; }
.prod-card__sum { font-size: 13.5px; color: var(--muted, #5b6478); flex: 1; }
.prod-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.prod-card__price { color: var(--brand, #0E9AAE); font-size: 15.5px; white-space: nowrap; }

.pm { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 18px; overflow-y: auto; }
.pm__backdrop { position: fixed; inset: 0; background: rgba(7, 11, 22, .62); backdrop-filter: blur(3px); }
.pm__card { position: relative; z-index: 1; width: min(1060px, 100%); background: var(--bg, #fff);
  border-radius: 18px; box-shadow: 0 30px 80px rgba(7, 11, 22, .35); overflow: hidden; }
.pm__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .92); color: var(--text, #171d2c);
  display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pm__close svg { width: 18px; height: 18px; }
.pm__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.pm__media { position: relative; background: linear-gradient(135deg, #0C1324, #1b2a4a); padding: 18px; display: flex;
  flex-direction: column; gap: 12px; }
.pm__mainimg { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; }
.pm__mainimg img { width: 100%; height: 100%; object-fit: contain; transition: opacity .18s ease; }
/* 弹窗内复用的产品卡占位符（.prod-card__ph 为 absolute inset:0）：
   不加此覆盖它会以整张 .pm__card 为定位祖先铺满全卡，
   形成一层透明拦截层吃掉鼠标滚轮/点击 —— 产品详情介绍因此无法上下滚动。 */
.pm__mainimg .prod-card__ph { position: static; flex: 1; }
/* 缩略图：加大高度、contain 完整展示产品不裁剪，白底衬托深色背景 */
.pm__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.pm__thumbs button { height: 84px; border-radius: 10px; overflow: hidden; padding: 6px; cursor: pointer;
  border: 2px solid transparent; background: #F4F6FA; opacity: .82;
  transition: opacity .15s ease, transform .15s ease, border-color .15s ease; }
.pm__thumbs button:hover { opacity: 1; transform: translateY(-2px); }
.pm__thumbs button.is-on { border-color: var(--brand-3, #22D3C5); opacity: 1; }
.pm__thumbs img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pm__video { width: 100%; border-radius: 12px; background: #000; aspect-ratio: 16 / 9; }
.pm__info { padding: 26px 26px 30px; max-height: 88vh; overflow-y: auto; overscroll-behavior: contain; }
.pm__t { font-size: 22px; margin: 10px 0 4px; }
.pm__price { color: var(--brand, #0E9AAE); font-weight: 750; font-size: 17px; }
.pm__sum { font-size: 13.5px; color: var(--muted, #5b6478); margin-top: 6px; }
.pm__sec { margin-top: 18px; }
.pm__sec h3 { font-size: 15px; margin-bottom: 10px; }
.pm__params th { width: 38%; text-align: left; color: var(--muted, #5b6478); font-weight: 500; }
.pm__params th, .pm__params td { padding: 7px 10px; border-bottom: 1px solid var(--line); font-size: 13px; }
/* 会员分级价格 / 美元自动换算 / 参数折叠 */
.prod-usd { font-style: normal; font-weight: 500; font-size: 12.5px; color: var(--muted, #5b6478); margin-left: 6px; white-space: nowrap; }
.prod-card__usd { font-weight: 500; font-size: 12px; }
.prod-card__price { white-space: normal; }
.pm__priceusd { display: inline-block; margin-left: 10px; font-weight: 500; font-size: 13px; color: var(--muted, #5b6478); }
.pm__morebtn { margin-top: 8px; }
.pm__partner { border: 1px dashed rgba(14, 154, 174, .45); border-radius: 12px; padding: 12px 14px; background: rgba(14, 154, 174, .05); }
.pm__partner--locked { background: rgba(14, 154, 174, .03); }
.pm__partner h3 { display: flex; align-items: center; gap: 8px; }
.pm__partner__tag { font-size: 11.5px; font-weight: 650; color: var(--brand, #0E9AAE); border: 1px solid currentColor; border-radius: 999px; padding: 1px 8px; }
.pm__partner__note { font-size: 12.5px; color: var(--muted, #5b6478); margin: 8px 0 0; }
.pm__sec p { font-size: 13.5px; line-height: 1.8; color: var(--text, #171d2c); margin-bottom: 8px; }
.pay-opts { display: flex; flex-direction: column; gap: 8px; }
.pay-opt { display: flex; gap: 10px; align-items: flex-start; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; cursor: pointer; }
.pay-opt:has(input:checked) { border-color: var(--brand, #0E9AAE); box-shadow: 0 0 0 1px var(--brand, #0E9AAE) inset; }
.pay-opt input { margin-top: 3px; }
.pay-opt__b { display: flex; flex-direction: column; gap: 3px; font-size: 13.5px; }
.pay-opt__lines { display: flex; flex-direction: column; font-size: 12.5px; color: var(--muted, #5b6478); }
.pay-opt__note { font-size: 12.5px; color: var(--muted, #5b6478); }
.pm__form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; margin-top: 12px; }
.pm__done { text-align: center; padding: 26px 8px; }
.pm__done svg { width: 40px; height: 40px; color: var(--brand, #0E9AAE); }
.pm__done h3 { margin: 10px 0 8px; }

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .pm { padding: 2vh 10px; }
  .pm__grid { grid-template-columns: 1fr; }
  .pm__info { max-height: none; padding: 20px 16px 24px; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
  .pm__form { grid-template-columns: 1fr; }
}

/* ==================== 后台：验证码 / 缩略图 ==================== */
.adm-cap { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.adm-cap canvas { border-radius: 8px; border: 1px solid var(--line); }
.adm-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.adm-thumb { position: relative; width: 86px; height: 64px; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); }
.adm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adm-thumb__cover { position: absolute; left: 0; bottom: 0; right: 0; background: rgba(14, 154, 174, .92);
  color: #fff; font-size: 10.5px; font-style: normal; text-align: center; padding: 1px 0; }
.adm-thumb button { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%;
  border: none; background: rgba(7, 11, 22, .72); color: #fff; font-size: 12px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; }

/* ==================== 后台：物流平台 / 订单物流单号 ==================== */
.adm-logi-row { display: grid; grid-template-columns: 220px minmax(0, 1fr) auto; gap: 8px 12px;
  align-items: end; padding: 12px 0; border-bottom: 1px dashed var(--line, #e3e7f0); }
.adm-logi-row label { display: flex; flex-direction: column; gap: 5px; font-size: 12.5px; }
.adm-logi-row code { background: rgba(14, 154, 174, .1); padding: 0 4px; border-radius: 4px; }
.adm-logi { border: 1px solid var(--brand, #0E9AAE); background: rgba(14, 154, 174, .06);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; }
.adm-logi__t { font-weight: 700; font-size: 13.5px; margin-bottom: 10px; }
.adm-logi__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 14px; }
.adm-logi__grid label { display: flex; flex-direction: column; gap: 5px; font-size: 12.5px; }
.adm-logi__inv { margin-top: 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--muted, #5b6478); }
.adm-logi__inv input[type="file"] { max-width: 320px; font-size: 12px; }
.list-item__link { display: inline-flex; align-items: center; gap: 3px; margin-left: 8px;
  color: var(--brand, #0E9AAE); font-weight: 650; }
.list-item__link svg { width: 13px; height: 13px; }
@media (max-width: 760px) {
  .adm-logi-row { grid-template-columns: 1fr; }
  .adm-logi__grid { grid-template-columns: 1fr; }
}

/* ==================== 会员登录验证码 / 邮箱验证页 ==================== */
.cap-row { display: flex; align-items: center; gap: 10px; }
.cap-row__input { flex: 1; min-width: 0; max-width: 180px; }
.cap-row canvas { border-radius: 8px; cursor: pointer; flex: none; }
.cap-row__ref { flex: none; font-size: 12.5px; }
#unverifiedBox { padding: 12px 14px; margin-top: 4px; }
@media (max-width: 480px) {
  .cap-row { flex-wrap: wrap; }
}


/* ==================== 感动招聘子站（jobs.html） ==================== */
.jb-mt { margin-top: 34px; }
.jb-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark);
  padding: calc(var(--nav-h) + 84px) 0 96px; }
.jb-hero__bg { position: absolute; inset: 0;
  background: url('../images/recruit/sz-bay-aerial.jpg') center / cover no-repeat; opacity: .55; }
.jb-hero__bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,22,.55) 0%, rgba(7,11,22,.25) 45%, var(--ink) 100%); }
.jb-hero__inner { position: relative; z-index: 1; }
.jb-hero__title { margin: 14px 0 12px; font-size: clamp(34px, 5.4vw, 62px); font-weight: 800; letter-spacing: .5px; }
.jb-hero__lead { margin: 0 0 26px; font-size: clamp(15px, 1.8vw, 19px); color: var(--on-dark-2); }
.jb-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-s); }
.jb-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-2); }
.jb-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.jb-card:hover .jb-card__img img { transform: scale(1.05); }
.jb-card h3 { margin: 16px 18px 8px; font-size: 18px; font-weight: 750; color: var(--text); }
.jb-card p { margin: 0 18px 18px; font-size: 13.5px; line-height: 1.75; color: var(--text-2); }
/* 深圳精神 · 照片海报墙 */
.jb-posters { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.jb-card--photo { position: relative; display: flex; align-items: flex-end; border: none; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); color: #fff; box-shadow: var(--shadow-l); aspect-ratio: 2 / 1; }
.jb-card--photo.jb-card--wide { grid-column: 1 / -1; aspect-ratio: 5 / 2; }
.jb-card--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.jb-card--photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,22,0) 42%, rgba(10,14,22,.55) 74%, rgba(10,14,22,.9) 100%); pointer-events: none; }
.jb-card--photo:hover > img { transform: scale(1.06); }
.jb-card--photo .jb-card__body { position: relative; z-index: 1; padding: 22px 22px 24px; }
.jb-card--photo .jb-card__tag { display: inline-block; margin-bottom: 10px; padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: .18em; color: #ffd9a0; border: 1px solid rgba(255,217,160,.55); border-radius: 999px; background: rgba(20,16,8,.35); backdrop-filter: blur(4px); }
.jb-card--photo h3 { margin: 0 0 8px; font-size: 21px; font-weight: 780; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.jb-card--photo p { margin: 0; font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.86); }
@media (max-width: 760px) { .jb-posters { grid-template-columns: 1fr; } .jb-card--photo { aspect-ratio: 16 / 10; } .jb-card--photo h3 { font-size: 18px; } }
.jb-marks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.jb-mark { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--ink-2); min-height: 300px; }
.jb-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.jb-mark:hover img { transform: scale(1.05); }
.jb-mark figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 40px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(7,11,22,.88)); color: #fff; }
.jb-mark figcaption b { display: block; font-size: 15.5px; margin-bottom: 4px; }
.jb-mark figcaption span { font-size: 12px; color: rgba(255,255,255,.72); line-height: 1.6; display: block; }
.jb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.jb-stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; box-shadow: var(--shadow-s); }
.jb-stat__n { font-size: 30px; font-weight: 800; color: var(--brand); line-height: 1.1; }
.jb-stat__n small { font-size: 14px; font-weight: 700; margin-left: 3px; }
.jb-stat > span { display: block; margin-top: 8px; font-size: 12.5px; line-height: 1.65; color: var(--text-2); }
.jb-note { margin: 22px auto 0; max-width: 880px; font-size: 13px; line-height: 1.9; color: var(--muted); text-align: center; }
.jb-why { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-s); }
.jb-why h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 750; color: var(--text); }
.jb-why p { margin: 0; font-size: 13px; color: var(--text-2); line-height: 1.7; }
.jb-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.jb-tab { border: 1px solid var(--line); background: var(--paper); color: var(--text-2); border-radius: 999px;
  padding: 9px 20px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s; }
.jb-tab.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ================= 后台「管理员权限」页（多管理员 / 授权） ================= */
.adm-me { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 7px 14px;
  font-size: 13px; font-weight: 650; color: var(--brand); background: rgba(14,154,174,.09);
  border: 1px solid rgba(14,154,174,.28); border-radius: 999px; }
.adm-me svg { width: 15px; height: 15px; }
.adm-card { margin-top: 22px; padding: 22px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-s); }
.adm-card--edit { border-color: rgba(14,154,174,.42); box-shadow: 0 10px 30px rgba(14,154,174,.12); }
.adm-card__t { font-size: 16.5px; font-weight: 750; color: var(--text); }
.adm-card__d { margin: 10px 0 0; font-size: 13.2px; line-height: 1.85; color: var(--muted); }
.adm-card__acts { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.adm-card__acts .adm-hint { margin: 0; }
.adm-card .adm-hint { margin: 0; font-size: 12.8px; }
.adm-grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; margin-top: 18px; }
.adm-switch { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 13.2px;
  color: var(--text-2); cursor: pointer; }
.adm-switch input { width: 16px; height: 16px; accent-color: var(--brand); }
.adm-perm__h { margin: 22px 0 10px; font-size: 13.5px; font-weight: 700; color: var(--text); }
.adm-perm { display: grid; gap: 14px; }
.adm-perm__g { padding: 13px 15px; background: var(--paper-3); border-radius: 12px; }
.adm-perm__t { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--muted); }
.adm-perm__l { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 10px; }
.adm-perm__it { display: inline-flex; align-items: center; gap: 7px; font-size: 13.2px; color: var(--text-2); cursor: pointer; }
.adm-perm__it input { width: 15px; height: 15px; accent-color: var(--brand); }
.adm-perm__it input:disabled { cursor: not-allowed; }
.adm-perm__none { font-size: 13px; color: var(--muted); }
.adm-tag { display: inline-block; padding: 2px 9px; font-size: 11.5px; font-style: normal; font-weight: 650;
  color: var(--brand); background: rgba(14,154,174,.1); border-radius: 999px; vertical-align: middle; }
.adm-tag--owner { color: #9A6410; background: #FFF6E8; }
.adm-tag--off { color: #A3231F; background: #FDECEC; }
.adm-admin { align-items: flex-start; }
.adm-admin.is-off { opacity: .68; }
.adm-admin__meta { margin-top: 5px; font-size: 12.8px; line-height: 1.7; color: var(--muted); word-break: break-all; }
.adm-admin__meta b { color: var(--text-2); }
.adm-log { padding: 10px 2px; font-size: 12.8px; line-height: 1.75; color: var(--text-2);
  border-top: 1px dashed var(--line); }
.adm-log:first-child { border-top: none; }
.adm-log__t { display: inline-block; min-width: 132px; color: var(--muted); }
.adm-log__d { margin-left: 10px; color: var(--muted); }
@media (max-width: 760px) {
  .adm-grid2 { grid-template-columns: 1fr; }
  .adm-card { padding: 18px 16px; }
  .adm-log__t { display: block; min-width: 0; }
  .adm-log__d { margin-left: 0; display: block; }
}
.jb-list { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1160px; margin-left: auto; margin-right: auto; align-items: stretch; }
.jb-job { display: flex; align-items: center; gap: 18px; justify-content: space-between;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-s); transition: box-shadow .2s, transform .2s; }
.jb-job:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.jb-job__main h3 { margin: 0 0 6px; font-size: 17px; font-weight: 750; color: var(--text); }
.jb-job__meta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.jb-job__meta svg { width: 13px; height: 13px; }
.jb-job__meta span { opacity: .5; }
.jb-job__main p { margin: 8px 0 0; font-size: 13px; color: var(--text-2); line-height: 1.7; }
.jb-loading { text-align: center; padding: 40px 0; color: var(--muted); font-size: 13.5px; }
.jb-loginbox { max-width: 560px; margin: 0 auto; text-align: center; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-l); padding: 44px 30px; box-shadow: var(--shadow-s); }
.jb-loginbox svg { width: 34px; height: 34px; color: var(--brand); }
.jb-loginbox p { margin: 12px 0 18px; font-size: 14px; color: var(--text-2); line-height: 1.8; }
.jb-form { max-width: 780px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 30px 30px 26px; box-shadow: var(--shadow); text-align: left; }
.jb-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 4px; }
.jb-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.jb-form label + label { margin-top: 12px; }
.jb-form .jb-form__grid + label { margin-top: 12px; }
.jb-up { border: 1px dashed var(--line); border-radius: var(--radius-s); padding: 14px 16px; }
.jb-up b { display: block; font-size: 13px; color: var(--text); margin-bottom: 10px; }
.jb-up__btn { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; font-size: 12.5px; font-weight: 600; color: var(--text-2); transition: all .2s; }
.jb-up__btn:hover { border-color: var(--brand); color: var(--brand); }
.jb-up__btn svg { width: 14px; height: 14px; }
.jb-up__name { display: block; margin-top: 8px; font-size: 12px; color: var(--muted); word-break: break-all; }
.jb-form__hint { margin: 14px 0 0; font-size: 12px; color: var(--muted); line-height: 1.7; }
.jb-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 34px; }
.jb-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 18px 14px; text-align: center; }
.jb-step b { display: inline-flex; width: 30px; height: 30px; border-radius: 50%; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; font-size: 14px; margin-bottom: 10px; }
.jb-step strong { display: block; font-size: 13.5px; color: var(--text); margin-bottom: 4px; }
.jb-step span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .jb-marks { grid-template-columns: repeat(2, 1fr); }
  .jb-stats { grid-template-columns: repeat(2, 1fr); }
  .jb-steps { grid-template-columns: repeat(3, 1fr); }
  .jb-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .jb-marks { grid-template-columns: 1fr; }
  .jb-mark { min-height: 220px; }
  .jb-steps { grid-template-columns: repeat(2, 1fr); }
  .jb-form { padding: 22px 18px; }
  .jb-form__grid { grid-template-columns: 1fr; }
  .jb-job { flex-direction: column; align-items: flex-start; }
}

/* ================= 法律文档页（用户服务协议 / 隐私政策） ================= */
.legal { max-width: 860px; margin: 0 auto; padding: 56px 24px 90px; }
.legal__head { text-align: center; margin-bottom: 34px; }
.legal__head h1 { margin: 12px 0 0; font-size: clamp(26px, 4vw, 38px); letter-spacing: .01em; }
.legal__meta { margin: 14px 0 0; font-size: 13.5px; color: var(--text-3); }
.legal__intro { margin: 18px auto 0; max-width: 66ch; font-size: 15.5px; line-height: 1.95; color: var(--text-2);
  padding: 16px 20px; border-left: 3px solid var(--brand); background: var(--paper-2); border-radius: 0 var(--radius) var(--radius) 0; }
.legal__sec { margin-top: 30px; padding: 22px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); }
.legal__sec h2 { margin: 0; font-size: 18px; color: var(--text); }
.legal__sec p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.9; color: var(--text-2); }
.legal__sec ul { margin: 10px 0 0; padding-left: 22px; }
.legal__sec li { margin-top: 8px; font-size: 14.5px; line-height: 1.85; color: var(--text-2); }
.legal__cta { margin-top: 44px; text-align: center; padding: 30px 24px; background: var(--paper-2); border-radius: var(--radius-l); border: 1px dashed var(--line); }
.legal__ask { margin: 0; font-size: 16.5px; font-weight: 600; color: var(--text); }
.legal__btns { margin-top: 18px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.legal__btns .btn { min-width: 168px; }
.legal__tip { margin: 16px auto 0; max-width: 58ch; font-size: 12.5px; line-height: 1.8; color: var(--text-3); }
/* 注册表单中的协议同意行 */
.auth-agree { margin: 14px 0 0; font-size: 12.5px; line-height: 1.7; color: var(--text-3); display: flex; align-items: flex-start; gap: 7px; text-align: left; }
.auth-agree input[type="checkbox"] { margin-top: 2px; accent-color: var(--brand); flex: none; }
.auth-agree a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 560px) {
  .legal { padding: 36px 16px 70px; }
  .legal__sec { padding: 18px 16px; }
  .legal__btns .btn { min-width: 0; flex: 1 1 150px; }
}
