.page-news {
  --notes-rail: 88px;
  --notes-row-gap: 2px;
  --tag-structure: #D4A017;
  --tag-param: #3C8D8D;
  --tag-column: #5B7BB8;
  --tag-note: #5A6273;
  --tag-home: #D4A017;
  --tag-commercial: #3C8D8D;
  --tag-universal: #5B7BB8;
  --feature-line: #A87A0C;
  display: block;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.page-news .notes-crumbs {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ========== Hero ========== */
.page-news .notes-hero {
  border-radius: 0 0 var(--radius-panel) var(--radius-panel);
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px) var(--pad-inline) clamp(32px, 5vw, 64px);
}

.page-news .notes-hero__inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: end;
}

.page-news .notes-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.page-news .notes-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--paper-50);
  margin: 0 0 20px;
}

.page-news .notes-hero__lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: #D8DEEA;
  max-width: 46ch;
  margin: 0 0 28px;
}

.page-news .notes-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .notes-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border: 1px solid rgba(246, 242, 231, 0.22);
  border-radius: var(--pill);
  background: rgba(15, 26, 46, 0.42);
}

.page-news .notes-hero__stat-v {
  font-size: 20px;
  color: var(--gold-500);
  letter-spacing: 0.04em;
}

.page-news .notes-hero__stat-k {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #9AA3B5;
}

.page-news .notes-hero__fig {
  margin: 0;
  border-radius: var(--radius-card);
}

/* ========== Block base ========== */
.page-news .notes-stack {
  margin-top: 6px;
}

.page-news .notes-block {
  padding: clamp(28px, 4.5vw, 56px) var(--pad-inline);
  scroll-margin-top: 96px;
}

.page-news .notes-intro {
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 28px;
  color: var(--ink-700);
}

/* ========== Diagram ========== */
.page-news .notes-diagram {
  margin: 0 0 28px;
  border-radius: var(--radius-card);
}

/* ========== Filters ========== */
.page-news .notes-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--paper-200);
  border-radius: var(--radius-card);
  margin-bottom: 22px;
}

.page-news .notes-filters__group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-news .notes-filters__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray-600);
  margin-right: 4px;
}

.page-news .notes-filters__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-news .notes-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--pill);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-900);
  background: transparent;
  border: 1px solid var(--chip-color, var(--gray-600));
  cursor: pointer;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
  user-select: none;
}

.page-news .notes-filters__chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chip-color, var(--gray-600));
  flex: none;
}

.page-news .notes-filters__input:focus-visible + .notes-filters__chip {
  outline: 2px solid var(--gold-700);
  outline-offset: 2px;
}

.page-news .notes-filters__input:checked + .notes-filters__chip {
  background: var(--chip-color, var(--gold-500));
  color: var(--paper-50);
  border-color: var(--chip-color, var(--gold-500));
}

.page-news .notes-filters__input:checked + .notes-filters__chip::before {
  background: var(--paper-50);
}

.page-news .notes-filters__chip--structure { --chip-color: var(--tag-structure); --chip-color-o: #A87A0C; }
.page-news .notes-filters__chip--param { --chip-color: var(--tag-param); }
.page-news .notes-filters__chip--column { --chip-color: var(--tag-column); }
.page-news .notes-filters__chip--note { --chip-color: var(--tag-note); }
.page-news .notes-filters__chip--home { --chip-color: var(--tag-home); }
.page-news .notes-filters__chip--commercial { --chip-color: var(--tag-commercial); }
.page-news .notes-filters__chip--universal { --chip-color: var(--tag-universal); }

.page-news .notes-filters__input:checked + .notes-filters__chip--structure { color: var(--ink-950); }

.page-news .notes-filters__tip {
  flex-basis: 100%;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

/* ========== List + entries ========== */
.page-news .notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--paper-200);
}

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

.page-news .notes-entry__box {
  display: block;
}

.page-news .notes-entry__summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: var(--notes-rail) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 8px 14px 2px;
  transition: background-color 160ms var(--ease);
}

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

