/* ================= 数据栏目总览 /catalog/ ================= */

.page-products {
  --cat-rail-w: 210px;
  --cat-gap: clamp(28px, 4vw, 56px);
  --cat-scale: clamp(20px, 2.6vw, 34px);
}

/* ---------- 首屏 ---------- */
.page-products .cat-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 3.6vw, 40px) 0 clamp(34px, 6vw, 78px);
  border-bottom: 1px solid var(--line);
}

.page-products .cat-hero::before {
  content: "";
  position: absolute;
  top: -34%;
  right: -16%;
  width: min(760px, 92vw);
  height: min(760px, 92vw);
  z-index: 0;
  background:
    radial-gradient(circle at 34% 32%, rgba(0, 230, 184, .16), transparent 58%),
    conic-gradient(from 208deg at 46% 50%, rgba(0, 230, 184, .10), rgba(255, 75, 43, .07) 36%, transparent 64%);
  clip-path: polygon(24% 0, 100% 0, 100% 78%, 0 100%);
  pointer-events: none;
}

.page-products .cat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .45;
  -webkit-mask-image: radial-gradient(circle at 74% 26%, #000 6%, transparent 68%);
  mask-image: radial-gradient(circle at 74% 26%, #000 6%, transparent 68%);
  pointer-events: none;
}

.page-products .cat-hero > .wrap {
  position: relative;
  z-index: 1;
}

.page-products .cat-hero .crumbs {
  margin: 0 0 clamp(20px, 3vw, 34px);
}

.page-products .cat-hero .eyebrow {
  margin: 0;
}

.page-products .cat-hero h1 {
  margin: 12px 0 0;
  max-width: 19ch;
  font-size: clamp(29px, 6.2vw, 66px);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 800;
}

.page-products .cat-hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.page-products .cat-hero .lead {
  margin: clamp(16px, 2.4vw, 26px) 0 0;
  max-width: 62ch;
}

.page-products .cat-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding: clamp(20px, 2.6vw, 28px) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

@media (min-width: 760px) {
  .page-products .cat-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-products .cat-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-products .cat-stat__v {
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.02em;
}

.page-products .cat-stat__k {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- 外壳与侧栏 ---------- */
.page-products .catalog-shell {
  padding: clamp(26px, 4.4vw, 52px) 0 clamp(40px, 7vw, 96px);
}

@media (min-width: 1000px) {
  .page-products .catalog-shell {
    display: grid;
    grid-template-columns: var(--cat-rail-w) minmax(0, 1fr);
    gap: var(--cat-gap);
    align-items: start;
  }
}

.page-products .cat-rail {
  margin: 0 0 clamp(22px, 4vw, 34px);
  min-width: 0;
}

@media (min-width: 1000px) {
  .page-products .cat-rail {
    position: sticky;
    top: 96px;
    margin-bottom: 0;
  }
}

.page-products .cat-rail__title {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-products .cat-rail__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0 0 10px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-products .cat-rail__list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1000px) {
  .page-products .cat-rail__list {
    display: block;
    overflow: visible;
    padding-bottom: 0;
  }
}

.page-products .cat-rail__link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  transition: color .22s var(--ease), border-color .22s var(--ease), background-color .22s var(--ease);
}

@media (min-width: 1000px) {
  .page-products .cat-rail__link {
    white-space: normal;
    margin-bottom: 6px;
    background: transparent;
  }
}

.page-products .cat-rail__link .num {
  color: var(--silver);
  font-size: 11.5px;
  letter-spacing: .06em;
}

.page-products .cat-rail__link:hover {
  color: var(--white);
  border-color: var(--line-soft);
}

.page-products .cat-rail__link.is-current {
  color: var(--cyan);
  border-color: var(--cyan);
  background: var(--cyan-dim);
}

.page-products .cat-rail__link.is-current .num {
  color: var(--cyan);
}

/* ---------- 内容分段 ---------- */
.page-products .cat-body {
  min-width: 0;
}

.page-products .cat-sec {
  padding: clamp(30px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.page-products .cat-sec:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-products .cat-sec:last-child {
  padding-bottom: 0;
}

.page-products .cat-sec .section__head {
  margin-bottom: clamp(16px, 2.4vw, 26px);
}

.page-products .cat-sec .section__title {
  margin: 8px 0 0;
  max-width: 26ch;
  font-size: clamp(21px, 3.4vw, 37px);
  line-height: 1.18;
  letter-spacing: -.014em;
  font-weight: 800;
}

.page-products .cat-sec .lead {
  max-width: 68ch;
  margin: 0 0 clamp(18px, 2.6vw, 28px);
}

.page-products .cat-sec .note {
  margin: clamp(16px, 2.4vw, 24px) 0 0;
}

/* ---------- 栏目索引卡 ---------- */
.page-products .cat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0 0 clamp(22px, 3.4vw, 34px);
  border: 1px solid var(--line);
  background: var(--line);
}

@media (min-width: 720px) {
  .page-products .cat-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-products .cat-card {
  position: relative;
  padding: clamp(18px, 2.6vw, 26px);
  background: var(--panel);
  min-width: 0;
  transition: background-color .22s var(--ease);
}

.page-products .cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.page-products .cat-card:hover {
  background: var(--panel-2);
}

.page-products .cat-card__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.page-products .cat-card__no {
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.02em;
}

.page-products .cat-card__name {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--white);
}

.page-products .cat-card__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.page-products .cat-card__list {
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.page-products .cat-card__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--white);
}

.page-products .cat-card__list .num {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .05em;
}

.page-products .cat-card__meta {
  margin: 16px 0 0;
}

.page-products .cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding-bottom: 2px;
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .22s var(--ease);
}

.page-products .cat-card__link::after {
  content: "→";
  font-family: var(--font-mono);
}

.page-products .cat-card__link:hover {
  border-bottom-color: var(--cyan);
}

/* ---------- 通用图文错位 ---------- */
.page-products .cat-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

@media (min-width: 880px) {
  .page-products .cat-split--media-right {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  }

  .page-products .cat-split--media-left {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }
}

.page-products .cat-split__text {
  min-width: 0;
}

.page-products .cat-split__text p {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--silver);
}

