.page-products {
  --pr-line: rgba(11, 27, 51, .12);
  --pr-pad: 54px;
  background: var(--sand);
  color: var(--navy);
  overflow-x: hidden;
}

@media (min-width: 760px) {
  .page-products {
    --pr-pad: 84px;
  }
}

.page-products .crumbs {
  padding-top: 20px;
  font-size: 13px;
  color: var(--slate);
}

.page-products .crumbs a {
  color: var(--slate);
  text-decoration: none;
}

.page-products .crumbs a:hover {
  color: var(--sun-orange);
}

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

.page-products .pr-hero {
  position: relative;
  padding: 18px 0 48px;
  overflow: hidden;
}

.page-products .pr-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 32, .34), rgba(255, 224, 178, 0) 68%);
  pointer-events: none;
}

.page-products .pr-hero__inner {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}

@media (min-width: 940px) {
  .page-products .pr-hero__inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    gap: 56px;
  }
}

.page-products .pr-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(34px, 7.4vw, 70px);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 900;
}

.page-products .pr-hero .lede {
  margin-top: 20px;
  max-width: 40ch;
  font-size: 17px;
  line-height: 1.78;
  color: var(--slate);
}

.page-products .pr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-products .pr-hero__visual {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, rgba(255, 224, 178, .92), rgba(246, 241, 231, 0) 66%);
}

.page-products .pr-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-products .pr-ring--a {
  inset: 0;
  border: 1px dashed rgba(11, 27, 51, .24);
}

.page-products .pr-ring--b {
  inset: 13%;
  border: 1px solid rgba(255, 176, 32, .58);
}

.page-products .pr-ring--c {
  inset: 26%;
  border: 1px dashed rgba(255, 106, 0, .55);
}

.page-products .pr-core {
  position: absolute;
  inset: 37%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--sun-gold), var(--sun-orange));
  box-shadow: var(--shadow-sun);
  color: #fff;
}

.page-products .pr-core .mono {
  font-family: var(--font-mono);
  font-size: clamp(16px, 3.4vw, 24px);
  font-weight: 700;
  letter-spacing: .08em;
}

.page-products .pr-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sun-orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 0, .16);
}

.page-products .pr-dot--a { top: 5%; left: 50%; transform: translateX(-50%); }
.page-products .pr-dot--b { top: 63%; left: 4%; }
.page-products .pr-dot--c { top: 67%; right: 7%; }

/* ---------- 通用区块 ---------- */

.page-products .pr-block {
  position: relative;
  padding: var(--pr-pad) 0;
}

.page-products .pr-block h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -.018em;
  font-weight: 900;
}

.page-products .pr-block .lede {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--slate);
}

.page-products .pr-block--register,
.page-products .pr-block--policy,
.page-products .pr-block--support {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 58%, var(--ink) 100%);
  color: var(--sand);
}

.page-products .pr-block--register,
.page-products .pr-block--support {
  border-radius: 42px 42px 0 0;
}

.page-products .pr-block--register .eyebrow,
.page-products .pr-block--policy .eyebrow,
.page-products .pr-block--support .eyebrow {
  color: var(--sun-gold);
}

.page-products .pr-block--register .lede,
.page-products .pr-block--policy .lede,
.page-products .pr-block--support .lede {
  color: rgba(246, 241, 231, .78);
}

.page-products .pr-block--code { background: var(--paper); }
.page-products .pr-block--scene { background: var(--paper); }

/* ---------- 注册四步 ---------- */

.page-products .pr-steps {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

@media (min-width: 880px) {
  .page-products .pr-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

.page-products .pr-step {
  position: relative;
  padding: 22px 20px 24px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.page-products .pr-step:hover,
.page-products .pr-step:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 176, 32, .58);
  background: rgba(255, 255, 255, .09);
}

@media (min-width: 880px) {
  .page-products .pr-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44px;
    left: calc(100% + 3px);
    width: 16px;
    border-top: 1px dashed rgba(38, 224, 214, .55);
  }
}

.page-products .pr-step__idx {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--sun-gold), var(--sun-orange));
  box-shadow: var(--shadow-sun);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-products .pr-step h3 {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}

.page-products .pr-step p {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(246, 241, 231, .76);
}

