﻿/* =========================================================
   岁月录 V3 安卓版 · H5 全局样式
   设计系统：米白纸感 + 暗金 + 衬线标题（与 V2 小程序一致）
   ========================================================= */
:root {
  --bg: #f7f2eb;
  --card-bg: #fdfbf9;
  --text-primary: #3d2c1b;
  --text-secondary: #7d6d5f;
  --text-muted: #66574b;
  --accent: #8c6408;
  --accent-light: #d4a843;
  --accent-dark: #7f5a07;
  --divider: #e8e0d8;
  --shadow-warm: rgba(184, 134, 11, 0.08);
  --shadow-strong: rgba(184, 134, 11, 0.18);
  --spine: #b8860b;
  --highlight-bg: #faf3e0;
  --font-serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", serif;
  --font-sans: -apple-system, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  background-image:
    radial-gradient(ellipse at 50% -12%, rgba(184,134,11,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 108%, rgba(184,134,11,.035) 0%, transparent 42%),
    radial-gradient(ellipse at 90% 88%, rgba(184,134,11,.028) 0%, transparent 40%);
  overflow-x: hidden;
}

.phone-frame {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  padding-bottom: 64px;
}

.hidden { display: none !important; }

/* 顶部毛玻璃导航 */
.glass-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,242,235,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.nav-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
}
.nav-sub { font-size: 12px; color: var(--text-secondary); letter-spacing: 1px; }
.nav-back {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-primary);
  padding: 4px 10px;
  cursor: pointer;
}
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-btn {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--accent-dark);
  cursor: pointer;
}

/* 页面容器 */
.page { min-height: 100vh; padding: 0 16px 24px; animation: fadeIn .35s ease-out; }
.page.has-nav { padding-top: 0; }

/* 页面头部（衬线标题 + 金线） */
.page-header { position: relative; text-align: center; padding: 18px 0 20px; }
.page-header::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  border-radius: 2px;
}
.header-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
}
.header-sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 6px;
}

/* 卡片 */
.card-warm, .card-book, .card-spine {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px var(--shadow-warm), inset 0 1px 0 rgba(255,255,255,.65);
  border: 1px solid rgba(232,224,216,.55);
  position: relative;
}
.card-book { overflow: hidden; }
.card-book::before, .card-spine::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--spine), var(--accent-light));
  border-radius: 0 2px 2px 0;
}
.card-enter { animation: fadeInUp .5s ease-out both; }
.card-enter:nth-child(2) { animation-delay: .06s; }
.card-enter:nth-child(3) { animation-delay: .12s; }
.card-enter:nth-child(4) { animation-delay: .18s; }
.card-enter:nth-child(5) { animation-delay: .24s; }
.card-enter:nth-child(6) { animation-delay: .3s; }
.mt { margin-top: 14px; }
.mb { margin-bottom: 14px; }

/* 按钮 */
.btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent) 55%, var(--accent-light));
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 26px;
  padding: 14px 0;
  box-shadow: 0 6px 18px rgba(184,134,11,.28), inset 0 1px 0 rgba(255,255,255,.25);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
}
.btn-gold:active { transform: scale(.96); }
.btn-gold.disabled { opacity: .45; pointer-events: none; }
.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--card-bg);
  color: var(--accent-dark);
  font-weight: 500;
  font-size: 15px;
  border-radius: 26px;
  padding: 13px 0;
  border: 1.5px solid var(--accent-light);
  box-shadow: 0 3px 12px var(--shadow-warm);
  cursor: pointer;
  transition: transform .18s, background .18s;
}
.btn-ghost:active { transform: scale(.96); background: rgba(184,134,11,.05); }
.btn-sm { display: inline-flex; width: auto; padding: 8px 16px; font-size: 14px; border-radius: 20px; }

