/* ==========================================================================
   2026 北京国际印刷包装创新发展研讨会 · 移动端 V3
   版式依据：Figma「07 · 移动端修改」
     · 首页  node 197:4042  「会议移动端 · V3 · 可编辑」390×1910
     · 浮层  node 197:4273  「Mobile / 报名弹窗 / 390×844」
   设计基准宽 390；内容区最大 560，再宽不再放大，居中显示。
   ========================================================================== */

/* ------------------------------- 令牌 ------------------------------- */
:root {
  --maxw: 560px;

  --page:      #FAFBFC;   /* 页面底色 */
  --outer:     #EDF1F7;   /* 560 以外的底 */
  --card:      #FFFFFF;

  --blue:      #2755D9;   /* 主蓝：标题 / 编号底 / 按钮 */
  --blue-2:    #1555FF;   /* 强调蓝：序号 / 时间 / 图标 */
  --blue-3:    #1D59ED;   /* 报名按钮 */
  --blue-4:    #1457EF;   /* 卡片标签 */
  --blue-5:    #4375FF;   /* 时间线节点描边 */
  --ink:       #142650;   /* 正文深色 */
  --ink-2:     #132238;   /* 页眉标题 */
  --ink-3:     #63718E;   /* 亮点描述 */
  --muted:     #6E7B96;   /* 卡内次要文字 */
  --muted-2:   #8C9CBB;   /* 报名栏地点 */
  --muted-3:   #9AAAC3;   /* 英文小标 */
  --en:        #C6D1E7;   /* 章节英文 */
  --line:      #E7EDF6;   /* 分割线 */

  --form-ink:  #15161A;
  --form-ink2: #2B2E33;
  --form-line: #DCE2EA;
  --form-ph:   #9AA9C0;
  --form-sub:  #657183;

  --shadow:    0 3px 12px rgba(43, 105, 179, .055);
  --pad-x:     12px;
  --sec-gap:   12px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--outer);
}

body {
  margin: 0;
  padding: 0;
  background: var(--outer);
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
               "Source Han Sans SC", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
a { text-decoration: none; }
button { font-family: inherit; }

/* iOS / Safari 会把手机号、日期自动识别成链接并强制上蓝（在深蓝卡片上尤其扎眼）。
   真正的开关是 head 里的 <meta name="format-detection" content="telephone=no">，
   这条是兜底：部分 iOS 版本识别后只加 x-apple-data-detectors 属性，规则里压掉它的着色。 */
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

/* 会务咨询是深蓝底白字：若 iOS 把整块内容都包进检测链接，
   inherit 会一路落到 body 的深色，这里显式钉成白色 */
.cc a[x-apple-data-detectors] { color: #FFFFFF !important; }

/* 内容区：最小铺满，最大 560，居中 */
.page {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--page);
  min-height: 100vh;
  /* 给底部固定报名栏留出空间 */
  padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

/* ============================ 01 顶部与主视觉 ============================ */
.hero {
  position: relative;
  padding-bottom: 13px;   /* 双卡下缘到区块底 13 */
}

/* 品牌页眉 390×60：pad 14/20，LOGO 36，间距 8 */
.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 14px 20px;
  overflow: hidden;
}

/* 标题右侧的柔光背景切图：固定 264×60，贴右，opacity .6 */
.brand__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 264px;
  height: 60px;
  opacity: .6;
  background: url("img/m3/head-bg@3x.jpg") center / cover no-repeat;
  pointer-events: none;
}

.brand__mark {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
}
.brand__mark svg { display: block; width: 36px; height: 36px; }

.brand__title {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--ink-2);
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Banner 390×220 通栏 */
.hero__banner {
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 220;
  object-fit: cover;
}

/* 时间地点双卡：366 宽（左右各 12），gap 8，上移 57 压住 Banner 下沿 */
.hero__cards {
  display: flex;
  gap: 8px;
  margin: -57px var(--pad-x) 0;
  position: relative;
}

/* 116 高 = pad 8 + 内容 96 + pad 12（设计稿底边留 12）
   卡片压 Banner 上，做半透明毛玻璃：底 72% 白 + 背景模糊（Safari 要带 -webkit- 前缀） */
