.page-news {
  display: block;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* ============ 页头 ============ */
.page-news .news-head {
  padding: clamp(20px, 4vw, 38px) 0 clamp(28px, 5vw, 50px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 82% at 86% -6%, rgba(187, 211, 230, 0.62) 0%, rgba(246, 243, 236, 0) 62%),
    linear-gradient(180deg, rgba(228, 233, 238, 0.55) 0%, rgba(246, 243, 236, 0) 100%);
}

.page-news .news-head__grid {
  display: grid;
  gap: 26px;
  margin-top: 20px;
}

.page-news .news-head__intro .eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--orange-600);
}

.page-news .news-head h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(32px, 5.8vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}

.page-news .news-head__lead {
  margin: 18px 0 0;
  max-width: 54ch;
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.85;
  color: var(--gray-500);
}

.page-news .news-head__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.page-news .news-head__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 10px 10px 0;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.page-news .news-head__stats li:not(:first-child) {
  padding-left: 14px;
}

.page-news .news-head__stats li:last-child {
  border-right: 0;
}

.page-news .news-head__stats .stat__value {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue-700);
}

.page-news .news-head__stats .stat__label {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-500);
}

@media (min-width: 900px) {
  .page-news .news-head__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 56px;
    align-items: end;
    margin-top: 28px;
  }
}

/* ============ 分类索引条 ============ */
.page-news .news-index {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.page-news .news-index__label {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray-500);
}

.page-news .news-index__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-index__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.page-news .news-index__chip:hover {
  border-color: var(--line-strong);
  background: var(--gray-100);
}

.page-news .news-index__chip.is-active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
}

.page-news .news-index__count {
  padding: 2px 6px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.3;
  background: var(--blue-200);
  color: var(--blue-900);
}

.page-news .news-index__chip.is-active .news-index__count {
  background: var(--orange-400);
  color: var(--blue-900);
}

/* ============ 本期头条 ============ */
.page-news .news-lead {
  padding: clamp(30px, 5vw, 64px) 0;
}

.page-news .news-lead__card {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-news .news-lead__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(22px, 3.4vw, 42px);
}

.page-news .news-lead__body .eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--orange-600);
}

.page-news .news-lead__body .tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius);
  background: var(--blue-200);
  color: var(--blue-900);
}

.page-news .news-lead__title {
  margin: 0;
  font-size: clamp(21px, 2.9vw, 30px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: -0.015em;
  color: var(--blue-900);
}

.page-news .news-lead__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--gray-500);
}

.page-news .news-lead__points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-lead__points li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.page-news .news-lead__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--orange-600);
}

.page-news .news-lead__media {
  position: relative;
  margin: 0;
  min-height: 220px;
  background: var(--gray-100);
}

.page-news .news-lead__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (min-width: 900px) {
  .page-news .news-lead__card {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  }

  .page-news .news-lead__media img {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }
}

/* ============ 更新列表（时间轴） ============ */
.page-news .news-log {
  padding: clamp(30px, 5vw, 64px) 0;
  background: linear-gradient(180deg, rgba(228, 233, 238, 0.45) 0%, rgba(246, 243, 236, 0) 46%);
}

.page-news .news-log__list {
  position: relative;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.page-news .news-log__list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: var(--blue-200);
}

.page-news .news-log__item {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.page-news .news-log__item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 24px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--blue-500);
  transition: background 180ms ease, border-color 180ms ease;
}

.page-news .news-log__item--current::before {
  background: var(--orange-600);
  border-color: var(--orange-600);
  box-shadow: 0 0 0 4px rgba(210, 96, 10, 0.14);
}

.page-news .news-log__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 160ms ease;
  pointer-events: none;
}

.page-news .news-log__item:hover::after {
  background: var(--orange-600);
}

.page-news .news-log__details {
  display: block;
}

.page-news .news-log__details > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "tag time"
    "title title";
  gap: 8px 14px;
  align-items: center;
  padding: 20px 28px 20px 38px;
  position: relative;
}

.page-news .news-log__details > summary::-webkit-details-marker {
  display: none;
}

