/* ==========================================================================
   一花一世（青岛）植物营养有限公司 · 官网站点样式表
   AFlower, A World.
   设计语言总纲：药房克制 × 食品干净 × 东方安静
   编码色体系取自《包装设计概念图》v20260827
   ========================================================================== */

/* ---------- 1. 设计令牌 Design Tokens ---------- */
:root {
  /* 品牌基础色 */
  --mibai:      #F4F2EC;  /* 米白 · 主底（占比 ≥60%） */
  --mibai-warm: #FAF8F2;  /* 暖米白 · 卡片底 */
  --mibai-deep: #ECE8DD;  /* 米白深 · 分隔线 */

  --songyan:    #4A6B57;  /* 松烟绿 · 品牌主色（通用均衡线） */
  --songyan-dk: #1F4A33;  /* 深松绿 · 标题/页头 */
  --mojin:      #1F2E26;  /* 墨绿 · 正文重色/页脚 */

  --feiyi:      #A4553F;  /* 绯衣红 · 促花线（月季） */
  --zhehuang:   #B0812F;  /* 赭黄 · 急救线（螯合铁） */
  --daiqing:    #3D5A6B;  /* 黛青 · 兰花专用线 */
  --tengzi:     #6B5B7A;  /* 藤紫 · 绣球调蓝线 */

  --jin:        #C9A227;  /* 金 · 强调/印章边 */
  --yinzhang:   #A83C2A;  /* 印章红 */

  /* 文字 */
  --txt:        #2B2B2B;  /* 正文墨字 */
  --txt-2:      #55503F;  /* 次级文字 */
  --txt-3:      #8A8574;  /* 弱化文字/注脚 */

  /* 字体 */
  --font-serif: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", "STSong", serif;
  --font-sans:  "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Segoe UI", sans-serif;

  /* 尺度 */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 2px 14px rgba(31, 46, 38, .06);
  --shadow-lg: 0 10px 40px rgba(31, 46, 38, .10);
  --trans: .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 2. 基础重置 Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--mibai);
  color: var(--txt);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. 版心与区块 ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: 96px 0; }
.section--tight { padding: 68px 0; }
.section--paper { background: var(--mibai-warm); }
.section--ink { background: var(--mojin); color: #E8E5DA; }
.section--song { background: linear-gradient(150deg, #22402F 0%, #2D5A3D 60%, #3A6B4A 100%); color: #F2F0E6; }

/* 小标签 */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--songyan);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--jin);
}
.section--ink .eyebrow, .section--song .eyebrow { color: var(--jin); }

/* 标题 */
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--songyan-dk);
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--songyan-dk);
}
.h3 {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--songyan-dk);
}
.h4 { font-size: 17px; font-weight: 700; color: var(--songyan-dk); }

.section--ink .h1, .section--ink .h2, .section--ink .h3,
.section--song .h1, .section--song .h2, .section--song .h3 { color: #fff; }

.lead {
  font-size: 17px;
  color: var(--txt-2);
  line-height: 1.95;
  max-width: 760px;
}
.section--ink .lead, .section--song .lead { color: rgba(255,255,255,.82); }

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { padding-left: 0; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .lead { margin: 0 auto; }

.hr-orn {
  width: 56px; height: 2px;
  background: var(--jin);
  margin: 22px 0;
}
.section-head.center .hr-orn { margin: 22px auto; }

/* ---------- 4. 顶部导航 ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 236, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--mibai-deep);
  transition: var(--trans);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(31,46,38,.08); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* 品牌标识
   2026-09-22 第三轮：老邓要求 LOGO 整体再放大 30%。
   54px 图形标 ×1.3 ≈ 70px，78px 导航已装不下 → 导航净高 78 → 96px。
   ⚠️ 改净高必须同时改的联动点（全站 4 处，漏一处就错位）：
      ① 本规则 .nav__inner height
      ② @860px 移动菜单 inset: 96px 0 auto 0
      ③ @860px 移动菜单 max-height: calc(100vh - 96px)
      ④ @520px .nav__inner height: 86px + .nav__menu inset: 86px
      ⑤ .pagehead padding-top（内页页头让位）
      main.js 用 nav.offsetHeight 动态取值，无需改。
   图形标：等比放大，保留橙绿双叶的辨识度。
   图标为纺锤形（上下皆尖端、最宽处约在 44% 高度），光学重心偏上，
   故用 translateY 做视觉对齐补偿，避免下端尖角显得下坠。 */
.brand { display: flex; align-items: center; gap: 17px; flex-shrink: 0; }
.brand__mark {
  height: 70px;
  width: auto;
  flex-shrink: 0;
  display: block;
  transform: translateY(-2px);
}
/* 正式 LOGO 图片（横版，已含品牌文字） */
.brand__logo { width: auto; height: 66px; flex-shrink: 0; display: block; }

/* 白色圆角卡片：把品牌 logo 从深色页脚里「托」出来（2026-09-22 老邓要求）
   ⚠️ 卡片内必须用深色文字版 logo（logo_横版.png），
      反白版（logo_横版_反白.png）是给无底色深色背景用的，压在白底上文字会消失。 */
.brand__card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px 26px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .26);
}
.footer .brand__logo--footer { height: 74px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
/* 文字块：中文名 + 英文名上下两行，与图形标光学居中对齐 */
.brand__text { display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 3.5px;
  line-height: 1;
  color: var(--songyan-dk);
}
.brand__en {
  font-size: 15px;
  letter-spacing: 2.4px;
  line-height: 1;
  color: var(--txt-3);
  font-weight: 600;
}

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--txt-2);
  border-radius: 7px;
  transition: var(--trans);
  position: relative;
}
.nav__link:hover { color: var(--songyan-dk); background: rgba(74,107,87,.07); }
.nav__link.active { color: var(--songyan-dk); }
.nav__link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 2px;
  background: var(--jin);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 10px;
  padding: 10px 22px;
  background: var(--songyan-dk);
  color: #F2F0E6;
  border-radius: 40px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--mojin); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(31,74,51,.24); }

