/* roulang page: index */
:root {
  --brand-primary: #0B5D4B;
  --brand-secondary: #17866F;
  --brand-gold: #F1B74C;
  --brand-red: #EE5533;
  --bg-soft: #F6F2E9;
  --bg-card: #FFFFFF;
  --text-deep: #16231F;
  --text-muted: #5F6A65;
  --hairline: #EAE2D4;
  --border-soft: #E7DDCC;
  --shadow-card: 0 10px 30px rgba(22, 35, 31, 0.08);
  --shadow-hover: 0 18px 40px rgba(22, 35, 31, 0.14);
  --radius-hero: 28px;
  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-input: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: "PingFang SC", "HarmonicOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  background: var(--bg-soft);
  color: var(--text-deep);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  margin-top: 0;
  color: var(--text-deep);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 1rem 0; }
.container { max-width: 1260px; }
.btn { border-radius: var(--radius-pill); font-weight: 700; transition: all 0.25s ease; border: 0; }
.btn:focus-visible { outline: 3px solid rgba(241, 183, 76, 0.75); outline-offset: 2px; }

.btn-solid {
  background: linear-gradient(135deg, #0B5D4B 0%, #17866F 100%);
  color: #fff;
  padding: 0.85rem 1.8rem;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 93, 75, 0.28);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  padding: 0.78rem 1.8rem;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-primary);
  padding: 0.85rem 1.8rem;
}
.btn-gold:hover {
  background: #ffcb6b;
  color: #082f26;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(241, 183, 76, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 0.72rem 1.6rem;
}
.btn-outline:hover { background: rgba(11, 93, 75, 0.08); color: var(--brand-primary); }

.section-block { padding: 96px 0; }
.section-block + .section-block { padding-top: 0; }

/* ---------- Floating Dock Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 18px 20px 0;
  pointer-events: none;
}
.dock-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  pointer-events: auto;
}
.dock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 93, 75, 0.91);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 42px rgba(11, 93, 75, 0.26);
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
}
.dock-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  white-space: nowrap;
}
.logo-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
  flex: 0 0 32px;
}
.logo-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  transform: translate(-50%, -50%);
}
.logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.dock-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dock-menu li { margin: 0; }
.dock-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.48rem 0.72rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.dock-menu a::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 100%;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gold);
  transition: right 0.2s ease;
  opacity: 0;
}
.dock-menu a:hover, .dock-menu a.active { color: #fff; }
.dock-menu a:hover::after, .dock-menu a.active::after { right: 0.72rem; opacity: 1; }
.dock-actions { display: flex; align-items: center; gap: 0.7rem; }
.btn-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-icon:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-1px); }
.btn-gold-nav {
  background: var(--brand-gold);
  color: var(--brand-primary);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-gold-nav:hover { background: #ffcb6b; color: #082f26; transform: translateY(-1px); }
.dock-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.mobile-dock-panel { background: rgba(11, 93, 75, 0.96); border-radius: 24px; padding: 0.9rem; margin-top: 0.6rem; border: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-dock-panel a { display: block; color: rgba(255, 255, 255, 0.85); padding: 0.85rem 1rem; border-radius: 16px; font-weight: 600; }
.mobile-dock-panel a:hover, .mobile-dock-panel a.active { background: rgba(255, 255, 255, 0.1); color: #fff; }
.search-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1060;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  padding: 1rem;
  backdrop-filter: blur(10px);
}
.search-pop .search-inner { display: flex; gap: 0.6rem; }
.search-pop input {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-input);
  padding: 0.65rem 1rem;
  flex: 1;
  color: var(--text-deep);
}
.search-pop input:focus { outline: 3px solid rgba(241, 183, 76, 0.5); box-shadow: none; border-color: var(--brand-gold); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 160px 0 110px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(11, 93, 75, 0.96) 0%, rgba(11, 93, 75, 0.88) 44%, rgba(5, 36, 30, 0.82) 82%),
    url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
}
.hero-section h1 { color: #fff; margin: 1.2rem 0 0.8rem; max-width: 8.5em; }
.hero-lead { max-width: 20em; font-size: 1.05rem; color: rgba(255, 255, 255, 0.8); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-top: 1.8rem; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.live-pill i { font-size: 0.5rem; color: var(--brand-red); }
.live-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-hero);
  color: var(--text-deep);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  padding: 1.8rem;
  margin-left: auto;
  max-width: 420px;
}
.live-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}
.live-note { color: var(--text-muted); font-size: 0.85rem; }
.live-match-time {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.matchup { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; background: #f4f0e8; border-radius: 18px; padding: 1rem 1.2rem; margin-bottom: 0.8rem; }
.matchup .team { font-weight: 800; font-size: 1.15rem; line-height: 1.25; flex: 1; text-align: center; }
.matchup .vs { color: var(--brand-gold); font-weight: 800; font-size: 0.85rem; }
.match-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; text-align: center; }

/* ---------- Countdown band ---------- */
.countdown-area { padding: 0 0 96px; }
.countdown-card {
  margin-top: -64px;
  position: relative;
  z-index: 3;
  background: rgba(11, 93, 75, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-hero);
  box-shadow: 0 18px 44px rgba(11, 45, 38, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 2.2rem;
}
.countdown-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}
.countdown-top a { color: var(--brand-gold); font-weight: 600; }
.countdown-top a:hover { text-decoration: underline; }
.countdown-digits {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 1.2rem;
  flex: 1;
  min-width: 90px;
  border-radius: var(--radius-card);
  transition: background 0.3s ease;
}
.cd-item:hover { background: rgba(255, 255, 255, 0.06); }
.cd-num {
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--brand-gold);
  font-variant-numeric: tabular-nums;
}
.cd-unit { color: rgba(255, 255, 255, 0.72); font-size: 0.85rem; margin-top: 0.35rem; letter-spacing: 0.1em; }
.countdown-note { margin-top: 1rem; color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; text-align: right; }
.countdown-note a { color: var(--brand-gold); font-weight: 600; text-decoration: underline; }

/* ---------- Section headers ---------- */
.section-heading { margin-bottom: 2.5rem; }
.section-kicker {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-kicker::before { content: "—"; color: var(--brand-gold); margin-right: 0.4rem; }
.section-heading p { color: var(--text-muted); max-width: 42em; }
.section-heading .all-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--brand-primary); font-weight: 700; }
.section-heading .all-link:hover { color: var(--brand-secondary); }

/* ---------- Schedule list ---------- */
.schedule-list {
  background: var(--bg-card);
  border-radius: var(--radius-hero);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 0;
}
.schedule-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
}
.schedule-item:last-child { border-bottom: 0; }
.schedule-item:hover {
  background: #fbf7ef;
  transform: translateX(6px);
  box-shadow: inset 4px 0 0 var(--brand-gold);
}
.time-chip {
  background: #fbeed0;
  color: #7a5212;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.schedule-main h3 { margin: 0 0 0.25rem; }
.schedule-main p { color: var(--text-muted); margin: 0; font-size: 0.92rem; }
.add-calendar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  color: var(--brand-primary);
  transition: all 0.25s ease;
}
.add-calendar:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }

