/* ===== 三因制宜 - 统一样式表 ===== */

/* ===== 基础重置 ===== */
*{margin:0;padding:0;box-sizing:border-box}
html{overflow-x:hidden}
body{font-family:'Noto Serif SC',serif;background:#FAF7F2;color:#2C2C2C;line-height:1.8;overflow-x:hidden;width:100%;max-width:100vw}
.hidden{display:none!important}

/* ===== 辅助类 ===== */
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mb-4 { margin-bottom: 4px; }
.d-inline-block { display: inline-block; }
.invisible { visibility: hidden; }

/* 升级按钮 */
.btn-upgrade {
  margin-top: 12px;
  display: inline-block;
  background: #D4A574;
  border-color: #D4A574;
}

/* ===== weather.html 城市选择器 ===== */
.city-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.location-status {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(74, 124, 89, 0.1);
  color: #4A7C59;
  display: inline-block;
}

.location-status.locating {
  background: rgba(255, 193, 7, 0.15);
  color: #E65100;
}

.location-status.success {
  background: rgba(74, 124, 89, 0.1);
  color: #4A7C59;
}

.location-status.failed {
  background: rgba(244, 67, 54, 0.1);
  color: #E53935;
}

.city-switch-btn {
  padding: 6px 14px;
  border: 1px solid rgba(74, 124, 89, 0.2);
  background: rgba(74, 124, 89, 0.05);
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  color: #4A7C59;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.city-switch-btn:hover {
  background: rgba(74, 124, 89, 0.1);
  border-color: rgba(74, 124, 89, 0.3);
}

/* 城市选择模态框 */
.city-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.city-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.city-modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.city-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #F0F0F0;
}

.city-modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.city-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: #9A9A9A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-modal-close:hover {
  color: #2C2C2C;
}

