/* VISA省钱卡全球招商网 — 落地页专用（仅 visacard75off） */
:root {
  --vs-bg: #061428;
  --vs-bg-2: #0a1f3d;
  --vs-panel: rgba(12, 36, 72, 0.72);
  --vs-line: rgba(125, 180, 255, 0.18);
  --vs-text: #e8f1ff;
  --vs-muted: #9bb4d4;
  --vs-accent: #1a7cff;
  --vs-accent-2: #00c2ff;
  --vs-gold: #f0c14b;
  --vs-gold-2: #ffe29a;
  --vs-ok: #3ddc97;
  --vs-radius: 18px;
  --vs-max: 1120px;
  --vs-font: "Sora", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.vs-body {
  margin: 0;
  font-family: var(--vs-font);
  color: var(--vs-text);
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(26, 124, 255, 0.28), transparent 55%),
    radial-gradient(700px 420px at 88% 8%, rgba(240, 193, 75, 0.16), transparent 50%),
    linear-gradient(180deg, #04101f 0%, var(--vs-bg) 28%, #081a33 100%);
  min-height: 100vh;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, .vs-btn { font-family: inherit; }

.vs-wrap {
  /* 左右留白与区块上下 padding 对齐：默认约 16px，宽屏约 56px */
  width: min(100% - 32px, var(--vs-max));
  margin-inline: auto;
}

@media (min-width: 961px) {
  .vs-wrap {
    width: min(100% - 112px, var(--vs-max));
  }
}

/* Header */
.vs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(4, 16, 31, 0.78);
  border-bottom: 1px solid var(--vs-line);
}
.vs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 14px 0;
}
.vs-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.vs-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.vs-brand__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.vs-brand__sub {
  display: block;
  font-size: 13px;
  color: var(--vs-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}
.vs-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px 8px;
  justify-content: flex-end;
  font-size: 13px;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
.vs-nav a {
  color: var(--vs-muted);
  padding: 4px 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.vs-nav a:hover,
.vs-nav a.is-on { color: #fff; }
/* PC 顶栏强制单行（窄屏再收紧间距） */
@media (min-width: 961px) {
  .vs-brand { flex-shrink: 1; }
  .vs-brand__name { max-width: 15em; overflow: hidden; text-overflow: ellipsis; }
}
@media (min-width: 961px) and (max-width: 1280px) {
  .vs-brand__sub { display: none; }
  .vs-header__inner { gap: 8px; }
  .vs-nav { font-size: 13px; gap: 3px 6px; }
  .vs-header__cta { padding: 0 10px; font-size: 14px; min-height: 34px; }
}
.vs-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.vs-header__cta {
  display: inline-flex;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}
.vs-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.vs-menu-btn svg { display: block; }

/* 手机端抽屉 */
.vs-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.vs-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
body.vs-drawer-open { overflow: hidden; }
.vs-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.vs-drawer.is-open .vs-drawer__backdrop { opacity: 1; }
.vs-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: linear-gradient(180deg, #0a1f3d 0%, #061428 100%);
  border-left: 1px solid var(--vs-line);
  transform: translateX(100%);
  transition: transform 0.26s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
}
.vs-drawer.is-open .vs-drawer__panel { transform: translateX(0); }
.vs-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--vs-line);
}
.vs-drawer__brand {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.vs-drawer__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vs-drawer__nav {
  flex: 1;
  overflow: auto;
  padding: 8px 12px 16px;
  -webkit-overflow-scrolling: touch;
}
.vs-drawer__group-title {
  margin: 14px 8px 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vs-accent-2);
}
.vs-drawer__link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: #d7e8ff;
  font-size: 15px;
  font-weight: 600;
}
.vs-drawer__link:hover,
.vs-drawer__link:active {
  background: rgba(26, 124, 255, 0.14);
  color: #fff;
}
.vs-drawer__foot {
  display: grid;
  gap: 10px;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--vs-line);
}
.vs-drawer__foot .vs-btn { width: 100%; }
.vs-drawer__lang {
  padding: 12px 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

/* 与易全球同款语言下拉（深色适配） */
.vs-hide-mobile { display: inline-flex; }
.gsc-lang-dd { position: relative; flex-shrink: 0; }
.gsc-lang-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #e8f1ff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.gsc-lang-dd__btn:hover {
  border-color: rgba(26, 124, 255, 0.45);
  background: rgba(26, 124, 255, 0.14);
}
.gsc-lang-dd__icon { flex-shrink: 0; opacity: 0.85; }
.gsc-lang-dd__label {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gsc-lang-dd__chev { flex-shrink: 0; opacity: 0.65; transition: transform 0.2s; }
.gsc-lang-dd.is-open .gsc-lang-dd__chev { transform: rotate(180deg); }
.gsc-lang-dd__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 300;
  min-width: 220px;
  max-width: min(320px, calc(100vw - 24px));
  max-height: min(70vh, 420px);
  overflow: auto;
  background: #0c2448;
  border: 1px solid rgba(125, 180, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  padding: 8px 0;
}
.gsc-lang-dd__group-title {
  padding: 8px 16px 4px;
  font-size: 13px;
  font-weight: 700;
  color: #7f97b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gsc-lang-dd__panel a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #d7e8ff;
}
.gsc-lang-dd__panel a:hover { background: rgba(26, 124, 255, 0.16); color: #fff; }
.gsc-lang-dd__panel a.is-active {
  color: var(--vs-gold);
  font-weight: 700;
  background: rgba(240, 193, 75, 0.1);
}
.gsc-lang-dd--drawer { width: 100%; }
.gsc-lang-dd--drawer .gsc-lang-dd__btn {
  width: 100%;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
}
.gsc-lang-dd--drawer .gsc-lang-dd__btn-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gsc-lang-dd--drawer .gsc-lang-dd__panel {
  position: static;
  margin-top: 8px;
  max-height: 240px;
  box-shadow: none;
  border-radius: 12px;
}

/* Hero — 整块舞台，避免左右割裂 */
.vs-hero {
  position: relative;
  padding: 36px 0 28px;
  overflow: hidden;
}
.vs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 78% 35%, rgba(26, 124, 255, 0.22), transparent 70%),
    radial-gradient(520px 320px at 12% 20%, rgba(240, 193, 75, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.vs-hero .vs-wrap {
  position: relative;
  z-index: 1;
}
.vs-hero__stage {
  border-radius: 28px;
  padding: 28px 28px 22px;
  background:
    linear-gradient(145deg, rgba(18, 48, 92, 0.55), rgba(6, 20, 40, 0.72)),
    rgba(8, 26, 51, 0.55);
  border: 1px solid rgba(125, 180, 255, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.vs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 28px 36px;
  align-items: center;
}
.vs-hero__copy {
  min-width: 0;
}
.vs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(240, 193, 75, 0.12);
  border: 1px solid rgba(240, 193, 75, 0.35);
  color: var(--vs-gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.vs-hero h1 {
  margin: 16px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.vs-hero__lead {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.vs-hero__sub {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--vs-gold-2);
  line-height: 1.35;
}
.vs-hero__cashback {
  margin: 0 0 16px;
  font-size: 15px;
  color: #c9d7ef;
  font-weight: 600;
}
.vs-hero__cashback strong {
  color: var(--vs-gold);
  font-weight: 800;
}
.vs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.vs-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(26, 124, 255, 0.14);
  border: 1px solid rgba(26, 124, 255, 0.28);
  font-size: 13px;
  font-weight: 600;
  color: #d7e8ff;
}
.vs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}
.vs-btn--primary {
  background: linear-gradient(135deg, var(--vs-accent), #0058d6);
  color: #fff;
}
.vs-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.vs-btn--gold {
  background: linear-gradient(135deg, #f0c14b, #d4a017);
  color: #1a1200;
}
.vs-hero__checks,
.vs-hero__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.vs-hero__checks li,
.vs-hero__points li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.vs-hero__points strong {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.vs-hero__points span {
  font-size: 13px;
  color: #a9bddc;
  font-weight: 500;
}
.vs-hero__checks li {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  color: #d5e6ff;
  font-size: 13px;
  line-height: 1.5;
}
.vs-check {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(61, 220, 151, 0.15);
  border: 1px solid rgba(61, 220, 151, 0.45);
  position: relative;
}
.vs-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--vs-ok);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 右侧手机：暗色机框 + 柔光，融入舞台 */
.vs-hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 280px);
}
.vs-hero-visual__glow {
  position: absolute;
  inset: 8% -10% -6%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(26, 124, 255, 0.35), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.vs-hero-visual__badge {
  position: absolute;
  right: -6px;
  top: 10px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(240, 193, 75, 0.96);
  color: #1a1200;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.vs-hero-visual__phone {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, #1a2f4d, #0a1628);
  border: 1px solid rgba(160, 200, 255, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.vs-hero-visual__phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
}
.vs-hero-visual__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
  width: 100%;
}
.vs-hero-visual__mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0a1a33;
}
@media (min-width: 961px) {
  .vs-hero-visual__phone {
    max-height: 420px;
  }
  .vs-hero-visual__phone img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

/* 数据条：横贯舞台底部，平衡左右高度 */
.vs-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 180, 255, 0.14);
}
.vs-stat {
  padding: 12px 10px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.vs-stat__n {
  font-size: 20px;
  font-weight: 800;
  color: var(--vs-gold);
  line-height: 1.2;
}
.vs-stat__l {
  font-size: 14px;
  color: var(--vs-muted);
  margin-top: 4px;
}

.vs-slogan {
  margin: 16px auto 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(26, 124, 255, 0.1);
  border: 1px solid rgba(26, 124, 255, 0.22);
  color: #e8f0ff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

/* 权益区双截图：暗色舞台 + 机框，避免 PC 白底硬切 */
.vs-shot-stage {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  justify-items: center;
  align-items: start;
  padding: 28px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(18, 48, 92, 0.5), rgba(6, 20, 40, 0.78)),
    rgba(8, 26, 51, 0.55);
  border: 1px solid rgba(125, 180, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.vs-shot-stage__item {
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.vs-shot-stage__phone {
  position: relative;
  border-radius: 26px;
  padding: 9px;
  background: linear-gradient(165deg, #1c314f, #0a1628);
  border: 1px solid rgba(160, 200, 255, 0.2);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.vs-shot-stage__phone::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 40, 0.55));
  pointer-events: none;
  border-radius: 0 0 18px 18px;
}
.vs-shot-stage__phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}
@media (min-width: 961px) {
  .vs-shot-stage__phone {
    max-height: 460px;
  }
  .vs-shot-stage__phone img {
    max-height: 442px;
    object-fit: cover;
    object-position: top center;
  }
}
.vs-shot-stage__cap {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #9bb4d4;
}

/* 权益区旧类名兼容 */
.vs-hero-card__phone {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b1a33;
}
.vs-hero-card__phone img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Sections */
.vs-section {
  padding: 56px 0;
  border-top: 1px solid rgba(125, 180, 255, 0.08);
}
.vs-section__head {
  margin-bottom: 28px;
  max-width: 820px;
}
.vs-section__eyebrow {
  color: var(--vs-accent-2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.vs-section h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  font-weight: 800;
}
.vs-section__desc {
  margin: 0;
  color: var(--vs-muted);
  font-size: 15px;
}
.vs-prose p {
  margin: 0 0 14px;
  color: #c8daf5;
  font-size: 15px;
  line-height: 1.65;
}
.vs-prose strong { color: var(--vs-gold); }
.vs-ol {
  margin: 0 0 14px;
  padding-left: 1.25em;
  color: #c8daf5;
  font-size: 15px;
  display: grid;
  gap: 8px;
}
.vs-ol li { padding-left: 4px; }

.vs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vs-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.vs-card {
  padding: 20px;
  border-radius: var(--vs-radius);
  background: var(--vs-panel);
  border: 1px solid var(--vs-line);
}
.vs-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}
.vs-card p,
.vs-card li {
  color: var(--vs-muted);
  font-size: 14px;
}
.vs-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(145deg, rgba(26, 124, 255, 0.28), rgba(0, 194, 255, 0.08));
  border: 1px solid rgba(125, 180, 255, 0.28);
  color: var(--vs-accent-2);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 40, 90, 0.22);
}
.vs-card__icon--svg { font-size: 0; }
.vs-card__icon--gold {
  background: linear-gradient(145deg, rgba(240, 193, 75, 0.28), rgba(255, 226, 154, 0.08));
  border-color: rgba(240, 193, 75, 0.38);
  color: var(--vs-gold-2);
}
.vs-ico {
  width: 24px;
  height: 24px;
  display: block;
}
.vs-card--media { position: relative; }
.vs-card--media .vs-card__icon { margin-bottom: 14px; }

.vs-block-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.vs-pillar-grid,
.vs-ico-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}
.vs-pillar-grid { grid-template-columns: repeat(3, 1fr); }
.vs-pillar-grid .vs-detail-card { margin: 0; }
.vs-ico-grid--5 { grid-template-columns: repeat(5, 1fr); }
.vs-ico-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(12, 36, 72, 0.7);
  border: 1px solid var(--vs-line);
  min-height: 76px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.vs-ico-tile:hover {
  border-color: rgba(240, 193, 75, 0.45);
  background: rgba(18, 48, 92, 0.85);
  transform: translateY(-2px);
}
.vs-ico-tile .vs-card__icon { margin: 0; width: 44px; height: 44px; }
.vs-ico-tile__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vs-ico-tile__body strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.vs-ico-tile__body span {
  font-size: 14px;
  color: var(--vs-muted);
}

.vs-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.vs-scene-card {
  padding: 18px 16px;
  border-radius: var(--vs-radius);
  background: var(--vs-panel);
  border: 1px solid var(--vs-line);
  transition: border-color .2s ease, transform .2s ease;
}
.vs-scene-card:hover {
  border-color: rgba(0, 194, 255, 0.4);
  transform: translateY(-2px);
}
.vs-scene-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #fff;
}
.vs-scene-card p {
  margin: 0;
  color: var(--vs-muted);
  font-size: 13px;
}

.vs-list--ico li { align-items: center; }
.vs-li-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(26, 124, 255, 0.16);
  border: 1px solid rgba(125, 180, 255, 0.22);
  color: var(--vs-accent-2);
}
.vs-li-ico .vs-ico { width: 18px; height: 18px; }

