/* 易全球｜实体门店加盟合作 */
:root {
  --sd-blue: #0077ff;
  --sd-blue-deep: #0055cc;
  --sd-red: #e11d2e;
  --sd-red-deep: #b50f1d;
  --sd-ink: #0b1220;
  --sd-ink-soft: #1a2740;
  --sd-paper: #f4f7fb;
  --sd-paper2: #e8eef7;
  --sd-text: #0f172a;
  --sd-muted: #334155;
  --sd-body: #1e293b;
  --sd-line: rgba(15, 23, 42, 0.1);
  --sd-max: 1080px;
  --sd-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --sd-display: "Sora", "Noto Sans SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sd-font);
  background: var(--sd-paper);
  color: var(--sd-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.28; font-weight: 800; }

.wrap { width: min(100% - 36px, var(--sd-max)); margin-inline: auto; }

/* —— 顶部红色循环横幅 —— */
.sd-marquee {
  position: relative;
  z-index: 150;
  overflow: hidden;
  background: linear-gradient(90deg, var(--sd-red-deep), var(--sd-red) 40%, #ff3b4a 50%, var(--sd-red) 60%, var(--sd-red-deep));
  color: #fff;
  border-bottom: 2px solid #8f0a16;
  pointer-events: none;
}
.sd-marquee__track {
  display: flex;
  width: max-content;
  animation: sd-marquee 28s linear infinite;
  will-change: transform;
}
.sd-marquee__item {
  flex: 0 0 auto;
  padding: 11px 48px;
  font-size: clamp(16px, 3.81vw, 18px);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@keyframes sd-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sd-marquee__track { animation: none; }
}

/* —— 顶栏 —— */
.sd-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 251, 0.92);
  border-bottom: 1px solid var(--sd-line);
}
.sd-header .wrap { width: min(100% - 32px, 1240px); }
@media (max-width: 1100px) {
  .sd-header .wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-left: max(2px, env(safe-area-inset-left, 0px));
    padding-right: max(2px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }
}
.sd-header__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px 0;
  overflow: visible;
}
.sd-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto !important;
  flex-shrink: 1 !important;
  min-width: 0 !important;
  max-width: none;
  position: relative;
  z-index: 1;
  overflow: hidden !important;
}
.sd-brand > span {
  min-width: 0;
  overflow: hidden;
}
.sd-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.18);
}
.sd-brand__name {
  display: block;
  font-size: clamp(16px, 3.58vw, 20px);
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
}
.sd-brand__sub {
  display: block;
  font-size: clamp(13px, 3.14vw, 15px);
  font-weight: 700;
  color: var(--sd-muted);
  margin-top: 2px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sd-nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  font-weight: 800;
  color: var(--sd-body);
  white-space: nowrap;
  overflow: hidden;
}
.sd-nav a { flex: 0 0 auto; padding: 4px 2px; }
.sd-nav a:hover { color: var(--sd-blue); }
.sd-cta-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sd-blue), var(--sd-blue-deep));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}
.sd-header, .sd-nav { overflow: visible; }
.sd-menu {
  display: none;
  position: relative;
  z-index: 9201;
  flex: 0 0 40px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--sd-line);
  background: #fff;
  color: var(--sd-ink);
  cursor: pointer;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* 抽屉在 header 外同级；body 类 + .is-open 双开，避免 pe:none 锁死 */
.sd-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: rgba(11, 18, 32, 0.45);
}
body.sd-drawer-open .sd-drawer,
.sd-drawer.is-open {
  display: block;
  pointer-events: auto !important;
  visibility: visible !important;
  z-index: 10060 !important;
}
body.sd-drawer-open .sd-drawer *,
.sd-drawer.is-open * { pointer-events: auto !important; }
body.sd-drawer-open { overflow: hidden; }
.sd-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 320px);
  height: 100%;
  background: linear-gradient(180deg, #0a1628 0%, #070b14 100%);
  color: #e7f1ff;
  padding: 18px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  border-left: 1px solid rgba(0, 119, 255, 0.22);
}
.sd-drawer__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  color: #f5c542;
}
.sd-drawer__topbar > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  color: #f5c542;
}
.sd-drawer__topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sd-drawer__login.zj-member-entry,
.sd-drawer .sd-drawer__login {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px !important;
  margin: 0;
  border-radius: 999px !important;
  border: 1px solid rgba(245, 197, 66, 0.55) !important;
  background: rgba(245, 197, 66, 0.12) !important;
  color: #f5c542 !important;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
}
.sd-drawer__login.zj-member-entry:hover,
.sd-drawer .sd-drawer__login:hover {
  background: rgba(245, 197, 66, 0.22) !important;
  color: #ffe08a !important;
}
.sd-drawer__close {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: rgba(231, 241, 255, 0.85);
  padding: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sd-drawer__panel a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 800;
  color: #e2e8f0;
}
.sd-drawer__panel a:hover {
  background: rgba(0, 119, 255, 0.12);
  color: #fff;
}

