
:root {
  --blue: #0170c1;
  --blue-deep: #005c9f;
  --blue-dark: #003e7e;
  --red: #ed4454;
  --red-deep: #d53d4e;
  --red-dark: #ae0a1b;
  --gold: #ffd294;
  --up: #e02020;      /* 涨-红（国内行情惯例） */
  --down: #00a854;    /* 跌-绿 */
  --text: #333333;
  --text-strong: #1a1a1a;
  --muted: #666666;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-grey: #f7f7f7;
  --radius: 8px;
  --shadow: 0 10px 34px rgba(1, 112, 193, .12);
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(880px, 92%); }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.hl { color: var(--blue); font-weight: 700; }
.hl-red { color: var(--red); font-weight: 700; }

/* SEO 专属：PC/移动端标题显隐切换（同 goldjsgw 结构） */
.seo-title-pc { display: block; }
.seo-title-m  { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 4px;
  font-size: 15px; font-weight: 600; letter-spacing: .5px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(1, 112, 193, .3); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(237, 68, 84, .3); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: #fff; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 15px 38px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- 导航 ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, .08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 36px; width: auto; display: block; }
.footer .logo img { height: 40px; }
.nav { display: flex; gap: 26px; }
.nav a { font-size: 15px; color: #444; position: relative; padding: 6px 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--blue); transition: width .25s ease; }
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--blue); margin: 5px 0; border-radius: 2px; }

/* ---------- 首屏 Banner：直播间 ---------- */
.hero {
  position: relative; height: 88vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
  background: #01152e;
}
.hero-media {
  position: absolute; inset: 0;
  background: url("assets/img/hero-bg.png") center / cover no-repeat;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2, 21, 46, .55) 0%, rgba(2, 21, 46, .28) 45%, rgba(2, 21, 46, .72) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; color: #fff; padding-top: 30px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(237, 68, 84, .16); border: 1px solid rgba(237, 68, 84, .55);
  color: #ff9aa4; font-size: 13.5px; font-weight: 700; letter-spacing: 2px;
  padding: 7px 20px; border-radius: 100px; margin-bottom: 26px;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: livePulse 1.2s ease infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(237, 68, 84, .6); }
  70% { box-shadow: 0 0 0 9px rgba(237, 68, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 68, 84, 0); }
}
.hero-title {
  font-size: clamp(30px, 4.2vw, 50px); font-weight: 800; line-height: 1.32;
  letter-spacing: 1px; text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}