.nav__toggle { display: none; width: 42px; height: 42px; padding: 10px; }
.nav__toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--songyan-dk);
  border-radius: 2px;
  transition: var(--trans);
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .6px;
  transition: var(--trans);
  white-space: nowrap;
}
.btn--primary { background: var(--songyan-dk); color: #F2F0E6; }
.btn--primary:hover { background: var(--mojin); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(31,74,51,.26); }
.btn--gold { background: var(--jin); color: var(--mojin); }
.btn--gold:hover { background: #D8B23A; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,39,.3); }
.btn--ghost { border: 1.5px solid rgba(31,74,51,.3); color: var(--songyan-dk); }
.btn--ghost:hover { border-color: var(--songyan-dk); background: rgba(74,107,87,.07); }
.btn--light { background: #F2F0E6; color: var(--songyan-dk); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  /* 底部内边距提供「卖点条上浮」的余量。
     注意 .hero 有 overflow:hidden，上浮量吃的是这部分内边距，
     不能指望内边距把按钮推离卡片——那样按钮会被裁掉。
     真正保证按钮可见的是 .pillars 的上浮量（见下）。 */
  padding: 104px 0 96px;
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(74,107,87,.13), transparent 62%),
    radial-gradient(760px 480px at 4% 104%, rgba(201,162,39,.12), transparent 60%),
    var(--mibai);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 460px; height: 460px;
  border: 1px solid rgba(74,107,87,.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--mibai-deep);
  border-radius: 40px;
  padding: 7px 18px 7px 12px;
  font-size: 13px;
  color: var(--txt-2);
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero__badge b { color: var(--songyan-dk); }
.hero__badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--songyan);
  box-shadow: 0 0 0 3px rgba(74,107,87,.16);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--songyan-dk);
  margin-bottom: 6px;
}
.hero__title em {
  font-style: normal;
  color: var(--songyan);
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.1vw, 22px);
  color: var(--txt-2);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.hero__en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--jin);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero__desc {
  font-size: 16.5px;
  color: var(--txt-2);
  line-height: 2;
  max-width: 540px;
}

