.page-home {
  --home-gap: 84px;
  position: relative;
  background: var(--space-blue);
  color: var(--silver-white);
  overflow-x: hidden;
}
.page-home .container {
  position: relative;
  z-index: 1;
}

/* ===== 首屏框景 ===== */
.page-home .hero-frame {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  background: var(--space-blue);
  overflow: hidden;
}
.page-home .hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-home .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 16, 38, 0.84) 0%, rgba(11, 16, 38, 0.55) 45%, var(--space-blue) 100%),
    radial-gradient(120% 90% at 85% 10%, rgba(22, 32, 74, 0.4) 0%, transparent 65%);
}
.page-home .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-home .hero-eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--volt-green);
  text-transform: uppercase;
}
.page-home .display-title {
  margin: 0;
}
.page-home .display-title .title-block {
  display: block;
}
.page-home .hero-slogan {
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.page-home .hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--silver-white);
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.94;
}
.page-home .hero-lead .keyword-match {
  color: var(--gold);
  font-weight: 700;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  background: rgba(232, 234, 237, 0.08);
  border: 1px solid rgba(232, 234, 237, 0.08);
  max-width: 640px;
}
.page-home .hero-stat {
  background: rgba(11, 16, 38, 0.78);
  padding: 18px 12px;
  text-align: center;
}
.page-home .hero-stat dt {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.page-home .hero-stat dd {
  margin: 6px 0 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--volt-green);
  font-family: var(--font-mono);
}

/* ===== 框景刻度 ===== */
.page-home .frame-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.page-home .frame-ring {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 255, 62, 0.3);
}
.page-home .frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--volt-green);
  border-style: solid;
}
.page-home .frame-corner-tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}
.page-home .frame-corner-tr {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
}
.page-home .frame-corner-bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
}
.page-home .frame-corner-br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}
.page-home .frame-tick {
  position: absolute;
}
.page-home .frame-tick-top {
  top: 9px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(198, 255, 62, 0.65) 0 5px, transparent 5px 13px);
}
.page-home .frame-tick-bottom {
  bottom: 9px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(198, 255, 62, 0.65) 0 5px, transparent 5px 13px);
}
.page-home .frame-tick-left {
  left: 9px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: repeating-linear-gradient(180deg, rgba(198, 255, 62, 0.65) 0 5px, transparent 5px 13px);
}
.page-home .frame-tick-right {
  right: 9px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: repeating-linear-gradient(180deg, rgba(198, 255, 62, 0.65) 0 5px, transparent 5px 13px);
}

/* ===== 通用章节条 ===== */
.page-home .section-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--volt-green);
}
.page-home .section-overline::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--volt-green);
  flex: 0 0 auto;
}
.page-home .section-overline span + span {
  color: var(--muted);
}
.page-home .chapter-block {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}
.page-home .chapter-block::before {
  content: attr(data-index);
  position: absolute;
  top: 8px;
  left: 6px;
  z-index: 0;
  font-family: var(--font-mono);
  font-size: clamp(4.8rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(198, 255, 62, 0.07);
  pointer-events: none;
}

/* ===== 四大入口 ===== */
.page-home .gateway-band {
  position: relative;
  padding: 76px 0;
  background: linear-gradient(180deg, var(--space-blue) 0%, var(--panel-blue) 100%);
}
.page-home .gateway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
.page-home .gateway-card {
  position: relative;
  display: block;
  padding: 28px 22px 26px 68px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--silver-white);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: transform 0.22s var(--ease-out), border-color 0.22s;
}
.page-home .gateway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--volt-green);
  transform: skewX(-20deg);
}
.page-home .gateway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 255, 62, 0.5);
}
.page-home .gateway-card-benefit::before {
  background: linear-gradient(180deg, var(--volt-green), var(--gold));
}
.page-home .gateway-card-tool::before {
  background: linear-gradient(180deg, var(--amber-orange), var(--ember-orange));
}
.page-home .gateway-card-review::before {
  background: linear-gradient(180deg, var(--gold), var(--amber-orange));
}
.page-home .gateway-card-lineup::before {
  background: linear-gradient(180deg, var(--ember-orange), var(--alert-orange));
}
.page-home .gateway-num {
  position: absolute;
  top: 26px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--volt-green);
}
.page-home .gateway-card h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.35;
}
.page-home .gateway-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.page-home .gateway-more {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

/* ===== 01 会员权益对比 ===== */
.page-home .benefit-chapter {
  background: var(--space-blue);
}
.page-home .benefit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.page-home .benefit-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-blue);
}
.page-home .benefit-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.page-home .benefit-visual figcaption {
  padding: 10px 16px;
  font-size: 0.74rem;
  color: var(--muted);
  font-family: var(--font-mono);
  background: rgba(11, 16, 38, 0.82);
  letter-spacing: 0.04em;
}
.page-home .benefit-tabs .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.page-home .benefit-tabs .tab-button {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.page-home .benefit-tabs .tab-button:hover {
  border-color: rgba(198, 255, 62, 0.5);
  color: var(--silver-white);
}
.page-home .benefit-tabs .tab-button.is-active,
.page-home .benefit-tabs .tab-button[aria-selected="true"] {
  color: var(--space-blue);
  background: var(--volt-green);
  border-color: var(--volt-green);
  font-weight: 700;
}
.page-home .benefit-panel {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.page-home .benefit-index {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 4px 12px;
}
.page-home .benefit-panel h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}
.page-home .benefit-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-home .benefit-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .benefit-panel li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--silver-white);
  font-size: 0.86rem;
  border-bottom: 1px dashed rgba(232, 234, 237, 0.08);
}
.page-home .benefit-panel li:last-child {
  border-bottom: 0;
}
.page-home .benefit-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--volt-green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.page-home .benefit-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