.vs-news__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--vs-radius);
  background: var(--vs-panel);
  border: 1px solid var(--vs-line);
}
.vs-news__item .vs-card__icon {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 12px;
}
.vs-news__item .vs-ico { width: 20px; height: 20px; }
.vs-news__item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}
.vs-news__item p {
  margin: 0;
  color: var(--vs-muted);
  font-size: 13px;
}

.vs-flow__step .vs-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 10px;
}
.vs-flow__step .vs-ico { width: 18px; height: 18px; }

.vs-detail-grid {
  display: grid;
  gap: 14px;
}
.vs-detail-grid--2 { grid-template-columns: 1fr 1fr; }
.vs-detail-grid--5 { grid-template-columns: 1fr; }
.vs-detail-card {
  padding: 20px 18px;
  border-radius: var(--vs-radius);
  background: var(--vs-panel);
  border: 1px solid var(--vs-line);
}
.vs-detail-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.vs-subhead {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--vs-gold-2);
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.vs-detail-card > .vs-subhead:first-of-type {
  margin-top: 14px;
}
.vs-detail-card p {
  margin: 0 0 12px;
  color: #b8cae6;
  font-size: 14px;
  line-height: 1.6;
}
.vs-detail-card p:last-child { margin-bottom: 0; }
.vs-detail-card--full { width: 100%; }
.vs-list--detail li { align-items: flex-start; }
.vs-list--detail li span { line-height: 1.7; }

