/* 本文件与 index_article.htm 同目录，用于本地保存离线展示 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.ze024bbody {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans SC",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #0f172a;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(16, 185, 129, 0.14), transparent 60%),
    #f7fafc;
}

.ze024bpage {
  min-height: 100vh;
  overflow-x: clip;
}

.ze024bcontainer {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  min-width: 0;
}

/* 避免锚点跳转时被 sticky header 遮挡 */
.ze024bmain section[id] {
  scroll-margin-top: 88px;
}

.ze024bheader {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.ze024bheaderInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.ze024bbrand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.ze024bbrandMark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.95));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ze024bbrandName {
  font-weight: 800;
  line-height: 1.15;
}

.ze024bbrandSub {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.7);
}

.ze024bnavToggle {
  display: none;
}

.ze024bnavToggleBtn {
  display: none;
}

.ze024bnavList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ze024bnavLink {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.8);
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  display: inline-block;
}

.ze024bnavLink:hover {
  background: rgba(37, 99, 235, 0.10);
  color: rgba(37, 99, 235, 0.95);
  transform: translateY(-1px);
}

.ze024bmain {
  padding-bottom: 32px;
}

.ze024bhero {
  padding: 34px 0 10px;
}

.ze024bheroGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.ze024bheroLeft,
.ze024bheroRight,
.ze024bcard,
.ze024btimeItem,
.ze024bfeature,
.ze024bprivacyCard,
.ze024bkeywordCol,
.ze024bfaqItem {
  min-width: 0;
}

.ze024bheroRight {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.ze024bheroImageWrap {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.06);
}

.ze024bheroImage {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.ze024bh1 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.ze024blead {
  margin: 14px 0 18px;
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.78);
}

.ze024bctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ze024bbtn {
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ze024bbtn_full {
  width: 100%;
}

.ze024bbtn_primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.95));
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.ze024bbtn_primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.ze024bbtn_ghost {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(15, 23, 42, 0.86);
  border-color: rgba(15, 23, 42, 0.12);
}

.ze024bbtn_ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.25);
}

.ze024bquickFacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.ze024bfact {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 12px;
}

.ze024bfactTop {
  font-weight: 900;
  color: rgba(37, 99, 235, 0.95);
}

.ze024bfactTitle {
  margin-top: 6px;
  font-weight: 900;
}

.ze024bfactText {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.55;
}

.ze024bpanel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.ze024bpanelTitle {
  font-weight: 950;
  font-size: 16px;
}

.ze024bpanelText {
  margin: 10px 0 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.78);
}

.ze024btagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ze024btag {
  background: rgba(37, 99, 235, 0.10);
  color: rgba(37, 99, 235, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12.5px;
}

.ze024bpanelDivider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 10px 0 14px;
}

.ze024bpanelSteps {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.ze024bpanelStep {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ze024bstepNo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.14);
  color: rgba(16, 185, 129, 0.95);
  font-weight: 900;
}

.ze024bstepTitle {
  font-weight: 900;
}

.ze024bstepText {
  margin-top: 4px;
  font-size: 12.8px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.75);
}

.ze024bsection {
  padding: 34px 0;
}

/* 统一增强板块分隔感：相邻 section 之间增加更粗分割线 */
.ze024bmain > .ze024bsection + .ze024bsection {
  border-top: 2px solid rgba(148, 163, 184, 0.35);
}

/* 主横幅（hero）与服务范围首个 section 之间的分隔线 */
.ze024bmain > .ze024bhero + .ze024bsection {
  border-top: 2px solid rgba(148, 163, 184, 0.35);
}

.ze024bsectionAlt {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), transparent 40%);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.ze024bsectionAlt2 {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent 45%);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.ze024bsectionHead {
  text-align: center;
  margin-bottom: 18px;
}

.ze024bh2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.1px;
  font-weight: 980;
}

.ze024bsectionSub {
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.8;
  font-size: 14.5px;
}

