/* ============================================================
   灵霖鑫塔商城 · 全局组件与布局
   ============================================================ */

/* ---------- 容器 ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hide { display: none !important; }

/* ---------- 顶部品牌栏（非对称：左字标 / 右文字链） ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 233, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brandmark { display: flex; align-items: baseline; gap: 10px; }
.brandmark .logo {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--ink);
  letter-spacing: 2px;
}
.brandmark .logo b { color: var(--gold); }
.brandmark .sub { font-size: 12px; color: var(--ink-soft); letter-spacing: 3px; }
.topnav { display: flex; align-items: center; gap: 22px; }
.topnav a { font-size: 14px; color: var(--ink); transition: color .2s; }
.topnav a:hover { color: var(--gold); }
.topnav .me { color: var(--gold); font-weight: 600; }

/* ---------- Hero（左对齐，破标准居中） ---------- */
.hero { padding: 56px 0 30px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: end; }
.hero h1 {
  font-size: 46px; line-height: 1.12; font-weight: 700; letter-spacing: 1px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p { margin-top: 16px; color: var(--ink-soft); max-width: 520px; font-size: 15px; }
.hero .deco {
  border-right: 1px solid var(--gold-line); border-top: 1px solid var(--gold-line);
  height: 120px; align-self: end;
}
.hero .eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 4px; color: var(--gold-deep);
  text-transform: uppercase; margin-bottom: 14px;
}

/* ---------- 主体：品牌筛选侧栏 + 产品网格 ---------- */
.main-grid { display: grid; grid-template-columns: 168px 1fr; gap: 34px; padding-bottom: 60px; }

/* 品牌筛选（桌面竖向索引） */
.brandrail { position: sticky; top: 120px; align-self: start; }
.brandrail h4 { font-size: 13px; color: var(--ink-soft); letter-spacing: 2px; margin-bottom: 12px; font-weight: 600; }
.brandrail ul { list-style: none; }
.brandrail li {
  padding: 7px 0; font-size: 14px; color: var(--ink); cursor: pointer;
  border-left: 2px solid transparent; padding-left: 12px; transition: all .18s;
}
.brandrail li:hover { color: var(--gold); }
.brandrail li.active { color: var(--gold); border-left-color: var(--gold); font-weight: 600; }

/* 移动端品牌 chip */
.brandchips { display: none; gap: 8px; overflow-x: auto; padding: 4px 0 18px; }
.brandchips button {
  white-space: nowrap; padding: 6px 14px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; color: var(--ink); background: #fff;
}
.brandchips button.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* ---------- 产品网格（响应式：列宽随视口自适应，杜绝错位） ---------- */
.grid {
  display: grid;
  /* min(var(--card-min), 100%)：视口比卡片最小宽度还窄时自动降为单列，不会横向溢出 */
  grid-template-columns: repeat(auto-fill, minmax(min(var(--card-min), 100%), 1fr));
  gap: var(--grid-gap);
  align-items: stretch;
}

/* 防御安全网：若某区块漏包 .grid、卡片直接挂在区块下（旧结构撑爆根因），
   强制该区块本身成网格，杜绝单卡撑满整行（1598px 撑爆）。
   仅当区块直接含 .card 时生效，正确结构（区块>wrap>.grid>.card）不受影响。 */
.beauty-mod:has(> .card),
.flagship-mod:has(> .card),
.season-mod:has(> .card),
.songxianxian-mod:has(> .card),
.zhiweiguan-mod:has(> .card),
.fudonghai-mod:has(> .card),
.sx-block:has(> .card) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--card-min), 100%), 1fr));
  gap: var(--grid-gap);
  align-items: stretch;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card .thumb {
  aspect-ratio: var(--thumb-ratio, 4 / 5); background: #fafafa; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* 网格场景：统一 4/5 修长比例；2026-09-04（问题7）图片改 contain 完整显示不裁切 */
.grid .card .thumb {
  aspect-ratio: var(--thumb-ratio, 4 / 5);
  max-height: 300px;
}
.grid .card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
/* monogram 占位（无图时） */
.mono {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: radial-gradient(120% 120% at 30% 20%, #FBF7EF 0%, var(--ivory-2) 70%);
}
.mono .glyph {
  font-family: var(--font-serif); font-size: 54px; color: var(--gold); line-height: 1;
}
.mono .gname { font-size: 12px; color: var(--ink-soft); letter-spacing: 1px; padding: 0 12px; text-align: center; }
.card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0; }

/* ---------- 首页品类快捷入口 ---------- */
.cat-chips { display: flex; gap: 10px; overflow-x: auto; padding: 2px 0 14px; }
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chips a, .cat-chips button {
  display: inline-block; text-decoration: none;
  white-space: nowrap; padding: 7px 16px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; color: var(--ink); background: #fff;
  transition: all .18s;
}
.cat-chips a:hover, .cat-chips button:hover { border-color: var(--gold); color: var(--gold-deep); }
.cat-chips a.active, .cat-chips button.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* 一级类目导航（合规改版 V2 · P3）：类目计数 + 无数据置灰 */
.cat-chips a em {
  font-style: normal; margin-left: 6px; font-size: 11px; opacity: .62; font-weight: 600;
}
.cat-chips a.active em { opacity: .85; }
.cat-chips .cg-empty {
  display: inline-block; white-space: nowrap; padding: 7px 16px;
  border: 1px dashed var(--line); border-radius: 999px;
  font-size: 13px; color: #b4a894; background: transparent; cursor: not-allowed;
}
.cat-chips.cat-chips-group { padding-bottom: 8px; }
.cat-chips.cat-chips-group a, .cat-chips.cat-chips-group .cg-empty {
  font-weight: 600; letter-spacing: .3px;
}
.sup-cg-chips { padding: 0 0 12px; }

/* ---------- 臻礼集一级分类导航（2026-09-06 补回）----------
   分类由商品 category 字段客户端聚合而来，带商品计数；仅臻礼集 Tab 显示。 */
.mall-cat-nav { padding: 2px 0 14px; }
.mall-cat-nav .mcat {
  display: inline-flex; align-items: center; gap: 2px; cursor: pointer;
  font-family: var(--font-sans);
}
.mall-cat-nav .mcat em {
  font-style: normal; margin-left: 5px; font-size: 11px; opacity: .6; font-weight: 600;
  font-family: var(--font-num);
}
.mall-cat-nav .mcat.active em { opacity: .85; }
/* 当前分类提示条 */
.mall-catbar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 0 0 14px; font-size: 13px; color: var(--ink-soft);
}
.mall-catbar b { color: var(--ink); font-weight: 600; }
.mcat-clear {
  border: 1px solid var(--line); background: #fffdf9; color: var(--ink-soft);
  border-radius: 999px; padding: 5px 14px; font-size: 12px; cursor: pointer;
  transition: all .18s;
}
.mcat-clear:hover { border-color: var(--gold); color: var(--gold-deep); }

