.page-home {
  --home-navy: var(--primary-navy);
  --home-orange: var(--action-orange);
  --home-silver: var(--metal-silver);
  --home-deep: var(--ink-navy-deep);
  --home-card: var(--card-navy);
  --home-white: var(--ice-white);
  --home-slate: var(--slate-muted);
  --home-soft: var(--orange-soft);
  --home-live: var(--signal-green);
  --home-ease: var(--ease);
  background: linear-gradient(135deg, rgba(11, 27, 63, 0.035) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--home-white);
  color: #16233A;
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.page-home h2 { font-size: 28px; }
.page-home h3 { font-size: 20px; font-style: italic; }

.page-home .section-head {
  padding-left: 16px;
  border-left: 4px solid var(--home-orange);
  margin-bottom: 28px;
}

.page-home .section-head--light {
  border-left-color: var(--home-orange);
}

.page-home .section-head--light .eyebrow,
.page-home .section-head--light .section-desc {
  color: rgba(242, 245, 250, 0.82);
}

.page-home .section-head--light h2 {
  color: var(--home-white);
}

.page-home .section-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 68ch;
  margin: 12px 0 0;
}

.page-home .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin-bottom: 8px;
  display: inline-block;
}

.page-home .text-link {
  color: var(--home-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--home-ease), background-color var(--home-ease);
}

.page-home .text-link:hover,
.page-home .text-link:focus-visible {
  background-color: rgba(255, 107, 53, 0.12);
  color: #0a1b3a;
}

.page-home .btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform var(--home-ease), box-shadow var(--home-ease), background-color var(--home-ease);
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translateY(-2px);
}

.page-home .btn-solid {
  background-color: var(--home-orange);
  color: #08121F;
  border: 1px solid var(--home-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.14);
}

.page-home .btn-ghost {
  background-color: transparent;
  color: var(--home-white);
  border: 1px solid var(--home-silver);
  box-shadow: none;
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  border-color: var(--home-orange);
  color: var(--home-orange);
}

.page-home .img-frame {
  background: var(--home-white);
  border: 1px solid rgba(192, 192, 192, 0.55);
}

.page-home .img-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 首屏分屏 ---------- */
.page-home .hero-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background-color: var(--home-navy);
  color: var(--home-white);
  overflow: hidden;
}

.page-home .hero-narrative {
  position: relative;
  z-index: 3;
  padding: 40px 20px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .hero-narrative .breadcrumb {
  margin-bottom: 16px;
  padding: 0;
}

.page-home .breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--home-slate);
}

.page-home .breadcrumb-list li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--home-slate);
}

.page-home .breadcrumb-link {
  color: var(--home-slate);
  text-decoration: none;
  transition: color var(--home-ease);
}

.page-home .breadcrumb-link:hover,
.page-home .breadcrumb-link:focus-visible {
  color: var(--home-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .breadcrumb-current {
  color: var(--home-white);
  font-weight: 600;
}

.page-home .hero-h1 {
  margin: 8px 0 20px;
}

.page-home .h1-line-a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--home-silver);
  font-style: normal;
}

.page-home .h1-sep {
  display: block;
  width: 56px;
  height: 6px;
  background: var(--home-orange);
  margin: 16px 0;
  transform: skewX(-16deg);
}

.page-home .h1-line-b {
  display: block;
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 900;
  color: var(--home-white);
  background: linear-gradient(100deg, var(--home-white) 0%, var(--orange-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 245, 250, 0.85);
  max-width: 52ch;
  margin: 0;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 460px;
  margin: 0 0 20px;
  padding: 0;
}

.page-home .hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  transition: background-color var(--home-ease), border-color var(--home-ease);
}

.page-home .hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--home-orange);
}

.page-home .hero-stat dt {
  font-size: 12px;
  color: rgba(242, 245, 250, 0.72);
  margin-bottom: 4px;
}

.page-home .hero-stat .metric-value {
  color: var(--home-orange);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.page-home .hero-entry-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  max-width: 460px;
  padding-top: 4px;
}

.page-home .hero-entry-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-slate);
  letter-spacing: 0.08em;
}

.page-home .hero-entry-links a {
  font-size: 14px;
  color: var(--home-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color var(--home-ease), border-color var(--home-ease);
}

.page-home .hero-entry-links a:hover,
.page-home .hero-entry-links a:focus-visible {
  color: var(--home-orange);
  border-color: var(--home-orange);
}

.page-home .hero-visual {
  position: relative;
  min-height: 380px;
}

.page-home .hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 100%;
  z-index: 2;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0% 100%);
  opacity: 0.92;
}

.page-home .pitch-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--home-deep);
}

.page-home .hero-pitch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-home .pitch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.page-home .stamp-row {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 3;
}

.page-home .stamp-row .tag {
  backdrop-filter: blur(4px);
}

