/* =====================================================================
   易医一体 · 统一报告主题（C类前端排版优化）
   素雅国风康养 · 低饱和配色 · 移动端适配
   以 yishi.html 为主基准，统一各报告页视觉风格
   仅覆盖前端渲染样式，不改后端数据结构
   ===================================================================== */

/* ---------- 1. 正文行高统一 1.8 ---------- */
.report-card,
.report-card p,
.report-card .quad-text,
.report-card .overview,
.report-para{
  line-height:1.8;
}

/* ---------- 2. 标题层次：字号/字重/间距递减 ---------- */
/* 一级标题（章） */
.report-h1,
.report-card h1{
  font-size:19px;
  font-weight:700;
  color:#2c5f2c;
  letter-spacing:2px;
}
/* 二级标题（节） */
.report-h2,
.report-card h2{
  font-size:16.5px;
  font-weight:600;
  color:#3a7a3a;
  letter-spacing:1px;
}
/* 三级标题（子目） */
.report-card h3,
.report-card h4{
  font-size:15px;
  font-weight:600;
  color:#4a8a4a;
  letter-spacing:0.5px;
}
/* dual/liunian 标题体系统一 */
.report-card .section-title,
.report-card .chapter-title-cn,
.report-card .chapter-title{
  font-weight:600;
  color:#2c5f2c;
  letter-spacing:1.5px;
}
.report-card .dash-subtitle{
  font-weight:600;
  color:#3d5a3e;
}

/* ---------- 3. 列表缩进统一 ---------- */
.report-card ul,
.report-card ol{
  margin:0 0 12px 1.4em;
  padding-left:0;
}
.report-card li{
  margin-bottom:6px;
  line-height:1.8;
}

/* ---------- 4. 表格：淡雅边框 + 浅灰表头 ---------- */
.report-card table{
  width:100%;
  border-collapse:collapse;
  margin:14px 0;
  font-size:13.5px;
  border:1px solid #e6e9e6;
}
.report-card th{
  background:#f4f5f4;
  color:#5a665a;
  font-weight:600;
  text-align:left;
  padding:8px 10px;
  border:1px solid #e6e9e6;
  font-size:13px;
}
.report-card td{
  padding:8px 10px;
  border:1px solid #ecefec;
  color:#3a4a3c;
}

/* ---------- 5. ⚠️📌 标记样式 ---------- */
.mk-warn{
  color:#b0713a;
  font-weight:600;
}
.mk-pin{
  color:#3a7a3a;
  font-weight:600;
}
/* ⚠️ 开头的警示整段：浅赭底 + 左竖线 */
.warn-callout{
  background:rgba(210,150,55,0.08);
  border-left:3px solid #d6a14e;
  padding:8px 12px;
  border-radius:0 6px 6px 0;
}

/* ---------- 6. 免责声明：置底浅灰底小字号 ---------- */
.report-disclaimer,
.report-card .disclaimer{
  display:block;
  margin-top:20px;
  padding:10px 14px;
  background:#f4f5f4;
  color:#8a948a;
  font-size:12px;
  line-height:1.7;
  border-radius:8px;
  text-align:justify;
  border-top:none;
}

/* ---------- 7. 移动端：表格横滚 + 字号适配 ---------- */
.tbl-scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  margin:14px 0;
}
.tbl-scroll table{
  margin:0;
}
@media (max-width:767px){
  .report-card table,
  .report-card th,
  .report-card td{
    font-size:12.5px;
    padding:6px 7px;
  }
  .tbl-scroll{ max-width:100%; }
  .report-card p,
  .report-para,
  .report-card .quad-text{
    font-size:15.5px;
  }
}