@media (max-width: 1279px) {
  .sd-nav { display: none; }
  .sd-menu { display: inline-flex; align-items: center; justify-content: center; }
  .sd-cta-top { display: none; }
  .sd-header .gsc-lang-dd--header { display: none !important; }
}
@media (min-width: 1280px) {
  .sd-brand {
    flex: 0 1 420px;
    max-width: 46%;
  }
  .sd-nav { gap: 10px; font-size: 16px; }
}

/* —— Hero —— */
.sd-hero {
  position: relative;
  z-index: 1;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.sd-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform: none;
  animation: none;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 901px) {
  .sd-hero {
    min-height: 0;
    width: 100%;
    aspect-ratio: 3 / 2;
    max-height: min(78vh, 720px);
    background: #0b1220;
  }
  .sd-hero__bg {
    background-size: contain;
    background-position: center center;
    background-color: #0b1220;
  }
}
.sd-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.35) 0%, rgba(11, 18, 32, 0.55) 40%, rgba(11, 18, 32, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 85, 204, 0.35), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.sd-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 0 56px;
  max-width: 860px;
  pointer-events: auto;
}
.sd-hero__brand {
  font-family: var(--sd-display);
  font-size: clamp(16px, 3.14vw, 18px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec5ff;
  margin-bottom: 14px;
  opacity: 0;
  animation: sd-rise 0.7s ease 0.1s forwards;
}
.sd-hero h1 {
  font-size: clamp(34px, 6.94vw, 59px);
  letter-spacing: -0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: sd-rise 0.75s ease 0.2s forwards;
}
.sd-hero__lead {
  margin: 16px 0 0;
  font-size: clamp(20px, 4.03vw, 24px);
  font-weight: 800;
  color: #e8f1ff;
  opacity: 0;
  animation: sd-rise 0.75s ease 0.32s forwards;
}
.sd-hero__sub {
  margin: 10px 0 0;
  font-size: clamp(17px, 3.58vw, 20px);
  color: #c5d5ea;
  font-weight: 700;
  opacity: 0;
  animation: sd-rise 0.75s ease 0.42s forwards;
}
.sd-hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: sd-rise 0.75s ease 0.58s forwards;
}
@keyframes sd-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— 按钮 —— */
.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.sd-btn:hover { transform: translateY(-1px); }
.sd-btn--blue {
  background: linear-gradient(135deg, #1a8cff, var(--sd-blue-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 119, 255, 0.35);
}
.sd-btn--red {
  background: linear-gradient(135deg, #ff3b4a, var(--sd-red-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 29, 46, 0.35);
}
.sd-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.sd-section--alt .sd-btn--ghost,
.sd-form .sd-btn--ghost {
  background: #fff;
  color: var(--sd-ink);
  border: 1px solid var(--sd-line);
  backdrop-filter: none;
}

/* —— 亮点条 —— */
.sd-highlights {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  margin-bottom: 8px;
  padding: 0 0 8px;
}
.sd-highlights__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .sd-highlights__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.sd-hl {
  background: #fff;
  border: 1px solid var(--sd-line);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.sd-hl strong {
  display: block;
  font-family: var(--sd-display);
  font-size: clamp(32px, 5.6vw, 41px);
  font-weight: 800;
  color: var(--sd-red);
  line-height: 1.05;
  margin-bottom: 8px;
}
.sd-hl strong span {
  font-size: 0.47em;
  font-weight: 800;
  color: var(--sd-ink);
  margin-left: 2px;
}
.sd-hl p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--sd-muted);
  line-height: 1.45;
}

/* —— sections —— */
.sd-section { padding: 64px 0; }
.sd-section--alt { background: #fff; }
.sd-section--ink {
  background: linear-gradient(160deg, var(--sd-ink) 0%, var(--sd-ink-soft) 100%);
  color: #e8eef7;
}
.sd-section--ink .sd-muted,
.sd-section--ink p { color: #b8c7db; }
.sd-section--ink h2,
.sd-section--ink h3 { color: #fff; }
.sd-section--cta {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 119, 255, 0.35), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(225, 29, 46, 0.28), transparent 45%),
    var(--sd-ink);
  color: #fff;
  text-align: center;
}
.sd-kicker {
  display: inline-block;
  font-family: var(--sd-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sd-blue);
  margin-bottom: 10px;
}
.sd-section--ink .sd-kicker,
.sd-section--cta .sd-kicker { color: #7eb6ff; }
.sd-section__head {
  max-width: 720px;
  margin-bottom: 28px;
}
.sd-section__head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sd-section__head h2 { font-size: clamp(29px, 5.04vw, 41px); }
.sd-section__head p {
  margin: 10px 0 0;
  color: var(--sd-muted);
  font-size: 18px;
  font-weight: 700;
}

.sd-prose {
  font-size: 20px;
  color: var(--sd-body);
  max-width: 820px;
}
.sd-prose p { margin: 0 0 14px; }
.sd-prose strong { color: var(--sd-ink); font-weight: 800; }
.sd-section--ink .sd-prose { color: #b8c7db; }
.sd-section--ink .sd-prose strong { color: #fff; }

.sd-callout {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(225, 29, 46, 0.22);
  background: linear-gradient(135deg, #fff5f5, #fff);
}
.sd-callout strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--sd-red);
  margin-bottom: 6px;
}
.sd-callout p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.55;
}
.sd-section--ink .sd-callout {
  background: rgba(225, 29, 46, 0.12);
  border-color: rgba(225, 29, 46, 0.35);
}
.sd-section--ink .sd-callout p { color: #e8eef7; }

/* —— 跨站链接（地推姐妹站） —— */
.sd-cross {
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 119, 255, 0.28);
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(225, 29, 46, 0.04));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.sd-cross__text {
  flex: 1 1 200px;
  min-width: 0;
}
.sd-cross__text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--sd-ink);
  margin-bottom: 4px;
}
.sd-cross__text p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--sd-muted);
  line-height: 1.45;
}
.sd-cross .sd-btn {
  flex-shrink: 0;
  min-height: 42px;
  font-size: 17px;
}