.ze024bh3 {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}

.ze024bcardGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ze024bcard {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.ze024bcardIcon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.10);
  color: rgba(37, 99, 235, 0.95);
  display: grid;
  place-items: center;
}

.ze024bcardText {
  margin-top: 10px;
  font-size: 13.7px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.78);
}

.ze024bcardMeta {
  margin-top: 12px;
  font-size: 12.7px;
  color: rgba(15, 23, 42, 0.65);
}

.ze024bkeywordPanel {
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.52);
  padding: 16px;
}

.ze024bkeywordPanelHead {
  margin-bottom: 12px;
}

.ze024bkeywordSub {
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.75;
  font-size: 13.8px;
  max-width: 720px;
}

.ze024bkeywordGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ze024bkeywordCol {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 12px;
}

.ze024bkeywordTitle {
  font-weight: 980;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.ze024btimeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.ze024btimeItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  height: 100%;
}

.ze024btimeNo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.14);
  color: rgba(37, 99, 235, 0.95);
  font-weight: 980;
}

.ze024btimeBody .ze024bh3 {
  margin-top: 2px;
}

.ze024bfeatureRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.ze024bfeature {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  height: 100%;
}

.ze024bfeatureTitle {
  font-weight: 980;
}

.ze024bfeatureText {
  margin-top: 8px;
  font-size: 13.7px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.76);
}

.ze024btwoCol {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.ze024barticle {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.ze024blist {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.85;
  font-size: 14px;
}

.ze024blistItem {
  margin: 6px 0;
}

.ze024bstickyPanel {
  position: sticky;
  top: 96px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.ze024bstickyTop {
  padding: 14px 16px;
  font-weight: 980;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.10));
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ze024bstickyBody {
  padding: 14px 16px 10px;
  display: grid;
  gap: 10px;
}

.ze024bstickyRow {
  display: grid;
  gap: 6px;
}

.ze024bstickyK {
  font-size: 12.8px;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.62);
}

.ze024bstickyV {
  font-weight: 980;
  letter-spacing: -0.1px;
}

.ze024bstickyBottom {
  padding: 12px 16px 16px;
}

.ze024bsubGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.ze024bsubCard {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.ze024bprivacyFrame {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 14px;
  align-items: start;
}

.ze024bprivacyRail {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 14px;
}

.ze024bprivacyRailTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.ze024bprivacyBadge {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.95));
  padding: 6px 10px;
  border-radius: 999px;
}

.ze024bprivacySteps {
  display: grid;
  gap: 10px;
}

.ze024bprivacyStep {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.ze024bprivacyNo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 980;
  color: rgba(37, 99, 235, 0.95);
  background: rgba(37, 99, 235, 0.14);
}

.ze024bprivacyStepTitle {
  font-weight: 950;
}

.ze024bprivacyStepText {
  margin-top: 4px;
  font-size: 13.3px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.75);
}

.ze024bprivacyMain {
  display: grid;
  gap: 12px;
}

.ze024bprivacyGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ze024bprivacyCard {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 14px;
  height: 100%;
}

.ze024bprivacyTitle {
  font-weight: 980;
}

.ze024bprivacyNote {
  border-radius: 16px;
  border: 1px dashed rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.82);
}

.ze024bcaseGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ze024bcaseCard {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.ze024bcaseTags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ze024bchip {
  font-size: 12.5px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.75);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.ze024bfaqFrame {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 14px;
  align-items: start;
}

.ze024bfaqAside {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 14px;
  position: sticky;
  top: 92px;
}

.ze024bfaqAsideTitle {
  font-weight: 980;
  font-size: 16px;
}

.ze024bfaqAsideList {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.ze024bfaqAsideItem {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.85);
  padding: 10px 12px;
  font-weight: 850;
  font-size: 13.6px;
  color: rgba(15, 23, 42, 0.82);
}

.ze024bfaqAsideTip {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.08);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.8);
}

