/* 易全球｜地推团队招募 */
:root {
  --dt-blue: #0077ff;
  --dt-blue-deep: #0055cc;
  --dt-red: #e11d2e;
  --dt-red-deep: #b50f1d;
  --dt-ink: #0b1220;
  --dt-ink-soft: #1a2740;
  --dt-paper: #f4f7fb;
  --dt-paper2: #e8eef7;
  --dt-text: #0f172a;
  --dt-muted: #334155;
  --dt-body: #1e293b;
  --dt-line: rgba(15, 23, 42, 0.1);
  --dt-max: 1080px;
  --dt-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --dt-display: "Sora", "Noto Sans SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--dt-font);
  background: var(--dt-paper);
  color: var(--dt-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(--dt-max)); margin-inline: auto; }

/* —— 顶部红色循环横幅 —— */
.dt-marquee {
  position: relative;
  z-index: 150;
  overflow: hidden;
  background: linear-gradient(90deg, var(--dt-red-deep), var(--dt-red) 40%, #ff3b4a 50%, var(--dt-red) 60%, var(--dt-red-deep));
  color: #fff;
  border-bottom: 2px solid #8f0a16;
  pointer-events: none;
}
.dt-marquee__track {
  display: flex;
  width: max-content;
  animation: dt-marquee 28s linear infinite;
  will-change: transform;
}
.dt-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 dt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .dt-marquee__track { animation: none; }
}

/* —— 顶栏 —— */
.dt-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 251, 0.92);
  border-bottom: 1px solid var(--dt-line);
}
.dt-header .wrap {
  width: min(100% - 32px, 1240px);
}
.dt-header__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  overflow: hidden;
}
.dt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  max-width: min(520px, 72%);
  min-width: 0;
  position: relative;
  z-index: 2;
}
.dt-brand > span {
  min-width: 0;
  overflow: visible;
}
.dt-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.18);
}
.dt-brand__name {
  display: block;
  font-size: clamp(17px, 1.51vw, 21px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dt-header .dt-brand__name {
  font-size: clamp(24px, 3.58vw, 34px);
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.dt-header .dt-brand__sub {
  font-size: 15px;
}
.dt-brand__sub {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dt-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dt-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(--dt-body);
  white-space: nowrap;
  overflow: hidden;
}
.dt-nav a {
  flex: 0 0 auto;
  padding: 4px 2px;
}
.dt-nav a:hover { color: var(--dt-blue); }
.dt-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(--dt-blue), var(--dt-blue-deep));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}

/* 语言：宽屏顶栏可显；平板/笔记本改用抽屉，避免挤占品牌 */
.dt-header,
.dt-nav {
  overflow: visible;
}
.dt-header__inner {
  overflow: hidden;
}
.dt-header .gsc-lang-dd--header {
  display: none !important;
  flex-shrink: 0;
  margin-left: 2px;
}
.dt-header .gsc-lang-dd__btn {
  border-color: rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--dt-ink);
  min-height: 34px;
  padding: 0 10px;
  font-size: 16px;
}
.dt-header .zj-member-entry--header {
  display: none !important;
}
@media (min-width: 1280px) {
  .dt-header .gsc-lang-dd--header {
    display: block !important;
  }
  .dt-brand {
    max-width: min(560px, 48%);
    flex: 0 1 560px;
  }
  .dt-nav {
    gap: 10px;
    font-size: 16px;
  }
}
.dt-drawer .gsc-lang-dd--drawer {
  width: 100%;
  margin: 4px 0 10px;
}
.dt-drawer .gsc-lang-dd--drawer .gsc-lang-dd__btn {
  width: 100%;
  justify-content: space-between;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #e8f1ff;
}
.dt-drawer .gsc-lang-dd--drawer .gsc-lang-dd__panel {
  left: 0;
  right: 0;
  min-width: 0;
  width: 100%;
  background: #0c1424;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.dt-drawer .zj-member-entry {
  border: 1px solid rgba(245, 197, 66, 0.55) !important;
  background: rgba(245, 197, 66, 0.12) !important;
  color: #f5c542 !important;
}
.dt-drawer .zj-member-entry:hover {
  background: rgba(245, 197, 66, 0.22) !important;
  color: #ffe08a !important;
}
.dt-menu {
  display: none;
  position: relative;
  z-index: 2;
  min-height: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--dt-line);
  background: #fff;
  color: var(--dt-ink);
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.dt-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: rgba(11, 18, 32, 0.45);
}
/* 抽屉在 header 外同级；须用 body 类打开（勿写 .dt-header.is-open .dt-drawer） */
body.dt-drawer-open .dt-drawer { display: block; }
body.dt-drawer-open { overflow: hidden; }
.dt-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);
}
.dt-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;
}
.dt-drawer__topbar > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  color: #f5c542;
}
.dt-drawer__topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.dt-drawer__login.zj-member-entry,
.dt-drawer .dt-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;
}
.dt-drawer__login.zj-member-entry:hover,
.dt-drawer .dt-drawer__login:hover {
  background: rgba(245, 197, 66, 0.22) !important;
  color: #ffe08a !important;
}
.dt-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;
}
.dt-drawer__panel a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 800;
  color: #e2e8f0;
  white-space: normal;
  line-height: 1.4;
}
.dt-drawer__panel a:hover {
  background: rgba(0, 119, 255, 0.12);
  color: #fff;
}