/* ===== 02 工具选择 ===== */
.page-home .tool-chapter {
  background: linear-gradient(180deg, var(--space-blue) 0%, #101737 50%, var(--space-blue) 100%);
}
.page-home .tool-chapter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ember-orange) 0 24%, var(--amber-orange) 24% 42%, transparent 42%);
}
.page-home .tool-picker {
  position: relative;
  margin-top: 38px;
}
.page-home .tool-picker input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.page-home .tool-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .tool-option {
  display: block;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.page-home .tool-option:hover {
  border-color: rgba(198, 255, 62, 0.5);
}
.page-home #tool-web:checked ~ .tool-options label[for="tool-web"],
.page-home #tool-app:checked ~ .tool-options label[for="tool-app"],
.page-home #tool-browser:checked ~ .tool-options label[for="tool-browser"] {
  border-color: var(--volt-green);
  background: rgba(198, 255, 62, 0.08);
}
.page-home .tool-name {
  display: block;
  font-weight: 800;
  font-size: 1.04rem;
  color: var(--silver-white);
}
.page-home .tool-scene {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
}
.page-home .tool-desc {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.page-home .tool-result {
  display: none;
  margin-top: 18px;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(198, 255, 62, 0.08) 0%, rgba(22, 32, 74, 0.82) 55%, rgba(198, 255, 62, 0.04) 100%);
}
.page-home #tool-web:checked ~ .tool-result-web {
  display: block;
}
.page-home #tool-app:checked ~ .tool-result-app {
  display: block;
}
.page-home #tool-browser:checked ~ .tool-result-browser {
  display: block;
}
.page-home .tool-result-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--volt-green);
  color: var(--space-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.page-home .tool-result h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.page-home .tool-result p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== 03 专家评测 ===== */
.page-home .review-chapter {
  background: var(--space-blue);
}
.page-home .review-art {
  position: absolute;
  top: 0;
  right: -80px;
  width: 300px;
  height: 100%;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.page-home .review-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-home .review-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 36px -16px 0;
  padding: 4px 16px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--volt-green) var(--panel-blue);
}
.page-home .review-strip::-webkit-scrollbar {
  height: 6px;
}
.page-home .review-strip::-webkit-scrollbar-thumb {
  background: var(--volt-green);
  border-radius: 999px;
}
.page-home .review-card {
  position: relative;
  flex: 0 0 84%;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--silver-white);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.page-home .review-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.28), transparent 70%);
}
.page-home .review-card:hover {
  border-color: rgba(198, 255, 62, 0.5);
  transform: translateY(-4px);
}
.page-home .review-model {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--amber-orange);
  border: 1px solid rgba(255, 154, 60, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.page-home .review-card h3 {
  margin: 16px 0 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}
.page-home .review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.page-home .review-meta {
  display: block;
  margin-top: 16px;
  font-size: 0.74rem;
  color: var(--slate-blue);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.page-home .review-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.page-home .review-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* ===== 04 阵容确认 ===== */
.page-home .confirm-chapter {
  background: radial-gradient(80% 80% at 85% 20%, rgba(255, 90, 60, 0.1) 0%, transparent 60%);
}
.page-home .confirm-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 36px;
}
.page-home .confirm-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.page-home .confirm-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed rgba(232, 234, 237, 0.1);
  color: var(--silver-white);
  font-size: 0.88rem;
}
.page-home .confirm-list li:last-child {
  border-bottom: 0;
}
.page-home .confirm-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 9px;
  height: 9px;
  background: var(--volt-green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.page-home .confirm-notice {
  margin: 18px 0 20px;
  font-size: 0.8rem;
  color: var(--alert-orange);
  line-height: 1.6;
}
.page-home .confirm-ring-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.page-home .confirm-ring {
  position: relative;
  width: 230px;
  height: 230px;
}
.page-home .ring-svg {
  width: 100%;
  height: 100%;
}
.page-home .ring-bg {
  fill: none;
  stroke: rgba(232, 234, 237, 0.1);
  stroke-width: 8;
}
.page-home .ring-arc {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 565.49;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: home-ring-count 600s linear forwards;
  filter: drop-shadow(0 0 8px rgba(198, 255, 62, 0.3));
}
@keyframes home-ring-count {
  to {
    stroke-dashoffset: 565.49;
  }
}
.page-home .ring-core {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-home .ring-label {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  font-family: var(--font-mono);
}
.page-home .ring-value {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--volt-green);
  font-family: var(--font-mono);
  margin: 4px 0 2px;
}
.page-home .ring-unit {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.24em;
  font-family: var(--font-mono);
}
.page-home .ring-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-mono);
  text-align: center;
}