/* Hero 视觉卡 */
.hero__visual { position: relative; }
.hero__frame {
  background: linear-gradient(155deg, #22402F, #2D5A3D 55%, #3A6B4A);
  border-radius: 22px;
  padding: 46px 40px;
  color: #F2F0E6;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__frame::before {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.hero__frame .tag {
  display: inline-block;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  padding: 4px 15px;
  font-size: 12.5px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero__frame h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero__frame h3 span { color: #D9C77A; }
.hero__plist { display: grid; gap: 13px; }
.hero__plist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.8px;
  line-height: 1.7;
  color: rgba(242,240,230,.9);
}
.hero__plist svg { flex-shrink: 0; margin-top: 5px; }
.hero__frame .seal {
  position: absolute;
  left: 34px; bottom: -18px;
  width: 62px; height: 62px;
  background: #22402F;
  border: 2px solid rgba(216,178,58,.5);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.15;
  color: #D9C77A;
  text-align: center;
  letter-spacing: 1px;
  transform: rotate(-6deg);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.hero__frame { padding-bottom: 62px; }

/* ---------- 7. 卖点条 ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  /* 不再用负 margin 上浮——上浮会压住 Hero 的按钮行
     （.hero 有 overflow:hidden，按钮被裁掉，能点但看不见）。
     改为与 Hero 之间的正向留白，卡片完整落在按钮行下方。 */
  margin-top: 22px;
  position: relative;
  z-index: 6;
}
.pillar {
  padding: 40px 34px;
  border-right: 1px solid var(--mibai-deep);
  transition: var(--trans);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: #FDFCF8; }
.pillar__ico {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar__ico--a { background: rgba(74,107,87,.12); color: var(--songyan); }
.pillar__ico--b { background: rgba(176,129,47,.14); color: var(--zhehuang); }
.pillar__ico--c { background: rgba(61,90,107,.13); color: var(--daiqing); }
.pillar h3 { font-family: var(--font-serif); font-size: 20px; color: var(--songyan-dk); margin-bottom: 10px; letter-spacing: .5px; }
.pillar p { font-size: 14.8px; color: var(--txt-2); line-height: 1.85; }

/* ---------- 8. 产品网格 ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.pcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--songyan);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pcard--feiyi { border-top-color: var(--feiyi); }
.pcard--zhehuang { border-top-color: var(--zhehuang); }
.pcard--daiqing { border-top-color: var(--daiqing); }
.pcard--tengzi { border-top-color: var(--tengzi); }
.pcard__line {
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--songyan);
  margin-bottom: 12px;
}
.pcard--feiyi .pcard__line { color: var(--feiyi); }
.pcard--zhehuang .pcard__line { color: var(--zhehuang); }
.pcard--daiqing .pcard__line { color: var(--daiqing); }
.pcard--tengzi .pcard__line { color: var(--tengzi); }
.pcard h3 { font-family: var(--font-serif); font-size: 21px; color: var(--songyan-dk); margin-bottom: 8px; letter-spacing: .5px; }
.pcard__spec {
  font-size: 13px;
  color: var(--txt-3);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--mibai-deep);
}
.pcard ul { display: grid; gap: 9px; margin-bottom: 22px; }
.pcard li {
  font-size: 14.5px;
  color: var(--txt-2);
  line-height: 1.72;
  padding-left: 20px;
  position: relative;
}
.pcard li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--songyan);
  opacity: .55;
}
.pcard--feiyi li::before { background: var(--feiyi); }
.pcard--zhehuang li::before { background: var(--zhehuang); }
.pcard--daiqing li::before { background: var(--daiqing); }
.pcard--tengzi li::before { background: var(--tengzi); }
.pcard__foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--mibai-deep);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.pcard__price {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--songyan-dk);
}
.pcard__price small { font-size: 13px; font-weight: 400; color: var(--txt-3); font-family: var(--font-sans); }
.pcard__tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 30px;
  background: rgba(74,107,87,.1);
  color: var(--songyan);
  font-weight: 600;
}
.pcard--feiyi .pcard__tag { background: rgba(164,85,63,.1); color: var(--feiyi); }
.pcard--zhehuang .pcard__tag { background: rgba(176,129,47,.12); color: #8A6D1A; }
.pcard--daiqing .pcard__tag { background: rgba(61,90,107,.1); color: var(--daiqing); }

/* ---------- 9. 内容块 ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.split--rev .split__media { order: 2; }

.card-soft {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--songyan);
}
.card-soft--gold { border-left-color: var(--jin); background: #FDF6E3; }
.card-soft--note { border-left-color: var(--zhehuang); background: #FBF6EA; }

.pain-list { display: grid; gap: 0; }
.pain {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mibai-deep);
}
.pain:last-child { border-bottom: none; }
.pain__no {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--jin);
  flex-shrink: 0;
  width: 40px;
  padding-top: 3px;
  letter-spacing: 1px;
}
.pain h4 { font-size: 16.5px; color: var(--songyan-dk); margin-bottom: 6px; font-weight: 700; }
.pain p { font-size: 14.8px; color: var(--txt-2); line-height: 1.82; }

/* 深色区块内的痛点列表 / 引用 反色处理 */
.section--song .pain { border-bottom-color: rgba(255,255,255,.16); }
.section--song .pain__no { color: #D9C77A; }
.section--song .pain h4 { color: #fff; }
.section--song .pain p { color: rgba(242,240,230,.78); }

.section--song .card-soft { background: rgba(255,255,255,.07); border-left-color: #D9C77A; box-shadow: none; }
.section--song .card-soft .quote { color: #fff; }
.section--song .card-soft p { color: rgba(242,240,230,.8); }
.section--song .card-soft .h3, .section--song .card-soft .h4 { color: #fff; }
.section--song .orn::before, .section--song .orn::after { background: linear-gradient(90deg, transparent, #D9C77A); }
.section--song .orn::after { background: linear-gradient(90deg, #D9C77A, transparent); }
.section--song .txt-2, .section--song .txt-3 { color: rgba(242,240,230,.75) !important; }
.section--song .evi-card p { color: rgba(242,240,230,.78); }
.section--song .evi-card .status { background: rgba(255,255,255,.13); color: #D9C77A; }

/* 时间线 */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--songyan), var(--mibai-deep));
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -33px; top: 9px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--mibai);
  border: 2.5px solid var(--songyan);
}
.tl-item__year {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--jin);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tl-item h4 { font-size: 16.5px; color: var(--songyan-dk); margin-bottom: 5px; }
.tl-item p { font-size: 14.5px; color: var(--txt-2); line-height: 1.8; }

/* 数据条 */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 16px; }
.stat__num {
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--jin);
  line-height: 1.15;
  letter-spacing: 1px;
}
.stat__num small { font-size: 15px; margin-left: 2px; }
.stat__lb { font-size: 14px; color: rgba(242,240,230,.78); margin-top: 8px; letter-spacing: 1px; }

/* 引用 */
.quote {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.85;
  letter-spacing: 1px;
  color: var(--songyan-dk);
  padding-left: 28px;
  border-left: 3px solid var(--jin);
}
.section--ink .quote, .section--song .quote { color: #fff; }
.quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--txt-3);
  margin-top: 16px;
  letter-spacing: 1px;
}
.section--song .quote cite { color: rgba(255,255,255,.6); }

/* 证据/信任墙 */
.evidence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.evi-card {
  background: #fff;
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius-sm);
  padding: 28px 26px;
  transition: var(--trans);
}
.evi-card:hover { border-color: var(--songyan); box-shadow: var(--shadow); }
.evi-card__ico { color: var(--songyan); margin-bottom: 14px; }
.evi-card h4 { font-size: 16.5px; color: var(--songyan-dk); margin-bottom: 8px; }
.evi-card p { font-size: 14px; color: var(--txt-2); line-height: 1.8; }
.evi-card .status {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 3px 11px;
  border-radius: 20px;
  background: rgba(74,107,87,.1);
  color: var(--songyan);
  font-weight: 600;
}

/* ---------- 9b. 使用场景（首页） ---------- */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.scene {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--songyan);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.scene:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.scene--gold { border-left-color: var(--jin); }
.scene__no {
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--txt-3);
  margin-bottom: 12px;
}
.scene h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--songyan-dk);
  margin-bottom: 10px;
  letter-spacing: .4px;
  line-height: 1.5;
}
.scene__desc {
  font-size: 14.5px;
  color: var(--txt-2);
  line-height: 1.8;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--mibai-deep);
}
.scene__list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}
.scene__list li {
  font-size: 14.5px;
  color: var(--txt-2);
  line-height: 1.72;
  padding-left: 20px;
  position: relative;
}
.scene__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--songyan);
  opacity: .55;
}
.scene--gold .scene__list li::before { background: var(--jin); }
.scene__link { margin-top: auto; padding-top: 4px; }
.scene__link a {
  font-size: 14px;
  font-weight: 600;
  color: var(--songyan);
  border-bottom: 1px solid rgba(74,107,87,.3);
  padding-bottom: 2px;
  transition: var(--trans);
}
.scene__link a:hover { color: var(--songyan-dk); border-bottom-color: var(--songyan-dk); }

