@charset "UTF-8";
/* ==========================================================================
   重庆天帚生态环境科技有限公司 | 帮哥二手回收
   全站样式表 style.css  v5.0
   设计语言：复用「爱回收 aihuishou.com」PC 官网视觉系统
             （40px 胶囊按钮 · 20/32px 大圆角卡片 · 主色高亮双线 ·
               极轻阴影 + 主色柔光 · 阿里巴巴普惠体 · 数据卡片）
   主题色：按需求适配 LOGO —— 蓝 #008ad2 / 绿 #00a546
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 设计令牌
   -------------------------------------------------------------------------- */
:root {
  /* 品牌色（LOGO 直取）—— 对应爱回收的 --theme 机制 */
  --c-primary:    #008ad2;   /* 天帚蓝 · 主色 */
  --c-primary-dk: #0067a0;
  --c-primary-lt: #3aa8e0;
  --c-eco:        #00a546;   /* 生态绿 · 辅色 */
  --c-eco-dk:     #007d35;

  /* 中性（爱回收体系：正文偏墨、浅灰分区 #fafafa、浅灰描边 #e1e1e1） */
  --c-bg:        #ffffff;
  --c-bg-soft:   #fafafa;
  --c-bg-tint:   #f5f8fb;
  --c-surface:   #ffffff;
  --c-border:    #ececec;
  --c-border-dk: #e1e1e1;

  --c-text:      #1f2226;
  --c-text-mid:  #61666d;
  --c-text-soft: #9aa0a6;
  --c-white:     #ffffff;

  /* 字体：阿里巴巴普惠体（爱回收主字体栈） */
  --ff-base: AlibabaPuHuiTi, "Alibaba PuHuiTi 3.0", "Helvetica Neue", Helvetica,
             "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑",
             Arial, sans-serif;
  --ff-num:  "DIN Alternate", "Bahnschrift", "Arial Narrow", sans-serif;

  --fs-xs: 12px; --fs-sm: 13px; --fs-base: 15px; --fs-md: 16px;
  --fs-lg: 18px; --fs-xl: 22px; --fs-2xl: 28px; --fs-3xl: 34px; --fs-4xl: 46px;

  --sp-1: 6px; --sp-2: 10px; --sp-3: 16px; --sp-4: 24px;
  --sp-5: 32px; --sp-6: 52px; --sp-7: 72px; --sp-8: 96px;

  /* 圆角规范：爱回收签名（40 胶囊 / 20 卡片 / 32 大卡） */
  --r-sm: 8px; --r-md: 12px; --r-card: 20px; --r-lg: 32px; --r-pill: 40px;

  /* 阴影规范：极轻 + 主色柔光（爱回收 0 2px 8px rgba(0,0,0,.06)） */
  --sh-1: 0 2px 8px rgba(0, 0, 0, .06);
  --sh-2: 0 6px 16px rgba(0, 0, 0, .08);
  --sh-3: 0 10px 24px rgba(0, 138, 210, .16);

  --w-max: 1240px;
  --h-topbar: 0px;
  --h-nav: 72px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-base: .26s var(--ease);
}

/* --------------------------------------------------------------------------
   2. 基础
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--h-nav) + var(--h-topbar) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--c-primary-dk); }
ul, ol { padding-left: 1.4em; }
li { margin: .35em 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
  font-weight: 700; line-height: 1.3;
  color: var(--c-text); letter-spacing: -.01em;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { margin-bottom: var(--sp-3); }
strong { color: var(--c-text); font-weight: 700; }
::selection { background: rgba(0,138,210,.12); color: var(--c-primary-dk); }

/* --------------------------------------------------------------------------
   3. 滚动进度条（主色）
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%; z-index: 9999;
  background: var(--c-primary);
  transition: width .1s linear;
}

/* --------------------------------------------------------------------------
   4. 布局
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--w-max); margin: 0 auto; padding: 0 var(--sp-4); }
.wrap-narrow { max-width: 920px; }

.section { padding: var(--sp-7) 0; position: relative; }
.section-sm { padding: var(--sp-5) 0; }
.section-alt { background: var(--c-bg-soft); }

/* 章节标题：主色「双线」高亮（爱回收 .bottomLine 视觉签名） */
.section-head { margin-bottom: var(--sp-5); }
.section-head.center { text-align: center; }
.section-head h2 { position: relative; display: inline-block; padding-bottom: 12px; margin-bottom: var(--sp-3); }
.section-head h2::before,
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; right: 0;
  background: var(--c-primary); border-radius: 2px;
}
.section-head h2::before { height: 3px; bottom: 6px; }
.section-head h2::after  { height: 5px; border-radius: 0 0 5px 5px; }
.section-head.center h2 { display: inline-block; }
.section-head.center h2::before,
.section-head.center h2::after { left: 50%; right: auto; transform: translateX(-50%); width: 46px; }
.section-head p.lead { color: var(--c-text-mid); font-size: var(--fs-md); max-width: 780px; line-height: 1.8; }
.section-head.center p.lead { margin: 0 auto; }

.eyebrow { display: none; }

/* --------------------------------------------------------------------------
   5. 顶栏
   -------------------------------------------------------------------------- */