.page-news .notes-entry__summary:hover {
  background: rgba(212, 160, 23, 0.07);
}

.page-news .notes-entry__summary:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: -2px;
}

.page-news .notes-entry__round {
  font-size: 14px;
  color: var(--gold-700);
  letter-spacing: 0.08em;
  width: var(--notes-rail);
  flex: none;
  grid-column: 1;
}

.page-news .notes-entry__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.4;
  color: var(--ink-900);
  grid-column: 2;
  letter-spacing: -0.005em;
}

.page-news .notes-entry__when {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-600);
  grid-column: 3;
  grid-row: 1;
  white-space: nowrap;
}

.page-news .notes-entry__tags {
  grid-column: 2 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.page-news .notes-entry__by {
  grid-column: 3;
  grid-row: 3;
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 0.08em;
  justify-self: end;
}

.page-news .notes-entry__body {
  padding: 6px 8px 18px calc(var(--notes-rail) + 14px);
  border-left: 2px solid var(--gold-500);
  margin-left: 2px;
  margin-bottom: 14px;
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.85;
}

.page-news .notes-entry__body p {
  margin: 0 0 10px;
  max-width: 62ch;
}

.page-news .notes-entry__body p:last-child { margin-bottom: 0; }

/* ========== Tags ========== */
.page-news .note-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: var(--pill);
  border: 1px solid var(--tag-color, var(--gray-600));
  color: var(--tag-color, var(--gray-600));
  background: transparent;
  white-space: nowrap;
}

.page-news .note-tag--structure { --tag-color: #A87A0C; background: rgba(212, 160, 23, 0.12); }
.page-news .note-tag--param { --tag-color: var(--tag-param); background: rgba(60, 141, 141, 0.12); }
.page-news .note-tag--column { --tag-color: var(--tag-column); background: rgba(91, 123, 184, 0.12); }
.page-news .note-tag--note { --tag-color: var(--tag-note); background: rgba(90, 98, 115, 0.1); }
.page-news .note-tag--home { --tag-color: #A87A0C; }
.page-news .note-tag--commercial { --tag-color: var(--tag-commercial); }
.page-news .note-tag--universal { --tag-color: var(--tag-universal); }

/* ========== 过滤逻辑 ========== */
.page-news .notes-entry { display: block; }

.page-news:has(.notes-filters__input:checked) .notes-entry { display: none; }

.page-news:has(#f-type-structure:checked) .notes-entry[data-tags~="structure"],
.page-news:has(#f-type-param:checked) .notes-entry[data-tags~="param"],
.page-news:has(#f-type-column:checked) .notes-entry[data-tags~="column"],
.page-news:has(#f-type-note:checked) .notes-entry[data-tags~="note"],
.page-news:has(#f-series-home:checked) .notes-entry[data-tags~="home"],
.page-news:has(#f-series-commercial:checked) .notes-entry[data-tags~="commercial"],
.page-news:has(#f-series-universal:checked) .notes-entry[data-tags~="universal"] {
  display: block;
}

/* ========== Archive link + archive ========== */
.page-news .notes-archive-link {
  margin: 26px 0 8px;
}

.page-news .notes-archive {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--paper-200);
  scroll-margin-top: 96px;
}

.page-news .notes-archive__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.page-news .notes-archive__note {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-700);
  max-width: 60ch;
}

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

.page-news .notes-archive__list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-900);
}

.page-news .notes-archive__list .t-data {
  color: var(--gold-700);
  min-width: 34px;
  flex: none;
}

.page-news .notes-meta {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray-600);
}

/* ========== 专题 track ========== */
.page-news .feature-layout {
  display: grid;
  gap: clamp(22px, 3.5vw, 40px);
  grid-template-columns: 1fr;
  align-items: start;
}

.page-news .feature-track {
  list-style: none;
  margin: 0;
  padding: 6px 0 6px 26px;
  position: relative;
  display: grid;
  gap: 18px;
}

.page-news .feature-track::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--feature-line), rgba(168, 122, 12, 0.12));
  border-radius: 2px;
}