@media (min-width: 961px) {
  .vs-detail-grid--5 { grid-template-columns: 1fr 1fr; }
  .vs-detail-grid--5 .vs-detail-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
.vs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.vs-list--2col {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .vs-list--2col { grid-template-columns: 1fr; }
}
.vs-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #c8daf5;
  font-size: 14px;
}

.vs-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.vs-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240, 193, 75, 0.1);
  border: 1px solid rgba(240, 193, 75, 0.28);
  color: var(--vs-gold-2);
  font-size: 14px;
  font-weight: 600;
}

.vs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vs-split .vs-card h3 { color: #fff; }

.vs-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.vs-flow__step {
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #d7e8ff;
}
.vs-flow__n {
  display: block;
  font-weight: 800;
  color: var(--vs-accent-2);
  margin-bottom: 4px;
}

.vs-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.vs-news article {
  /* legacy fallback; prefer .vs-news__item */
  padding: 0;
  border: 0;
  background: transparent;
}
.vs-news h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.vs-news p {
  margin: 0;
  color: var(--vs-muted);
  font-size: 13px;
}

.vs-contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}
.vs-contact-box ul { margin: 14px 0 0; }
.vs-form-lead {
  margin: 0 0 14px;
  color: var(--vs-gold-2);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.vs-join-cta {
  display: block;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1408;
  background: linear-gradient(135deg, #ffe29a 0%, #f0c14b 55%, #e0a82e 100%);
  border: 1px solid rgba(255, 226, 154, 0.55);
  box-shadow: 0 10px 28px rgba(240, 193, 75, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.vs-join-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(240, 193, 75, 0.38);
}
.vs-form {
  display: grid;
  gap: 10px;
}
.vs-form input,
.vs-form textarea,
.vs-form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}
.vs-form textarea { min-height: 110px; resize: vertical; }
#franchise-form {
  scroll-margin-top: 72px;
}
.vs-form__tip {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
}

.vs-footer-bar {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 14px;
  text-align: center;
  background: rgba(240, 193, 75, 0.08);
  border: 1px solid rgba(240, 193, 75, 0.22);
  color: var(--vs-gold-2);
  font-size: 13px;
  font-weight: 600;
}

/* Footer */
.vs-footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(125, 180, 255, 0.12);
  background: rgba(0,0,0,0.22);
}
.vs-footer h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #fff;
}
.vs-footer p {
  margin: 0 0 10px;
  color: var(--vs-muted);
  font-size: 14px;
  line-height: 1.7;
}
.vs-footer__copy {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #7f97b8;
  font-size: 14px;
}