/* 参考爱回收：去掉顶部信息条，导航直接与首屏融合 */
.topbar { display: none; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.topbar-txt { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.topbar-txt .divider { opacity: .35; }
.topbar a { color: var(--c-primary-dk); font-weight: 700; }
.topbar a:hover { color: var(--c-primary); text-decoration: underline; }
.topbar-phone { font-family: var(--ff-num); font-size: var(--fs-md); font-weight: 700; letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   6. 导航（白底 + 菜单主色下划线 + 主色胶囊 CTA）
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  height: var(--h-nav);
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.nav.is-stuck { background: #fff; border-bottom-color: var(--c-border); box-shadow: var(--sh-1); }
.nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }

.brand { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.brand-logo { width: 50px; height: 50px; object-fit: contain; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-size: var(--fs-md); font-weight: 800; color: var(--c-text); letter-spacing: -.01em; }
.brand-sub { font-size: var(--fs-xs); color: var(--c-text-soft); letter-spacing: .04em; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-menu a {
  position: relative; display: block; padding: 10px 15px;
  font-size: var(--fs-md); font-weight: 500; color: var(--c-text);
  white-space: nowrap; transition: color var(--t-base);
}
/* 主色下划线（爱回收菜单 label::after 主色条） */
.nav-menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 3px;
  background: var(--c-primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform var(--t-base);
}
.nav-menu a:hover { color: var(--c-primary-dk); }
.nav-menu a:hover::after { transform: scaleX(.5); }
.nav-menu a.active { color: var(--c-primary-dk); font-weight: 700; }
.nav-menu a.active::after { transform: scaleX(1); }

/* 参考爱回收：导航右侧不放按钮，电话以文字形式低调呈现 */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 0; background: transparent;
  color: var(--c-primary-dk); font-weight: 700; font-size: var(--fs-md);
  white-space: nowrap; transition: color var(--t-base);
}
.nav-cta:hover { color: var(--c-primary); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--c-bg-tint); flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all var(--t-base); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero：通栏 banner 轮播（两张主题图）+ CTA 按钮行
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f1f3f5 0%, #fafbfc 60%, #ffffff 100%);
  padding: var(--sp-6) 0 var(--sp-7);
}
.hero .wrap { position: relative; z-index: 3; }

.hero-banner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 34, 54, .12); background: var(--c-bg-tint);
}
.hero-track { position: relative; width: 100%; aspect-ratio: 1920 / 810; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s var(--ease); }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide a { display: block; width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.86); color: var(--c-text);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  box-shadow: var(--sh-1);
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.hero-arrow:hover { background: #fff; color: var(--c-primary-dk); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

.hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 8px; }
.hero-dots .dot { width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(255,255,255,.62); transition: all .3s; }
.hero-dots .dot.is-active { background: #fff; width: 26px; border-radius: 5px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: var(--sp-5); }

.particles { display: none; }

/* --------------------------------------------------------------------------
   8. 按钮（40px 胶囊 · 主色实底 / 主色描边）
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--r-pill);
  font-size: var(--fs-md); font-weight: 700;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-dk); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-outline { background: #fff; border-color: var(--c-primary); color: var(--c-primary-dk); }
.btn-outline:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-light { background: #fff; color: var(--c-primary-dk); border-color: #fff; }
.btn-light:hover { color: var(--c-primary-dk); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.16); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--c-primary-dk); border-color: #fff; transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 16px 38px; font-size: var(--fs-lg); }

/* --------------------------------------------------------------------------
   9. 卡片与网格（20px 大圆角 + 极轻阴影 + 主色柔光 hover）
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-4); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-5 { grid-template-columns: repeat(5, 1fr); }
.g-auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g-auto-sm { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-card); padding: var(--sp-4); box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--c-border-dk); }
.card h4 { margin-bottom: var(--sp-2); font-size: var(--fs-lg); }
.card p { color: var(--c-text-mid); font-size: var(--fs-base); margin-bottom: 0; }
.card p + p { margin-top: var(--sp-2); }

/* 服务卡 */
.svc-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.svc-card .thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg-tint); }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .thumb .badge {
  position: absolute; left: 14px; top: 14px; z-index: 3;
  background: var(--c-primary); color: #fff; font-size: var(--fs-xs); font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-1);
}
.svc-card .body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.svc-card .body h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); transition: color var(--t-base); }
.svc-card:hover .body h3 { color: var(--c-primary-dk); }
.svc-card .body p { color: var(--c-text-mid); font-size: var(--fs-base); flex: 1; }
.svc-card .body .meta {
  margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid var(--c-border);
  font-size: var(--fs-sm); color: var(--c-text-soft);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2);
}
.svc-card .body .meta .price { color: var(--c-eco-dk); font-weight: 700; }

/* “查看更多”卡片 */
.svc-card.svc-more {
  text-decoration: none; background: var(--c-bg-tint);
  border: 1.5px dashed var(--c-primary-lt); justify-content: center; align-items: center; text-align: center;
}
.svc-card.svc-more .svc-more-body { padding: var(--sp-5); display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; }
.svc-card.svc-more .svc-more-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  margin-bottom: var(--sp-4); transition: transform var(--t-base); box-shadow: var(--sh-3);
}
.svc-card.svc-more h3 { color: var(--c-primary-dk); font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.svc-card.svc-more p { color: var(--c-text-mid); font-size: var(--fs-base); max-width: 260px; margin-bottom: var(--sp-4); flex: 0 0 auto; }
.svc-card.svc-more .btn { background: var(--c-primary); color: #fff; border: none; font-weight: 700; padding: 13px 28px; border-radius: var(--r-pill); transition: background var(--t-base), transform var(--t-base); }
.svc-card.svc-more:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--c-primary); }
.svc-card.svc-more:hover .svc-more-icon { transform: translateX(6px); }
.svc-card.svc-more:hover .btn { background: var(--c-primary-dk); }