.city-modal-body {
  padding: 20px 24px;
  max-height: 400px;
  overflow-y: auto;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-item {
  padding: 10px 20px;
  background: #FAF7F2;
  border: 1px solid #E8E4DC;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.city-item:hover {
  background: #F0F5F1;
  border-color: #4A7C59;
}

.city-item.active {
  background: #4A7C59;
  border-color: #4A7C59;
  color: #fff;
}

/* ===== 导航（所有页面通用） ===== */
nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:0 16px;height:64px;display:flex;align-items:center;justify-content:space-between;background:rgba(250,247,242,.92);backdrop-filter:blur(20px);border-bottom:1px solid rgba(74,124,89,.08);box-sizing:border-box;width:100%;max-width:100vw;overflow:visible}
.nav-logo{font-family:'ZCOOL XiaoWei',serif;font-size:24px;color:#4A7C59;letter-spacing:2px;flex-shrink:0}

/* 桌面端导航链接 */
.nav-links{display:flex;gap:4px;list-style:none;margin:0;padding:0}
.nav-links li{list-style:none}
.nav-links a{text-decoration:none;color:#6B6B6B;font-size:14px;padding:6px 12px;border-radius:20px;transition:all .3s;letter-spacing:0.5px;display:block;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{background:#4A7C59;color:#fff}
.nav-links a.hot-link:hover,.nav-links a.hot-link.active{background:#E53935;color:#fff}

.nav-badge {
  display: inline-block;
  background: #E53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
}

.nav-login {
  background: #4A7C59 !important;
  color: #fff !important;
  padding: 6px 16px !important;
  border-radius: 20px;
  font-weight: 600;
}

.nav-login:hover {
  background: #2C5E3C !important;
  transform: translateY(-1px);
}

.nav-user {
  background: #FAF7F2 !important;
  color: #4A7C59 !important;
  padding: 6px 16px !important;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid #4A7C59 !important;
}

.nav-user:hover,
.nav-user.active {
  background: #4A7C59 !important;
  color: #fff !important;
}

/* 汉堡菜单按钮 */
.nav-menu-btn{display:none;flex-direction:column;justify-content:center;align-items:center;width:36px;height:36px;background:transparent;border:none;cursor:pointer;padding:6px;gap:4px}
.nav-menu-btn span{display:block;width:20px;height:2px;background:#4A7C59;border-radius:2px;transition:all .3s}
.nav-menu-btn.active span:nth-child(1){transform:rotate(45deg) translate(4px,4px)}
.nav-menu-btn.active span:nth-child(2){opacity:0}
.nav-menu-btn.active span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px)}

/* 移动端导航 - 汉堡菜单 */
@media (max-width: 768px) {
  nav {
    padding: 0 12px;
    height: 52px;
  }
  .nav-logo {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .nav-menu-btn {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.99);
    backdrop-filter: blur(20px);
    padding: 12px;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
    z-index: 9999;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .nav-logo {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

/* ===== 通用按钮 ===== */
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 36px;border-radius:40px;font-size:15px;letter-spacing:2px;transition:all .4s;text-decoration:none;cursor:pointer;font-family:inherit;border:none}
.btn-p{background:#4A7C59;color:#fff;box-shadow:0 4px 20px rgba(74,124,89,.25)}
.btn-p:hover{background:#2D5A3D;transform:translateY(-2px);box-shadow:0 8px 30px rgba(74,124,89,.35)}
.btn-s{background:transparent;color:#2C2C2C;border:1px solid #D5CFC4}
.btn-s:hover{border-color:#4A7C59;color:#4A7C59}
.btn-ghost{background:transparent;color:#4A7C59;border:1px solid #4A7C59}
.btn-ghost:hover{background:#4A7C59;color:#fff}

/* ===== 通用区块 ===== */
.section{padding:40px 20px;max-width:1100px;margin:0 auto}
.section-header{text-align:center;margin-bottom:36px}
.section-eyebrow{font-size:11px;letter-spacing:4px;color:#4A7C59;text-transform:uppercase;margin-bottom:12px}
.section-header .section-title{font-size:clamp(24px,4vw,36px);font-weight:700;margin-bottom:12px}
.section-desc{font-size:15px;color:#6B6B6B;line-height:2}
/* service.html 专用的 section-title 容器 */
.section-title-container{text-align:center;margin-bottom:56px}
.section-title-container h2{font-size:clamp(22px,3.5vw,32px);font-weight:700;margin-bottom:12px}
.section-title-container p{font-size:15px;color:#6B6B6B}

/* ===== 通用卡片 ===== */
.card{background:#fff;border-radius:24px;padding:36px;border:1px solid rgba(74,124,89,.08);box-shadow:0 2px 16px rgba(0,0,0,.03)}
.card-title{display:flex;align-items:center;justify-content:center;gap:10px;font-size:18px;font-weight:700;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #E8E4DC;text-align:center}
.card-title span{font-size:22px}
.card-list{list-style:none}
.card-list li{padding:12px 0;display:flex;align-items:flex-start;gap:10px;font-size:15px;border-bottom:1px dashed rgba(0,0,0,.05);line-height:1.7}
.card-list li:last-child{border-bottom:none}
.card-list li::before{content:'·';color:#4A7C59;font-size:16px;flex-shrink:0;margin-top:3px}

/* ===== 通用网格 ===== */
.grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.grid-3{grid-template-columns:1fr 1fr 1fr}
@media(max-width:700px){.grid{grid-template-columns:1fr}.grid-3{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.grid-3{grid-template-columns:1fr}}

/* ===== 页脚（所有页面通用） ===== */
.footer, footer {
  background: #2C2C2C;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 48px 20px;
  font-size: 13px;
  line-height: 2;
}
.footer-brand, footer strong {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  font-family: 'ZCOOL XiaoWei', serif;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ===== Hero CTA按钮 ===== */
.hero-cta{text-align:center;margin-top:32px}
.hero-cta .btn-primary{display:inline-block;background:#4A7C59;color:#fff;padding:14px 36px;border-radius:40px;font-size:15px;letter-spacing:2px;text-decoration:none;transition:all .4s;box-shadow:0 4px 20px rgba(74,124,89,.25)}
.hero-cta .btn-primary:hover{background:#2D5A3D;transform:translateY(-2px);box-shadow:0 8px 30px rgba(74,124,89,.35)}
.hero-hotline{margin-top:16px;font-size:14px;color:#6B6B6B;letter-spacing:1px}

/* ===== 滚动条（所有页面通用） ===== */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:#D5CFC4;border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:#9B9B9B}




/* ===== 页面特殊样式 ===== */

/* --- index.html - 首页 --- */
.hero{min-height:calc(100vh - 64px);display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:100px 20px 60px;position:relative;background:linear-gradient(180deg,#FAF7F2 0%,#F0EDE6 100%);z-index:1;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;left:-20%;width:140%;height:100%;background:radial-gradient(ellipse at 30% 50%,rgba(74,124,89,.05) 0%,transparent 60%);pointer-events:none}
.hero-glyph{font-size:clamp(100px,20vw,200px);font-weight:700;color:rgba(74,124,89,.07);position:absolute;top:50vh;left:50%;transform:translate(-50%,-50%);pointer-events:none;user-select:none;font-family:'Noto Serif SC',serif;letter-spacing:-20px;text-align:center;line-height:0.9}
.hero-content{position:relative;z-index:2;max-width:680px}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;letter-spacing:4px;color:#4A7C59;text-transform:uppercase;margin-bottom:28px}
.hero-eyebrow::before,.hero-eyebrow::after{content:'';width:30px;height:1px;background:#4A7C59;opacity:.5}
.hero h1{font-size:clamp(36px,6vw,60px);font-weight:700;line-height:1.2;margin-bottom:20px}
.hero h1 em{font-style:normal;color:#4A7C59}
.hero-highlight{color:#4A7C59}
.hero-sub{color:#2C2C2C;margin-top:8px;display:block}
.hero-desc{font-size:16px;color:#6B6B6B;line-height:2;margin-bottom:24px}
.btn-cta{display:inline-block;padding:14px 40px;background:#4A7C59;color:#fff;font-size:16px;font-weight:600;border-radius:30px;text-decoration:none;transition:all .3s ease;margin-top:8px}
.btn-cta:hover{background:#3d6649;transform:translateY(-2px);box-shadow:0 8px 20px rgba(74,124,89,.3)}
.hero-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:64px;width:100%;max-width:900px;z-index:2}
@media(max-width:768px){.cards{grid-template-columns:1fr}}
.card-link{text-decoration:none;color:inherit;display:block}
.card-link:hover{transform:translateY(-4px)}
.card-icon{font-size:48px;margin-bottom:16px;animation:float 3s ease-in-out infinite}
.card-name{font-size:20px;font-weight:700;margin-bottom:8px;color:#2C2C2C}
.card-desc{font-size:14px;color:#6B6B6B;line-height:1.7}


/* --- tizhi.html - 体质测评 --- */
.tizhi-hero{min-height:calc(100vh - 64px);display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:100px 20px 60px;position:relative;background:linear-gradient(180deg,#FAF7F2 0%,#F0EDE6 100%);z-index:1;overflow:hidden}
.tizhi-hero .hero-taiji{position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;pointer-events:none;z-index:0}
.tizhi-hero .hero-taiji span{display:block;font-size:800px;line-height:calc(100vh - 64px);color:#4A7C59;opacity:.12;transform-origin:center center;animation:rotate 60s linear infinite}
@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@media(max-width:768px){.tizhi-hero .hero-taiji span{font-size:550px}}
@media(max-width:480px){.tizhi-hero .hero-taiji span{font-size:450px}}
.hero-tags{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1}
.hero-tag{padding:5px 16px;background:rgba(74,124,89,.08);color:#4A7C59;border-radius:20px;font-size:13px}
.hero-hotline{font-size:16px;color:#4A7C59;font-weight:600;letter-spacing:2px;margin-top:24px}
.realtime-time{font-size:28px;font-weight:600;color:#4A7C59;letter-spacing:4px;margin-bottom:4px;font-family:'Noto Serif SC',serif}
.realtime-date{font-size:14px;color:#9B9B9B;margin-bottom:16px}
.prog{display:flex;justify-content:center;gap:8px;margin-bottom:40px}
.dot{width:8px;height:8px;border-radius:50%;background:#E8E4DC;transition:all .4s}
.dot.active{background:#4A7C59;width:24px;border-radius:4px}
.dot.done{background:#6B9E7A}
.quiz{background:#F5F0E8;border-radius:24px;padding:48px;border:1px solid #E8E4DC;max-width:600px;margin:0 auto}
.qh{display:flex;justify-content:space-between;align-items:center;margin-bottom:32px}
.qm{font-size:12px;color:#9B9B9B;letter-spacing:2px}
.qt{display:none;font-size:14px;color:#4A7C59;background:rgba(74,124,89,.08);padding:4px 14px;border-radius:20px}
.qtext{font-size:clamp(17px,3vw,21px);font-weight:600;line-height:1.6;margin-bottom:28px}
.q-opts{display:grid;grid-template-columns:1fr;gap:10px}
@media(min-width:600px){.q-opts{grid-template-columns:1fr 1fr}}
.q-opt{display:flex;align-items:center;gap:14px;padding:18px 20px;background:#fff;border:1.5px solid #E8E4DC;border-radius:16px;cursor:pointer;transition:all .3s;font-size:15px;font-family:inherit}
.q-opt:hover{border-color:#6B9E7A;background:rgba(74,124,89,.03)}
.q-opt.sel{border-color:#4A7C59;background:rgba(74,124,89,.06)}
.q-dot{width:22px;height:22px;border-radius:50%;border:1.5px solid #D5CFC4;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:12px;color:#fff;transition:all .3s}
.q-opt.sel .q-dot{background:#4A7C59;border-color:#4A7C59}
.q-hint{font-size:13px;color:#9B9B9B;margin-bottom:16px;min-height:20px}
.qnav{display:flex;justify-content:space-between;align-items:center;margin-top:8px}
.q-btn{padding:12px 28px;border-radius:30px;font-size:14px;cursor:pointer;transition:all .3s;font-family:inherit;border:none}
.q-btn-ghost{background:transparent;border:1px solid #D5CFC4;color:#6B6B6B}
.q-btn-ghost:hover{border-color:#6B6B6B}
.q-btn-next{background:#4A7C59;color:#fff;box-shadow:0 3px 15px rgba(74,124,89,.2)}
.q-btn-next:hover{background:#2D5A3D}
.res{display:none;text-align:center;padding:40px 0;animation:fIn .5s ease}
.res.show{display:block}
@keyframes fIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.r-emoji{font-size:80px;margin-bottom:24px}
.r-name{font-size:36px;font-weight:700;color:#4A7C59;margin-bottom:12px}
.r-desc{font-size:15px;color:#6B6B6B;line-height:2;max-width:480px;margin:0 auto 32px}
.r-tags{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:40px}
.r-tags span{padding:6px 16px;background:rgba(74,124,89,.08);color:#4A7C59;border-radius:20px;font-size:13px}
.r-badge{display:inline-block;background:#FFF3E0;color:#E65100;font-size:12px;letter-spacing:2px;padding:4px 14px;border-radius:20px;margin-bottom:16px;font-weight:600}
.res-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:24px}
.res-upgrade{background:#FFF8E1;border:1px solid #FFE082;border-radius:16px;padding:16px 20px;margin-top:24px;font-size:14px;color:#555;line-height:1.8;max-width:720px;margin-left:auto;margin-right:auto}
.res-upgrade a{color:#4A7C59;font-weight:600;text-decoration:none}
.res-upgrade .btn{color:#fff!important}
/* 雷达图 */
#radarWrap{margin-bottom:32px}
#radarWrap canvas{filter:drop-shadow(0 2px 8px rgba(74,124,89,.12))}
/* 主型 */
.r-primary{text-align:center;margin-bottom:24px}
.r-primary .r-badge{background:#E8F5E9;color:#2E7D32;font-size:12px;letter-spacing:2px;padding:4px 14px;border-radius:20px;margin-bottom:16px;font-weight:600;display:inline-block}
/* 兼型 */
.r-secondary{background:rgba(74,124,89,.04);border:1px solid rgba(74,124,89,.15);border-radius:16px;padding:16px 20px;margin:0 auto 24px;max-width:600px}
.r-sec-title{font-size:13px;color:#4A7C59;font-weight:600;letter-spacing:2px;margin-bottom:12px;text-align:center}
#rSecList{display:flex;flex-direction:column;gap:12px}
.sec-item{display:flex;align-items:center;gap:12px;padding:10px 14px;background:#fff;border-radius:12px;border:1px solid rgba(74,124,89,.1)}
.sec-emoji{font-size:28px;flex-shrink:0}
.sec-info{flex:1}
.sec-name{font-size:15px;font-weight:600;color:#333;margin-bottom:2px}
.sec-tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:4px}
.sec-tags span{padding:2px 10px;background:rgba(74,124,89,.06);color:#4A7C59;border-radius:12px;font-size:12px}
.sec-tip{font-size:12px;color:#888;margin-top:4px;line-height:1.6}
.tip-card{background:#fff;border-radius:24px;padding:36px;border:1px solid rgba(74,124,89,.08);box-shadow:0 2px 16px rgba(0,0,0,.03);max-width:600px;margin:32px auto 0}
.tip-list{list-style:none}
.tip-list li{padding:10px 0;display:flex;align-items:flex-start;gap:10px;font-size:14px;border-bottom:1px dashed rgba(0,0,0,.05);line-height:1.7}
.tip-list li:last-child{border-bottom:none}
.tip-list li::before{content:'·';color:#4A7C59;font-size:16px;flex-shrink:0;margin-top:2px}
.tip-main{color:#333!important;font-weight:500}
.tip-sec{color:#888!important;border-left:3px solid rgba(74,124,89,.25);padding-left:14px!important;border-bottom-color:rgba(74,124,89,.05)!important}
.tip-init{padding:20px 0}
.tip-init li{margin-bottom:12px;padding-left:28px;position:relative}
.tip-init li::before{content:'·';position:absolute;left:8px;color:#4A7C59;font-weight:700}
.reminder-box{background:rgba(74,124,89,.05);border-radius:16px;padding:24px;border:1px solid rgba(74,124,89,.15);text-align:left;max-width:600px;margin:0 auto}
.reminder-box .notice-title{font-size:18px;font-weight:600;color:#4A7C59;margin-bottom:20px;display:flex;align-items:center;gap:8px}
.reminder-box .notice-list{list-style:none}
.reminder-box .notice-list li{padding:12px 0;padding-left:28px;position:relative;font-size:15px;color:#333;line-height:1.6;border-bottom:1px solid rgba(74,124,89,.1)}
.reminder-box .notice-list li:last-child{border-bottom:none}
.reminder-box .notice-list li::before{content:'✓';position:absolute;left:0;color:#4A7C59;font-weight:600;font-size:16px}
.reminder-box .highlight{color:#4A7C59;font-weight:600}


/* --- jieqi.html - 节气养生 --- */
.hero-emoji{font-size:96px;margin-bottom:12px;position:relative;z-index:1;animation:float 3s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.huangdi-card{background:#4A7C59;color:#fff;border-radius:20px;padding:32px;margin:24px auto;max-width:700px;text-align:center;box-shadow:0 8px 32px rgba(74,124,89,.25);position:relative;overflow:hidden}
.huangdi-card::before{content:'❝';position:absolute;top:12px;left:20px;font-size:60px;opacity:.15;color:#fff}
.huangdi-card::after{content:'❞';position:absolute;bottom:12px;right:20px;font-size:60px;opacity:.15;color:#fff}
.huangdi-text{font-size:18px;line-height:2;position:relative;z-index:1;margin-bottom:16px}
.huangdi-source{font-size:14px;opacity:.9;position:relative;z-index:1}
.hero-date{font-size:13px;color:#9B9B9B;margin-bottom:16px;letter-spacing:1px}
.hero-poem{font-size:13px;color:#9B9B9B;max-width:480px;margin:20px auto 0;line-height:2;position:relative;z-index:1}
.season-tabs{display:flex;justify-content:center;gap:8px;margin-bottom:40px;flex-wrap:wrap}
.season-tab{padding:8px 20px;border-radius:20px;border:1px solid #E8E4DC;background:#fff;cursor:pointer;font-size:14px;font-family:inherit;color:#6B6B6B;transition:all .3s}
.season-tab:hover{border-color:#6B9E7A}
.season-tab.active{background:#4A7C59;color:#fff;border-color:#4A7C59}
.jieqi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:900px){.jieqi-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.jieqi-grid{grid-template-columns:1fr}}
.jieqi-card{background:#fff;border-radius:20px;padding:0;border:1px solid rgba(74,124,89,.08);box-shadow:0 2px 16px rgba(0,0,0,.03);transition:all .4s cubic-bezier(.25,.46,.45,.94);cursor:pointer;overflow:hidden;display:flex;flex-direction:column}
.jieqi-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(74,124,89,.14)}
.jieqi-card.current{border-color:#4A7C59;border-width:2px}
.card-head{flex:1;padding:28px 28px 20px;background:#fff}
.card-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:10px}
.card-emoji{font-size:58px}
.card-season-tag{font-size:13px;padding:4px 14px;border-radius:20px;letter-spacing:1px}
.spr{background:rgba(74,124,89,.08);color:#4A7C59}
.ssu{background:rgba(212,165,55,.1);color:#C4850A}
.sau{background:rgba(180,130,80,.1);color:#A47B3C}
.swi{background:rgba(100,140,200,.1);color:#4A7C8C}
.card-name{font-size:26px;font-weight:700;color:#2C2C2C;margin-bottom:6px}
.card-solar{font-size:15px;color:#9B9B9B;margin-bottom:8px}
.card-organ{font-size:14px;color:#4A7C59;font-weight:600;margin-bottom:10px;letter-spacing:.5px}
.card-body{display:flex;justify-content:space-between;align-items:flex-start}
.card-info{flex:1}
.card-wuhou{flex:0 0 auto;margin-left:12px;text-align:left;display:flex;flex-direction:column;gap:4px}
.wuhou-item{font-size:13px;color:#666;line-height:1.5}
.card-poem{font-size:14px;color:#9B9B9B;font-style:normal;line-height:2;border-top:1px dashed rgba(0,0,0,.06);padding-top:12px;margin-top:10px}
.card-sticker-hint{font-size:13px;color:#4A7C59;padding-top:10px;font-weight:500;letter-spacing:.5px;text-align:center}

/* 通用弹窗 Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}
.modal-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.modal-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}
.modal-close {
  background: none;
  border: none;
  color: #999;
  font-size: 14px;
  margin-top: 16px;
  cursor: pointer;
}
.modal-close:hover {
  color: #666;
}

/* 贴图弹窗 Modal */
.sticker-modal{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center}
.sticker-modal.active{display:flex}
.sticker-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(4px)}
.sticker-modal-content{position:relative;background:#fff;border-radius:20px;padding:32px;max-width:720px;width:95%;max-height:90vh;overflow-y:auto;box-shadow:0 24px 80px rgba(0,0,0,.2)}
.sticker-modal-close{position:absolute;top:16px;right:20px;font-size:28px;background:none;border:none;cursor:pointer;color:#999;line-height:1}
.sticker-modal-close:hover{color:#333}
.sticker-modal-title{text-align:center;font-size:22px;margin-bottom:24px;color:#2C2C2C}
.sticker-modal-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media(max-width:600px){.sticker-modal-grid{grid-template-columns:repeat(2,1fr)}}
.sticker-modal-grid img{width:100%;aspect-ratio:1;border-radius:12px;cursor:pointer;transition:transform .2s;box-shadow:0 2px 8px rgba(0,0,0,.1)}
.sticker-modal-grid img:hover{transform:scale(1.05)}
.sticker-modal-download-all{display:block;margin:24px auto 0;padding:14px 40px;background:#4A7C59;color:#fff;border:none;border-radius:40px;font-size:15px;cursor:pointer;transition:background .3s}
.sticker-modal-download-all:hover{background:#3d6a4a}
.mini-chips{display:flex;gap:8px;flex-wrap:wrap;padding:14px 28px;border-top:1px solid rgba(0,0,0,.04)}
.mini-chip{font-size:11px;padding:3px 10px;border-radius:20px;white-space:nowrap}
.mini-chip.s{background:rgba(74,124,89,.1);color:#4A7C59}
.mini-chip.d{background:rgba(200,149,106,.1);color:#B07A4A}
.mini-chip.e{background:rgba(200,75,55,.1);color:#C04A37}
.mini-chip.m{background:rgba(200,107,191,.1);color:#B06BBF}
.mini-chip.l{background:rgba(91,141,184,.1);color:#4A8DB8}
.card-detail{display:none;padding:0 24px 24px}
.card-detail.open{display:block}
@keyframes detailIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.card-detail.open{animation:detailIn .35s ease}
.detail-sections{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:600px){.detail-sections{grid-template-columns:1fr}}
.detail-section{background:#FAF7F2;border-radius:16px;padding:20px}
.detail-section-icon{font-size:32px;margin-bottom:12px}
.detail-section-label{font-size:14px;color:#9B9B9B;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;font-weight:600}
.detail-section-list{list-style:none}
.detail-section-list li{font-size:15px;color:#5A5A5A;line-height:1.8;padding:6px 0;border-bottom:1px dashed rgba(0,0,0,.05)}
.detail-section-list li:last-child{border-bottom:none}
.detail-section-list li::before{content:'·';color:#4A7C59;margin-right:6px;font-weight:700}
.detail-section-list.avoid li::before{content:'✗';color:#C04A37}
/* 五维养生专区 */
.wuxian-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:60px}
@media(max-width:768px){.wuxian-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.wuxian-grid{grid-template-columns:1fr}}
.wuxian-card{background:#fff;border-radius:20px;padding:28px;border:1px solid rgba(74,124,89,.1);box-shadow:0 2px 12px rgba(0,0,0,.04)}
.wuxian-card-icon{font-size:40px;margin-bottom:14px;text-align:center}
.wuxian-card-label{font-size:15px;color:#9B9B9B;letter-spacing:2px;text-transform:uppercase;margin-bottom:18px;font-weight:600;text-align:center}
.wuxian-card-list{list-style:none}
.wuxian-card-list li{font-size:15px;color:#5A5A5A;line-height:1.9;padding:10px 0;border-bottom:1px dashed rgba(0,0,0,.05)}
.wuxian-card-list li:last-child{border-bottom:none}
.wuxian-card-list li::before{content:'·';color:#4A7C59;margin-right:6px;font-weight:700}
.wuxian-card.avoid{border-color:#C04A37;border-width:2px}
.wuxian-card.avoid .wuxian-card-list li::before{content:'✗';color:#C04A37}
.avoid-cat{font-weight:600;color:#2C2C2C;margin-top:8px;padding-bottom:4px}
.avoid-cat::before{content:'·';color:#4A7C59;font-weight:700;margin-right:4px}


/* --- weather.html - 天气出行 --- */
.weather-hero{margin-top:8px;background:#fff;border-radius:28px;padding:40px 48px;display:inline-flex;align-items:center;gap:32px;box-shadow:0 8px 40px rgba(74,124,89,.1);border:1px solid rgba(74,124,89,.08);max-width:500px;width:100%}
.w-big-icon{font-size:72px;animation:float 3s ease-in-out infinite}
.w-big-temp{font-size:64px;font-weight:700;color:#2C2C2C;line-height:1}
.w-big-desc{font-size:20px;color:#6B6B6B;margin-top:4px}
.w-col{display:flex;flex-direction:column;gap:4px;text-align:left}
.w-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.w-chip{padding:4px 14px;background:rgba(74,124,89,.08);border-radius:20px;font-size:13px;color:#4A7C59}
.w-info{display:inline-flex;align-items:center;gap:4px;font-size:14px;color:#4A7C59}
.w-info-icon{font-size:16px}
.w-info-text{font-weight:500}
.card-list.warn li::before{color:#D4A537}
.card-list.warn li.warn-item{color:#C4850A}
.w-tag{display:inline-block;padding:4px 12px;border-radius:20px;font-size:13px;margin:2px}
.w-tag.green{background:rgba(74,124,89,.1);color:#4A7C59}
.w-tag.amber{background:rgba(212,165,55,.1);color:#C4850A}
.w-tag.red{background:rgba(201,96,107,.1);color:#C0616B}
@media(max-width:768px){.weather-hero{flex-direction:column;text-align:center;padding:28px 24px}}


/* --- service.html - 服务项目 --- */
.page-hero{padding:100px 20px 64px;text-align:center;background:linear-gradient(180deg,#FAF7F2 0%,#F0EDE6 100%)}
.page-hero h1{font-size:clamp(28px,5vw,48px);font-weight:700;margin-bottom:16px}
.page-hero p{font-size:16px;color:#6B6B6B;max-width:640px;margin:0 auto;line-height:2}
.hero-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:32px}
.hero-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 36px;border-radius:40px;background:#4A7C59;color:#fff;font-size:15px;font-weight:600;letter-spacing:1px;text-decoration:none;transition:all .3s}
.hero-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(74,124,89,.25)}
.hero-btn-secondary{background:transparent;border:2px solid #4A7C59;color:#4A7C59}
.hero-btn-secondary:hover{background:#4A7C59;color:#fff}
.hero-hotline{font-size:15px;color:#2C2C2C;margin-top:20px;opacity:.8}
.content{padding:64px 20px;max-width:1100px;margin:0 auto}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:900px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.svc-grid{grid-template-columns:1fr}}
.svc-card{background:#fff;border-radius:24px;padding:36px 28px;border:1px solid rgba(74,124,89,.08);box-shadow:0 4px 20px rgba(0,0,0,.03);transition:all .4s;display:flex;flex-direction:column}
.svc-card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(74,124,89,.12)}
.svc-icon{font-size:52px;margin-bottom:20px;-webkit-filter:none;filter:none;color:initial;font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;text-shadow:none}
.svc-tag{display:inline-block;font-size:11px;letter-spacing:2px;color:#4A7C59;background:rgba(74,124,89,.07);padding:3px 12px;border-radius:20px;margin-bottom:14px;width:fit-content}
.svc-name{font-size:20px;font-weight:700;margin-bottom:10px}
.svc-desc{font-size:14px;color:#6B6B6B;line-height:1.8;flex:1}
.svc-price{font-size:22px;font-weight:700;color:#4A7C59;margin-top:20px;margin-bottom:20px}
.svc-price span{font-size:13px;font-weight:400;color:#9B9B9B}
.svc-card.has-discount{position:relative;overflow:hidden}
.discount-ribbon{position:absolute;top:16px;right:-28px;background:#E74C3C;color:#fff;padding:6px 40px;font-size:12px;font-weight:600;transform:rotate(45deg);white-space:nowrap}
.svc-card.has-green-ribbon{position:relative;overflow:hidden}
.green-ribbon{position:absolute;top:16px;right:-28px;background:#4A7C59;color:#fff;padding:6px 40px;font-size:12px;font-weight:600;transform:rotate(45deg);white-space:nowrap}
.svc-price-wrap{display:flex;align-items:center;gap:8px;margin-top:20px;margin-bottom:20px}
.svc-price-discount{font-size:28px;font-weight:700;color:#E53935}
.svc-price-original{font-size:16px;color:#9B9B9B;text-decoration:line-through}
.svc-price-unit{font-size:13px;color:#9B9B9B}
.svc-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 28px;border-radius:40px;border:1.5px solid #4A7C59;color:#4A7C59;font-size:14px;letter-spacing:1px;transition:all .3s;text-decoration:none;cursor:pointer;font-family:inherit;background:transparent}
.svc-btn:hover{background:#4A7C59;color:#fff}
.svc-features{list-style:none;margin-top:16px;display:flex;flex-direction:column;gap:8px}
.svc-features li{font-size:13px;color:#6B6B6B;padding-left:20px;position:relative}
.svc-features li::before{content:'✓';position:absolute;left:0;color:#4A7C59;font-weight:700}
.process-section{background:linear-gradient(180deg,#F0EDE6 0%,#FAF7F2 100%);padding:64px 20px;margin:0 -20px}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;max-width:1100px;margin:0 auto}
@media(max-width:900px){.process-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.process-grid{grid-template-columns:1fr}}
.process-item{text-align:center}
.process-num{width:48px;height:48px;border-radius:50%;background:#4A7C59;color:#fff;font-size:20px;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-family:serif}
.process-name{font-size:16px;font-weight:700;margin-bottom:8px}
.process-desc{font-size:13px;color:#6B6B6B;line-height:1.7}
.cta-section{position:relative;background:linear-gradient(135deg,#2C5538 0%,#3D7A52 40%,#4A7C59 60%,#2C5538 100%);color:#fff;text-align:center;padding:60px 48px;border-radius:28px;margin-top:64px;overflow:hidden;box-shadow:0 20px 60px rgba(44,85,56,.25)}
.cta-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 30% 50%,rgba(255,255,255,.06) 0%,transparent 60%)}
.cta-section::after{content:'';position:absolute;top:-60px;right:-60px;width:200px;height:200px;background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 70%);border-radius:50%}
.cta-section h2{font-size:clamp(28px,5vw,42px);font-weight:700;margin-bottom:20px;font-family:'Noto Serif SC',serif;position:relative;z-index:1}
.cta-section p{font-size:15px;color:rgba(255,255,255,.75);max-width:480px;margin:0 auto;line-height:2;position:relative;z-index:1}
.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:32px;margin-bottom:24px;position:relative;z-index:1}
.cta-btn{display:inline-flex;align-items:center;gap:8px;padding:16px 44px;border-radius:40px;background:#fff;color:#4A7C59;font-size:16px;font-weight:700;letter-spacing:2px;text-decoration:none;transition:all .3s}
.cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.cta-btn-secondary{background:transparent;border:2px solid #fff;color:#fff}
.cta-btn-secondary:hover{background:rgba(255,255,255,.1)}
.cta-qrcode{display:flex;flex-direction:column;align-items:center;gap:6px;margin-bottom:16px}.cta-qrcode img{width:100px;height:100px;border-radius:12px;background:rgba(255,255,255,.2);padding:6px;border:2px solid rgba(255,255,255,.3)}.cta-qrcode span{font-size:12px;opacity:.7;letter-spacing:2px}
.cta-hotline{font-size:16px;color:#FFD700;font-weight:600;letter-spacing:2px;margin-top:20px;text-shadow:0 0 20px rgba(255,215,0,.3);position:relative;z-index:1}

/* 关于我们页面 */
.about-intro{padding:64px 20px;max-width:1100px;margin:0 auto}
.about-intro-content{display:flex;align-items:center;gap:60px}
@media(max-width:900px){.about-intro-content{flex-direction:column;text-align:center}}
.about-intro-text h2{font-size:clamp(32px,5vw,48px);color:#4A7C59;margin-bottom:8px}
.about-slogan{font-size:18px;color:#6B6B6B;letter-spacing:8px;margin-bottom:24px}
.about-intro-text p{font-size:15px;color:#2C2C2C;line-height:2;margin-bottom:16px}
.about-taiji{font-size:180px;color:#4A7C59;opacity:.15;line-height:1}
@media(max-width:900px){.about-taiji{font-size:120px}}

.vision-section{background:#F0EDE6;padding:64px 20px}
.vision-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1100px;margin:0 auto}
@media(max-width:800px){.vision-grid{grid-template-columns:1fr}}
.vision-card{background:#fff;padding:40px 32px;border-radius:16px;text-align:center;box-shadow:0 4px 20px rgba(0,0,0,.04)}
.vision-icon{font-size:48px;margin-bottom:20px}
.vision-card h3{font-size:20px;color:#4A7C59;margin-bottom:12px}
.vision-card p{font-size:14px;color:#6B6B6B;line-height:1.9}

.advantage-section{padding:64px 20px;max-width:1100px;margin:0 auto}
.advantage-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px;margin-top:40px}
@media(max-width:700px){.advantage-grid{grid-template-columns:1fr}}
.advantage-item{padding:32px;background:#FAF7F2;border-radius:16px;position:relative}
.advantage-num{position:absolute;top:24px;right:24px;font-size:48px;font-weight:700;color:#E5DFD4;font-family:serif}
.advantage-item h3{font-size:18px;color:#4A7C59;margin-bottom:12px}
.advantage-item p{font-size:14px;color:#6B6B6B;line-height:1.8}

.team-section{background:#F0EDE6;padding:64px 20px}
.section-subtitle{text-align:center;font-size:14px;color:#9B9B9B;margin-top:8px}
.team-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:40px auto 0}
@media(max-width:600px){.team-grid{grid-template-columns:1fr}}
.team-card{background:#fff;border-radius:16px;padding:32px 24px;text-align:center;box-shadow:0 4px 20px rgba(0,0,0,.04);transition:transform .3s}
.team-card:hover{transform:translateY(-4px)}
.team-avatar{font-size:64px;margin-bottom:16px}
.team-info h3{font-size:18px;color:#2C2C2C;margin-bottom:4px}
.team-title{font-size:14px;color:#4A7C59;font-weight:600;margin-bottom:12px}
.team-desc{font-size:13px;color:#6B6B6B;line-height:1.7}

.contact-section{padding:64px 20px;max-width:1100px;margin:0 auto}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:40px}
@media(max-width:700px){.contact-grid{grid-template-columns:1fr}}
.contact-item{text-align:center;padding:32px;background:#FAF7F2;border-radius:16px}
.contact-icon{font-size:40px;margin-bottom:16px}
.contact-item h3{font-size:16px;color:#4A7C59;margin-bottom:8px}
.contact-item p{font-size:14px;color:#2C2C2C;line-height:1.8}
.contact-time{font-size:12px;color:#9B9B9B;margin-top:4px}
.contact-qr{width:90px;height:90px;border-radius:10px;margin:8px auto;border:2px solid rgba(74,124,89,.15);padding:4px;background:#fff}


/* ===== 响应式 ===== */
@media(max-width:768px){
  nav{padding:0 20px}
  .hero{padding:90px 20px 50px}
  .section{padding:20px 20px}
  .quiz{padding:28px 20px}
  .card{padding:28px 20px}
}


/* ===== 首页视频播放区 ===== */
.video-section{padding:50px 20px 20px;max-width:900px;margin:0 auto;text-align:center}
.video-section .plan-video-wrapper{margin-bottom:12px}


/* ===== 首页文章列表 ===== */
.articles-section{padding:80px 20px;max-width:800px;margin:0 auto}
.articles-list{display:flex;flex-direction:column;gap:0;border-radius:16px;overflow:hidden;background:#fff;border:1px solid rgba(74,124,89,.08);box-shadow:0 2px 16px rgba(0,0,0,.03)}
.article-item{display:flex;align-items:center;gap:20px;padding:20px 24px;text-decoration:none;color:#2C2C2C;transition:all .3s;border-bottom:1px solid rgba(0,0,0,.05)}
.article-item:last-child{border-bottom:none}
.article-item:hover{background:rgba(74,124,89,.04)}
.article-item:hover .article-title{color:#4A7C59}
.article-date{flex-shrink:0;font-size:13px;color:#9B9B9B;letter-spacing:.5px}
.article-title{flex:1;font-size:16px;font-weight:500;transition:color .3s;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.articles-more{display:inline-block;margin-top:24px;padding:12px 32px;border:1.5px solid #4A7C59;border-radius:30px;color:#4A7C59;font-size:14px;text-decoration:none;transition:all .3s;letter-spacing:1px}
.articles-more:hover{background:#4A7C59;color:#fff}
@media(max-width:768px){.articles-section{padding:60px 20px}.article-item{padding:16px 20px;gap:12px}.article-date{font-size:12px}.article-title{font-size:15px}}

/* ===== 核心理念横幅 ===== */
.philosophy-banner{position:relative;background:linear-gradient(135deg,#2C5538 0%,#3D7A52 40%,#4A7C59 60%,#2C5538 100%);border-radius:28px;padding:60px 48px;margin:48px auto;max-width:900px;text-align:center;overflow:hidden;box-shadow:0 20px 60px rgba(44,85,56,.25)}
.philosophy-banner::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 30% 50%,rgba(255,255,255,.06) 0%,transparent 60%)}
.philosophy-banner::after{content:'';position:absolute;top:-60px;right:-60px;width:200px;height:200px;background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 70%);border-radius:50%}
.phil-content{position:relative;z-index:1}
.phil-tag{display:inline-block;font-size:11px;letter-spacing:4px;color:rgba(255,255,255,.55);text-transform:uppercase;margin-bottom:16px;border:1px solid rgba(255,255,255,.2);padding:4px 14px;border-radius:20px}
.phil-title{font-size:clamp(28px,5vw,42px);font-weight:700;color:#fff;line-height:1.35;margin-bottom:20px;font-family:'Noto Serif SC',serif}
.phil-highlight{color:#FFD700;text-shadow:0 0 30px rgba(255,215,0,.4);position:relative}
.phil-highlight::after{content:'';position:absolute;bottom:-4px;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,#FFD700,transparent);border-radius:2px}
.phil-sub{font-size:15px;color:rgba(255,255,255,.75);line-height:2;max-width:480px;margin:0 auto}
.phil-qrcode{margin-top:24px;display:flex;flex-direction:column;align-items:center;gap:6px}.phil-qrcode img{width:100px;height:100px;border-radius:12px;border:3px solid rgba(255,215,0,.4);background:rgba(255,255,255,.15);padding:6px}.phil-qrcode span{font-size:12px;color:rgba(255,255,255,.55);letter-spacing:2px}
.phil-hotline{font-size:16px;color:#FFD700;font-weight:600;letter-spacing:2px;margin-top:20px;text-shadow:0 0 20px rgba(255,215,0,.3)}
.phil-deco{font-size:120px;color:rgba(255,255,255,.05);position:absolute;top:50%;transform:translateY(-50%);user-select:none;line-height:1}
.phil-deco-left{left:8px}
.phil-deco-right{right:8px}
.phil-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:32px}
.phil-btn{display:inline-flex;align-items:center;gap:8px;padding:16px 44px;border-radius:40px;background:#fff;color:#4A7C59;font-size:16px;font-weight:700;letter-spacing:2px;text-decoration:none;transition:all .3s}
.phil-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.phil-btn-ghost{background:transparent;border:2px solid #fff;color:#fff}
.phil-btn-ghost:hover{background:rgba(255,255,255,.1)}
@media(max-width:600px){.philosophy-banner{padding:44px 24px;margin:32px 16px 48px}.phil-title{font-size:26px}.phil-deco{font-size:80px}}

/* ===== plan.html - 养生方案 ===== */

/* 首屏英雄区 */
.plan-hero {
  padding: 120px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FAF7F2 0%, #F0EDE6 100%);
}

.plan-title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #2C2C2C;
}

.plan-subtitle {
  font-size: 16px;
  color: #888;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* 方案卡片 */
.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  margin: 0 20px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F0EDE8;
}

.plan-type {
  font-size: 24px;
  font-weight: 700;
  color: #4A7C59;
}

.plan-price {
  text-align: right;
}

.plan-price .amount {
  font-size: 32px;
  font-weight: 700;
  color: #4A7C59;
}

.plan-price .unit {
  font-size: 14px;
  color: #888;
}

/* 方案特性 */
.plan-features {
  list-style: none;
  margin-bottom: 24px;
}

.plan-features li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #F8F6F1;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A7C59;
  font-weight: 600;
}

/* 按钮 */
.btn-plan {
  width: 100%;
  padding: 16px;
  background: #4A7C59;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-plan:hover {
  background: #3D6649;
  transform: translateY(-2px);
}

.btn-plan-outline {
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #4A7C59;
  border: 1.5px solid #4A7C59;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
}

.btn-plan-outline:hover {
  background: #4A7C59;
  color: #fff;
}

/* 分析师推荐 */
.analyst-section {
  padding: 60px 20px;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 14px;
  color: #888;
}

/* 分析师卡片 */
.analyst-card {
  display: flex;
  gap: 16px;
  background: #FAF7F2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.analyst-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A7C59, #3D6B4A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.analyst-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.analyst-info .title {
  font-size: 13px;
  color: #4A7C59;
  margin-bottom: 8px;
}

.analyst-info .desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* 客户评价 */
.testimonial-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #F0EDE6 0%, #FAF7F2 100%);
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F0EDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.testimonial-meta h5 {
  font-size: 15px;
  font-weight: 600;
}

.testimonial-meta .stars {
  color: #FFB800;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-style: normal;
}

.testimonial-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(74, 124, 89, 0.08);
  color: #4A7C59;
  font-size: 12px;
  border-radius: 20px;
}

/* ===== plan.html ===== */

/* Hero */
.plan-hero {
  padding: 120px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(74,124,89,0.06) 0%, transparent 100%);
}
.plan-hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #4A7C59;
  background: rgba(74,124,89,0.08);
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.plan-hero h1 {
  font-size: clamp(28px,5vw,42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #2C3E2D;
}
.plan-hero h1 em {
  font-style: normal;
  color: #4A7C59;
}
.plan-hero-desc {
  font-size: 16px;
  color: #6B6B6B;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 2;
}
.plan-hero-price {
  font-size: 42px;
  font-weight: 700;
  color: #4A7C59;
}
.plan-hero-price span {
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

/* 优势区块 */
.advantages {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.adv-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(74,124,89,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74,124,89,0.1);
}
.adv-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.adv-card h3 {
  font-size: 18px;
  color: #2C3E2D;
  margin-bottom: 10px;
}
.adv-card p {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
}

/* 服务内容 */
.whats-included {
  padding: 60px 20px;
  background: rgba(74,124,89,0.03);
}
.whats-included-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(74,124,89,0.06);
}
.include-emoji {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,124,89,0.06);
  border-radius: 12px;
}
.include-item h4 {
  font-size: 15px;
  color: #2C3E2D;
  margin-bottom: 4px;
}
.include-item p {
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.7;
}

/* 流程 */
.how-it-works {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.steps {
  display: flex;
  gap: 0;
  margin-top: 40px;
  align-items: flex-start;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.step-num {
  width: 48px;
  height: 48px;
  background: #4A7C59;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 14px;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, #4A7C59, rgba(74,124,89,0.2));
}
.step h4 {
  font-size: 15px;
  color: #2C3E2D;
  margin-bottom: 6px;
}
.step p {
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.6;
}

/* 购买区 */
.purchase-section {
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.purchase-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(74,124,89,0.1);
  box-shadow: 0 8px 40px rgba(74,124,89,0.08);
}
.purchase-card h2 {
  text-align: center;
  font-size: 22px;
  color: #2C3E2D;
  margin-bottom: 8px;
}
.purchase-price-row {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ede6;
}
.purchase-price-row .price {
  font-size: 36px;
  font-weight: 700;
  color: #4A7C59;
}
.purchase-price-row .price-note {
  font-size: 14px;
  color: #999;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D5CFC4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #FAFAF7;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus {
  border-color: #4A7C59;
  background: #fff;
}
.form-input::placeholder {
  color: #B8B8B8;
}
.form-hint {
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}

/* 性别选择 */
.gender-select {
  display: flex;
  gap: 12px;
}
.gender-option {
  flex: 1;
  padding: 12px;
  text-align: center;
  border: 1px solid #D5CFC4;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  background: #FAFAF7;
}
.gender-option:hover {
  border-color: #4A7C59;
}
.gender-option.selected {
  border-color: #4A7C59;
  background: rgba(74,124,89,0.08);
  color: #4A7C59;
  font-weight: 600;
}

/* 城市显示 */
.city-display {
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-name {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #D5CFC4;
  border-radius: 12px;
  font-size: 15px;
  background: #FAFAF7;
  color: #2C3E2D;
}
.city-name span {
  color: #2C3E2D;
}
.city-edit {
  color: #4A7C59;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.city-edit:hover {
  text-decoration: underline;
}
.purchase-btn {
  width: 100%;
  padding: 16px;
  background: #4A7C59;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  font-family: inherit;
}
.purchase-btn:hover {
  background: #2D5A3D;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,124,89,0.3);
}
.purchase-btn:disabled {
  background: #B8C8BC;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.purchase-agreement {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 16px;
  line-height: 1.7;
}
.purchase-agreement a {
  color: #4A7C59;
  text-decoration: none;
}

/* 成功弹窗 */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
}
.success-modal.show {
  display: flex;
}
.success-box {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.success-box h3 {
  font-size: 22px;
  color: #2C3E2D;
  margin-bottom: 10px;
}
.success-box p {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* 分析师推荐 */
.analyst-section {
  padding: 60px 20px;
  background: #fff;
}
.analyst-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}
.analyst-section .subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}
.analyst-card {
  max-width: 800px;
  margin: 0 auto 20px;
  display: flex;
  gap: 20px;
  background: #FAF7F2;
  border-radius: 16px;
  padding: 24px;
}
.analyst-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A7C59, #3D6B4A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.analyst-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.analyst-title {
  font-size: 14px;
  color: #4A7C59;
  margin-bottom: 8px;
}
.analyst-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 客户评价 */
.testimonial-section {
  padding: 60px 20px;
  background: rgba(74,124,89,0.03);
}
.testimonial-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}
.testimonial-section .subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}
.testimonial-card {
  max-width: 800px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F0EDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.testimonial-meta h5 {
  font-size: 15px;
  font-weight: 600;
}
.stars {
  color: #FFB800;
  font-size: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-style: normal;
}
.testimonial-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(74, 124, 89, 0.08);
  color: #4A7C59;
  font-size: 12px;
  border-radius: 20px;
}

/* 响应式 */
@media (max-width: 700px) {
  .adv-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .step:not(:last-child)::after { display: none; }
  .purchase-card { padding: 28px 20px; }
  .analyst-card { flex-direction: column; text-align: center; }
  .analyst-avatar { margin: 0 auto; }
}

/* ===== supervision.html - 专属健康督导 ===== */

/* 通用section标题 */
.supervision-why .section-title,
.supervision-includes .section-title,
.supervision-team .section-title,
.supervision-process .section-title,
.supervision-stories .section-title,
.supervision-faq .section-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #2C3E2D;
  margin-bottom: 12px;
}

.supervision-why .section-subtitle,
.supervision-includes .section-subtitle,
.supervision-team .section-subtitle,
.supervision-process .section-subtitle,
.supervision-stories .section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #888;
  margin-bottom: 40px;
}

.supervision-why .section-inner,
.supervision-includes .section-inner,
.supervision-team .section-inner,
.supervision-process .section-inner,
.supervision-stories .section-inner,
.supervision-faq .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 首屏 */
.supervision-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, #FAF7F2 0%, #F0EDE6 100%);
  position: relative;
  overflow: hidden;
}

.supervision-hero::before {
  content: '☯';
  position: absolute;
  right: -40px;
  top: -40px;
  font-size: 200px;
  opacity: 0.03;
}

.supervision-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #4A7C59;
  background: rgba(74, 124, 89, 0.1);
  padding: 8px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.supervision-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #2C3E2D;
  line-height: 1.3;
}

.supervision-title span {
  color: #4A7C59;
  position: relative;
}

.supervision-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(74, 124, 89, 0.15);
  z-index: -1;
}

.supervision-subtitle {
  font-size: 17px;
  color: #6B6B6B;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 2;
}

.supervision-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: #4A7C59;
}

.price-unit {
  font-size: 20px;
  color: #888;
  margin-left: 8px;
}

.btn-supervision-primary {
  padding: 18px 48px;
  background: #4A7C59;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-supervision-primary:hover {
  background: #3D6649;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 124, 89, 0.3);
}

/* 为什么选择 */
.supervision-why {
  padding: 80px 20px;
  background: #fff;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto;
}

.pain-item {
  text-align: center;
  padding: 32px 24px;
  background: #FAF7F2;
  border-radius: 20px;
}

.pain-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.pain-item h4 {
  font-size: 17px;
  color: #2C3E2D;
  margin-bottom: 10px;
}

.pain-item p {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
}

.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.arrow-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4A7C59, transparent);
}

.solution-arrow span {
  color: #4A7C59;
  font-size: 15px;
  font-weight: 600;
}

/* 包含什么 */
.supervision-includes {
  padding: 80px 20px;
  background: rgba(74, 124, 89, 0.03);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.include-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.include-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 124, 89, 0.1);
}

.include-num {
  font-size: 12px;
  color: #4A7C59;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.include-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.include-card h4 {
  font-size: 17px;
  color: #2C3E2D;
  margin-bottom: 10px;
}

.include-card p {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
}

/* 督导团队 */
.supervision-team {
  padding: 80px 20px;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.team-card {
  background: #FAF7F2;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A7C59, #3D6B4A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
}

.team-role {
  font-size: 12px;
  color: #4A7C59;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.team-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.team-tags span {
  padding: 4px 12px;
  background: rgba(74, 124, 89, 0.1);
  color: #4A7C59;
  font-size: 12px;
  border-radius: 20px;
}

/* 服务流程 */
.supervision-process {
  padding: 80px 20px;
  background: rgba(74, 124, 89, 0.03);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 0;
}

.process-step {
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #4A7C59;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: #6B6B6B;
}

.process-arrow {
  font-size: 24px;
  color: #4A7C59;
  opacity: 0.5;
}

/* 客户故事 */
.supervision-stories {
  padding: 80px 20px;
  background: #fff;
}

.story-card {
  max-width: 800px;
  margin: 0 auto 24px;
  background: #FAF7F2;
  border-radius: 20px;
  padding: 32px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8E4DC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.story-meta h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.story-tags {
  display: flex;
  gap: 8px;
}

.story-tags span {
  padding: 4px 10px;
  background: rgba(74, 124, 89, 0.1);
  color: #4A7C59;
  font-size: 12px;
  border-radius: 20px;
}

.story-content p {
  font-size: 15px;
  color: #444;
  line-height: 2;
  margin-bottom: 20px;
  font-style: normal;
}

.story-result {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.result-label {
  font-size: 13px;
  color: #4A7C59;
  font-weight: 600;
}

.result-item {
  font-size: 13px;
  color: #555;
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
}

/* 购买区 */
.supervision-purchase {
  padding: 80px 20px;
  background: linear-gradient(180deg, #F0EDE6 0%, #FAF7F2 100%);
}

.supervision-purchase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 分层定价 */
.purchase-main-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
}
.purchase-main-desc {
  text-align: center;
  color: #888;
  font-size: 15px;
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 2px solid #E8E4DC;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.pricing-card-popular {
  border-color: #4A7C59;
  padding: 36px 28px;
  box-shadow: 0 8px 40px rgba(74, 124, 89, 0.15);
  position: relative;
}
.pricing-card-annual {
  background: #FAF7F2;
  position: relative;
  overflow: hidden;
}
.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -35px;
  background: #E74C3C;
  color: #fff;
  padding: 6px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
  transform-origin: center;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4A7C59, #3D6B4A);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pricing-header h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.pricing-header p {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.pricing-price {
  margin-bottom: 8px;
}
.price-num {
  font-size: 36px;
  font-weight: 700;
  color: #2C2C2C;
}
.price-period {
  font-size: 15px;
  color: #888;
}
.price-original {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing-save {
  font-size: 13px;
  color: #E74C3C;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 20px;
  display: inline-block;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 13px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px dashed #E8E4DC;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-btn {
  width: 100%;
  padding: 14px;
  background: #4A7C59;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.pricing-btn:hover {
  background: #3D6649;
}
.pricing-btn-outline {
  background: #fff;
  color: #4A7C59;
  border: 1.5px solid #4A7C59;
}
.pricing-btn-outline:hover {
  background: rgba(74, 124, 89, 0.05);
}
.pricing-btn-annual {
  background: #fff;
  color: #4A7C59;
  border: 1.5px solid #4A7C59;
}
.pricing-btn-annual:hover {
  background: #4A7C59;
  color: #fff;
}
.pricing-guarantee {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .pricing-card-popular {
    order: -1;
  }
  .pain-points,
  .includes-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
  .story-result {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 常见问题 */
.supervision-faq {
  padding: 80px 20px;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #FAF7F2;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h4 {
  font-size: 16px;
  color: #2C3E2D;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* 弹窗 */
.supervision-modal-box {
  max-width: 520px !important;
  width: 92% !important;
  padding: 36px 32px !important;
}

.supervision-modal-box h3 {
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.supervision-modal-box .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.supervision-modal-box .form-group label {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 600;
}

.supervision-modal-box .form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.supervision-modal-box .form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D5CFC4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #FAFAF7;
  transition: border-color 0.3s;
  outline: none;
  box-sizing: border-box;
  min-height: 48px;
}

.supervision-modal-box .form-input:focus {
  border-color: #4A7C59;
  background: #fff;
}

.supervision-modal-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D5CFC4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  margin-top: 8px;
  box-sizing: border-box;
  background: #FAFAF7;
}

.supervision-modal-box .btn-submit {
  width: 100%;
  padding: 16px;
  background: #4A7C59;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  margin-top: 8px;
}

.supervision-modal-box .btn-submit:hover {
  background: #3D6649;
}

.supervision-modal-box .btn-submit:disabled {
  background: #B8C8BC;
  cursor: not-allowed;
}

.supervision-modal-box .modal-close {
  background: none;
  border: none;
  color: #999;
  font-size: 14px;
  margin-top: 16px;
  cursor: pointer;
  width: 100%;
}

.supervision-modal-box .modal-close:hover {
  color: #666;
}

/* 响应式 */
@media (max-width: 768px) {
  .pain-points,
  .includes-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .story-result {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== 体质辨识付费版 ===== */
.step-indicator{display:flex;justify-content:center;align-items:center;gap:8px;margin-bottom:40px}
.step-item{display:flex;flex-direction:column;align-items:center;gap:4px}
.step-num{width:36px;height:36px;border-radius:50%;background:#E8E4DC;color:#9B9B9B;font-size:14px;font-weight:600;display:flex;align-items:center;justify-content:center;transition:all .3s}
.step-item.active .step-num{background:#4A7C59;color:#fff;box-shadow:0 4px 16px rgba(74,124,89,.3)}
.step-item.completed .step-num{background:#6B9E7A;color:#fff}
.step-label{font-size:12px;color:#9B9B9B;transition:color .3s}
.step-item.active .step-label{color:#4A7C59;font-weight:600}
.step-line{width:40px;height:2px;background:#E8E4DC;transition:background .3s}
.step-line.completed{background:#6B9E7A}
.step-panel{display:none}
.step-panel.active{display:block;animation:fIn .4s ease}
.step-actions-row{display:flex;justify-content:space-between;align-items:center;margin-top:24px;gap:16px}
.btn-back{padding:10px 20px;border:1px solid #D5CFC4;background:transparent;color:#6B6B6B;border-radius:30px;font-size:14px;cursor:pointer;transition:all .3s}
.btn-back:hover{border-color:#6B6B6B;color:#2C2C2C}
.btn-next{padding:12px 28px;background:#4A7C59;color:#fff;border-radius:30px;font-size:15px;font-weight:600;border:none;cursor:pointer;transition:all .3s;display:inline-flex;align-items:center;gap:6px}
.btn-next:hover{background:#3d6649;transform:translateY(-1px)}
.notice-card{background:rgba(74,124,89,.05);border-radius:16px;padding:24px;border:1px solid rgba(74,124,89,.15);text-align:left}
.notice-title{font-size:18px;font-weight:600;color:#4A7C59;margin-bottom:20px;display:flex;align-items:center;gap:8px}
.notice-list{list-style:none;padding:0;margin:0}
.notice-list li{padding:12px 0;padding-left:28px;position:relative;font-size:15px;color:#333;line-height:1.6;border-bottom:1px solid rgba(74,124,89,.1)}
.notice-list li:last-child{border-bottom:none}
.notice-list li::before{content:'✓';position:absolute;left:0;color:#4A7C59;font-weight:600;font-size:16px}
.highlight{color:#4A7C59;font-weight:600}
.form-group{margin-bottom:20px}
.form-label{display:block;font-size:14px;color:#6B6B6B;margin-bottom:8px}
.form-input{width:100%;padding:12px 16px;border:1.5px solid #E8E4DC;border-radius:12px;font-size:15px;transition:all .3s;box-sizing:border-box}
.form-input:focus{outline:none;border-color:#4A7C59;box-shadow:0 0 0 3px rgba(74,124,89,.1)}
.form-row{display:flex;gap:16px}
@media(max-width:600px){.form-row{flex-direction:column}}
.gender-select{display:flex;gap:12px}
.gender-option{flex:1;padding:12px;border:1.5px solid #E8E4DC;border-radius:12px;text-align:center;cursor:pointer;transition:all .3s;font-size:15px}
.gender-option:hover{border-color:#6B9E7A}
.gender-option.selected{border-color:#4A7C59;background:rgba(74,124,89,.06);color:#4A7C59;font-weight:600}
.city-display{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;background:#F5F0E8;border-radius:12px}
.city-name{display:flex;align-items:center;gap:8px;font-size:15px;color:#2C2C2C}
.city-edit{font-size:13px;color:#4A7C59;cursor:pointer}
.upload-tips{background:#F5F0E8;border-radius:16px;padding:20px 24px;margin-bottom:32px}
.upload-tips-title{font-size:16px;font-weight:600;color:#4A7C59;margin-bottom:16px;display:flex;align-items:center;gap:8px}
.upload-tips-list{list-style:none;padding:0;margin:0}
.upload-tips-list li{padding:8px 0;font-size:14px;color:#555;line-height:1.6}
.tip-check{color:#4A7C59;font-weight:600;margin-right:8px}
.upload-section{margin-bottom:32px}
.upload-label{font-size:16px;font-weight:600;color:#2C2C2C;margin-bottom:16px}
.upload-boxes{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:600px){.upload-boxes{grid-template-columns:1fr}}
.upload-box{background:#fff;border:1.5px solid #E8E4DC;border-radius:16px;padding:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:160px}
.upload-example{text-align:center;color:#9B9B9B}
.upload-example-icon{margin-bottom:8px}
.upload-area{cursor:pointer;transition:all .3s;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}
.upload-area:hover{background:rgba(74,124,89,.03)}
.upload-area.has-file{background:rgba(74,124,89,.04)}
.upload-area-icon{font-size:32px;margin-bottom:8px}
.upload-area-text{font-size:14px;color:#9B9B9B}
.upload-preview{max-width:100%;max-height:120px;border-radius:8px}
.upload-success{color:#4A7C59;font-size:14px;margin-top:8px}
.upload-retry{color:#6B6B6B;font-size:12px;margin-top:4px;cursor:pointer}
.payment-summary{background:#F5F0E8;border-radius:16px;padding:24px;margin-bottom:24px}
.summary-title{font-size:18px;font-weight:600;color:#2C2C2C;margin-bottom:16px}
.summary-list{list-style:none;padding:0;margin:0}
.summary-list li{padding:10px 0;font-size:16px;color:#555;border-bottom:1px dashed rgba(0,0,0,.08)}
.summary-list li:last-child{border-bottom:none}
.payment-amount{display:flex;justify-content:space-between;align-items:center;margin-top:20px;padding-top:20px;border-top:1px solid rgba(0,0,0,.1)}
.amount-label{font-size:16px;color:#6B6B6B}
.amount-value{font-size:28px;font-weight:700;color:#4A7C59}
.amount-value.discount{color:#E53935;font-size:32px}
.amount-discount-wrap{display:flex;align-items:center;gap:10px}
.amount-original{font-size:16px;color:#9B9B9B;text-decoration:line-through}
.discount-tag{background:#E53935;color:#fff;font-size:12px;font-weight:600;padding:3px 10px;border-radius:12px}
.payment-btn{padding:16px 40px;border-radius:30px;font-size:16px;font-weight:600;border:none;cursor:pointer;transition:all .3s;display:inline-flex;align-items:center;gap:8px}
.payment-btn.wechat{background:#07C160;color:#fff}
.payment-btn.wechat:hover{background:#06AD56}
.success-content{text-align:center;padding:40px 0}
.success-icon{font-size:64px;margin-bottom:24px}
.success-title{font-size:28px;font-weight:700;color:#4A7C59;margin-bottom:16px}
.success-desc{font-size:15px;color:#6B6B6B;line-height:2;margin-bottom:32px}
.success-info{background:#F5F0E8;border-radius:12px;padding:20px;display:inline-block;margin-bottom:24px}
.success-info-item{display:flex;gap:16px;padding:8px 0}
.success-info-label{font-size:14px;color:#9B9B9B}
.success-info-value{font-size:14px;color:#2C2C2C;font-weight:600}