/* ---------- 10. FAQ（GEO 友好） ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--mibai-deep);
  transition: var(--trans);
}
.faq__item.open { border-color: rgba(74,107,87,.35); box-shadow: var(--shadow); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--songyan-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  line-height: 1.65;
}
.faq__q:hover { background: #FDFCF8; }
.faq__ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq__ico::before, .faq__ico::after {
  content: "";
  position: absolute;
  background: var(--songyan);
  border-radius: 2px;
  transition: var(--trans);
}
.faq__ico::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq__ico::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__item.open .faq__ico::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq__a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.9;
}
.faq__a-inner p { margin-bottom: 10px; }
.faq__a-inner p:last-child { margin-bottom: 0; }
.faq__a-inner strong { color: var(--songyan-dk); }

/* ---------- 11. CTA 带 ---------- */
.cta-band {
  background: linear-gradient(140deg, #22402F, #2D5A3D 55%, #3A6B4A);
  color: #F2F0E6;
  border-radius: var(--radius);
  padding: 62px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.cta-band::before { width: 300px; height: 300px; left: -110px; top: -110px; }
.cta-band::after { width: 220px; height: 220px; right: -80px; bottom: -80px; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
}
.cta-band p { color: rgba(242,240,230,.85); max-width: 620px; margin: 0 auto; font-size: 16px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- 12. 页脚 ---------- */
.footer {
  background: var(--mojin);
  color: rgba(232,229,218,.72);
  padding: 68px 0 0;
  font-size: 14.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer .brand__name { color: #F2F0E6; }
.footer .brand__en { color: rgba(232,229,218,.45); }
.footer__desc { margin-top: 20px; line-height: 1.9; color: rgba(232,229,218,.66); font-size: 14px; max-width: 320px; }
.footer__slogan {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--jin);
  letter-spacing: 2px;
}
.footer h4 {
  color: #F2F0E6;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: rgba(232,229,218,.7); transition: var(--trans); font-size: 14.3px; }
.footer__links a:hover { color: var(--jin); padding-left: 4px; }
.footer__info { display: grid; gap: 13px; }
.footer__info li { display: flex; gap: 11px; line-height: 1.75; font-size: 14.3px; }
.footer__info svg { flex-shrink: 0; margin-top: 4px; opacity: .6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.2px;
  color: rgba(232,229,218,.52);
}
.footer__bottom a:hover { color: var(--jin); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- 13. 页面头（内页） ---------- */
.pagehead {
  background:
    radial-gradient(880px 460px at 82% -20%, rgba(74,107,87,.14), transparent 60%),
    var(--mibai-warm);
  padding: 96px 0 62px;
  border-bottom: 1px solid var(--mibai-deep);
}
.pagehead .h1 { margin-bottom: 12px; }
.pagehead__crumb { font-size: 13.5px; color: var(--txt-3); letter-spacing: 1px; margin-bottom: 18px; }
.pagehead__crumb a:hover { color: var(--songyan); }
.pagehead__crumb span { margin: 0 8px; opacity: .55; }

/* ---------- 14. 联系页 ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: start; }
.info-list { display: grid; gap: 0; }
.info-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mibai-deep);
}
.info-item:last-child { border-bottom: none; }
.info-item__ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(74,107,87,.1);
  color: var(--songyan);
  display: flex; align-items: center; justify-content: center;
}
.info-item h4 { font-size: 15.5px; color: var(--songyan-dk); margin-bottom: 5px; }
.info-item p { font-size: 15px; color: var(--txt-2); line-height: 1.8; }
.info-item a { color: var(--songyan); border-bottom: 1px solid rgba(74,107,87,.3); }
.info-item a:hover { color: var(--songyan-dk); border-bottom-color: var(--songyan-dk); }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 42px 40px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--songyan-dk);
  margin-bottom: 8px;
}
.field label .req { color: var(--yinzhang); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius-sm);
  background: var(--mibai-warm);
  font-family: inherit;
  font-size: 15px;
  color: var(--txt);
  transition: var(--trans);
  outline: none;
}
.field textarea { resize: vertical; min-height: 124px; line-height: 1.75; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--songyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,107,87,.1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--txt-3); line-height: 1.75; margin-top: 16px; }
.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(74,107,87,.09);
  border-left: 3px solid var(--songyan);
  font-size: 14.5px;
  color: var(--songyan-dk);
  display: none;
}
.form-msg.show { display: block; }

/* 地图占位 */
.map-hold {
  background:
    repeating-linear-gradient(45deg, rgba(74,107,87,.045) 0 12px, transparent 12px 24px),
    var(--mibai-warm);
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--txt-3);
  text-align: center;
  padding: 24px;
}
.map-hold svg { color: var(--songyan); opacity: .55; }
.map-hold p { font-size: 14px; line-height: 1.8; max-width: 400px; }

/* ---------- 15. 二维码卡 ---------- */
/* 官方渠道二维码区
   三张卡片需 520px（3×156 + 2×26），普通 1fr 左栏仅约 499px 装不下。
   解法：左栏用 minmax 保底宽度，确保三张卡片一行容纳，且不打乱两栏配对。
   窄屏（≤1024 单栏）与手机档自然换行，卡片保持不变形。 */
.qr-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 26px;
  margin-top: 28px;
}
@media (min-width: 1025px) {
  .contact-grid { grid-template-columns: minmax(520px, 1fr) 1.15fr; }
  .qr-row { flex-wrap: nowrap; }
}
.qr-card {
  background: #fff;
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  width: 156px;
  min-height: 219px;
  display: flex;
  flex-direction: column;
}
.qr-card__box {
  width: 116px; height: 116px;
  margin: 0 auto 12px;
  background:
    repeating-linear-gradient(0deg, rgba(31,74,51,.07) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, rgba(31,74,51,.07) 0 8px, transparent 8px 16px),
    #FDFCF8;
  border: 1px dashed var(--mibai-deep);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px;
  color: var(--txt-3);
  line-height: 1.4;
}
.qr-card p { font-size: 13.5px; color: var(--songyan-dk); font-weight: 600; min-height: 34px; }
.qr-card small { display: block; font-size: 11.5px; color: var(--txt-3); font-weight: 400; margin-top: 3px; }

/* ---------- 16. 工具类 ---------- */
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 46px; }
.mb-m { margin-bottom: 28px; }
.tc { text-align: center; }
.tc .btn-row { justify-content: center; }
.txt-2 { color: var(--txt-2); }
.txt-3 { color: var(--txt-3); }
.small { font-size: 13.5px; }
.compliance-note {
  background: #FBF6EA;
  border-left: 4px solid var(--zhehuang);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  font-size: 13.8px;
  color: var(--txt-2);
  line-height: 1.85;
  margin-top: 30px;
}
.compliance-note strong { color: var(--songyan-dk); }

/* 动画 */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* 卖点条（.pillars）防遮挡兜底。
   正常靠 .pillars 的正向 margin-top 保证不重叠；
   若因字体/尺寸变化导致仍贴住按钮行，JS 会加此类再退让一次。 */
.hero.pillars-overlap .pillars { margin-top: 40px; }

/* 分隔装饰 */
.orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}
.orn::before, .orn::after {
  content: "";
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--jin));
}
.orn::after { background: linear-gradient(90deg, var(--jin), transparent); }