/* —— 权益三列 —— */
.sd-rights-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .sd-rights-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.sd-right {
  padding: 22px 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--sd-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.sd-section--ink .sd-right {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.sd-right__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 119, 255, 0.12);
  color: var(--sd-blue-deep);
  font-size: 22px;
  margin-bottom: 12px;
}
.sd-section--ink .sd-right__ico {
  background: rgba(0, 119, 255, 0.25);
  color: #9ec5ff;
}
.sd-right h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.sd-right p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.5;
}
.sd-section--ink .sd-right p { color: #c5d5ea; }

/* —— 优势 —— */
.sd-adv-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .sd-adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sd-adv {
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: var(--sd-paper);
  border: 1px solid var(--sd-line);
}
.sd-section--alt .sd-adv { background: var(--sd-paper); }
.sd-adv h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--sd-blue-deep);
}
.sd-adv p {
  margin: 0;
  font-size: 17px;
  color: var(--sd-body);
  font-weight: 700;
}

/* —— 门店类型 —— */
.sd-store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 720px) {
  .sd-store-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.sd-store-grid li {
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  color: var(--sd-ink);
  border: 1px solid var(--sd-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  list-style: none;
}
.sd-store-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef7;
}
.sd-store-grid span {
  display: block;
  padding: 10px 12px 12px;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}
.sd-store-grid em {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  color: var(--sd-muted);
  line-height: 1.45;
}

/* —— 彩票特色块 —— */
.sd-lottery-featured {
  margin: 20px 0;
  padding: 20px 18px;
  border-radius: 18px;
  border: 2px solid rgba(225, 29, 46, 0.35);
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.06), rgba(0, 119, 255, 0.04)),
    #fff;
  box-shadow: 0 12px 32px rgba(225, 29, 46, 0.08);
}
.sd-lottery-featured__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sd-red), #ff4d5a);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.sd-lottery-featured h3 {
  font-size: clamp(22px, 3.81vw, 27px);
  margin-bottom: 8px;
  color: var(--sd-ink);
}
.sd-lottery-featured p {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.55;
}
.sd-lottery-featured__list {
  display: grid;
  gap: 8px;
}
@media (min-width: 600px) {
  .sd-lottery-featured__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sd-lottery-featured__list li {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 119, 255, 0.06);
  border: 1px solid rgba(0, 119, 255, 0.15);
  font-size: 16px;
  font-weight: 800;
  color: var(--sd-ink);
}