/* 底部悬浮加盟条（参考易全球官网 gsc-sticky-dl） */
body.vs-body {
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0));
}
.vs-sticky-join {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px calc(12px + env(safe-area-inset-bottom, 0));
  background: transparent;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.vs-sticky-join.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.vs-sticky-join__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 11px 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0a4fb8 0%, #1a7cff 55%, #1290e8 100%);
  box-shadow:
    0 4px 20px rgba(26, 124, 255, 0.36),
    0 10px 36px rgba(4, 16, 31, 0.28);
  overflow: hidden;
}
.vs-sticky-join__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
}
.vs-sticky-join__copy {
  flex: 1;
  min-width: 0;
  color: #fff;
  line-height: 1.25;
}
.vs-sticky-join__copy strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  overflow-wrap: anywhere;
  letter-spacing: 0.01em;
}
.vs-sticky-join__copy span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vs-sticky-join__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  max-width: 46vw;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe29a, #f0c14b);
  color: #1a1200;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s;
}
.vs-sticky-join__btn:active {
  transform: scale(0.97);
}

/* 一键回到顶部（右侧悬浮，避开底部加盟条） */
.vs-back-top {
  position: fixed;
  right: 14px;
  bottom: calc(96px + env(safe-area-inset-bottom, 0));
  z-index: 910;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(125, 180, 255, 0.35);
  background: linear-gradient(145deg, rgba(26, 124, 255, 0.96) 0%, rgba(10, 79, 184, 0.98) 100%);
  color: #fff;
  box-shadow:
    0 4px 18px rgba(26, 124, 255, 0.4),
    0 8px 28px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, box-shadow 0.15s ease, bottom 0.22s ease;
}
.vs-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.vs-back-top.is-sticky-hidden {
  bottom: calc(18px + env(safe-area-inset-bottom, 0));
}
.vs-back-top:active {
  transform: translateY(0) scale(0.94);
}
.vs-back-top svg {
  display: block;
  width: 22px;
  height: 22px;
}

@media (max-width: 1100px) and (min-width: 961px) {
  .vs-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.75fr);
    gap: 22px;
  }
  .vs-hero-visual { width: min(100%, 250px); }
  .vs-hero-visual__phone { max-height: 380px; }
  .vs-hero-visual__phone img { max-height: 360px; }
  .vs-hero h1 { font-size: clamp(24px, 3vw, 34px); }
  .vs-hero__stage { padding: 22px; }
}