/* 品牌栏折叠按钮 */
.brandrail li.more {
  cursor: pointer; color: var(--gold-deep); font-size: 13px; letter-spacing: 1px;
  border-left-color: transparent;
}
.brandrail li.more:hover { color: var(--gold); }
.brandchips button.more {
  background: transparent; color: var(--gold-deep); border: 1px dashed var(--gold-line);
  white-space: nowrap;
}

/* ---------- 首页宣传海报栏 ---------- */
.poster-banner { margin: 8px 0 6px; }
.poster-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; }
.poster-track::-webkit-scrollbar { height: 6px; }
.poster-track::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 3px; }
.poster {
  position: relative; flex: 0 0 100%; min-height: 150px; border-radius: var(--radius-lg);
  background-size: cover; background-position: center; scroll-snap-align: start;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 28px 34px; color: #fff; text-decoration: none; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.poster.has-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,0) 60%); }
.poster .pt { font-family: var(--font-serif); font-size: 26px; font-weight: 700; position: relative; }
.poster .ps { font-size: 14px; opacity: .92; max-width: 560px; position: relative; }
.poster .pb {
  align-self: flex-start; margin-top: 6px; position: relative;
  background: #fff; color: var(--ink); padding: 9px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
}
.poster:hover { box-shadow: var(--shadow-md); }

/* ---------- 商品详情长图 ---------- */
.detail-long { margin: 34px 0 60px; }
.detail-long .dl-title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--ink);
  margin: 0 0 16px; padding-left: 12px; border-left: 3px solid var(--gold);
}
.detail-long .dl-img {
  display: block; width: 100%; border-radius: var(--radius); margin: 0 0 14px;
  box-shadow: var(--shadow-sm); background: #fff;
}

/* 下载资料包金角标 */
.corner-dl {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: transform .2s, background .2s;
}
.corner-dl:hover { transform: scale(1.08); background: var(--gold-deep); }
.corner-dl i { font-size: 15px; }

.card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .brand { font-size: 12px; color: var(--gold-deep); letter-spacing: 1px; }
.card .name { font-family: var(--font-serif); font-size: 16px; font-weight: 600; line-height: 1.35; /* 高塔反馈：标题把卡片拉得很长；改为最多 2 行 + 行高截断，底对齐统一 */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2;
  max-height: calc(1.35em * 2 + 2px);
  overflow: hidden; word-break: break-word;
}
.card .spec { font-size: 12px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-actions { display: flex; align-items: stretch; gap: 6px; margin-top: 4px; min-height: 30px; }
.card-act { flex: 1; min-width: 0; display: inline-flex; align-items: center; justify-content: center; padding: 6px 4px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; color: var(--ink); background: #fff; transition: all .15s; cursor: pointer; }
.card-act:hover { transform: translateY(-1px); filter: brightness(1.04); }
.card .prices { margin-top: auto; padding-top: 8px; display: flex; align-items: baseline; gap: 12px; }
.card .price-retail { font-size: 13px; color: var(--ink-soft); }
.card .price-retail .num { font-size: 15px; }
.card .price-self { color: var(--gold-deep); font-weight: 600; }
.card .price-self .num { font-size: 20px; }
.card .price-self small { font-size: 11px; color: var(--ink-soft); font-weight: 400; margin-right: 3px; }
/* 百货集：京东同款比价链接（真实比价锚点，替代虚高「市场参考」） */
.card .price-jd {
  font-size: 12px; color: var(--market-deep); text-decoration: none;
  border: 1px solid var(--market-line); border-radius: 999px; padding: 2px 10px;
  white-space: nowrap; transition: all .18s; align-self: center;
}
.card .price-jd:hover { background: var(--market-soft); border-color: var(--market); }
.card .price-warn { font-size: 12px; color: var(--wine); font-weight: 600; align-self: center; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: all .2s; letter-spacing: .5px;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- 商品详情 ---------- */
.detail { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; padding: 40px 0 70px; align-items: start; }
/* 优化3（2026-09-03）：主图居中占满左侧区域，等比完整显示不裁切；
   右侧缩略图小列已移除（DOM 保留但隐藏），改由主图左右箭头切换。 */
.detail .gallery { position: relative; display: block; }
.detail .gallery .main {
  width: 100%; aspect-ratio: 1/1; height: auto; max-height: 620px;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center; padding: 12px; box-sizing: border-box;
}
.detail .gallery .main img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.detail .gallery .thumbs { display: none !important; }
/* 左右切换箭头：仅多图时出现，半透明胶囊，hover 变实心 */
.detail .gallery .gal-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.86); color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: var(--shadow-sm); transition: background .15s, color .15s, border-color .15s;
}
.detail .gallery .gal-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.detail .gallery .gal-nav.prev { left: 12px; }
.detail .gallery .gal-nav.next { right: 12px; }
.detail .gallery .gal-count {
  position: absolute; right: 14px; bottom: 14px; z-index: 4;
  background: rgba(28,24,16,.55); color: #fff; font-size: 12px; line-height: 1;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .5px;
}
.detail .info .brand { color: var(--gold-deep); letter-spacing: 2px; font-size: 13px; }
.detail .info h1 { font-size: 30px; margin: 8px 0 6px; line-height: 1.25; }
.detail .info .spec { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.price-block { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; margin-bottom: 24px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; padding: 6px 0; }
.price-row .label { color: var(--ink-soft); font-size: 13px; }
.price-row .val { font-family: var(--font-num); font-size: 24px; }
.price-row.muted .val { color: var(--ink-soft); }
.price-row.self .val { color: var(--gold-deep); }
.locked { color: var(--ink-soft); font-size: 13px; }
.locked i { color: var(--gold); margin-right: 6px; }
.detail .actions { display: flex; gap: 12px; margin: 18px 0; }
.detail .pkg { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-size: 13px; cursor: pointer; }

/* 版本选择（专柜版 / 一般贸易） */
.ver-sel { display: flex; gap: 10px; margin: 4px 0 20px; }
.ver-opt { flex: 1; display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); cursor: pointer; transition: all .18s; text-align: left; font-family: inherit; }
.ver-opt .vt { font-size: 14px; font-weight: 600; color: var(--ink); }
.ver-opt .vp { font-family: var(--font-num); font-size: 18px; color: var(--gold-deep); }
.ver-opt.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(197,165,114,.25); background: var(--ivory-2); }
.ver-opt:not(.active) .vp { color: var(--ink-soft); }

/* 货源切换标签（2026-09-04 商品模型重构）：
   专柜版 / 一般贸易版已是两个独立商品，点击跳到对应详情页（各自独立 URL、各自一套价）。
   与卡片左上角「专柜」金色角标保持同一套视觉语言。 */