.ze024bfaqMain {
  display: grid;
  gap: 12px;
}

.ze024bfaqGroupTitle {
  font-size: 14.8px;
  font-weight: 980;
  color: rgba(15, 23, 42, 0.84);
  margin-top: 2px;
}

.ze024bfaqGrid {
  display: grid;
  gap: 10px;
}

.ze024bfaqItem {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 0 14px;
}

.ze024bfaqSummary {
  padding: 12px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 980;
  font-size: 14.4px;
}

.ze024bfaqSummary::-webkit-details-marker {
  display: none;
}

.ze024bfaqBody {
  padding: 0 0 12px;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.75;
  font-size: 13.8px;
}

.ze024bcontactWrap {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 18px;
}

.ze024bcontactHead {
  text-align: center;
}

.ze024bcontactFrame {
  margin-top: 10px;
  display: grid;
  gap: 14px;
}

.ze024bcontactFlow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ze024bcontactFlowItem {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
}

.ze024bcontactFlowNo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 980;
  color: rgba(37, 99, 235, 0.95);
  background: rgba(37, 99, 235, 0.14);
}

.ze024bcontactFlowTitle {
  font-weight: 950;
}

.ze024bcontactFlowText {
  margin-top: 4px;
  font-size: 13.2px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.75);
}

.ze024bcontactGrid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  margin-top: 10px;
}

.ze024bform {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.ze024bformRow {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.ze024blabel {
  font-weight: 920;
  font-size: 14px;
}

.ze024binput,
.ze024bselect,
.ze024btextarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  background: rgba(248, 250, 252, 0.9);
}

.ze024btextarea {
  resize: vertical;
}

.ze024binput:focus,
.ze024bselect:focus,
.ze024btextarea:focus {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.ze024bformActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ze024bformHint {
  margin: 12px 0 0;
  font-size: 12.8px;
  color: rgba(15, 23, 42, 0.68);
  line-height: 1.6;
}

.ze024bcontactAside {
  display: grid;
  gap: 14px;
}

.ze024basideCard {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.ze024basideCardAlt {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.78));
}

.ze024basideTitle {
  font-weight: 980;
  margin-bottom: 10px;
}

.ze024bbullets {
  display: grid;
  gap: 10px;
}

.ze024bbullet {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.8);
}

.ze024bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.95));
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.18);
}

.ze024bfooter {
  margin-top: 12px;
  padding: 16px 0 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.ze024bfooterInner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
  align-items: start;
}

.ze024bfooterBrand {
  font-weight: 980;
}

.ze024bfooterText {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
  font-size: 13px;
}

.ze024bfooterTitle {
  font-weight: 980;
  margin-bottom: 6px;
  font-size: 14px;
}

.ze024bfooterLinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.ze024bfooterLink {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.8);
  font-weight: 820;
  font-size: 13px;
  padding: 7px 8px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.ze024bfooterLink:hover {
  border-color: rgba(37, 99, 235, 0.25);
}

.ze024bcopyright {
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.65);
  font-size: 12.4px;
  line-height: 1.5;
}

.ze024bfooter .ze024blist {
  margin: 6px 0 0;
  padding-left: 16px;
  line-height: 1.6;
  font-size: 13px;
}

.ze024bfooter .ze024bcontainer + .ze024bcontainer {
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
  .ze024bcontainer {
    max-width: 1040px;
  }
}