/* ---------- 17. 响应式 ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 46px; }
  .hero__desc { max-width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  /* 品牌区第二档：平板按比例收（桌面档 × 0.76） */
  .brand { gap: 14px; }
  .brand__mark { height: 53px; width: auto; transform: translateY(-2px); }
  .brand__name { font-size: 26px; letter-spacing: 2.6px; }
  .brand__en { font-size: 12px; letter-spacing: 1.9px; }
}

@media (max-width: 860px) {
  .nav__menu {
    position: fixed;
    inset: 96px 0 auto 0;
    background: var(--mibai);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 26px;
    border-bottom: 1px solid var(--mibai-deep);
    box-shadow: 0 14px 30px rgba(31,46,38,.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: var(--trans);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .nav__menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 12px; border-bottom: 1px solid var(--mibai-deep); border-radius: 0; }
  .nav__link.active::after { display: none; }
  .nav__link.active { color: var(--songyan-dk); background: rgba(74,107,87,.06); }
  .nav__cta { margin: 16px 0 0; text-align: center; padding: 15px; }
  .nav__toggle { display: block; }

  .section { padding: 68px 0; }
  .section--tight { padding: 52px 0; }
  .pillars { grid-template-columns: 1fr; margin-top: 18px; }
  .pillar { border-right: none; border-bottom: 1px solid var(--mibai-deep); }
  .pillar:last-child { border-bottom: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }
  .evidence { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 46px 28px; }
  .form-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .quote { padding-left: 20px; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .nav__inner { padding: 0 20px; height: 86px; }
  .nav__menu { inset: 86px 0 auto 0; }
  /* 品牌区第三档：手机档（桌面档 × 0.61） */
  .brand__mark { height: 55px; width: auto; transform: translateY(-1.5px); }
  .brand__name { font-size: 28px; letter-spacing: 2px; }
  .brand__en { font-size: 12.5px; letter-spacing: 1.5px; }
  .brand { gap: 12px; }
  .section { padding: 54px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  /* 与 .pillars 的留白联动，窄屏收紧 */
  .hero { padding: 62px 0 58px; }
  .hero__frame { padding: 32px 24px 56px; }
  .hero__frame .seal { left: 22px; bottom: -16px; width: 54px; height: 54px; font-size: 11.5px; }
  .btn { padding: 13px 26px; font-size: 15px; }
  .btn-row { gap: 11px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   悬浮咨询组件（全站）
   ========================================================================== */

.dock {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* --- 主按钮 --- */
.dock__btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--songyan-dk);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(31, 46, 38, .26);
  transition: var(--trans);
  position: relative;
}
.dock__btn:hover { background: var(--songyan); transform: translateY(-1px); }
.dock__btn svg { width: 19px; height: 19px; flex: none; }
.dock__btn .dock__btn-txt { white-space: nowrap; }

/* 呼吸提示点 */
.dock__pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--jin);
  box-shadow: 0 0 0 0 rgba(201, 162, 39, .7);
  animation: dockPulse 2.4s infinite;
}
@keyframes dockPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 162, 39, .65); }
  70%  { box-shadow: 0 0 0 11px rgba(201, 162, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}
.dock.open .dock__pulse,
.dock__btn.seen .dock__pulse { display: none; }

/* --- 展开面板 --- */
.dock__panel {
  width: 274px;
  background: var(--mibai-warm);
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: var(--trans);
}
.dock.open .dock__panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.dock__head {
  background: var(--songyan-dk);
  color: #fff;
  padding: 17px 19px 15px;
}
.dock__head h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 17px;
  margin-bottom: 3px;
}
.dock__head p {
  font-size: 12.5px;
  color: rgba(242, 240, 230, .78);
  line-height: 1.6;
}