.src-switch { display: flex; align-items: center; gap: 10px; margin: 10px 0 14px; flex-wrap: wrap; }
.src-switch .src-label { font-size: 13px; color: var(--ink-soft); font-weight: 600; letter-spacing: .5px; }
.src-opt { display: inline-flex; align-items: baseline; gap: 8px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--ivory); text-decoration: none; transition: all .18s; }
.src-opt:hover { border-color: var(--gold-line); }
.src-opt .src-t { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.src-opt .src-p { font-family: var(--font-num); font-size: 15px; color: var(--ink-300); }
.src-opt.active { border-color: var(--gold); background: var(--gold-soft); }
.src-opt.active .src-t { color: var(--gold-deep); }
.src-opt.active .src-p { color: var(--gold-deep); font-weight: 700; }
/* 专柜版高亮走真金色，与卡片「专柜」角标一致（品牌主色 --gold 是蓝色，不适用） */
.src-opt.is-counter.active { border-color: #C5A572; background: linear-gradient(135deg, rgba(197,165,114,.20), rgba(168,132,63,.10)); }
.src-opt.is-counter.active .src-t, .src-opt.is-counter.active .src-p { color: #8a6a2f; }

/* 礼盒内搭自选（专柜 / 一般贸易 逐件切换 + 实时求和） */
.gift-sel { border: 1px solid var(--gold); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--ivory-2), var(--ivory)); padding: 16px 18px; margin: 4px 0 22px; }
.gift-sel .gs-head { font-size: 15px; font-weight: 700; color: var(--gold-deep); }
.gift-sel .gs-head i { margin-right: 6px; }
.gift-sel .gs-sub { font-size: 12px; color: var(--ink-soft); margin: 2px 0 12px; }
.gift-sel .gs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.gift-sel .gs-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.gift-sel .gs-item .gs-label { font-size: 14px; color: var(--ink); font-weight: 600; }
.gift-sel .gs-item .gs-label em { font-style: normal; font-size: 12px; color: var(--ink-soft); margin-left: 4px; }
.gift-sel .gs-toggle { display: flex; gap: 6px; }
.gift-sel .gs-opt { display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 7px 12px; min-width: 92px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); cursor: pointer; font-family: inherit; transition: all .16s; }
.gift-sel .gs-opt .gs-p { font-family: var(--font-num); font-size: 15px; color: var(--ink-soft); }
.gift-sel .gs-opt.active { border-color: var(--gold); background: var(--gold-deep); box-shadow: 0 0 0 2px rgba(197,165,114,.22); }
.gift-sel .gs-opt.active span { color: #fff; }
.gift-sel .gs-only { font-size: 13px; color: var(--ink-soft); padding: 6px 10px; }
.gift-sel .gs-only.muted { font-size: 12px; }
.gift-sel .gs-total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--gold); }
.gift-sel .gs-total > span:first-child { font-size: 13px; color: var(--ink-soft); }
.gift-sel .gs-sum { font-family: var(--font-num); font-size: 26px; font-weight: 700; color: var(--gold-deep); }

/* 下单表单 */
.order-form { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; background: var(--ivory); margin-bottom: 22px; }
.ofield { margin-bottom: 12px; }
.ofield label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.ofield input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 15px; font-family: inherit; background: #fff; color: var(--ink); }
.ofield input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,165,114,.15); }
.ofield-v .oview { padding: 11px 12px; border: 1px dashed var(--gold); border-radius: var(--radius); font-family: var(--font-num); font-size: 16px; color: var(--gold-deep); background: var(--ivory-2); }
.order-form .btn-block { width: 100%; margin-top: 4px; }
.order-login { margin: 8px 0 22px; }
#orderMsg { margin-top: 12px; }
#orderMsg .notice { font-size: 13px; }

/* ---------- 表单 / 申请·注册 / 登录 ---------- */
.auth-wrap { max-width: 460px; margin: 40px auto 80px; }
.auth-wrap .eyebrow { font-size: 12px; letter-spacing: 4px; color: var(--gold-deep); text-transform: uppercase; }
.auth-wrap h2 { font-size: 30px; margin: 10px 0 4px; }
.auth-wrap .lead { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }

.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tabs button {
  flex: 1; padding: 14px 0; font-size: 15px; color: var(--ink-soft);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s;
}
.tabs button.active { color: var(--ink); border-bottom-color: var(--gold); font-weight: 600; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: .5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 2px; border: none; border-bottom: 1px solid var(--line);
  background: transparent; font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field .hint { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px;
  background: #fff; color: var(--ink); transition: all .2s;
}
.chips button.on { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-deep); }

.notice {
  padding: 12px 14px; border-radius: var(--radius); font-size: 13px; margin-bottom: 16px;
  border: 1px solid var(--gold-line); background: var(--gold-soft); color: var(--ink);
}
.notice.wine { border-color: rgba(122,59,71,.3); background: rgba(122,59,71,.08); color: var(--wine); }

.admin-toggle { margin-top: 16px; text-align: center; }
.admin-toggle a { color: var(--ink-soft); font-size: 13px; border-bottom: 1px dashed var(--line); }
.admin-box { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 18px; }
/* 短信验证码行 + 登录方式切换 */
.code-row { display: flex; gap: 10px; align-items: stretch; }
.code-row input { flex: 1; min-width: 0; }
.code-row .btn { white-space: nowrap; flex: 0 0 auto; }
.auth-switch { margin-top: 12px; text-align: center; }
.auth-switch a { color: var(--gold-deep); font-size: 13px; border-bottom: 1px dashed var(--gold); cursor: pointer; }

/* ---------- 页脚 ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ivory-2); padding: 30px 0; }
.footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer .f-brand { font-family: var(--font-serif); font-size: 16px; color: var(--ink); }
.footer .f-meta { font-size: 12px; color: var(--ink-soft); }

/* 备案信息：独占一行，禁止隐藏/缩小（合规要求：需与页脚其他文字同等可视） */
.footer .f-beian { flex: 0 0 100%; font-size: 12px; color: var(--ink-soft); line-height: 1.8; }
.footer .f-beian a { color: var(--ink-soft); text-decoration: none; }
.footer .f-beian a:hover { color: var(--gold-deep); text-decoration: underline; }
.footer .f-beian-sep { margin: 0 6px; opacity: .45; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 36px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--ivory); padding: 12px 22px; border-radius: 999px;
  font-size: 14px; opacity: 0; pointer-events: none; transition: all .3s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- 空 / 加载 ---------- */