/* 表单 */
.input {
  width: 100%;
  background: var(--card-bg);
  border: 1.5px solid var(--divider);
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 16px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.input:focus { border-color: var(--accent-light); }
.field-label { display: block; font-size: 13px; color: var(--text-secondary); margin: 12px 0 6px; }

/* 段落/文本 */
.section-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-sm { font-size: 13px; }
.text-lg { font-size: 18px; }
.serif { font-family: var(--font-serif); }

/* 徽章 */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
}
.badge-accent { background: var(--accent); color: #fff; }
.badge-warm { background: rgba(184,134,11,.12); color: var(--accent-dark); }
.badge-red { background: #c41e3a; color: #fff; }

/* 金线分隔 */
.gold-divider { height: 1px; border: none; background: linear-gradient(90deg, transparent, rgba(184,134,11,.4), transparent); margin: 6px 0; }

/* 图标圆底 */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(184,134,11,.1), rgba(184,134,11,.04));
  border: 1px solid rgba(184,134,11,.18);
  font-size: 22px;
}

/* 加载/错误/空状态 */
.loading-state, .empty-state { text-align: center; padding: 60px 0; color: var(--text-secondary); font-size: 14px; }
.error-state { text-align: center; padding: 60px 20px; }
.error-text { font-size: 14px; color: var(--accent-dark); margin-bottom: 14px; display: block; }
.empty-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(184,134,11,.1), rgba(184,134,11,.03));
  border: 1px solid rgba(184,134,11,.18);
  font-size: 28px;
  margin: 0 auto 14px;
}

/* 列表行 */
.row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.row + .row { border-top: 1px solid rgba(232,224,216,.6); }
.row-main { flex: 1; min-width: 0; }
.row-title { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.row-desc { font-size: 13px; color: var(--text-secondary); margin-top: 2px; line-height: 1.4; }
.row-icon { font-size: 22px; }

/* 底部标签栏 */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 480px;
  height: 56px;
  background: rgba(253,251,249,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--divider);
  display: flex;
  z-index: 100;
}
.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #9a948c;
  cursor: pointer;
  user-select: none;
}
.tab-item.active { color: var(--accent); }
.tab-icon { font-size: 20px; line-height: 1; }
.tab-label { font-size: 11px; letter-spacing: 1px; }

/* Toast */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(61,44,27,.92);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 80%;
  text-align: center;
  z-index: 300;
  animation: fadeInScale .25s ease-out;
}
.toast.dark { background: rgba(20,16,12,.92); }

