.page-home {
  --home-cut: 22px;
  --home-panel: #172236;
  display: block;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-ruler {
  display: none;
  position: fixed;
  top: 50%;
  left: 18px;
  width: 2px;
  height: 220px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(109, 211, 255, 0.34) 0 1px,
    transparent 1px 11px
  );
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 1440px) {
  .page-home .home-ruler {
    display: block;
  }
}

/* ---------- 状态条 ---------- */
.page-home .home-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.page-home .home-status__text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.page-home .home-status__time {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cyan);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  display: grid;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 46px;
}

.page-home .home-hero__aside {
  position: relative;
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.page-home .home-hero__aside::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 72px;
  background: var(--orange);
}

.page-home .home-hero__title {
  margin: 14px 0 14px;
  font-size: clamp(30px, 5.6vw, 48px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .home-hero__lede {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray);
  max-width: 34em;
}

.page-home .home-hero__vnote {
  display: none;
}

@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.05fr);
    gap: 38px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 66px;
  }

  .page-home .home-hero__aside {
    padding-left: 24px;
  }

  .page-home .home-hero__vnote {
    display: block;
    position: absolute;
    left: -14px;
    bottom: 2px;
    margin: 0;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--gray);
    white-space: nowrap;
  }
}

/* ---------- 比分窗口 ---------- */
.page-home .home-hero__stage {
  min-width: 0;
}

.page-home .home-scoreboard {
  position: relative;
  padding: 1px;
  background: var(--blue);
  clip-path: polygon(
    var(--home-cut) 0,
    100% 0,
    100% calc(100% - var(--home-cut)),
    calc(100% - var(--home-cut)) 100%,
    0 100%,
    0 var(--home-cut)
  );
  transition: background var(--t-fast) linear;
}

.page-home .home-scoreboard:hover,
.page-home .home-scoreboard:focus-within {
  background: var(--orange);
}

.page-home .home-scoreboard__inner {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  padding: clamp(18px, 3vw, 30px);
  clip-path: polygon(
    21px 0,
    100% 0,
    100% calc(100% - 21px),
    calc(100% - 21px) 100%,
    0 100%,
    0 21px
  );
}

.page-home .home-scoreboard__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.7) contrast(1.05);
}

.page-home .home-scoreboard__content {
  position: relative;
}

.page-home .home-scoreboard__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gray);
}

.page-home .home-scoreboard__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
}

.page-home .home-scoreboard__live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(75, 224, 168, 0.16);
}

.page-home .home-scoreboard__id {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.page-home .home-scoreboard__board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 10px;
  margin: 20px 0 4px;
}

.page-home .home-team {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-home .home-team--away {
  align-items: flex-end;
  text-align: right;
}

.page-home .home-team__name {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gray);
}

.page-home .home-team__score {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: clamp(58px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.page-home .home-team:not(.home-team--away) .home-team__score {
  color: var(--orange);
}

.page-home .home-team--away .home-team__score {
  color: rgba(230, 234, 242, 0.78);
}

.page-home .home-scoreboard__sep {
  align-self: end;
  padding-bottom: clamp(8px, 1.8vw, 18px);
  font-family: var(--font-mono);
  font-size: clamp(26px, 4.4vw, 52px);
  color: var(--gray);
}

.page-home .home-scoreboard__clock {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--cyan);
}

.page-home .home-scoreboard__cap {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.page-home .home-players {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .home-player {
  display: grid;
  grid-template-columns: minmax(78px, 1.4fr) repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 6px;
  padding: 10px 6px 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--gray);
  transition: background var(--t-fast) linear;
}

.page-home .home-player:hover {
  background: rgba(46, 123, 255, 0.1);
}

.page-home .home-player__who {
  color: var(--paper);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-home .home-player__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}

.page-home .home-player__stat b {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 700;
  color: var(--cyan);
}

.page-home .home-scoreboard__cta {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color var(--t-fast) linear, border-color var(--t-fast) linear;
}

.page-home .home-scoreboard__cta:hover {
  color: var(--orange);
  border-color: var(--orange);
}

@media (hover: hover) and (min-width: 900px) {
  .page-home .home-scoreboard__cta {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--t-fast) linear, transform var(--t-fast) ease,
      color var(--t-fast) linear, border-color var(--t-fast) linear;
  }

  .page-home .home-scoreboard:hover .home-scoreboard__cta,
  .page-home .home-scoreboard:focus-within .home-scoreboard__cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 数据规模刻度带 ---------- */
.page-home .home-scale {
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
}

.page-home .scale-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .scale-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(78px, auto) minmax(0, 1fr);
  gap: 6px 20px;
  align-items: baseline;
  padding: 18px 0 18px 20px;
  border-bottom: 1px solid var(--line);
}

.page-home .scale-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 12px;
  height: 1px;
  background: var(--blue);
}

.page-home .scale-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.page-home .scale-item__tick {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .scale-item__label {
  margin: 0 0 4px;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.page-home .scale-item__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--gray);
  max-width: 46em;
}

.page-home .home-scale__figure {
  margin: 30px 0 0;
}

.page-home .home-scale__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- 栏目索引错位带 ---------- */
.page-home .home-index {
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
}

.page-home .index-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-home .index-cell {
  position: relative;
  flex: 1 1 218px;
  min-width: 0;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 16px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--paper);
  text-decoration: none;
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
  transition: border-color var(--t-fast) linear, background var(--t-fast) linear;
}

.page-home .index-cell:hover,
.page-home .index-cell:focus-visible {
  border-color: var(--orange);
  background: var(--home-panel);
}