/* <1280：顶栏改汉堡，避免导航压住品牌；宽屏再展开完整链 */
@media (max-width: 1279px) {
  .dt-nav { display: none; }
  .dt-menu { display: inline-flex; align-items: center; justify-content: center; }
  .dt-cta-top { display: none; }
  .dt-header .gsc-lang-dd--header { display: none !important; }
  .dt-brand { max-width: none; flex: 1 1 auto; }
}

/* —— Hero —— */
.dt-hero {
  position: relative;
  z-index: 1;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.dt-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;
}
.dt-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.28) 0%, rgba(11, 18, 32, 0.45) 38%, rgba(11, 18, 32, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 85, 204, 0.28), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.dt-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 0 48px;
  max-width: 860px;
  pointer-events: auto;
}

/* PC：完整展示店铺实拍（contain + 深色底），取消 cover/缩放裁切 */
@media (min-width: 901px) {
  .dt-hero {
    min-height: 0;
    width: 100%;
    aspect-ratio: 3 / 2;
    max-height: min(78vh, 720px);
    background: #0b1220;
  }
  .dt-hero__bg {
    background-size: contain;
    background-position: center center;
    background-color: #0b1220;
  }
  .dt-hero__shade {
    background:
      linear-gradient(180deg, rgba(11, 18, 32, 0.15) 0%, rgba(11, 18, 32, 0.35) 45%, rgba(11, 18, 32, 0.88) 100%),
      linear-gradient(90deg, rgba(0, 85, 204, 0.22), transparent 50%);
  }
}
@media (min-width: 1200px) {
  .dt-hero {
    max-height: min(82vh, 800px);
  }
}
.dt-hero__brand {
  font-family: var(--dt-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: dt-rise 0.7s ease 0.1s forwards;
}
.dt-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: dt-rise 0.75s ease 0.2s forwards;
}
.dt-hero__lead {
  margin: 16px 0 0;
  font-size: clamp(20px, 4.03vw, 24px);
  font-weight: 800;
  color: #e8f1ff;
  opacity: 0;
  animation: dt-rise 0.75s ease 0.32s forwards;
}
.dt-hero__sub {
  margin: 10px 0 0;
  font-size: clamp(17px, 3.58vw, 20px);
  color: #c5d5ea;
  font-weight: 700;
  opacity: 0;
  animation: dt-rise 0.75s ease 0.42s forwards;
}
.dt-hero__dual {
  margin: 14px 0 0;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(225, 29, 46, 0.88);
  font-size: 17px;
  font-weight: 800;
  opacity: 0;
  animation: dt-rise 0.75s ease 0.5s forwards;
}
.dt-hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: dt-rise 0.75s ease 0.58s forwards;
}
@keyframes dt-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.dt-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;
}
.dt-btn:hover { transform: translateY(-1px); }
.dt-btn--primary {
  background: linear-gradient(135deg, #1a8cff, var(--dt-blue-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 119, 255, 0.35);
}
.dt-btn--red {
  background: linear-gradient(135deg, #ff3b4a, var(--dt-red-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 29, 46, 0.35);
}
.dt-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

/* —— sections —— */
.dt-section {
  padding: 64px 0;
}
.dt-section--alt {
  background: #fff;
}
.dt-section--ink {
  background: linear-gradient(160deg, var(--dt-ink) 0%, var(--dt-ink-soft) 100%);
  color: #e8eef7;
}
.dt-section--ink .dt-muted,
.dt-section--ink p { color: #b8c7db; }
.dt-section--ink h2,
.dt-section--ink h3 { color: #fff; }
.dt-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(--dt-ink);
  color: #fff;
  text-align: center;
}
.dt-kicker {
  display: inline-block;
  font-family: var(--dt-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dt-blue);
  margin-bottom: 10px;
}
.dt-section--ink .dt-kicker,
.dt-section--cta .dt-kicker { color: #7eb6ff; }
.dt-section__head {
  max-width: 720px;
  margin-bottom: 28px;
}
.dt-section__head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.dt-section__head h2 {
  font-size: clamp(29px, 5.04vw, 41px);
}
.dt-section__head p {
  margin: 10px 0 0;
  color: var(--dt-muted);
  font-size: 18px;
  font-weight: 700;
}

.dt-prose {
  font-size: 20px;
  color: var(--dt-body);
  max-width: 820px;
}
.dt-prose p { margin: 0 0 14px; }
.dt-prose strong { color: var(--dt-ink); font-weight: 800; }
.dt-callout {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--dt-blue);
  background: rgba(0, 119, 255, 0.08);
  border-radius: 0 12px 12px 0;
  font-weight: 800;
  color: var(--dt-ink);
}

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

.dt-store-group {
  margin: 28px 0 8px;
}
.dt-store-featured {
  margin: 8px 0 28px;
  padding: 16px 14px 14px;
  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);
}
.dt-store-featured__head {
  margin-bottom: 12px;
}
.dt-store-featured__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dt-red), #ff4d5a);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.dt-store-featured__head h3 {
  margin: 8px 0 4px;
  font-size: clamp(21px, 3.58vw, 24px);
  font-weight: 800;
  color: var(--dt-ink);
}
.dt-store-featured__head p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dt-muted);
  line-height: 1.5;
}
.dt-store-featured__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 720px) {
  .dt-store-featured__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .dt-store-featured__hero {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
}
.dt-store-featured__hero .dt-store-card img {
  aspect-ratio: 16 / 11;
}
.dt-store-card--hero,
.dt-store-card--hot {
  border-color: rgba(225, 29, 46, 0.45);
  box-shadow: 0 10px 28px rgba(225, 29, 46, 0.14);
}
.dt-hot {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 7px;
  border-radius: 6px;
  background: var(--dt-red);
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  vertical-align: middle;
}
.dt-store-expand-label {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--dt-muted);
  letter-spacing: 0.04em;
}
.dt-store-group__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  font-size: clamp(21px, 3.58vw, 24px);
  font-weight: 800;
  color: var(--dt-ink);
}
.dt-store-group__title b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dt-blue), var(--dt-blue-deep));
  color: #fff;
  font-family: var(--dt-display);
  font-size: 16px;
}
.dt-store-group__desc {
  margin: -4px 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--dt-muted);
}
.dt-note {
  margin-top: 14px;
  font-size: 17px;
  color: var(--dt-muted);
  font-weight: 700;
}