.page-products .cat-split__text p:last-child {
  margin-bottom: 0;
}

.page-products .cat-band {
  margin: clamp(22px, 3.4vw, 34px) 0 0;
}

/* ---------- 签表 ---------- */
.page-products .bkt-canvas {
  margin: clamp(22px, 3.4vw, 34px) 0 0;
}

.page-products .bkt-canvas svg {
  display: block;
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, var(--panel), var(--ink-2) 70%);
}

.page-products .bkt-list {
  margin: clamp(22px, 3.4vw, 34px) 0 0;
  border-top: 1px solid var(--line);
}

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

.page-products .bkt summary {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 4px;
  cursor: pointer;
  list-style: none;
  transition: background-color .22s var(--ease);
}

.page-products .bkt summary::-webkit-details-marker {
  display: none;
}

.page-products .bkt summary:hover {
  background: var(--cyan-dim);
}

.page-products .bkt__round {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.page-products .bkt__meta {
  font-size: 12.5px;
  color: var(--muted);
}

.page-products .bkt summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 17px;
  line-height: 1;
  color: var(--cyan);
  transition: transform .24s var(--ease);
}

.page-products .bkt[open] summary::after {
  transform: rotate(45deg);
}

.page-products .bkt[open] summary {
  color: var(--cyan);
}

.page-products .bkt__body {
  margin: 0;
  padding: 0 4px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

/* ---------- 跑动：查看方式 ---------- */
.page-products .cat-ways {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.page-products .cat-ways li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 560px) {
  .page-products .cat-ways li {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
  }
}

.page-products .cat-ways__k {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--cyan);
}