@media (max-width: 960px) {
  .vs-hero__grid,
  .vs-grid-2,
  .vs-split,
  .vs-contact-box,
  .vs-news { grid-template-columns: 1fr; }
  .vs-grid-4 { grid-template-columns: 1fr 1fr; }
  .vs-flow { grid-template-columns: 1fr 1fr 1fr; }
  .vs-pillar-grid { grid-template-columns: 1fr; }
  .vs-ico-grid--5 { grid-template-columns: 1fr 1fr; }
  .vs-scene-grid { grid-template-columns: 1fr 1fr; }
  .vs-detail-grid--2,
  .vs-detail-grid--5 { grid-template-columns: 1fr; }
  .vs-nav--desktop { display: none; }
  .vs-menu-btn { display: inline-flex; }
  .vs-hide-mobile { display: none !important; }

  /* 真机顶栏：只留品牌 + 汉堡；「去办卡/立即加盟」进抽屉，避免挤成一团 */
  .vs-wrap { width: min(100% - 24px, var(--vs-max)); }
  .vs-header__inner {
    gap: 6px;
    padding: 8px 0;
    min-height: 52px;
  }
  .vs-header__right { gap: 4px; flex-shrink: 0; }
  .vs-header__cta {
    display: none !important;
  }
  .vs-brand {
    flex: 1;
    gap: 8px;
    min-width: 0;
  }
  .vs-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .vs-brand > span {
    min-width: 0;
    flex: 1;
  }
  .vs-brand__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .vs-brand__sub {
    display: block !important;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.3;
    margin-top: 1px;
  }
  .vs-menu-btn {
    width: 40px;
    height: 40px;
  }
  .vs-menu-btn svg {
    width: 24px;
    height: 24px;
  }

  .vs-hero__stage {
    display: flex;
    flex-direction: column;
    padding: 18px 14px 14px;
    border-radius: 22px;
  }
  /* 手机端：文案与数据在上，产品图沉到底部 */
  .vs-hero__grid {
    display: contents;
  }
  .vs-hero__copy { order: 1; }
  .vs-hero__stats {
    order: 2;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
  }
  .vs-hero-visual {
    order: 3;
    width: min(100%, 300px);
    margin: 18px auto 0;
  }
  .vs-hero-visual__phone,
  .vs-hero-visual__phone img {
    max-height: none;
    height: auto;
    object-fit: contain;
  }
  .vs-shot-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px 14px 14px;
    justify-items: center;
  }
  .vs-shot-stage__item { max-width: 320px; }
  .vs-shot-stage__phone,
  .vs-shot-stage__phone img {
    max-height: none;
    object-fit: contain;
  }
  .vs-shot-stage__phone::after { display: none; }

  /* 真机悬浮条：标题可折行，副标题完整显示 */
  body.vs-body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0));
  }
  .vs-sticky-join {
    padding: 0 10px calc(10px + env(safe-area-inset-bottom, 0));
  }
  .vs-sticky-join__inner {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 18px;
  }
  .vs-sticky-join__logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .vs-sticky-join__copy strong {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .vs-sticky-join__copy span {
    display: block !important;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
  }
  .vs-sticky-join__btn {
    min-width: 68px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .vs-back-top {
    right: 12px;
    width: 44px;
    height: 44px;
    bottom: calc(100px + env(safe-area-inset-bottom, 0));
  }
  .vs-back-top.is-sticky-hidden {
    bottom: calc(16px + env(safe-area-inset-bottom, 0));
  }
  .vs-back-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .vs-brand__name { font-size: 14px; }
  .vs-brand__sub { font-size: 13px; }
  .vs-header__cta {
    display: none !important;
  }
  .vs-sticky-join__copy strong { font-size: 14px; }
  .vs-sticky-join__copy span { font-size: 13px; }
  .vs-sticky-join__btn {
    min-width: 60px;
    padding: 9px 10px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .vs-grid-4,
  .vs-flow,
  .vs-ico-grid--5,
  .vs-scene-grid { grid-template-columns: 1fr; }
  .vs-hero { padding-top: 28px; }
}


/* cookie consent: hide sticky join while banner open */
body.eg-cookie-open .vs-sticky-join,
body.eg-cookie-open .vs-back-top {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* ===== 加油充电 各送5000 页 + 首页入口 ===== */
.vs-fuel-hero { padding-bottom: 20px; }
.vs-fuel-banner {
  padding: 28px 24px;
  border-radius: 22px;
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(240,193,75,.22), transparent 55%),
    radial-gradient(500px 240px at 90% 20%, rgba(0,194,255,.18), transparent 50%),
    var(--vs-panel);
  border: 1px solid rgba(240, 193, 75, 0.35);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.vs-fuel-banner__eyebrow {
  margin: 0 0 10px;
  color: var(--vs-gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.vs-fuel-banner h1 {
  margin: 0 0 18px;
  font-size: clamp(22px, 4.5vw, 34px);
  line-height: 1.35;
  color: #fff;
}
.vs-fuel-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.vs-fuel-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d7e8ff;
  font-size: 14px;
  line-height: 1.65;
}
.vs-fuel-tip {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(125,180,255,.28);
  color: var(--vs-muted);
  font-size: 13px;
  line-height: 1.65;
}
.vs-fuel-faq {
  display: grid;
  gap: 12px;
}
.vs-fuel-summary {
  padding: 24px 22px;
  border-radius: 20px;
  text-align: left;
  background: linear-gradient(160deg, rgba(240,193,75,.14), rgba(12,36,72,.8));
  border: 1px solid rgba(240,193,75,.35);
}
.vs-fuel-summary h2 {
  margin: 0 0 14px;
  font-size: clamp(18px, 3.5vw, 24px);
  color: #fff;
}

/* 首页突出入口 */
.vs-home-fuel-bridge {
  margin: 22px 0 8px;
}
.vs-home-fuel-bridge .vs-home-fuel {
  margin: 0;
}
.vs-home-fuel-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.vs-home-fuel {
  display: block;
  margin: 22px 0 8px;
  padding: 20px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(120deg, rgba(240,193,75,.2), rgba(26,124,255,.16) 45%, rgba(0,194,255,.12)),
    rgba(12, 36, 72, 0.85);
  border: 1px solid rgba(240, 193, 75, 0.55);
  box-shadow: 0 0 0 1px rgba(255,226,154,.12), 0 16px 40px rgba(240,193,75,.18);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vs-home-fuel:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,226,154,.22), 0 20px 48px rgba(240,193,75,.28);
}
.vs-home-fuel__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0c14b;
  color: #1a1408;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}
.vs-home-fuel__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}
.vs-home-fuel__desc {
  margin: 0 0 12px;
  color: #d7e8ff;
  font-size: 14px;
  line-height: 1.65;
}
.vs-home-fuel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.vs-home-fuel__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--vs-gold-2);
  font-size: 14px;
  font-weight: 600;
}
.vs-home-fuel__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vs-gold-2);
  font-weight: 800;
  font-size: 15px;
}
.vs-nav a.vs-nav__hot,
.vs-drawer__link.vs-nav__hot {
  color: var(--vs-gold-2) !important;
  font-weight: 800;
}