.dock__list { padding: 9px; }

.dock__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 11px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-align: left;
  width: 100%;
}
.dock__item:hover { background: rgba(74, 107, 87, .09); }

.dock__ico {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(74, 107, 87, .11);
  color: var(--songyan-dk);
}
.dock__ico svg { width: 18px; height: 18px; }
.dock__item--mail .dock__ico { background: rgba(176, 129, 47, .13); color: var(--zhehuang); }
.dock__item--tel  .dock__ico { background: rgba(61, 90, 107, .12); color: var(--daiqing); }
.dock__item--wx   .dock__ico { background: rgba(74, 107, 87, .12); color: var(--songyan); }

.dock__meta { min-width: 0; }
.dock__meta b {
  display: block;
  font-size: 14.5px;
  color: var(--songyan-dk);
  font-weight: 600;
  line-height: 1.5;
}
.dock__meta span {
  display: block;
  font-size: 12.5px;
  color: var(--txt-3);
  line-height: 1.55;
}

.dock__foot {
  border-top: 1px solid var(--mibai-deep);
  padding: 11px 19px 13px;
  font-size: 11.5px;
  color: var(--txt-3);
  line-height: 1.65;
}

/* 回到顶部 */
.dock__top {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mibai-warm);
  border: 1px solid var(--mibai-deep);
  color: var(--songyan-dk);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: var(--trans);
  align-self: flex-end;
  opacity: 0;
  pointer-events: none;
}
.dock__top.show { opacity: 1; pointer-events: auto; }
.dock__top:hover { background: var(--songyan-dk); color: #fff; border-color: var(--songyan-dk); }

/* --- 表单提交状态 --- */
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* --- 移动端 --- */
@media (max-width: 640px) {
  .dock { right: 14px; bottom: 76px; }
  .dock__btn { padding: 12px 16px; font-size: 14.5px; }
  .dock__panel { width: calc(100vw - 28px); max-width: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .dock__pulse { animation: none; }
  .dock__panel, .dock__btn, .dock__top { transition: none; }
}

/* ==========================================================================
   技术资讯栏目
   ========================================================================== */

/* --- 文章列表 --- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--mibai-warm);
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 107, 87, .3);
}

.post-card__top {
  padding: 22px 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.post-card__cat {
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(74, 107, 87, .1);
  color: var(--songyan-dk);
}
.post-card__cat--a { background: rgba(74, 107, 87, .1);  color: var(--songyan-dk); }
.post-card__cat--b { background: rgba(176, 129, 47, .13); color: var(--zhehuang); }
.post-card__cat--c { background: rgba(61, 90, 107, .12); color: var(--daiqing); }
.post-card__date { font-size: 12.5px; color: var(--txt-3); }

.post-card__body { padding: 14px 24px 0; flex: 1; }
.post-card__body h3 {
  font-family: var(--font-serif);
  font-size: 19.5px;
  line-height: 1.5;
  color: var(--songyan-dk);
  font-weight: 700;
  margin-bottom: 10px;
}
.post-card__body h3 a { transition: color var(--trans); }
.post-card__body h3 a:hover { color: var(--songyan); }
.post-card__body p {
  font-size: 14.6px;
  line-height: 1.85;
  color: var(--txt-2);
}

.post-card__foot {
  padding: 18px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.post-card__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--songyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans);
}
.post-card__more:hover { gap: 9px; }
.post-card__read { font-size: 12.5px; color: var(--txt-3); }

/* --- 文章正文 --- */
.article {
  max-width: 780px;
  margin: 0 auto;
}
.article__head { margin-bottom: 34px; }
.article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--txt-3);
  margin-bottom: 18px;
}
.article__title {
  font-family: var(--font-serif);
  font-size: clamp(25px, 3.4vw, 37px);
  line-height: 1.42;
  font-weight: 700;
  color: var(--songyan-dk);
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.article__lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--txt-2);
  padding-left: 18px;
  border-left: 3px solid var(--jin);
}