@media (max-width: 980px) {
  .ze024bcontainer {
    padding: 0 16px;
  }
  .ze024bsection {
    padding: 30px 0;
  }
  .ze024bheroGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ze024bheroRight {
    justify-content: flex-start;
    order: 2;
    width: 100%;
  }
  .ze024bheroLeft {
    order: 1;
  }
  .ze024bheroImageWrap {
    max-width: 100%;
  }
  .ze024bquickFacts {
    grid-template-columns: 1fr;
  }
  .ze024bcardGrid {
    grid-template-columns: 1fr 1fr;
  }
  .ze024btimeline {
    grid-template-columns: 1fr;
  }
  .ze024bfeatureRow {
    grid-template-columns: 1fr;
  }
  .ze024btwoCol {
    grid-template-columns: 1fr;
  }
  .ze024bstickyPanel {
    position: relative;
    top: auto;
  }
  .ze024bsubGrid {
    grid-template-columns: 1fr;
  }
  .ze024bprivacyFrame {
    grid-template-columns: 1fr;
  }
  .ze024bprivacyGrid {
    grid-template-columns: 1fr 1fr;
  }
  .ze024bcaseGrid {
    grid-template-columns: 1fr;
  }
  .ze024bcontactGrid {
    grid-template-columns: 1fr;
  }
  .ze024bcontactFlow {
    grid-template-columns: 1fr 1fr;
  }
  .ze024bfaqFrame {
    grid-template-columns: 1fr;
  }
  .ze024bfaqAside {
    position: relative;
    top: auto;
  }
  .ze024bfooterInner {
    grid-template-columns: 1fr;
  }

  .ze024bkeywordGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ze024bcontainer {
    padding: 0 14px;
  }
  .ze024bsection {
    padding: 24px 0;
  }
  .ze024bmain > .ze024bsection + .ze024bsection,
  .ze024bmain > .ze024bhero + .ze024bsection {
    border-top-width: 1px;
  }
  .ze024bh1 {
    font-size: 24px;
  }
  .ze024blead {
    line-height: 1.7;
  }
  .ze024bh2 {
    font-size: 23px;
  }
  .ze024bnav {
    width: 100%;
  }
  .ze024bnavList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .ze024bnavLink {
    width: 100%;
    text-align: center;
    padding: 8px 6px;
    font-size: 12.5px;
  }
  .ze024bbtn {
    width: 100%;
  }
  .ze024bctaRow {
    gap: 10px;
  }
  .ze024bh3 {
    font-size: 15px;
  }
  .ze024bcardText {
    font-size: 13.4px;
    line-height: 1.7;
  }
  .ze024bcardMeta {
    font-size: 12.4px;
    margin-top: 10px;
  }
  .ze024bcardIcon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .ze024bcardGrid {
    grid-template-columns: 1fr;
  }
  .ze024bprivacyGrid {
    grid-template-columns: 1fr;
  }
  .ze024bnavList {
    justify-content: flex-start;
  }
  .ze024bheaderInner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ze024bcontactFlow {
    grid-template-columns: 1fr;
  }
  .ze024bfooterLinks {
    grid-template-columns: 1fr 1fr;
  }
  .ze024bheroImageWrap {
    padding: 6px;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
  }
  .ze024bheroImage {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 420px) {
  .ze024bheader {
    position: static;
  }
  .ze024bmain section[id] {
    scroll-margin-top: 12px;
  }
  .ze024bbrand {
    min-width: 0;
  }
  .ze024bbrandName {
    font-size: 16px;
  }
  .ze024bbrandSub {
    font-size: 11px;
  }
  .ze024bnavList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
  }
  .ze024bnavLink {
    padding: 7px 6px;
    font-size: 12px;
  }
  .ze024btagRow {
    gap: 6px;
    margin-bottom: 10px;
  }
  .ze024bhero {
    padding-top: 20px;
  }
  .ze024bheroImageWrap {
    padding: 5px;
    border-radius: 12px;
  }
  .ze024bheroImage {
    border-radius: 10px;
  }
  .ze024bcard,
  .ze024btimeItem,
  .ze024bfeature,
  .ze024bprivacyCard,
  .ze024bfaqItem,
  .ze024bkeywordCol,
  .ze024bsubCard {
    padding: 12px;
    border-radius: 14px;
  }
  .ze024bprivacyRail,
  .ze024bfaqAside,
  .ze024bkeywordPanel {
    border-radius: 16px;
    padding: 12px;
  }
  .ze024bfaqSummary {
    font-size: 14px;
    padding: 10px 0;
  }
  .ze024bfaqBody {
    font-size: 13.4px;
    line-height: 1.7;
  }
  .ze024btag {
    font-size: 12px;
    padding: 5px 9px;
  }
  .ze024bfaqAsideItem {
    font-size: 13px;
    padding: 9px 10px;
  }
  .ze024bprivacyStepText,
  .ze024bfaqBody,
  .ze024bsectionSub {
    line-height: 1.65;
  }
  .ze024bfooter {
    margin-top: 14px;
    padding: 12px 0 8px;
  }
  .ze024bfooterLinks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .ze024bcontainer {
    padding: 0 12px;
  }
  .ze024bh1 {
    font-size: 22px;
    line-height: 1.2;
  }
  .ze024bh2 {
    font-size: 21px;
  }
  .ze024blead,
  .ze024bsectionSub {
    font-size: 13.4px;
  }
  .ze024bbtn {
    font-size: 13px;
    padding: 9px 12px;
  }
  .ze024bnavLink {
    font-size: 11.5px;
    padding: 6px 5px;
  }
  .ze024bbrandName {
    font-size: 15px;
  }
  .ze024bbrandSub {
    font-size: 10.5px;
  }
  .ze024btag {
    font-size: 11.5px;
    padding: 4px 8px;
  }
  .ze024bfaqSummary {
    font-size: 13.5px;
  }
}

