.page-products {
  --pp-gutter: clamp(20px, 4vw, 48px);
  --pp-cut: 18px;
  --pp-line: rgba(192, 138, 62, .32);
  background: var(--paper);
}

/* ---------- 面包屑 ---------- */
.page-products .crumbs {
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 4px;
  background: var(--paper);
}
.page-products .crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}
.page-products .crumbs li + li::before {
  content: "／";
  margin-right: 10px;
  color: rgba(110, 122, 114, .55);
}
.page-products .crumbs a {
  color: var(--copper-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 90, 34, .35);
}
.page-products .crumbs a:hover { border-bottom-color: var(--electric); color: var(--electric); }

/* ---------- 首屏 ---------- */
.page-products .svc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(120% 90% at 88% 4%, rgba(227, 184, 114, .18) 0%, rgba(227, 184, 114, 0) 58%),
    linear-gradient(158deg, var(--ink-green) 0%, var(--ink-green-deep) 100%);
  color: var(--paper);
}
.page-products .svc-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -46%;
  width: 62%;
  height: 118%;
  background: linear-gradient(180deg, rgba(47, 214, 180, .16), rgba(47, 214, 180, 0));
  transform: rotate(-14deg);
  pointer-events: none;
}
.page-products .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: start;
}
.page-products .hero-eyebrow {
  margin: 0 0 16px;
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--copper-bright);
}
.page-products .hero-title {
  margin: 0 0 20px;
  font-size: clamp(30px, 6.2vw, 52px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--paper);
}
.page-products .hero-lede {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(246, 242, 233, .84);
}
.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-products .hero-actions .btn { text-decoration: none; }

.page-products .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.page-products .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(192, 138, 62, .42);
  border-bottom: 3px solid var(--copper);
  background: rgba(14, 35, 30, .58);
  clip-path: polygon(0 0, calc(100% - var(--pp-cut)) 0, 100% var(--pp-cut), 100% 100%, 0 100%);
}
.page-products .hero-stat--b { border-bottom-color: var(--clay); }
.page-products .hero-stat--c { border-bottom-color: var(--electric); }
.page-products .hero-stat--d { border-bottom-color: var(--copper-bright); }
.page-products .hero-stat-v {
  font-size: clamp(24px, 4.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  color: var(--copper-bright);
}
.page-products .hero-stat--c .hero-stat-v { color: var(--electric); }
.page-products .hero-stat-l {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(246, 242, 233, .72);
}

/* ---------- 章节公共 ---------- */
.page-products .section-head--deep .section-title { color: var(--paper); }
.page-products .section-head--deep .section-lede { color: rgba(246, 242, 233, .76); }
.page-products .section-head--deep .section-index { color: var(--copper-bright); }

/* ---------- 类目标签带 ---------- */
.page-products .cat-overview .section-head { margin-bottom: 28px; }

.page-products .cat-tablist {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  margin: 0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(27, 31, 28, .12);
}
.page-products .cat-tablist::-webkit-scrollbar { height: 4px; }
.page-products .cat-tablist::-webkit-scrollbar-thumb { background: rgba(192, 138, 62, .5); }

.page-products .cat-tablist .tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 10px 18px 12px;
  border: 1px solid rgba(27, 31, 28, .16);
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: color .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.page-products .cat-tablist .tab:hover { background: rgba(192, 138, 62, .1); }
.page-products .cat-tablist .tab[aria-selected="true"] {
  background: var(--ink-green);
  border-color: var(--ink-green);
  border-bottom-color: var(--electric);
  color: var(--paper);
}
.page-products .cat-tablist .tab:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

.page-products .cat-panels { margin-top: 26px; }
.page-products .cat-panel[hidden] { display: none; }

.page-products .cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.page-products .cat-media {
  margin: 0;
  position: relative;
}
.page-products .cat-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.page-products .cat-media .media-caption {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

.page-products .cat-body {
  padding: 26px 24px 28px;
  background: var(--paper-2);
  border-left: 3px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - var(--pp-cut)) 0, 100% var(--pp-cut), 100% 100%, 0 100%);
}
.page-products .cat-name {
  margin: 0 0 16px;
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--ink-green);
}
.page-products .cat-entries {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-products .cat-entry {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.page-products .cat-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  background: var(--clay);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.page-products .cat-dur {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--copper-deep);
}
.page-products .cat-dur .mono { font-weight: 700; font-size: 15px; }
.page-products .cat-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}

.page-products .cat-side {
  padding: 22px 20px;
  border: 1px dashed rgba(138, 90, 34, .42);
  background: linear-gradient(140deg, rgba(227, 184, 114, .14), rgba(227, 184, 114, 0));
}
.page-products .cat-side-no {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 12px;
}
.page-products .cat-side-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

