.page-news {
  --news-line: rgba(201, 162, 39, .22);
  --news-line-soft: rgba(201, 162, 39, .12);
  --news-block-y: clamp(56px, 8vw, 96px);
  --news-jade-line: rgba(31, 111, 107, .3);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-dark-strong);
  padding: clamp(26px, 4.5vw, 46px) 0 clamp(42px, 6.5vw, 78px);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(201, 162, 39, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 162, 39, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 88%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 16%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transform: rotate(-14deg);
  opacity: .55;
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}

.page-news .news-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--on-dark);
  margin-bottom: clamp(26px, 4.5vw, 50px);
}

.page-news .news-crumb a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease;
}

.page-news .news-crumb a:hover,
.page-news .news-crumb a:focus-visible {
  border-bottom-color: var(--gold-light);
}

.page-news .news-crumb__sep {
  color: rgba(245, 241, 231, .32);
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 48px);
}

.page-news .news-hero__eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-news .news-hero__title {
  margin: clamp(12px, 1.6vw, 18px) 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--paper);
  max-width: 17em;
}

.page-news .news-hero__lead {
  margin: clamp(18px, 2.6vw, 28px) 0 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.9;
  color: var(--on-dark);
}

.page-news .news-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0 0;
  border-top: 1px solid var(--news-line);
}

.page-news .news-hero__asideText {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .16em;
  color: var(--on-dark);
}

.page-news .news-hero__asideNum {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.02em;
}

.page-news .news-figures {
  list-style: none;
  margin: clamp(34px, 5vw, 58px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(14px, 2.5vw, 30px);
}

.page-news .news-figure {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0 14px;
  border-top: 1px solid var(--news-line);
  min-width: 0;
}

.page-news .news-figure__num {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -.02em;
}

.page-news .news-figure__label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--on-dark);
}

/* ---------- 本期看点 ---------- */

.page-news .news-picks {
  background: var(--paper-2);
  padding: var(--news-block-y) 0;
}

.page-news .news-sectionHead,
.page-news .news-block__head {
  display: grid;
  gap: 10px;
  max-width: 68ch;
  margin-bottom: clamp(26px, 3.6vw, 44px);
}

.page-news .news-sectionHead__no,
.page-news .news-block__no {
  margin: 0;
  font-size: 12px;
  letter-spacing: .34em;
  color: var(--gold-dark);
}

.page-news .news-sectionHead__title,
.page-news .news-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.1vw, 2.1rem);
  line-height: 1.28;
  color: var(--ink);
}

.page-news .news-sectionHead__intro,
.page-news .news-block__intro {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--stone);
}

.page-news .news-picks__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2.2vw, 24px);
}

.page-news .news-pick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--paper);
  border-top: 2px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  min-width: 0;
}

.page-news .news-pick--lead {
  background: var(--ink-2);
  border-top-color: var(--gold-light);
  color: var(--on-dark-strong);
}

.page-news .news-pick__tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.page-news .news-pick__time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--jade);
}

.page-news .news-pick--lead .news-pick__time {
  color: var(--jade-light);
}

.page-news .news-pick__num {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.03em;
}

.page-news .news-pick__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.42;
  color: inherit;
}

.page-news .news-pick__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--stone);
}

.page-news .news-pick--lead .news-pick__text {
  color: var(--on-dark);
}

.page-news .news-pick__link {
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 2px;
  font-size: 14px;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--news-line);
  transition: border-color .18s ease, color .18s ease;
}

.page-news .news-pick__link:hover,
.page-news .news-pick__link:focus-visible {
  border-bottom-color: currentColor;
  color: var(--ink);
}

.page-news .news-pick--lead .news-pick__link {
  color: var(--gold-light);
  border-bottom-color: rgba(231, 201, 105, .35);
}

.page-news .news-pick--lead .news-pick__link:hover,
.page-news .news-pick--lead .news-pick__link:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.page-news .news-pick__frame {
  overflow: hidden;
  margin: -4px 0 4px;
}

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

/* ---------- 目录主体 ---------- */