@media (max-width: 320px) {
  .ze024bcontainer {
    padding: 0 10px;
  }
  .ze024bh1 {
    font-size: 20px;
  }
  .ze024bh2 {
    font-size: 19px;
  }
  .ze024bbtn {
    font-size: 12.5px;
    padding: 8px 10px;
  }
}

/* 移动端栏目导航：汉堡菜单收纳 */
@media (max-width: 768px) {
  .ze024bheaderInner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .ze024bbrand {
    min-width: 0;
  }
  .ze024bnavToggleBtn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.82);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .ze024bnavToggleBtn span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: rgba(15, 23, 42, 0.82);
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .ze024bnav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden auto;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, margin-top 180ms ease;
    margin-top: 0;
  }
  .ze024bnavList {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    width: 100%;
    gap: 6px;
  }
  .ze024bnavList li {
    width: 100%;
  }
  .ze024bnavLink {
    width: 100%;
    text-align: left;
    padding: 9px 10px;
    font-size: 13px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.7);
  }
  .ze024bnavToggle:checked + .ze024bnavToggleBtn + .ze024bnav {
    max-height: min(70vh, 480px);
    opacity: 1;
    margin-top: 4px;
    pointer-events: auto;
  }
  .ze024bnavToggle:checked + .ze024bnavToggleBtn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .ze024bnavToggle:checked + .ze024bnavToggleBtn span:nth-child(2) {
    opacity: 0;
  }
  .ze024bnavToggle:checked + .ze024bnavToggleBtn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* 触控设备统一提高可点击面积 */
@media (hover: none) and (pointer: coarse) {
  .ze024bnavLink,
  .ze024bbtn,
  .ze024bfaqSummary,
  .ze024bfooterLink {
    min-height: 42px;
  }
}

/* 窄屏且高度较低设备（小屏横屏/旧机型） */
@media (max-width: 768px) and (max-height: 520px) {
  .ze024bheader {
    position: static;
  }
  .ze024bhero {
    padding-top: 16px;
  }
  .ze024bsection {
    padding: 20px 0;
  }
}

/* 刘海屏安全区 */
@supports (padding: max(0px)) {
  .ze024bheader {
    padding-top: env(safe-area-inset-top);
  }
  .ze024bfooter {
    padding-bottom: max(26px, env(safe-area-inset-bottom));
  }
}