.page-products .pr-register-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(38, 224, 214, .3);
  background: rgba(38, 224, 214, .07);
}

.page-products .pr-register-note p {
  flex: 1 1 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(246, 241, 231, .86);
}

.page-products .pr-register-note strong {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--cyan);
}

/* ---------- 网点查询 ---------- */

.page-products .pr-dims {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
}

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

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

.page-products .pr-dim {
  padding: 18px 18px 20px;
  border-radius: var(--radius-m);
  background: var(--paper);
  border: 1px solid var(--pr-line);
  border-top: 4px solid var(--sun-gold);
}

.page-products .pr-dim dt {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-products .pr-dim dd {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
}

.page-products .pr-query__panel {
  margin-top: 28px;
  padding: 20px 18px 26px;
  border-radius: var(--radius-l);
  background: var(--paper);
  border: 1px solid var(--pr-line);
  box-shadow: var(--shadow-1);
}

@media (min-width: 760px) {
  .page-products .pr-query__panel {
    padding: 26px 26px 30px;
  }
}

.page-products .pr-filters {
  margin-bottom: 4px;
}

.page-products .filter-chip[aria-pressed="true"] {
  border-color: var(--cyan);
  background: var(--sun-pale);
  color: var(--navy);
  box-shadow: 0 0 0 2px rgba(38, 224, 214, .34);
}

.page-products .filter-chip:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-products .pr-results {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

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

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

.page-products .pr-result[hidden] {
  display: none;
}

.page-products .pr-result {
  padding: 18px 18px 20px;
  border-radius: var(--radius-m);
  border: 1px solid var(--pr-line);
  background: linear-gradient(180deg, rgba(255, 224, 178, .34), rgba(255, 255, 255, 0) 42%), var(--paper);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}

.page-products .pr-result:hover,
.page-products .pr-result:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, .4);
  box-shadow: var(--shadow-1);
}

.page-products .pr-result__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-products .pr-result h3 {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.page-products .pr-result__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(11, 27, 51, .14);
}

.page-products .pr-result__meta dt {
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--slate);
}

.page-products .pr-result__meta dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.page-products .pr-query__media {
  margin-top: 32px;
}

/* ---------- 编号与参数 ---------- */

.page-products .pr-code__layout {
  display: grid;
  gap: 30px;
}

@media (min-width: 960px) {
  .page-products .pr-code__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 48px;
    align-items: start;
  }
}

.page-products .pr-code__copy > p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--slate);
  max-width: 52ch;
}

.page-products .pr-code__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-products .pr-code__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--navy);
}

.page-products .pr-code__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--sun-gold), var(--sun-orange));
}

.page-products .pr-code__aside {
  margin-top: 22px;
  font-size: 14px;
  color: var(--slate);
}

.page-products .pr-code__aside a {
  color: var(--sun-orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 106, 0, .3);
}

.page-products .pr-code__aside a:hover {
  border-bottom-color: var(--sun-orange);
}

.page-products .pr-table-scroll {
  margin-top: 34px;
  overflow-x: auto;
  border-radius: var(--radius-m);
  border: 1px solid var(--pr-line);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}

.page-products .pr-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-products .pr-table caption {
  caption-side: top;
  text-align: left;
  padding: 18px 20px 8px;
  font-size: 13px;
  color: var(--slate);
}

.page-products .pr-table th,
.page-products .pr-table td {
  padding: 13px 20px;
  text-align: left;
  font-weight: 500;
  border-top: 1px solid rgba(11, 27, 51, .08);
}

.page-products .pr-table thead th {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--slate);
  background: rgba(255, 224, 178, .42);
  border-top: none;
}

.page-products .pr-table tbody tr {
  transition: background .16s var(--ease), box-shadow .16s var(--ease);
}

.page-products .pr-table tbody tr:hover,
.page-products .pr-table tbody tr:focus-visible {
  background: rgba(255, 224, 178, .34);
  box-shadow: inset 3px 0 0 var(--sun-orange);
  outline: none;
}

/* ---------- 招商政策 ---------- */

.page-products .pr-policy__grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 980px) {
  .page-products .pr-policy__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
    gap: 40px;
    align-items: start;
  }
}