.page-news .feature-node {
  position: relative;
}

.page-news .feature-node__dot {
  position: absolute;
  left: -26px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper-50);
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 0 4px var(--paper-50);
}

.page-news .feature-node--last .feature-node__dot {
  background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--paper-50), 0 0 0 8px rgba(212, 160, 23, 0.18);
}

.page-news .feature-node__card {
  padding: 14px 18px;
  border: 1px solid var(--paper-200);
  border-radius: var(--radius-card);
  background: #FBF8F0;
}

.page-news .feature-node__round {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-700);
}

.page-news .feature-node__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink-900);
  margin: 6px 0 8px;
  line-height: 1.35;
}

.page-news .feature-node__card p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-700);
  max-width: 52ch;
}

.page-news .feature-node__by {
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 0.08em;
}

.page-news .feature-fig {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* ========== 口径说明 ========== */
.page-news .scope-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  counter-reset: scope;
}

.page-news .scope-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 18px 22px;
  border-left: 3px solid var(--ink-400);
  background: #FBF8F0;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.page-news .scope-list__k {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold-700);
}

.page-news .scope-list p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-900);
  max-width: 60ch;
}

/* ========== Footer figure ========== */
.page-news .notes-footer-figure {
  margin: 6px var(--pad-inline) 0;
  border-radius: var(--radius-panel);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 18px;
}

.page-news .notes-footer-figure .fig-frame {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.page-news .notes-footer-figure__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #D8DEEA;
  max-width: 62ch;
}

.page-news .notes-footer-figure__note a {
  color: var(--gold-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .notes-footer-figure__note a:hover {
  color: var(--paper-50);
}

/* ========== Active 当前索引 ========== */
.page-news .notes-hero {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-950) 68%, var(--ink-700) 130%);
  position: relative;
}

.page-news .notes-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gold-500);
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .page-news .notes-entry__summary {
    grid-template-columns: var(--notes-rail) 1fr auto auto;
    gap: 16px;
  }
  .page-news .notes-entry__tags {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-top: 0;
  }
  .page-news .notes-entry__when {
    grid-column: 4;
    grid-row: 1;
  }
  .page-news .notes-entry__by {
    grid-column: 4;
    grid-row: 2;
    justify-self: end;
  }
  .page-news .feature-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-news .notes-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
  }
  .page-news .notes-hero__fig {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
    aspect-ratio: 16 / 10;
    margin-top: 12px;
  }
  .page-news .notes-block {
    padding-left: clamp(32px, 5vw, 72px);
    padding-right: clamp(32px, 5vw, 72px);
  }
}
<<<END>>>

---

等等，我在输出里发现了一个问题。

在底部的 `<figure>` 说明段里，我写了一段中文：
> 如发现条目与手中型号的铭牌不一致，可到< a href="/contact-us/">联系我们</a> 页说明具体型号与读数。

这里 `< a` 中间多了一个空格，会导致 HTML 解析失败。需要把它改成 `<a href="/contact-us/">联系我们</a>`。

另外，`< a` 这个错误会直接导致页面渲染坏掉，而且这段文字也在 `<p class="notes-footer-figure__note">` 里，所以用户会看到一个奇怪的尖括号。建议修正。

修改后应为：

```html
<p class="notes-footer-figure__note">
  记录停在这里，核对还在继续。下一轮开始前，本页的条目不会再被改动；
  如发现条目与手中型号的铭牌不一致，可到<a href="/contact-us/">联系我们</a>页说明具体型号与读数。
</p>
```

这样就完整了。同时确认 `href="/contact-us/"` 是站内合法路径，符合规则。

另外，我注意到该段文本里“可到联系我们页说明”已经包含了自然链接，且不是关键词堆砌，符合要求。

这是一处需要修正的硬伤。