/* —— 对比卡片 —— */
.sd-compare {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}
@media (min-width: 720px) {
  .sd-compare { grid-template-columns: 1fr 1fr; }
}
.sd-compare__bad,
.sd-compare__good {
  border-radius: 16px;
  padding: 16px 16px 14px;
  border: 1px solid var(--sd-line);
}
.sd-compare__bad { background: #f8fafc; }
.sd-compare__good {
  background: linear-gradient(160deg, #ecf5ff, #fff);
  border-color: rgba(0, 119, 255, 0.28);
}
.sd-compare h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}
.sd-compare__bad h3 { color: #64748b; }
.sd-compare__good h3 { color: var(--sd-blue-deep); }
.sd-compare ul { margin: 0; padding-left: 18px; list-style: disc; }
.sd-compare li {
  margin: 6px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.45;
}

/* —— 彩票对比 / 特权表格 —— */
.sd-table-wrap {
  margin: 18px 0;
  border-radius: 14px;
  overflow: auto;
  border: 1px solid var(--sd-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  -webkit-overflow-scrolling: touch;
}
.sd-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 17px;
}
.sd-table th,
.sd-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--sd-line);
  vertical-align: top;
}
.sd-table th {
  background: var(--sd-paper2);
  font-weight: 800;
  color: var(--sd-ink);
  font-size: 16px;
  white-space: nowrap;
}
.sd-table tr:last-child td { border-bottom: 0; }
.sd-table td { font-weight: 700; color: var(--sd-body); }
.sd-table .is-yes { color: #15803d; font-weight: 800; }
.sd-table .is-no { color: #94a3b8; }
.sd-table .is-highlight {
  color: var(--sd-red);
  font-weight: 800;
}
.sd-section--ink .sd-table-wrap {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.sd-section--ink .sd-table th {
  background: rgba(255, 255, 255, 0.08);
  color: #e8eef7;
}
.sd-section--ink .sd-table td { color: #c5d5ea; }
.sd-section--ink .sd-table th,
.sd-section--ink .sd-table td { border-color: rgba(255, 255, 255, 0.1); }

/* —— 流程步骤 —— */
.sd-steps {
  counter-reset: sdstep;
  display: grid;
  gap: 12px;
}
.sd-steps li {
  counter-increment: sdstep;
  position: relative;
  padding: 16px 16px 16px 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--sd-line);
  font-size: 18px;
  font-weight: 800;
  color: var(--sd-body);
}
.sd-section--ink .sd-steps li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #d7e6fa;
}
.sd-steps li::before {
  content: counter(sdstep);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sd-blue), var(--sd-blue-deep));
  color: #fff;
  font-family: var(--sd-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* —— FAQ —— */
.sd-faq {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.sd-faq__item {
  border-radius: 14px;
  border: 1px solid var(--sd-line);
  background: #fff;
  padding: 0 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.sd-section--ink .sd-faq__item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.sd-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--sd-ink);
}
.sd-section--ink .sd-faq__item summary { color: #fff; }
.sd-faq__item summary::-webkit-details-marker { display: none; }
.sd-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--sd-blue);
  font-weight: 800;
}
.sd-faq__item[open] summary::after { content: "–"; }
.sd-faq__item p {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.55;
}
.sd-section--ink .sd-faq__item p { color: #b8c7db; }

/* —— 表单 —— */
.sd-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--sd-line);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  text-align: left;
}
.sd-section--cta .sd-form {
  background: rgba(255, 255, 255, 0.98);
}
.sd-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--sd-ink);
}
.sd-form input,
.sd-form select,
.sd-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--sd-line);
  background: var(--sd-paper);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--sd-ink);
}
.sd-form textarea { min-height: 96px; resize: vertical; }
.sd-form__row {
  display: grid;
  gap: 0 12px;
}
@media (min-width: 560px) {
  .sd-form__row { grid-template-columns: 1fr 1fr; }
}
.sd-form__note {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--sd-muted);
}
.sd-form__msg {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 800;
  min-height: 1.4em;
}
.sd-form__msg.is-ok { color: #15803d; }
.sd-form__msg.is-err { color: var(--sd-red); }
.sd-form .sd-btn { width: 100%; margin-top: 8px; }

.sd-apply-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin: 0 0 16px;
}
.sd-apply-bullets span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(126, 182, 255, 0.28);
  color: #e8f1ff;
  font-size: 16px;
  font-weight: 800;
}