/* ===== 加油充电图文标识 ===== */
.vs-fuel-banner--visual { padding: 22px; }
.vs-fuel-banner__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.vs-fuel-visual {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  justify-items: stretch;
}
.vs-fuel-visual__mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  width: 100%;
}
.vs-fuel-mosaic__main { grid-row: 1 / span 2; }
.vs-fuel-visual__mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0a1a33;
  min-height: 88px;
}
.vs-fuel-visual__mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 88px;
  aspect-ratio: 4 / 3;
}
.vs-fuel-mosaic__main img { min-height: 220px; aspect-ratio: 3 / 4; }
.vs-fuel-visual__mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.vs-fuel-visual__visa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 79, 214, 0.25);
  border: 1px solid rgba(125, 180, 255, 0.35);
}
.vs-fuel-visual__visa img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.vs-fuel-visual__visa-word {
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
}
.vs-fuel-card {
  width: min(100%, 280px);
  aspect-ratio: 1.586;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(145deg, #1a4fd6 0%, #0b2f8f 45%, #061a4a 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(10, 40, 120, 0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vs-fuel-card__top,
.vs-fuel-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vs-fuel-card__chip {
  width: 36px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0c14b, #c9a227);
}
.vs-fuel-card__brand {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 14px;
}
.vs-fuel-card__no {
  font-family: Sora, monospace;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin: 18px 0;
}
.vs-fuel-card__visa-mark {
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #ffe29a;
}
.vs-fuel-visual__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.vs-fuel-visual__tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(240,193,75,0.12);
  border: 1px solid rgba(240,193,75,0.35);
  color: var(--vs-gold-2);
  font-size: 14px;
  font-weight: 700;
}

.vs-fuel-gallery {
  margin: 22px 0 8px;
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(12,28,56,.92), rgba(8,18,38,.96));
  border: 1px solid rgba(255,255,255,.08);
}
.vs-fuel-gallery__head h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 3.6vw, 26px);
  color: #fff;
}
.vs-fuel-gallery__head p {
  margin: 0 0 16px;
  color: var(--vs-muted);
  font-size: 14px;
  line-height: 1.6;
}
.vs-fuel-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.vs-fuel-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: #071425;
  min-height: 140px;
}
.vs-fuel-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  transition: transform .35s ease;
}
.vs-fuel-shot:hover img { transform: scale(1.04); }
.vs-fuel-shot--lg { grid-column: span 2; grid-row: span 2; }
.vs-fuel-shot--lg img,
.vs-fuel-shot--tall img { min-height: 100%; }
.vs-fuel-shot--tall { grid-row: span 2; }
.vs-fuel-shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 12px 10px;
  background: linear-gradient(transparent, rgba(0,8,20,.88));
  display: grid;
  gap: 2px;
}
.vs-fuel-shot figcaption strong {
  color: #fff;
  font-size: 13px;
}
.vs-fuel-shot figcaption span {
  color: #c9daf5;
  font-size: 13px;
  line-height: 1.4;
}

.vs-home-fuel__shots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin: 0 0 12px;
}
.vs-home-fuel__shots img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0a1a33;
}

/* ===== 招商首页真实场景图 ===== */
.vs-home-gallery {
  margin: 18px 0 8px;
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(12,28,56,.92), rgba(8,18,38,.96));
  border: 1px solid rgba(255,255,255,.08);
}
.vs-home-gallery__head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 30px);
  color: #fff;
  font-weight: 800;
}
.vs-home-gallery__head p {
  margin: 0 0 16px;
  color: #c9d7ef;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.vs-home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.vs-home-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: #071425;
  min-height: 130px;
}
.vs-home-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  transition: transform .35s ease;
}
.vs-home-shot:hover img { transform: scale(1.04); }
.vs-home-shot--lg { grid-column: span 2; grid-row: span 2; }
.vs-home-shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 12px 10px;
  background: linear-gradient(transparent, rgba(0,8,20,.88));
  display: grid;
  gap: 2px;
}
.vs-home-shot figcaption strong { color: #fff; font-size: 13px; }
.vs-home-shot figcaption span { color: #c9daf5; font-size: 13px; line-height: 1.4; }

.vs-scene-card--photo { overflow: hidden; padding-top: 0; }
.vs-scene-card__img {
  display: block;
  width: calc(100% + 36px);
  margin: 0 -18px 12px;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vs-card--photo { overflow: hidden; }
.vs-card__photo {
  display: block;
  width: calc(100% + 40px);
  margin: -18px -20px 14px;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.vs-offline-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 16px;
}
.vs-offline-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.vs-partner-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 0 20px;
}
.vs-partner-photos figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: #071425;
}
.vs-partner-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.vs-partner-photos figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
}

