/* ==========================================================================
   青禾基金 · 静态复刻版 样式表
   设计基调：墨绿 + 香槟金（与原站的宝蓝 + 金刻意区分），保持同样的信息结构
   ========================================================================== */

:root {
  /* 主色：墨绿系 */
  --p-900: #05221b;
  --p-800: #0a3b2e;
  --p-700: #0e5340;
  --p-600: #126b52;
  --p-500: #178a68;
  --p-400: #22ab83;
  --p-300: #4ec9a2;
  --p-100: #dff3ec;
  --p-50:  #f1faf6;

  /* 辅色：香槟金 */
  --g-600: #b8862c;
  --g-500: #d5a441;
  --g-400: #eec575;
  --g-100: #fbf2df;

  /* 语义色：涨红跌绿（中国市场习惯） */
  --rise: #d94436;
  --fall: #17a673;
  --warn: #d5a441;

  /* 中性色 */
  --bg:      #f3f6f4;
  --card:    #ffffff;
  --text:    #14231d;
  --text-2:  #566a62;
  --text-3:  #94a5a0;
  --line:    #e8efec;
  --fill:    #f4f8f6;

  /* 渐变 */
  --grad-brand: linear-gradient(135deg, #0a3b2e 0%, #0f6047 48%, #1a8f6c 100%);
  --grad-btn:   linear-gradient(135deg, #0e5340 0%, #178a68 60%, #22ab83 100%);
  --grad-gold:  linear-gradient(135deg, #eec575 0%, #d5a441 55%, #b8862c 100%);

  /* 阴影 */
  --sd-card:  0 4px 18px rgba(10, 59, 46, .05);
  --sd-float: 0 12px 32px rgba(10, 59, 46, .14);
  --sd-brand: 0 8px 20px rgba(23, 138, 104, .30);
  --sd-gold:  0 8px 18px rgba(213, 164, 65, .32);

  /* 圆角 / 尺寸 */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --app-w: 430px;
  --nav-h: 62px;

  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-num: "DIN Alternate", "Bahnschrift", "PingFang SC", system-ui, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #0a1a15;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
input, button, textarea { font-family: inherit; }
button { border: none; background: none; padding: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.num { font-family: var(--font-num); font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* --------------------------------------------------------------------------
   桌面端背景（手机宽度以下自动隐藏）
   -------------------------------------------------------------------------- */
.desk-bg { position: fixed; inset: 0; overflow: hidden; z-index: 0; }
.desk-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.desk-orb.o1 { width: 620px; height: 620px; left: -160px; top: -180px; background: #10664e; }
.desk-orb.o2 { width: 520px; height: 520px; right: -140px; bottom: -160px; background: #8a6b1f; opacity: .35; }
.desk-note {
  position: absolute; left: 8%; top: 50%; transform: translateY(-50%);
  color: #cfe6dd; max-width: 300px;
}
.dn-title { font-size: 26px; font-weight: 800; letter-spacing: .04em; }
.dn-sub { margin-top: 10px; font-size: 13px; color: #7fa397; line-height: 1.7; }
@media (max-width: 1080px) { .desk-note { display: none; } }

/* --------------------------------------------------------------------------
   应用外壳
   -------------------------------------------------------------------------- */
.app {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--app-w);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}
@media (min-width: 520px) {
  .app { min-height: 100vh; box-shadow: 0 0 60px rgba(0,0,0,.45); }
}
#view { min-height: 100vh; }
.page { min-height: 100vh; padding-bottom: calc(var(--nav-h) + 24px); }
.page.no-nav { padding-bottom: 24px; }

/* --------------------------------------------------------------------------
   通用原子组件
   -------------------------------------------------------------------------- */
.card {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--sd-card);
  border: 1px solid var(--line);
}
.wrap { padding: 0 16px; }
.sec { margin-top: 14px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 10px; }
.sec-title { font-size: 17px; font-weight: 800; letter-spacing: .02em; }
.sec-sub { margin-top: 3px; font-size: 11.5px; color: var(--text-3); }
.sec-more { font-size: 12px; color: var(--text-3); display: inline-flex; align-items: center; gap: 3px; }
.sec-more svg { width: 12px; height: 12px; fill: currentColor; }

.btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 50px; border-radius: 999px;
  font-size: 16px; font-weight: 700; letter-spacing: .28em; text-indent: .28em;
  color: #fff; background: var(--grad-btn); box-shadow: var(--sd-brand);
  transition: transform .15s ease, opacity .15s ease;
}
.btn:active { transform: scale(.985); filter: brightness(.96); }
.btn[disabled] { opacity: .6; box-shadow: none; }
.btn.ghost { background: var(--p-50); color: var(--p-600); box-shadow: none; border: 1px solid var(--p-100); }
.btn.sm { height: 38px; font-size: 13.5px; letter-spacing: .06em; text-indent: .06em; }

.pill {
  display: inline-flex; align-items: center; height: 22px; padding: 0 9px;
  border-radius: 7px; font-size: 11px; font-weight: 700;
}
.pill.gold { background: var(--g-100); color: var(--g-600); }
.pill.green { background: var(--p-100); color: var(--p-600); }
.pill.solid { background: var(--grad-gold); color: #4a3305; box-shadow: var(--sd-gold); }

.bar { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 999px; background: var(--grad-btn); }

/* --------------------------------------------------------------------------
   按压反馈（对齐原站手感：transform .16s + 轻微缩放）
   移动端没有 hover，点击时的缩放是唯一的"按下去了"的反馈，不能省。

   ★为什么不用 :active？
   iOS Safari 上，元素自身没有挂 touch 监听时 :active 根本不会触发。
   本站用的是 document 事件委托，卡片自身不挂监听，正好踩中这个坑
   （电脑上正常、手机上没反应）。
   所以改成由 JS 在按下时打 .is-pressed 类，:active 只作为桌面端兜底。
   -------------------------------------------------------------------------- */
.mini, .good, .art, .feature, .row, .line-item, .sh-item,
.logout, .dg-btn, .lh-tab, .pf-code, .promo-btn, .mini-buy, .good-btn,
.total-btns .b, .asset-split > div, .sec-more, .tabs-bar button, .faq-item,
.grid .entry-ico, .quad .entry-ico, .tabbar .cell svg,
.hh-cs, .lh-cs, .pf-set, .f-eye, .clr, .btn, .navbar .back {
  transition: transform .16s ease, background .16s ease, filter .16s ease, opacity .16s ease;
}
/* 可点但不是 button 的元素，桌面端也要有手型 */
.mini, .good, .art, .feature, .row, .line-item, .sh-item,
.asset-split > div, .faq-item, .notice, .good-cover { cursor: pointer; }

/* 整块卡片：轻缩放。理财页产品卡整块不可点（只有"立即申购"可点），
   所以不给它加缩放，避免按按钮时整张卡跟着一起动 */
.mini.is-pressed, .good.is-pressed,
.mini:active, .good:active { transform: scale(.985); }

.art.is-pressed, .feature.is-pressed,
.art:active, .feature:active { transform: scale(.99); }

.logout.is-pressed, .logout:active { transform: scale(.99); }

/* 列表行 / 折叠项：缩放 + 底色 */
.row.is-pressed, .faq-item.is-pressed,
.row:active, .faq-item:active { transform: scale(.99); background: var(--p-50); }

.line-item.is-pressed, .sh-item.is-pressed,
.line-item:active, .sh-item:active { transform: scale(.985); }

/* 主按钮 */
.btn.is-pressed, .btn:active { transform: scale(.985); filter: brightness(.96); }

/* 小按钮：缩放 + 压暗 */
.dg-btn.is-pressed, .promo-btn.is-pressed, .mini-buy.is-pressed,
.good-btn.is-pressed, .total-btns .b.is-pressed,
.dg-btn:active, .promo-btn:active, .mini-buy:active,
.good-btn:active, .total-btns .b:active { transform: scale(.95); filter: brightness(.95); }

.lh-tab.is-pressed, .lh-tab:active { transform: scale(.94); }
.pf-code.is-pressed, .pf-code:active { transform: scale(.94); }
.sec-more.is-pressed, .sec-more:active { opacity: .6; }
.tabs-bar button.is-pressed, .tabs-bar button:active { transform: scale(.94); }

/* 宫格入口：只缩图标，文字不动（和原站一致） */
.grid .entry.is-pressed .entry-ico,
.quad .entry.is-pressed .entry-ico,
.grid .entry:active .entry-ico,
.quad .entry:active .entry-ico { transform: scale(.9); }

/* 圆形小按钮 */
.hh-cs.is-pressed, .lh-cs.is-pressed, .pf-set.is-pressed,
.f-eye.is-pressed, .clr.is-pressed, .navbar .back.is-pressed,
.hh-cs:active, .lh-cs:active, .pf-set:active,
.f-eye:active, .clr:active, .navbar .back:active { transform: scale(.88); }

/* 资产卡里的两块（项目持仓 / 历史收益） */
.asset-split > div.is-pressed,
.asset-split > div:active { transform: scale(.97); }

/* 底部导航：按下时图标回缩 */
.tabbar .cell.is-pressed svg,
.tabbar .cell:active svg { transform: scale(.86); }

/* 输入框整体：聚焦时轻微抬起 */
.field { transition: border-color .18s, background .18s; }

.empty { padding: 70px 20px; text-align: center; }
.empty svg { width: 64px; height: 64px; fill: var(--line); }
.empty .t { margin-top: 12px; font-size: 15px; font-weight: 700; color: var(--text-2); }
.empty .s { margin-top: 6px; font-size: 12.5px; color: var(--text-3); }

.footnote { margin: 18px 16px 6px; text-align: center; font-size: 11px; color: var(--text-3); line-height: 1.7; }
.list-end { margin: 18px 0 4px; text-align: center; font-size: 11.5px; color: var(--text-3); }

/* 顶部返回栏（详情页） */
.navbar {
  position: sticky; top: 0; z-index: 30;
  height: 54px; display: flex; align-items: center; padding: 0 12px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
/* 返回按钮必须在标题之上，否则标题会盖住它导致点不动 */
.navbar .back {
  position: relative; z-index: 2;
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; background: var(--fill);
  transition: transform .16s, background .16s;
}
.navbar .back:active { transform: scale(.9); background: var(--p-100); }
.navbar .back svg { width: 17px; height: 17px; fill: var(--text); }
/* 标题绝对居中并且不吃点击事件 */
.navbar .nb-title {
  position: absolute; left: 0; right: 0; z-index: 1;
  text-align: center; font-size: 16px; font-weight: 800;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   底部导航
   -------------------------------------------------------------------------- */
.tabbar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--app-w); z-index: 60;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.tabbar .cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  font-size: 10.5px; color: var(--text-3); position: relative;
}
.tabbar .cell svg { width: 22px; height: 22px; fill: var(--text-3); transition: fill .18s; }
.tabbar .cell.active { color: var(--p-600); font-weight: 700; }
.tabbar .cell.active svg { fill: var(--p-600); }
.tabbar .cell.active::after {
  content: ''; position: absolute; bottom: 7px; width: 4px; height: 4px;
  border-radius: 50%; background: var(--p-500);
}
/* 中间客服按钮做成凸起 */
.tabbar .cell.raise svg { width: 24px; height: 24px; }
.tabbar .cell.raise .knob {
  width: 44px; height: 44px; margin-top: -18px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-btn); box-shadow: var(--sd-brand);
}
.tabbar .cell.raise .knob svg { fill: #fff; }

/* --------------------------------------------------------------------------
   浮层：toast / 底部面板 / 弹窗
   -------------------------------------------------------------------------- */
.toast {
  position: fixed; top: 74px; left: 50%; transform: translateX(-50%);
  z-index: 9999; max-width: 78vw; padding: 11px 18px;
  border-radius: 12px; font-size: 13.5px; font-weight: 500; line-height: 1.45;
  color: #fff; background: rgba(8, 40, 31, .93);
  box-shadow: 0 12px 30px rgba(5, 34, 27, .3);
  backdrop-filter: blur(10px); text-align: center; pointer-events: none;
  animation: toast-in .22s ease;
}
.toast.out { animation: toast-out .22s ease forwards; }
@keyframes toast-in  { from { opacity: 0; transform: translate(-50%, -14px); } }
@keyframes toast-out { to   { opacity: 0; transform: translate(-50%, -14px); } }

.mask {
  position: fixed; inset: 0; z-index: 900;
  display: flex; justify-content: center;
  background: rgba(5, 26, 21, .45); backdrop-filter: blur(2px);
  animation: fade .2s ease;
}
.mask.bottom { align-items: flex-end; }
.mask.center { align-items: center; }
@keyframes fade { from { opacity: 0; } }

.sheet {
  width: 100%; max-width: var(--app-w);
  padding: 10px 20px calc(26px + env(safe-area-inset-bottom));
  background: var(--card); border-radius: 26px 26px 0 0;
  animation: sheet-up .26s cubic-bezier(.32,.72,.24,1);
}
@keyframes sheet-up { from { transform: translateY(100%); } }
.sheet .handle { width: 38px; height: 4px; margin: 0 auto 14px; border-radius: 999px; background: var(--line); }
.sheet .sh-head { position: relative; padding-bottom: 14px; }
.sheet .sh-title { font-size: 18px; font-weight: 800; }
.sheet .sh-sub { margin-top: 5px; font-size: 12.5px; color: var(--text-3); }
.sheet .sh-close { position: absolute; top: -2px; right: -4px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--fill); }
.sheet .sh-close svg { width: 14px; height: 14px; fill: var(--text-3); }
.sheet .sh-list { display: flex; flex-direction: column; gap: 10px; }
.sheet .sh-item { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: var(--r-md); background: var(--fill); }
.sheet .sh-item:active { background: var(--p-50); }
.sheet .sh-ico { width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--grad-btn); box-shadow: var(--sd-brand); }
.sheet .sh-ico svg { width: 20px; height: 20px; fill: #fff; }
.sheet .sh-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.sheet .sh-name { font-size: 14.5px; font-weight: 700; }
.sheet .sh-desc { margin-top: 3px; font-size: 11.5px; color: var(--text-3); }
.sheet .sh-arrow { width: 15px; height: 15px; fill: var(--text-3); flex-shrink: 0; }
.sheet .sh-tip { margin-top: 16px; text-align: center; font-size: 11px; color: var(--text-3); }

.dialog {
  width: calc(100% - 64px); max-width: 330px;
  background: var(--card); border-radius: var(--r-xl); padding: 22px 20px 12px;
  animation: pop .22s cubic-bezier(.32,.72,.24,1);
}
@keyframes pop { from { transform: scale(.9); opacity: 0; } }
.dialog .dg-title { font-size: 17px; font-weight: 800; text-align: center; }
.dialog .dg-sub { margin-top: 7px; font-size: 12.5px; color: var(--text-3); text-align: center; line-height: 1.6; }
.dialog .dg-body { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.dialog .dg-actions { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dialog .dg-btn { height: 44px; border-radius: 14px; font-size: 14.5px; font-weight: 700; display: grid; place-items: center; }
.dialog .dg-btn.cancel { background: var(--fill); color: var(--text-2); }
.dialog .dg-btn.ok { background: var(--grad-btn); color: #fff; }
.dialog .dg-btn.danger { background: rgba(217,68,54,.1); color: var(--rise); }
.dialog .dg-single { margin-top: 8px; height: 46px; display: grid; place-items: center; font-size: 15px; color: var(--text-2); border-top: 1px solid var(--line); }

/* 线路选项 */
.line-item {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px; border-radius: var(--r-md);
  background: var(--fill); border: 1.5px solid transparent;
}
.line-item.on { background: var(--p-50); border-color: var(--p-300); }
.line-item .ln-name { flex: 1; font-size: 14px; font-weight: 600; }
.line-item .ln-ping { font-size: 13px; font-weight: 800; }
.line-item .ln-ping.good { color: var(--fall); }
.line-item .ln-ping.mid  { color: var(--warn); }
.line-item .ln-check { width: 16px; height: 16px; fill: var(--p-500); }

/* --------------------------------------------------------------------------
   登录 / 注册
   -------------------------------------------------------------------------- */
.auth {
  min-height: 100vh; position: relative; overflow-x: hidden;
  background: linear-gradient(180deg, #e6f3ee 0%, #f3f6f4 42%, #f3f6f4 100%);
  padding-bottom: 30px;
}
.auth .glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.auth .glow.a { width: 300px; height: 300px; top: -110px; left: -80px; background: rgba(34,171,131,.35); }
.auth .glow.b { width: 260px; height: 260px; top: 40px; right: -110px; background: rgba(238,197,117,.4); }
.auth .top { position: relative; padding: 26px 22px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.auth .hero-art { width: 168px; height: 126px; margin: -6px -6px 0 0; }
.auth .intro { position: relative; padding: 18px 22px 22px; }
.auth .h1 { font-size: 30px; font-weight: 900; letter-spacing: .02em; }
.auth .sub { margin-top: 8px; font-size: 13px; color: var(--text-2); }
.auth .form {
  position: relative; margin: 0 16px; padding: 22px 18px 18px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9); border-radius: var(--r-xl);
  box-shadow: var(--sd-float);
}
.auth .tip-red { margin: 16px 20px 0; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--rise); }
.auth .quick { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 0; }
.auth .quick button { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 26px; font-size: 12px; color: var(--text-2); }
.auth .quick button + button { border-left: 1px solid var(--line); }
.auth .quick svg { width: 22px; height: 22px; fill: var(--p-600); }
.auth .back-fab { position: absolute; top: 20px; left: 16px; z-index: 5; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.85); box-shadow: var(--sd-card); }
.auth .back-fab svg { width: 16px; height: 16px; fill: var(--text); }

/* 品牌标识 */
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand .mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand .cn { font-size: 18px; font-weight: 900; letter-spacing: .06em; }
.brand .en { margin-top: 2px; font-size: 9px; letter-spacing: .26em; color: var(--text-3); }
.brand.on-dark .cn { color: #fff; }
.brand.on-dark .en { color: rgba(255,255,255,.62); }

/* 输入框 */
.field {
  display: flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 14px; border-radius: var(--r-md);
  background: var(--fill); border: 1.5px solid transparent;
  transition: border-color .18s, background .18s;
}
.field:focus-within { border-color: var(--p-300); background: #fff; }
.field .f-ico { width: 19px; height: 19px; fill: var(--text-3); flex-shrink: 0; }
.field input { flex: 1; min-width: 0; border: none; outline: none; background: none; font-size: 15px; color: var(--text); }
.field input::placeholder { color: var(--text-3); font-size: 14px; }
.field .f-eye { width: 32px; height: 32px; display: grid; place-items: center; }
.field .f-eye svg { width: 18px; height: 18px; fill: var(--text-3); }
.field + .field { margin-top: 12px; }
.field .cap-img { width: 92px; height: 36px; border-radius: 8px; flex-shrink: 0; }

.form-row { margin-top: 12px; }
.link-right { display: block; margin: 10px 2px 0 auto; font-size: 12.5px; color: var(--text-3); }
.form-foot { margin-top: 16px; text-align: center; font-size: 12.5px; color: var(--text-3); }
.form-foot a { color: var(--p-600); font-weight: 700; margin-left: 4px; }

/* 密码强度 */
.strength { margin: 9px 4px 0; display: flex; align-items: center; gap: 8px; }
.strength .bars { display: flex; gap: 4px; flex: 1; }
.strength .bars i { flex: 1; height: 3px; border-radius: 999px; background: var(--line); }
.strength.s1 .bars i:nth-child(1) { background: var(--rise); }
.strength.s2 .bars i:nth-child(-n+2) { background: var(--warn); }
.strength.s3 .bars i { background: var(--fall); }
.strength .txt { font-size: 11px; color: var(--text-3); }

/* 协议勾选 */
.agree { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2); }
.agree .box { width: 17px; height: 17px; flex-shrink: 0; border-radius: 5px; border: 1.5px solid var(--text-3); display: grid; place-items: center; }
.agree .box.on { background: var(--p-500); border-color: var(--p-500); }
.agree .box svg { width: 11px; height: 11px; fill: #fff; }
.agree a { color: var(--p-600); font-weight: 600; }

.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   首页
   -------------------------------------------------------------------------- */
.home-hero {
  position: relative; padding: 18px 16px 74px;
  background: var(--grad-brand);
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.home-hero::after {
  content: ''; position: absolute; right: -70px; top: -90px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.home-hero .hh-top { position: relative; display: flex; align-items: center; justify-content: space-between; z-index: 2; }
.home-hero .hh-cs { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); }
.home-hero .hh-cs svg { width: 19px; height: 19px; fill: #fff; }
.home-hero .promo { position: relative; z-index: 2; margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.home-hero .promo-txt { flex: 1; }
.home-hero .promo-t { font-size: 21px; font-weight: 900; color: #fff; letter-spacing: .03em; }
.home-hero .promo-s { margin-top: 6px; font-size: 12.5px; color: rgba(255,255,255,.75); }
.home-hero .promo-s b { color: var(--g-400); font-size: 13.5px; }
.home-hero .promo-btn { margin-top: 12px; display: inline-flex; align-items: center; height: 30px; padding: 0 15px; border-radius: 999px; background: #fff; color: var(--p-700); font-size: 12.5px; font-weight: 700; }
.home-hero .promo-art { width: 108px; height: 84px; flex-shrink: 0; }

.asset-card { margin: -58px 16px 0; position: relative; z-index: 5; padding: 18px 18px 4px; }
.asset-head { display: flex; align-items: flex-start; justify-content: space-between; }
.asset-label { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-2); }
.asset-label button { width: 20px; height: 20px; display: grid; place-items: center; }
.asset-label svg { width: 16px; height: 16px; fill: var(--text-3); }
.asset-val { margin-top: 6px; font-size: 33px; font-weight: 800; letter-spacing: .01em; }
.asset-guard { display: inline-flex; align-items: center; gap: 4px; height: 24px; padding: 0 10px; border-radius: 999px; background: var(--g-100); color: var(--g-600); font-size: 11px; font-weight: 700; }
.asset-guard svg { width: 12px; height: 12px; fill: var(--g-600); }
.asset-btns { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.asset-split { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.asset-split > div { padding: 13px 0; text-align: center; }
.asset-split > div + div { border-left: 1px solid var(--line); }
.asset-split .k { font-size: 11.5px; color: var(--text-3); }
.asset-split .v { margin-top: 5px; font-size: 18px; font-weight: 800; }
.asset-split .v.rise { color: var(--rise); }

.grid-card { margin: 14px 16px 0; padding: 16px 6px 10px; }
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px 0; }
.grid .entry { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.grid .entry-ico { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; }
.grid .entry-ico svg { width: 21px; height: 21px; fill: #fff; }
.grid .entry-name { font-size: 11px; color: var(--text-2); }

.notice {
  margin: 14px 16px 0; height: 42px; padding: 0 14px;
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--sd-card); overflow: hidden;
}
.notice .n-tag { display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0; font-size: 11.5px; font-weight: 700; color: var(--p-600); }
.notice .n-tag svg { width: 13px; height: 13px; fill: var(--p-500); }
.notice .n-view { flex: 1; overflow: hidden; }
/* 无缝跑马灯：轨道里放两份相同文案，向左移动整整一份的宽度后回到原点，
   视觉上首尾相接，不会出现"整段滚没了再瞬移回来"的空窗 */
.notice .n-track {
  display: flex; width: max-content; will-change: transform;
  animation: marquee 16s linear infinite;
}
.notice .n-item {
  flex: none; white-space: nowrap;
  font-size: 12.5px; color: var(--text-2);
  padding-right: 48px;   /* 两份之间的间距，也算进"一份"的宽度里 */
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.rail { display: flex; gap: 12px; overflow-x: auto; padding: 2px 16px 6px; scroll-snap-type: x mandatory; }
.mini {
  flex: 0 0 224px; scroll-snap-align: start;
  padding: 14px 15px 13px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sd-card);
}
.mini-head { display: flex; align-items: center; justify-content: flex-start; }
.mini-name { margin-top: 9px; font-size: 15px; font-weight: 800; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-rate { margin-top: 10px; font-size: 26px; font-weight: 800; color: var(--rise); }
.mini-rate em { font-style: normal; font-size: 12px; margin-left: 2px; }
.mini-meta { margin-top: 6px; font-size: 11.5px; color: var(--text-3); }
.mini-bar { margin-top: 12px; }
.mini-foot { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--text-3); }
.mini-foot b { color: var(--p-600); }
.mini-buy { height: 26px; padding: 0 13px; border-radius: 999px; background: var(--grad-gold); color: #4a3305; font-size: 11.5px; font-weight: 800; display: inline-flex; align-items: center; }

.goods { padding: 0 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.good { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sd-card); }
.good-cover { height: 96px; display: grid; place-items: center; }
.good-cover svg { width: 38px; height: 38px; fill: rgba(255,255,255,.92); }
.good-body { padding: 10px 12px 12px; }
.good-name { font-size: 13px; font-weight: 700; line-height: 1.35; height: 35px; overflow: hidden; }
.good-row { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; }
.good-pt { font-size: 13.5px; font-weight: 800; color: var(--g-600); }
.good-btn { height: 24px; padding: 0 11px; border-radius: 999px; background: var(--p-500); color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; }
.good-ex { margin-top: 7px; font-size: 11px; color: var(--text-3); }
.points-chip { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; color: var(--text-3); }
.points-chip b { color: var(--g-600); }

/* --------------------------------------------------------------------------
   理财 / 发现 公共头部
   -------------------------------------------------------------------------- */
.list-hero { padding: 16px 16px 16px; background: var(--grad-brand); border-radius: 0 0 26px 26px; }
.lh-top { display: flex; align-items: center; gap: 10px; }
.lh-title { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: .04em; flex-shrink: 0; }
.lh-search { flex: 1; height: 38px; padding: 0 12px; display: flex; align-items: center; gap: 8px; border-radius: 999px; background: rgba(255,255,255,.16); }
.lh-search svg { width: 15px; height: 15px; fill: rgba(255,255,255,.7); flex-shrink: 0; }
.lh-search input { flex: 1; min-width: 0; border: none; outline: none; background: none; color: #fff; font-size: 13.5px; }
.lh-search input::placeholder { color: rgba(255,255,255,.6); }
.lh-search .clr { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,.3); display: grid; place-items: center; }
.lh-search .clr svg { width: 9px; height: 9px; fill: #0a3b2e; }
.lh-cs { width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); }
.lh-cs svg { width: 18px; height: 18px; fill: #fff; }
.lh-tabs { margin-top: 14px; display: flex; gap: 8px; overflow-x: auto; }
.lh-tab {
  flex-shrink: 0; height: 32px; padding: 0 15px; border-radius: 999px;
  font-size: 13px; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.13); display: inline-flex; align-items: center;
}
.lh-tab.on { background: #fff; color: var(--p-700); font-weight: 800; }

/* 理财统计条 */
.stat-strip { margin: 14px 16px 0; padding: 14px 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-strip > div { text-align: center; }
.stat-strip > div + div { border-left: 1px solid var(--line); }
.stat-strip .v { font-size: 20px; font-weight: 800; color: var(--p-700); }
.stat-strip .v em { font-style: normal; font-size: 11px; color: var(--text-3); margin-left: 1px; }
.stat-strip .k { margin-top: 4px; font-size: 11px; color: var(--text-3); }

/* 产品卡 */
.prod { margin: 12px 16px 0; padding: 16px; position: relative; overflow: hidden; }
.prod::before { content: ''; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 0 3px 3px 0; background: var(--grad-btn); }
.prod-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.prod-name { font-size: 16.5px; font-weight: 800; letter-spacing: .01em; }
.prod-risk { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.prod-risk .dots { display: flex; gap: 2px; }
.prod-risk .dots i { width: 3px; height: 11px; border-radius: 2px; background: var(--line); }
.prod-risk .dots i.on { background: var(--g-500); }
.prod-risk .rk { font-size: 11px; color: var(--text-3); }
.prod-sub { margin-top: 8px; font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prod-sub em { font-style: normal; color: var(--g-600); font-weight: 700; }
.prod-nums { margin-top: 13px; padding: 13px 0; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--fill); border-radius: var(--r-md); }
.prod-nums > div { text-align: center; }
.prod-nums > div + div { border-left: 1px solid var(--line); }
.prod-nums .k { font-size: 11px; color: var(--text-3); }
.prod-nums .v { margin-top: 5px; font-size: 19px; font-weight: 800; }
.prod-nums .v em { font-style: normal; font-size: 11px; margin-left: 1px; }
.prod-nums .v.rise { color: var(--rise); }
.prod-prog { margin-top: 13px; }
.prod-prog-top { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--text-3); margin-bottom: 7px; }
.prod-prog-top b { color: var(--p-600); }
.prod-cta { margin-top: 14px; }

/* --------------------------------------------------------------------------
   产品详情
   -------------------------------------------------------------------------- */
.pd-hero { margin: 12px 16px 0; padding: 18px; position: relative; overflow: hidden; }
.pd-vip { position: absolute; top: 0; right: 0; padding: 5px 14px 6px 18px; border-radius: 0 0 0 16px; background: var(--grad-brand); color: var(--g-400); font-size: 11.5px; font-weight: 800; }
.pd-name { font-size: 20px; font-weight: 900; padding-right: 62px; letter-spacing: .01em; }
.pd-sub { margin-top: 9px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--text-3); }
.pd-sub em { font-style: normal; color: var(--g-600); font-weight: 700; }
.pd-grid { margin-top: 14px; padding: 4px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 0; background: var(--fill); border-radius: var(--r-md); padding: 14px 0; }
.pd-grid > div { text-align: center; }
.pd-grid .k { font-size: 11px; color: var(--text-3); }
.pd-grid .v { margin-top: 5px; font-size: 17px; font-weight: 800; }
.pd-grid .v em { font-style: normal; font-size: 10.5px; margin-left: 1px; }
.pd-grid .v.rise { color: var(--rise); }
.pd-foot { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-3); }
.pd-foot b { color: var(--p-600); }

.flow { margin: 14px 16px 0; padding: 18px 16px 16px; }
.flow-line { margin-top: 16px; display: flex; align-items: flex-start; justify-content: space-between; position: relative; }
.flow-line::before { content: ''; position: absolute; left: 16%; right: 16%; top: 21px; border-top: 1.5px dashed var(--line); }
.flow-step { position: relative; z-index: 2; flex: 1; text-align: center; }
.flow-step .ico { width: 42px; height: 42px; margin: 0 auto; border-radius: 14px; display: grid; place-items: center; background: var(--grad-btn); box-shadow: var(--sd-brand); }
.flow-step .ico svg { width: 21px; height: 21px; fill: #fff; }
.flow-step .t { margin-top: 9px; font-size: 12.5px; font-weight: 700; }
.flow-step .s { margin-top: 4px; font-size: 11px; color: var(--text-3); }

.tabs-card { margin: 14px 16px 0; padding: 4px 16px 16px; }
.tabs-bar { display: flex; gap: 20px; border-bottom: 1px solid var(--line); }
.tabs-bar button { position: relative; padding: 14px 0 12px; font-size: 15px; color: var(--text-3); }
.tabs-bar button.on { color: var(--text); font-weight: 800; }
.tabs-bar button.on::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: -1px; width: 26px; height: 3px; border-radius: 3px; background: var(--p-500); }
.kv { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.kv:last-child { border-bottom: none; }
.kv .k { font-size: 13.5px; color: var(--text-2); flex-shrink: 0; }
.kv .v { font-size: 13.5px; font-weight: 700; text-align: right; }
.kv .v.rise { color: var(--rise); }
.note-block { margin-top: 14px; padding: 13px 14px; background: var(--fill); border-radius: var(--r-md); }
.note-block .t { font-size: 13px; font-weight: 800; color: var(--p-700); }
.note-block .s { margin-top: 7px; font-size: 12px; color: var(--text-2); line-height: 1.75; }

.buy-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--app-w); z-index: 70;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.buy-bar .bb-k { font-size: 11px; color: var(--text-3); }
.buy-bar .bb-v { margin-top: 2px; font-size: 18px; font-weight: 800; color: var(--rise); }
.buy-bar .btn { flex: 1; }

/* --------------------------------------------------------------------------
   发现 / 文章
   -------------------------------------------------------------------------- */
.feature { margin: 14px 16px 0; overflow: hidden; }
.feature-cover { position: relative; height: 132px; background: var(--grad-brand); }
.feature-cover .fc-badge { position: absolute; top: 12px; left: 12px; height: 22px; padding: 0 10px; border-radius: 7px; background: rgba(255,255,255,.2); color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; }
.feature-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature-body { padding: 14px 16px 16px; }
.feature-tag { font-size: 11.5px; font-weight: 800; color: var(--g-600); }
.feature-title { margin-top: 7px; font-size: 18px; font-weight: 900; line-height: 1.4; }
.feature-digest { margin-top: 8px; font-size: 12.5px; color: var(--text-2); line-height: 1.7; }
.feature-meta { margin-top: 11px; font-size: 11.5px; color: var(--text-3); display: flex; gap: 12px; }

.art { margin: 12px 16px 0; padding: 14px; display: flex; gap: 12px; }
.art-main { flex: 1; min-width: 0; }
.art-title { font-size: 15.5px; font-weight: 800; line-height: 1.42; }
.art-digest { margin-top: 7px; font-size: 12px; color: var(--text-3); line-height: 1.65; max-height: 40px; overflow: hidden; }
.art-meta { margin-top: 10px; display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--text-3); }
.art-meta svg { width: 12px; height: 12px; fill: var(--text-3); }
.art-thumb { width: 84px; height: 84px; flex-shrink: 0; border-radius: var(--r-md); display: grid; place-items: center; padding: 6px; text-align: center; background: var(--grad-brand); color: #fff; font-size: 12px; font-weight: 800; line-height: 1.4; }

.reader { padding: 20px 18px 30px; }
.reader h1 { font-size: 22px; font-weight: 900; line-height: 1.42; }
.reader .rd-meta { margin-top: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; font-size: 11.5px; color: var(--text-3); }
.reader .rd-meta .who { display: inline-flex; align-items: center; gap: 6px; color: var(--p-600); font-weight: 700; }
.reader .rd-meta .who i { width: 20px; height: 20px; border-radius: 50%; background: var(--grad-btn); display: grid; place-items: center; color: #fff; font-size: 10px; font-style: normal; }
.reader p.para { margin-top: 16px; font-size: 15px; line-height: 1.95; color: #2b3b35; text-align: justify; }
.reader .rd-risk { margin-top: 26px; padding: 13px 14px; border-radius: var(--r-md); background: var(--g-100); color: var(--g-600); font-size: 12px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   我的
   -------------------------------------------------------------------------- */
.pf-hero { padding: 18px 16px 66px; background: var(--grad-brand); border-radius: 0 0 30px 30px; position: relative; overflow: hidden; }
.pf-hero::after { content: ''; position: absolute; left: -60px; bottom: -120px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.05); }
.pf-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.pf-top h1 { font-size: 19px; font-weight: 900; color: #fff; letter-spacing: .04em; }
.pf-set { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); }
.pf-set svg { width: 18px; height: 18px; fill: #fff; }
.pf-user { margin-top: 18px; display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.pf-avatar { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.3); display: grid; place-items: center; flex-shrink: 0; }
.pf-avatar svg { width: 28px; height: 28px; fill: rgba(255,255,255,.9); }
.pf-info { flex: 1; min-width: 0; }
.pf-nick { display: flex; align-items: center; gap: 7px; font-size: 17px; font-weight: 800; color: #fff; }
.pf-id { margin-top: 6px; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: rgba(255,255,255,.7); }
.pf-id em { font-style: normal; padding: 2px 7px; border-radius: 6px; background: rgba(255,255,255,.16); }
.pf-code { flex-shrink: 0; height: 30px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.16); color: #fff; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.pf-code svg { width: 12px; height: 12px; fill: #fff; }

.total-card { margin: -50px 16px 0; position: relative; z-index: 5; padding: 18px; }
.total-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.total-k { font-size: 12px; color: var(--text-3); }
.total-v { margin-top: 5px; font-size: 30px; font-weight: 800; }
.total-btns { display: flex; gap: 8px; flex-shrink: 0; }
.total-btns .b { height: 32px; padding: 0 16px; border-radius: 999px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; }
.total-btns .b.out { background: var(--p-50); color: var(--p-600); border: 1px solid var(--p-100); }
.total-btns .b.in { background: var(--grad-btn); color: #fff; box-shadow: var(--sd-brand); }
.total-three { margin-top: 16px; padding: 13px 0; background: var(--fill); border-radius: var(--r-md); display: grid; grid-template-columns: repeat(3, 1fr); }
.total-three > div { text-align: center; }
.total-three > div + div { border-left: 1px solid var(--line); }
.total-three .k { font-size: 11px; color: var(--text-3); }
.total-three .v { margin-top: 5px; font-size: 15px; font-weight: 800; }
.total-three .v.rise { color: var(--rise); }
.total-sum { margin-top: 12px; display: flex; align-items: center; gap: 12px; font-size: 11.5px; color: var(--text-3); }
.total-sum b { color: var(--text); }
.total-sum .rise { color: var(--rise); }

.vip-card { margin: 14px 16px 0; padding: 16px 18px 18px; border-radius: var(--r-lg); background: var(--grad-brand); position: relative; overflow: hidden; }
.vip-card::after { content: ''; position: absolute; right: -40px; top: -60px; width: 170px; height: 170px; border-radius: 50%; background: rgba(238,197,117,.12); }
.vip-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vip-badge { height: 26px; padding: 0 13px; border-radius: 999px; background: var(--grad-gold); color: #4a3305; font-size: 12.5px; font-weight: 900; display: inline-flex; align-items: center; }
.vip-right { font-size: 11.5px; color: rgba(255,255,255,.8); }
.vip-right b { color: var(--g-400); }
.vip-bar { position: relative; z-index: 2; margin-top: 14px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.18); overflow: hidden; }
.vip-bar > i { display: block; height: 100%; border-radius: 999px; background: var(--grad-gold); }
.vip-tip { position: relative; z-index: 2; margin-top: 11px; font-size: 12px; color: rgba(255,255,255,.78); }
.vip-tip b { color: var(--g-400); }

.quad-card { margin: 14px 16px 0; padding: 16px 8px 14px; }
.quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 0; }
.quad .entry { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.quad .entry-ico { width: 44px; height: 44px; border-radius: 15px; display: grid; place-items: center; }
.quad .entry-ico svg { width: 22px; height: 22px; fill: #fff; }
.quad .entry-name { font-size: 11.5px; color: var(--text-2); }

.rows-card { margin: 14px 16px 0; padding: 2px 16px; }
.row {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 11px; padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.row:last-child { border-bottom: none; }
.row .r-ico { width: 28px; height: 28px; flex-shrink: 0; border-radius: 9px; display: grid; place-items: center; background: var(--p-50); }
.row .r-ico svg { width: 15px; height: 15px; fill: var(--p-600); }
.row .r-name { flex: 1; font-size: 14.5px; }
.row .r-val { font-size: 12.5px; color: var(--text-3); }
.row .r-arrow { width: 14px; height: 14px; fill: var(--text-3); flex-shrink: 0; }

.logout { margin: 16px 16px 0; height: 50px; width: calc(100% - 32px); border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); color: var(--rise); font-size: 15.5px; font-weight: 700; display: grid; place-items: center; box-shadow: var(--sd-card); }
.version { margin-top: 14px; text-align: center; font-size: 11px; color: var(--text-3); }

/* --------------------------------------------------------------------------
   常见问题 / 安全保障（移动端优先：单列、全宽、点击区域够大）
   -------------------------------------------------------------------------- */

/* 引导卡：两个页面共用 */
.lead-card { margin: 14px 16px 0; padding: 18px 16px; text-align: center; }
.lead-t { font-size: 16px; font-weight: 800; }
.lead-s { margin-top: 7px; font-size: 12.5px; color: var(--text-3); line-height: 1.7; }
.lead-card .btn { margin-top: 14px; }

/* --- 常见问题：分组 + 折叠 --- */
.faq-group { margin-top: 18px; }
.faq-group-title {
  margin: 0 20px 9px; font-size: 13px; font-weight: 800; color: var(--p-600);
  display: flex; align-items: center; gap: 7px;
}
.faq-group-title::before {
  content: ''; width: 3px; height: 13px; border-radius: 2px; background: var(--grad-btn);
}
.faq-list { margin: 0 16px; padding: 0 16px; }
.faq-item { border-bottom: 1px solid var(--line); transition: background .16s; }
.faq-item:last-child { border-bottom: none; }
.faq-item:active { background: var(--p-50); }
.faq-q {
  min-height: 54px; padding: 15px 0;
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 600; line-height: 1.5;
}
.faq-q span { flex: 1; }
.faq-arrow {
  width: 14px; height: 14px; flex-shrink: 0; fill: var(--text-3);
  transform: rotate(90deg); transition: transform .2s ease;
}
.faq-item.open .faq-q { color: var(--p-600); }
.faq-item.open .faq-arrow { transform: rotate(-90deg); fill: var(--p-500); }
.faq-a {
  padding: 0 0 15px; font-size: 13.5px; line-height: 1.85; color: var(--text-2);
  animation: faq-in .2s ease;
}
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } }

/* --- 安全保障 --- */
.sg-hero {
  margin: 12px 16px 0; padding: 24px 18px 18px;
  border-radius: var(--r-lg); background: var(--grad-brand);
  position: relative; overflow: hidden; text-align: center;
}
.sg-hero::after {
  content: ''; position: absolute; right: -60px; top: -80px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(238,197,117,.12);
}
.sg-badge {
  position: relative; z-index: 2;
  width: 56px; height: 56px; margin: 0 auto; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(238,197,117,.5);
}
.sg-badge svg { width: 28px; height: 28px; fill: var(--g-400); }
.sg-title { position: relative; z-index: 2; margin-top: 12px; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: .04em; }
.sg-sub { position: relative; z-index: 2; margin-top: 7px; font-size: 12.5px; color: rgba(255,255,255,.75); }
.sg-stats {
  position: relative; z-index: 2; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.sg-stats > div { text-align: center; }
.sg-stats > div + div { border-left: 1px solid rgba(255,255,255,.14); }
.sg-stats .v { font-size: 17px; font-weight: 800; color: var(--g-400); }
.sg-stats .k { margin-top: 4px; font-size: 11px; color: rgba(255,255,255,.7); }

.sec-block { margin: 12px 16px 0; padding: 16px; display: flex; gap: 13px; align-items: flex-start; }
.sec-ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center; }
.sec-ico svg { width: 20px; height: 20px; fill: #fff; }
.sec-body { flex: 1; min-width: 0; }
.sec-name { font-size: 15.5px; font-weight: 800; }
.sec-desc { margin-top: 8px; font-size: 13px; line-height: 1.8; color: var(--text-2); }

.gu-card { margin: 12px 16px 0; padding: 16px; }
.gu-list { margin-top: 12px; display: flex; flex-direction: column; gap: 11px; }
.gu-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.gu-check { width: 15px; height: 15px; flex-shrink: 0; fill: var(--p-500); }