.dt-earn-list {
  display: grid;
  gap: 16px;
}
.dt-earn {
  padding: 22px 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dt-earn h3 {
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.dt-earn__n {
  font-family: var(--dt-display);
  color: #7eb6ff;
  font-size: 17px;
  letter-spacing: 0.08em;
}
.dt-earn p { margin: 0 0 8px; font-size: 18px; }
.dt-earn ul {
  margin: 10px 0 0;
  padding-left: 18px;
  list-style: disc;
  color: #c5d5ea;
}
.dt-earn li { margin: 4px 0; font-size: 17px; font-weight: 700; }
.dt-checks {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.dt-checks li {
  font-size: 17px;
  font-weight: 800;
  color: #d7e6fa;
}
.dt-checks li::before {
  content: "✓ ";
  color: #4ade80;
  font-weight: 900;
}

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

.dt-who-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .dt-who-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.dt-who {
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--dt-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.dt-who__tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: var(--dt-blue);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.dt-who h3 { font-size: 21px; margin-bottom: 8px; }
.dt-who p { margin: 0; font-size: 17px; color: var(--dt-body); font-weight: 700; }
.dt-rules {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(225, 29, 46, 0.06);
  border: 1px solid rgba(225, 29, 46, 0.18);
  font-size: 17px;
  font-weight: 800;
  color: var(--dt-ink);
}
.dt-rules p { margin: 0 0 8px; }
.dt-rules p:last-child { margin: 0; }

.dt-support {
  display: grid;
  gap: 10px;
}
.dt-support li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 800;
  color: #e8eef7;
}
.dt-support__ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 119, 255, 0.25);
  color: #9ec5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.dt-steps {
  counter-reset: dtstep;
  display: grid;
  gap: 12px;
}
.dt-steps li {
  counter-increment: dtstep;
  position: relative;
  padding: 16px 16px 16px 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--dt-line);
  font-size: 18px;
  font-weight: 800;
  color: var(--dt-body);
}
.dt-steps li::before {
  content: counter(dtstep);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dt-blue), var(--dt-blue-deep));
  color: #fff;
  font-family: var(--dt-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.dt-mosaic__item {
  position: relative;
  grid-column: span 3;
  border-radius: 14px;
  overflow: hidden;
  min-height: 140px;
  background: #1a2740;
}
.dt-mosaic__item--lg { grid-column: span 6; min-height: 220px; }
@media (min-width: 720px) {
  .dt-mosaic__item { grid-column: span 2; min-height: 180px; }
  .dt-mosaic__item--lg { grid-column: span 4; min-height: 280px; }
}
.dt-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.dt-mosaic__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.85));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

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