.infocard {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 6px 12px;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* 不支持背景模糊的老浏览器（会透出花掉的 Banner）→ 退回纯白卡 */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .infocard { background: #FFFFFF; }
}

.infocard__ico { flex: 0 0 auto; width: 24px; height: 24px; }
.infocard__ico svg { display: block; }

/* 内容 96 = 标签 24 + 4 + 日期 24 + 8 + 说明 36 */
.infocard__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.infocard__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  color: var(--blue-4);
  margin-bottom: 4px;
}

/* 日期 / 场馆：18/700，行高 24 / 20 */
.infocard__main {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}

.infocard__sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--muted);
}

/* ============================== 通用区块 ============================== */
.sec { padding: var(--pad-x); }

/* 区块标题行：中文 20/700，英文 8.5/900 贴右底对齐；左侧 4×24 蓝条压在区块左边缘 */
.sec__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 30px;
  margin-bottom: var(--sec-gap);
}

.sec__head::before {
  content: "";
  position: absolute;
  left: calc(var(--pad-x) * -1);
  top: 6px;
  width: 4px;
  height: 24px;
  background: var(--blue);
  /* Figma：4×24，Corner radius Mixed = 左上/左下 0、右上/右下 6
     （条宽只有 4，浏览器会把右侧圆角按比例收紧，视觉上就是右端小圆角） */
  border-radius: 0 6px 6px 0;
}

.sec__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--ink);
}

.sec__en {
  margin-left: auto;
  font-size: 8.5px;
  font-weight: 900;
  line-height: 12px;
  letter-spacing: .06em;
  color: var(--en);
}

/* ============================== 02 会议亮点 ============================== */
.hl-row { display: flex; gap: var(--sec-gap); }
.hl-row + .hl-row { margin-top: var(--sec-gap); }

.hl {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 134px;
  /* 12 + 顶行 26 + 4 + 标题 24 + 4 + 描述 54 + 10 = 134
     （标题按客户走查要求由 13/20 改为 16/24，卡高相应 +4） */
  padding: 12px 12px 10px;
  background: var(--card);
  border-radius: 9px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hl__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 57px;
  pointer-events: none;
}

.hl__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 26px;
}

.hl__no {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--blue-2);
}

.hl__ico {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hl__ico svg { display: block; }

/* 卡片小标题：16/24（客户走查指定） */
.hl__t {
  position: relative;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--ink);
}

/* 卡片正文：颜色 #6E7B96（即 --muted）、字重 regular（客户走查指定） */
.hl__d {
  position: relative;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--muted);
}

/* ============================== 03 会议议程 ============================== */
.agenda {
  background: var(--card);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.agenda + .agenda,
.lunch + .agenda,
.agenda + .lunch { margin-top: var(--sec-gap); }

.agenda__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 14px;
}
.agenda__bar--am { background: #E2EFFF; }
.agenda__bar--pm { background: #DFF5F5; gap: 4px; }

.agenda__bar-ico {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda__bar--am .agenda__bar-ico { width: 20px; height: 20px; }
.agenda__bar--pm .agenda__bar-ico { width: 24px; height: 24px; margin-left: -2px; }

.agenda__bar-t {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--ink);
}

.agenda__bar-en {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  color: var(--muted-3);
  white-space: nowrap;
}

.agenda__list { padding: 10px; }

/* 一行 36 高；三列：节点 12 / 时间 72 / 内容自适应，列距 12，行内左右各留 5 */
.agenda__row {
  display: grid;
  grid-template-columns: 12px 72px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  height: 36px;
  padding: 0 5px;
}

/* 时间线节点：26 高的竖线 + 线上居中的 6×6 圆点（流内元素，不用绝对定位压到邻行） */
.agenda__node {
  position: relative;
  width: 12px;
  height: 26px;
}
.agenda__node::before {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 0;
  width: 1px;
  height: 26px;
  background: #D8E5FF;
}
.agenda__node::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--blue-5);
}

.agenda__time {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: var(--blue-2);
  white-space: nowrap;
}

.agenda__txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  color: var(--ink);
}

/* 午间休息条 */
.lunch {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  background: #EAEFF4;
}
.lunch__ico { flex: 0 0 auto; width: 20px; height: 20px; }
.lunch__ico svg { display: block; }
.lunch__time {
  flex: 0 0 72px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: var(--blue-2);
}
.lunch__txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--ink);
}

