/* ============================================
   盛诺一家 - 胰腺癌海外就医专题页 移动端
   文件名: m_yixianai_202607.css
   版本: v1.0 (初始版本)
   更新时间: 2026-07-14
   ============================================ */

/* ========== CSS Variables ========== */
:root {
  --primary: #009FB5;
  --primary-dark: #007A8A;
  --primary-light: #E6F7F7;
  --primary-bg: #edf7f8;
  --accent: #FF6000;
  --accent-light: #FFF1E8;
  --china: #E74C3C;
  --china-bg: #FFF5F5;
  --japan: #F39C12;
  --japan-bg: #FEF9E7;
  --usa: #27AE60;
  --usa-bg: #F0FBF4;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --border: #EAEAEA;
  --border-light: #F0F4F6;
  --bg: #F7F8FA;
  --white: #fff;
  --shadow: 0 2px 8px rgba(14, 162, 183, 0.08);
  --shadow-lg: 0 4px 16px rgba(14, 162, 183, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --transition: 0.25s ease;
}

/* ========== Base ========== */
.m-section { padding: 18px 12px; margin: 8px 10px; }
.m-section.alt { background: var(--primary-bg); border-radius: var(--radius-lg); }
.m-section-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--text);
  padding: 10px 0 12px;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.m-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 8px auto 0;
}
.m-section-title .hl { color: var(--primary); }
.m-section-desc {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.7;
  padding: 0 12px 12px;
}
.m-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.m-btn:active { background: var(--primary-dark); transform: scale(0.96); }
.m-btn-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
}
.m-btn-outline:active { background: var(--primary); color: #fff !important; }
.m-btn-pill { border-radius: var(--radius-pill); }
.m-btn-block { display: block; width: 100%; box-sizing: border-box; }
.m-btn-center { text-align: center; margin: 12px 0 0; }

/* ========== Module 1: Banner ========== */
.m-banner {
  width: 100%;
  display: block;
}
.m-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Module 2: 数据速览 (2×2 Grid) ========== */
.m-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 12px;
}
.m-stats-item {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.m-stats-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}
.m-stats-num span { font-size: 14px; font-weight: 600; margin-left: 2px; }
.m-stats-item:first-child {
  background: linear-gradient(135deg, #1a6b78 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow: 0 0 12px rgba(255,215,0,0.15);
}
.m-stats-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ========== Module 3: 新药突破 Spotlight (核心) ========== */
.m-drugs-section { padding: 16px 12px; }
.m-drug-spotlight {
  background: linear-gradient(135deg, #f4fbfc 0%, #fff 100%);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.m-drug-spotlight::before {
  content: '重大突破';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.m-drug-spotlight .m-drug-free-tag {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 14px;
  text-align: center;
}
.m-drug-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  padding-right: 70px;
}
.m-drug-title small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}
.m-drug-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.m-drug-col {
  background: #fff;
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.m-drug-col .col-label {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.m-drug-col .col-big {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.m-drug-col .col-big span { color: var(--primary); font-weight: 800; }
.m-drug-col .col-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}
.m-drug-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.m-drug-card-sm {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.m-drug-card-sm .drug-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.m-drug-card-sm .drug-generic {
  font-size: 10px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.m-drug-card-sm .drug-highlight {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.m-drug-card-sm .drug-highlight span { color: var(--primary); }
.m-drug-card-sm .drug-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 6px;
}
.m-drug-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 8px;
}
.m-drug-alert {
  background: #fff8e6;
  border-left: 3px solid #f0a030;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
  margin: 14px 0;
  font-size: 12px;
  color: #8a6d3b;
  line-height: 1.6;
}
.m-drug-alert strong { color: var(--text); }

/* ========== Module 4: 生存率对比 ========== */
.m-survival-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-survival-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid;
}
.m-survival-card.china { border-left-color: var(--china); background: var(--china-bg); }
.m-survival-card.japan { border-left-color: var(--japan); background: var(--japan-bg); }
.m-survival-card.usa { border-left-color: var(--usa); background: var(--usa-bg); }
.m-survival-card .country {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  min-width: 50px;
}
.m-survival-card .rate-area {
  flex: 1;
}
.m-survival-card .rate {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}
.m-survival-card.china .rate { color: var(--china); }
.m-survival-card.japan .rate { color: var(--japan); }
.m-survival-card.usa .rate { color: var(--usa); }
.m-survival-card .rate-unit { font-size: 14px; }
.m-survival-card .bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}
.m-survival-card .fill {
  height: 100%;
  border-radius: 2px;
}
.m-survival-card.china .fill { background: var(--china); }
.m-survival-card.japan .fill { background: var(--japan); }
.m-survival-card.usa .fill { background: var(--usa); }
.m-survival-card .source {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== Module 5: 中美日方案对比 (Tab 切换) ========== */
.m-compare-tabs {
  display: flex;
  background: var(--primary-light);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-bottom: 16px;
}
.m-compare-tab {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: var(--radius-pill);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.m-compare-tab.active {
  background: var(--primary);
  color: #fff;
}
.m-compare-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.m-compare-content .country-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.m-compare-list { display: none; }
.m-compare-list.active { display: block; }
.m-compare-row {
  border-bottom: 1px dashed var(--border);
  padding: 10px 0;
}
.m-compare-row:last-child { border-bottom: none; }
.m-compare-row .row-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.m-compare-row .row-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.m-compare-row .row-value strong { color: var(--primary); }
.m-compare-row .row-value .hl { color: var(--accent); font-weight: 700; }

/* ========== Module 6: 服务产品 ========== */
.m-services-list { display: flex; flex-direction: column; gap: 12px; }
.m-service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.m-service-card.primary { border-top: 3px solid var(--primary); }
.m-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.m-service-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.m-service-card.primary .m-service-icon { background: var(--primary); color: #fff; }
.m-service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.m-service-tagline {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 2px;
}
.m-service-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.m-service-list-items li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}
.m-service-list-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========== Module 7: 品牌优势 ========== */
.m-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.m-advantage-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.m-advantage-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.m-advantage-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}
.m-advantage-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.m-advantage-content p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== Module 8: 国际医院 ========== */
.m-hospitals-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-hospital-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
}
.m-hospital-img {
  width: 130px;
  min-height: 130px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-light);
  flex-shrink: 0;
}
.m-hospital-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.m-hospital-rank {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.m-hospital-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.m-hospital-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 6px;
}
.m-hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: auto;
}
.m-hospital-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
}
.m-hospital-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 0 0;
  border-top: 1px solid var(--border-light);
  text-decoration: none;
  margin-top: 8px;
}