/* 优势卡 */
.adv-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  padding: var(--sp-4); box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.adv-no {
  font-family: var(--ff-num); font-size: 15px; font-weight: 800; color: #fff;
  background: var(--c-primary); width: 32px; height: 32px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-3);
}
.adv-icon {
  width: 48px; height: 48px; margin-bottom: var(--sp-3); border-radius: var(--r-sm);
  background: var(--c-primary-soft, rgba(0,138,210,.08)); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.adv-card h4 { margin-bottom: var(--sp-2); }
.adv-card p { font-size: var(--fs-sm); color: var(--c-text-mid); margin-bottom: 0; }

/* 数据卡 */
.stat-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  padding: var(--sp-4); text-align: center; box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.stat-card .num { font-family: var(--ff-num); font-size: var(--fs-3xl); font-weight: 800; line-height: 1.1; margin-bottom: var(--sp-1); color: var(--c-primary); }
.stat-card .num .unit { font-size: var(--fs-lg); color: var(--c-text-mid); }
.stat-card .lbl { font-size: var(--fs-sm); color: var(--c-text-mid); }

/* --------------------------------------------------------------------------
   10. 标签（胶囊）
   -------------------------------------------------------------------------- */
.tag {
  display: inline-block; padding: 4px 14px; border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 600;
  background: var(--c-bg-soft); color: var(--c-text-mid); border: 1px solid var(--c-border);
}
.tag-brand { background: rgba(0,138,210,.09); color: var(--c-primary-dk); border-color: rgba(0,138,210,.22); }
.tag-eco   { background: rgba(0,165,70,.09);  color: var(--c-eco-dk);    border-color: rgba(0,165,70,.22); }
.tag-sky   { background: rgba(44,157,205,.09); color: #1d7ba6;            border-color: rgba(44,157,205,.22); }
.chip-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* --------------------------------------------------------------------------
   11. 流程步骤
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-3); }
.step {
  text-align: left; padding: var(--sp-4) var(--sp-3);
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  box-shadow: var(--sh-1); transition: transform var(--t-base), box-shadow var(--t-base);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.step-no {
  font-family: var(--ff-num); font-size: 20px; font-weight: 800; color: var(--c-primary);
  margin-bottom: var(--sp-2); display: flex; align-items: center; gap: 8px;
}
.step-no::before { content: ""; width: 24px; height: 4px; border-radius: 2px; background: var(--c-primary); display: inline-block; }
.step h4 { font-size: var(--fs-md); margin-bottom: var(--sp-1); }
.step p { font-size: var(--fs-sm); color: var(--c-text-mid); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. 表格
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--c-border); border-radius: var(--r-card); background: var(--c-surface); box-shadow: var(--sh-1); }
table.data { width: 100%; font-size: var(--fs-base); min-width: 560px; }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--c-border); vertical-align: top; }
table.data th { background: var(--c-bg-tint); color: var(--c-primary-dk); font-weight: 700; white-space: nowrap; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr { transition: background var(--t-base); }
table.data tbody tr:hover { background: #f2f9fd; }
table.data td.q { font-weight: 700; color: var(--c-text); width: 40%; }
table.data td .src { display: block; font-size: var(--fs-xs); color: var(--c-text-soft); margin-top: 4px; }

/* --------------------------------------------------------------------------
   13. 时间线
   -------------------------------------------------------------------------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--c-border-dk); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: var(--sp-5); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -26px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 3px solid var(--c-primary); transition: all var(--t-base); }
.tl-item:hover::before { border-color: var(--c-eco); transform: scale(1.3); }
.tl-year { font-family: var(--ff-num); font-size: var(--fs-lg); font-weight: 800; color: var(--c-primary); margin-bottom: 4px; }
.tl-item h4 { font-size: var(--fs-md); margin-bottom: 6px; }
.tl-item p { font-size: var(--fs-base); color: var(--c-text-mid); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   14. 知识库布局
   -------------------------------------------------------------------------- */
.kb-layout { display: grid; grid-template-columns: 268px 1fr; gap: var(--sp-5); align-items: start; }
.kb-side {
  position: sticky; top: calc(var(--h-nav) + var(--h-topbar) + 16px);
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  padding: var(--sp-3); box-shadow: var(--sh-1);
  max-height: calc(100vh - var(--h-nav) - var(--h-topbar) - 48px); overflow-y: auto;
}
.kb-side::-webkit-scrollbar { width: 6px; }
.kb-side::-webkit-scrollbar-thumb { background: var(--c-border-dk); border-radius: 3px; }
.kb-side-title { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; color: var(--c-text-soft); text-transform: uppercase; padding: 0 var(--sp-2) var(--sp-2); border-bottom: 1px solid var(--c-border); margin-bottom: var(--sp-2); }
.kb-nav { list-style: none; padding: 0; margin: 0; }
.kb-nav li { margin: 0; }
.kb-nav > li > a {
  display: block; padding: 9px 14px; border-radius: var(--r-pill);
  font-size: var(--fs-base); font-weight: 600; color: var(--c-text-mid);
  transition: all var(--t-base);
}
.kb-nav > li > a:hover { background: var(--c-bg-tint); color: var(--c-primary-dk); }
.kb-nav > li > a.active { background: var(--c-primary); color: #fff; font-weight: 700; }
.kb-subnav { list-style: none; padding: 0; margin: 0 0 var(--sp-1) 0; }
.kb-subnav a { display: block; padding: 6px 12px 6px 30px; border-radius: var(--r-sm); font-size: var(--fs-sm); color: var(--c-text-soft); transition: all var(--t-base); }
.kb-subnav a:hover { color: var(--c-primary-dk); background: var(--c-bg-soft); }
.kb-subnav a.active { color: var(--c-primary-dk); font-weight: 700; }

.kb-main { min-width: 0; }
.kb-block {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  padding: var(--sp-5); margin-bottom: var(--sp-4); box-shadow: var(--sh-1);
  scroll-margin-top: calc(var(--h-nav) + var(--h-topbar) + 20px);
  transition: box-shadow var(--t-base);
}
.kb-block:hover { box-shadow: var(--sh-2); }
.kb-block > h2 { font-size: var(--fs-xl); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); border-bottom: 2px solid var(--c-primary); display: flex; align-items: center; gap: var(--sp-3); }
.kb-block > h2 .no {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--c-primary); color: #fff; font-family: var(--ff-num); font-size: var(--fs-md); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.kb-block h3 { font-size: var(--fs-md); margin: var(--sp-4) 0 var(--sp-2); padding-left: var(--sp-3); border-left: 4px solid var(--c-eco); color: var(--c-primary-dk); }
.kb-block h3:first-of-type { margin-top: 0; }
.kb-block p { color: var(--c-text-mid); }
.kb-block ul { color: var(--c-text-mid); }
.kb-block ul li { margin: .5em 0; }

.kb-kv { display: grid; grid-template-columns: 132px 1fr; gap: var(--sp-2) var(--sp-3); padding: var(--sp-3); background: var(--c-bg-soft); border-radius: var(--r-md); margin-bottom: var(--sp-3); }
.kb-kv dt { font-weight: 700; color: var(--c-primary-dk); font-size: var(--fs-base); }
.kb-kv dd { color: var(--c-text-mid); margin: 0; font-size: var(--fs-base); }

.nap-box { background: rgba(0,165,70,.06); border: 1px solid rgba(0,165,70,.2); border-left: 4px solid var(--c-eco); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); margin-bottom: var(--sp-3); }
.nap-box .nap-title { font-size: var(--fs-sm); font-weight: 800; color: var(--c-eco-dk); margin-bottom: var(--sp-2); letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   15. 手风琴
   -------------------------------------------------------------------------- */
.accordion { border: 1px solid var(--c-border); border-radius: var(--r-card); overflow: hidden; background: var(--c-surface); box-shadow: var(--sh-1); }
.acc-item { border-bottom: 1px solid var(--c-border); transition: background var(--t-base); }
.acc-item:last-child { border-bottom: 0; }
.acc-head {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  font-size: var(--fs-md); font-weight: 700; color: var(--c-text); text-align: left;
  transition: background var(--t-base), color var(--t-base);
}
.acc-head:hover { background: var(--c-bg-soft); color: var(--c-primary-dk); }
.acc-head .q-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-primary-soft, rgba(0,138,210,.1)); color: var(--c-primary-dk);
  font-size: var(--fs-sm); font-weight: 800;
  display: flex; align-items: center; justify-content: center; transition: transform var(--t-base);
}
.acc-head .arrow { flex-shrink: 0; color: var(--c-text-soft); font-size: 14px; transition: transform var(--t-base); }
.acc-item.is-open .acc-head { color: var(--c-primary-dk); }
.acc-item.is-open .acc-head .q-icon { transform: rotate(360deg); background: var(--c-primary); color: #fff; }
.acc-item.is-open .arrow { transform: rotate(180deg); color: var(--c-primary); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height var(--t-base); }
.acc-body-inner { padding: 0 var(--sp-4) var(--sp-4) calc(var(--sp-4) + 38px); color: var(--c-text-mid); font-size: var(--fs-base); }
.acc-body-inner p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   16. 案例
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); padding: var(--sp-3); background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card); align-items: center; box-shadow: var(--sh-1); }
.filter-bar .flabel { font-size: var(--fs-sm); font-weight: 700; color: var(--c-text-mid); margin-right: var(--sp-1); }
.filter-btn { padding: 7px 18px; border-radius: var(--r-pill); border: 1px solid var(--c-border-dk); background: #fff; font-size: var(--fs-sm); color: var(--c-text-mid); font-weight: 600; transition: all var(--t-base); }
.filter-btn:hover { border-color: var(--c-primary); color: var(--c-primary-dk); transform: translateY(-2px); }
.filter-btn.is-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.case-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card);
  display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.case-card .thumb { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg-tint); color: inherit; text-decoration: none; }