.vs-picstrip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 0 0 18px;
}
.vs-picstrip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: #071425;
}
.vs-pictext {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  align-items: start;
}
.vs-pictext__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.vs-pictext__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
}
.vs-detail-card--photo { overflow: hidden; }
.vs-detail-card__img {
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  margin: -18px -20px 14px;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.vs-detail-card__img--wide { height: 190px; }
.vs-news__item--photo {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: start;
}
.vs-news__thumb {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
}

.vs-fuel-icon-board {
  margin-top: 18px;
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(8, 24, 48, 0.72);
  border: 1px solid var(--vs-line);
}
.vs-fuel-icon-board__head h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 3.5vw, 24px);
  color: #fff;
}
.vs-fuel-icon-board__head p {
  margin: 0 0 18px;
  color: var(--vs-muted);
  font-size: 14px;
  line-height: 1.65;
}
.vs-fuel-icon-row { margin-bottom: 18px; }
.vs-fuel-icon-block h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--vs-gold-2);
}
.vs-fuel-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vs-fuel-logo-grid--brands {
  grid-template-columns: repeat(4, 1fr);
}
.vs-fuel-logo {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  min-height: 118px;
}
.vs-fuel-logo img,
.vs-fuel-logo svg {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
}
.vs-fuel-logo__wide {
  width: 72px !important;
  height: 40px !important;
  padding: 8px 6px !important;
}
.vs-fuel-logo__mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--logo-bg, #1a7cff);
  color: var(--logo-fg, #fff);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.vs-fuel-logo strong {
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}
.vs-fuel-logo span:last-child {
  font-size: 13px;
  color: var(--vs-muted);
}
.vs-fuel-logo--visa img { box-shadow: 0 0 0 1px rgba(255,255,255,.15); }
.vs-fuel-icon-note {
  margin: 10px 0 0;
  color: var(--vs-muted);
  font-size: 14px;
  line-height: 1.55;
}
.vs-fuel-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.vs-fuel-dual__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(26,124,255,0.1);
  border: 1px solid rgba(125,180,255,0.22);
}
.vs-fuel-dual__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240,193,75,0.14);
  color: var(--vs-gold-2);
  flex-shrink: 0;
}
.vs-fuel-dual__ico svg { width: 26px; height: 26px; }
.vs-fuel-dual__item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 14px;
}
.vs-fuel-dual__item p {
  margin: 0;
  color: var(--vs-muted);
  font-size: 13px;
  line-height: 1.55;
}

.vs-home-fuel__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.vs-home-fuel__brands i {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px 4px 4px;
  border-radius: 8px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  color: #e8f1ff;
}
.vs-home-fuel__brands i img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
  padding: 1px;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .vs-fuel-banner__grid { grid-template-columns: 1fr; }
  .vs-fuel-visual { position: static; order: -1; }
  .vs-fuel-logo-grid--brands { grid-template-columns: repeat(3, 1fr); }
  .vs-fuel-dual { grid-template-columns: 1fr; }
  .vs-fuel-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .vs-fuel-shot--lg { grid-column: span 2; grid-row: span 1; }
  .vs-fuel-shot--tall { grid-row: span 1; }
  .vs-home-fuel__shots { grid-template-columns: repeat(3, 1fr); }
  .vs-home-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .vs-home-shot--lg { grid-column: span 2; grid-row: span 1; }
  .vs-partner-photos { grid-template-columns: repeat(3, 1fr); }
  .vs-offline-photos { grid-template-columns: repeat(2, 1fr); }
  .vs-picstrip { grid-template-columns: repeat(3, 1fr); }
  .vs-pictext { grid-template-columns: 1fr; }
  .vs-news__item--photo { grid-template-columns: 72px 1fr; }
  .vs-news__thumb { width: 72px; height: 56px; }
}
@media (max-width: 560px) {
  .vs-fuel-logo-grid,
  .vs-fuel-logo-grid--brands { grid-template-columns: repeat(2, 1fr); }
  .vs-fuel-gallery__grid { grid-template-columns: 1fr 1fr; }
  .vs-fuel-mosaic__main img { min-height: 180px; }
  .vs-partner-photos { grid-template-columns: repeat(2, 1fr); }
  .vs-home-gallery__grid { grid-template-columns: 1fr 1fr; }
}

.vs-header__right .vs-header__cta + .vs-header__cta { margin-left: 0; }
@media (max-width: 1100px) {
  /* 平板/手机：顶栏按钮全部收进汉堡菜单 */
  .vs-header__right .vs-header__cta { display: none !important; }
}