.hero-title .text-gold { text-shadow: 0 2px 14px rgba(0, 0, 0, .45); }
.hero-sub {
  max-width: 760px; margin: 20px auto 34px; font-size: 16.5px;
  color: rgba(255, 255, 255, .85); line-height: 1.9;
}
.hero-btns { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.hero-btns .banner-btn:first-child { border-radius: 2px 0 0 2px; }
.hero-btns .banner-btn:last-child { border-radius: 0 2px 2px 0; }
.hero-stats { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.hero-stat {
  text-align: center; padding: 16px 26px; min-width: 168px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-stat b { display: block; font-size: 26px; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.hero-stat span { font-size: 13px; color: rgba(255, 255, 255, .72); }
.hero-tip {
  margin-top: 22px; font-size: 12px; letter-spacing: 2px;
  color: rgba(255, 255, 255, .6); text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

/* ---------- banner-btn 方形立体样式 ---------- */
.banner-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 19px 52px; border-radius: 0; overflow: hidden;
  font-size: 18px; font-weight: 700; letter-spacing: 3px; color: #fff;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.banner-btn .arrow { font-size: 20px; transition: transform .25s ease; }
.banner-btn:hover .arrow { transform: translateX(6px); }
.banner-btn::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), transparent);
  pointer-events: none;
}
.banner-btn::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: rgba(0, 0, 0, .22); pointer-events: none;
}
.banner-btn.btn-blue {
  background: linear-gradient(180deg, #1e8fdb 0%, var(--blue) 60%, #015d9f 100%);
  box-shadow: 0 14px 34px rgba(0, 40, 90, .45), inset 0 1px 0 rgba(255, 255, 255, .3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
.banner-btn.btn-red {
  background: linear-gradient(180deg, #f2606d 0%, var(--red) 60%, #c22f3f 100%);
  box-shadow: 0 14px 34px rgba(120, 10, 25, .45), inset 0 1px 0 rgba(255, 255, 255, .3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
.banner-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.banner-btn:active { transform: translateY(1px); filter: brightness(.96); }

/* ---------- 通用 Section ---------- */
.section { padding: 92px 0; }
.section-light { background: var(--bg); }
.section-grey { background: var(--bg-grey); }
.sec-tag { font-size: 12px; letter-spacing: 4px; color: var(--blue); margin-bottom: 12px; text-align: center; }
.sec-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.32; color: var(--text-strong); text-align: center; letter-spacing: .5px; }
.sec-sub { max-width: 680px; margin: 16px auto 0; color: var(--muted); text-align: center; }
.sec-title-light { color: #fff; }
.sec-sub-light { color: rgba(255, 255, 255, .75); }
.sec-tag-light { color: var(--gold); }

/* ---------- 交易品种（四卡） ---------- */
.sched-section { padding: 92px 0; background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%); }
.sched-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.sched-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sched-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow); }
.sched-card.is-live { border-color: var(--red); box-shadow: 0 10px 30px rgba(237, 68, 84, .12); }
.sched-state {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 100px; color: #fff;
}
.state-live { background: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.state-soon { background: #94a3b8; }
.state-code { background: linear-gradient(135deg, #1e8fdb, var(--blue-dark)); letter-spacing: .5px; }
.sched-time { font-size: 22px; font-weight: 800; color: var(--blue); font-family: Arial, var(--font); letter-spacing: 1px; }
.sched-card h3 { font-size: 16.5px; color: var(--text-strong); margin: 10px 0 8px; line-height: 1.5; }
.sched-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sched-tag {
  display: inline-block; margin-top: 14px; font-size: 11.5px; color: var(--blue);
  background: rgba(1, 112, 193, .08); border-radius: 4px; padding: 3px 10px;
}
.sched-note { text-align: center; margin-top: 30px; font-size: 13px; color: #999; }

/* ---------- 直播间核心亮点（深色满屏） ---------- */
.features-full {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding: 90px 0;
}
.features-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 15%, rgba(237, 68, 84, .22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(1, 112, 193, .35), transparent 62%),
    linear-gradient(160deg, #01152e 0%, #02305e 45%, #01152e 100%);
  background-color: #02305e;
}
.features-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 25%, transparent 75%);
}
.features-inner { position: relative; z-index: 2; width: min(1180px, 92%); margin: 0 auto; }
.features-inner .sec-tag, .features-inner .sec-title, .features-inner .sec-sub { text-align: left; }
.features-inner .sec-sub { margin-left: 0; }
.adv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr; gap: 22px; margin-top: 48px;
}
.adv-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px; padding: 30px 26px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.adv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 210, 148, .5);
}
.adv-icon {
  width: 52px; height: 52px; border-radius: 10px; font-size: 25px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(1, 112, 193, .35); border: 1px solid rgba(255, 255, 255, .22);
}
.adv-card h3 { font-size: 18px; margin: 18px 0 10px; color: #fff; letter-spacing: .5px; }
.adv-card p { font-size: 14px; color: rgba(255, 255, 255, .72); flex: 1; }

/* ---------- 名师团队 ---------- */
.mentor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.mentor-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.mentor-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow); }
.mentor-avatar {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; color: #fff;
}
.mentor-avatar.m-blue { background: linear-gradient(135deg, #1e8fdb, var(--blue-dark)); }
.mentor-avatar.m-red { background: linear-gradient(135deg, #f2606d, var(--red-dark)); }
.mentor-avatar.m-gold { background: linear-gradient(135deg, #f0b45a, #b0741f); }
.mentor-avatar.m-teal { background: linear-gradient(135deg, #23b5a3, #0d6e63); }
.mentor-card h3 { font-size: 17px; color: var(--text-strong); }
.mentor-role { font-size: 12.5px; color: var(--blue); letter-spacing: 1px; margin: 6px 0 12px; }
.mentor-card p { font-size: 13px; color: var(--muted); text-align: left; }

/* ---------- 价格影响因素 ---------- */
.cal-list { margin-top: 48px; display: grid; gap: 14px; max-width: 920px; margin-left: auto; margin-right: auto; }
.cal-row {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 26px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cal-row:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateX(4px); }
.cal-row-factor { grid-template-columns: 118px 1fr; }
.cal-dim {
  font-size: 13px; font-weight: 700; color: var(--blue); text-align: center;
  background: rgba(1, 112, 193, .08); border-radius: 6px; padding: 8px 0; letter-spacing: 1px;
}
.cal-date { font-size: 15px; font-weight: 700; color: var(--blue); font-family: Arial, var(--font); }
.cal-row h3 { font-size: 15.5px; color: var(--text-strong); line-height: 1.5; }
.cal-row h3 small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.cal-stars { color: #f5a623; font-size: 14px; letter-spacing: 3px; white-space: nowrap; }
.cal-note { text-align: center; margin-top: 26px; font-size: 13px; color: #999; }

/* ---------- 看盘工具（split） ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sec-sub-left { color: var(--muted); margin: 16px 0 24px; max-width: 520px; }
.split-text .sec-tag, .split-text .sec-title { text-align: left; }
.check-list { margin: 0 0 30px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 32px; color: #555; font-size: 14.5px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(1, 112, 193, .1); color: var(--blue);
  font-size: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.check-list-light li { color: rgba(255, 255, 255, .82); }
.check-list-light li::before { background: rgba(255, 255, 255, .16); color: var(--gold); }
.split-img { display: flex; justify-content: center; }
.split-img img {
  width: 100%; max-width: 660px; height: auto;
  filter: drop-shadow(0 18px 40px rgba(1, 112, 193, .25));
}

/* ---------- 新手四步入门 ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.step-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: -16px; left: 24px;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #1e8fdb, var(--blue-dark));
  color: #fff; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(1, 112, 193, .35);
}
.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, #f2606d, var(--red-dark)); box-shadow: 0 8px 18px rgba(237, 68, 84, .3); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, #f0b45a, #b0741f); box-shadow: 0 8px 18px rgba(176, 116, 31, .3); }
.step-card:nth-child(4) .step-num { background: linear-gradient(135deg, #23b5a3, #0d6e63); box-shadow: 0 8px 18px rgba(13, 110, 99, .3); }
.step-card h3 { font-size: 16.5px; color: var(--text-strong); margin: 12px 0 8px; }
.step-card p { font-size: 13px; color: var(--muted); }

/* ---------- 交易成本与优惠 ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.quote-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow); }
.quote-name { font-size: 14px; color: var(--muted); letter-spacing: 1px; }
.quote-code { display: inline-block; margin-top: 4px; font-size: 11.5px; color: var(--blue); background: rgba(1, 112, 193, .08); border-radius: 4px; padding: 2px 10px; }
.quote-price { font-size: 30px; font-weight: 800; margin: 14px 0 4px; font-family: Arial, var(--font); }
.quote-price.up { color: var(--up); }
.quote-price.down { color: var(--down); }
.quote-chg { font-size: 13.5px; font-weight: 700; }
.quote-chg.up { color: var(--up); }
.quote-chg.down { color: var(--down); }
.quote-note { text-align: center; margin-top: 26px; font-size: 12.5px; color: #999; }

.quote-card-cost { text-align: left; padding: 26px 24px 24px; }
.quote-card-cost .quote-name { font-size: 15px; font-weight: 700; color: var(--text-strong); letter-spacing: 0; }
.quote-card-cost .quote-price { font-size: 27px; color: var(--blue); margin: 14px 0 6px; }
.cost-desc { font-size: 12.5px; color: var(--muted); line-height: 1.75; }

/* ---------- 观众评价 ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow); }
.review-card .stars { color: #f5a623; font-size: 15px; letter-spacing: 4px; }
.review-text { margin: 16px 0 22px; font-size: 14.5px; color: #444; }
.review-user { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.review-user b { display: block; font-size: 14.5px; }
.review-user small { color: var(--muted); font-size: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 17px;
}
.avatar-blue { background: var(--blue); }
.avatar-red { background: var(--red); }
.avatar-teal { background: #0d6e63; }

/* ---------- APP 满屏 ---------- */
.app-full {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden; padding: 90px 0;
}
.app-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 12% 30%, rgba(237, 68, 84, .28), transparent 60%),
    radial-gradient(ellipse 55% 55% at 88% 75%, rgba(255, 210, 148, .16), transparent 62%),
    linear-gradient(135deg, #01152e 0%, #02305e 45%, #0170c1 100%);
}
.app-full-inner {
  position: relative; z-index: 2; width: min(1180px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
.app-visual { display: flex; justify-content: center; }
.app-visual img {
  width: 100%; max-width: 540px;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, .5));
}
.app-text .sec-tag, .app-text .sec-title { text-align: left; }
.app-desc { color: rgba(255, 255, 255, .8); font-size: 15px; margin: 20px 0 24px; max-width: 560px; }
.dl-wrap { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.dl-item { width: 148px; display: flex; flex-direction: column; gap: 12px; }
.store-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 9px 8px; border-radius: 8px;
  background: var(--blue); color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.store-btn-red { background: var(--red); }
.store-btn:hover { transform: translateY(-3px); filter: brightness(1.08); box-shadow: 0 12px 28px rgba(0, 0, 0, .35); }
.store-btn svg { width: 19px; height: 19px; color: #fff; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.store-btn small { font-size: 8.5px; opacity: .8; letter-spacing: .5px; }
.store-btn b { font-size: 13px; }
.qr-box {
  width: 100%; background: #fff; border-radius: 9px; padding: 9px 9px 7px;
  text-align: center; box-shadow: 0 10px 24px rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, .6);
}
.qr-box img { width: 100%; height: auto; border-radius: 4px; }
.qr-box p { margin-top: 6px; font-size: 10.5px; font-weight: 600; color: var(--blue); letter-spacing: .5px; }
.store-btn-red + .qr-box p { color: var(--red); }
.app-meta { margin-top: 26px; font-size: 12.5px; color: rgba(255, 255, 255, .6); letter-spacing: 1px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 44px; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: border-color .25s; }
.section-light .faq-item, .section-grey .faq-item { background: #fff; }
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px;
  font-size: 15.5px; font-weight: 600; color: var(--text-strong); position: relative; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: absolute; right: 22px; top: 50%; width: 22px; height: 22px; transform: translateY(-50%); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--red); border-radius: 2px; transition: transform .25s ease; }
.faq-icon::before { width: 14px; height: 2px; left: 4px; top: 10px; }
.faq-icon::after { width: 2px; height: 14px; left: 10px; top: 4px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 14px; }

/* ---------- 直播回顾资讯 ---------- */
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.news-head .sec-tag, .news-head .sec-title { text-align: left; }
.news-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; margin-top: 46px; }
.news-col { display: grid; gap: 24px; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.news-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow); }
.news-cover { overflow: hidden; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-cover img { transform: scale(1.06); }
.news-card-lg .news-cover { height: 300px; }
.news-body { padding: 24px 26px; }
.news-meta { font-size: 12px; color: var(--muted); letter-spacing: 1px; margin-bottom: 8px; }
.news-card h3 { font-size: 17px; line-height: 1.55; color: var(--text-strong); transition: color .2s; }
.news-card:hover h3 { color: var(--blue); }
.news-desc { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.news-card-sm { flex-direction: row; align-items: stretch; }
.news-card-sm .news-cover { width: 150px; min-width: 150px; }
.news-card-sm .news-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
.news-card-sm h3 { font-size: 14.5px; }
.news-cover .news-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 栏目（分类目录）入口 */
.news-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.news-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 14px; color: var(--text-strong); text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.news-cat:hover { color: var(--blue); border-color: var(--blue); background: #f0f7ff; transform: translateY(-2px); }
.news-cat-num {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  background: #eef4fb; color: var(--blue);
  font-size: 12px; font-weight: 700; font-family: Arial, var(--font);
  display: inline-flex; align-items: center; justify-content: center;
}
.news-cat:hover .news-cat-num { background: var(--blue); color: #fff; }
.news-cat.is-current { background: var(--blue); border-color: var(--blue); color: #fff; }
.news-cat.is-current .news-cat-num { background: rgba(255, 255, 255, .22); color: #fff; }
.news-cat.is-current:hover { background: #015da0; color: #fff; }

/* 无文章时的空状态 */
.news-empty {
  margin-top: 44px; padding: 54px 30px; text-align: center;
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius);
}
.news-empty-text { font-size: 14.5px; color: var(--muted); line-height: 1.9; }
.news-empty .btn { margin-top: 20px; }

/* ---------- 底部 CTA ---------- */
.cta { text-align: center; padding: 88px 0; background: linear-gradient(120deg, #01152e, #02305e 55%, #0170c1 100%); }
.cta .hero-btns { margin-top: 34px; }
.cta .hero-btns .banner-btn:first-child { border-radius: 2px 0 0 2px; }
.cta .hero-btns .banner-btn:last-child { border-radius: 0 2px 2px 0; }

/* ---------- 页脚 ---------- */
.footer { background: #0d1f38; padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 46px; }
.footer-desc { margin: 18px 0 16px; font-size: 13.5px; color: rgba(255, 255, 255, .6); }
.footer-badge {
  display: inline-block; font-size: 12px; color: var(--gold); letter-spacing: 1px;
  border: 1px solid rgba(255, 210, 148, .4); border-radius: 100px; padding: 6px 16px;
}
.footer-col h4 { font-size: 15px; margin-bottom: 18px; color: #fff; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255, 255, 255, .6); padding: 6px 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .1); padding: 24px 0 30px; }
.risk-note { font-size: 12px; color: rgba(255, 255, 255, .45); line-height: 1.8; }
.copyright { margin-top: 12px; font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.copyright a { color: var(--gold); }

/* ---------- 入场动画 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================= 右侧下载浮窗 ================= */
.qrcode-float {
  position: fixed;
  bottom: 100px; right: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10000; width: 180px;
  transition: all 0.3s ease;
  background: url('assets/img/appDownloadBG.png') no-repeat top center;
  background-size: cover;
  padding-top: 60px;
}
.qrcode-float:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); }
.qrcode-container { display: flex; flex-direction: column; align-items: center; padding: 0 20px 20px; }
.qrcode-item { text-align: center; margin-bottom: 15px; width: 100%; }
.qrcode-item:last-child { margin-bottom: 0; }
.qrcode-item img { width: 100%; border: 1px solid #eee; border-radius: 8px; padding: 5px; background: #fff; display: block; }
.qrcode-item p { margin-top: 8px; font-size: 16px; color: #333; font-weight: 500; }
@media (max-width: 1024px) { .qrcode-float { display: none; } }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .sched-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .features-full, .app-full { min-height: auto; padding: 76px 0; }
  .app-full-inner, .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-lg .news-cover { height: 240px; }
  /* 触屏无 hover：直接展示完整内容 */
  .sched-state { position: static; display: inline-flex; margin-bottom: 10px; }
}
@media (max-width: 768px) {
  /* SEO 标题结构切换：手机端显示精简标题 */
  .seo-title-pc { display: none !important; }
  .seo-title-m  { display: block !important; }
  .section, .sched-section { padding: 60px 0; }
  .hero { height: auto; min-height: 0; padding: 96px 0 64px; }
  .hero-inner { padding-top: 0; }
  .hero-sub { font-size: 14px; margin: 16px auto 26px; }
  .hero-btns { gap: 10px; flex-direction: column; align-items: center; }
  .hero-btns .banner-btn { border-radius: 2px !important; width: min(320px, 84vw); }
  .banner-btn { padding: 14px 30px; font-size: 15px; letter-spacing: 2px; }
  .hero-stats { gap: 10px; margin-top: 30px; }
  .hero-stat { min-width: 0; flex: 1 1 40%; padding: 12px 10px; }
  .hero-stat b { font-size: 20px; }
  .hero-stat span { font-size: 12px; }
  .sched-grid, .mentor-grid, .steps-grid, .quote-grid { grid-template-columns: 1fr; gap: 14px; }
  .adv-grid, .grid-3 { grid-template-columns: 1fr; gap: 14px; }
  .cal-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .cal-stars { justify-self: start; }
  .news-card-sm { flex-direction: column; }
  .news-card-sm .news-cover { width: 100%; height: 150px; }
  .news-card-lg .news-cover { height: 200px; }
  .news-cats { gap: 8px; margin-top: 20px; }
  .news-cat { padding: 7px 13px; font-size: 13px; }
  .news-empty { padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav {
    position: fixed; top: 74px; right: 0; width: min(78vw, 320px);
    height: calc(100vh - 74px); background: #fff;
    flex-direction: column; gap: 6px; padding: 26px 28px;
    border-left: 1px solid var(--line); transform: translateX(100%);
    transition: transform .3s ease; z-index: 99;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 12px 0; font-size: 16px; }
  .nav-toggle { display: block; }
  .header-cta .btn-red { display: none; }
  .qr-box { display: none; }
  .dl-wrap { gap: 14px; }
  .dl-item { width: 100%; }
}