.page-products .cat-ways__v {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

/* ---------- 跑动：位置区间带 ---------- */
.page-products .pos-band {
  margin: clamp(22px, 3.4vw, 34px) 0 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.page-products .pos-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.page-products .pos-row:last-child {
  border-bottom: 0;
}

@media (min-width: 760px) {
  .page-products .pos-row {
    grid-template-columns: 76px minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.page-products .pos-row__name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--white);
}

.page-products .pos-row__bar {
  position: relative;
  display: block;
  height: 8px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.page-products .pos-row__bar i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--a, 12%);
  right: var(--b, 12%);
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
}

.page-products .pos-row--gk .pos-row__bar i { --a: 6%; --b: 64%; }
.page-products .pos-row--df .pos-row__bar i { --a: 16%; --b: 24%; }
.page-products .pos-row--mf .pos-row__bar i { --a: 24%; --b: 10%; }
.page-products .pos-row--fw .pos-row__bar i { --a: 32%; --b: 18%; }

.page-products .pos-row__note {
  grid-column: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 760px) {
  .page-products .pos-row__note {
    grid-column: 3;
  }
}

/* ---------- 点球：图层说明 ---------- */
.page-products .layer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.page-products .layer {
  padding: 15px 16px;
  background: var(--panel);
}

.page-products .layer p {
  margin: 9px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--silver);
}

.page-products .pitch-canvas {
  margin: clamp(22px, 3.4vw, 34px) 0 0;
}

.page-products .pitch-canvas svg {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel), var(--ink-2));
}

/* ---------- 薪资表 ---------- */
.page-products .table-scroll {
  margin: 0 0 clamp(22px, 3.4vw, 34px);
  overflow-x: auto;
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

.page-products .cat-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.page-products .cat-table__caption {
  padding: 13px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}

.page-products .cat-table th,
.page-products .cat-table td {
  padding: 13px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.page-products .cat-table tbody tr:last-child th,
.page-products .cat-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .cat-table tbody tr:nth-child(even) {
  background: rgba(10, 32, 24, .55);
}

.page-products .cat-table tbody tr:hover {
  background: var(--cyan-dim);
}

.page-products .cat-table tbody th {
  color: var(--white);
  font-weight: 600;
}

.page-products .cat-table td {
  color: var(--silver);
}

/* ---------- 归档卡 ---------- */
.page-products .cat-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 24px);
}

@media (min-width: 820px) {
  .page-products .cat-grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-products .note-card {
  position: relative;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.page-products .note-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.page-products .note-card__title {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--white);
}

.page-products .note-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--silver);
}

.page-products .note-card__list {
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.page-products .note-card__list li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--silver);
}

.page-products .note-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--cyan);
}

.page-products .note-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .22s var(--ease);
}

.page-products .note-card__link:hover {
  border-bottom-color: var(--cyan);
}

/* ---------- 获取方式 ---------- */
.page-products .access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0 0 clamp(24px, 3.6vw, 36px);
  border: 1px solid var(--line);
  background: var(--line);
}

@media (min-width: 860px) {
  .page-products .access-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-products .access {
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.6vw, 26px);
  background: var(--panel);
  min-width: 0;
}

.page-products .access--key {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  box-shadow: inset 0 2px 0 0 var(--cyan);
}

.page-products .access__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--muted);
}

.page-products .access__name {
  margin: 10px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -.012em;
  color: var(--white);
}

.page-products .access p {
  flex: 1 1 auto;
  margin: 12px 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--silver);
}

.page-products .access .btn {
  align-self: flex-start;
}

.page-products .cat-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(0, 230, 184, .10), transparent 55%),
    var(--ink-2);
  box-shadow: inset 3px 0 0 0 var(--orange);
}

@media (min-width: 780px) {
  .page-products .cat-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.page-products .cat-cta__text {
  margin: 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
}

.page-products .cat-cta .btn {
  justify-self: start;
}

@media (min-width: 780px) {
  .page-products .cat-cta .btn {
    justify-self: end;
  }
}

/* ---------- 减少动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-products .cat-rail__link,
  .page-products .cat-card,
  .page-products .cat-card__link,
  .page-products .bkt summary,
  .page-products .bkt summary::after,
  .page-products .note-card__link {
    transition: none;
  }

  .page-products .bkt[open] summary::after {
    transform: none;
    content: "−";
  }
}
<<<END>>>