.dt-legal {
  margin-top: 36px;
  padding: 20px 18px;
  border-radius: 14px;
  background: #fff7f7;
  border: 1px solid rgba(225, 29, 46, 0.22);
}
.dt-legal h3 {
  font-size: 20px;
  color: var(--dt-red-deep);
  margin-bottom: 10px;
}
.dt-legal ol {
  padding-left: 18px;
  list-style: decimal;
}
.dt-legal li {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dt-body);
}

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

.dt-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;
}
.dt-sticky.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.dt-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: linear-gradient(135deg, #ff3b4a 0%, #e11d2e 55%, #b50f1d 100%);
  box-shadow:
    0 4px 20px rgba(225, 29, 46, 0.42),
    0 10px 36px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}
.dt-sticky__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
}
.dt-sticky__copy {
  flex: 1;
  min-width: 0;
  color: #fff;
  line-height: 1.3;
}
.dt-sticky__copy strong {
  display: block;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.35;
  color: #fff !important;
  overflow-wrap: anywhere;
}
.dt-sticky__copy span {
  display: block;
  font-size: 15px !important;
  font-weight: 800 !important;
  opacity: 0.95;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff !important;
}
.dt-sticky__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  max-width: 42vw;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  color: #e11d2e !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.15s;
}
.dt-sticky__btn:active {
  transform: scale(0.97);
}
@media (max-width: 520px) {
  .dt-sticky {
    padding: 0 10px calc(10px + env(safe-area-inset-bottom, 0));
  }
  .dt-sticky__inner {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 18px;
  }
  .dt-sticky__logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .dt-sticky__copy strong {
    font-size: 15px !important;
  }
  .dt-sticky__copy span {
    font-size: 13px !important;
  }
  .dt-sticky__btn {
    min-width: 76px;
    padding: 10px 12px;
    font-size: 14px !important;
  }
}

/* 回到顶部：抬到红色报名条上方，避免遮挡 */
.site-back-top,
#siteBackTop,
.eg-back-top {
  bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
}

.dt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.dt-reveal.is-in {
  opacity: 1;
  transform: none;
}