/* ===== 05 转会动态 ===== */
.page-home .transfer-chapter {
  background: var(--space-blue);
  padding-bottom: 0;
}
.page-home .transfer-track {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 30px clamp(16px, 5vw, 76px) 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--ember-orange) var(--panel-blue);
}
.page-home .transfer-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 60, 0.7) 18%, rgba(255, 154, 60, 0.7) 82%, transparent);
}
.page-home .transfer-rail {
  display: flex;
  gap: 18px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}
.page-home .transfer-card {
  position: relative;
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 22px 22px 28px;
  text-decoration: none;
  color: var(--silver-white);
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.page-home .transfer-card::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ember-orange);
  box-shadow: 0 0 14px rgba(255, 90, 60, 0.7);
  z-index: 1;
}
.page-home .transfer-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 0;
  top: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 90, 60, 0.5), rgba(255, 154, 60, 0.25));
  opacity: 0.45;
}
.page-home .transfer-card:hover {
  border-color: rgba(255, 90, 60, 0.55);
  transform: translateY(-4px);
}
.page-home .transfer-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.page-home .type-rumor {
  background: rgba(255, 90, 60, 0.14);
  color: var(--ember-orange);
  border: 1px solid rgba(255, 90, 60, 0.35);
}
.page-home .type-return {
  background: rgba(198, 255, 62, 0.12);
  color: var(--volt-green);
  border: 1px solid rgba(198, 255, 62, 0.3);
}
.page-home .type-loan {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.page-home .type-official {
  background: rgba(122, 140, 168, 0.12);
  color: var(--silver-white);
  border: 1px solid rgba(122, 140, 168, 0.35);
}
.page-home .transfer-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.4;
}
.page-home .transfer-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.page-home .transfer-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.page-home .transfer-foot p {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.page-home .transfer-bg {
  position: relative;
  height: 120px;
  margin-top: 8px;
  overflow: hidden;
}
.page-home .transfer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.5;
}

/* ===== 桌面布局增强 ===== */
@media (min-width: 760px) {
  .page-home .gateway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .page-home .hero-frame {
    padding-top: 140px;
  }
  .page-home .hero-lead {
    font-size: 1.05rem;
  }
  .page-home .gateway-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .benefit-layout {
    grid-template-columns: 1fr 1.7fr;
    align-items: start;
  }
  .page-home .tool-options {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .tool-result {
    padding: 32px 36px;
  }
  .page-home .review-art {
    width: 460px;
    right: -140px;
  }
  .page-home .review-strip {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .page-home .review-card {
    flex: 0 0 calc(33.333% - 12px);
  }
  .page-home .confirm-layout {
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    align-items: center;
  }
  .page-home .transfer-card {
    flex: 0 0 calc(25% - 12px);
  }
  .page-home .transfer-foot p {
    flex: 1 1 320px;
  }
  .page-home .transfer-bg {
    height: 180px;
  }
}