.page-home .countdown-panel {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  background: rgba(7, 18, 40, 0.82);
  border-left: 5px solid var(--home-orange);
  padding: 16px 22px;
  min-width: 210px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.page-home .countdown-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(242, 245, 250, 0.7);
  margin-bottom: 4px;
}

.page-home .countdown-value {
  display: block;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--home-white);
  line-height: 1.2;
}

.page-home .countdown-note {
  display: block;
  font-size: 12px;
  color: var(--home-soft);
  margin-top: 4px;
}

/* ---------- 热门赛事入口 ---------- */
.page-home .hot-section {
  padding: 52px 0 40px;
}

.page-home .hot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .hot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--home-white);
  border: 1px solid rgba(192, 192, 192, 0.6);
  text-decoration: none;
  color: #16233A;
  overflow: hidden;
  transition: transform var(--home-ease), box-shadow var(--home-ease), border-color var(--home-ease);
}

.page-home .hot-card:hover,
.page-home .hot-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--home-orange);
  box-shadow: 0 10px 24px rgba(11, 27, 63, 0.08);
}

.page-home .hot-card .img-frame {
  border: none;
}

.page-home .hot-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.page-home .hot-card h3 {
  margin: 4px 0 0;
  font-size: 19px;
  color: var(--home-navy);
}

.page-home .hot-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #3A4A66;
}

/* ---------- 赛事变更通知 ---------- */
.page-home .notice-band {
  background-color: var(--home-deep);
  color: var(--home-white);
  padding: 52px 0 92px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
  margin-top: 12px;
}

.page-home .notice-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 0 0 28px;
}

.page-home .min-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 22px 24px;
  overflow: hidden;
  transition: background-color var(--home-ease), border-color var(--home-ease);
}

.page-home .min-card:hover,
.page-home .min-card:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--home-orange);
}

.page-home .card-index {
  position: absolute;
  right: 10px;
  top: -14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 68px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.page-home .min-card h3 {
  color: var(--home-white);
  font-size: 18px;
  position: relative;
}

.page-home .min-card p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(242, 245, 250, 0.75);
  position: relative;
}

.page-home .notice-action {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .notice-action .text-link {
  color: var(--home-soft);
}

/* ---------- 数据面板 ---------- */
.page-home .panel-section {
  padding: 56px 0 48px;
  background-color: var(--home-white);
}

.page-home .panel-league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .league-tab {
  padding: 9px 18px;
  border: 1px solid var(--home-silver);
  background-color: transparent;
  color: #16233A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--home-ease), color var(--home-ease), border-color var(--home-ease);
}

.page-home .league-tab:hover,
.page-home .league-tab:focus-visible {
  background-color: var(--home-navy);
  color: var(--home-white);
  border-color: var(--home-navy);
}

.page-home .league-tab.is-active {
  background-color: var(--home-orange);
  color: #08121F;
  border-color: var(--home-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}

.page-home .panel-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.page-home .panel-table-wrap {
  overflow-x: auto;
  background: var(--home-white);
  border: 1px solid rgba(192, 192, 192, 0.55);
  box-shadow: 0 4px 18px rgba(11, 27, 63, 0.05);
}

.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 540px;
}

.page-home .data-table th {
  text-align: left;
  padding: 13px 16px;
  background-color: var(--home-navy);
  color: var(--home-white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-home .data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.4);
  color: #16233A;
}

.page-home .data-table tbody tr {
  transition: background-color var(--home-ease);
}

.page-home .data-table tbody tr:hover {
  background-color: rgba(255, 107, 53, 0.08);
}

.page-home .data-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .data-num {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.page-home .panel-demo-img {
  min-height: 200px;
}

.page-home .panel-notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--home-slate);
}

.page-home .panel-notes p {
  margin: 0;
}

/* ---------- 旧版归档 ---------- */
.page-home .archive-section {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--home-white) 0%, #FFFFFF 100%);
}

.page-home .archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
}

.page-home .archive-copy .section-head {
  margin-bottom: 20px;
}

.page-home .check-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  font-size: 15px;
  color: #22314F;
}

.page-home .check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--home-orange);
  border-bottom: 2px solid var(--home-orange);
  transform: rotate(-45deg);
}

.page-home .archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .archive-actions .btn-solid {
  box-shadow: none;
  border: 1px solid var(--home-orange);
}

.page-home .archive-actions .text-link {
  font-size: 14px;
}

.page-home .archive-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-home .fact-block {
  position: relative;
  background-color: var(--home-navy);
  color: var(--home-white);
  padding: 24px 26px;
  border-left: 5px solid var(--home-orange);
  overflow: hidden;
  transition: transform var(--home-ease), box-shadow var(--home-ease);
}

