.page-news {
  background:
    radial-gradient(1180px 520px at 88% -140px, rgba(232, 178, 58, .18), transparent 62%),
    var(--cream);
  color: var(--rock);
}

/* ---------- 面包屑 ---------- */
.page-news .news-crumbs {
  padding-top: clamp(14px, 2.4vw, 24px);
}
.page-news .news-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--tea);
}
.page-news .news-crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line-strong);
}
.page-news .news-crumbs a {
  color: var(--tea);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.page-news .news-crumbs a:hover,
.page-news .news-crumbs a:focus-visible {
  color: var(--yin);
  border-bottom-color: var(--yin);
}

/* ---------- 刊头区 ---------- */
.page-news .journal-mast {
  position: relative;
  padding-top: clamp(26px, 4.6vw, 54px);
  padding-bottom: clamp(22px, 3.6vw, 40px);
}
.page-news .journal-mast::after {
  content: "刊";
  position: absolute;
  right: 3%;
  top: 4%;
  z-index: 0;
  font-size: clamp(110px, 24vw, 300px);
  font-weight: 900;
  line-height: 1;
  color: rgba(200, 16, 46, .055);
  pointer-events: none;
  user-select: none;
}
.page-news .journal-mast .wrap--wide {
  position: relative;
  z-index: 1;
}
.page-news .journal-mast .eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--yin);
}
.page-news .journal-mast__title {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: clamp(32px, 7vw, 74px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: .045em;
  color: var(--ink);
}
.page-news .journal-mast__lede {
  max-width: 64ch;
  margin: 0 0 24px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.9;
  color: var(--rock);
}
.page-news .journal-mast__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--tea);
}
.page-news .journal-mast__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-news .journal-mast__meta li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ---------- 横幅图 ---------- */
.page-news .journal-banner {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gold-soft);
  box-shadow: var(--shadow-card);
}
.page-news .journal-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .page-news .journal-banner img {
    aspect-ratio: 3 / 2;
  }
}

/* ---------- 编号章节头（页内统一） ---------- */
.page-news .sec-head {
  margin-bottom: clamp(24px, 3.6vw, 44px);
}
.page-news .sec-head__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: clamp(44px, 8vw, 90px);
  line-height: .92;
  letter-spacing: .02em;
  color: var(--gold);
}
.page-news .sec-head__title {
  margin: 6px 0 10px;
  font-size: clamp(22px, 3.6vw, 36px);
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--ink);
}
.page-news .sec-head__desc {
  margin: 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--tea);
}

/* ---------- 本期重点 ---------- */
.page-news .spotlight {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-news .spot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 24px 26px;
  border-radius: var(--r-l);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.page-news .spot::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yin), var(--gold));
}
.page-news .spot .tag {
  align-self: flex-start;
}
.page-news .spot__num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1;
  color: var(--peacock);
}
.page-news .spot__title {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .02em;
  color: var(--ink);
}
.page-news .spot__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--tea);
}

/* ---------- 目录 ---------- */
.page-news .catalog {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.page-news .catalog__index-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--tea);
}
.page-news .catalog .tabs__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.page-news .catalog__stream {
  min-width: 0;
}
.page-news .catalog .tabs__panel {
  outline: none;
}
.page-news .catalog .tabs__panel:focus-visible {
  outline: 2px dashed var(--peacock);
  outline-offset: 6px;
}
.page-news .catalog .tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--pill);
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--rock);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.page-news .catalog .tabs__tab:hover {
  border-color: var(--yin);
  color: var(--yin);
}
.page-news .catalog .tabs__tab:focus-visible {
  outline: 3px solid var(--peacock);
  outline-offset: 2px;
}
.page-news .catalog .tabs__tab[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.page-news .tabs__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--peacock);
}
.page-news .catalog .tabs__tab[aria-selected="true"] .tabs__num {
  color: var(--gold);
}
.page-news .tabs__n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--tea);
}
.page-news .catalog .tabs__tab[aria-selected="true"] .tabs__n {
  color: rgba(251, 247, 240, .62);
}