.page-products .pr-panels {
  display: grid;
  gap: 12px;
}

.page-products .pr-panel {
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.page-products .pr-panel[open] {
  border-color: rgba(255, 176, 32, .52);
  background: rgba(255, 255, 255, .08);
}

.page-products .pr-panel > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  transition: background .2s var(--ease);
}

.page-products .pr-panel > summary::-webkit-details-marker { display: none; }

.page-products .pr-panel > summary::after {
  content: "＋";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--sun-gold);
}

.page-products .pr-panel[open] > summary::after {
  content: "－";
}

.page-products .pr-panel > summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.page-products .pr-panel__no {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 32, .6);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sun-gold);
}

.page-products .pr-panel__title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.page-products .pr-panel__hint {
  display: none;
  font-size: 13px;
  color: rgba(246, 241, 231, .6);
}

@media (min-width: 620px) {
  .page-products .pr-panel__hint {
    display: inline;
    margin-left: 6px;
  }
}

.page-products .pr-panel__body {
  padding: 0 20px 20px;
}

.page-products .pr-panel__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  border-top: 1px dashed rgba(255, 255, 255, .16);
  padding-top: 14px;
}

.page-products .pr-panel__body li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(246, 241, 231, .82);
}

.page-products .pr-panel__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .8;
}

/* ---------- 档案流 ---------- */

.page-products .pr-archive__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 62%, var(--ink) 100%);
  padding: 36px 22px 34px;
}

@media (min-width: 760px) {
  .page-products .pr-archive__inner {
    padding: 48px 44px 46px;
  }
}

.page-products .pr-archive__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  pointer-events: none;
}

.page-products .pr-archive__content {
  position: relative;
  z-index: 1;
  color: var(--sand);
}

.page-products .pr-archive__content .eyebrow {
  color: var(--cyan);
}

.page-products .pr-archive__content h2 {
  margin: 10px 0 0;
  font-size: clamp(25px, 4.2vw, 40px);
  line-height: 1.16;
  letter-spacing: -.018em;
  font-weight: 900;
  color: #fff;
}

.page-products .pr-archive__grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

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

.page-products .pr-archive__cell {
  padding: 18px 18px 20px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.page-products .pr-archive__cell:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 224, 214, .5);
}

.page-products .pr-archive__k {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--sun-gold);
}

.page-products .pr-archive__cell p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(246, 241, 231, .8);
}

.page-products .pr-archive__note {
  margin: 26px 0 0;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(246, 241, 231, .78);
}

.page-products .pr-archive__note a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(38, 224, 214, .45);
}

.page-products .pr-archive__note a:hover {
  border-bottom-color: var(--cyan);
}

/* ---------- 场景对照 ---------- */

.page-products .pr-scenes {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.page-products .pr-scene {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 28px 30px;
  border-radius: var(--radius-l);
  border: 1px solid var(--pr-line);
  background: var(--paper);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.page-products .pr-scene:hover,
.page-products .pr-scene:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.page-products .pr-scene::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sun-gold), var(--sun-orange));
}

.page-products .pr-scene__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--sun-orange);
}

.page-products .pr-scene h3 {
  margin: 10px 0 0;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.012em;
}

.page-products .pr-scene > p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--slate);
}

.page-products .pr-scene ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.page-products .pr-scene li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.page-products .pr-scene li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--sun-pale);
  border: 1px solid var(--sun-gold);
}

.page-products .pr-scene__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sun-orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 106, 0, .28);
}

.page-products .pr-scene__link:hover {
  border-bottom-color: var(--sun-orange);
}

.page-products .pr-scene__media {
  margin-top: 34px;
}

/* ---------- 支持与响应 ---------- */

.page-products .pr-support__grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.page-products .pr-support__item {
  padding: 24px 22px 26px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}

.page-products .pr-support__item:hover {
  border-color: rgba(255, 176, 32, .5);
  transform: translateY(-3px);
}

.page-products .pr-support__k {
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--sun-gold);
}

.page-products .pr-support__item p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.74;
  color: rgba(246, 241, 231, .8);
}

.page-products .pr-support__value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
}

.page-products .pr-support__item .btn {
  margin-top: 18px;
}
<<<END>>>