.page-news .news-directory {
  padding: var(--news-block-y) 0 0;
  background: var(--paper);
}

.page-news .news-directory__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.page-news .news-axis {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--news-line);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-news .news-axis::-webkit-scrollbar {
  display: none;
}

.page-news .news-axis__item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--stone);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}

.page-news .news-axis__item:hover,
.page-news .news-axis__item:focus-visible {
  color: var(--ink);
}

.page-news .news-axis__num {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--gold-dark);
}

.page-news .news-stream {
  display: grid;
  gap: clamp(52px, 7vw, 88px);
  min-width: 0;
}

.page-news .news-block {
  min-width: 0;
}

/* ---------- 条目列表 ---------- */

.page-news .news-entries {
  border-top: 1px solid var(--news-line);
}

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

.page-news .news-entry--major {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.page-news .news-entry__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 16px;
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
  padding: clamp(18px, 2.4vw, 26px) 0;
  cursor: pointer;
  list-style: none;
}

.page-news .news-entry__head::-webkit-details-marker {
  display: none;
}

.page-news .news-entry__num {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  color: var(--gold-dark);
  letter-spacing: -.02em;
}

.page-news .news-entry--major .news-entry__num {
  font-size: clamp(2.3rem, 5.4vw, 3.4rem);
}

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

.page-news .news-entry__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .news-entry__time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--jade);
}

.page-news .news-entry__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.5;
  color: var(--ink);
}

.page-news .news-entry--major .news-entry__title {
  font-size: clamp(1.14rem, 1.9vw, 1.42rem);
  line-height: 1.42;
}

.page-news .news-entry__sign {
  position: relative;
  justify-self: end;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.page-news .news-entry__sign::before,
.page-news .news-entry__sign::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  transition: transform .2s ease, opacity .2s ease;
}

.page-news .news-entry__sign::before {
  top: 50%;
  left: 0;
  width: 12px;
  height: 1.5px;
  transform: translateY(-50%);
}

.page-news .news-entry__sign::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 12px;
  transform: translateX(-50%);
}

.page-news .news-entry details[open] .news-entry__sign::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.page-news .news-entry__body {
  padding: 0 0 clamp(18px, 2.4vw, 26px);
  max-width: 64ch;
}

.page-news .news-entry__body p {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--stone);
}

.page-news .news-entry__more {
  margin: 0 !important;
}

.page-news .news-entry__more a,
.page-news .news-revision__more a,
.page-news .news-notes__more a {
  display: inline-block;
  padding-bottom: 2px;
  font-size: 14px;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--news-line);
  transition: border-color .18s ease, color .18s ease;
}

.page-news .news-entry__more a:hover,
.page-news .news-entry__more a:focus-visible,
.page-news .news-revision__more a:hover,
.page-news .news-revision__more a:focus-visible,
.page-news .news-notes__more a:hover,
.page-news .news-notes__more a:focus-visible {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.page-news .news-entry__figure {
  margin: 0 0 clamp(20px, 3vw, 30px);
  overflow: hidden;
  background: var(--ink-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

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

/* ---------- 专题连载 ---------- */

.page-news .news-series__figure {
  margin: 0 0 clamp(26px, 3.6vw, 42px);
}

.page-news .news-series__frame {
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  background: var(--ink-2);
}

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

.page-news .news-series__caption {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--stone);
}

.page-news .news-series__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 44px);
}

.page-news .news-series__col {
  min-width: 0;
  border-top: 2px solid var(--jade);
  padding-top: 18px;
}

.page-news .news-series__head {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.4;
  color: var(--ink);
}

.page-news .news-series__count {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gold-dark);
}

.page-news .news-series__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.page-news .news-series__list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--news-line-soft);
}

.page-news .news-series__idx {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .06em;
  color: var(--gold-dark);
}

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

.page-news .news-series__item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}

.page-news .news-series__desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--stone);
}

/* ---------- 账户中心笔记 ---------- */

.page-news .news-block--tint {
  background: var(--paper-2);
  padding: clamp(24px, 3.4vw, 40px) clamp(18px, 2.6vw, 32px);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.page-news .news-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--news-line);
}