/* ============================== 04 组织单位 ============================== */
.orgs {
  position: relative;
  padding: 16px;
  background: var(--card);
  border-radius: 9px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* 校园插画切图：贴右下，固定 219×78
   切图本身已带 alpha=76/255（≈0.3）的半透明，CSS 里不要再叠 opacity，
   否则实际透明度变成 0.3×0.3≈0.09，肉眼几乎看不见。 */
.orgs__deco {
  position: absolute;
  right: 11px;
  bottom: 13px;
  width: 219px;
  height: 78px;
  pointer-events: none;
}

.orgs__row {
  position: relative;
  display: flex;
  gap: 16px;
}

.orgs__label {
  flex: 0 0 56px;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: var(--blue-2);
}

.orgs__val {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: var(--ink);
}

.orgs__hr {
  position: relative;
  height: 1px;
  margin: 8px 0;
  background: var(--line);
}

/* ============================== 05 会务咨询 ============================== */
.contact {
  position: relative;
  padding: 12px;
  border-radius: 9px;
  background: linear-gradient(90deg, #0849B8 0%, #2264F5 100%);
  overflow: hidden;
}

/* 背景弧线：贴右上，136×100 */
.contact__arc {
  position: absolute;
  top: 0;
  right: 0;
  width: 136px;
  height: 100px;
  pointer-events: none;
}

.contact__lead {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #FFFFFF;
}

.contact__cards {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.cc {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px;
  background: #306DDD;
  border: 1px solid #5B8AE1;
  border-radius: 8px;
}

.cc__top { display: flex; flex-direction: column; gap: 7px; }

.cc__id { display: flex; align-items: center; gap: 8px; }

.cc__ava { flex: 0 0 auto; width: 32px; height: 32px; }
.cc__ava svg { display: block; }

.cc__name-tel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cc__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #FFFFFF;
}

.cc__tel {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #FFFFFF;
  white-space: nowrap;
}

.cc__mail {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #D9E7FF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cc__mail:hover { color: #FFFFFF; }

/* 拨号按钮：整条 28 高，内容居中 */
.cc__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 28px;
  border-radius: 14px;
  background: #F2FAFF;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  -webkit-tap-highlight-color: transparent;
}
.cc__call svg { display: block; flex: 0 0 auto; }
.cc__call:active { background: #E3F2FF; }

/* ============================== 06 页尾标语 ============================== */
.foot {
  position: relative;
  padding: 16px var(--pad-x) 37px;
  overflow: hidden;
}

/* 柔和曲线：通栏，贴底 70 高 */
.foot__curve {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
}

.foot__text {
  position: relative;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: var(--blue);
  text-align: center;
}

/* ========================= 07 报名栏（固定页面底端） ========================= */
.bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 60;
  pointer-events: none;
}

.bar__in {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 68px;
  padding: 0 18px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 -3px 12px rgba(43, 105, 179, .10);
}

.bar__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar__cal {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #EAF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bar__cal svg { display: block; }

.bar__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bar__date {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--ink);
  white-space: nowrap;
}

.bar__venue {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: var(--muted-2);
  white-space: nowrap;
}

.bar__btn {
  flex: 0 0 auto;
  width: 168px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-3);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
}
.bar__btn svg { display: block; flex: 0 0 auto; }
.bar__btn:active { background: #1A4FD6; }

/* ============================== 报名浮层 ============================== */
.sheet {
  position: fixed;
  /* 不用 inset 简写：老 iOS Safari（<14.1）不认，会让浮层丢掉尺寸，
     成功态的百分比居中就全错位。四边显式写，全版本通吃。 */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.sheet[hidden] { display: none; }

.sheet__mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
}

.sheet__dlg {
  position: absolute;
  left: 50%;
  top: 19px;
  transform: translateX(-50%);
  width: calc(100% - 39px);
  max-width: 480px;
  max-height: calc(100% - 38px);
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  /* overflow:clip 只裁剪、不生成滚动容器。
     单用 hidden 时，弹窗是可被程序滚动的容器：表单里的隐藏 radio/checkbox 用绝对定位、
     又不带 top/left，会被算到弹窗底部之外，focus() 它们会把整个弹窗往上滚 ~246px，
     弹窗底部就露出一大片空白。clip 从根上堵掉，老 Safari 不认这条时还有下面两条兜底。 */
  overflow: clip;
}

/* --- 固定标题区 --- */
.sheet__hd {
  flex: 0 0 auto;
  padding: 16px 20px;
  border-bottom: 1px solid var(--form-line);
}

.sheet__hd-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sheet__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--blue);
  padding-top: 5px;
}