/* ---------- Remind subscribe ---------- */
.remind-card {
  background: linear-gradient(135deg, #fbeed2, #f6f2e9 60%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem 2.8rem;
  box-shadow: var(--shadow-card);
}
.remind-copy { max-width: 34em; }
.remind-copy p { color: var(--text-muted); }
.remind-form { flex: 1; min-width: 300px; background: rgba(255, 255, 255, 0.68); border-radius: var(--radius-hero); padding: 1.5rem; }
.input-caption { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.remind-fields { display: flex; gap: 0.7rem; }
.remind-fields input {
  flex: 1;
  border: 1px solid rgba(11, 93, 75, 0.28);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.1rem;
  color: var(--text-deep);
}
.remind-fields input:focus { outline: 3px solid rgba(241, 183, 76, 0.55); border-color: var(--brand-primary); box-shadow: none; }
.privacy-note { color: #7c7165; font-size: 0.78rem; margin: 0.75rem 0 0; }

/* ---------- News / CMS latest ---------- */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(231, 221, 204, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.news-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background: #fff; border-left: 4px solid var(--brand-gold); }
.news-date { color: var(--text-deep); font-weight: 700; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.news-date time { color: inherit; }
.news-cat {
  display: inline-block;
  background: #fbeed0;
  color: #7a5212;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.35rem;
}
.news-title { margin: 0 0 0.35rem; font-size: 1.13rem; line-height: 1.45; }
.news-title a { color: var(--text-deep); }
.news-title a:hover { color: var(--brand-primary); }
.news-summary {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.news-more a { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--brand-primary); font-weight: 700; white-space: nowrap; }
.news-more a:hover .fa-arrow-right { transform: translateX(3px); }
.news-more .fa-arrow-right { transition: transform 0.2s ease; }
.news-empty {
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius-card);
  background: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.news-empty .empty-icon { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-soft); color: var(--brand-secondary); font-size: 1.3rem; }
.news-empty p { margin: 0; }

/* ---------- Replay section ---------- */
.replay-section { background: var(--bg-soft); }
.replay-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: #fff;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.replay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: #fff; }
.replay-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.replay-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(9, 41, 33, 0.88) 0%, rgba(9, 41, 33, 0.25) 58%, rgba(0,0,0,0.06) 100%);
}
.replay-content { padding: 1.4rem 1.6rem; width: 100%; }
.replay-meta { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin: 0.3rem 0 0; }
.replay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-primary);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.replay-card:hover .replay-icon { background: var(--brand-gold); color: var(--brand-primary); transform: scale(1.05); }

/* ---------- FAQ ---------- */
.faq-accordion { display: flex; flex-direction: column; gap: 16px; }
.accordion-item { background: #fff; border: 0; border-radius: var(--radius-card) !important; box-shadow: var(--shadow-card); overflow: hidden; }
.accordion-button {
  background: #fff;
  box-shadow: none;
  color: var(--text-deep);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-card) !important;
}
.accordion-button:not(.collapsed) { background: rgba(11, 93, 75, 0.05); color: var(--brand-primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; outline: 3px solid rgba(241, 183, 76, 0.45); border-radius: var(--radius-card); }
.accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067";
  background-image: none;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.accordion-button:not(.collapsed)::after { content: "\f068"; transform: rotate(0deg); color: var(--brand-primary); }
.accordion-body { color: var(--text-muted); padding: 0 1.5rem 1.4rem; line-height: 1.9; }

/* ---------- Bottom CTA ---------- */
.cta-card {
  background: linear-gradient(120deg, #0B5D4B 0%, #147560 75%, #1a8771 100%);
  border-radius: var(--radius-hero);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.8rem 3rem;
  box-shadow: 0 16px 40px rgba(11, 93, 75, 0.26);
  color: #fff;
}
.cta-card h2 { color: #fff; margin-bottom: 0.25rem; }
.cta-card p { color: rgba(255, 255, 255, 0.75); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #072e26;
  color: rgba(255, 255, 255, 0.68);
  padding: 64px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}
.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 48px;
}
.footer-brand { max-width: 360px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.4rem; }
.footer-logo .logo-mark { border-color: var(--brand-gold); }
.footer-brand p { color: rgba(255, 255, 255, 0.62); margin: 0.7rem 0; font-size: 0.92rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 2rem; min-width: 0; }
.footer-links h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links a { display: block; color: rgba(255, 255, 255, 0.66); padding: 0.32rem 0; font-size: 0.92rem; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom .site-domain { font-family: monospace; color: rgba(255, 255, 255, 0.42); }

/* ---------- Responsive ---------- */
@media (min-width: 992px) {
  .mobile-dock-panel { display: none !important; }
}

@media (max-width: 991.98px) {
  .site-header { position: relative; padding: 12px 12px 0; }
  .dock-container { max-width: 100%; }
  .dock-nav { border-radius: 28px; padding: 0.45rem 0.6rem 0.45rem 0.8rem; }
  .dock-menu { display: none; }
  .dock-toggle { display: inline-flex; }
  .hero-section { padding: 70px 0 120px; min-height: auto; }
  .hero-section h1 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
  .live-card { margin: 2rem 0 0; max-width: 100%; }
  .countdown-card { margin-top: -48px; }
  .remind-card { flex-direction: column; align-items: stretch; padding: 1.8rem; }
  .remind-form { min-width: 0; }
  .footer-row { flex-direction: column; }
  .footer-links { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .replay-card { min-height: 210px; }
}

@media (max-width: 767.98px) {
  .section-block { padding: 72px 0; }
  .hero-section::before { background: linear-gradient(170deg, rgba(11, 93, 75, 0.97), rgba(7, 45, 37, 0.88)), url("/assets/images/backpic/back-1.webp") center / cover no-repeat; }
  .schedule-item { grid-template-columns: 1fr auto; padding: 1.1rem 1.2rem; }
  .schedule-main { grid-column: 1 / -1; grid-row: 2; }
  .time-chip { justify-self: start; }
  .add-calendar { grid-column: 2; grid-row: 1; }
  .news-item { grid-template-columns: 1fr; gap: 0.6rem; }
  .news-date { font-size: 0.85rem; }
  .news-summary { min-height: 0; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575.98px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .site-header { padding: 10px 10px 0; }
  .logo-text { font-size: 1.15rem; }
  .logo-mark { width: 28px; height: 28px; flex-basis: 28px; }
  .dock-actions .btn-icon { display: none; }
  .btn-gold-nav { font-size: 0.88rem; padding: 0.5rem 0.9rem; }
  .hero-actions .btn { padding: 0.7rem 1.25rem; }
  .live-match-time { font-size: 1.25rem; }
  .live-card { padding: 1.3rem; }
  .countdown-card { padding: 1.2rem; }
  .cd-item { min-width: 52px; padding: 0.5rem 0.4rem; }
  .cd-num { font-size: 2.4rem; }
  .countdown-top { font-size: 0.85rem; }
  .time-chip { font-size: 0.8rem; }
  .remind-fields { flex-direction: column; }
  .remind-fields .btn { width: 100%; }
  .accordion-button { font-size: 0.98rem; padding: 1.1rem; }
  .accordion-body { padding: 0 1.1rem 1.2rem; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-row { gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* roulang page: category1 */
:root {
      --brand-primary: #0B5D4B;
      --brand-dark: #083E33;
      --brand-deep: #062F28;
      --brand-gradient: linear-gradient(135deg, #0B5D4B 0%, #17866F 100%);
      --brand-gold: #F1B74C;
      --brand-gold-soft: #FBF0DA;
      --brand-red: #EE5533;
      --bg-soft: #F6F2E9;
      --bg-card: #FFFFFF;
      --text-deep: #16231F;
      --text-muted: #5F6A65;
      --hairline: #EAE2D4;
      --line-border: #E7DDCC;
      --shadow-card: 0 10px 30px rgba(22, 35, 31, 0.08);
      --shadow-card-hover: 0 18px 40px rgba(22, 35, 31, 0.14);
      --radius-xl: 28px;
      --radius-card: 20px;
      --radius-pill: 999px;
      --space-section: clamp(64px, 7vw, 96px);
      --transition: all .28s ease;
    }

    * {
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      font-family: "PingFang SC", "HarmonicOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
      background: var(--bg-soft);
      color: var(--text-deep);
      line-height: 1.8;
      font-size: 1rem;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: inherit;
      letter-spacing: -0.02em;
      color: var(--text-deep);
      line-height: 1.3;
    }
    h2 {
      font-size: clamp(1.5rem, 2.4vw, 2.2rem);
      font-weight: 700;
    }
    h3 {
      font-size: 1.2rem;
      font-weight: 700;
    }
    p {
      color: var(--text-muted);
      line-height: 1.9;
    }
    img {
      max-width: 100%;
    }
    a {
      text-decoration: none;
      transition: var(--transition);
    }
    a:focus-visible, button:focus-visible, input:focus-visible {
      outline: 3px solid var(--brand-gold);
      outline-offset: 3px;
    }
    .container {
      max-width: 1260px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .section {
      padding: var(--space-section) 0;
    }

    /* ===== 按钮 ===== */
    .btn-rou {
      border: 0;
      border-radius: var(--radius-pill);
      padding: 0.85rem 1.8rem;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      transition: var(--transition);
      line-height: 1.4;
      cursor: pointer;
    }
    .btn-primary-rou {
      background: var(--brand-gradient);
      color: #fff !important;
      box-shadow: 0 10px 26px rgba(11, 93, 75, .22);
    }
    .btn-primary-rou:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(11, 93, 75, .3);
      filter: brightness(1.06);
    }
    .btn-ghost-rou {
      background: transparent;
      color: var(--brand-primary) !important;
      border: 2px solid var(--brand-primary);
    }
    .btn-ghost-rou:hover {
      background: rgba(11, 93, 75, .1);
      transform: translateY(-2px);
    }
    .btn-gold-rou {
      border: 0;
      background: var(--brand-gold);
      color: var(--text-deep) !important;
      border-radius: var(--radius-pill);
      padding: .72rem 1.6rem;
      font-weight: 700;
      display: inline-flex;
      gap: .5rem;
      align-items: center;
      box-shadow: 0 8px 22px rgba(241, 183, 76, .3);
    }
    .btn-gold-rou:hover {
      background: #F8C766;
      transform: translateY(-2px);
    }

    /* ===== 浮动 Dock 导航 ===== */
    .dock-nav {
      position: fixed;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1080;
      max-width: 1180px;
      width: calc(100% - 32px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px 14px;
      padding: 13px 16px 13px 24px;
      border-radius: 999px;
      background: rgba(8, 51, 42, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 12px 34px rgba(8, 51, 42, .28);
      color: #fff;
    }
    .dock-logo {
      display: inline-flex;
      align-items: center;
      color: #fff;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      line-height: 1;
      gap: 10px;
      white-space: nowrap;
    }
    .dock-logo:hover,
    .dock-logo:focus {
      color: var(--brand-gold);
    }
    .dock-logo .logo-text {
      white-space: nowrap;
    }
    .logo-mark {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--brand-gold);
      box-shadow: 0 0 0 4px rgba(241, 183, 76, .2);
      display: inline-block;
      flex: none;
    }
    .dock-logo .logo-mark::after {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      margin: 5px auto 0;
      background: var(--brand-red);
      border-radius: 50%;
    }
    .dock-menu-collapse {
      flex: 1 1 auto;
      order: 2;
    }
    .dock-menu {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .dock-menu li a {
      display: inline-block;
      color: rgba(255, 255, 255, 0.9);
      font-size: .94rem;
      font-weight: 500;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      position: relative;
      white-space: nowrap;
    }
    .dock-menu li a::after {
      content: "";
      position: absolute;
      bottom: 4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--brand-gold);
      border-radius: 2px;
      transition: var(--transition);
      transform: translateX(-50%);
    }
    .dock-menu li a:hover::after,
    .dock-menu li a.active::after {
      width: 42%;
    }
    .dock-menu li a:hover,
    .dock-menu li a.active {
      color: var(--brand-gold);
    }
    .dock-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      order: 3;
      margin-left: auto;
    }
    .btn-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .btn-icon:hover {
      background: rgba(255, 255, 255, .24);
      color: var(--brand-gold);
    }
    .btn-gold-nav {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: var(--brand-gold);
      color: var(--text-deep) !important;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: .88rem;
      padding: .6rem 1.25rem;
      white-space: nowrap;
      transition: var(--transition);
    }
    .btn-gold-nav:hover {
      background: #F9CB72;
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(241, 183, 76, .26);
    }
    .dock-toggle {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, .14);
      color: #fff;
    }
    @media (max-width: 991.98px) {
      .dock-nav {
        top: 12px;
        width: calc(100% - 24px);
        border-radius: 24px;
        padding: 12px 16px;
      }
      .dock-menu-collapse {
        order: 4;
        flex: 1 0 100%;
        display: none;
        width: 100%;
      }
      .dock-menu-collapse.show {
        display: flex !important;
        padding: 10px 2px 4px;
      }
      .dock-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
      }
      .dock-menu li {
        width: 100%;
      }
      .dock-menu li a {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        padding: 12px 14px;
      }
      .btn-gold-nav {
        display: none;
      }
      .dock-toggle {
        display: inline-flex;
      }
      .dock-actions {
        margin-left: auto;
      }
    }
    @media (min-width: 992px) {
      .dock-menu-collapse {
        display: flex !important;
      }
    }

    /* ===== 分类页 Hero ===== */
    .cat-hero {
      position: relative;
      color: #fff;
      padding: 168px 0 78px;
      min-height: 72vh;
      background:
        linear-gradient(108deg, rgba(6, 47, 40, .96) 0%, rgba(11, 93, 75, .8) 57%, rgba(20, 106, 88, .66) 100%),
        url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
      overflow: hidden;
    }
    .cat-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1.5px);
      background-size: 26px 26px;
      mix-blend-mode: overlay;
    }
    .cat-hero .container {
      position: relative;
      z-index: 2;
    }
    .cat-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
      gap: 40px;
      align-items: center;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      color: var(--brand-gold);
      background: rgba(241, 183, 76, .14);
      border: 1px solid rgba(241, 183, 76, .36);
      border-radius: var(--radius-pill);
      padding: .4rem 1rem;
      font-size: .84rem;
      letter-spacing: .02em;
      margin-bottom: 18px;
    }
    .hero-kicker i {
      color: var(--brand-red);
    }
    .cat-hero h1 {
      color: #fff;
      font-size: clamp(2.2rem, 4.6vw, 3.8rem);
      font-weight: 800;
      max-width: 760px;
      margin: 0 0 14px;
    }
    .cat-hero h1 span {
      display: block;
      color: var(--brand-gold);
    }
    .hero-sub {
      color: rgba(255, 255, 255, .72);
      font-size: 1.08rem;
      max-width: 480px;
      margin-bottom: 18px;
    }
    .hero-lead {
      color: rgba(255, 255, 255, .85);
      max-width: 560px;
      margin: 0 0 32px;
      font-size: .98rem;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 32px;
    }
    .cat-hero .btn-primary-rou {
      background: var(--brand-gold);
      color: var(--text-deep) !important;
      box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
    }
    .cat-hero .btn-primary-rou:hover {
      background: #F9CB72;
    }
    .cat-hero .btn-ghost-rou {
      border-color: rgba(255, 255, 255, .74);
      color: #fff !important;
    }
    .cat-hero .btn-ghost-rou:hover {
      background: rgba(255, 255, 255, .16);
    }
    .hero-quick-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .hero-quick-list span {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      font-size: .84rem;
      color: rgba(255, 255, 255, .74);
      background: rgba(255, 255, 255, .1);
      border-radius: var(--radius-pill);
      padding: .3rem .8rem;
    }
    .hero-ticket {
      border-radius: var(--radius-xl);
      background: #fff;
      box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
      overflow: hidden;
      position: relative;
      color: var(--text-deep);
    }
    .hero-ticket__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: linear-gradient(135deg, #FFF9EC, #FBE9C8);
      border-bottom: 1px dashed var(--line-border);
    }
    .ticket-tag {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--brand-red);
      color: #fff;
      font-size: .8rem;
      font-weight: 700;
      padding: .25rem .7rem;
      border-radius: 999px;
    }
    .ticket-tag i {
      font-size: .55rem;
    }
    .ticket-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-deep);
    }
    .ticket-type {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: 18px 20px 0;
      color: var(--text-muted);
      font-size: .85rem;
    }
    .ticket-type i {
      color: var(--brand-gold);
    }
    .ticket-matches {
      padding: 6px 20px 18px;
    }
    .ticket-matches li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      list-style: none;
      font-size: .9rem;
      border-bottom: 1px solid #F3EDE2;
      color: var(--text-deep);
    }
    .ticket-matches li:last-child {
      border-bottom: 0;
    }
    .ticket-matches li i {
      color: var(--brand-primary);
      width: 18px;
    }
    .ticket-matches .muted {
      color: var(--text-muted);
      margin-left: auto;
      font-size: .78rem;
    }
    .ticket-note {
      margin: 0 20px 20px;
      border-radius: var(--radius-card);
      background: var(--bg-soft);
      padding: 10px 16px;
      color: var(--text-muted);
      font-size: .84rem;
    }
    @media (max-width: 991.98px) {
      .cat-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .cat-hero {
        padding: 132px 0 62px;
      }
      .hero-ticket {
        max-width: 480px;
      }
    }
    @media (max-width: 575.98px) {
      .hero-btns .btn-rou {
        padding: .72rem 1.25rem;
        font-size: .9rem;
      }
    }

    /* ===== 通栏章节标题 ===== */
    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 34px;
      flex-wrap: wrap;
    }
    .section-head h2 {
      margin: 0;
    }
    .section-head .sec-sub {
      color: var(--text-muted);
      font-size: .94rem;
      margin-top: 4px;
      max-width: 640px;
    }
    .section-tagline {
      color: var(--text-muted);
      max-width: 620px;
      font-size: .96rem;
      display: block;
    }

    /* ===== 导读大卡 ===== */
    .guide-section {
      padding: var(--space-section) 0 0;
    }
    .guide-card {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
      border-radius: var(--radius-xl);
      background: var(--bg-card);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: var(--transition);
      border: 1px solid rgba(231, 221, 204, .5);
    }
    .guide-card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-4px);
    }
    .guide-card__body {
      padding: 42px;
    }
    .guide-kicker {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(241, 183, 76, .16);
      color: #9A6813;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      padding: .35rem .9rem;
      border-radius: var(--radius-pill);
      margin-bottom: 18px;
    }
    .guide-card__body h2 {
      font-size: clamp(1.5rem, 2.4vw, 2.1rem);
      margin-bottom: 14px;
    }
    .guide-card__body p {
      margin-bottom: 20px;
    }
    .guide-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }
    .guide-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--text-deep);
      font-size: .96rem;
    }
    .guide-list li i {
      width: 22px;
      color: var(--brand-primary);
      margin-top: 5px;
    }
    .guide-card__media {
      background: linear-gradient(135deg, #EAF5F1, #FBEFD9);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
    }
    .guide-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    @media (max-width: 991.98px) {
      .guide-card {
        grid-template-columns: 1fr;
      }
      .guide-card__media {
        min-height: 200px;
        order: -1;
      }
      .guide-card__body {
        padding: 30px 24px;
      }
    }

    /* ===== 数据带 ===== */
    .stat-band {
      background: transparent;
      padding: var(--space-section) 0 0;
    }
    .stat-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .stat-card {
      background: #fff;
      border: 1px solid rgba(231, 221, 204, .48);
      border-radius: var(--radius-card);
      box-shadow: 0 6px 18px rgba(22, 35, 31, .05);
      text-align: center;
      padding: 28px 16px;
      transition: var(--transition);
    }
    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
    }
    .stat-card b {
      color: var(--brand-primary);
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      line-height: 1.1;
      letter-spacing: -.04em;
      display: block;
      font-variant-numeric: tabular-nums;
    }
    .stat-card span {
      display: block;
      margin-top: 6px;
      color: var(--text-muted);
      font-size: .9rem;
    }
    @media (max-width: 767.98px) {
      .stat-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ===== 回放分类精选大卡 ===== */
    .replay-section {
      padding: var(--space-section) 0 0;
    }
    .replay-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }
    .replay-card {
      background: var(--bg-card);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(231, 221, 204, .45);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .replay-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
    }
    .replay-card__media {
      position: relative;
      aspect-ratio: 16 / 7;
      overflow: hidden;
      background: #C7D6CE;
    }
    .replay-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .replay-card:hover .replay-card__media img {
      transform: scale(1.03);
    }
    .replay-card__media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(6, 47, 40, .42), transparent 60%);
    }
    .category-badge {
      position: absolute;
      left: 20px;
      bottom: 16px;
      z-index: 2;
      background: rgba(255, 255, 255, .94);
      color: var(--brand-primary);
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: .82rem;
      padding: .3rem .9rem;
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    }
    .replay-card__body {
      padding: 26px 26px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .replay-card__body h3 {
      font-size: 1.35rem;
      margin-bottom: 8px;
    }
    .replay-card__body p {
      font-size: .95rem;
      margin-bottom: 16px;
    }
    .replay-feature {
      list-style: none;
      margin: 0 0 20px;
      padding: 0;
      display: grid;
      gap: 8px;
    }
    .replay-feature li {
      display: flex;
      gap: 9px;
      align-items: center;
      font-size: .9rem;
      color: var(--text-deep);
    }
    .replay-feature li i {
      color: var(--brand-gold);
    }
    .card-link-more {
      margin-top: auto;
      color: var(--brand-primary);
      font-weight: 600;
      font-size: .9rem;
      display: inline-flex;
      gap: .3rem;
      align-items: center;
    }
    .card-link-more:hover {
      color: var(--brand-gold);
      transform: translateX(4px);
    }
    @media (max-width: 767.98px) {
      .replay-grid {
        grid-template-columns: 1fr;
      }
      .replay-card__media {
        aspect-ratio: 16 / 9;
      }
    }

    /* ===== 更多点播标签 ===== */
    .more-section {
      padding: var(--space-section) 0 0;
    }
    .chips-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .chip-card {
      display: flex;
      align-items: center;
      gap: .85rem;
      background: #fff;
      height: 100%;
      padding: 20px 18px;
      border-radius: var(--radius-card);
      border: 1px solid rgba(231, 221, 204, .5);
      box-shadow: 0 6px 16px rgba(22, 35, 31, .05);
      transition: var(--transition);
      color: var(--text-deep);
    }
    .chip-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
      border-color: rgba(241, 183, 76, .55);
    }
    .chip-card i {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #E5F1EC;
      border-radius: 50%;
      color: var(--brand-primary);
      font-size: 1rem;
    }
    .chip-card b {
      font-size: 1rem;
    }
    .chip-card small {
      display: block;
      color: var(--text-muted);
      font-weight: 400;
      font-size: .8rem;
    }
    @media (max-width: 991.98px) {
      .chips-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 575.98px) {
      .chips-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== 点播流程 ===== */
    .flow-section {
      padding: var(--space-section) 0 0;
    }
    .flow-wrap {
      background: var(--brand-gradient);
      border-radius: var(--radius-xl);
      padding: 42px 38px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .flow-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }
    .flow-wrap .section-head h2 {
      color: #fff;
    }
    .flow-wrap .section-head .sec-sub {
      color: rgba(255, 255, 255, .72);
    }
    .flow-row {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 6px;
    }
    .flow-item {
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: var(--radius-card);
      padding: 26px 20px;
      color: #fff;
      backdrop-filter: blur(8px);
      transition: var(--transition);
      display: flex;
      gap: 12px;
      flex-direction: column;
    }
    .flow-item:hover {
      background: rgba(255, 255, 255, .2);
      transform: translateY(-4px);
    }
    .flow-num {
      font-size: 2.2rem;
      line-height: 1;
      font-weight: 800;
      color: var(--brand-gold);
    }
    .flow-item h3 {
      color: #fff;
      margin-bottom: 4px;
      font-size: 1.1rem;
    }
    .flow-item p {
      color: rgba(255, 255, 255, .7);
      font-size: .9rem;
      margin: 0;
    }
    @media (max-width: 767.98px) {
      .flow-row {
        grid-template-columns: 1fr;
      }
      .flow-wrap {
        padding: 30px 20px;
      }
    }

    /* ===== FAQ ===== */
    .faq-section {
      padding: var(--space-section) 0 0;
    }
    .custom-accordion {
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: transparent;
      box-shadow: var(--shadow-card);
    }
    .accordion-item {
      background: #fff;
      border: 0;
      border-bottom: 1px solid var(--hairline);
      transition: var(--transition);
    }
    .accordion-item:last-child {
      border-bottom: 0;
    }
    .accordion-button {
      font-size: 1.06rem;
      font-weight: 700;
      color: var(--text-deep);
      background: #fff;
      padding: 20px 24px;
      border: 0;
      line-height: 1.4;
      box-shadow: none;
      border-radius: 0;
    }
    .accordion-button:not(.collapsed) {
      color: var(--brand-primary);
      background: #F8FAF7;
    }
    .accordion-button:focus {
      box-shadow: 0 0 0 3px rgba(241, 183, 76, .45);
      border-radius: 8px;
      border-color: transparent;
    }
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230B5D4B' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    }
    .accordion-body {
      background: #fff;
      padding: 0 24px 24px;
      color: var(--text-muted);
      font-size: .95rem;
    }
    .accordion-body p:last-child {
      margin-bottom: 0;
    }

    /* ===== 提醒/CTA 大卡 ===== */
    .remind-section {
      padding: var(--space-section) 0;
    }
    .remind-card {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #FFF6E5 0%, #F8DFB5 62%, #F1CB8F 100%);
      padding: clamp(28px, 5vw, 52px);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 450px);
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(241, 183, 76, .4);
    }
    .remind-card h2 {
      margin-bottom: 10px;
      font-size: clamp(1.4rem, 2.4vw, 2rem);
    }
    .remind-card p {
      margin-bottom: 0;
      color: #5B4E3A;
      font-size: .95rem;
    }
    .remind-form .input-row {
      display: flex;
      background: rgba(255, 255, 255, .9);
      border: 1px solid var(--text-deep);
      border-radius: var(--radius-pill);
      padding: 5px;
      gap: 6px;
      box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    }
    .remind-form .input-row input {
      border: 0;
      background: transparent;
      padding: .55rem .8rem;
      flex: 1;
      border-radius: var(--radius-pill);
      font-size: .95rem;
      min-width: 0;
      color: var(--text-deep);
    }
    .remind-form .input-row input:focus {
      outline: 0;
      box-shadow: inset 0 0 0 2px rgba(241, 183, 76, .6);
      background: #FFFDF7;
    }
    .remind-form .btn-primary-rou {
      white-space: nowrap;
      color: #fff !important;
      background: var(--brand-gradient);
      border-radius: var(--radius-pill) !important;
      padding: .72rem 1.5rem;
    }
    .privacy-note {
      margin-top: 12px;
      color: rgba(91, 78, 58, .75);
      font-size: .8rem;
    }
    @media (max-width: 991.98px) {
      .remind-card {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 575.98px) {
      .remind-form .input-row {
        flex-direction: column;
        background: transparent;
        border: 0;
        padding: 0;
      }
      .remind-form .input-row input {
        background: rgba(255,255,255,.85);
        border: 1px solid var(--text-deep);
        padding: .75rem 1rem;
      }
      .remind-form .btn-primary-rou {
        width: 100%;
      }
    }

    /* ===== 页脚 ===== */
    .site-footer {
      background: #062F28;
      color: rgba(255, 255, 255, .8);
      margin-top: 30px;
      padding: 70px 0 26px;
      position: relative;
    }
    .site-footer::before {
      content: "";
      display: block;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
      position: absolute;
      top: 0;
      left: 8%;
      right: 8%;
      opacity: .7;
    }
    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .footer-brand {
      max-width: 320px;
    }
    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-brand p {
      color: rgba(255, 255, 255, .62);
      font-size: .88rem;
    }
    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, minmax(130px, 1fr));
      gap: 26px 36px;
      flex: 1;
      max-width: 720px;
    }
    .footer-links h4 {
      color: var(--brand-gold);
      font-size: .85rem;
      letter-spacing: .08em;
      margin: 0 0 10px;
      text-transform: none;
    }
    .footer-links a {
      display: block;
      color: rgba(255, 255, 255, .64);
      font-size: .88rem;
      padding: 5px 0;
      transition: var(--transition);
    }
    .footer-links a:hover {
      color: var(--brand-gold);
      padding-left: 6px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      margin-top: 46px;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .8rem;
      color: rgba(255, 255, 255, .42);
      gap: 8px;
      flex-wrap: wrap;
    }
    .site-domain {
      font-variant-numeric: tabular-nums;
      padding: .2rem .7rem;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 999px;
    }
    @media (max-width: 991.98px) {
      .footer-links {
        grid-template-columns: 1fr 1fr;
      }
    }