.article__body { font-size: 16.5px; line-height: 2; color: var(--txt); }
.article__body > * + * { margin-top: 22px; }
.article__body h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.5;
  color: var(--songyan-dk);
  font-weight: 700;
  margin-top: 46px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mibai-deep);
}
.article__body h3 {
  font-family: var(--font-serif);
  font-size: 19.5px;
  color: var(--songyan-dk);
  font-weight: 700;
  margin-top: 32px;
}
.article__body p { margin-top: 20px; }
.article__body strong { color: var(--songyan-dk); font-weight: 700; }
.article__body a { color: var(--songyan); border-bottom: 1px solid rgba(74, 107, 87, .3); }
.article__body a:hover { border-bottom-color: var(--songyan); }

.article__body ul, .article__body ol {
  margin-top: 20px;
  padding-left: 4px;
  display: grid;
  gap: 11px;
}
.article__body li {
  position: relative;
  padding-left: 24px;
  line-height: 1.9;
}
.article__body ul > li::before {
  content: "";
  position: absolute;
  left: 5px; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--songyan);
  opacity: .55;
}
.article__body ol { counter-reset: ac; }
.article__body ol > li::before {
  counter-increment: ac;
  content: counter(ac);
  position: absolute;
  left: 0; top: 4px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(74, 107, 87, .12);
  color: var(--songyan-dk);
  font-size: 11.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* 文章内的要点框 */
.article__note {
  background: var(--mibai-warm);
  border-left: 3px solid var(--songyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--txt-2);
}
.article__note strong { color: var(--songyan-dk); }

/* 文章底部 */
.article__foot {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--mibai-deep);
}
.article__tags { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 26px; }
.article__tag {
  font-size: 13px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(74, 107, 87, .08);
  color: var(--txt-2);
}
.article__cta {
  background: linear-gradient(150deg, #22402F 0%, #2D5A3D 100%);
  color: #F2F0E6;
  border-radius: var(--radius);
  padding: 30px 32px;
}
.article__cta h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 21px;
  margin-bottom: 9px;
}
.article__cta p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 240, 230, .82);
  margin-bottom: 18px;
}

/* 相关阅读 */
.related { margin-top: 46px; }
.related h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--songyan-dk);
  margin-bottom: 16px;
}
.related__list { display: grid; gap: 11px; }
.related__list a {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 13px 17px;
  background: var(--mibai-warm);
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--txt);
  transition: var(--trans);
}
.related__list a:hover {
  border-color: rgba(74, 107, 87, .35);
  transform: translateX(3px);
}
.related__list a span { color: var(--jin); font-size: 12.5px; flex: none; }

/* --- 首页资讯入口 --- */
.news-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.news-item {
  background: var(--mibai-warm);
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 107, 87, .3);
}
.news-item__cat {
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: 600;
  color: var(--songyan);
  margin-bottom: 11px;
}
.news-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--songyan-dk);
  font-weight: 700;
  margin-bottom: 10px;
  flex: 1;
}
.news-item p {
  font-size: 14.3px;
  line-height: 1.8;
  color: var(--txt-2);
  margin-bottom: 15px;
}
.news-item__date { font-size: 12.5px; color: var(--txt-3); }

@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; gap: 18px; }
  .article__body { font-size: 16px; }
  .article__cta { padding: 24px 22px; }
}

/* ---------- 信用认证专区（AAA 级信用企业） ---------- */

.credit-panel {
  margin-top: 26px;
  background: linear-gradient(135deg, #FDFBF5 0%, #F7F5ED 100%);
  border: 1px solid var(--mibai-deep);
  border-left: 3px solid var(--jin);
  border-radius: var(--radius);
  padding: 30px 32px 26px;
  box-shadow: var(--shadow);
}
.credit-panel__top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
.credit-panel__seal {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--jin);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--zhehuang);
  letter-spacing: .5px;
  line-height: 1.1;
  text-align: center;
}
.credit-panel__hd h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--songyan-dk);
  margin-bottom: 6px;
  line-height: 1.4;
}
.credit-panel__hd p {
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.75;
}
.credit-panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}
.credit-badge {
  font-size: 12.5px;
  padding: 5px 13px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--mibai-deep);
  color: var(--songyan-dk);
  font-weight: 600;
}
.credit-badge--key {
  background: rgba(201,162,39,.1);
  border-color: rgba(201,162,39,.4);
  color: #8A6A12;
}