.case-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.case-card:hover .thumb img { transform: scale(1.05); }
.case-card .thumb .cat { position: absolute; left: 12px; top: 12px; z-index: 3; background: var(--c-primary); color: #fff; font-size: var(--fs-xs); font-weight: 700; padding: 5px 13px; border-radius: var(--r-pill); }
.case-card .thumb .src { position: absolute; right: 12px; bottom: 12px; z-index: 3; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: var(--r-pill); }
.case-card .body { padding: var(--sp-3) var(--sp-4) var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.case-card .body h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); line-height: 1.45; transition: color var(--t-base); }
.case-card .body h3 a { color: inherit; text-decoration: none; }
.case-card:hover .body h3 { color: var(--c-primary-dk); }
.case-card .body p { font-size: var(--fs-sm); color: var(--c-text-mid); flex: 1; margin-bottom: var(--sp-3); }
.case-meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--c-text-soft); padding-top: var(--sp-3); border-top: 1px solid var(--c-border); }
.case-meta .m { display: inline-flex; align-items: center; gap: 4px; }

/* --------------------------------------------------------------------------
   17. 表单
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: var(--fs-sm); font-weight: 700; color: var(--c-text-mid); margin-bottom: 6px; }
.form-group label .req { color: var(--c-eco); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--c-border-dk); border-radius: var(--r-md);
  font-size: var(--fs-base); font-family: inherit; color: var(--c-text); background: #fff;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0,138,210,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: var(--fs-xs); color: var(--c-text-soft); margin-top: 5px; }
.form-msg { margin-top: var(--sp-3); padding: var(--sp-3); border-radius: var(--r-md); font-size: var(--fs-base); display: none; }
.form-msg.ok { display: block; background: rgba(0,165,70,.08); color: var(--c-eco-dk); border: 1px solid rgba(0,165,70,.24); }
.form-msg.err { display: block; background: rgba(0,138,210,.07); color: var(--c-primary-dk); border: 1px solid rgba(0,138,210,.22); }

/* --------------------------------------------------------------------------
   18. 联系信息
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-border); margin: 0; }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--r-sm); background: rgba(0,138,210,.08); color: var(--c-primary); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.info-list .txt { flex: 1; min-width: 0; }
.info-list .lbl { font-size: var(--fs-xs); color: var(--c-text-soft); margin-bottom: 2px; }
.info-list .val { font-size: var(--fs-md); color: var(--c-text); font-weight: 600; line-height: 1.5; }
.info-list .val a { color: var(--c-primary-dk); font-weight: 700; }

.phone-big { font-family: var(--ff-num); font-size: var(--fs-2xl); font-weight: 800; line-height: 1.2; letter-spacing: .01em; color: var(--c-primary-dk); }
.phone-big a { color: var(--c-primary-dk); }

.qr-box { display: inline-block; text-align: center; padding: var(--sp-3); background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card); box-shadow: var(--sh-1); transition: all var(--t-base); }
.qr-box:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.qr-ph { width: 132px; height: 132px; border-radius: var(--r-md); background: var(--c-bg-soft); border: 2px dashed var(--c-border-dk); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: var(--fs-xs); color: var(--c-text-soft); text-align: center; padding: 8px; line-height: 1.5; }
.qr-box .cap { font-size: var(--fs-sm); color: var(--c-text-mid); margin-top: var(--sp-2); font-weight: 600; }

/* --------------------------------------------------------------------------
   19. 面包屑 / 页头
   -------------------------------------------------------------------------- */