/* roulang page: article */
:root{
  --brand-primary:#0B5D4B;
  --brand-primary-dark:#08463A;
  --brand-secondary:#17866F;
  --brand-gradient:linear-gradient(135deg,#0B5D4B 0%,#17866F 100%);
  --brand-gold:#F1B74C;
  --brand-gold-soft:#F7DFAB;
  --brand-red:#EE5533;
  --bg-soft:#F6F2E9;
  --surface:#FFFFFF;
  --text-deep:#16231F;
  --text-muted:#5F6A65;
  --hairline:#EAE2D4;
  --line:#E7DDCC;
  --radius-lg:28px;
  --radius-card:20px;
  --radius-pill:999px;
  --radius-field:14px;
  --shadow-card:0 10px 30px rgba(22,35,31,0.08);
  --shadow-hover:0 18px 40px rgba(22,35,31,0.14);
  --container-width:1260px;
  --font-sans:"PingFang SC","HarmonyOS Sans SC","Microsoft YaHei","Source Han Sans SC",sans-serif;
  --font-num:Barlow Condensed,"DIN Alternate","Roboto Condensed",var(--font-sans);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg-soft);
  color:var(--text-deep);
  font-family:var(--font-sans);
  line-height:1.8;
  -webkit-text-size-adjust:100%;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:color .25s ease}