/* 实体生态抽屉网格（大气） */
.vs-eco {
  margin: 8px 4px 12px;
  padding: 14px 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  background: linear-gradient(145deg, rgba(245, 197, 66, 0.1), rgba(26, 124, 255, 0.06));
}
.vs-eco__label {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--vs-accent-2, #f5c542);
}
.vs-eco__desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(215, 232, 255, 0.72);
}
.vs-eco__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.vs-eco__grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: #e7f1ff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}
.vs-eco__grid a:hover {
  border-color: rgba(245, 197, 66, 0.55);
  background: rgba(245, 197, 66, 0.14);
  color: #fff;
}
/* 各「之家」独立色调芯片（抽屉网格一眼可辨） */
.vs-eco__grid a[href*="guangfuzhijia"] { border-color: rgba(0, 232, 176, 0.45); color: #7ff5d4; }
.vs-eco__grid a[href*="pinxixi"] { border-color: rgba(255, 140, 40, 0.55); color: #ffb86a; }
.vs-eco__grid a[href*="liuxueshengzhijia"] { border-color: rgba(183, 148, 246, 0.45); color: #d4b8ff; }
.vs-eco__grid a[href*="haiwaihuarenzhijia"] { border-color: rgba(255, 107, 74, 0.45); color: #ff9a7a; }
.vs-eco__grid a[href*="baoxianzhijia"] { border-color: rgba(46, 230, 168, 0.45); color: #6ef0c4; }
.vs-eco__grid a[href*="dichanzhongjiezhijia"] { border-color: rgba(212, 165, 116, 0.45); color: #e8c4a0; }
.vs-eco__grid a[href*="yimeimeiyezhijia"] { border-color: rgba(240, 160, 192, 0.45); color: #f8c0d8; }
.vs-eco__grid a[href*="jiaopeizhijia"] { border-color: rgba(124, 108, 255, 0.45); color: #a89cff; }
.vs-eco__grid a[href*="chezhuzhijia"] { border-color: rgba(255, 59, 74, 0.45); color: #ff7a85; }
.vs-eco__grid a[href*="wuyezhijia"] { border-color: rgba(61, 204, 122, 0.45); color: #7ae0a4; }
.vs-eco__grid a[href*="wangyuechezhijia"] { border-color: rgba(0, 240, 200, 0.45); color: #5ffae0; }
.vs-eco__grid a[href*="waimaiyuanzhijia"] { border-color: rgba(255, 106, 26, 0.45); color: #ff9a55; }
.vs-eco__grid a[href*="kuaidiyuanzhijia"] { border-color: rgba(30, 167, 255, 0.45); color: #6ec8ff; }
.vs-eco__grid a[href*="daxueshengchuangkezhijia"] { border-color: rgba(34, 211, 238, 0.45); color: #67e8f9; }
/* 线下专区卡片左侧色条 */
#guangfuzhijia { box-shadow: inset 4px 0 0 #00e8b0; }
#liuxueshengzhijia { box-shadow: inset 4px 0 0 #b794f6; }
#haiwaihuarenzhijia { box-shadow: inset 4px 0 0 #ff6b4a; }
#baoxianzhijia { box-shadow: inset 4px 0 0 #2ee6a8; }
#dichanzhongjiezhijia { box-shadow: inset 4px 0 0 #d4a574; }
#yimeimeiyezhijia { box-shadow: inset 4px 0 0 #f0a0c0; }
#jiaopeizhijia { box-shadow: inset 4px 0 0 #7c6cff; }
#chezhuzhijia { box-shadow: inset 4px 0 0 #ff3b4a; }
#wuyezhijia { box-shadow: inset 4px 0 0 #3dcc7a; }
#wangyuechezhijia { box-shadow: inset 4px 0 0 #00f0c8; }
#waimaiyuanzhijia { box-shadow: inset 4px 0 0 #ff6a1a; }
#kuaidiyuanzhijia { box-shadow: inset 4px 0 0 #1ea7ff; }
#daxueshengchuangkezhijia { box-shadow: inset 4px 0 0 #22d3ee; }
.vs-eco__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.45);
  background: rgba(245, 197, 66, 0.12);
  color: #f5c542;
  font-size: 13px;
  font-weight: 800;
}

/* —— 主站手机端留白（20260725sm-main） —— */
@media (max-width: 720px) {
  .vs-wrap {
    width: min(100% - 36px, var(--vs-max));
  }
  .vs-header__inner {
    gap: 10px;
    min-height: 58px;
  }
  .vs-brand__sub {
    font-size: 0.85rem;
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .vs-hero {
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .vs-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.25;
  }
  .vs-section {
    padding: 40px 0;
  }
  .vs-section__title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    line-height: 1.3;
  }
  .vs-grid,
  .vs-cards,
  .vs-banks,
  .vs-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .vs-btn,
  .vs-cta,
  a.vs-btn {
    min-height: 44px;
  }
  .vs-form__row,
  .vs-field-row {
    grid-template-columns: 1fr !important;
  }
  input.vs-input,
  select.vs-select,
  textarea.vs-textarea,
  .vs-input,
  .vs-select,
  .vs-textarea {
    font-size: 16px;
    min-height: 44px;
  }
  .vs-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .vs-sticky,
  .eg-partner-sticky {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 380px) {
  .vs-wrap {
    width: min(100% - 32px, var(--vs-max));
  }
  .vs-brand__sub {
    display: none;
  }
}