.loading { text-align: center; color: var(--ink-soft); padding: 60px 0; letter-spacing: 2px; }
.empty { text-align: center; color: var(--ink-soft); padding: 60px 0; }

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .deco { display: none; }
  .hero h1 { font-size: 34px; }
  .detail { grid-template-columns: 1fr; gap: 24px; }
  .detail .gallery { flex-direction: column; }
  .detail .gallery .thumbs { flex-direction: row; flex-wrap: wrap; max-height: none; width: 100%; }
  .main-grid { grid-template-columns: 1fr; gap: 0; }
  .brandrail { display: none; }
  .brandchips { display: flex; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid .card:nth-child(even) { margin-top: 0; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  /* minmax(0,1fr) 而非 1fr：否则超长商品名会把列撑破导致错位 */
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-actions { gap: 4px; }
  .card-act { padding: 5px 2px; font-size: 11px; }
  .topnav { gap: 14px; }
  .topnav .hide-sm { display: none; }
  .hero h1 { font-size: 28px; }
}

/* ============================================================
   #194 视觉打磨层：动效 / 景深 / 对比度 / 移动端
   （不改动既有布局 token，仅叠加精炼的质感与运动）
   ============================================================ */

/* ---------- 可访问性：焦点环 ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
/* 尊重「减少动态效果」偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- 页面切换：柔和淡入 ---------- */
#view { animation: viewIn .42s cubic-bezier(.22,.61,.36,1) both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Hero 入场（错落分层） ---------- */
.hero .eyebrow, .hero h1, .hero p { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.22,.61,.36,1) forwards; }
.hero .eyebrow { animation-delay: .05s; }
.hero h1 { animation-delay: .16s; }
.hero p { animation-delay: .30s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Hero 背景：香槟金柔光 + 极淡颗粒，制造景深 */
.hero { overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70% 120% at 88% -10%, var(--gold-soft) 0%, rgba(197,165,114,0) 55%),
    radial-gradient(50% 90% at 0% 120%, rgba(217,167,167,.10) 0%, rgba(217,167,167,0) 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- 产品卡：滚动入场 + 悬停精致化 ----------
   仅 .grid 内的 card 默认启用入场动画（透明度 0 → IO 触发 reveal）；
   其他页面（百货集 .sup-grid、详情页关联推荐、分类页等）的 .card 上来就可见，
   不再因 IO 失败或 .reveal 漏挂而出现"商品不显示"。 */
.grid > .card { opacity: 0; transform: translateY(22px); }
.grid > .card.reveal { animation: cardIn .6s cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes cardIn { to { opacity: 1; transform: none; } }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(33,28,24,.13); }

/* 兜底：如果浏览器在 2 秒内仍未把 IO 触发的 .reveal 加上（极少见的低端 webview/无头环境），
   强制把网格内所有 .card 显示出来，避免一直透明。 */
.grid > .card.force-show { opacity: 1 !important; transform: none !important; }

/* 百货集 / 松鲜鲜等非首页模块的网格：上来就可见，不做滚动入场动画（避免 IO 失败导致整片空白） */
/* 🔴 2026-09-16 修复：搜索页 .srch-grid 此前未加豁免也没接 revealCards，导致搜索结果整片透明不可见 */
.sup-grid > .card,
.sx-block .grid > .card,
.mod-grid > .card,
.srch-grid > .card,
.channel-cards > .card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.card:hover .thumb img { transform: scale(1.06); }
.card .thumb img { transition: transform .5s cubic-bezier(.22,.61,.36,1); }
/* 卡内金色细描边（悬停浮现） */
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--gold-line); opacity: 0; transition: opacity .3s; pointer-events: none;
}
.card:hover::after { opacity: 1; }
/* 品牌名：悬停金色下划线生长 */
.card .brand { position: relative; display: inline-block; }
.card .brand::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.card:hover .brand::after { width: 100%; }

/* ---------- 品牌栏：金色下划线生长 ---------- */
.brandrail li::after {
  content: ""; display: block; height: 1px; width: 0; margin-top: 3px;
  background: var(--gold); transition: width .25s ease;
}
.brandrail li:hover::after, .brandrail li.active::after { width: 60%; }

/* ---------- monogram 占位：更温润的渐变质感 ---------- */
.mono {
  background:
    radial-gradient(120% 120% at 28% 18%, #FCF9F2 0%, var(--ivory-2) 62%),
    radial-gradient(80% 80% at 90% 100%, rgba(197,165,114,.12), transparent 60%);
}
.mono .glyph { text-shadow: 0 2px 10px rgba(197,165,114,.25); }

/* ---------- 骨架屏 shimmer（加载态） ---------- */
.skeleton { background: var(--ivory-2); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.65) 50%, transparent 80%);
  transform: translateX(-100%); animation: shimmer 1.3s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }
.sk-card { aspect-ratio: 1 / 1; } /* 占位比例与卡片一致 */

/* ---------- 加载态：金色自旋 ---------- */
.loading { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 14px; letter-spacing: 2px; }
.loading::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--gold-line); border-top-color: var(--gold); animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 顶栏：滚动收束（配合 JS 加 .scrolled） ---------- */
.topbar { transition: background .3s, box-shadow .3s, border-color .3s; }
.topbar.scrolled { background: rgba(246,241,233,.94); box-shadow: 0 4px 18px rgba(33,28,24,.06); }

/* ---------- 移动端打磨 ---------- */
@media (max-width: 980px) {
  /* 品牌 chip 吸顶，便于在长列表中随时切换 */
  .brandchips {
    position: sticky; top: 64px; z-index: 40; background: rgba(246,241,233,.92);
    backdrop-filter: blur(8px); padding: 10px 0 12px; margin: 0 0 8px;
  }
  .brandchips::-webkit-scrollbar { display: none; }
  .grid { gap: 14px; }
  .card .body { padding: 12px 14px 14px; }
  .card .name { font-size: 15px; min-height: 40px; }
  .card .price-self .num { font-size: 18px; }
}
@media (max-width: 560px) {
  .hero { padding: 36px 0 22px; }
  .hero p { font-size: 14px; }
  .topbar .wrap { height: 56px; }
  .brandmark .logo { font-size: 19px; letter-spacing: 1px; }
  .btn { padding: 13px 22px; }
  .card .prices { flex-wrap: wrap; gap: 6px 10px; }
}
/* 刘海屏安全区 */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer .wrap { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
  .toast { bottom: calc(36px + env(safe-area-inset-bottom)); }
}