button{font:inherit;border:0;background:none;cursor:pointer}
input,select,textarea{font-family:inherit}
p,h1,h2,h3,h4,h5,h6{margin:0}
ul,ol{list-style:none;margin:0;padding:0}
.container{max-width:var(--container-width);margin:0 auto;padding-left:24px;padding-right:24px}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid rgba(241,183,76,.85);outline-offset:2px;border-radius:6px}
::selection{background:rgba(241,183,76,.45)}

/* ===== buttons ===== */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:var(--brand-gradient);color:#fff;font-weight:600;
  border-radius:var(--radius-pill);padding:.82rem 1.85rem;font-size:.98rem;
  box-shadow:0 10px 24px rgba(11,93,75,.2);border:1px solid rgba(255,255,255,.12);
  transition:transform .25s ease,box-shadow .25s ease,filter .25s ease;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(11,93,75,.28);filter:brightness(1.04);color:#fff}
.btn-primary:active{transform:translateY(-1px)}
.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:transparent;color:var(--brand-primary);font-weight:600;
  border:2px solid var(--brand-primary);border-radius:var(--radius-pill);
  padding:.74rem 1.8rem;font-size:.98rem;
  transition:background .25s ease,transform .25s ease,border-color .25s ease;
}
.btn-ghost:hover{background:rgba(11,93,75,.08);transform:translateY(-2px);color:var(--brand-primary-darker)}
.btn-ghost-light{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:rgba(255,255,255,.1);color:#fff;font-weight:600;
  border:1px solid rgba(255,255,255,.45);border-radius:var(--radius-pill);
  padding:.75rem 1.7rem;
  transition:background .25s ease,transform .25s ease;
}
.btn-ghost-light:hover{background:rgba(255,255,255,.18);transform:translateY(-2px);color:#fff}

/* ===== dock navigation ===== */
.site-header{position:relative;z-index:1040}
.dock-nav{
  position:fixed;top:18px;left:50%;transform:translateX(-50%);
  width:min(1180px,calc(100% - 32px));
  background:rgba(10,48,40,.92);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  display:flex;align-items:center;justify-content:space-between;
  padding:.48rem .5rem .48rem 1.1rem;
  box-shadow:0 16px 38px rgba(8,32,27,.28);
  transition:background .3s;
}
.dock-logo{display:flex;align-items:center;gap:10px;color:#fff;font-weight:800}
.logo-mark{
  width:34px;height:34px;border-radius:50%;position:relative;flex:0 0 auto;
  background:radial-gradient(circle at 35% 32%,#FFDd97 0%,#E4A52F 55%,#b97c16 100%);
  box-shadow:inset 0 0 0 2px rgba(11,93,75,.35),0 4px 8px rgba(0,0,0,.14);
}
.logo-mark::after{
  content:"";position:absolute;left:8px;top:7px;width:16px;height:16px;
  border:3px solid var(--brand-primary);border-radius:50%;
}
.logo-text{font-size:1.18rem;letter-spacing:.01em}
.dock-menu{display:flex;align-items:center;gap:4px}
.dock-menu a{
  position:relative;display:block;padding:.55rem .8rem;color:rgba(255,255,255,.75);
  font-size:.9rem;font-weight:500;border-radius:var(--radius-pill);
  transition:color .2s;
}
.dock-menu a::after{
  content:"";position:absolute;left:.85rem;right:100%;bottom:.18rem;height:2px;
  border-radius:2px;background:var(--brand-gold);transition:right .22s ease;
}
.dock-menu a:hover{color:#fff}
.dock-menu a:hover::after{right:.85rem}
.dock-menu a.active{color:#fff;font-weight:700}
.dock-menu a.active::after{right:.85rem}
.dock-menu a:focus-visible{outline-color:rgba(241,183,76,.9)}
.dock-actions{display:flex;align-items:center;gap:.5rem}
.btn-icon{
  width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.9);background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
  transition:background .25s,color .25s,transform .25s;
}
.btn-icon:hover{background:rgba(255,255,255,.18);color:var(--brand-gold);transform:translateY(-2px)}
.btn-gold-nav{
  display:inline-flex;align-items:center;justify-content:center;color:#17231F;
  background:var(--brand-gold);border-radius:var(--radius-pill);padding:.55rem 1.25rem;
  font-size:.92rem;font-weight:700;white-space:nowrap;
  box-shadow:0 6px 16px rgba(0,0,0,.16);
  transition:filter .25s,transform .25s,box-shadow .25s;
}
.btn-gold-nav:hover{filter:brightness(1.06);transform:translateY(-2px);color:#0e1814;box-shadow:0 9px 20px rgba(0,0,0,.22)}
.dock-toggle{display:none;width:40px;height:40px;border-radius:14px;color:#fff;align-items:center;justify-content:center}
.dock-pop{
  position:fixed;top:82px;left:50%;transform:translateX(-50%);
  width:min(520px,calc(100% - 32px));background:#fff;z-index:1035;
  border-radius:20px;box-shadow:var(--shadow-hover);border:1px solid var(--hairline);
  padding:14px;
}
.dock-pop form{
  display:flex;align-items:center;gap:10px;background:var(--bg-soft);
  border-radius:14px;padding:4px 6px 4px 16px;border:1px solid var(--line);
}
.dock-pop form i{color:var(--text-muted)}
.dock-pop input{flex:1;border:0;background:transparent;padding:.55rem 0;font-size:.95rem;outline:0;color:var(--text-deep)}
.dock-pop button{
  background:var(--brand-gradient);color:#fff;border-radius:12px;
  padding:.55rem 1rem;font-weight:600;
}
.dock-mobile{
  position:fixed;top:82px;left:50%;transform:translateX(-50%);
  width:min(560px,calc(100% - 20px));background:rgba(8,38,32,.97);
  border-radius:22px;padding:14px;z-index:1035;border:1px solid rgba(255,255,255,.09);
  display:none;
}
.dock-mobile.show{display:block}
.dock-mobile a{
  display:flex;align-items:center;justify-content:center;padding:.8rem .6rem 1rem;
  color:rgba(255,255,255,.82);border-bottom:1px solid rgba(255,255,255,.08);
  border-radius:12px;font-weight:500;
}
.dock-mobile a:hover,.dock-mobile a.active{color:var(--brand-gold)}
.dock-mobile a:last-of-type{border-bottom-color:transparent}
.dock-mobile .mobile-cta{
  background:var(--brand-gold);color:#132019;border-radius:14px;font-weight:700;border:0;margin-top:8px;
}
@media(max-width:991px){
  .dock-nav{top:8px;border-radius:24px;padding:.4rem .4rem .4rem 1rem}
  .dock-menu{display:none}
  .dock-toggle{display:inline-flex}
  .btn-gold-nav{display:none}
  .dock-logo .logo-text{font-size:1rem}
}
@media(max-width:420px){
  .logo-mark{width:30px;height:30px}
  .logo-text{font-size:.92rem}
  .btn-icon{width:38px;height:38px}
}

/* ===== article main ===== */
.article-main{
  padding-top:118px;
  background:
    radial-gradient(circle at 88% 4%,rgba(241,183,76,.18),transparent 22%),
    linear-gradient(180deg,#F6F2E9 0%,#fff 100%);
  position:relative;
}
@media(max-width:991px){.article-main{padding-top:84px}}

.article-head{
  max-width:900px;margin:0 auto;
  padding:52px 24px 34px;
}
.crumbs{
  display:flex;align-items:center;flex-wrap:wrap;gap:.4rem;
  font-size:.88rem;color:var(--text-muted);margin-bottom:20px;
}
.crumbs a{color:var(--brand-primary);font-weight:500}
.crumbs a:hover{color:var(--brand-gold-dark);text-decoration:underline}
.crumbs-sep{color:rgba(95,106,101,.5)}
.crumbs .crumb-title{color:var(--text-deep);max-width:420px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:.86rem}
@media(max-width:520px){.crumbs .crumb-title{max-width:200px}}

.page-h1{
  font-size:clamp(1.9rem,3.4vw,2.65rem);
  font-weight:800;line-height:1.3;letter-spacing:-.02em;
  color:var(--text-deep);
  max-width:880px;
}
@media(max-width:520px){.page-h1{font-size:1.7rem}}

.article-meta{
  display:flex;align-items:center;flex-wrap:wrap;gap:1.1rem;margin-top:24px;
  color:var(--text-muted);font-size:.88rem;
}
.meta-item{display:inline-flex;align-items:center;gap:.4rem}
.meta-item i{color:var(--brand-gold)}
.meta-cat{
  display:inline-flex;align-items:center;gap:.4rem;color:var(--brand-primary);
  background:rgba(11,93,75,.08);border-radius:999px;padding:.2rem .85rem;
  font-size:.82rem;font-weight:600;border:1px solid rgba(11,93,75,.1);
  transition:background .2s,border-color .2s;
}
.meta-cat:hover{background:rgba(11,93,75,.16);border-color:rgba(11,93,75,.25)}

/* ===== feature visual ===== */
.feature-visual{max-width:1060px;margin:0 auto;padding:0 28px}
.visual-frame{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-card);background:#d9d2c4;min-height:260px;
}
.visual-frame img{width:100%;height:clamp(300px,42vw,520px);object-fit:cover}
.visual-frame::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:20%;
  background:linear-gradient(180deg,transparent,rgba(22,35,31,.24));
  pointer-events:none;
}
.visual-frame figcaption{
  position:absolute;left:16px;bottom:14px;z-index:3;
  color:rgba(255,255,255,.88);font-size:.82rem;
  background:rgba(9,40,34,.55);padding:4px 12px;border-radius:999px;
  backdrop-filter:blur(6px);
}
@media(max-width:768px){
  .feature-visual{padding:0 18px}
  .visual-frame img{height:230px}
}

/* ===== article body ===== */
.article-content-wrap{background:#fff}
.article-body{
  max-width:780px;margin:0 auto;padding:60px 24px 20px;
  font-size:1.04rem;line-height:1.95;color:rgba(23,34,31,.92);
}
.article-body p{margin:0 0 22px;letter-spacing:.006em}
.article-body h2{
  font-size:1.55rem;font-weight:700;color:var(--text-deep);
  margin:46px 0 20px;line-height:1.45;letter-spacing:-.015em;
  padding-left:16px;border-left:4px solid var(--brand-gold);
}
.article-body h3{
  font-size:1.22rem;font-weight:700;color:var(--text-deep);
  margin:34px 0 14px;line-height:1.6;
  padding-left:14px;border-left:3px solid var(--brand-secondary);
}
.article-body h4{
  font-size:1.08rem;font-weight:700;color:var(--brand-primary);
  margin:30px 0 12px;
}
.article-body ul,.article-body ol{margin:0 0 22px;padding-left:22px}
.article-body ul{list-style:disc}
.article-body ol{list-style:decimal}
.article-body li{margin-bottom:.55rem;line-height:1.85}
.article-body img{border-radius:20px;margin:32px 0;box-shadow:var(--shadow-card);width:100%;object-fit:cover;min-height:160px;background:var(--bg-soft)}
.article-body figure{margin:32px 0}
.article-body figure img{margin:0}
.article-body figcaption{text-align:center;color:var(--text-muted);font-size:.84rem;padding:10px 6px 0}
.article-body blockquote{
  background:linear-gradient(135deg,rgba(11,93,75,.06),rgba(241,183,76,.08));
  border-left:4px solid var(--brand-gold);
  padding:18px 24px;border-radius:0 16px 16px 0;margin:30px 0;color:var(--text-deep);
}
.article-body blockquote p{margin-bottom:.4rem}
.article-body table{width:100%;margin:30px 0;border-collapse:collapse;overflow:hidden;border-radius:14px}
.article-body th,.article-body td{border:1px solid var(--hairline);padding:10px 14px;text-align:left;font-size:.93rem}
.article-body th{background:rgba(11,93,75,.08);color:var(--brand-primary-dark);font-weight:600}
.article-body a{color:var(--brand-secondary);font-weight:600;text-decoration:underline;text-underline-offset:5px}
.article-body a:hover{color:var(--brand-primary)}
.article-body code{background:var(--bg-soft);padding:2px 8px;border-radius:6px;font-size:.9em;color:var(--brand-primary)}
@media(max-width:620px){
  .article-body{padding:40px 20px 20px}
  .article-body h2{font-size:1.32rem}
}

/* ===== not found ===== */
.notfound-box{max-width:780px;margin:0 auto;padding:80px 24px}
.notfound-card{
  background:#fff;border:1px dashed #d8cdbc;border-radius:28px;
  padding:56px 34px;text-align:center;box-shadow:var(--shadow-card);
}
.notfound-icon{
  width:72px;height:72px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--bg-soft);margin:0 auto 18px;color:var(--brand-gold);font-size:1.7rem;
  border:1px solid var(--hairline);
}
.notfound-card h2{font-size:1.6rem;font-weight:800;margin-bottom:12px}
.notfound-card p{color:var(--text-muted);max-width:440px;margin:0 auto 24px}
.nf-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}

/* ===== prev next ===== */
.pn-area{max-width:820px;margin:0 auto;padding:44px 24px 20px}
.pn-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.pn-card{
  display:flex;flex-direction:column;gap:12px;background:var(--surface);
  border-radius:22px;padding:24px;border:1px solid rgba(231,221,204,.35);
  box-shadow:var(--shadow-card);
  transition:transform .25s,box-shadow .25s,border-color .25s;
}
.pn-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(11,93,75,.15)}
.pn-card.next{align-items:flex-end;text-align:right}
.pn-label{font-size:.82rem;font-weight:700;color:var(--brand-gold-dark);display:inline-flex;align-items:center;gap:.4rem;letter-spacing:.1em}
.pn-title{font-weight:700;font-size:1.02rem;color:var(--text-deep);line-height:1.6}
.pn-more{font-size:.85rem;color:var(--text-muted)}
.pn-card:hover .pn-title{color:var(--brand-primary)}
@media(max-width:640px){
  .pn-grid{grid-template-columns:1fr}
  .pn-card{width:100%}
  .pn-card.next{align-items:flex-start;text-align:left}
}

/* ===== related ===== */
.related-section{padding:80px 0;background:#fff}
.related-caption{text-align:center}
.section-eyebrow{
  display:inline-flex;align-items:center;gap:8px;color:var(--brand-primary);
  font-weight:700;font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;
  background:rgba(11,93,75,.08);padding:.18rem 1rem;border-radius:999px;margin-bottom:12px;
}
.section-title{font-size:clamp(1.5rem,2.2vw,2rem);font-weight:800;letter-spacing:-.02em}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px}
.related-card{
  display:block;background:var(--surface);border-radius:23px;overflow:hidden;
  box-shadow:var(--shadow-card);transition:transform .28s,box-shadow .28s;
  border:1px solid rgba(231,221,204,.5);
}
.related-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.related-thumb{aspect-ratio:16/9;overflow:hidden;background:#ddd3c2;min-height:160px}
.related-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.related-card:hover .related-thumb img{transform:scale(1.06)}
.related-body{padding:20px 20px 22px;display:flex;flex-direction:column;gap:8px}
.related-chip{display:inline-block;width:auto;background:rgba(241,183,76,.22);color:#8f6300;font-size:.72rem;font-weight:600;border-radius:999px;padding:.05rem .65rem}
.related-body h3{font-size:1.05rem;line-height:1.6;font-weight:700;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.related-more{font-size:.84rem;color:var(--text-muted);display:flex;align-items:center;gap:.3rem;margin-top:6px}
.related-card:hover .related-more{color:var(--brand-primary)}
@media(max-width:991px){.related-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.related-grid{grid-template-columns:1fr}}

/* ===== mini faq ===== */
.mini-faq{padding:86px 0;background:var(--bg-soft)}
.mini-faq-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:50px;align-items:start}
@media(max-width:860px){.mini-faq-layout{grid-template-columns:1fr;gap:34px}}
.faq-intro h2{font-size:clamp(1.4rem,2.2vw,1.9rem);font-weight:800;letter-spacing:-.02em;line-height:1.4}
.faq-intro .section-eyebrow{margin-top:14px}
.faq-intro p{color:var(--text-muted);max-width:360px;line-height:1.8}
.faq-intro .faq-link{display:inline-flex;align-items:center;color:var(--brand-primary);font-weight:600;margin-top:14px;gap:4px}
.faq-intro .faq-link:hover{color:var(--brand-gold-dark)}
.article-faq .accordion-item{
  background:#fff;border:1px solid var(--hairline);border-radius:16px;
  margin-bottom:12px;overflow:hidden;box-shadow:0 6px 16px rgba(22,35,31,.04);
}
.article-faq .accordion-item:last-of-type{margin-bottom:0}
.article-faq .accordion-button{
  background:#fff;color:var(--text-deep);padding:18px 52px 18px 20px;
  font-weight:700;font-size:1rem;box-shadow:none;border-radius:14px;
  position:relative;transition:background .2s;
}
.article-faq .accordion-button:hover{background:#FBF8F1}
.article-faq .accordion-button:not(.collapsed){background:#fff;color:var(--brand-primary)}
.article-faq .accordion-button:focus{box-shadow:0 0 0 3px rgba(241,183,76,.3)}
.article-faq .accordion-button::after{display:none}
.article-faq .accordion-button::before{
  content:"+";position:absolute;right:18px;top:50%;transform:translateY(-50%);
  width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(11,93,75,.1);color:var(--brand-primary);font-weight:800;font-size:1.1rem;
  transition:background .2s,transform .2s;
}
.article-faq .accordion-button:not(.collapsed)::before{content:"−";background:var(--brand-gold)}
.article-faq .accordion-collapse,.article-faq .collapse{}
.article-faq .accordion-body{padding:0 20px 20px;color:var(--text-muted);line-height:1.85;font-size:.95rem}

/* ===== subscribe cta ===== */
.cta-wrap{padding:40px 0 80px;background:var(--bg-soft)}
.cta-subscribe{
  background:var(--brand-gradient);color:#fff;border-radius:34px;
  padding:56px 52px;display:flex;align-items:center;justify-content:space-between;
  gap:38px;position:relative;overflow:hidden;box-shadow:0 24px 60px rgba(6,45,38,.24);
}
.cta-subscribe::before{
  content:"";position:absolute;right:-80px;top:-80px;width:260px;height:260px;border-radius:50%;
  background:radial-gradient(circle,rgba(241,183,76,.16),transparent 70%);
}
.cta-subscribe .fa-calendar-plus{
  background:rgba(255,255,255,.15);width:52px;height:52px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:14px;
}
.cta-intro{max-width:470px;position:relative;z-index:3}
.cta-kicker{color:var(--brand-gold);letter-spacing:.18em;font-size:.74rem;font-weight:700;margin-bottom:8px}
.cta-intro h2{font-size:clamp(1.4rem,2.3vw,2rem);font-weight:800;line-height:1.4;letter-spacing:-.02em}
.cta-intro p{margin-top:12px;color:rgba(255,255,255,.86);font-size:.96rem;line-height:1.75}
.reminder-form{
  max-width:400px;position:relative;z-index:3;background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(8px);
  border-radius:22px;padding:22px;width:100%;
}
.reminder-form input{
  width:100%;border:1px solid rgba(255,255,255,.4);background:rgba(255,255,255,.92);
  border-radius:14px;padding:.85rem 1rem;color:var(--text-deep);
  font-size:.94rem;margin-bottom:12px;outline:0;transition:border-color .2s,box-shadow .2s;
}
.reminder-form input:focus{border-color:var(--brand-gold);box-shadow:0 0 0 4px rgba(241,183,76,.22)}
.reminder-form .btn-primary{width:100%;background:#fff;color:var(--brand-primary);box-shadow:none;font-weight:800}
.reminder-form .btn-primary:hover{background:#F6F1E6;color:var(--brand-primary)}
.reminder-form small{display:block;text-align:center;color:rgba(255,255,255,.72);font-size:.72rem;line-height:1.6;margin-top:12px}
@media(max-width:920px){
  .cta-subscribe{flex-direction:column;padding:40px 28px}
  .reminder-form{max-width:440px}
}
@media(max-width:520px){
  .cta-subscribe{border-radius:24px}
  .reminder-form{padding:16px}
}

/* ===== footer ===== */
.site-footer{
  background:#08352C;color:rgba(255,255,255,.82);position:relative;
  border-top:1px solid rgba(241,183,76,.25);
}
.site-footer::before{
  content:"";display:block;height:3px;margin:0 auto;
  background:linear-gradient(90deg,transparent,rgba(241,183,76,.7),transparent);
  border:0;
}
.site-footer .container{padding-top:62px;padding-bottom:24px}
.footer-row{display:flex;justify-content:space-between;gap:48px;flex-wrap:wrap}
.footer-brand{max-width:300px}
.footer-brand .footer-logo{
  display:flex;align-items:center;gap:10px;color:#fff;font-weight:800;font-size:1.25rem;
}
.footer-brand svg{width:52px;height:52px}
.footer-brand p{color:rgba(255,255,255,.62);margin-top:16px;font-size:.9rem;line-height:1.7}
.footer-links{display:flex;gap:36px;flex-wrap:wrap}
.footer-links > div{display:flex;flex-direction:column;min-width:94px}
.footer-links h4{
  font-size:.82rem;font-weight:700;letter-spacing:.12em;color:rgba(255,255,255,.46);
  text-transform:uppercase;margin-bottom:14px;
}
.footer-links a{
  color:rgba(255,255,255,.8);font-size:.88rem;padding:5px 0;line-height:1.4;
  transition:color .2s;
}
.footer-links a:hover{color:var(--brand-gold)}
.footer-bottom{
  margin-top:48px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);
  display:flex;justify-content:space-between;align-items:center;
  font-size:.82rem;color:rgba(255,255,255,.45);
}
.site-domain{font-size:.78rem;letter-spacing:.05em}
@media(max-width:720px){
  .footer-row{flex-direction:column;gap:36px}
  .footer-links{display:grid;grid-template-columns:1fr 1fr;gap:26px 12px}
  .footer-bottom{flex-direction:column;text-align:center;gap:8px}
}

/* roulang page: category2 */
/* ===== 设计变量 ===== */
:root{
  --brand-primary:#0B5D4B;
  --brand-primary-deep:#084236;
  --brand-primary-soft:rgba(11,93,75,.08);
  --brand-gradient:linear-gradient(135deg,#0B5D4B 0%,#17866F 100%);
  --brand-gold:#F1B74C;
  --brand-gold-soft:#FBE6BE;
  --brand-red:#EE5533;
  --bg-soft:#F6F2E9;
  --bg-card:#FFFFFF;
  --text-deep:#16231F;
  --text-muted:#5F6A65;
  --hairline:#EAE2D4;
  --line:#E7DDCC;
  --shadow-card:0 10px 30px rgba(22,35,31,.08);
  --shadow-hover:0 18px 40px rgba(22,35,31,.14);
  --radius-xl:28px;
  --radius-card:20px;
  --radius-pill:999px;
  --radius-input:14px;
  --font-cn:"PingFang SC","HarmonicOS Sans SC","Microsoft YaHei","Source Han Sans SC",sans-serif;
  --font-num:"Barlow Condensed","DIN Alternate","Helvetica Neue",Arial,sans-serif;
  --gap-lg:96px;
  --gap-md:32px;
}

/* ===== 基础 reset ===== */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-cn);
  font-size:1rem;
  line-height:1.8;
  color:var(--text-deep);
  background:var(--bg-soft);
  -webkit-font-smoothing:antialiased;
  padding-top:112px;
}
img{max-width:100%;display:block;height:auto;}
a{color:var(--brand-primary);text-decoration:none;transition:color .2s ease,opacity .2s ease;}
a:hover{color:var(--brand-primary-deep);}
button{font-family:inherit;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{margin:0;letter-spacing:-0.02em;color:var(--text-deep);}
p{margin:0 0 1rem;}
p:last-child{margin-bottom:0;}
a:focus-visible,button:focus-visible,.pick-card:focus-visible{
  outline:3px solid var(--brand-gold);
  outline-offset:3px;
  border-radius:var(--radius-input);
}
.container{max-width:1260px;padding-left:18px;padding-right:18px;margin:0 auto;}

/* ===== 浮动 Dock 导航 ===== */
.site-header{position:relative;}
.dock-nav{
  position:fixed;
  top:18px;
  left:0;
  right:0;
  z-index:1030;
  max-width:1180px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  padding:12px 20px;
  border-radius:var(--radius-pill);
  background:rgba(11,93,75,.88);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 34px rgba(8,66,54,.28);
  border:1px solid rgba(255,255,255,.10);
}
.dock-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:800;
  font-size:1.06rem;
  letter-spacing:-0.02em;
  white-space:nowrap;
}
.dock-logo:hover{color:#fff;opacity:.92;}
.logo-mark{
  width:22px;
  height:22px;
  border-radius:50%;
  border:3px solid var(--brand-gold);
  background:radial-gradient(circle at 50% 50%,rgba(241,183,76,.35) 0%,rgba(241,183,76,0) 70%);
  flex:0 0 auto;
  display:inline-block;
}
.dock-menu{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
}
.dock-menu a{
  position:relative;
  display:inline-block;
  padding:8px 12px;
  color:rgba(255,255,255,.86);
  font-size:.93rem;
  border-radius:var(--radius-pill);
  transition:color .2s ease;
}
.dock-menu a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:4px;
  height:2px;
  background:var(--brand-gold);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .2s ease;
}
.dock-menu a:hover{color:#fff;}
.dock-menu a:hover::after{transform:scaleX(1);}
.dock-menu a.active{color:#fff;font-weight:700;}
.dock-menu a.active::after{transform:scaleX(1);}
.dock-actions{display:flex;align-items:center;gap:10px;}
.btn-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}
.btn-icon:hover{background:rgba(255,255,255,.22);transform:translateY(-2px);}
.btn-gold-nav{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:.6rem 1.25rem;
  border-radius:var(--radius-pill);
  background:var(--brand-gold);
  color:#22301F !important;
  font-weight:700;
  font-size:.92rem;
  transition:filter .2s ease,transform .2s ease;
}
.btn-gold-nav:hover{filter:brightness(1.08);transform:translateY(-2px);color:#22301F;}
.dock-toggle{
  display:none;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
}
.dock-mobile,.search-pop{
  flex-basis:100%;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.16);
}
.dock-mobile ul{display:flex;flex-direction:column;gap:2px;}
.dock-mobile a{
  display:block;
  padding:11px 14px;
  border-radius:14px;
  color:rgba(255,255,255,.9);
  font-size:.95rem;
}
.dock-mobile a:hover,.dock-mobile a.active{background:rgba(255,255,255,.14);color:#fff;}
.search-pop form{display:flex;gap:10px;}
.search-pop input{
  flex:1;
  height:42px;
  padding:0 16px;
  border-radius:var(--radius-input);
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.14);
  color:#fff;
}
.search-pop input::placeholder{color:rgba(255,255,255,.62);}
.search-pop button{
  height:42px;
  padding:0 20px;
  border-radius:var(--radius-input);
  border:0;
  background:var(--brand-gold);
  color:#22301F;
  font-weight:700;
  cursor:pointer;
}

/* ===== 通用按钮 ===== */
.btn-brand,.btn-ghost,.btn-gold{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:.85rem 1.8rem;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:.98rem;
  border:0;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease;
}
.btn-brand{
  background:var(--brand-gradient);
  color:#fff;
  box-shadow:0 10px 26px rgba(11,93,75,.28);
}
.btn-brand:hover{
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(11,93,75,.34),0 0 0 3px rgba(241,183,76,.28) inset;
}
.btn-ghost{
  background:transparent;
  color:var(--brand-primary);
  border:2px solid var(--brand-primary);
}
.btn-ghost:hover{background:var(--brand-primary-soft);color:var(--brand-primary-deep);}
.btn-gold{
  background:var(--brand-gold);
  color:#22301F;
}
.btn-gold:hover{background:#f5c561;color:#22301F;transform:translateY(-2px);}
.btn-brand[disabled],.btn-ghost[disabled]{filter:saturate(.5);opacity:.7;transform:none;box-shadow:none;}

/* ===== Hero ===== */
.cat-hero{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-xl);
  background:
    linear-gradient(135deg,rgba(8,66,54,.94) 0%,rgba(23,134,111,.86) 100%),
    url("/assets/images/backpic/back-1.webp") center/cover no-repeat,
    #0B5D4B;
  color:#fff;
  padding:56px 48px;
  margin-top:12px;
}
.cat-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px,transparent 1px);
  background-size:22px 22px;
  opacity:.5;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.55fr 1fr;
  gap:44px;
  align-items:center;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:.42rem 1rem;
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-size:.85rem;
  color:var(--brand-gold-soft);
  margin-bottom:18px;
}
.hero-eyebrow .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--brand-red);
  box-shadow:0 0 0 4px rgba(238,85,51,.24);
}
.cat-hero h1{
  color:#fff;
  font-size:clamp(2.1rem,4vw,3.3rem);
  font-weight:800;
  line-height:1.22;
  max-width:19ch;
}
.hero-sub{
  margin-top:16px;
  font-size:1.06rem;
  color:rgba(255,255,255,.86);
}
.hero-actions{margin-top:28px;display:flex;flex-wrap:wrap;gap:14px;}
.hero-actions .btn-ghost{color:#fff;border-color:rgba(255,255,255,.7);}
.hero-actions .btn-ghost:hover{background:rgba(255,255,255,.14);color:#fff;}
.hero-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  border-radius:var(--radius-card);
  padding:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  backdrop-filter:blur(6px);
}
.live-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:.34rem .9rem;
  border-radius:var(--radius-pill);
  background:var(--brand-red);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
}
.hero-card-date{
  font-family:var(--font-num);
  font-variant-numeric:tabular-nums;
  font-size:2rem;
  font-weight:700;
  color:#fff;
  margin:16px 0 4px;
  letter-spacing:.02em;
}
.hero-card-label{font-size:.85rem;color:rgba(255,255,255,.72);}
.hero-card-list{margin-top:18px;display:flex;flex-direction:column;gap:12px;}
.hero-card-list li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(0,0,0,.16);
  font-size:.92rem;
  color:rgba(255,255,255,.92);
}
.hero-card-list i{color:var(--brand-gold);}

/* ===== 板块通用 ===== */
.section{padding:var(--gap-lg) 0;}
.section-sm{padding:56px 0;}
.section-head{max-width:760px;margin-bottom:var(--gap-md);}
.eyebrow{
  display:inline-block;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.12em;
  color:var(--brand-primary);
  background:var(--brand-primary-soft);
  padding:.32rem .9rem;
  border-radius:var(--radius-pill);
  margin-bottom:14px;
}
.section-title{font-size:clamp(1.5rem,2.4vw,2.2rem);font-weight:700;}
.section-desc{margin-top:12px;color:var(--text-muted);}

/* ===== 导读大卡 ===== */
.lead-card{
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:0;
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:var(--bg-card);
  box-shadow:var(--shadow-card);
  transition:box-shadow .25s ease,transform .25s ease;
}
.lead-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.lead-card-body{padding:44px 42px;}
.lead-card-body h2{font-size:clamp(1.4rem,2.2vw,1.95rem);font-weight:700;margin-bottom:16px;}
.lead-card-body p{color:var(--text-muted);}
.lead-card-media{
  position:relative;
  min-height:320px;
  background:var(--brand-primary);
  overflow:hidden;
}
.lead-card-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:.34rem .95rem;
  border-radius:var(--radius-pill);
  background:var(--brand-gold-soft);
  color:#6B4A0C;
  font-size:.83rem;
  font-weight:700;
}

/* ===== 精选内容双列卡 ===== */
.pick-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.pick-card{
  display:flex;
  flex-direction:column;
  background:var(--bg-card);
  border-radius:var(--radius-card);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease,box-shadow .25s ease;
}
.pick-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);}
.pick-media{
  position:relative;
  min-height:190px;
  background:linear-gradient(135deg,#0B5D4B,#17866F);
  overflow:hidden;
}
.pick-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;transition:transform .5s ease;}
.pick-card:hover .pick-media img{transform:scale(1.04);}
.pick-media .badge-tag{
  position:absolute;
  left:16px;
  top:16px;
  padding:.3rem .85rem;
  border-radius:var(--radius-pill);
  background:rgba(11,93,75,.92);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
}
.pick-body{padding:24px 26px 26px;}
.pick-title{font-size:1.2rem;font-weight:700;margin-bottom:12px;}
.pick-text{color:var(--text-muted);font-size:.95rem;}
.pick-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  font-weight:700;
  font-size:.92rem;
}
.pick-link i{transition:transform .2s ease;}
.pick-link:hover i{transform:translateX(4px);}

