.page-news {
  --col-hair: 1px solid rgba(11, 31, 25, 0.14);
  --col-hair-strong: 2px solid var(--ink);
  --col-soft: rgba(11, 31, 25, 0.06);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- 面包屑 ---------- */
.page-news .col-hero__crumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .breadcrumbs {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 22px;
}
.page-news .breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  margin-right: 10px;
  color: var(--cool);
}
.page-news .breadcrumbs__link {
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease-out, border-color 0.18s ease-out;
}
.page-news .breadcrumbs__link:hover,
.page-news .breadcrumbs__link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--neon);
}

/* ---------- 首屏 ---------- */
.page-news .col-hero {
  padding-top: 34px;
}
.page-news .col-hero__split {
  align-items: stretch;
}
.page-news .col-hero__aside {
  padding: 34px 24px 32px;
  box-shadow: var(--shadow-hard);
}
.page-news .col-hero__title {
  margin: 14px 0 0;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.14;
}
.page-news .col-hero__main {
  padding: 28px 24px 30px;
}
.page-news .col-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.page-news .col-hero__stats .stat-block__label {
  display: block;
  margin-top: 6px;
}

/* ---------- 分区通用 ---------- */
.page-news .section__head {
  padding-bottom: 16px;
  border-bottom: var(--col-hair-strong);
}
.page-news .section__head .display-title {
  margin: 12px 0 0;
}
.page-news .lede {
  max-width: 62ch;
}

/* ---------- 当期头条 ---------- */
.page-news .feature__head {
  border-bottom: var(--col-hair-strong);
}
.page-news .feature__figure {
  margin: 26px 0 0;
}
.page-news .feature__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 3px solid var(--neon);
}
.page-news .feature__caption {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.page-news .feature__body {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}
.page-news .feature__prose {
  color: var(--ink);
}
.page-news .feature__prose p {
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.page-news .feature__prose > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.86;
  padding: 8px 12px 0 0;
  color: var(--teal);
}
.page-news .feature__aside {
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}
.page-news .feature__points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.page-news .feature__point {
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid var(--cool);
}
.page-news .feature__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 9px;
  height: 2px;
  background: var(--neon);
}
.page-news .feature__aside-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
}
.page-news .feature__link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}
.page-news .feature__link:hover,
.page-news .feature__link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--neon);
}

/* ---------- 筛选带 ---------- */
.page-news .filters {
  position: sticky;
  top: calc(var(--band-h) + var(--bar-h));
  z-index: 5;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  margin: 24px 0 0;
  padding: 12px 18px;
  background: var(--paper);
  border-top: var(--col-hair-strong);
  border-bottom: var(--col-hair-strong);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.page-news .filters .filter-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* ---------- 简报列表 ---------- */
.page-news .brief__meta {
  margin: 14px 0 0;
  max-width: 66ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--mid);
}
.page-news .brief__count {
  margin: 20px 0 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.page-news .brief__count .num {
  font-size: 15px;
  color: var(--teal);
}
.page-news .brief-board {
  position: relative;
  margin-top: 14px;
  overflow: hidden;
}
.page-news .brief-board__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}
.page-news .brief-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: brief;
}
.page-news .brief-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 22px 6px 22px 18px;
  border-top: var(--col-hair);
  transition: background-color 0.18s ease-out;
}
.page-news .brief-item:last-child {
  border-bottom: var(--col-hair);
}
.page-news .brief-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--neon);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.18s ease-out;
}
.page-news .brief-item:hover {
  background-color: var(--col-soft);
}
.page-news .brief-item:hover::before,
.page-news .brief-item:focus-within::before {
  transform: scaleY(1);
}
.page-news .brief-item[hidden] {
  display: none;
}
.page-news .brief-item__round {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal);
  padding-top: 4px;
}
.page-news .brief-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.page-news .brief-item__excerpt {
  margin: 8px 0 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
}
.page-news .brief-item__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
}
.page-news .brief-item__field {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.page-news .brief-item__spark {
  width: 140px;
  max-width: 100%;
  height: auto;
  color: var(--teal);
  align-self: center;
  transition: color 0.18s ease-out;
}
.page-news .brief-item:hover .brief-item__spark {
  color: var(--neon);
}

/* ---------- 赔率观察 ---------- */
.page-news .odds-grid {
  display: grid;
  gap: 30px;
  margin-top: 28px;
}
.page-news .odds-dims {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0 26px;
  margin: 26px 0 0;
  padding: 0;
  border-top: var(--col-hair-strong);
}
.page-news .odds-dims__item {
  position: relative;
  padding: 12px 0 12px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid var(--cool);
}
.page-news .odds-dims__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 10px;
  height: 2px;
  background: var(--alert);
}
.page-news .odds-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.page-news .odds-item {
  position: relative;
  padding: 18px 0 18px 18px;
  border-top: var(--col-hair);
}
.page-news .odds-item:last-child {
  border-bottom: var(--col-hair);
}
.page-news .odds-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 3px;
  height: 22px;
  background: var(--amber);
}
.page-news .odds-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
}
.page-news .odds-item__text {
  margin: 8px 0 0;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
}
.page-news .odds-item__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
}
.page-news .odds-figure {
  margin: 0;
}
.page-news .odds-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard-soft);
}

