.page-news {
  background: var(--ink);
  color: var(--mist);
  overflow-x: clip;
}

.page-news .crumbs {
  padding-top: clamp(16px, 2.4vw, 26px);
}

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

.page-news .news-hero {
  padding-bottom: clamp(36px, 6vw, 72px);
}

.page-news .news-hero__kicker {
  margin: 0;
  color: var(--neon);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.page-news .news-hero__title {
  margin: clamp(14px, 2vw, 22px) 0 0;
  max-width: 15em;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.2;
  letter-spacing: .03em;
  color: var(--mist);
}

.page-news .news-hero__title em {
  font-style: normal;
  color: var(--orange);
}

.page-news .news-hero__lead {
  margin: clamp(16px, 2.2vw, 24px) 0 0;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(243, 245, 251, .82);
}

.page-news .news-metrics {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: clamp(26px, 3.5vw, 40px) 0 0;
  padding: 0;
}

.page-news .news-metric {
  padding: 18px 20px;
  background: var(--ink-2);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.page-news .news-metric__label {
  display: block;
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 12px;
  letter-spacing: .16em;
}

.page-news .news-metric__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 245, 251, .88);
}

.page-news .news-metric__num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--orange);
  margin-right: 4px;
}

.page-news .news-hero__figure {
  position: relative;
  margin: clamp(30px, 4.5vw, 52px) 0 0;
  max-height: 58vh;
  overflow: hidden;
  background: var(--deep);
}

.page-news .news-hero__figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 58vh;
  max-width: 100%;
  object-fit: cover;
  opacity: .9;
}

/* ---------- 章节标题 ---------- */

.page-news .news-head {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.page-news .news-head__no {
  margin: 0 0 10px;
  color: var(--neon);
  font-size: 12px;
  letter-spacing: .18em;
}

.page-news .news-head__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.3;
  letter-spacing: .03em;
  color: var(--mist);
}

.page-news .news-head__note {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
}

/* ---------- 最近更新列表 ---------- */

.page-news .news-recent {
  padding: clamp(44px, 6vw, 80px) 0 clamp(24px, 3.5vw, 40px);
}

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

.page-news .feed__item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  grid-template-areas: "no .page-news meta";
  gap: 6px 18px;
  align-items: start;
  padding: 18px 20px 18px 24px;
  background: var(--ink-2);
  transition: background var(--dur) var(--ease);
}

.page-news .feed__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--line);
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}

.page-news .feed__item:hover,
.page-news .feed__item:focus-within {
  background: var(--ink-3);
}

.page-news .feed__item:hover::before,
.page-news .feed__item:focus-within::before {
  width: 4px;
  background: var(--orange);
}

.page-news .feed__no {
  grid-area: no;
  padding-top: 4px;
  color: var(--neon);
  font-size: 12px;
  letter-spacing: .06em;
}

.page-news .feed__body {
  grid-area: body;
}

.page-news .feed__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: var(--mist);
  transition: color var(--dur) var(--ease);
}

.page-news .feed__item:hover .feed__title {
  color: var(--orange-soft);
}

.page-news .feed__desc {
  margin: 8px 0 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
}

.page-news .feed__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.page-news .feed__time {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--slate);
  white-space: nowrap;
}

/* ---------- 标签色块 ---------- */

.page-news .tag {
  display: inline-block;
  padding: 3px 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.6;
  white-space: nowrap;
  color: var(--deep);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.page-news .tag--release {
  background: var(--orange);
}

.page-news .tag--fit {
  background: var(--neon);
}

.page-news .tag--scene {
  background: var(--orange-soft);
}

.page-news .tag--brand {
  background: var(--slate);
}

.page-news .news-recent__more {
  margin: clamp(20px, 3vw, 30px) 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
}

.page-news .news-recent__more a {
  color: var(--orange-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 180, 115, .45);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-news .news-recent__more a:hover,
.page-news .news-recent__more a:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ---------- 专栏面板 ---------- */

.page-news .news-feature {
  padding: clamp(20px, 3vw, 34px) 0;
}

.page-news .feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3.5vw, 44px);
  padding: clamp(22px, 3vw, 40px);
  background: var(--ink-2);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.page-news .feature-card__no {
  margin: 0 0 12px;
  color: var(--neon);
  font-size: 12px;
  letter-spacing: .18em;
}

.page-news .feature-card__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: .03em;
  color: var(--mist);
}