.breadcrumb { padding: var(--sp-3) 0; font-size: var(--fs-sm); color: var(--c-text-soft); background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { margin: 0; }
.breadcrumb a { color: var(--c-text-mid); }
.breadcrumb a:hover { color: var(--c-primary-dk); }
.breadcrumb .sep { color: var(--c-border-dk); }
.breadcrumb .cur { color: var(--c-primary-dk); font-weight: 700; }

.page-head { position: relative; overflow: hidden; background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border); padding: var(--sp-6) 0; }
.page-head .wrap { position: relative; z-index: 3; }
.page-head h1 { color: var(--c-text); font-size: var(--fs-3xl); margin-bottom: var(--sp-3); position: relative; display: inline-block; padding-bottom: 12px; }
.page-head h1::before, .page-head h1::after { content: ""; position: absolute; left: 0; bottom: 0; background: var(--c-primary); border-radius: 2px; }
.page-head h1::before { height: 3px; bottom: 6px; width: 100%; }
.page-head h1::after  { height: 5px; border-radius: 0 0 5px 5px; width: 100%; }
.page-head p { color: var(--c-text-mid); font-size: var(--fs-md); margin-bottom: 0; max-width: 780px; line-height: 1.8; }
.page-head p strong { color: var(--c-eco-dk); }

/* --------------------------------------------------------------------------
   20. 提示框
   -------------------------------------------------------------------------- */