.sheet__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sheet__close:active { background: #F2F5FA; }

.sheet__sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--form-sub);
}

/* 成功态：这句小字里的时间与下方「2026年10月9日北京印刷学院见」重复，隐藏 */
.sheet.is-done .sheet__sub { display: none; }

/* 成功态：内容比表单短得多，让它整体在浏览器里上下居中（表单态仍贴顶）。
   写 -webkit- 前缀兜住老 iOS 内核；水平方向沿用基础的 translateX(-50%)。 */
.sheet.is-done .sheet__dlg {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* --- 滚动内容区 --- */
.sheet__bd {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px;
  overscroll-behavior: contain;
}

.field + .field { margin-top: 16px; }
.field[hidden] { display: none; }

.field__lb {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: var(--form-ink);
}

/* 设计稿里这个「*」被写成了白色（等于看不见）。必填标记按可见处理，
   否则用户提交报错时无从判断哪个字段必填。 */
.req { color: #E5484D; }

.field__ip { margin-top: 12px; }

.ip {
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--form-line);
  border-radius: 6px;
  background: #FFFFFF;
  color: var(--form-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.ip::placeholder { color: var(--form-ph); }
.ip:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(39, 85, 217, .10);
}

/* 参会身份下拉 */
.sel { position: relative; }

.sel__el {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}
.sel__el.is-empty { color: var(--form-ph); }
.sel__el option { color: var(--form-ink); }

.sel__arw {
  position: absolute;
  top: 0;
  right: 6px;
  width: 28px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sel__arw svg { display: block; }

/* 单选：愿意 / 不愿意 */
.radios {
  display: flex;
  align-items: center;
  gap: 41px;
  margin-top: 12px;
  height: 24px;
}

.radio {
  position: relative;   /* 原生 radio 绝对定位的参照，别落到弹窗上把弹窗撑出滚动区 */
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.radio__dot {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.radio__dot::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #737780;
  border-radius: 50%;
  background: #FFFFFF;
}
.radio input:checked + .radio__dot::before { border-color: var(--blue); }
.radio input:checked + .radio__dot::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.radio input:focus-visible + .radio__dot::before { box-shadow: 0 0 0 3px rgba(39, 85, 217, .18); }

.radio__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--form-ink2);
}

/* 同意条款 */
.consent {
  position: relative;   /* 同上：原生 checkbox 绝对定位的参照 */
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 0;
  margin-top: 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.consent input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.consent__box {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.consent__box::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #737780;
  border-radius: 2px;
  background: #FFFFFF;
}
.consent input:checked + .consent__box::before {
  border-color: var(--blue);
  background: var(--blue);
}
.consent input:checked + .consent__box::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}

.consent__txt {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: var(--blue);
}

/* 提示条 */
.form-msg {
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
  color: #D93A3A;
  display: none;
}
.form-msg.is-on { display: block; }
.form-msg.is-ok { color: #1E9E6A; }

/* --- 固定底部操作 --- */
.sheet__ft {
  flex: 0 0 auto;
  padding: 16px 20px;
  border-top: 1px solid var(--form-line);
}
.sheet__ft[hidden] { display: none; }

.sheet__submit {
  display: block;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sheet__submit:active { background: #1F47B8; }
.sheet__submit[disabled] { opacity: .6; cursor: default; }

/* --- 成功态 --- */
.sheet__done {
  flex: 1 1 auto;
  min-height: 0;
  padding: 48px 24px 32px;
  text-align: center;
  overflow-y: auto;
}
.sheet__done[hidden] { display: none; }

.sheet__tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #EAF2FF;
  color: var(--blue);
}
.sheet__done h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--ink);
}
.sheet__done p {
  margin: 8px 0 24px;
  font-size: 13px;
  line-height: 21px;
  color: var(--ink-3);
}

/* 打开时锁滚动 */
body.is-lock { overflow: hidden; }

/* ============================== 窄屏兜底 ============================== */
@media (max-width: 359px) {
  .brand__title { font-size: 15px; }
  .infocard__main { font-size: 16px; }
  .cc__tel, .cc__mail { font-size: 11px; }
  .bar__btn { width: 132px; }
  .bar__info { gap: 8px; }
  .hl__d { font-size: 11px; }
}