/* ---------- 球员数据笔记 ---------- */
.page-news .notes-grid {
  display: grid;
  gap: 30px;
  margin-top: 28px;
}
.page-news .notes-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  counter-reset: notes;
}
.page-news .notes-item {
  position: relative;
  padding: 20px 0 20px 46px;
  border-top: var(--col-hair);
  counter-increment: notes;
}
.page-news .notes-item:last-child {
  border-bottom: var(--col-hair);
}
.page-news .notes-item::before {
  content: counter(notes, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--cool);
}
.page-news .notes-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
}
.page-news .notes-item__text {
  margin: 8px 0 0;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
}
.page-news .notes-table__caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ---------- 专题系列 ---------- */
.page-news .series-figure {
  margin: 0 0 30px;
}
.page-news .series-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .series-list {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}
.page-news .series-item {
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}
.page-news .series-item__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.page-news .series-item__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.4;
}
.page-news .series-item__text {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--mid);
}
.page-news .series-item__points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: var(--col-hair);
}
.page-news .series-item__points li {
  position: relative;
  padding: 9px 0 9px 16px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: var(--col-hair);
}
.page-news .series-item__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 2px;
  background: var(--neon);
}
.page-news .series-item__link {
  margin: 14px 0 0;
  font-size: 14px;
}
.page-news .series-item__link a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}
.page-news .series-item__link a:hover,
.page-news .series-item__link a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--neon);
}

/* ---------- 订阅带 ---------- */
.page-news .subscribe {
  padding: 50px 0 56px;
  color: var(--paper);
}
.page-news .subscribe__grid {
  display: grid;
  gap: 30px;
}
.page-news .subscribe__title {
  margin: 12px 0 0;
  color: var(--paper);
}
.page-news .subscribe__note {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cool);
}
.page-news .subscribe__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline, rgba(201, 214, 208, 0.18));
}
.page-news .subscribe__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 14px 0 14px 16px;
  position: relative;
  border-bottom: 1px solid rgba(201, 214, 208, 0.18);
}
.page-news .subscribe__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 2px;
  background: var(--neon);
}
.page-news .subscribe__when {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--neon);
}
.page-news .subscribe__what {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paper);
}
.page-news .subscribe__how {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--cool);
}
.page-news .subscribe__how a {
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid var(--neon);
}
.page-news .subscribe__how a:hover,
.page-news .subscribe__how a:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
}
.page-news .subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 620px) {
  .page-news .odds-dims {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-news .subscribe__item {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
  }
}

@media (min-width: 760px) {
  .page-news .brief-item {
    grid-template-columns: 116px minmax(0, 1fr) auto;
    gap: 8px 20px;
    align-items: start;
  }
  .page-news .brief-item__round {
    padding-top: 6px;
  }
}

@media (min-width: 900px) {
  .page-news .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .page-news .feature__body {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 46px;
    align-items: start;
  }
  .page-news .feature__prose {
    column-count: 2;
    column-gap: 38px;
  }
  .page-news .feature__prose > p:first-of-type {
    margin-top: 0;
  }
  .page-news .odds-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: start;
  }
  .page-news .notes-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: start;
  }
  .page-news .series-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }
  .page-news .subscribe__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 46px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-news .col-hero__aside {
    padding: 44px 34px 40px;
  }
  .page-news .col-hero__main {
    padding: 36px 34px 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .brief-item,
  .page-news .brief-item::before,
  .page-news .brief-item__spark,
  .page-news .breadcrumbs__link {
    transition: none;
  }
}
<<<END>>>