/* ===== 步骤 ===== */
.step-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.step-card{
  background:var(--bg-card);
  border-radius:var(--radius-card);
  padding:30px 28px;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease,box-shadow .25s ease;
}
.step-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);}
.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  border-radius:var(--radius-pill);
  background:var(--brand-gradient);
  color:#fff;
  font-family:var(--font-num);
  font-weight:700;
  font-size:1.15rem;
  margin-bottom:18px;
}
.step-card h3{font-size:1.12rem;font-weight:700;margin-bottom:10px;}
.step-card p{color:var(--text-muted);font-size:.94rem;}

/* ===== 场景 ===== */
.scene-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.scene-card{
  border-radius:var(--radius-card);
  padding:28px 26px;
  background:var(--bg-card);
  box-shadow:var(--shadow-card);
  transition:transform .25s ease,box-shadow .25s ease;
}
.scene-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);}
.scene-icon{
  width:48px;height:48px;
  border-radius:16px;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--brand-primary-soft);
  color:var(--brand-primary);
  font-size:1.15rem;
  margin-bottom:16px;
}
.scene-card h3{font-size:1.08rem;font-weight:700;margin-bottom:10px;}
.scene-card p{color:var(--text-muted);font-size:.94rem;}

/* ===== FAQ ===== */
.faq-wrap{
  background:var(--bg-card);
  border-radius:var(--radius-xl);
  padding:18px 34px;
  box-shadow:var(--shadow-card);
}
.accordion-item{
  border:0;
  border-bottom:1px solid var(--hairline);
  background:transparent;
}
.accordion-item:last-child{border-bottom:0;}
.accordion-button{
  background:transparent;
  box-shadow:none;
  padding:24px 4px;
  font-size:1.05rem;
  font-weight:700;
  color:var(--text-deep);
  font-family:var(--font-cn);
}
.accordion-button:not(.collapsed){color:var(--brand-primary);background:transparent;box-shadow:none;}
.accordion-button:focus{box-shadow:none;border-color:transparent;outline:3px solid var(--brand-gold);outline-offset:-3px;border-radius:12px;}
.accordion-button::after{
  content:"+";
  background-image:none !important;
  width:30px;height:30px;
  border-radius:50%;
  background:var(--brand-gold-soft);
  color:#6B4A0C;
  font-size:1.15rem;
  font-weight:700;
  line-height:1;
  display:flex;align-items:center;justify-content:center;
  transition:transform .25s ease,background .25s ease;
}
.accordion-button:not(.collapsed)::after{content:"−";transform:rotate(180deg);background:var(--brand-gold);}
.accordion-body{padding:0 4px 24px;color:var(--text-muted);font-size:.96rem;}

