/* ===== 全局变量与基础 ===== */
:root {
  --pink: #f25c9f;
  --pink-light: #ffd6e8;
  --blue: #4dafee;
  --blue-light: #d8eefc;
  --green: #7ccb7a;
  --green-light: #e2f5de;
  --orange: #ff9f43;
  --gold: #f7c948;
  --purple: #8e7cc3;
  --bg-cream: #fff8f1;
  --ink: #4a3f3a;
  --ink-light: #8a7d76;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(242, 92, 159, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== 顶部导航 ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(74, 63, 58, 0.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.brand { display: flex; align-items: center; font-weight: 900; font-size: 20px; color: var(--pink); letter-spacing: 1px; }
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 700; color: var(--ink); align-items: center; }
.nav-links a { position: relative; padding: 5px 4px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 3px;
  border-radius: 3px; background: var(--pink); transition: width .25s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), #ff7ab5);
  color: #fff !important; padding: 12px 30px; border-radius: 999px;
  font-weight: 800; font-size: 15px; box-shadow: 0 6px 18px rgba(242, 92, 159, 0.4);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(242, 92, 159, .5); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 3px; border-radius: 3px; background: var(--ink); transition: .3s; }

/* ===== 第一屏：活动主视觉（banner.jpg 全屏背景） ===== */
.hero {
  position: relative;
  height: 460px;
   margin-top: 60px;
  overflow: hidden;
  background: url("../banner.jpg") center center / cover no-repeat;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 999px; font-weight: 800; font-size: 15px;
  transition: transform .2s, box-shadow .2s; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, var(--pink), #ff7ab5); color: #fff; box-shadow: 0 6px 20px rgba(242, 92, 159, .4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(242, 92, 159, .5); }
.btn-outline { background: #fff; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-green { background: linear-gradient(135deg, var(--green), #6fbf9f); color: #fff; box-shadow: 0 6px 20px rgba(124, 203, 122, .4); }



/* ===== 第二屏：活动总览 ===== */
.overview { padding: 100px 0; position: relative; background: linear-gradient(180deg, #fff, #fff5fa 60%, #fff); }
.ov-head { text-align: center; margin-bottom: 42px; }
.ov-tag { display: inline-block; font-size: 13px; font-weight: 800; color: var(--pink); background: var(--pink-light); padding: 7px 22px; border-radius: 999px; margin-bottom: 16px; }
.ov-title { font-size: clamp(34px, 5.5vw, 56px); font-weight: 900; line-height: 1.2; }
.ov-title span { color: var(--ink); }
.ov-title em { font-style: normal; color: var(--pink); margin-left: 18px; }
.ov-sub { margin-top: 14px; font-size: 16px; color: var(--ink-light); }

.ov-time {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.ovt-item {
  background: #fff; border-radius: 18px; padding: 22px 30px; display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow); border: 2px solid transparent; min-width: 280px;
}
.ovt-item:first-child { border-color: var(--pink-light); }
.ovt-item:last-child { border-color: var(--blue-light); }
.ovt-ico { font-size: 34px; }
.ovt-date { font-size: 20px; font-weight: 900; color: var(--ink); line-height: 1.2; }
.ovt-label { font-size: 13.5px; color: var(--ink-light); margin-top: 4px; }
.ovt-arrow {
  width: 40px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--pink), var(--blue)); position: relative;
}
.ovt-arrow::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  border: 7px solid transparent; border-left: 10px solid var(--blue);
}

.ov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ov-card {
  background: #fff; border-radius: 24px; padding: 34px 26px; text-align: center;
  box-shadow: var(--shadow); border: 3px solid transparent; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ov-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(74, 63, 58, .16); }
.ov-pink:hover { border-color: var(--pink); }
.ov-blue:hover { border-color: var(--blue); }
.ov-green:hover { border-color: var(--green); }
.ov-num {
  position: absolute; top: -10px; right: 18px; font-size: 86px; font-weight: 900; color: var(--bg-cream);
  line-height: 1; z-index: 0; transition: color .3s;
}
.ov-card:hover .ov-num { color: rgba(242, 92, 159, .08); }
.ov-blue:hover .ov-num { color: rgba(77, 175, 238, .1); }
.ov-green:hover .ov-num { color: rgba(124, 203, 122, .12); }
.ov-ico { font-size: 44px; margin-bottom: 14px; position: relative; z-index: 1; }
.ov-card h3 { font-size: 21px; font-weight: 900; margin-bottom: 10px; position: relative; z-index: 1; }
.ov-card p { font-size: 13.8px; color: var(--ink-light); line-height: 1.9; margin-bottom: 18px; position: relative; z-index: 1; }
.ov-btn {
  display: inline-block; padding: 9px 28px; border-radius: 999px; font-weight: 800; font-size: 14px;
  background: var(--bg-cream); color: var(--ink); transition: .25s; position: relative; z-index: 1;
}
.ov-pink .ov-btn:hover { background: var(--pink); color: #fff; }
.ov-blue .ov-btn:hover { background: var(--blue); color: #fff; }
.ov-green .ov-btn:hover { background: var(--green); color: #fff; }

/* ===== 通用区块 ===== */
.section { padding: 84px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #fff, #fef3f8 60%, #fff); }
.section-head { text-align: center; margin-bottom: 46px; }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 2px;
  color: var(--pink); background: var(--pink-light); padding: 6px 18px; border-radius: 999px; margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--ink); }
.section-title .hl { color: var(--pink); }
.section-sub { margin-top: 10px; color: var(--ink-light); font-size: 15px; }
.section-sub strong { color: var(--pink); }

/* ===== 会员权益区 ===== */
.benefit-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.benefit-img {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.benefit-img img { width: 100%; height: 100%; object-fit: cover; }
.benefit-cards { display: flex; flex-direction: column; gap: 20px; }
.bcard {
  background: #fff; border-radius: var(--radius); padding: 26px 26px 22px;
  box-shadow: var(--shadow); border: 2px solid transparent; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(242, 92, 159, .18); }
.bcard.bc-pink { border-color: var(--pink-light); background: linear-gradient(135deg, #fff, #fff0f6); }
.bcard.bc-blue { border-color: var(--blue-light); background: linear-gradient(135deg, #fff, #eef7fe); }
.bcard .bcard-tag {
  display: inline-block; font-size: 12.5px; font-weight: 800; padding: 4px 14px; border-radius: 999px;
  margin-bottom: 12px; color: #fff;
}
.bc-pink .bcard-tag { background: var(--pink); }
.bc-blue .bcard-tag { background: var(--blue); }
.bcard h3 { font-size: 21px; font-weight: 900; margin-bottom: 6px; }
.bcard .bcard-price { font-size: 15px; color: var(--ink-light); margin-bottom: 10px; }
.bcard .bcard-price .num { font-size: 30px; font-weight: 900; color: var(--pink); }
.bc-blue .bcard-price .num { color: var(--blue); }
.bcard ul { list-style: none; }
.bcard li { font-size: 14px; color: var(--ink); padding: 4px 0 4px 22px; position: relative; }
.bcard li::before { content: "✔"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.bcard-note { margin-top: 12px; font-size: 13px; color: var(--ink-light); border-top: 1px dashed #e5d5cd; padding-top: 10px; }

/* ===== 会员权益表格（重点突出） ===== */
.benefit-sec { background: linear-gradient(180deg, #fff, #fff0f6 45%, #fff); }
.benefit-table-wrap {
  position: relative; background: #fff; border-radius: 26px; padding: 34px 30px 22px;
  box-shadow: 0 18px 50px rgba(242, 92, 159, .16); border: 3px solid var(--pink-light);
  overflow: hidden; max-width: 960px; margin: 0 auto;
}
.benefit-table-wrap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--gold), var(--green), var(--blue));
}
.bt-flag {
  position: absolute; top: 22px; right: -46px; transform: rotate(45deg);
  background: linear-gradient(135deg, var(--orange), var(--pink)); color: #fff;
  font-size: 13px; font-weight: 900; padding: 8px 54px; text-align: center; line-height: 1.5;
  box-shadow: 0 4px 14px rgba(242, 92, 159, .35); z-index: 2;
}
.benefit-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.benefit-table th { padding: 20px 16px; font-size: 17px; }
.benefit-table th span { display: block; font-size: 13px; font-weight: 800; margin-top: 6px; color: var(--ink-light); }
.benefit-table .bt-empty { background: transparent; width: 18%; }
.benefit-table .bt-family { background: linear-gradient(135deg, #fff0f6, #ffe3ef); }
.benefit-table .bt-baby { background: linear-gradient(135deg, #eef7fe, #e0f1fd); }
.benefit-table th.bt-family { color: var(--pink); font-weight: 900; border-radius: 16px 16px 0 0; }
.benefit-table th.bt-baby { color: var(--blue); font-weight: 900; border-radius: 16px 16px 0 0; }
.benefit-table td { padding: 16px; border-top: 1px solid #f7ece4; line-height: 1.8; }
.benefit-table td:first-child { font-weight: 800; color: var(--ink); background: #fffaf6; }
.benefit-table td.bt-family b { color: var(--pink); font-size: 17px; }
.benefit-table td.bt-baby b { color: var(--blue); font-size: 17px; }
.benefit-table small { color: var(--ink-light); font-size: 12.5px; }
.bt-note { margin-top: 18px; text-align: center; font-size: 13px; color: var(--ink-light); }
.benefit-cta {
  margin: 34px auto 0; max-width: 960px; background: linear-gradient(135deg, var(--pink), #ff7ab5);
  border-radius: 22px; padding: 26px 34px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; box-shadow: 0 12px 34px rgba(242, 92, 159, .35); flex-wrap: wrap;
}
.bc-left { color: #fff; }
.bc-big { font-size: 24px; font-weight: 900; }
.bc-left p { font-size: 14px; opacity: .92; margin-top: 6px; }
.benefit-cta .btn-primary { background: #fff; color: var(--pink); box-shadow: none; }
.benefit-cta .btn-primary:hover { transform: translateY(-3px); }

/* ===== 会员销售 / 价格卡（合并卡片） ===== */
.price-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.mcard {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 2px solid var(--pink-light);
  transition: transform .25s, box-shadow .25s;
}
.mcard:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(74, 63, 58, .14); }
.mcard-header {
  background: linear-gradient(90deg, var(--pink), #ff7ab5); color: #fff;
  padding: 14px 28px; font-size: 20px; font-weight: 900; letter-spacing: 1px;
}
.mcard-body {
  display: grid; grid-template-columns: repeat(2, 1fr);
  padding: 28px 10px; gap: 0;
}
.mcard-body.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mcol {
  text-align: center; padding: 0 16px;
  border-right: 1px dashed var(--pink-light);
}
.mcol:last-child { border-right: none; }
.mcol .mtype {
  font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 6px;
}
.mcol .mprice-label {
  font-size: 14px; color: var(--ink-light); margin-bottom: 4px;
}
.mcol .mprice {
  font-size: 42px; font-weight: 900; color: var(--pink); line-height: 1;
}
.mcol .mprice small { font-size: 16px; color: var(--ink); font-weight: 700; }
.mcol .mgift {
  display: inline-block; background: var(--pink-light); color: var(--pink);
  font-size: 13px; font-weight: 800; padding: 8px 16px; border-radius: 999px;
  margin-top: 14px;
}
.mcol .mgift-detail {
  font-size: 12px; color: var(--ink-light); margin-top: 6px;
}
.mcard-foot { text-align: center; padding: 0 0 28px; }
.mcard-foot .btn { padding: 12px 40px; font-size: 15px; }

/* 至爱会员高亮区 */
.forever {
  margin-top: 48px; border-radius: 26px; overflow: hidden; position: relative;
  min-height: 420px; display: flex; align-items: center;
  background: linear-gradient(135deg, #4a3b7a 0%, #7d6ab0 50%, #b89fd8 100%);
}
.forever-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(70,52,120,.55) 45%, rgba(120,100,170,.97) 70%),
              url("../za.jpg") left center / cover no-repeat;
}
.forever-body { position: relative; z-index: 1; width: 100%; padding: 50px 60px; }
.forever-text {
  max-width: 58%;
  background: rgba(30, 20, 60, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 34px;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.forever .f-tag { display: inline-block; background: var(--gold); color: #5b3d00; font-size: 13px; font-weight: 900; padding: 7px 22px; border-radius: 999px; letter-spacing: 2px; }
.forever h3 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; margin: 18px 0 8px; line-height: 1.25; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.forever .f-lead { font-size: 16px; color: #fff; line-height: 1.8; text-shadow: 0 1px 5px rgba(0,0,0,.25); }
.forever .f-price { margin: 22px 0 10px; display: flex; align-items: flex-start; justify-content: flex-start; }
.forever .f-currency { font-size: 34px; font-weight: 900; color: var(--gold); margin-top: 8px; text-shadow: 0 2px 6px rgba(0,0,0,.2); }
.forever .f-num {
  font-size: 80px; font-weight: 900; color: var(--gold); line-height: 1;
  text-shadow: 0 4px 0 rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.2);
}
.forever .f-limit { font-size: 14px; color: #fff; margin-bottom: 14px; text-shadow: 0 1px 5px rgba(0,0,0,.25); }
.forever .f-tips { font-size: 13px; margin: 0 0 22px; line-height: 2; color: #fff; }
.forever .f-tips span { display: inline-block; background: rgba(255, 255, 255, .28); padding: 4px 16px; border-radius: 999px; margin: 0 6px 6px 0; }
.forever .btn { margin-top: 6px; padding: 13px 36px; font-size: 16px; }
.forever-five {
  position: absolute; right: -10px; bottom: -70px; font-size: 280px; font-weight: 900;
  color: #fff; opacity: .12; line-height: 1; z-index: 0; pointer-events: none;
}

.sub-note {
  margin-top: 34px; background: #fff; border: 1px dashed var(--pink); border-radius: 16px;
  padding: 18px 22px; font-size: 13.5px; color: var(--ink); line-height: 2;
}
.sub-note b { color: var(--pink); }

/* ===== 义诊活动区 ===== */
.clinic-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 34px; }
.cinfo {
  background: #fff; border-radius: var(--radius); padding: 22px 20px; text-align: center;
  box-shadow: var(--shadow); border-top: 5px solid var(--pink);
}
.cinfo:nth-child(2) { border-top-color: var(--blue); }
.cinfo:nth-child(3) { border-top-color: var(--green); }
.cinfo .ico { font-size: 30px; margin-bottom: 8px; }
.cinfo h4 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.cinfo p { font-size: 13.5px; color: var(--ink-light); line-height: 1.9; }
.cinfo a { color: var(--pink); font-weight: 800; }

.ccalendar {
  background: #fff; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
  border: 2px solid var(--pink-light); margin-top: 10px;
}
.ccal-head { display: grid; grid-template-columns: 120px 1fr 1fr; background: linear-gradient(90deg, var(--pink), #ff7ab5); color: #fff; }
.ccal-th { padding: 12px 14px; font-size: 15px; font-weight: 900; text-align: center; }
.ccal-th.ccal-dept { background: rgba(0,0,0,.08); text-align: left; padding-left: 18px; }
.ccal-d2 { background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,0)); }
.ccal-row {
  display: grid; grid-template-columns: 120px 1fr 1fr; border-bottom: 1px solid #f5e9e2;
  transition: background .2s;
}
.ccal-row:last-child { border-bottom: none; }
.ccal-row:hover { background: #fff8fb; }
.ccal-dept {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-weight: 900; font-size: 15px;
  background: #fffafd; border-right: 2px solid var(--pink-light);
}
.ccal-ico { font-size: 22px; }
.ccal-cell { padding: 12px 16px; font-size: 13.5px; line-height: 1.6; color: var(--ink); border-right: 1px dashed #f0e6df; }
.ccal-cell:last-child { border-right: none; }
.ccal-cell b { color: var(--pink); font-size: 14px; }
.ccal-cell small { color: var(--ink-light); font-size: 12px; }
.ccal-duty { display: inline-block; margin-top: 2px; color: var(--orange); font-weight: 700; font-size: 11.5px; background: #fff5e6; padding: 1px 8px; border-radius: 999px; }
.ccal-none { color: #d4c8c0; font-size: 16px; font-weight: 900; display: flex; align-items: center; justify-content: center; }

.clinic-rule {
  margin-top: 30px; background: var(--blue-light); border-radius: 16px; padding: 20px 24px;
  font-size: 13.5px; line-height: 2; color: var(--ink);
}
.clinic-rule b { color: #2b7cb8; }
.clinic-rule .num { color: var(--pink); font-weight: 800; }

/* ===== 义诊报名 CTA（链接 + 二维码） ===== */
.clinic-sign {
  background: linear-gradient(135deg, #fff8ef, #ffeef5); border: 2px dashed var(--orange);
  border-radius: 22px; padding: 30px 36px; margin-bottom: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cs-left h4 { font-size: 21px; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.cs-left p { font-size: 14px; color: var(--ink-light); line-height: 1.9; margin-bottom: 16px; }
.cs-links { display: flex; gap: 14px; flex-wrap: wrap; }
.cs-qr { text-align: center; }
.qr-box {
  width: 118px; height: 118px; background: #fff; border-radius: 14px; padding: 10px;
  box-shadow: 0 6px 18px rgba(74, 63, 58, .14); display: flex; flex-direction: column;
  align-items: center; justify-content: center; border: 3px solid #fff; margin-bottom: 8px;
}
.qr-box img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.qr-box span { font-size: 26px; line-height: 1; }
.qr-box p { font-size: 11px; color: var(--ink-light); margin-top: 6px; font-weight: 700; }
.cs-qr > p { font-size: 12.5px; color: var(--ink-light); font-weight: 700; }

/* ===== 童梦市集区 ===== */
.fair-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-bottom: 40px;
}
.fair-intro .txt h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.fair-intro .txt p { font-size: 14.5px; color: var(--ink-light); line-height: 2; }
.fair-intro .txt p b { color: var(--pink); }
.fair-stats { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.fstat {
  background: #fff; border-radius: 16px; padding: 14px 22px; text-align: center; box-shadow: var(--shadow); flex: 1; min-width: 120px;
}
.fstat .n { font-size: 24px; font-weight: 900; color: var(--orange); }
.fstat .l { font-size: 12px; color: var(--ink-light); }
.fair-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fcard {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: .25s;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--gold); }
.fcard .fc-head { padding: 18px 24px; color: #fff; display: flex; align-items: center; gap: 12px; }
.fc1 .fc-head { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.fc2 .fc-head { background: linear-gradient(135deg, var(--pink), #ff7ab5); }
.fcard .fc-head .fc-ico { font-size: 26px; }
.fcard .fc-head h4 { font-size: 18px; font-weight: 900; }
.fcard .fc-body { padding: 20px 24px; }
.fcard ul { list-style: none; }
.fcard li { font-size: 13.8px; color: var(--ink); padding: 5px 0 5px 24px; position: relative; line-height: 1.8; }
.fcard li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.fcard li b { color: var(--pink); }
.fcard .fc-time {
  margin-top: 14px; background: var(--green-light); border-radius: 12px; padding: 10px 14px;
  font-size: 13px; color: #3c8f3a; font-weight: 700; text-align: center;
}

/* ===== 页脚 ===== */
.footer { background: #4a3f3a; color: #d9cfc8; padding: 40px 0 30px; margin-top: 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer p { font-size: 13.5px; line-height: 2; }
.footer a { color: #ff9fc9; }
.footer-bottom { margin-top: 26px; text-align: center; font-size: 12.5px; color: #a89d95; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 20px; }

/* ===== 滚动入场动画 ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 62px; right: -100%; flex-direction: column; background: #fff;
    width: 70%; max-width: 300px; height: calc(100vh - 62px); padding: 30px 26px; gap: 18px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .12); transition: right .3s; z-index: 998;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .nav-cta { display: inline-block; margin-top: 10px; }
  .benefit-wrap, .fair-intro { grid-template-columns: 1fr; }
  .ov-grid { grid-template-columns: 1fr; }
  .ov-time { flex-direction: column; }
  .ovt-arrow { transform: rotate(90deg); }
  .mcard-body, .mcard-body.cols-3 { grid-template-columns: 1fr; }
  .mcol { border-right: none; border-bottom: 1px dashed var(--pink-light); padding: 18px 0; }
  .mcol:last-child { border-bottom: none; }
  .forever-text { padding: 22px 20px; }
  .clinic-info { grid-template-columns: 1fr; }
  .ccalendar { overflow-x: auto; }
  .ccalendar > * { min-width: 620px; }
  .fair-cards { grid-template-columns: 1fr; }
  .benefit-table-wrap { padding: 26px 16px 16px; overflow-x: auto; }
  .benefit-table { min-width: 620px; }
  .bt-flag { top: 16px; right: -56px; }
  .clinic-sign { padding: 24px 20px; justify-content: center; text-align: center; }
  .cs-links { justify-content: center; }
  .forever { min-height: auto; }
  .forever-body { padding: 40px 26px; }
  .forever-text { max-width: 100%; text-align: center; }
  .forever .f-price { justify-content: center; }
  .forever-bg { background: linear-gradient(to bottom, rgba(91,74,143,.5) 0%, rgba(142,124,195,.95) 60%), url("../za.jpg") center top / cover no-repeat; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .forever { padding: 0; }
  .ovt-item { width: 100%; }
}