.dt-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  max-width: min(92vw, 360px);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.92);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.dt-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* —— 图文对照 / 物料实拍 —— */
.dt-split {
  display: grid;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
}
@media (min-width: 800px) {
  .dt-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }
  .dt-split--flip .dt-split__media { order: 2; }
  .dt-split--flip .dt-split__text { order: 1; }
}
.dt-split__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}
.dt-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.dt-split__media figcaption {
  padding: 10px 14px 12px;
  font-size: 16px;
  font-weight: 800;
  color: #c5d5ea;
  background: #0b1220;
}
.dt-split__text h3 {
  font-size: clamp(22px, 3.81vw, 27px);
  margin-bottom: 10px;
  color: var(--dt-ink);
}
.dt-section--ink .dt-split__text h3 { color: #fff; }
.dt-split__text p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dt-body);
}
.dt-section--ink .dt-split__text p { color: #b8c7db; }
.dt-split__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.dt-split__tags span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 119, 255, 0.1);
  color: var(--dt-blue-deep);
  font-size: 15px;
  font-weight: 800;
}
.dt-section--ink .dt-split__tags span {
  background: rgba(126, 182, 255, 0.16);
  color: #cfe3ff;
}

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

.dt-shot-band {
  margin: 8px 0 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background: #0b1220;
}
.dt-shot-band img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 420px;
  object-fit: cover;
}
.dt-shot-band__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 18px 16px;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.9));
  color: #fff;
}
.dt-shot-band__cap strong {
  display: block;
  font-size: clamp(22px, 4.03vw, 29px);
  margin-bottom: 6px;
}
.dt-shot-band__cap span {
  font-size: 17px;
  font-weight: 700;
  color: #c5d5ea;
}

.dt-flow-visual {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 720px) {
  .dt-flow-visual { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.dt-flow-visual figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dt-line);
}
.dt-flow-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.dt-flow-visual figcaption {
  padding: 10px 12px 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--dt-ink);
}

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

.dt-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);
}
.dt-callout strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--dt-red);
  margin-bottom: 6px;
}
.dt-callout p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--dt-body);
  line-height: 1.55;
}
.dt-mat-foot {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dt-muted);
  line-height: 1.5;
}

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

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

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

.dt-who__extra {
  margin: 10px 0 0 !important;
  padding-top: 10px;
  border-top: 1px dashed var(--dt-line);
  font-size: 16px !important;
  color: var(--dt-blue-deep) !important;
}

.dt-flow-cta {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--dt-body);
}
.dt-flow-cta a {
  color: var(--dt-blue);
  font-weight: 800;
  text-decoration: underline;
}

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

.dt-apply-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin: 0 0 16px;
}
.dt-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;
}

/* —— 报名成功弹窗 —— */
.dt-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);
}
.dt-apply-ok {
  width: min(420px, 100%);
  border-radius: 18px;
  padding: 22px 20px 18px;
  background: #fff;
  color: var(--dt-ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.dt-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(--dt-red);
  font-size: 15px;
  font-weight: 800;
}
.dt-apply-ok h3 {
  margin: 0 0 10px;
  font-size: 27px;
  font-weight: 800;
  color: var(--dt-ink);
}
.dt-apply-ok__tip {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--dt-body);
  line-height: 1.55;
}
.dt-apply-ok__cred {
  margin: 0 0 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f5f8fc;
  border: 1px solid var(--dt-line);
}
.dt-apply-ok__cred > span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--dt-muted);
  margin-bottom: 4px;
}
.dt-apply-ok__cred > strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--dt-ink);
  word-break: break-all;
}
.dt-apply-ok__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.dt-apply-ok__row strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--dt-red);
  letter-spacing: 0.02em;
}
.dt-apply-ok__copy {
  border: 1px solid var(--dt-blue);
  background: #fff;
  color: var(--dt-blue-deep);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}
.dt-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(--dt-blue-deep);
  line-height: 1.5;
}
.dt-apply-ok__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dt-apply-ok__actions .dt-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.dt-apply-ok__actions .dt-btn--ghost {
  background: #fff;
  color: var(--dt-ink);
  border: 1px solid var(--dt-line);
}

/* —— 全文加粗加明显（全局补强） —— */
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;
}
.dt-sticky__inner {
  text-decoration: none;
  color: inherit;
}

/* —— 暗底里的浅色卡片：强制深色字（合规声明/表单等） —— */
.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;
}