/* ===== CTA 条 ===== */
.cta-band{
  background:var(--brand-gradient);
  border-radius:var(--radius-xl);
  padding:44px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  color:#fff;
  box-shadow:0 20px 44px rgba(8,66,54,.26);
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:"";
  position:absolute;
  right:-60px;top:-60px;
  width:240px;height:240px;
  border-radius:50%;
  background:rgba(241,183,76,.18);
}
.cta-band h2{color:#fff;font-size:clamp(1.4rem,2.2vw,1.9rem);font-weight:700;position:relative;z-index:2;}
.cta-band p{color:rgba(255,255,255,.84);margin-top:10px;position:relative;z-index:2;}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap;position:relative;z-index:2;}
.cta-band .btn-ghost{color:#fff;border-color:rgba(255,255,255,.72);}
.cta-band .btn-ghost:hover{background:rgba(255,255,255,.16);color:#fff;}

/* ===== 页脚 ===== */
.site-footer{
  margin-top:var(--gap-lg);
  background:var(--brand-primary-deep);
  color:rgba(255,255,255,.82);
  border-top:1px solid transparent;
  border-image:linear-gradient(90deg,rgba(241,183,76,0),rgba(241,183,76,.9),rgba(241,183,76,0)) 1;
  padding:64px 0 26px;
}
.footer-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:44px;
}
.footer-brand{max-width:340px;}
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:1.1rem;
  color:#fff;
  margin-bottom:14px;
}
.footer-brand p{color:rgba(255,255,255,.72);font-size:.94rem;}
.footer-links{
  display:grid;
  grid-template-columns:repeat(4,minmax(120px,1fr));
  gap:32px;
  flex:1;
  max-width:720px;
}
.footer-links h4{font-size:.92rem;color:var(--brand-gold);margin-bottom:14px;letter-spacing:.04em;}
.footer-links a{
  display:block;
  color:rgba(255,255,255,.76);
  font-size:.9rem;
  padding:5px 0;
  transition:color .2s ease;
}
.footer-links a:hover{color:var(--brand-gold);}
.footer-bottom{
  margin-top:48px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  font-size:.84rem;
  color:rgba(255,255,255,.56);
}
.site-domain{font-family:var(--font-num);letter-spacing:.04em;}