/* ---------- 条目清单 ---------- */
.page-products .item-section .section-head { margin-bottom: 22px; }
.page-products .item-section .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.page-products .item-section .filter-bar .filter-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--copper-deep);
}
.page-products .item-section .filter-bar .filter-count::after {
  content: " 条在列";
  font-weight: 400;
  color: var(--muted);
}

.page-products .item-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-products .item-card {
  background: var(--paper);
  border: 1px solid rgba(27, 31, 28, .1);
  border-left: 2px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - var(--pp-cut)) 0, 100% var(--pp-cut), 100% 100%, 0 100%);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.page-products .item-card[open] {
  border-left-color: var(--electric);
  box-shadow: var(--shadow-layer);
}
.page-products .item-card[hidden] { display: none; }

.page-products .item-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
}
.page-products .item-top::-webkit-details-marker { display: none; }
.page-products .item-top:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: -2px;
}
.page-products .item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  flex: 1 1 auto;
  min-width: 0;
}
.page-products .item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.page-products .item-card[open] .item-name { color: var(--ink-green); }

.page-products .item-body {
  padding: 2px 20px 20px;
  border-top: 1px solid rgba(27, 31, 28, .08);
}
.page-products .spec-list {
  margin: 0;
  display: grid;
  gap: 10px;
}
.page-products .spec-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: baseline;
}
.page-products .spec-key {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--copper-deep);
}
.page-products .spec-val {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}
.page-products .spec-val.mono {
  font-weight: 700;
  color: var(--copper-deep);
}

/* ---------- 城区与时段 ---------- */
.page-products .area-section .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 26px 0 20px;
}
.page-products .filter-bar--dark .filter-chip {
  border-color: rgba(227, 184, 114, .45);
  color: rgba(246, 242, 233, .86);
  background: rgba(14, 35, 30, .5);
}
.page-products .filter-bar--dark .filter-chip[aria-pressed="true"] {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--ink-green-deep);
}
.page-products .filter-bar--dark .filter-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--copper-bright);
}
.page-products .filter-bar--dark .filter-count::after {
  content: " 个城区在服务范围";
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(246, 242, 233, .6);
}

.page-products .timetable {
  border-top: 1px solid rgba(227, 184, 114, .3);
}
.page-products .tt-head {
  display: none;
}
.page-products .tt-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  grid-template-areas:
    "dot city"
    ".  slot"
    ".  state";
  gap: 4px 14px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(227, 184, 114, .2);
  transition: background-color .18s var(--ease);
}
.page-products .tt-row:hover { background: rgba(227, 184, 114, .07); }
.page-products .tt-row[hidden] { display: none; }
.page-products .tt-dot {
  grid-area: dot;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 3px rgba(47, 214, 180, .18);
}
.page-products .tt-dot--clay {
  background: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 100, 58, .2);
}
.page-products .tt-city {
  grid-area: city;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--paper);
}
.page-products .tt-slot {
  grid-area: slot;
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--copper-bright);
}
.page-products .tt-state {
  grid-area: state;
  display: inline-block;
  width: fit-content;
  padding: 2px 10px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper);
  border: 1px solid rgba(47, 214, 180, .5);
  background: rgba(47, 214, 180, .12);
}
.page-products .area-foot {
  margin: 24px 0 0;
  max-width: 38em;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(246, 242, 233, .78);
}
.page-products .area-foot a,
.page-products .flow-text a,
.page-products .qa-foot a,
.page-products .section-lede a {
  color: var(--copper-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 184, 114, .55);
}
.page-products .area-foot a:hover,
.page-products .flow-text a:hover,
.page-products .qa-foot a:hover { color: var(--electric); border-bottom-color: var(--electric); }

/* ---------- 版本资料下载 ---------- */
.page-products .dl-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid rgba(27, 31, 28, .12);
  border-top: 4px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}
.page-products .dl-copy .section-index { margin-bottom: 12px; }
.page-products .dl-copy .section-title { margin: 0 0 14px; }
.page-products .dl-copy .section-lede {
  margin: 0 0 30px;
  max-width: 32em;
}

.page-products .dl-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}
.page-products .dl-step {
  position: relative;
  padding: 20px 20px 22px;
  background: var(--paper-2);
  border: 1px solid rgba(27, 31, 28, .1);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.page-products .dl-step::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -14px;
  width: 2px;
  height: 14px;
  background: linear-gradient(180deg, var(--copper), rgba(196, 100, 58, .35));
}
.page-products .dl-step:last-child::after { display: none; }
.page-products .dl-step-no {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--copper-deep);
  margin-bottom: 8px;
}
.page-products .dl-step-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-green);
}
.page-products .dl-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.page-products .dl-media {
  margin: 0;
}
.page-products .dl-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(.92);
}
.page-products .dl-media .media-caption {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}