.sd-note {
  margin-top: 14px;
  font-size: 17px;
  color: var(--sd-muted);
  font-weight: 700;
}

/* —— 底部 / 粘性 CTA —— */
.sd-footer {
  padding: 36px 0 100px;
  background: var(--sd-ink);
  color: #9eb0c7;
}
.sd-footer .sd-brand__name { color: #fff; }
.sd-footer .sd-brand__sub { color: #8aa0bc; }
.sd-footer__hub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 18px 0 14px;
  font-size: 16px;
  font-weight: 800;
}
.sd-footer__hub a:hover { color: #fff; }
.sd-footer__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.sd-sticky {
  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;
}
.sd-sticky.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.sd-sticky__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: #0077ff;
  box-shadow:
    0 4px 20px rgba(0, 102, 255, 0.32),
    0 10px 36px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}
.sd-sticky__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
}
.sd-sticky__copy {
  flex: 1;
  min-width: 0;
  color: #fff;
  line-height: 1.3;
}
.sd-sticky__copy strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  overflow-wrap: anywhere;
}
.sd-sticky__copy span {
  display: block;
  font-size: 16px;
  font-weight: 800;
  opacity: 0.9;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sd-sticky__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  max-width: 42vw;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0077ff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.15s;
}
.sd-sticky__btn:active {
  transform: scale(0.97);
}
@media (max-width: 520px) {
  .sd-sticky {
    padding: 0 10px calc(10px + env(safe-area-inset-bottom, 0));
  }
  .sd-sticky__inner {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 18px;
  }
  .sd-sticky__logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .sd-sticky__copy strong {
    font-size: 16px;
  }
  .sd-sticky__copy span {
    font-size: 15px;
  }
  .sd-sticky__btn {
    min-width: 72px;
    padding: 10px 12px;
    font-size: 16px;
  }
}

.site-back-top,
#siteBackTop,
.eg-back-top {
  bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
}

/* —— 滚动显现 —— */
.sd-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.sd-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— 报名成功弹窗 —— */
.sd-apply-ok-overlay {
  position: fixed;
  inset: 0;
  z-index: 14000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 8, 18, 0.78);
}
.sd-apply-ok {
  width: min(420px, 100%);
  border-radius: 18px;
  padding: 22px 20px 18px;
  background: #fff;
  color: var(--sd-ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.sd-apply-ok__badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.1);
  color: var(--sd-red);
  font-size: 15px;
  font-weight: 800;
}
.sd-apply-ok h3 {
  margin: 0 0 10px;
  font-size: 27px;
  font-weight: 800;
  color: var(--sd-ink);
}
.sd-apply-ok__tip {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.55;
}
.sd-apply-ok__cred {
  margin: 0 0 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f5f8fc;
  border: 1px solid var(--sd-line);
}
.sd-apply-ok__cred > span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--sd-muted);
  margin-bottom: 4px;
}
.sd-apply-ok__cred > strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--sd-ink);
  word-break: break-all;
}
.sd-apply-ok__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sd-apply-ok__row strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--sd-red);
  letter-spacing: 0.02em;
}
.sd-apply-ok__copy {
  border: 1px solid var(--sd-blue);
  background: #fff;
  color: var(--sd-blue-deep);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}
