/* ========== 空旅网平台 - 设计系统 ========== */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --ink: #0d1117;
  --ink-2: #41474f;
  --ink-3: #6b7280;
  --line: #e6e9ef;
  --line-strong: #d4d9e2;
  --sky: #1f6feb;
  --sky-deep: #0b3d91;
  --sky-soft: #e8f0fe;
  --good: #1a7f5a;
  --good-bg: #e7f5ee;
  --bad: #a32d2d;
  --bad-bg: #fcebeb;
  --warn: #b06a00;
  --warn-bg: #fdf2e0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(16,24,40,.04), 0 8px 24px rgba(16,24,40,.06);
  --max: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Source Han Sans CN", "Noto Sans CJK SC", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* ---------- 导航 ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: var(--max); margin: 0 auto; height: 62px; padding: 0 24px; display: flex; align-items: center; gap: 16px; }
.brand { display: flex; align-items: baseline; gap: 7px; font-weight: 700; cursor: pointer; }
.brand__mark { color: var(--sky); font-size: 19px; }
.brand__name { font-size: 18px; letter-spacing: .5px; }
.brand__sub { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.nav__links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav__links a, .nav__links button.link { font-size: 14.5px; color: var(--ink-2); padding: 8px 12px; border-radius: 8px; border: 0; background: none; }
.nav__links a:hover, .nav__links button.link:hover { background: var(--bg-alt); color: var(--ink); }
.nav__links a.active { color: var(--sky); background: var(--sky-soft); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- 按钮 ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 20px; border-radius: 999px; font-size: 14.5px; font-weight: 600; border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; white-space: nowrap; }
.btn--primary { background: var(--sky); color: #fff; box-shadow: 0 6px 18px rgba(31,111,235,.25); }
.btn--primary:hover { background: var(--sky-deep); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn--sm { padding: 6px 13px; font-size: 13px; }
.btn--good { background: var(--good); color: #fff; }
.btn--warn { background: var(--warn); color: #fff; }
.btn--danger { background: var(--bad); color: #fff; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- 主容器 ---------- */
main { max-width: var(--max); margin: 0 auto; padding: 92px 24px 40px; min-height: 70vh; }
.page { animation: fadein .35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- 首页 ---------- */
.hero { position: relative; border-radius: var(--radius); overflow: hidden; padding: 64px 48px; margin-bottom: 40px; background: linear-gradient(160deg, #f2f7ff, #ffffff 65%); border: 1px solid var(--line); }
.hero__eyebrow { display: inline-block; font-size: 13px; font-weight: 600; color: var(--sky-deep); background: #fff; border: 1px solid var(--line-strong); padding: 5px 13px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; background: linear-gradient(120deg, var(--ink) 30%, var(--sky-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin-top: 18px; max-width: 640px; font-size: 16.5px; color: var(--ink-2); }
.hero p.lead b { color: var(--ink); }
.hero__actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.section { margin-bottom: 48px; }
.section__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.section__head h2 { font-size: 24px; font-weight: 800; letter-spacing: -.4px; }
.section__head .sub { color: var(--ink-3); font-size: 14px; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow); }
.card h3 { font-size: 16.5px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--ink-2); }
.card .ic { font-size: 26px; margin-bottom: 10px; }
.card--blue { border-top: 3px solid var(--sky); }
.card--teal { border-top: 3px solid #0f6e56; }
.card--amber { border-top: 3px solid #b06a00; }

.model-flow { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 8px 0 30px; }
.model-step { flex: 1 1 200px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; box-shadow: var(--shadow); text-align: center; }
.model-step__num { width: 38px; height: 38px; margin: 0 auto 10px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); color: #fff; font-weight: 800; font-size: 14px; }
.model-step h3 { font-size: 16px; margin-bottom: 6px; }
.model-step p { font-size: 13.5px; color: var(--ink-2); }
.model-arrow { align-self: center; font-size: 20px; color: var(--line-strong); }

.callout { display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(120deg, #f0f6ff, #fff); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 20px 22px; margin-top: 18px; }
.callout__ic { font-size: 22px; }
.callout b { color: var(--sky-deep); }
.callout div { font-size: 14.5px; color: var(--ink-2); }

/* ---------- 产品 ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.prod { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.prod__thumb { height: 130px; display: grid; place-items: center; background: linear-gradient(140deg, #e8f0fe, #dbeafe 70%); color: var(--sky-deep); font-size: 44px; }
.prod__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod__body h3 { font-size: 17px; }
.prod__meta { font-size: 13px; color: var(--ink-3); display: flex; gap: 12px; flex-wrap: wrap; }
.prod__desc { font-size: 13.5px; color: var(--ink-2); flex: 1; }
.prod__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.prod__price { font-size: 20px; font-weight: 800; color: var(--sky-deep); }
.prod__price small { font-size: 12.5px; font-weight: 500; color: var(--ink-3); }

/* ---------- 表单 ---------- */
.form { display: grid; gap: 14px; max-width: 440px; }
.form--wide { max-width: none; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea { border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 10px 13px; outline: none; transition: border-color .15s; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky); }
.field textarea { resize: vertical; min-height: 70px; }
.hint { font-size: 12.5px; color: var(--ink-3); }

.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.role-opt { border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 10px; text-align: center; cursor: pointer; transition: all .15s; background: #fff; }
.role-opt b { display: block; font-size: 14.5px; }
.role-opt span { font-size: 12px; color: var(--ink-3); }
.role-opt.sel { border-color: var(--sky); background: var(--sky-soft); }
.role-opt.sel b { color: var(--sky-deep); }

/* ---------- 消息 ---------- */
.msg { padding: 11px 15px; border-radius: var(--radius-sm); font-size: 13.5px; margin-top: 12px; display: none; }
.msg.show { display: block; }
.msg--ok { background: var(--good-bg); color: var(--good); }
.msg--err { background: var(--bad-bg); color: var(--bad); }

/* ---------- 表格 ---------- */
.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; margin-bottom: 22px; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
.tbl th { text-align: left; padding: 12px 16px; background: var(--bg-alt); color: var(--ink-2); font-size: 12.5px; font-weight: 600; border-bottom: 1px solid var(--line); white-space: nowrap; }
.tbl td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: #fafbfd; }

/* ---------- 徽章 ---------- */
.badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.badge--blue { background: var(--sky-soft); color: var(--sky-deep); }
.badge--good { background: var(--good-bg); color: var(--good); }
.badge--warn { background: var(--warn-bg); color: var(--warn); }
.badge--bad { background: var(--bad-bg); color: var(--bad); }
.badge--gray { background: var(--bg-alt); color: var(--ink-2); }
.badge--platform { background: var(--sky-soft); color: var(--sky-deep); }
.badge--offline { background: #fff3e0; color: #b45309; }
.badge--new { background: #fde8e8; color: #c0392b; }

/* ---------- 工作台 ---------- */
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.dash-head h2 { font-size: 24px; font-weight: 800; }
.dash-head .who { font-size: 13.5px; color: var(--ink-3); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-bottom: 26px; }
.stat-c { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow); }
.stat-c .v { font-size: 24px; font-weight: 800; color: var(--sky-deep); }
.stat-c .k { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 22px; flex-wrap: wrap; }
.tab { padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--ink-2); border: 0; background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab:hover { color: var(--ink); }
.tab.on { color: var(--sky); border-bottom-color: var(--sky); }

.panel { display: none; }
.panel.on { display: block; animation: fadein .3s ease; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.panel-head h3 { font-size: 17px; font-weight: 700; }

/* ---------- 弹窗 ---------- */
.modal-mask { position: fixed; inset: 0; background: rgba(13,17,23,.45); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-mask.show { display: flex; }
.modal { background: #fff; border-radius: var(--radius); width: 100%; max-width: 460px; padding: 26px; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.modal h3 { font-size: 17px; margin-bottom: 16px; }
.modal__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* ---------- 页脚 ---------- */
.footer { margin-top: 40px; background: var(--ink); color: #e8ecf3; border-radius: var(--radius) var(--radius) 0 0; }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 36px 24px; display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.footer__brand { font-size: 16px; font-weight: 700; }
.footer__brand .brand__mark { color: #0ea5e9; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; color: #aab4c4; font-size: 13px; }
.footer__beian { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .5px; color: #e8ecf3; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); padding: 7px 16px; border-radius: 999px; }
.footer__beian:hover { background: rgba(255,255,255,.14); color: #fff; }
.footer__copy { color: #6b7689; font-size: 12px; }

/* ---------- 商城 ---------- */
.mall-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.mall-tab { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 16px 14px; text-align: left; cursor: pointer; transition: all .15s; box-shadow: var(--shadow); }
.mall-tab b { display: block; font-size: 16px; color: var(--ink); }
.mall-tab span { font-size: 12.5px; color: var(--ink-3); }
.mall-tab:hover { border-color: var(--sky); }
.mall-tab.on { border-color: var(--sky); background: var(--sky-soft); }
.mall-tab.on b { color: var(--sky-deep); }
.mall-panel { animation: fadein .3s ease; }
.mall-note { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 13.5px; color: var(--ink-2); margin-bottom: 18px; }

.ac-grid, .sc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.ac-card, .sc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: flex; gap: 16px; padding: 18px; box-shadow: var(--shadow); }
.ac-card__ic, .sc-card__ic { font-size: 34px; line-height: 1; }
.ac-card__body, .sc-card__body { flex: 1; display: flex; flex-direction: column; }
.ac-card__body h3, .sc-card__body h3 { font-size: 16.5px; }
.ac-card__mfr { font-size: 13px; color: var(--sky); font-weight: 600; margin: 2px 0 4px; }
.ac-card__foot, .sc-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 10px; flex-wrap: wrap; }

.cat-entry { display: block; position: relative; }
.cat-entry .ic { font-size: 26px; margin-bottom: 10px; }
.cat-entry h3 { font-size: 16px; }
.cat-entry p { font-size: 13px; }
.cat-entry:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-entry__go { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--sky); }

/* ---------- 商城筛选与统一商品卡 ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; box-shadow: var(--shadow); margin-bottom: 12px; }
.filter-search { flex: 1 1 220px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 9px 13px; outline: none; min-width: 0; }
.filter-search:focus { border-color: var(--sky); }
.filter-bar select { border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 9px 12px; background: #fff; outline: none; }
.filter-bar select:focus { border-color: var(--sky); }
.mall-count { font-size: 13px; color: var(--ink-3); margin: 4px 2px 14px; }
.mall-count b { color: var(--sky-deep); font-size: 15px; }

.g-grid { display: grid; gap: 12px; }
.g-card { display: flex; gap: 16px; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); }
.g-card:hover { border-color: var(--line-strong); }
.g-card__ic { font-size: 34px; line-height: 1; align-self: center; min-width: 44px; text-align: center; }
.g-card__body { flex: 1; min-width: 0; }
.g-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.g-card__sub { font-size: 12.5px; color: var(--ink-3); }
.g-card__body h3 { font-size: 16.5px; }
.g-card__meta { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.g-card__desc { font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.g-card__side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 10px; min-width: 150px; }
.g-card__price { font-size: 20px; font-weight: 800; color: var(--sky-deep); white-space: nowrap; }
.g-card__price small { font-size: 12px; font-weight: 500; color: var(--ink-3); }
.g-card__price--soft { font-size: 15px; color: var(--ink-3); font-weight: 600; }

/* ---------- 响应式 ---------- */
@media (max-width: 900px) { .grid3, .grid4, .roles { grid-template-columns: 1fr 1fr; } .mall-tabs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .nav__links { position: absolute; top: 62px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 16px; display: none; box-shadow: var(--shadow); }
  .nav__links.open { display: flex; }
  .nav__links a, .nav__links button.link { padding: 12px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; }
  .hero { padding: 40px 24px; }
  .grid3, .grid4, .roles { grid-template-columns: 1fr; }
  main { padding: 84px 16px 32px; }
  .model-arrow { transform: rotate(90deg); }
  .g-card { flex-direction: column; }
  .g-card__side { flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; }
}

/* ---------- 首页 Banner 大图 ---------- */
.banner { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; display: flex; align-items: center; margin-bottom: 40px; background: linear-gradient(135deg, #0b3d91 0%, #1f6feb 60%, #5b9bff 100%); }
.banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner__mask { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,28,66,.88) 0%, rgba(11,61,145,.55) 46%, rgba(11,61,145,.12) 100%); }
.banner__content { position: relative; z-index: 2; padding: 56px 52px; max-width: 760px; color: #fff; }
.banner__eyebrow { display: inline-block; font-size: 13px; font-weight: 600; color: #cfe0ff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 5px 13px; border-radius: 999px; margin-bottom: 18px; }
.banner h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; letter-spacing: -.5px; line-height: 1.12; }
.banner__lead { margin-top: 18px; font-size: 16px; color: #e6eefc; max-width: 600px; }
.banner__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; border-color: #fff; }

/* ---------- 精选优质产品（大图卡）---------- */
.featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.featured-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .2s ease, border-color .2s; }
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(16,24,40,.12); border-color: var(--line-strong); }
.featured-card__img { height: 188px; background: linear-gradient(140deg, #e8f0fe, #dbeafe 70%); background-size: cover; background-position: center; }
.featured-card__body { padding: 16px 18px 18px; }
.featured-card__badges { display: flex; gap: 8px; margin-bottom: 10px; }
.featured-card__body h3 { font-size: 17px; }
.featured-card__sub { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.featured-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.featured-card__price { font-size: 19px; font-weight: 800; color: var(--sky-deep); }
.featured-card__price small { font-size: 12px; font-weight: 500; color: var(--ink-3); }
.featured-card__go { font-size: 13.5px; font-weight: 600; color: var(--sky); }

/* ---------- 商品详情页 ---------- */
.pd__back { display: inline-block; margin-bottom: 16px; font-size: 14px; color: var(--sky); font-weight: 600; }
.pd-hero { position: relative; height: 360px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(140deg, #0b3d91, #1f6feb 70%); background-size: cover; background-position: center; margin-bottom: 24px; }
.pd-hero__mask { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,28,66,.9) 0%, rgba(11,61,145,.35) 50%, rgba(11,61,145,.05) 100%); }
.pd-hero__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 32px; color: #fff; z-index: 2; }
.pd-hero__cap h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin: 12px 0 6px; }
.pd-hero__sub { font-size: 15px; color: #dbe7ff; }
.pd-hero__cap .badge { margin-right: 8px; }
.pd-body { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.pd-main { min-width: 0; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.pd-price { font-size: 30px; font-weight: 800; color: var(--sky-deep); }
.pd-price small { font-size: 15px; font-weight: 500; color: var(--ink-3); }
.pd-price__note { font-size: 13.5px; color: var(--ink-3); }
.pd-section { margin-bottom: 26px; }
.pd-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; padding-left: 12px; border-left: 3px solid var(--sky); }
.pd-section p { font-size: 14.5px; color: var(--ink-2); line-height: 1.85; }
/* 沉浸式体验：VR 全景 + 空中视频 */
.pd-immerse { background: linear-gradient(135deg, #0b3d91 0%, #1f6feb 100%); border-radius: var(--radius); padding: 22px 24px; color: #fff; }
.pd-immerse h3 { border-left-color: #fff; color: #fff; }
.immerse__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.immerse__cell { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); padding: 12px; }
.immerse__cap { font-size: 13.5px; font-weight: 600; margin-bottom: 10px; opacity: .92; }
.immerse__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden; background: #06122e; }
.immerse__frame iframe, .immerse__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 720px) {
  .immerse__grid { grid-template-columns: 1fr; }
}
.pd-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pd-facts > div { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.pd-facts b { display: block; font-size: 16px; color: var(--ink); }
.pd-facts span { font-size: 12.5px; color: var(--ink-3); }
.pd-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pd-info__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.pd-info__row:last-child { border-bottom: 0; }
.pd-info__row > span { color: var(--ink-3); }
.pd-info__row > b { color: var(--ink); font-weight: 600; }
.pd-side__card { position: sticky; top: 92px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.pd-side__price { font-size: 28px; font-weight: 800; color: var(--sky-deep); }
.pd-side__price small { font-size: 14px; font-weight: 500; color: var(--ink-3); }
.pd-side__note { font-size: 13px; color: var(--ink-3); margin: 8px 0 16px; }
.pd-side__card .btn { width: 100%; margin-bottom: 10px; }
.btn--lg { padding: 13px 22px; font-size: 15.5px; }
.btn--block { display: block; }
.empty { text-align: center; color: var(--ink-3); padding: 60px 0; }
.empty a { color: var(--sky); font-weight: 600; }

/* ---------- 登录/注册 ---------- */
.login-tabs { display: flex; gap: 8px; margin-bottom: 18px; background: var(--bg-alt);
  padding: 5px; border-radius: 12px; }
.login-tab { flex: 1; padding: 9px 0; border: none; background: transparent; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink-3); cursor: pointer; transition: all .15s; }
.login-tab.on { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.sms-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

/* ---------- 反诈提醒 ---------- */
.fraud-alert { display: flex; gap: 8px; align-items: flex-start; margin: 14px 0;
  padding: 10px 12px; border: 1px solid #f0c36d; background: #fff8e1; border-radius: 10px;
  font-size: 12.5px; line-height: 1.6; color: #7a5b00; }
.fraud-alert b { white-space: nowrap; color: #b45309; }
.modal__actions + .fraud-alert { margin-top: 0; }

/* ---------- 旗舰店：首页店铺卡 ---------- */
.shop-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.shop-card { display: flex; gap: 14px; padding: 16px; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: 14px; transition: box-shadow .18s, transform .18s; }
.shop-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.08); transform: translateY(-2px); }
.shop-card__logo { width: 58px; height: 58px; flex: none; border-radius: 14px; background: var(--sky-soft) center/cover;
  display: flex; align-items: center; justify-content: center; font-size: 26px; }
.shop-card__body { min-width: 0; }
.shop-card__body h3 { font-size: 15px; margin: 2px 0 6px; }
.shop-card__body .badge { margin-right: 4px; }
.shop-card__desc { font-size: 12px; color: var(--ink-3); margin: 6px 0; line-height: 1.5; }
.shop-card__foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); }
.shop-card__go { color: var(--sky); font-weight: 600; }

/* ---------- 旗舰店：店铺页 ---------- */
.shop-hero { position: relative; height: 340px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #1b3a5c, #0f2440) center/cover; margin: 16px 0 22px; }
.shop-hero__mask { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,36,64,.18) 0%, rgba(9,20,36,.88) 100%); }
.shop-hero__cap { position: absolute; left: 0; right: 0; bottom: 0; display: flex; gap: 16px;
  align-items: flex-end; padding: 26px 30px; color: #fff; }
.shop-hero__logo { width: 84px; height: 84px; border-radius: 18px; object-fit: cover;
  background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.5); }
.shop-hero__logo--ph { display: flex; align-items: center; justify-content: center; font-size: 40px; }
.shop-hero__cap h1 { font-size: 26px; margin: 6px 0 4px; }
.shop-hero__sub { font-size: 13.5px; color: rgba(255,255,255,.82); max-width: 640px; line-height: 1.6; }
.shop-body { display: grid; grid-template-columns: 1fr 300px; gap: 26px; align-items: start; }
.shop-main { min-width: 0; }

/* ---------- 商品卡片内店铺行 ---------- */
.g-card__shop { display: flex; align-items: center; gap: 8px; margin-top: 10px;
  padding: 7px 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--bg-alt);
  font-size: 12.5px; color: var(--ink-2); text-decoration: none; transition: border-color .15s, color .15s; }
.g-card__shop:hover { border-color: var(--sky); color: var(--sky); }
.g-card__shop img { width: 20px; height: 20px; border-radius: 6px; object-fit: cover; }
.g-card__shop-ic { font-size: 16px; }
.g-card__shop span:nth-child(2) { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.g-card__shop-go { font-weight: 600; }

/* ---------- 详情页 / Banner 响应式 ---------- */
@media (max-width: 900px) {
  .featured { grid-template-columns: 1fr 1fr; }
  .pd-body { grid-template-columns: 1fr; }
  .pd-side__card { position: static; }
  .shop-body { grid-template-columns: 1fr; }
  .shop-hero { height: 280px; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .dash-side__brand { display: none; }
  .dash-nav { flex-direction: row; flex: 1; }
  .dash-nav__item { white-space: nowrap; flex: 0 0 auto; }
  .dash-nav__item span:last-child { display: none; }
  .dash-nav__ic { margin: 0; }
  .dash-side__foot { display: none; }
}
@media (max-width: 640px) {
  .featured { grid-template-columns: 1fr; }
  .banner { min-height: 360px; }
  .banner__content { padding: 36px 22px; }
  .pd-hero { height: 280px; }
  .pd-facts { grid-template-columns: 1fr; }
  .shop-hero { height: 240px; }
  .shop-hero__cap { flex-direction: column; align-items: flex-start; padding: 18px; }
  .shop-hero__logo { width: 60px; height: 60px; }
  .shop-hero__cap h1 { font-size: 21px; }
}

/* ---------- 工作台：左侧栏 + 内容区 ---------- */
.dash { display: grid; grid-template-columns: 240px 1fr; gap: 0; min-height: calc(100vh - 64px); align-items: start; }
.dash-side { position: sticky; top: 64px; align-self: start; height: calc(100vh - 64px); overflow-y: auto;
  background: #fff; border-right: 1px solid var(--line); padding: 20px 14px; display: flex; flex-direction: column; gap: 10px; }
.dash-side__brand { display: flex; align-items: center; gap: 10px; padding: 6px 8px 14px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.dash-side__logo { width: 38px; height: 38px; border-radius: 10px; background: var(--sky-soft); color: var(--sky-deep);
  display: flex; align-items: center; justify-content: center; font-size: 20px; }
.dash-side__brand b { font-size: 16px; display: block; }
.dash-side__brand small { font-size: 12px; color: var(--ink-3); }
.dash-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dash-nav__item { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border: 0; background: none;
  border-radius: 10px; font-size: 14px; color: var(--ink-2); text-align: left; width: 100%; transition: all .15s; }
.dash-nav__item:hover { background: var(--bg-alt); color: var(--ink); }
.dash-nav__item.on { background: var(--sky-soft); color: var(--sky-deep); font-weight: 700; }
.dash-nav__ic { font-size: 16px; width: 20px; text-align: center; }
.dash-side__foot { padding-top: 8px; border-top: 1px solid var(--line); }
.dash-main { padding: 26px 30px 60px; min-width: 0; }
.dash-main__head { margin-bottom: 22px; }
.dash-main__head h2 { font-size: 23px; font-weight: 800; }
.dash-main__head .who { font-size: 13.5px; color: var(--ink-3); margin-top: 2px; }
.panel { display: none; }
.panel.on { display: block; animation: fadein .25s ease; }

/* ---------- 商品详情：参数分组 ---------- */
.pd-spec__group { margin-bottom: 16px; }
.pd-spec__group:last-child { margin-bottom: 0; }
.pd-spec__group h4 { font-size: 13px; font-weight: 700; color: var(--sky-deep); margin-bottom: 8px;
  padding-left: 10px; border-left: 3px solid var(--sky); }
.pd-info__row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px dashed var(--line); }
.pd-info__row:last-child { border-bottom: 0; }
.pd-info__row span { font-size: 13.5px; color: var(--ink-3); }
.pd-info__row b { font-size: 14px; font-weight: 600; color: var(--ink); text-align: right; }
.bf-list { max-height: 230px; overflow-y: auto; border: 1px solid var(--line); border-radius: 10px; padding: 6px 10px; margin: 8px 0; }
.bf-item { display: block; padding: 8px 6px; font-size: 14px; border-bottom: 1px solid var(--line); cursor: pointer; }
.bf-item:last-child { border-bottom: 0; }
.bf-item input { margin-right: 8px; transform: translateY(1px); }

/* ---------- 第三方服务频道 ---------- */
.chip { border: 1px solid var(--line-strong); background: #fff; color: var(--ink-2);
  border-radius: 999px; padding: 8px 16px; font-size: 14px; cursor: pointer; transition: .15s; }
.chip:hover { border-color: var(--sky); color: var(--sky-deep); }
.chip.on { background: var(--sky); border-color: var(--sky); color: #fff; font-weight: 600; }
.prov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prov-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; transition: .15s; }
.prov-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,111,235,.12); border-color: var(--sky); }
.prov-card__head { display: flex; align-items: center; gap: 12px; }
.prov-card__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-bg); display: flex;
  align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.prov-card__head h3 { font-size: 17px; font-weight: 700; }
.prov-card__type { font-size: 12.5px; color: var(--sky-deep); background: var(--sky-bg);
  padding: 2px 8px; border-radius: 6px; }
.prov-card__slogan { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin: 0; }
.prov-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.prov__products { list-style: none; padding: 0; margin: 4px 0; display: flex; flex-direction: column; gap: 6px; }
.prov__products li { font-size: 13px; color: var(--ink-2); background: #f6f8fc; border-radius: 8px; padding: 7px 10px; }
.prov__products li.more { color: var(--ink-3); background: transparent; font-style: italic; }
.prov__meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: var(--ink-3); }
.prov__meta span { background: #f6f8fc; border-radius: 6px; padding: 4px 9px; }
.prov__risk { font-size: 13px; color: var(--warn); font-weight: 600; text-decoration: none; }
.prov__risk:hover { text-decoration: underline; }
.prov-card__foot { margin-top: auto; padding-top: 6px; display: flex; align-items: center; }
.callout--warn { border-color: #f3d99a; background: #fff8ec; }
.callout--warn .callout__ic { background: #f3d99a; }
.badge--info { background: #e8eefc; color: #3358c4; }
@media (max-width: 900px) { .prov-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .prov-grid { grid-template-columns: 1fr; } }

/* 资质认证区块（店铺页） */
.qblock { border: 1px solid #e6e9ef; border-radius: 12px; padding: 14px 16px; background: #fafbfc; }
.qblock__head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.qrows { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.qrow { display: flex; align-items: center; gap: 7px; font-size: 13.5px; }
.qrow__ic { display: inline-flex; width: 16px; height: 16px; border-radius: 50%; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex: 0 0 auto; }
.qrow--ok .qrow__ic { background: var(--good-bg); color: var(--good); }
.qrow--ok .qrow__name { color: var(--ink); }
.qrow--miss .qrow__ic { background: var(--bg-alt); color: var(--ink-3); }
.qrow--miss .qrow__name { color: var(--ink-3); }
.qnote { margin-top: 10px; font-size: 12.5px; color: var(--warn); }
@media (max-width: 640px) { .qrows { grid-template-columns: 1fr; } }