/* ===== 响应式 ===== */
@media (max-width:1199.98px){
  .hero-grid{grid-template-columns:1fr;}
  .cat-hero{padding:48px 36px;}
  .lead-card{grid-template-columns:1fr;}
  .lead-card-media{min-height:240px;order:-1;}
}
@media (max-width:991.98px){
  body{padding-top:98px;}
  .dock-nav{border-radius:24px;padding:12px 16px;top:12px;}
  .dock-menu{display:none;}
  .dock-toggle{display:inline-flex;align-items:center;justify-content:center;}
  .dock-actions{margin-left:auto;}
  .step-grid,.scene-grid{grid-template-columns:1fr 1fr;}
  .footer-links{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:767.98px){
  .section{padding:64px 0;}
  .cat-hero{padding:36px 24px;}
  .hero-card{padding:20px;}
  .pick-grid,.step-grid,.scene-grid{grid-template-columns:1fr;}
  .lead-card-body{padding:32px 24px;}
  .cta-band{flex-direction:column;align-items:flex-start;padding:34px 26px;}
  .faq-wrap{padding:12px 20px;}
  .footer-row{gap:32px;}
}
@media (max-width:575.98px){
  body{padding-top:92px;}
  .container{padding-left:18px;padding-right:18px;}
  .dock-nav{gap:8px;}
  .btn-gold-nav{padding:.55rem 1rem;font-size:.86rem;}
  .cat-hero h1{font-size:1.85rem;}
  .footer-links{grid-template-columns:1fr;}
  .hero-actions .btn-brand,.hero-actions .btn-ghost{width:100%;justify-content:center;}
}