.sd-apply-ok__hint {
  margin: 12px 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 119, 255, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.2);
  font-size: 16px;
  font-weight: 800;
  color: var(--sd-blue-deep);
  line-height: 1.5;
}
.sd-apply-ok__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sd-apply-ok__actions .sd-btn {
  width: 100%;
  justify-content: center;
}
.sd-apply-ok__actions .sd-btn--ghost {
  background: #fff;
  color: var(--sd-ink);
  border: 1px solid var(--sd-line);
}

/* —— 内容加强 —— */
.sd-trust {
  position: relative;
  z-index: 3;
  margin-top: 12px;
  margin-bottom: 4px;
  padding: 0 0 12px;
}
.sd-trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
}
.sd-trust span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--sd-line);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
  font-size: 16px;
  font-weight: 800;
  color: var(--sd-ink-soft);
}

.sd-day {
  margin: 18px 0 22px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid var(--sd-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.sd-day h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
}
.sd-day ol {
  margin: 0;
  padding-left: 18px;
  list-style: decimal;
}
.sd-day li {
  margin: 8px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.5;
}
.sd-day li b {
  color: var(--sd-blue-deep);
  margin-right: 4px;
}
.sd-day__note {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--sd-line);
  font-size: 16px;
  font-weight: 800;
  color: var(--sd-muted);
}

.sd-scene {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(126, 182, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.sd-scene h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: #fff;
}
.sd-scene__grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) {
  .sd-scene__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.sd-scene article {
  padding: 12px;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.35);
  border: 1px solid rgba(126, 182, 255, 0.18);
}
.sd-scene b {
  display: block;
  margin-bottom: 6px;
  color: #7eb6ff;
  font-size: 18px;
}
.sd-scene p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #c5d5ea;
  line-height: 1.5;
}

.sd-mat-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .sd-mat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.sd-mat {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sd-line);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.sd-mat img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #e8eef7;
}
.sd-mat figcaption { padding: 12px 12px 14px; }
.sd-mat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--sd-ink);
  margin-bottom: 4px;
}
.sd-mat span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--sd-muted);
  line-height: 1.5;
}

.sd-right p + p { margin-top: 8px; }
.sd-table .is-highlight td {
  background: rgba(0, 119, 255, 0.08);
  font-weight: 800;
}

/* —— 收益举例卡片 —— */
.sd-earn-cards {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .sd-earn-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sd-earn-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--sd-line);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.sd-earn-card.is-hot {
  border-color: rgba(225, 29, 46, 0.35);
  box-shadow: 0 10px 28px rgba(225, 29, 46, 0.12);
}
.sd-earn-card img {
  width: 112px;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  border-radius: 10px;
  background: #e8eef7;
}
.sd-earn-card b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--sd-ink);
  margin-bottom: 6px;
}
.sd-earn-card.is-hot b { color: var(--sd-red); }
.sd-earn-card p {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--sd-body);
  line-height: 1.5;
}
.sd-earn-card p:last-child { margin-bottom: 0; }
.sd-earn-card strong { color: var(--sd-blue-deep); font-weight: 800; }
@media (max-width: 520px) {
  .sd-earn-card {
    grid-template-columns: 1fr;
  }
  .sd-earn-card img {
    width: 100%;
    height: 140px;
  }
}

/* —— 全文加粗加明显（全局补强） —— */
body {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0b1220 !important;
  letter-spacing: 0.01em;
}
p, li, td, th, label, summary, dd, dt, input, select, textarea, button {
  font-weight: inherit;
}
strong, b, h1, h2, h3, h4, h5 {
  font-weight: 800 !important;
}