.page-news .news-log__details > summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.page-news .news-log__details[open] > summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.page-news .news-log__tag {
  grid-area: tag;
  justify-self: start;
  padding: 3px 9px;
  border-radius: var(--radius);
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  background: var(--blue-200);
  color: var(--blue-900);
}

.page-news .news-log__title {
  grid-area: title;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--blue-900);
  min-width: 0;
}

.page-news .news-log__time {
  grid-area: time;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  white-space: nowrap;
}

.page-news .news-log__detail {
  padding: 0 28px 24px 38px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--gray-500);
}

.page-news .news-log__detail p {
  margin: 0;
}

.page-news .news-log__detail p + p {
  margin-top: 10px;
}

@media (min-width: 760px) {
  .page-news .news-log__details > summary {
    grid-template-columns: 112px minmax(0, 1fr) 76px;
    grid-template-areas: "tag title time";
    gap: 24px;
    padding: 22px 30px 22px 38px;
  }

  .page-news .news-log__time {
    justify-self: end;
  }

  .page-news .news-log__detail {
    padding-left: 174px;
    padding-right: 30px;
  }
}

/* ============ 预约时段分布 ============ */
.page-news .news-window {
  padding: clamp(30px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}

.page-news .news-window__layout {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.page-news .news-window__charts {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.page-news .news-window__chart {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 20px 20px 16px;
  min-width: 0;
}

.page-news .news-window__chart-title {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blue-700);
}

.page-news .news-window__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.page-news .news-window__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .news-window__track {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 148px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(187, 211, 230, 0.38), rgba(187, 211, 230, 0.08));
  overflow: hidden;
}

.page-news .news-window__fill {
  display: block;
  width: 100%;
  border-radius: 2px 2px 0 0;
  background: var(--blue-500);
}

.page-news .news-window__fill--peak {
  background: var(--orange-600);
}

.page-news .news-window__col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-news .news-window__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.page-news .news-window__figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.page-news .news-window__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-window__notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-news .news-window__notes li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-left: 2px solid var(--orange-400);
  background: rgba(255, 255, 255, 0.72);
}

.page-news .news-window__notes strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.5;
}

.page-news .news-window__notes span {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gray-500);
}

@media (min-width: 720px) {
  .page-news .news-window__charts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .page-news .news-window__layout {
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
}

/* ============ 专题连载导览 ============ */
.page-news .news-series {
  padding: clamp(30px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(228, 233, 238, 0.42) 0%, rgba(246, 243, 236, 0) 48%);
}

.page-news .news-series__grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.page-news .news-series__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.page-news .news-series__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.page-news .news-series__media {
  margin: 0;
  background: var(--gray-100);
}

.page-news .news-series__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}

.page-news .news-series__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 24px;
  flex: 1 1 auto;
}

.page-news .news-series__index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange-600);
}

.page-news .news-series__title {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--blue-900);
}

.page-news .news-series__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray-500);
}

.page-news .news-series__meta {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--blue-500);
}

@media (min-width: 720px) {
  .page-news .news-series__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============ 按系列跟进 ============ */
.page-news .news-subscribe {
  padding: clamp(30px, 5vw, 60px) 0 clamp(38px, 6vw, 76px);
}

.page-news .news-subscribe__panel {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 3.6vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(187, 211, 230, 0.52) 0%, rgba(246, 243, 236, 0.9) 58%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.page-news .news-subscribe__copy .eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--orange-600);
}

.page-news .news-subscribe__title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(21px, 2.9vw, 30px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--blue-900);
}

.page-news .news-subscribe__text {
  margin: 14px 0 0;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-500);
}

.page-news .news-subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-news .news-subscribe__prefs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.page-news .news-subscribe__prefs-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray-500);
}

.page-news .news-subscribe__prefs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-subscribe__pref {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
}

.page-news .news-subscribe__pref.is-on {
  border-color: var(--orange-600);
  background: var(--orange-600);
  color: #fff;
}

.page-news .news-subscribe__hint {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--gray-500);
}

.page-news .news-subscribe__link {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .news-subscribe__link:hover {
  color: var(--orange-600);
}

@media (min-width: 900px) {
  .page-news .news-subscribe__panel {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
  }
}
<<<END>>>
</main>