.page-news .feature-card__lead {
  margin: 16px 0 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(243, 245, 251, .8);
}

.page-news .feature-card__media {
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.page-news .feature-card__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  opacity: .88;
}

/* ---------- 版本序列 ---------- */

.page-news .ver-list {
  display: grid;
  gap: 16px;
  margin: clamp(20px, 3vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.page-news .ver-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-left: 14px;
  border-left: 2px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}

.page-news .ver-item:hover {
  border-left-color: var(--neon);
}

.page-news .ver-no {
  color: var(--neon);
  font-size: 13px;
  letter-spacing: .06em;
}

.page-news .ver-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(243, 245, 251, .82);
}

/* ---------- 适配清单 ---------- */

.page-news .fit-list {
  display: grid;
  gap: 18px;
  margin: clamp(20px, 3vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.page-news .fit-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.page-news .fit-target {
  color: var(--orange-soft);
  font-size: 12px;
  letter-spacing: .14em;
}

.page-news .fit-item p {
  margin: 0;
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(243, 245, 251, .82);
}

/* ---------- 使用场景折叠 ---------- */

.page-news .scene {
  margin-top: 12px;
  background: rgba(43, 74, 150, .16);
  border-left: 2px solid var(--line);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-news .scene:hover,
.page-news .scene[open] {
  border-left-color: var(--orange);
  background: rgba(43, 74, 150, .3);
}

.page-news .scene__summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mist);
}

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

.page-news .scene__summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--orange);
  transition: transform var(--dur) var(--ease);
}

.page-news .scene[open] .scene__summary::after {
  content: "–";
}

.page-news .scene__no {
  color: var(--neon);
  font-size: 12px;
  letter-spacing: .06em;
}

.page-news .scene__q {
  flex: 1;
}

.page-news .scene__body {
  padding: 0 16px 18px 16px;
}

.page-news .scene__body p {
  margin: 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(243, 245, 251, .8);
}

/* ---------- 按钮间距 ---------- */

.page-news .feature-card .btn {
  margin-top: clamp(22px, 3vw, 30px);
}

/* ---------- 收口色带 ---------- */

.page-news .news-follow {
  margin-top: clamp(44px, 6vw, 88px);
  background: linear-gradient(102deg, var(--orange) 0%, var(--orange) 46%, var(--orange-soft) 100%);
  color: var(--deep);
}

.page-news .news-follow__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

.page-news .news-follow__no {
  margin: 0 0 12px;
  color: rgba(7, 12, 28, .6);
  font-size: 12px;
  letter-spacing: .18em;
}

.page-news .news-follow__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.3;
  letter-spacing: .03em;
  color: var(--deep);
}

.page-news .news-follow__body {
  margin: 16px 0 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(7, 12, 28, .82);
}

.page-news .news-follow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-follow__btn {
  background: var(--deep);
  color: var(--mist);
  border: none;
}

.page-news .news-follow__btn:hover,
.page-news .news-follow__btn:focus-visible {
  background: var(--ink-2);
  color: var(--orange-soft);
}

.page-news .news-follow__btn--ghost,
.page-news .news-follow__btn--ghost:visited {
  background: transparent;
  color: var(--deep);
  box-shadow: inset 0 0 0 2px rgba(7, 12, 28, .55);
}

.page-news .news-follow__btn--ghost:hover,
.page-news .news-follow__btn--ghost:focus-visible {
  background: rgba(7, 12, 28, .88);
  color: var(--mist);
  box-shadow: inset 0 0 0 2px rgba(7, 12, 28, .88);
}

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

@media (min-width: 640px) {
  .page-news .news-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.4vw, 24px);
  }

  .page-news .fit-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
  }
}

@media (max-width: 719px) {
  .page-news .feed__item {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "no meta"
      "body body";
    row-gap: 12px;
    padding: 18px 16px 20px 20px;
  }

  .page-news .feed__meta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
}

@media (min-width: 900px) {
  .page-news .feature-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: start;
  }

  .page-news .feature-card--reverse .feature-card__text {
    order: 2;
  }

  .page-news .feature-card--reverse .feature-card__media {
    order: 1;
  }

  .page-news .news-follow__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  }

  .page-news .news-follow__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1100px) {
  .page-news .news-hero__title,
  .page-news .news-hero__lead {
    margin-left: 0;
  }
}
<<<END>>>