/* —— 覆盖 type-readable 全局帽，两站再加大加粗 —— */
.dt-brand__sub,
.sd-brand__sub,
[class*="brand__sub"] {
  font-size: 15px !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  color: #334155 !important;
}
.dt-header .dt-brand__sub,
.sd-header .sd-brand__sub {
  font-size: 15px !important;
  font-weight: 700 !important;
}
.dt-kicker,
.sd-kicker,
[class*="kicker"],
[class*="eyebrow"] {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
}
.dt-section:not(.dt-section--ink):not(.dt-section--cta) .dt-section__head p,
.sd-section:not(.sd-section--ink):not(.sd-section--cta) .sd-section__head p,
.dt-prose,
.sd-prose,
.dt-note,
.sd-note,
.dt-faq__item p,
.sd-faq__item p,
.dt-form__note,
.sd-form__note,
[class*="form__note"],
[class*="form__msg"] {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
}
.dt-section:not(.dt-section--ink):not(.dt-section--cta) .dt-section__head p,
.sd-section:not(.sd-section--ink):not(.sd-section--cta) .sd-section__head p,
.dt-section:not(.dt-section--ink):not(.dt-section--cta) .dt-prose,
.sd-section:not(.sd-section--ink):not(.sd-section--cta) .sd-prose,
.dt-section:not(.dt-section--ink):not(.dt-section--cta) .dt-note,
.sd-section:not(.sd-section--ink):not(.sd-section--cta) .sd-note {
  color: #1e293b !important;
}
.dt-section__head h2,
.sd-section__head h2 {
  font-size: clamp(28px, 5.2vw, 40px) !important;
  font-weight: 800 !important;
}
.dt-hero h1,
.sd-hero h1 {
  font-size: clamp(34px, 7vw, 56px) !important;
  font-weight: 800 !important;
}
.dt-hero__lead,
.sd-hero__lead,
.dt-hero__sub,
.sd-hero__sub {
  font-size: clamp(17px, 3.6vw, 21px) !important;
  font-weight: 700 !important;
}
.dt-nav a,
.sd-nav a,
.dt-drawer__panel a,
.sd-drawer__panel a {
  font-size: 16px !important;
  font-weight: 800 !important;
}
.dt-btn,
.sd-btn,
.dt-cta-top,
.sd-cta-top {
  font-size: 16px !important;
  font-weight: 800 !important;
}
.dt-table,
.sd-table,
.dt-table th,
.sd-table th,
.dt-table td,
.sd-table td {
  font-size: 15px !important;
  font-weight: 700 !important;
}
.dt-marquee__item,
.sd-marquee__item {
  font-size: clamp(15px, 3.8vw, 18px) !important;
  font-weight: 800 !important;
}

/* —— 暗底区块文字强制高亮（修复全局加粗把标题染黑） —— */
.dt-section--ink h1,
.dt-section--ink h2,
.dt-section--ink h3,
.dt-section--ink h4,
.dt-section--cta > .wrap > .dt-section__head h1,
.dt-section--cta > .wrap > .dt-section__head h2,
.dt-section--cta > .wrap > .dt-section__head h3,
.dt-section--cta > .wrap > .dt-section__head h4,
.dt-section--cta .dt-section__head h1,
.dt-section--cta .dt-section__head h2,
.dt-section--cta .dt-section__head h3,
.dt-section--cta .dt-section__head h4,
.sd-section--ink h1,
.sd-section--ink h2,
.sd-section--ink h3,
.sd-section--ink h4,
.sd-section--cta .sd-section__head h1,
.sd-section--cta .sd-section__head h2,
.sd-section--cta .sd-section__head h3,
.sd-section--cta .sd-section__head h4,
.dt-hero h1,
.sd-hero h1,
.dt-footer .dt-brand__name,
.sd-footer .sd-brand__name {
  color: #ffffff !important;
}
.dt-section--ink .dt-section__head p,
.dt-section--cta .dt-section__head p,
.sd-section--ink .sd-section__head p,
.sd-section--cta .sd-section__head p,
.dt-section--ink > .wrap > .dt-section__head ~ p,
.dt-section--ink .dt-section__head p,
.dt-section--cta .dt-section__head p,
.sd-section--ink .sd-section__head p,
.sd-section--cta .sd-section__head p,
.dt-section--ink .dt-prose,
.dt-section--ink .dt-prose p,
.sd-section--ink .sd-prose,
.sd-section--ink .sd-prose p,
.dt-hero__lead,
.sd-hero__lead,
.dt-hero__sub,
.sd-hero__sub,
.dt-hero__dual,
.sd-hero__dual {
  color: #e8eef7 !important;
}
.dt-section--ink strong,
.dt-section--cta strong,
.sd-section--ink strong,
.sd-section--cta strong,
.dt-section--ink b,
.dt-section--cta b,
.sd-section--ink b,
.sd-section--cta b {
  color: #ffffff !important;
}
.dt-section--ink .dt-kicker,
.dt-section--cta .dt-kicker,
.sd-section--ink .sd-kicker,
.sd-section--cta .sd-kicker {
  color: #ffd0d4 !important;
}
.dt-section--cta .dt-section__head h2,
.sd-section--cta .sd-section__head h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  font-size: clamp(30px, 5.6vw, 44px) !important;
}
.dt-section--cta .dt-apply-bullets span,
.sd-section--cta .sd-apply-bullets span {
  color: #ffffff !important;
  font-weight: 800 !important;
}
.dt-footer,
.sd-footer {
  color: #c5d5ea !important;
}
.dt-footer a,
.sd-footer a {
  color: #e8eef7 !important;
  font-weight: 700 !important;
}
.dt-footer__copy,
.sd-footer__copy {
  color: #9eb2cc !important;
}