.page-home .index-cell--wide {
  flex: 2 1 300px;
}

.page-home .index-cell--slim {
  flex: 1 1 180px;
}

.page-home .index-cell__no {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--blue);
}

.page-home .index-cell__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.page-home .index-cell__desc {
  font-size: 13px;
  line-height: 1.68;
  color: var(--gray);
}

/* ---------- 回看片段 ---------- */
.page-home .home-replay {
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
}

.page-home .replay-grid {
  display: grid;
  gap: 26px;
  margin-top: 22px;
}

@media (min-width: 880px) {
  .page-home .replay-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 38px;
    align-items: start;
  }
}

.page-home .replay-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .replay-media__cap {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--gray);
}

.page-home .replay-list {
  border-top: 1px solid var(--line);
}

.page-home .replay-item {
  border-bottom: 1px solid var(--line);
}

.page-home .replay-item__head {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(88px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  color: var(--paper);
  cursor: pointer;
}

.page-home .replay-item__head:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.page-home .replay-item__ts {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--orange);
  white-space: nowrap;
}

.page-home .replay-item__title {
  font-size: 14.5px;
  line-height: 1.5;
}

.page-home .replay-item__mark {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform var(--t-fast) ease, border-color var(--t-fast) linear;
}

.page-home .replay-item__head[aria-expanded="true"] .replay-item__mark {
  transform: rotate(-135deg);
  border-color: var(--orange);
}

.page-home .replay-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-fast) ease;
}

.page-home .replay-item__body[data-open] {
  max-height: 360px;
}

.page-home .replay-seg {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  border-left: 2px solid rgba(46, 123, 255, 0.55);
}

.page-home .replay-seg li {
  display: flex;
  gap: 14px;
  padding: 7px 0 7px 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray);
  border-top: 1px dashed rgba(138, 147, 163, 0.22);
}

.page-home .replay-seg li:first-child {
  border-top: 0;
}

.page-home .replay-seg li span:first-child {
  flex: none;
  min-width: 84px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
}

@media (min-width: 700px) {
  .page-home .replay-seg li span:first-child {
    min-width: 102px;
  }
}

/* ---------- 主场地图预告 ---------- */
.page-home .home-map {
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
}

.page-home .home-map__grid {
  display: grid;
  gap: 28px;
  margin-top: 22px;
}

@media (min-width: 900px) {
  .page-home .home-map__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
}

.page-home .home-map__lede {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--gray);
  max-width: 38em;
}

.page-home .gate-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.page-home .gate-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--paper);
}

.page-home .gate-list__dist {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  color: var(--mint);
}

.page-home .seat-grid {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-top: 22px;
}

.page-home .seat-grid__shell {
  fill: rgba(46, 123, 255, 0.06);
  stroke: var(--line-strong);
  stroke-width: 1;
}

.page-home .seat-grid__court {
  fill: rgba(46, 123, 255, 0.18);
  stroke: var(--blue);
  stroke-width: 1;
}

.page-home .seat-grid__line {
  fill: none;
  stroke: rgba(46, 123, 255, 0.7);
  stroke-width: 1;
}

.page-home .seat-grid__seats {
  fill: rgba(138, 147, 163, 0.3);
}

.page-home .seat-grid__gate {
  fill: var(--orange);
}

.page-home .seat-grid__metro {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
}

.page-home .seat-grid__metro-box {
  fill: rgba(75, 224, 168, 0.14);
  stroke: rgba(75, 224, 168, 0.6);
  stroke-width: 1;
}

.page-home .seat-grid__label {
  fill: var(--gray);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.page-home .home-map__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- 登录与账号收益 ---------- */
.page-home .home-account {
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
}

.page-home .account-band {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(
    120deg,
    rgba(46, 123, 255, 0.18),
    rgba(19, 28, 43, 0.94) 58%
  );
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--blue);
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}

@media (min-width: 900px) {
  .page-home .account-band {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
  }
}

.page-home .account-band__title {
  margin: 12px 0 10px;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .account-band__lede {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 40em;
}

.page-home .account-band__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .account-band__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--paper);
}

.page-home .account-band__list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--mint);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* ---------- 到馆速查条 ---------- */
.page-home .home-dock {
  padding-top: 0;
  padding-bottom: 52px;
}

.page-home .home-dock__inner {
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
}

.page-home .home-dock__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 14px 18px;
}

.page-home .home-dock__title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.page-home .home-dock__summary {
  margin: 0;
  flex: 1 1 220px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--gray);
}

.page-home .home-dock__toggle {
  appearance: none;
  background: none;
  border: 1px solid var(--line-strong);
  padding: 6px 14px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  cursor: pointer;
  transition: border-color var(--t-fast) linear, color var(--t-fast) linear;
}

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

.page-home .home-dock__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-fast) ease;
}

.page-home .home-dock__panel[data-open] {
  max-height: 480px;
}

.page-home .home-dock__panel-inner {
  padding: 0 18px 20px;
  border-top: 1px solid var(--line);
}

.page-home .dock-stats {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .page-home .dock-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.page-home .dock-stats li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.page-home .dock-stats__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--cyan);
}

.page-home .dock-stats__label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

.page-home .home-dock__note {
  margin: 18px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--gray);
}

@media (min-width: 900px) {
  .page-home .home-dock__panel {
    max-height: none;
    overflow: visible;
  }

  .page-home .home-dock__toggle {
    display: none;
  }

  .page-home .home-dock__panel-inner {
    padding-top: 4px;
  }
}
<<<END>>>