.page-news .news-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 26px) clamp(14px, 1.8vw, 20px);
  background: var(--paper);
  min-width: 0;
}

.page-news .news-note__num {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.03em;
}

.page-news .news-note__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--ink);
}

.page-news .news-note__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--stone);
}

.page-news .news-notes__more {
  margin: clamp(18px, 2.4vw, 26px) 0 0;
}

/* ---------- 改版记录 ---------- */

.page-news .news-revision {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.page-news .news-revision__figure {
  margin: 0;
}

.page-news .news-revision__frame {
  overflow: hidden;
  background: var(--ink-2);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

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

.page-news .news-revision__caption {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--stone);
}

.page-news .news-revision__body {
  min-width: 0;
}

.page-news .news-revision__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.page-news .news-revision__time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--jade);
}

.page-news .news-revision__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.9vw, 1.42rem);
  line-height: 1.42;
  color: var(--ink);
}

.page-news .news-revision__body p {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--stone);
}

.page-news .news-revision__more {
  margin: 0 !important;
}

/* ---------- 更新节奏 ---------- */

.page-news .news-rhythm {
  position: relative;
  overflow: hidden;
  margin-top: var(--news-block-y);
  padding: var(--news-block-y) 0;
  background: var(--ink);
  color: var(--on-dark-strong);
}

.page-news .news-rhythm::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

.page-news .news-rhythm__head {
  display: grid;
  gap: 10px;
  max-width: 66ch;
}

.page-news .news-rhythm__no {
  margin: 0;
  font-size: 12px;
  letter-spacing: .34em;
  color: var(--gold);
}

.page-news .news-rhythm__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.28;
  color: var(--paper);
}

.page-news .news-rhythm__lead {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--on-dark);
}

.page-news .news-rhythm__tags {
  list-style: none;
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(14px, 2.4vw, 28px);
}

.page-news .news-rhythm__tag {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--news-line);
  min-width: 0;
}

.page-news .news-rhythm__tagNo {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--gold);
}

.page-news .news-rhythm__tagName {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--paper);
}

.page-news .news-rhythm__tagDesc {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--on-dark);
}

/* ---------- 共享标签的页面内微调 ---------- */

.page-news .tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, .1);
  border: 1px solid var(--news-line);
  white-space: nowrap;
}

.page-news .news-pick--lead .tag {
  color: var(--gold-light);
  background: rgba(201, 162, 39, .14);
  border-color: rgba(231, 201, 105, .3);
}

/* ---------- 响应式 ---------- */

@media (min-width: 620px) {
  .page-news .news-hero__aside {
    border-top: 0;
    border-left: 1px solid var(--news-line);
    padding: 0 0 0 22px;
  }
}

@media (min-width: 760px) {
  .page-news .news-entry--major {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
  }

  .page-news .news-entry--major .news-entry__figure {
    margin: 0;
  }

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

  .page-news .news-revision {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 860px) {
  .page-news .news-picks__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: stretch;
  }

  .page-news .news-rhythm__tags {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: end;
  }

  .page-news .news-figures {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-news .news-directory__inner {
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: start;
  }

  .page-news .news-axis {
    position: sticky;
    top: 104px;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding-bottom: 0;
    border-bottom: 0;
    border-left: 1px solid var(--news-line);
    align-self: start;
    height: max-content;
  }

  .page-news .news-axis__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0 20px 18px;
    margin-left: -1px;
    border-left: 2px solid transparent;
    white-space: normal;
  }

  .page-news .news-axis__item:hover,
  .page-news .news-axis__item:focus-visible {
    border-left-color: var(--gold);
  }

  .page-news .news-axis__name {
    writing-mode: vertical-rl;
    letter-spacing: .3em;
    font-size: 13.5px;
    color: inherit;
  }
}

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

@media (max-width: 619px) {
  .page-news .news-hero::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-entry__sign::before,
  .page-news .news-entry__sign::after,
  .page-news .news-pick__link,
  .page-news .news-crumb a {
    transition: none;
  }
}
<<<END>>>