/* 立刻申请落到表单，避开顶栏遮挡 */
#apply-form,
#apply {
  scroll-margin-top: 84px;
}
.sd-sticky__inner {
  text-decoration: none;
  color: inherit;
}
.sd-sticky__btn {
  /* span button look when whole bar is <a> */
}

/* —— 暗底里的浅色卡片：强制深色字（合规声明/表单等） —— */
.dt-section--cta .dt-legal,
.dt-section--ink .dt-legal,
.sd-section--cta .sd-legal,
.sd-section--ink .sd-legal {
  color: #1e293b !important;
}
.dt-section--cta .dt-legal h1,
.dt-section--cta .dt-legal h2,
.dt-section--cta .dt-legal h3,
.dt-section--cta .dt-legal h4,
.dt-section--ink .dt-legal h1,
.dt-section--ink .dt-legal h2,
.dt-section--ink .dt-legal h3,
.dt-section--ink .dt-legal h4,
.dt-legal h3 {
  color: #b50f1d !important;
  text-shadow: none !important;
}
.dt-section--cta .dt-legal p,
.dt-section--cta .dt-legal li,
.dt-section--cta .dt-legal strong,
.dt-section--cta .dt-legal b,
.dt-section--ink .dt-legal p,
.dt-section--ink .dt-legal li,
.dt-section--ink .dt-legal strong,
.dt-section--ink .dt-legal b,
.dt-legal p,
.dt-legal li {
  color: #1e293b !important;
}
.dt-section--cta .dt-form,
.dt-section--ink .dt-form,
.sd-section--cta .sd-form,
.sd-section--ink .sd-form {
  color: #0b1220 !important;
}
.dt-section--cta .dt-form h1,
.dt-section--cta .dt-form h2,
.dt-section--cta .dt-form h3,
.dt-section--cta .dt-form label,
.dt-section--cta .dt-form strong,
.sd-section--cta .sd-form h1,
.sd-section--cta .sd-form h2,
.sd-section--cta .sd-form h3,
.sd-section--cta .sd-form label,
.sd-section--cta .sd-form strong,
.dt-form label,
.sd-form label {
  color: #0b1220 !important;
  text-shadow: none !important;
}
.dt-section--cta .dt-form p,
.dt-section--cta .dt-form li,
.sd-section--cta .sd-form p,
.sd-section--cta .sd-form li,
.dt-form__note,
.sd-form__note {
  color: #334155 !important;
}
.dt-section--cta .dt-form input,
.dt-section--cta .dt-form select,
.dt-section--cta .dt-form textarea,
.sd-section--cta .sd-form input,
.sd-section--cta .sd-form select,
.sd-section--cta .sd-form textarea {
  color: #0b1220 !important;
}
/* 白底/浅底卡片通用：不被父级暗底染白 */
.dt-section--cta .dt-card,
.dt-section--ink .dt-card,
.sd-section--cta .sd-card,
.sd-section--ink .sd-card,
.dt-section--cta .dt-compare__good,
.dt-section--cta .dt-compare__bad,
.sd-section--cta .sd-compare__good,
.sd-section--cta .sd-compare__bad {
  color: #0b1220 !important;
}
.dt-section--cta .dt-card h3,
.dt-section--ink .dt-card h3,
.sd-section--cta .sd-card h3,
.sd-section--ink .sd-card h3 {
  color: #0b1220 !important;
  text-shadow: none !important;
}