.page-products .dl-formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}
.page-products .fmt-card {
  padding: 20px 20px 22px;
  background: rgba(228, 222, 209, .5);
  border-left: 3px solid var(--copper);
}
.page-products .fmt-card:nth-child(2) { border-left-color: var(--clay); }
.page-products .fmt-card:nth-child(3) { border-left-color: var(--bean); }
.page-products .fmt-tag { margin-bottom: 12px; }
.page-products .fmt-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

/* ---------- 服务流程 ---------- */
.page-products .flow-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.page-products .flow-step {
  position: relative;
  padding: 24px 20px 26px 24px;
  border-left: 2px solid rgba(192, 138, 62, .42);
  background: linear-gradient(90deg, rgba(192, 138, 62, .08), rgba(192, 138, 62, 0));
}
.page-products .flow-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: var(--clay);
  transform: rotate(45deg);
}
.page-products .flow-no {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--copper-deep);
  margin-bottom: 8px;
}
.page-products .flow-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-green);
}
.page-products .flow-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 34em;
}
.page-products .flow-text a {
  color: var(--copper-deep);
  border-bottom-color: rgba(138, 90, 34, .4);
}

/* ---------- 问答 ---------- */
.page-products .qa-list {
  display: grid;
  gap: 10px;
}
.page-products .qa-item {
  background: var(--paper-2);
  border: 1px solid rgba(27, 31, 28, .1);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.page-products .qa-item[open] { border-color: rgba(192, 138, 62, .55); }
.page-products .qa-q {
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.page-products .qa-q::-webkit-details-marker { display: none; }
.page-products .qa-q::after {
  content: "＋";
  float: right;
  margin-left: 16px;
  font-weight: 400;
  color: var(--copper-deep);
}
.page-products .qa-item[open] .qa-q::after { content: "－"; }
.page-products .qa-q:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: -2px;
}
.page-products .qa-a {
  padding: 0 20px 20px;
}
.page-products .qa-a p {
  margin: 0;
  max-width: 38em;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
}
.page-products .qa-foot {
  margin: 26px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 42em;
}
.page-products .qa-foot a {
  color: var(--copper-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 90, 34, .4);
}
.page-products .qa-foot a:hover { color: var(--ink-green); border-bottom-color: var(--electric); }

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-products .hero-grid {
    grid-template-columns: 1.35fr .85fr;
    gap: 44px;
  }
  .page-products .hero-stats { grid-template-columns: 1fr; }
  .page-products .item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .page-products .dl-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .page-products .dl-step::after {
    left: auto;
    right: -16px;
    bottom: auto;
    top: 38px;
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), rgba(196, 100, 58, .35));
  }
  .page-products .dl-formats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-products .cat-grid { grid-template-columns: .95fr 1.15fr; gap: 30px; }
  .page-products .cat-grid--text { grid-template-columns: 1.15fr .85fr; }
}

@media (min-width: 960px) {
  .page-products .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .page-products .hero-stat:nth-child(2) { transform: translateY(18px); }
  .page-products .hero-stat:nth-child(4) { transform: translateY(-14px); }
  .page-products .cat-tablist { gap: 10px; }

  .page-products .tt-head {
    display: grid;
    grid-template-columns: 14px 1.3fr 1.1fr .7fr;
    gap: 14px;
    padding: 10px 4px;
    font-size: 12px;
    letter-spacing: .14em;
    color: rgba(227, 184, 114, .75);
    border-bottom: 1px solid rgba(227, 184, 114, .3);
  }
  .page-products .tt-head span:first-child { grid-column: 2; }
  .page-products .tt-row {
    grid-template-columns: 14px 1.3fr 1.1fr .7fr;
    grid-template-areas: "dot city slot state";
    gap: 14px;
    padding: 18px 4px;
  }
  .page-products .dl-panel {
    grid-template-columns: 1.35fr .85fr;
    gap: 44px;
  }
  .page-products .dl-media img { aspect-ratio: 4 / 3; }

  .page-products .flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 2px;
  }
}

@media (min-width: 1180px) {
  .page-products .item-grid { gap: 16px; }
  .page-products .hero-grid { gap: 60px; }
}

@media (max-width: 480px) {
  .page-products .hero-stat { padding: 15px 14px 17px; }
  .page-products .cat-body { padding: 20px 18px 22px; }
  .page-products .spec-row { grid-template-columns: 1fr; gap: 2px; }
  .page-products .dl-panel { padding: 22px 18px 26px; }
}
<<<END>>>