.credit-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--mibai-deep);
  border: 1px solid var(--mibai-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.credit-meta__row {
  background: #fff;
  padding: 11px 15px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
}
.credit-meta__k {
  flex: 0 0 88px;
  color: var(--txt-3);
}
.credit-meta__v {
  color: var(--txt);
  line-height: 1.65;
  word-break: break-all;
}
.credit-meta__v br + * { margin-top: 2px; }
.credit-meta__row:last-child { grid-column: 1 / -1; }

.credit-note {
  margin-top: 16px;
  font-size: 12.8px;
  line-height: 1.85;
  color: var(--txt-3);
  padding-left: 13px;
  border-left: 2px solid var(--mibai-deep);
}
.credit-note a { color: var(--songyan); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 信用证书图片墙 ---------- */
.cert-wall {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--mibai-deep);
}
.cert-wall__hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.cert-wall__hd h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--songyan-dk);
  letter-spacing: .3px;
}
.cert-wall__hd span {
  font-size: 12.5px;
  color: var(--txt-3);
}

/* 牌匾单独一行（横版金底，做成主视觉） */
.cert-hero {
  margin-bottom: 18px;
}
.cert-hero__figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--mibai-deep);
  box-shadow: 0 4px 18px rgba(74,107,87,.10);
  background: #fff;
  cursor: zoom-in;
  transition: box-shadow .25s ease, transform .25s ease;
}
.cert-hero__figure:hover {
  box-shadow: 0 8px 26px rgba(74,107,87,.18);
  transform: translateY(-1px);
}
.cert-hero__figure img { display: block; width: 100%; height: auto; }

/* 9 张竖版证书网格 */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cert-grid__figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--mibai-deep);
  background: #fff;
  box-shadow: 0 2px 10px rgba(74,107,87,.07);
  cursor: zoom-in;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.cert-grid__figure:hover {
  box-shadow: 0 7px 20px rgba(74,107,87,.16);
  border-color: rgba(201,162,39,.5);
  transform: translateY(-2px);
}
.cert-grid__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1100 / 1553;
  object-fit: cover;
  background: #fff;
}

/* 证书图注（名称 + 编号） */
.cert-cap {
  display: block;
  padding: 9px 12px 11px;
  border-top: 1px solid var(--mibai-deep);
  background: #fff;
}
.cert-cap__name {
  display: block;
  font-size: 12.8px;
  font-weight: 600;
  color: var(--songyan-dk);
  line-height: 1.5;
  margin-bottom: 3px;
}
.cert-cap__no {
  display: block;
  font-family: var(--font-mono, ui-monospace, "SFMono-Regular", Consolas, monospace);
  font-size: 11.4px;
  color: var(--txt-3);
  letter-spacing: .2px;
  word-break: break-all;
}
.cert-hero__figure .cert-cap { padding: 11px 16px 13px; }
.cert-hero__figure .cert-cap__name { font-size: 14.5px; }
.cert-hero__figure .cert-cap__no { font-size: 12.2px; }

/* 灯箱 */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px 22px;
  background: rgba(28,34,30,.9);
  backdrop-filter: blur(3px);
  cursor: zoom-out;
}
.cert-lightbox.is-open { display: flex; }
.cert-lightbox img {
  max-width: min(920px, 96vw);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0,0,0,.5);
  background: #fff;
}
.cert-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.cert-lightbox__close:hover { background: rgba(255,255,255,.2); }

.cert-tip {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--txt-3);
}

/* 首页信任条 */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  padding: 17px 22px;
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--mibai-deep);
  border-bottom: 1px solid var(--mibai-deep);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.6px;
  color: var(--songyan-dk);
  font-weight: 600;
  letter-spacing: .2px;
}
.trust-bar__item svg { color: var(--songyan); flex: 0 0 auto; }
.trust-bar__item--key { color: #8A6A12; }
.trust-bar__item--key svg { color: var(--jin); }
/* 信任条可点击项（跳转证书区） */
a.trust-bar__item {
  text-decoration: none;
  border-bottom: 1px dashed rgba(201,162,39,.55);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
a.trust-bar__item:hover { color: #6E5309; border-bottom-color: rgba(201,162,39,.95); }
a.trust-bar__item em {
  font-style: normal;
  font-size: 12.2px;
  font-weight: 500;
  opacity: .78;
}
a.trust-bar__item:hover em { opacity: 1; }

/* 页脚资质徽标 */
.footer__cert {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
  max-width: 300px;
}
.footer__cert span {
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.footer__cert span:first-child {
  background: rgba(201,162,39,.16);
  border-color: rgba(201,162,39,.4);
  color: #E2C97A;
}

@media (max-width: 820px) {
  .credit-meta { grid-template-columns: 1fr; }
  .credit-meta__row { flex-direction: column; gap: 4px; }
  .credit-meta__k { flex: none; }
  .credit-panel { padding: 24px 20px 20px; }
  .credit-panel__top { flex-direction: row; gap: 14px; }
  .credit-panel__seal { width: 50px; height: 50px; font-size: 13.5px; }
  .trust-bar { gap: 9px 18px; padding: 15px 16px; }
  .trust-bar__item { font-size: 12.8px; }
  .footer__cert { max-width: 100%; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cert-lightbox { padding: 16px 12px; }
  .cert-lightbox img { max-width: 96vw; max-height: 88vh; }
  .cert-lightbox__close { top: 10px; right: 12px; width: 34px; height: 34px; font-size: 18px; }
}

/* 打印 */
@media print {
  .nav, .footer, .cta-band, .dock { break-inside: avoid; }
  .dock { display: none; }
  body { background: #fff; }
}