/* ---------- 条目 ---------- */
.page-news .panel-title {
  margin: 0 0 6px;
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--ink);
}
.page-news .entry {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.page-news .entry:first-of-type {
  border-top: 1px solid var(--line-strong);
}
.page-news .entry__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.page-news .entry__id {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--pill);
  background: var(--peacock-soft);
  color: var(--peacock);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
}
.page-news .entry__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .022em;
  color: var(--ink);
}
.page-news .entry__lede {
  margin: 0;
  max-width: 68ch;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--rock);
}
.page-news .entry__more {
  margin-top: 12px;
}
.page-news .entry__more > summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px 0 0;
  border-radius: var(--r-s);
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--yin);
}
.page-news .entry__more > summary::-webkit-details-marker {
  display: none;
}
.page-news .entry__more > summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1;
  color: var(--gold);
}
.page-news .entry__more[open] > summary::after {
  content: "–";
}
.page-news .entry__more > summary:focus-visible {
  outline: 3px solid var(--peacock);
  outline-offset: 2px;
}
.page-news .entry__detail {
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: var(--r-m);
  background: var(--peacock-soft);
  font-size: 14px;
  line-height: 1.9;
  color: var(--rock);
}
.page-news .entry__detail p {
  margin: 0 0 10px;
}
.page-news .entry__detail p:last-child {
  margin-bottom: 0;
}

/* ---------- 条目配图 ---------- */
.page-news .entry-figure {
  margin: 24px 0 26px;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--gold-soft);
}
.page-news .entry-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- 专题系列 ---------- */
.page-news .section--sunken .sec-head__num {
  color: var(--yin);
}
.page-news .series {
  display: grid;
  gap: 12px;
}
.page-news .series__item {
  border-radius: var(--r-l);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(26, 21, 18, .1);
  overflow: hidden;
}
.page-news .series__sum {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 16px 46px 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--ink);
}
.page-news .series__sum::-webkit-details-marker {
  display: none;
}
.page-news .series__sum::after {
  content: "▾";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--yin);
  transition: transform .2s ease;
}
.page-news .series__item[open] .series__sum::after {
  transform: translateY(-50%) rotate(180deg);
}
.page-news .series__sum:focus-visible {
  outline: 3px solid var(--peacock);
  outline-offset: -3px;
}
.page-news .series__n {
  flex: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--peacock);
}
.page-news .series__list {
  margin: 0;
  padding: 14px 20px 20px;
  border-top: 1px dashed rgba(26, 21, 18, .18);
  list-style: none;
}
.page-news .series__list li {
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--rock);
}
.page-news .series__list a {
  color: var(--peacock);
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 124, 134, .38);
  transition: color .18s ease, border-color .18s ease;
}
.page-news .series__list a:hover,
.page-news .series__list a:focus-visible {
  color: var(--yin);
  border-bottom-color: var(--yin);
}

/* ---------- 更新节奏与回溯 ---------- */
.page-news .journal-sub {
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.page-news .journal-sub__grid {
  display: grid;
  gap: 28px;
}
.page-news .journal-sub h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--cream);
}
.page-news .journal-sub__text {
  margin: 0;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(251, 247, 240, .74);
}
.page-news .sub-params {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-news .sub-params li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 14px;
  padding: 14px 18px;
  border-radius: var(--r-m);
  background: rgba(251, 247, 240, .06);
  border: 1px solid var(--line-dark);
}
.page-news .sub-params__key {
  font-size: 13.5px;
  letter-spacing: .04em;
  color: rgba(251, 247, 240, .7);
}
.page-news .sub-params__val {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--gold);
}
.page-news .journal-sub__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

/* ---------- 响应式 ---------- */
@media (min-width: 900px) {
  .page-news .spotlight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .page-news .series {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .page-news .journal-sub__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-news .catalog {
    grid-template-columns: 246px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
  }
  .page-news .catalog__index {
    position: sticky;
    top: 128px;
  }
  .page-news .catalog .tabs__list {
    flex-direction: column;
    gap: 4px;
    overflow: visible;
    padding: 0;
  }
  .page-news .catalog .tabs__tab {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 16px;
    border-radius: var(--r-m);
    white-space: normal;
    text-align: left;
  }
  .page-news .catalog .tabs__tab .tabs__n {
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  .page-news .journal-mast::after {
    display: none;
  }
  .page-news .sub-params li {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .series__sum::after,
  .page-news .catalog .tabs__tab {
    transition: none;
  }
}
</｜｜DSML｜｜ parameter>
</invoke>