.page-home .fact-block:hover,
.page-home .fact-block:focus-within {
  transform: translateX(4px);
  box-shadow: 0 10px 22px rgba(11, 27, 63, 0.18);
}

.page-home .fact-block .metric-value {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--home-orange);
  margin-bottom: 8px;
}

.page-home .fact-block .metric-label {
  font-size: 14px;
  color: rgba(242, 245, 250, 0.78);
}

/* ---------- 苹果设备自适应 ---------- */
.page-home .apple-section {
  padding: 52px 0 56px;
  background-color: var(--home-white);
  border-top: 1px solid rgba(192, 192, 192, 0.4);
}

.page-home .apple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.page-home .apple-copy .section-head {
  margin-bottom: 20px;
}

.page-home .step-list {
  counter-reset: step;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .step-list li {
  counter-increment: step;
  position: relative;
  padding: 16px 0 16px 62px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.45);
}

.page-home .step-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  color: var(--home-orange);
  line-height: 1;
}

.page-home .step-list li:last-child {
  border-bottom: none;
}

.page-home .step-list strong {
  font-size: 16px;
  color: var(--home-navy);
  display: block;
  margin-bottom: 4px;
}

.page-home .step-list span {
  font-size: 14px;
  color: #3A4A66;
  display: block;
  padding-right: 8px;
}

.page-home .apple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .apple-actions .btn-ghost {
  border-color: var(--home-navy);
  color: var(--home-navy);
}

.page-home .apple-actions .btn-ghost:hover,
.page-home .apple-actions .btn-ghost:focus-visible {
  border-color: var(--home-orange);
  color: var(--home-navy);
}

.page-home .apple-actions .text-link {
  font-size: 14px;
}

.page-home .apple-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.page-home .apple-visual .img-frame {
  background-color: var(--home-navy);
  border-color: rgba(192, 192, 192, 0.35);
}

.page-home .refresh-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background-color: var(--home-orange);
  color: #08121F;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

/* ---------- 批次核验 ---------- */
.page-home .batch-section {
  background-color: var(--home-navy);
  color: var(--home-white);
  padding: 56px 0 64px;
  position: relative;
}

.page-home .batch-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--home-orange) 0%, var(--home-orange) 18%, transparent 18%);
  opacity: 0.9;
}

.page-home .batch-section .section-desc {
  color: rgba(242, 245, 250, 0.75);
}

.page-home .batch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.page-home .batch-status-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--home-orange);
  padding: 26px;
}

.page-home .status-lamp {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--signal-green);
  box-shadow: 0 0 0 5px rgba(60, 207, 145, 0.22);
  vertical-align: middle;
}

.page-home .status-text {
  display: inline-block;
  margin-left: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--home-white);
  letter-spacing: 0.03em;
}

.page-home .batch-note {
  margin: 18px 0 22px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 245, 250, 0.8);
}

.page-home .batch-status-panel .btn-solid {
  box-shadow: none;
  padding: 11px 20px;
}

.page-home .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  margin-left: 8px;
}

.page-home .timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .timeline li:last-child {
  border-bottom: none;
}

.page-home .timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--home-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.page-home .timeline span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 21px;
  color: var(--home-orange);
  line-height: 1.3;
}

.page-home .timeline p {
  margin: 0;
  font-size: 14px;
  color: rgba(242, 245, 250, 0.85);
}

/* ---------- 平板 ---------- */
@media (min-width: 768px) {
  .page-home .hero-narrative {
    padding: 52px 36px 36px;
  }

  .page-home .hot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .notice-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .panel-notes {
    gap: 12px;
  }

  .page-home .archive-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .fact-block {
    padding: 22px 20px;
  }

  .page-home .batch-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 1024px) {
  .page-home .hero-split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    min-height: 720px;
  }

  .page-home .hero-narrative {
    padding: 88px 52px 48px 64px;
  }

  .page-home .hero-visual {
    min-height: auto;
  }

  .page-home .hot-section {
    padding: 72px 0 56px;
  }

  .page-home .hot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .page-home .hot-card:nth-child(1) {
    transform: translateY(-8px);
  }

  .page-home .hot-card:nth-child(1):hover,
  .page-home .hot-card:nth-child(1):focus-visible {
    transform: translateY(-11px);
  }

  .page-home .notice-band {
    padding: 64px 0 112px;
  }

  .page-home .panel-section {
    padding: 80px 0 64px;
  }

  .page-home .panel-demo {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .archive-section {
    padding: 80px 0;
  }

  .page-home .archive-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .page-home .archive-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .apple-section {
    padding: 80px 0;
  }

  .page-home .apple-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .page-home .batch-section {
    padding: 80px 0 88px;
  }

  .page-home .batch-status-panel {
    padding: 34px;
  }
}

/* ---------- 减少动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    transform: none !important;
  }
}