.callout { border-radius: var(--r-card); padding: var(--sp-4); margin: var(--sp-4) 0; border: 1px solid; }
.callout-tip { background: rgba(0,165,70,.06); border-color: rgba(0,165,70,.2); }
.callout-warn { background: rgba(217,139,31,.07); border-color: rgba(217,139,31,.24); }
.callout-info { background: rgba(0,138,210,.06); border-color: rgba(0,138,210,.2); }
.callout h4 { font-size: var(--fs-md); margin-bottom: var(--sp-2); display: flex; align-items: center; gap: 8px; }
.callout-tip h4 { color: var(--c-eco-dk); }
.callout-warn h4 { color: #b8720f; }
.callout-info h4 { color: var(--c-primary-dk); }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.callout p, .callout li { font-size: var(--fs-base); color: var(--c-text-mid); }
.callout strong { color: var(--c-primary-dk); }

/* --------------------------------------------------------------------------
   21. CTA 横幅（大面积主色实底 · 爱回收式强调色块）
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--c-primary) 0%, #1aa0e0 55%, var(--c-eco) 130%);
  color: #fff; border-radius: var(--r-lg); padding: var(--sp-6); text-align: center;
  box-shadow: var(--sh-2);
}
.cta-band .wrap-in { position: relative; z-index: 3; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: var(--sp-4); font-size: var(--fs-md); }
.cta-band .phone { font-family: var(--ff-num); font-size: var(--fs-3xl); font-weight: 800; margin-bottom: var(--sp-4); letter-spacing: .02em; color: #fff; }

/* --------------------------------------------------------------------------
   22. 页脚（深色收尾）
   -------------------------------------------------------------------------- */
.footer { position: relative; overflow: hidden; background: #14232f; color: #9fb2c0; padding: var(--sp-7) 0 0; font-size: var(--fs-base); }
.footer .wrap { position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--sp-5); padding-bottom: var(--sp-5); }
.footer h4 { color: #fff; font-size: var(--fs-md); margin-bottom: var(--sp-3); }
.footer .f-brand { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.footer .f-brand img { width: 52px; height: 52px; border-radius: var(--r-sm); background: #fff; padding: 4px; }
.footer .f-brand .n { color: #fff; font-weight: 800; font-size: var(--fs-md); line-height: 1.35; }
.footer .f-brand .n small { display: block; font-weight: 400; font-size: var(--fs-xs); color: #7c93a5; letter-spacing: .04em; }
.footer p { color: #93a8b8; font-size: var(--fs-sm); line-height: 1.8; }
.footer p strong { color: #d8ecf7; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin: 8px 0; }
.footer ul a { color: #9fb2c0; font-size: var(--fs-sm); transition: all var(--t-base); display: inline-block; }
.footer ul a:hover { color: #6fd3ff; transform: translateX(4px); text-decoration: none; }
.footer .f-phone { font-family: var(--ff-num); font-size: var(--fs-xl); font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: var(--sp-2); }
.footer .f-phone a { color: #8fdcff; }
.footer .f-phone a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: var(--sp-3) 0 var(--sp-4); font-size: var(--fs-sm); color: #6c8293; display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; align-items: center; }
.footer-bottom a { color: #93a8b8; }
.footer-bottom a:hover { color: #6fd3ff; }

/* --------------------------------------------------------------------------
   23. 移动端工具条
   -------------------------------------------------------------------------- */
.float-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; display: none; background: rgba(255,255,255,.98); border-top: 1px solid var(--c-border); box-shadow: 0 -4px 20px rgba(0,0,0,.08); padding: 8px var(--sp-3) calc(8px + env(safe-area-inset-bottom)); }
.float-bar .fb-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.fb-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 8px 4px; border-radius: var(--r-md); font-size: var(--fs-xs); font-weight: 700; color: var(--c-text-mid); transition: background var(--t-base); }
.fb-btn .ico { font-size: 18px; line-height: 1; }
.fb-btn:hover { background: var(--c-bg-soft); }
.fb-btn.hot { background: var(--c-primary); color: #fff; }

.to-top { position: fixed; right: 20px; bottom: 84px; z-index: 190; width: 48px; height: 48px; border-radius: 50%; background: var(--c-primary); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-3); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--t-base); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--c-primary-dk); transform: translateY(-4px); color: #fff; }

/* --------------------------------------------------------------------------
   24. 工具类
   -------------------------------------------------------------------------- */
.t-center { text-align: center; }
.t-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); } .mt-5 { margin-top: var(--sp-5); }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: var(--sp-2); } .mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); } .mb-5 { margin-bottom: var(--sp-5); }
.text-eco { color: var(--c-eco-dk); }
.text-brand { color: var(--c-primary); }
.text-soft { color: var(--c-text-soft); }
.small { font-size: var(--fs-sm); }
.nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* 关键词云 */
.kw-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.kw { padding: 7px 16px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--c-border-dk); font-size: var(--fs-sm); color: var(--c-text-mid); transition: all var(--t-base); }
.kw:hover { border-color: var(--c-primary); color: #fff; background: var(--c-primary); transform: translateY(-2px); }

/* 城市列表 */
.city-list { display: flex; flex-wrap: wrap; gap: 8px; }
.city-list .c { padding: 8px 18px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--c-border); font-size: var(--fs-sm); color: var(--c-text-mid); transition: all var(--t-base); }
.city-list .c:hover { border-color: var(--c-primary); color: var(--c-primary-dk); transform: translateY(-2px); box-shadow: var(--sh-1); }
.city-list .c.hot { border-color: var(--c-primary); color: #fff; font-weight: 700; background: var(--c-primary); }

/* 资质项 */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--sp-3); }
.cert-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card); padding: var(--sp-4) var(--sp-3); text-align: center; box-shadow: var(--sh-1); transition: transform var(--t-base), box-shadow var(--t-base); }
.cert-item:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.cert-item .ci { width: 46px; height: 46px; margin: 0 auto var(--sp-2); border-radius: var(--r-sm); background: rgba(0,138,210,.08); color: var(--c-primary); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.cert-item .n { font-size: var(--fs-sm); font-weight: 700; color: var(--c-text); }
.cert-item .s { font-size: var(--fs-xs); color: var(--c-text-soft); margin-top: 3px; }

/* --------------------------------------------------------------------------
   25. 入场动画（克制：淡入上移）
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; transition-delay: var(--rv-delay, 0s); }

/* --------------------------------------------------------------------------
   26. 首页信任条（数据驱动 · 爱回收式大数字）
   -------------------------------------------------------------------------- */
.trust-strip { background: #fff; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-7); padding: var(--sp-5) var(--sp-4); }
.ts-item { display: flex; flex-direction: column; align-items: center; min-width: 120px; }
.ts-item b { font-size: 34px; color: var(--c-primary); line-height: 1.1; font-family: var(--ff-num); font-weight: 800; }
.ts-item span { font-size: var(--fs-sm); color: var(--c-text-mid); margin-top: 6px; }

/* --------------------------------------------------------------------------
   27. 响应式
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
}

@media (max-width: 980px) {
  :root { --fs-4xl: 34px; --fs-3xl: 27px; --fs-2xl: 23px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: calc(var(--h-topbar) + var(--h-nav)); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--sp-2); border-bottom: 1px solid var(--c-border); box-shadow: var(--sh-2);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all var(--t-base);
    max-height: calc(100vh - var(--h-topbar) - var(--h-nav)); overflow-y: auto;
  }
  .nav-menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-menu a { padding: 14px 16px; font-size: var(--fs-md); border-radius: var(--r-md); }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { background: var(--c-bg-tint); }
  .nav-cta { display: none; }
  .hero-split { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero { padding: var(--sp-6) 0; }
  .hero-media { order: -1; }
  .hero-slider { aspect-ratio: 16/10; }
  .kb-layout { grid-template-columns: 1fr; }
  .kb-side { position: static; max-height: none; }
  .kb-subnav { display: none; }
  .kb-nav { display: flex; flex-wrap: wrap; gap: 6px; }
  .kb-nav > li > a { padding: 8px 14px; border: 1px solid var(--c-border); }
  .g-4, .g-5 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .kb-kv { grid-template-columns: 1fr; gap: 4px; }
  .kb-kv dd { margin-bottom: var(--sp-2); }
  .float-bar { display: block; }
  body { padding-bottom: 72px; }
  .to-top { bottom: 88px; right: 14px; }
}

@media (max-width: 640px) {
  :root { --sp-7: 48px; --sp-8: 60px; --fs-4xl: 29px; --fs-3xl: 24px; --fs-2xl: 21px; --r-lg: 22px; }
  .wrap { padding: 0 var(--sp-3); }
  .g-2, .g-3, .g-4, .g-5, .g-auto, .g-auto-sm { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .topbar { font-size: var(--fs-xs); }
  .topbar .txt-hide { display: none; }
  .hero-actions .btn { width: 100%; }
  .kb-block { padding: var(--sp-4) var(--sp-3); }
  table.data { font-size: var(--fs-sm); min-width: 480px; }
  table.data td.q { width: 44%; }
  .acc-head { font-size: var(--fs-base); padding: var(--sp-3); }
  .acc-body-inner { padding-left: var(--sp-3); padding-right: var(--sp-3); }
  .brand-sub { display: none; }
  .cta-band { padding: var(--sp-5) var(--sp-3); }
  .trust-strip .wrap { gap: var(--sp-4); }
}

/* --------------------------------------------------------------------------
   28. 无障碍：减弱动效
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   29. 打印
   -------------------------------------------------------------------------- */
@media print {
  .nav, .topbar, .float-bar, .to-top, .scroll-progress, .hero-actions { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .hero, .page-head, .cta-band, .footer { background: #fff !important; color: #000 !important; }
  .hero h1, .page-head h1, .cta-band h2, .footer, .footer h4, .footer p { color: #000 !important; }
  .card, .kb-block, .svc-card { break-inside: avoid; border-color: #ccc; }
  a { color: #000; text-decoration: underline; }
}

/* ==========================================================================
   30. 互动动画体系（轻量化 · 商务质感 · 不抢主体）
   依《企业网站主流互动动画形式大全》落地：
   滚动触发 / 鼠标交互 / 加载与过渡 / 专项场景，配合 js/main.js
   ========================================================================== */

/* 30.1 滚动渐入：多方向 + 分步（main.js initReveal 自动赋 data-rv） */
.reveal { opacity: 0; will-change: opacity, transform;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--rv-delay, 0s); }
.reveal[data-rv="up"]    { transform: translateY(26px); }
.reveal[data-rv="down"]  { transform: translateY(-26px); }
.reveal[data-rv="left"]  { transform: translateX(-36px); }
.reveal[data-rv="right"] { transform: translateX(36px); }
.reveal[data-rv="scale"] { transform: scale(.94); }
.reveal[data-rv="fade"]  { transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* 30.2 标题「遮罩揭示」（滚动文字特效） */
.title-reveal { overflow: hidden; }
.title-reveal > span { display: inline-block; transform: translateY(112%); opacity: 0;
  transition: transform .85s var(--ease), opacity .85s var(--ease); }
.reveal.in .title-reveal > span,
.title-reveal.in > span { transform: none; opacity: 1; }

/* 30.3 视差（元素加 data-parallax="0.12"，main.js initParallax 驱动） */
[data-parallax] { will-change: transform; }

/* 30.4 悬浮微动效增强 */
.btn { will-change: transform; }
.btn:active { transform: translateY(0) scale(.97); }
.svc-card, .case-card, .adv-card, .stat-card, .step, .cert-item, .card { will-change: transform; }
.svc-card .thumb img, .case-card .thumb img { will-change: transform; }

/* 30.5 点击涟漪（main.js initRipple 注入 .ripple） */
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.5);
  transform: scale(0); animation: rippleGrow .68s var(--ease) forwards;
  pointer-events: none; z-index: 1; }
@keyframes rippleGrow { to { transform: scale(2.4); opacity: 0; } }

/* 30.6 鼠标跟随光晕（main.js initCursorGlow） */
.cursor-glow { position: fixed; top: 0; left: 0; width: 340px; height: 340px; border-radius: 50%;
  pointer-events: none; z-index: 0; opacity: 0; transition: opacity .45s ease;
  background: radial-gradient(circle, rgba(0,138,210,.13) 0%, rgba(0,138,210,0) 66%);
  will-change: transform; }
.cursor-glow.on { opacity: 1; }

/* 30.7 首页进场加载（main.js initPageLoader） */
#pageLoader { position: fixed; inset: 0; z-index: 9998; background: #fff;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
  transition: opacity .55s ease, visibility .55s ease; }
#pageLoader .pl-logo { width: 62px; height: 62px; opacity: 0; transform: translateY(12px) scale(.9);
  animation: plLogo .9s var(--ease) forwards; }
#pageLoader .pl-bar { width: 128px; height: 3px; border-radius: 2px; background: var(--c-border); overflow: hidden; }
#pageLoader .pl-bar i { display: block; width: 40%; height: 100%; border-radius: 2px;
  background: var(--c-primary); animation: plBar 1.05s var(--ease) infinite; }
#pageLoader.done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes plLogo { to { opacity: 1; transform: none; } }
@keyframes plBar { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }

/* 30.8 页面切换过渡（main.js initPageTransition） */
body.is-leaving { opacity: 0; transition: opacity .28s ease; }
body.page-enter { animation: pageIn .5s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* 30.9 图片懒加载：模糊 → 清晰（main.js initImgLoad） */
img.img-blur { filter: blur(10px); opacity: .6; transition: filter .6s ease, opacity .6s ease; }
img.img-blur.loaded { filter: none; opacity: 1; }

/* 30.10 背景动态装饰（低功耗渐变缓动） */
.hero::after { content: ""; position: absolute; inset: -20% -10% auto -10%; height: 62%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px 300px at 20% 0%, rgba(0,138,210,.10), transparent 62%),
    radial-gradient(680px 280px at 85% 10%, rgba(0,165,70,.09), transparent 62%);
  animation: bgFloat 14s ease-in-out infinite alternate; }
@keyframes bgFloat { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(0,26px,0) scale(1.04); } }

/* 30.11 SVG / 线条绘制动画 */
.draw-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.reveal.in .draw-line, .draw-line.in { animation: drawLine 1.5s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* 30.12 数字等宽（配合 initCountUp） */
.stat-card .num, .ts-item b { font-variant-numeric: tabular-nums; }

/* 30.13 移动端适配 */
@media (max-width: 640px) {
  .hero { padding: var(--sp-5) 0 var(--sp-6); }
  .hero-track { aspect-ratio: 16 / 9; }
  .hero-arrow { width: 38px; height: 38px; font-size: 17px; }
  .hero-arrow.prev { left: 10px; } .hero-arrow.next { right: 10px; }
  .hero-dots { bottom: 10px; }
}

/* 30.14 无障碍：减弱动效 */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal[data-rv] { opacity: 1 !important; transform: none !important; }
  .title-reveal > span { transform: none !important; opacity: 1 !important; }
  .cursor-glow, #pageLoader { display: none !important; }
  .hero::after { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ==========================================================================
   31. 新闻资讯（左侧分类导航 + 右侧「左图右标题」列表）
   ========================================================================== */
.news-layout { display: grid; grid-template-columns: 264px 1fr; gap: var(--sp-5); align-items: start; }

/* 左侧分类 */
.news-side {
  position: sticky; top: calc(var(--h-nav) + 20px);
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-card);
  padding: var(--sp-3); box-shadow: var(--sh-1);
}
.news-side-title { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .1em; color: var(--c-text-soft);
  text-transform: uppercase; padding: 0 12px 10px; border-bottom: 1px solid var(--c-border); margin-bottom: 10px; }
.news-cats { list-style: none; padding: 0; margin: 0; }
.news-cats li { margin: 0; }
.news-cat {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 14px; border-radius: var(--r-pill); background: transparent; border: none; cursor: pointer;
  font-size: var(--fs-base); font-weight: 600; color: var(--c-text-mid); text-align: left;
  transition: background var(--t-base), color var(--t-base);
}
.news-cat:hover { background: var(--c-bg-tint); color: var(--c-primary-dk); }
.news-cat.is-active { background: var(--c-primary); color: #fff; }
.news-cat .cnt { font-size: var(--fs-xs); opacity: .7; font-weight: 500; }
.news-side-cta { margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid var(--c-border); text-align: center; }
.news-side-cta p { font-size: var(--fs-sm); color: var(--c-text-mid); margin-bottom: 12px; line-height: 1.7; }
.news-side-cta .btn { width: 100%; justify-content: center; }

/* 右侧列表：左图 + 右标题 */
.news-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.news-row {
  display: grid; grid-template-columns: 300px 1fr; gap: var(--sp-4);
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.news-row:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--c-border-dk); }
.news-row .news-thumb { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg-tint); }
.news-row .news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-row:hover .news-thumb img { transform: scale(1.05); }
.news-row .news-body { padding: var(--sp-4) var(--sp-4) var(--sp-4) 0; display: flex; flex-direction: column; }
.news-row .news-meta { margin-bottom: var(--sp-2); }
.news-title { font-size: var(--fs-xl); margin-bottom: var(--sp-2); transition: color var(--t-base); }
.news-title a { color: inherit; }
.news-row:hover .news-title { color: var(--c-primary-dk); }
.news-empty { text-align: center; color: var(--c-text-soft); padding: var(--sp-7) 0; font-size: var(--fs-md); }

@media (max-width: 1080px) { .news-row { grid-template-columns: 240px 1fr; } }
@media (max-width: 980px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-side { position: static; }
  .news-cats { display: flex; flex-wrap: wrap; gap: 6px; }
  .news-cat { width: auto; padding: 8px 14px; }
  .news-side-cta { display: none; }
}
@media (max-width: 640px) {
  .news-row { grid-template-columns: 1fr; }
  .news-row .news-thumb { aspect-ratio: 16/9; }
  .news-row .news-body { padding: var(--sp-3) var(--sp-3) var(--sp-4); }
  .news-title { font-size: var(--fs-lg); }
}

/* ==========================================================================
   32. 图文区块（模块配图）
   ========================================================================== */
.media-block { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-5); align-items: center; }
.media-block.reverse .mb-media { order: 2; }
.media-block .mb-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-2); }
.media-block .mb-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-block .mb-body h3 { font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }
.media-block .mb-body p { color: var(--c-text-mid); font-size: var(--fs-md); }
.media-block .mb-list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.media-block .mb-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--c-text-mid); font-size: var(--fs-base); margin: .5em 0; }
.media-block .mb-list i { color: var(--c-primary); margin-top: .35em; }
@media (max-width: 980px) {
  .media-block { grid-template-columns: 1fr; gap: var(--sp-4); }
  .media-block.reverse .mb-media { order: 0; }
}

.list-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: var(--sp-5);
}
.list-pager .pager-info {
  color: var(--c-text-mid);
  font-size: var(--fs-sm);
}
.list-pager .pager-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.list-pager .pager-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 38px;
  cursor: pointer;
}
.list-pager .pager-btn:hover:not(:disabled) {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.list-pager .pager-btn.is-active {
  border-color: var(--c-primary);
  background: var(--c-primary);
  color: #fff;
}
.list-pager .pager-btn:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.list-pager .pager-ellipsis { color: var(--c-text-soft); padding: 0 4px; }