/* ---------- 高塔工作台（管理员后台） ---------- */
.workbench { padding-top: 44px; padding-bottom: 64px; }
.wb-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.wb-head .lead { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }
.wb-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.wb-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f7faff 0%, #eef4ff 100%);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 20px; box-shadow: 0 1px 0 rgba(33,28,24,.04);
}
.wb-card-ico { color: var(--gold); font-size: 18px; opacity: .85; }
.wb-card-n {
  margin-top: 14px; font-family: var(--font-serif); font-weight: 600;
  font-size: 38px; line-height: 1; color: var(--ink); letter-spacing: .5px;
}
.wb-card-unit { font-family: var(--font-sans); font-size: 13px; color: var(--ink-soft); margin-left: 6px; letter-spacing: 0; }
.wb-card-label { margin-top: 8px; font-size: 13px; color: var(--ink-soft); letter-spacing: 1px; }
.wb-section-title { font-family: var(--font-serif); font-size: 18px; color: var(--ink); margin-bottom: 16px; letter-spacing: 1px; }
.wb-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wb-mod {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 18px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.wb-mod:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(0,0,0,.35); border-color: var(--gold-line); }
.wb-mod-ico {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center; color: var(--gold);
  background: linear-gradient(160deg, #eef2fb, #e3ebf7);
}
.wb-mod-body { flex: 1 1 auto; min-width: 0; }
.wb-mod-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.wb-mod-desc { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; }
.wb-badge {
  flex: 0 0 auto; font-size: 12px; color: #fff; background: var(--wine);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.wb-badge b { font-weight: 700; }
.wb-badge.ghost { color: var(--ink-soft); background: #EEF1F5; }
.wb-foot { margin-top: 28px; font-size: 12.5px; color: var(--ink-soft); }
.wb-card.skel { min-height: 116px; background: linear-gradient(100deg, #eef2fb 30%, #f5f9ff 50%, #eef2fb 70%);
  background-size: 200% 100%; animation: shimmer 1.3s infinite linear; }

@media (max-width: 980px) {
  .wb-cards { grid-template-columns: repeat(2, 1fr); }
  .wb-modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wb-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .wb-cards { grid-template-columns: repeat(2, 1fr); }
  .wb-modules { grid-template-columns: 1fr; }
}

/* ============================================================
   移动端抽屉菜单（修复：原 app.css 缺 drawer 样式导致菜单无法显示）
   ============================================================ */
.hamburger {
  display: none;
  width: 40px; height: 40px; border: none; border-radius: 8px;
  background: transparent; color: var(--ink); cursor: pointer;
  align-items: center; justify-content: center; font-size: 20px;
}
.hamburger:hover { background: rgba(197,165,114,.12); color: var(--gold-deep); }

.drawer-mask {
  position: fixed; inset: 0; background: rgba(33,28,24,.45);
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
  z-index: 90;
}
.drawer-mask.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 360px);
  min-height: 100vh; min-height: 100dvh;
  background: var(--ivory);
  box-shadow: -8px 0 40px rgba(33,28,24,.18);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.22,.61,.36,1);
  z-index: 100; display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: var(--ivory-2);
}
.drawer-head .brandmark { flex-direction: column; align-items: flex-start; gap: 2px; }
.drawer-head .brandmark .logo { font-size: 18px; letter-spacing: 1px; }
.drawer-head .brandmark .sub { font-size: 10px; letter-spacing: 2px; }
.drawer-close {
  width: 36px; height: 36px; border: none; border-radius: 8px;
  background: transparent; color: var(--ink-soft); font-size: 22px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.drawer-close:hover { background: rgba(197,165,114,.15); color: var(--gold-deep); }

.drawer-body {
  flex: 1; overflow-y: auto; padding: 14px 16px 28px;
  background: var(--ivory); min-height: 120px;
}
.drawer-body > a,
.drawer-body > button {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 13px 12px; border-radius: 10px;
  font-size: 15px; color: var(--ink) !important; text-align: left;
  background: transparent; border: none; cursor: pointer;
  transition: background .18s, color .18s;
}
.drawer-body > a:hover,
.drawer-body > button:hover { background: var(--ivory-2); color: var(--gold-deep); }
.drawer-body > a i,
.drawer-body > button i { width: 24px; text-align: center; color: var(--gold); }
.drawer-body > a[target="_blank"] i { color: var(--gold-deep); }
.drawer-body .me {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; margin-bottom: 8px; border-radius: 10px;
  background: var(--ivory-2); color: var(--ink); font-weight: 600; font-size: 15px;
}
.drawer-body .me i { color: var(--gold); }

.drawer-group { margin: 6px 0; }
.drawer-group .dg-label {
  display: block; padding: 10px 12px 6px;
  font-size: 12px; color: var(--ink-soft); letter-spacing: 2px; text-transform: uppercase;
}
.drawer-group a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px 11px 22px; border-radius: 8px;
  font-size: 14px; color: var(--ink) !important;
}
.drawer-group a:hover { background: var(--ivory-2); color: var(--gold-deep); }
.drawer-group a i { width: 22px; text-align: center; color: var(--gold); }

@media (max-width: 980px) {
  .hamburger { display: inline-flex; }
  .topnav { display: none; }
}
@media (min-width: 981px) {
  .drawer, .drawer-mask, .hamburger { display: none !important; }
}

/* ============================================================
   渠道专属展示页（合规改版 V2 · 白标降级）
   顶部常驻条：渠道名 + 授权品牌数 + 去交易声明 + 招商/客服入口
   ── 与旧「白标子商城」的区别：不改主题色、不改主体署名，
      仅做渠道名露出，避免主体混淆的合规风险。
   ============================================================ */
.showcase-bar {
  background: linear-gradient(90deg, #2f2a24 0%, #4a4238 100%);
  color: #f6efe3;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.showcase-bar .wrap {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 10px 16px;
}
.showcase-bar .sb-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; }
.showcase-bar .sb-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #f4e6cd; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.showcase-bar .sb-left b { font-size: 16px; color: #fff; letter-spacing: .3px; }
.showcase-bar .sb-meta { font-size: 12px; opacity: .78; }
.showcase-bar .sb-right { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.showcase-bar .sb-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #f6efe3; background: transparent; transition: background .18s, filter .18s;
}
.showcase-bar .sb-btn:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.showcase-bar .sb-btn.primary {
  background: var(--brand, #b08a4a); border-color: transparent; color: #fff;
}
.showcase-bar .sb-btn.primary:hover { filter: brightness(1.08); background: var(--brand, #b08a4a); }
/* 展示页 hero / 百货集页头：弱化通用文案，突出渠道名 */
.showcase-hero .tagline { color: var(--gold-deep, #8a6d3b); font-weight: 600; }
.bh-head-showcase .bh-kicker { opacity: .9; }
@media (max-width: 640px) {
  .showcase-bar .wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .showcase-bar .sb-right { margin-left: 0; width: 100%; }
  .showcase-bar .sb-btn { flex: 1; justify-content: center; }
}

/* ============================================================
   合规改版 V2 · P4：免责声明页（#/disclaimer）
   ============================================================ */
.dcl { max-width: 860px; padding-bottom: 56px; }
.dcl-head { padding: 28px 0 18px; border-bottom: 1px solid var(--line); }
.dcl-head h2 { font-family: var(--font-serif); font-size: 32px; margin: 8px 0 10px; }
.dcl-sub { color: var(--ink-soft); font-size: 14px; line-height: 1.8; margin: 0; }
.dcl-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.dcl-alert {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 22px 0; padding: 14px 16px;
  background: #f6efe3; border: 1px solid #e3d6bf; border-left: 4px solid var(--gold, #b08a4a);
  border-radius: 8px; font-size: 14px; line-height: 1.8; color: #6b5d49;
}
.dcl-alert i { color: var(--gold-deep, #8a6d3b); margin-top: 4px; }

.dcl-toc {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 26px; padding: 14px 16px;
  background: var(--ivory-2, #faf7f2); border: 1px dashed #e0d3bb; border-radius: 8px;
}
.dcl-toc-a {
  font-size: 13px; color: #6b5d49; text-decoration: none;
  padding: 4px 10px; border-radius: 999px; background: #fff; border: 1px solid #e7ddcb;
}
.dcl-toc-a:hover { color: #fff; background: var(--gold, #b08a4a); border-color: transparent; }

.dcl-sec { margin: 0 0 26px; scroll-margin-top: 80px; }
.dcl-h {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 19px; color: var(--ink); margin: 0 0 12px;
}
.dcl-no {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold, #b08a4a); color: #fff; font-size: 13px; font-weight: 700;
}
.dcl-p { margin: 0 0 10px; font-size: 14px; line-height: 1.95; color: #4b4438; }
.dcl-p b { color: #7a4a2b; }

.dcl-contact { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.dcl-fine { margin-top: 14px; font-size: 12px; color: var(--ink-soft); }
.dcl-foot-note { margin-top: 26px; font-size: 12px; color: #9a8a72; text-align: center; }

/* ============================================================
   合规改版 V2 · P4：客服标准话术（#/service）
   ============================================================ */
.svc-scripts { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.svc-sec-sub { margin: -6px 0 16px; font-size: 13px; color: var(--ink-soft); }
.sc-list { display: flex; flex-direction: column; gap: 8px; }
.sc-item {
  border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden;
}
.sc-item[open] { border-color: #e3d6bf; box-shadow: 0 2px 10px rgba(122, 100, 66, .06); }
.sc-q {
  cursor: pointer; list-style: none; padding: 13px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.sc-q::-webkit-details-marker { display: none; }
.sc-no {
  flex: none; font-size: 12px; font-weight: 700; color: var(--gold-deep, #8a6d3b);
  background: #f6efe3; border: 1px solid #e3d6bf; border-radius: 5px; padding: 1px 7px;
}
.sc-arrow { margin-left: auto; color: var(--ink-soft); transition: transform .2s; }
.sc-item[open] .sc-arrow { transform: rotate(180deg); }
.sc-a { padding: 0 16px 14px; }
.sc-a p { margin: 0 0 10px; font-size: 14px; line-height: 1.9; color: #4b4438; }
.btn-xs { padding: 4px 10px; font-size: 12px; border-radius: 6px; }
.sc-tip {
  margin-top: 18px; padding: 11px 14px; border-radius: 8px;
  background: #fdf6ea; border: 1px solid #ecdabb; color: #8a6d3b;
  font-size: 13px; line-height: 1.7; display: flex; gap: 8px; align-items: flex-start;
}
.sc-tip i { margin-top: 3px; }

/* ============================================================
   合规改版 V2 · P4：关于我们 · 网站主体与性质
   ============================================================ */
.about-subject { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-subject-t { font-family: var(--font-serif); font-size: 20px; margin: 0 0 14px; }
.as-grid { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.as-row { display: flex; gap: 14px; background: #fff; padding: 11px 16px; font-size: 14px; line-height: 1.8; }
.as-k { flex: none; width: 92px; color: var(--ink-soft); }
.as-v { flex: 1; color: #4b4438; }
.as-v b { color: #7a4a2b; }
.about-note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 16px;
  padding: 13px 15px; border-radius: 8px; background: var(--ivory-2, #faf7f2);
  border: 1px solid #e7ddcb; font-size: 13px; line-height: 1.8; color: #6b5d49;
}
.about-note i { color: var(--gold-deep, #8a6d3b); margin-top: 4px; }
.about-note a { color: var(--gold-deep, #8a6d3b); text-decoration: underline; }

@media print {
  .dcl-actions, .dcl-toc, .topbar, .footer, .compliance-banner, .showcase-bar { display: none !important; }
}

@media (max-width: 640px) {
  .dcl-head h2 { font-size: 25px; }
  .as-row { flex-direction: column; gap: 2px; }
  .as-k { width: auto; font-size: 12px; }
  .dcl-toc { padding: 10px; }
}

/* ============================================================
   V3 私有化 · 「内部工作台」登录落地页
   ------------------------------------------------------------
   用 JS 写入 #view 时撑满全屏（position:fixed），覆盖 topbar/footer，
   是 linglinxinta.cn 公网访问的唯一入口（未登录态）。
   ============================================================ */
.lw-shell { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
  display: flex; overflow: hidden; background: #f5efe4; }
.lw-left, .lw-right { position: relative; min-height: 100vh; }
.lw-left { flex: 1.05; background: #182032; color: #f5efe4; padding: 48px 56px 32px;
  display: flex; align-items: stretch; }
.lw-right { flex: 0.95; background: #f5efe4; color: #2c2c2c; padding: 56px 0 32px;
  display: flex; align-items: stretch; justify-content: center;
  overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* 左栏内部 */
.lw-left-inner { width: 100%; max-width: 600px; margin: 0 auto; display: flex;
  flex-direction: column; }
.lw-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.lw-mark { width: 56px; height: 56px; border: 2px solid #c19a6b; color: #c19a6b;
  display: flex; align-items: center; justify-content: center;
  font-family: 'STKaiti','KaiTi','STSong',serif; font-size: 30px; line-height: 1; }
.lw-brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.lw-brand-name b { font-family: var(--font-serif, 'Noto Serif SC', 'STSong', serif);
  font-size: 22px; letter-spacing: 4px; color: #f1e7d4; }
.lw-brand-name i { font-style: normal; font-size: 11px; letter-spacing: 6px;
  color: #9aa0ad; margin-top: 4px; }
.lw-tagline { font-size: 13px; letter-spacing: 2px; color: #c19a6b; margin: 16px 0 36px; }
.lw-tagline span { color: #c19a6b; font-weight: 600; letter-spacing: 4px; }
.lw-title { font-family: var(--font-serif, 'Noto Serif SC', 'STSong', serif);
  font-weight: 500; font-size: 38px; line-height: 1.35; color: #f5efe4;
  margin: 0 0 28px; letter-spacing: 1px; }
.lw-title-2 { font-size: 30px; color: #c19a6b; letter-spacing: 6px; }
.lw-rule { border: 0; height: 2px; width: 64px; background: #c19a6b; margin: 0 0 28px; }
.lw-intro { font-size: 15px; line-height: 2; color: #d6d2c5; margin: 0 0 32px; }
.lw-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 28px; }
.lw-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(193,154,107,0.18);
  border-radius: 6px; padding: 16px 18px; display: flex; gap: 14px;
  align-items: flex-start; transition: all .25s; }
.lw-card:hover { border-color: #c19a6b; background: rgba(193,154,107,0.06); }
.lw-card i { color: #c19a6b; font-size: 22px; margin-top: 2px; flex: none; }
.lw-card div { display: flex; flex-direction: column; gap: 4px; }
.lw-card b { color: #f5efe4; font-size: 15px; letter-spacing: 1px; }
.lw-card span { color: #9aa0ad; font-size: 12.5px; line-height: 1.7; }
/* 可点击卡片（仅「商品架构」）：光标 + 右下角「点击查看」提示（伪元素，不改 DOM 结构） */
.lw-card.is-click { cursor: pointer; }
.lw-card.is-click::after { content: '点击查看 →'; display: block; margin-top: 8px;
  font-size: 11.5px; letter-spacing: 1px; color: #c19a6b; opacity: 0; transition: opacity .2s; }
.lw-card.is-click:hover::after, .lw-card.is-click:focus-visible::after { opacity: 1; }
.lw-card.is-click:focus-visible { outline: 1px solid #c19a6b; outline-offset: 2px; }
.lw-foot { margin-top: auto; padding-top: 20px; border-top: 1px dashed rgba(245,239,228,0.18); }
.lw-foot p { font-size: 12px; color: #7d8597; line-height: 1.9; margin: 0; }
.lw-icp a { color: #c19a6b; text-decoration: none; }
.lw-icp a:hover { text-decoration: underline; }

/* 右栏内部 */
.lw-badge { position: absolute; top: 20px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  background: rgba(193,154,107,0.12); color: #8a6d3b;
  border: 1px solid rgba(193,154,107,0.3); }
.lw-badge i { font-size: 11px; }
.lw-right-inner { width: 100%; max-width: 420px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-direction: column; justify-content: center; }
/* 商品架构详情模式：容器放宽 + 顶部对齐（内容长，居中会顶出可视区） */
.lw-right-inner.arch-mode { max-width: 560px; justify-content: flex-start; }

/* ---------- 右栏双面板切换（200ms opacity 过渡） ---------- */
.lw-pane { width: 100%; transition: opacity .2s ease; }
.lw-pane.is-out { opacity: 0; }
.lw-pane.is-hidden { display: none; }
.lw-eyebrow { color: #8a6d3b; font-size: 13px; letter-spacing: 6px;
  font-weight: 500; margin: 0 0 12px; }
.lw-h { font-family: var(--font-serif, 'Noto Serif SC', 'STSong', serif);
  font-weight: 500; font-size: 32px; color: #3a3127; margin: 0 0 14px; letter-spacing: 2px; }
.lw-lead { color: #6b5d49; font-size: 14px; line-height: 1.85; margin: 0 0 28px; }
.lw-lead b { color: #7a4a2b; font-weight: 500; }
.lw-msg { margin-bottom: 8px; }
.lw-msg > div { padding: 10px 14px; border-radius: 6px;
  font-size: 13px; line-height: 1.6; margin-bottom: 14px;
  background: #fdf6e3; color: #6b5d49; border: 1px solid #e7ddcb; }
.lw-msg > div.err { background: #fbeeee; color: #8b3a3a; border: 1px solid #e6cdcd; }

.lw-form { display: flex; flex-direction: column; gap: 18px; }
.lw-field { display: flex; flex-direction: column; gap: 8px; }
.lw-field label { font-size: 13px; color: #4b4438; font-weight: 500; }
.lw-input { position: relative; display: flex; align-items: center;
  border-bottom: 1.5px solid #cfc4b0; padding: 8px 0; transition: border-color .2s; }
.lw-input:focus-within { border-color: #c19a6b; }
.lw-input i { color: #b8a887; margin-right: 12px; font-size: 16px; }
.lw-input input { flex: 1; background: transparent; border: 0; outline: 0;
  font-size: 15px; color: #3a3127; padding: 4px 0; min-width: 0; }
.lw-input input::placeholder { color: #b8a887; }
.lw-eye { background: transparent; border: 0; color: #b8a887; cursor: pointer;
  padding: 6px 8px; margin-right: -8px; }
.lw-eye:hover { color: #8a6d3b; }

.lw-row { display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px; }
.lw-remember { display: inline-flex; align-items: center; gap: 8px;
  color: #6b5d49; font-size: 13.5px; cursor: pointer; user-select: none; }
.lw-remember input { accent-color: #c19a6b; }
.lw-link { color: #c19a6b; font-size: 13.5px; text-decoration: none; cursor: pointer; }
.lw-link:hover { color: #8a6d3b; }

.lw-submit { margin-top: 18px; height: 52px;
  background: #1a2233; color: #f5efe4; border: 0; border-radius: 4px;
  font-size: 15px; letter-spacing: 12px; font-weight: 400; cursor: pointer;
  transition: all .2s; }
.lw-submit:hover:not(:disabled) { background: #283149; letter-spacing: 16px; }
.lw-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* 渠道注册入口：登录按钮下方 16px，小号居中 */
.lw-register { margin: 16px 0 0; text-align: center; font-size: 13px; color: #8a7e6a; }
.lw-reg-link { color: #c19a6b; text-decoration: underline; cursor: pointer; }
.lw-reg-link:hover { color: #8a6d3b; }

.lw-sep { height: 1px; background: #e7ddcb; margin: 24px 0 20px; }
.lw-help { text-align: center; color: #8a7e6a; font-size: 12.5px;
  line-height: 1.9; margin: 0; }
.lw-help + .lw-help { margin-top: 2px; }

/* ---------- 商品架构详情面板（面板 B） ---------- */
.arch-head { display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin: 0 0 22px; }
.arch-head-txt { min-width: 0; }
.arch-h { font-size: 26px; margin-bottom: 6px; }
.arch-sub { margin: 0; font-size: 13.5px; color: #8a7e6a; letter-spacing: 1px; line-height: 1.7; }
.arch-back { flex: none; margin-top: 2px; background: transparent; cursor: pointer;
  border: 1px solid #cfc4b0; border-radius: 4px; color: #6b5d49;
  font-size: 12.5px; padding: 7px 12px; transition: all .2s; white-space: nowrap; }
.arch-back:hover { border-color: #c19a6b; color: #8a6d3b; background: rgba(193,154,107,0.08); }
.arch-back i { font-size: 11px; margin-right: 4px; }

.arch-list { display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.arch-item { display: flex; gap: 14px; padding: 14px 16px;
  background: rgba(255,255,255,0.55); border: 1px solid #e7ddcb;
  border-left: 3px solid #c19a6b; border-radius: 4px; }
.arch-no { flex: none; font-family: var(--font-serif, 'Noto Serif SC', 'STSong', serif);
  font-size: 20px; line-height: 1.2; color: #c19a6b; }
.arch-body { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.arch-name { font-size: 15px; color: #3a3127; letter-spacing: 1px; }
.arch-meta { margin: 0; font-size: 12.5px; line-height: 1.7; color: #6b5d49; }
.arch-label { display: inline-block; margin-right: 8px; padding: 1px 7px;
  font-size: 11.5px; color: #8a6d3b; background: rgba(193,154,107,0.14);
  border-radius: 3px; }
.arch-desc { margin: 0; font-size: 13px; line-height: 1.85; color: #7d7263; }
.arch-foot { margin: 0; padding: 14px 16px; font-size: 12.5px; line-height: 1.9;
  color: #8a7e6a; background: rgba(193,154,107,0.07);
  border-radius: 4px; border: 1px dashed rgba(193,154,107,0.35); }

/* 移动端 */
@media (max-width: 900px) {
  .lw-shell { position: relative; overflow-y: auto; height: auto; min-height: 100vh; flex-direction: column; }
  .lw-left, .lw-right { padding: 28px 22px; min-height: auto; }
  .lw-left { padding-bottom: 16px; }
  .lw-right { padding-top: 32px; }
  .lw-title { font-size: 26px; }
  .lw-title-2 { font-size: 20px; }
  .lw-mark { width: 44px; height: 44px; font-size: 22px; }
  .lw-cards { gap: 10px; }
  .lw-card { padding: 12px 14px; }
  .lw-card b { font-size: 14px; }
  .lw-card span { font-size: 12px; }
  .lw-h { font-size: 26px; }
  .lw-intro { font-size: 14px; line-height: 1.85; }
  .lw-submit { letter-spacing: 8px; }
  /* 移动端：右栏不单独滚动，跟随整页滚动；卡片提示常驻（无 hover） */
  .lw-right { overflow: visible; }
  .lw-right-inner.arch-mode { max-width: 100%; }
  .lw-card.is-click::after { opacity: 1; margin-top: 6px; }
  .lw-register { display: block; margin-top: 16px; }
  /* 商品架构详情：纵向排列，整页可滚动 */
  .arch-head { flex-direction: column; gap: 10px; margin-bottom: 18px; }
  .arch-head-txt { width: 100%; }
  .arch-back { align-self: flex-start; margin-top: 0; }
  .arch-h { font-size: 22px; }
  .arch-list { gap: 10px; }
  .arch-item { padding: 12px 13px; gap: 11px; }
  .arch-no { font-size: 17px; }
}

/* ============================================================
   2026-09-05 B2B 招商展示站改版 · 新增区块样式
   ============================================================ */

/* 通用：大按钮 + eyebrow 基准样式 */
.btn-lg { padding: 13px 26px; font-size: 15px; border-radius: var(--radius); }
.eyebrow { font-size: 12px; letter-spacing: 3px; color: var(--accent-zhen); text-transform: uppercase; font-weight: 600; }

/* 顶部导航：申请渠道合作主按钮 */
.nav-cta {
  background: var(--accent-zhen);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(184, 134, 43, .28);
}
.nav-cta:hover { background: #a6741f; }

/* ① 主视觉 Banner */
.home-hero {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 55%, #2A52B8 100%);
  color: #fff;
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.home-hero-inner { display: flex; align-items: center; gap: 40px; }
.hh-eyebrow { font-size: 13px; letter-spacing: 3px; color: rgba(255,255,255,.78); text-transform: uppercase; margin-bottom: 14px; }
.hh-title { font-size: 40px; line-height: 1.25; color: #fff; font-weight: 700; }
.hh-accent { color: var(--accent-zhen); }
.hh-lead { margin: 18px 0 24px; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.88); max-width: 560px; }
.hh-lead b { color: #fff; }
.hh-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hh-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.hh-cta .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.hh-tags { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.hh-tags span { font-size: 12px; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.14); color: rgba(255,255,255,.92); }
.hh-visual { flex: 0 0 320px; }
.hh-price-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}
.hh-pc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.18); color: rgba(255,255,255,.9); }
.hh-pc-row b { color: #fff; font-size: 16px; }
.hh-pc-note { margin-top: 12px; text-align: center; font-size: 12px; letter-spacing: 1px; color: var(--accent-zhen); font-weight: 600; }

/* ② 信任背书栏 */
.trust-bar { background: var(--ivory-2); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; gap: 12px; flex-wrap: wrap; padding: 18px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; flex: 1 1 180px; }
.trust-item i { font-size: 22px; color: var(--accent-zhen); width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); }
.trust-item b { display: block; font-size: 15px; }
.trust-item span { font-size: 12.5px; color: var(--ink-soft); }

/* ③ 分类导航 */
.cat-nav { display: flex; gap: 12px; flex-wrap: wrap; padding: 20px 0 4px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink);
  transition: all var(--t-base);
}
.cat-chip i { color: var(--accent-zhen); font-size: 12px; }
.cat-chip:hover { border-color: var(--accent-zhen); color: var(--accent-zhen); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ⑤ 招商优势区 */
.invest { padding: 56px 0; background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%); }
.invest-head { text-align: center; margin-bottom: 36px; }
.invest-head h2 { font-size: 30px; margin: 8px 0 10px; }
.invest-head .lead { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.inv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; transition: all var(--t-base);
}
.inv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.inv-card i { font-size: 26px; color: var(--accent-zhen); margin-bottom: 12px; }
.inv-card h3 { font-size: 17px; margin-bottom: 8px; }
.inv-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.invest-cta { text-align: center; margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 关于我们页 */
.about { padding: 40px 0 60px; }
.about-hero { text-align: center; margin-bottom: 36px; }
.about-hero h1 { font-size: 34px; margin: 8px 0 12px; }
.about-hero .lead { max-width: 720px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 32px; }
.about-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.about-card h3 { font-size: 19px; margin-bottom: 14px; color: var(--gold); }
.about-card p { color: var(--ink-soft); line-height: 1.85; }
.about-list { list-style: none; }
.about-list li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); align-items: flex-start; }
.about-list li i { color: var(--accent-zhen); margin-top: 4px; }
.about-section { margin-bottom: 30px; }
.about-h { font-size: 20px; margin-bottom: 16px; color: var(--gold); }
.about-brands { display: flex; gap: 10px; flex-wrap: wrap; }
.about-brand { padding: 8px 16px; background: var(--ivory-2); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 500; }
.about-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-trust { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.about-trust i { font-size: 20px; color: var(--accent-zhen); margin-top: 2px; }
.about-trust b { display: block; font-size: 15px; margin-bottom: 4px; }
.about-trust p { font-size: 13px; color: var(--ink-soft); }
.about-cta { text-align: center; margin: 20px 0 14px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.about-foot { text-align: center; color: var(--ink-300); font-size: 13px; margin-top: 8px; }

/* 渠道申请页 · 价值前置 */
.apply-value { padding: 40px 0 8px; background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%); }
.av-head { text-align: center; margin-bottom: 30px; }
.av-head h2 { font-size: 28px; margin: 8px 0 10px; }
.av-head .lead { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }
.av-block { margin-bottom: 28px; }
.av-t { font-size: 18px; margin-bottom: 14px; color: var(--gold); border-left: 4px solid var(--accent-zhen); padding-left: 10px; }
.av-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.av-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.av-card i { font-size: 22px; color: var(--accent-zhen); margin-bottom: 10px; }
.av-card h4 { font-size: 15px; margin-bottom: 6px; }
.av-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.av-tiers { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
.av-tier { flex: 1 1 180px; background: #fff; border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 16px 18px; text-align: center; }
.av-tier b { display: block; font-size: 16px; color: var(--gold); margin-bottom: 4px; }
.av-tier span { font-size: 13px; color: var(--ink-soft); }
.av-tier-note { flex: 1 1 100%; text-align: center; font-size: 13px; color: var(--accent-zhen); font-weight: 600; margin-top: 4px; }

/* 注册成功 · 升级渠道引导弹窗 */
.modal-mask {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(20, 24, 33, .55); padding: 20px;
}
.upgrade-modal {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  max-width: 420px; width: 100%; padding: 32px 28px; text-align: center;
  box-shadow: var(--shadow-lg); animation: rise .28s var(--ease) forwards;
}
.um-close { position: absolute; top: 12px; right: 14px; font-size: 18px; color: var(--ink-300); }
.um-ico { font-size: 34px; color: var(--accent-zhen); margin-bottom: 8px; }
.upgrade-modal h3 { font-size: 20px; margin-bottom: 10px; }
.upgrade-modal p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.upgrade-modal p strong { color: var(--gold); }
.um-actions { display: flex; flex-direction: column; gap: 10px; }

/* 响应式 */
@media (max-width: 860px) {
  .home-hero-inner { flex-direction: column; align-items: flex-start; }
  .hh-visual { flex: none; width: 100%; }
  .hh-title { font-size: 30px; }
  .invest-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-trust-grid { grid-template-columns: 1fr; }
  .av-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .av-grid { grid-template-columns: 1fr; }
}