/* Loading 遮罩 */
.loading-mask {
  position: fixed;
  inset: 0;
  background: rgba(247,242,235,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 250;
}
.loading-box {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px var(--shadow-strong);
}
.loading-spinner {
  width: 26px; height: 26px;
  border: 3px solid rgba(184,134,11,.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.loading-text { font-size: 13px; color: var(--text-secondary); }

/* Modal */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(40,30,20,.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 200;
  animation: fadeIn .2s ease-out;
}
.modal-box {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
  max-height: 82vh;
  overflow-y: auto;
  animation: slideUp .28s ease-out;
}
.modal-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; letter-spacing: 2px; text-align: center; margin-bottom: 14px; }
.modal-center { align-items: center; }
.modal-center .modal-box { border-radius: 18px; margin: 0 24px; padding: 22px 20px; }
.modal-footer { display: flex; gap: 12px; margin-top: 18px; }
.modal-footer .btn-gold, .modal-footer .btn-ghost { flex: 1; font-size: 15px; padding: 12px 0; }

/* 动效 */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInScale { from { opacity: 0; transform: translate(-50%,-50%) scale(.92); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
.anim-fade-in { animation: fadeIn .4s ease-out; }
.anim-fade-up { animation: fadeInUp .5s ease-out; }
.anim-scale-in { animation: fadeInScale .35s ease-out both; }

/* 录音按钮 */
.rec-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--accent-dark), var(--accent) 55%, var(--accent-light));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 26px rgba(184,134,11,.35), inset 0 2px 0 rgba(255,255,255,.25);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  display: flex; align-items: center; justify-content: center;
}
.rec-btn:active { transform: scale(.94); }
.rec-btn.recording { background: linear-gradient(145deg, #a01932, #c41e3a); animation: glow-pulse 1.6s ease-in-out infinite; }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(196,30,58,.25); }
  50% { box-shadow: 0 0 28px rgba(196,30,58,.5); }
}

/* 预览页阅读器 */
.reader {
  position: relative;
  min-height: calc(100vh - 130px);
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 6px 24px var(--shadow-warm);
  padding: 22px 20px;
  overflow: hidden;
}
.reader-page { animation: fadeIn .3s ease-out; }
.reader-cover { text-align: center; padding: 40px 10px; }
.reader-cover .cover-title { font-family: var(--font-serif); font-size: 30px; font-weight: 700; letter-spacing: 8px; color: var(--text-primary); }
.reader-cover .cover-author { margin-top: 14px; font-size: 13px; color: var(--text-secondary); letter-spacing: 2px; }
.cover-frame {
  border: 1.5px solid var(--accent-light);
  border-radius: 8px;
  padding: 40px 24px;
  margin-top: 24px;
  background: linear-gradient(160deg, var(--highlight-bg), var(--card-bg));
  position: relative;
}
.cover-frame::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 4px;
  pointer-events: none;
}
.reader-toc .toc-line { display: flex; align-items: center; gap: 6px; font-size: 14px; padding: 10px 0; color: var(--text-primary); }
.reader-toc .toc-dots { flex: 1; color: rgba(184,134,11,.5); overflow: hidden; white-space: nowrap; letter-spacing: 2px; }
.reader-story { font-family: var(--font-serif); font-size: 17px; line-height: 2; color: #4a3a28; }
.reader-story p { margin-bottom: 8px; }
.reader-story p.emotion { color: var(--accent-dark); }
.reader-story p.quote { color: var(--text-secondary); font-style: italic; }
.reader-chapter-title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; text-align: center; letter-spacing: 4px; padding: 40px 0; color: var(--text-primary); }
.reader-chapter-title small { display: block; font-size: 12px; color: var(--text-secondary); margin-top: 10px; letter-spacing: 2px; }
.reader-controls {
  position: fixed;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: calc(100% - 24px);
  display: flex;
  gap: 8px;
  justify-content: space-between;
  background: rgba(253,251,249,.95);
  border: 1px solid var(--divider);
  border-radius: 40px;
  padding: 8px;
  z-index: 90;
  backdrop-filter: blur(10px);
}
.reader-controls .rc-btn {
  background: none; border: none;
  font-size: 13px;
  color: var(--text-primary);
  padding: 8px 10px;
  border-radius: 30px;
  flex: 1;
  cursor: pointer;
}
.reader-controls .rc-btn.active { background: rgba(184,134,11,.12); color: var(--accent-dark); }
.reader-progress { text-align: center; font-size: 12px; color: var(--text-secondary); padding: 8px 0 4px; }

/* 故事卡片 */
.story-card { padding: 16px; }
.story-card .story-text { font-family: var(--font-serif); font-size: 15px; line-height: 1.9; color: #4a3a28; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.story-meta { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 12px; color: var(--text-secondary); }

/* 编辑对照 */
.edit-compare { border-radius: 12px; overflow: hidden; border: 1px solid var(--divider); }
.edit-compare .ec-head { background: var(--highlight-bg); padding: 8px 12px; font-size: 12px; color: var(--accent-dark); font-weight: 600; }
.edit-compare .ec-body { padding: 12px; font-size: 14px; line-height: 1.8; color: var(--text-primary); background: var(--card-bg); }
.ec-body .del { color: #c41e3a; text-decoration: line-through; background: rgba(196,30,58,.06); }
.ec-body .ins { color: #1e6b34; background: rgba(30,107,52,.08); }

/* 分步引导点 */
.dots { display: flex; gap: 6px; justify-content: center; margin: 16px 0; }
.dots .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--divider); transition: all .25s; }
.dots .dot.on { background: var(--accent); width: 22px; border-radius: 4px; }

/* 引导大屏 */
.guide-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.guide-icon { font-size: 64px; margin-bottom: 22px; }
.guide-title { font-family: var(--font-serif); font-size: 24px; font-weight: 700; letter-spacing: 4px; margin-bottom: 14px; }
.guide-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.8; max-width: 300px; }

/* 状态条（离线模式提示） */
.offline-bar {
  background: rgba(196,30,58,.08);
  color: #a01932;
  font-size: 12px;
  text-align: center;
  padding: 6px 10px;
  letter-spacing: 1px;
}
.online-bar { background: rgba(30,107,52,.08); color: #1e6b34; font-size: 12px; text-align: center; padding: 6px 10px; letter-spacing: 1px; }

/* 语音波形 */
.wavebar { display: flex; align-items: center; gap: 3px; height: 32px; justify-content: center; }
.wavebar span { width: 4px; background: var(--accent-light); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
.wavebar span:nth-child(2n) { animation-delay: .15s; }
.wavebar span:nth-child(3n) { animation-delay: .3s; }
@keyframes wave { 0%,100% { height: 8px; } 50% { height: 30px; } }

/* 订单/列表卡片 */
.order-card { padding: 14px 16px; }
.price { font-size: 20px; font-weight: 700; color: #a01932; }
.price small { font-size: 12px; font-weight: 400; color: var(--text-secondary); }

/* 工具类 */
.flex { display: flex; align-items: center; gap: 10px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.grow { flex: 1; }
.center { text-align: center; }
.tap { cursor: pointer; user-select: none; }
.tap:active { opacity: .75; }

/* 安全区 */
.safe-bottom { height: env(safe-area-inset-bottom, 0px); }

/* ===== 支付弹窗（模拟微信支付） ===== */
.sheet-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200; display: flex; align-items: flex-end; justify-content: center; animation: fadeIn .2s; }
.sheet-card { background: #fff; border-radius: 20px 20px 0 0; padding: 22px 20px calc(22px + env(safe-area-inset-bottom, 0px)); width: 100%; max-width: 480px; animation: slideUp .25s; }
.sheet-title { font-size: 17px; font-weight: 700; text-align: center; color: var(--text); }
.sheet-amount { font-size: 34px; font-weight: 800; text-align: center; color: #c41e3a; margin-top: 10px; }
.pay-channel { margin: 4px 0 16px; }
.pay-channel-item { display: flex; align-items: center; gap: 12px; background: #f6f6f6; border: 1.5px solid transparent; border-radius: 12px; padding: 14px 16px; }
.pay-channel-item.active { border-color: #07c160; background: #f0fbf4; }
.pay-icon { font-size: 24px; }
.btn-block { width: 100%; }
.badge-success { background: #07c160; color: #fff; }
.pay-success-icon { font-size: 64px; text-align: center; line-height: 1; }
@keyframes slideUp { from { transform: translateY(60px); opacity: .6; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== 适老化增强（2026-08-06 UI/UX 走查修复） ===== */
/* 创建空间：为谁记录 选择按钮（适老触控 ≥48px，多个并排不拉伸）
   注意：必须覆盖 .btn-ghost 的 width:100% 和 display:flex */
.whom-btn {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 76px !important;
  min-height: 48px !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
}
/* 空间首页：复制邀请码 按钮 */
.copy-btn {
  min-height: 44px !important;
  font-size: 15px !important;
  padding: 8px 16px !important;
}
/* 返回按钮加大触控区（保持视觉 24px） */
.glass-nav .nav-back, .nav-back {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================================================
   适老化增强（2026-08-07 UI/UX 深度走查）
   原则：字号系统性放大 + 触控目标 ≥44px + 对比度修正
   设计语言不变（米白纸感+暗金+衬线标题）
   ========================================================= */
:root {
  --text-secondary: #6b5b4d;  /* 原 #7d6d5f，提升对比度 ≈4.9:1 */
  --text-muted: #5d4f42;      /* 原 #66574b，正文辅助加深 */
}

/* ── 字号放大 ── */
.text-sm { font-size: 15px !important; }                       /* 13 → 15 */
.text-lg { font-size: 20px !important; }                       /* 18 → 20 */
.section-title { font-size: 16px !important; }                 /* 14 → 16 */
.field-label { font-size: 15px !important; margin: 14px 0 7px; } /* 13 → 15 */
.row-title { font-size: 17px !important; }                     /* 15 → 17 */
.row-desc { font-size: 14px !important; line-height: 1.5; }    /* 13 → 14 */
.nav-sub { font-size: 14px !important; }                       /* 12 → 14 */
.nav-btn { font-size: 15px !important; min-height: 44px; display: inline-flex; align-items: center; } /* 13 → 15 + 44px */
.header-sub { font-size: 15px !important; }                    /* 13 → 15 */
.tab-icon { font-size: 22px !important; }                      /* 20 → 22 */
.tab-label { font-size: 13px !important; }                     /* 11 → 13 */
.badge { font-size: 12px !important; min-width: 20px; height: 20px; } /* 11 → 12 */
.toast { font-size: 16px !important; padding: 14px 22px; }     /* 14 → 16 */
.loading-text { font-size: 15px !important; }                  /* 13 → 15 */
.empty-state, .loading-state { font-size: 16px !important; }   /* 14 → 16 */
.error-text { font-size: 16px !important; }
.story-meta { font-size: 14px !important; }                    /* 12 → 14 */
.cover-author { font-size: 15px !important; }                  /* 13 → 15 */
.offline-bar, .online-bar { font-size: 14px !important; padding: 8px 10px; } /* 12 → 14 */
.reader-progress { font-size: 14px !important; }               /* 12 → 14 */
.ec-head { font-size: 14px !important; padding: 10px 12px; }   /* 12 → 14 */
.ec-body { font-size: 16px !important; }                       /* 14 → 16 */
.reader-toc .toc-line { font-size: 16px !important; padding: 12px 0; } /* 14 → 16 */
.reader-story { font-size: 18px !important; }                  /* 17 → 18 */
.reader-chapter-title small { font-size: 14px !important; }    /* 12 → 14 */
.guide-desc { font-size: 17px !important; }                    /* 15 → 17 */
.story-card .story-text { font-size: 17px !important; }        /* 15 → 17 */
.price small { font-size: 14px !important; }
.modal-title { font-size: 19px !important; }                   /* 17 → 19 */
.modal-footer .btn-gold, .modal-footer .btn-ghost { font-size: 17px !important; padding: 14px 0; }
.whom-btn { font-size: 18px !important; }                      /* 17 → 18 */
.copy-btn { font-size: 16px !important; }

/* ── 主按钮字号 ── */
.btn-gold { font-size: 18px !important; padding: 16px 0; }
.btn-ghost { font-size: 17px !important; padding: 15px 0; }
.btn-sm { font-size: 15px !important; min-height: 44px !important; padding: 10px 18px; } /* 触控 ≥44px */
.input { font-size: 17px !important; padding: 15px 16px; }
.field-label + .input { margin-top: 4px; }

/* ── 触控目标放大 ── */
.rc-btn { min-height: 44px !important; padding: 10px 12px !important; font-size: 15px !important; }
.row { padding: 14px 0 !important; }
.dots .dot { width: 9px; height: 9px; }
.dots .dot.on { width: 26px; }
.tab-item { min-height: 58px; }
.rec-btn { width: 96px; height: 96px; font-size: 17px; }
.reader-controls { padding: 10px; }
.reader-controls .rc-btn { font-size: 15px; }

/* ── 对比度修正 ── */
.tab-item { color: #8a8178; }                                  /* 原 #9a948c ≈2.6:1 → ≈3.4:1 */
.tab-item.active { color: var(--accent); font-weight: 600; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ── 内联字号兜底：12-13px 小字统一放大（经 JS 渲染的） ── */
.phone-frame [style*="font-size:12px"], .phone-frame [style*="font-size:13px"] { font-size: 14px !important; }
.phone-frame [style*="font-size:11px"] { font-size: 13px !important; }