/* ========== Module 9: 国际专家 ========== */
.m-experts-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px;
  width: 100% !important;
}
.m-expert-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  width: auto !important;
  max-width: none !important;
}
.m-expert-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  background-size: cover;
  background-position: center;
}
.m-expert-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.m-expert-title {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.m-expert-hospital {
  font-size: 10px;
  color: var(--primary);
  margin-bottom: 6px;
}
.m-expert-skill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ========== Module 10: 海外案例 ========== */
.m-cases-list { display: flex; flex-direction: column; gap: 14px; }
.m-case-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.m-case-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-light);
}
.m-case-body { padding: 14px; }
.m-case-meta {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}
.m-case-quote {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
}
.m-case-result {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  padding: 8px 10px;
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.5;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 8px;
}
.m-case-link {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* ========== Module 11: 常见问题 FAQ ========== */
.m-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.m-faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.m-faq-item:last-child { border-bottom: none; }
.m-faq-question {
  padding: 14px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  background: #f8fafa;
}
.m-faq-q-mark {
  background: var(--primary);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 0 8px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.m-faq-question .arrow {
  margin-left: auto;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}
.m-faq-item.active .m-faq-question .arrow { transform: rotate(180deg); }
.m-faq-answer {
  display: none;
  padding: 0 14px 14px 14px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}
.m-faq-item.active .m-faq-answer { display: block; }
.m-faq-answer .a-mark {
  color: var(--primary);
  font-weight: 700;
  margin-right: 4px;
}

/* ========== Module 12: 服务获取方式 ========== */
.m-service-method {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow);
  margin: 12px 10px;
}
.m-service-method-item {
  flex: 1;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 4px;
}
.m-service-method-item .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}
.m-service-method-item .label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.m-service-method-item .m-btn {
  display: block;
  font-size: 12px;
  padding: 6px 4px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.m-service-method-item.primary {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* ========== Quick Nav Bar ========== */
.m-nav-bar {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  padding: 8px 12px 12px;
  scrollbar-width: none;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
}
.m-nav-bar::-webkit-scrollbar { display: none; }
.m-nav-item {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--primary-light);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.m-nav-item:active { background: var(--primary); color: #fff; }
.m-text-center { text-align: center; }
.m-mt-12 { margin-top: 12px; }
.m-mt-20 { margin-top: 20px; }
.m-mb-12 { margin-bottom: 12px; }

/* ========== Bottom Include Containment ========== */
.oheec-common-service,
.oheec-common-nav2 {
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}
.health-content {
  max-width: 100vw;
  overflow-x: hidden !important;
}  
.health-content { overflow-x: hidden !important; overflow-y: auto; }
.oheec-common-service,
.oheec-common-nav2 { max-width: 100%; overflow: hidden; box-sizing: border-box; }