   :root {
    --gold:       #B8973A;
    --gold-lt:    #D4AF5A;
    --gold-pale:  #F0E8CE;
    --green:      #1A5C52;
    --green-lt:   #2A8070;
    --green-pale: #E6F2F0;
    --ivory:      #F9F5EE;
    --white:      #FFFFFF;
    --text-dark:  #1E2526;
    --text-mid:   #4A5568;
    --text-lt:    #8A9BAE;
    --border:     #E2D9C8;
    --shadow-sm:  0 2px 12px rgba(26,92,82,0.08);
    --shadow-md:  0 8px 32px rgba(26,92,82,0.12);
    --shadow-lg:  0 16px 48px rgba(26,92,82,0.18);
    --radius-sm:  4px;
    --radius-md:  10px;
    --radius-lg:  20px;
    --font-sc:    'Noto Serif SC', 'STSong', 'SimSun', serif;
    --font-en:    'Cormorant Garamond', 'Georgia', serif;
    --font-body:  'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --w-max:      1280px;
  }
  
  /* ===== Reset ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }
  ul, ol { list-style: none; }
  
  /* ===== 通用工具 ===== */
  .container { max-width: var(--w-max); margin: 0 auto; padding: 0 40px; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-en); font-size: 13px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px;
  }
  .section-tag::before, .section-tag::after {
    content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-sc); font-size: 36px; font-weight: 600;
    color: var(--text-dark); line-height: 1.3; margin-bottom: 16px;
  }
  .section-title em { font-style: normal; color: var(--gold-lt); }
  .section-desc {
    font-size: 15px; color: var(--text-mid); line-height: 1.9; max-width: 600px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; background: var(--green);
    color: #fff; font-size: 15px; font-family: var(--font-body);
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    transition: var(--transition); position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,175,90,0.3) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .btn-primary:hover { background: var(--green-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-primary:hover::after { opacity: 1; }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; background: transparent;
    color: var(--gold); font-size: 15px; border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
  }
  .btn-gold:hover { background: var(--gold); color: #fff; }
  .gold-line {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    border-radius: 2px; margin-bottom: 24px;
  }
  
  /* ===== 顶部公告条 ===== */
  #top-bar {
    background: var(--green);
    color: rgba(255,255,255,0.85);
    font-size: 13px; padding: 8px 0;
    text-align: center; letter-spacing: 0.5px;
  }
  #top-bar a { color: var(--gold-lt); }
  #top-bar .top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
  #top-bar .tb-contact a { display: inline-flex; align-items: center; gap: 6px; margin-left: 20px; }
  
  /* ===== Header ===== */
  #header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(249,245,238,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }
  #header.scrolled { box-shadow: var(--shadow-md); }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
  }
  .logo { display: flex; align-items: center; gap: 14px; }
  .logo-icon {
    width: 50px; height: 50px; border-radius: 50%;
    /*background: linear-gradient(135deg, var(--green), var(--green-lt));*/
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-en); font-size: 18px; font-weight: 700;
    letter-spacing: 1px; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26,92,82,0.25);
  }
  .logo-text { display: flex; flex-direction: column; }
  .logo-text .name-en { font-family: var(--font-en); font-size: 20px; font-weight: 700; color: var(--green); letter-spacing: 1px; line-height: 1.2; }
  .logo-text .name-cn { font-size: 12px; color: var(--text-lt); letter-spacing: 2px; }
  
  /* 主导航 */
  #main-nav ul { display: flex; align-items: center; gap: 4px; }
  #main-nav ul li { position: relative; }
  #main-nav ul li > a {
    display: block; padding: 8px 16px; font-size: 14px;
    color: var(--text-dark); border-radius: var(--radius-sm);
    transition: var(--transition); white-space: nowrap;
  }
  #main-nav ul li > a:hover,
  #main-nav ul li > a.active { color: var(--green); }
  #main-nav ul li > a::after {
    content: ''; display: block; height: 2px; width: 0;
    background: var(--gold); border-radius: 1px;
    transition: width 0.3s; margin-top: 2px;
  }
  #main-nav ul li > a:hover::after,
  #main-nav ul li > a.active::after { width: 100%; }
  #main-nav ul li.open { z-index: 201; }
  #main-nav ul li.open .dropdown {pointer-events: auto;}
  
  /* 下拉菜单 */
  #main-nav .dropdown { position: absolute; top: 100%; left: 0; z-index: 200; padding-top: 8px; pointer-events: none;}
  #main-nav .dropdown-menu {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-md); min-width: 160px;
    box-shadow: var(--shadow-lg); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: var(--transition);
  }
  #main-nav li.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  #main-nav .dropdown-menu li a {
    display: block; padding: 9px 20px; font-size: 13.5px;
    color: var(--text-mid); transition: var(--transition);
  }
  #main-nav .dropdown-menu li a:hover { color: var(--green); background: var(--green-pale); padding-left: 24px; }
  #main-nav .dropdown-menu li a::after { display: none; }
  
  /* 右侧工具栏 */
  .header-tools { display: flex; align-items: center; gap: 16px; }
  .lang-switch { display: flex; gap: 4px; }
  .lang-btn {
    padding: 4px 10px; font-size: 12px; border-radius: 3px; cursor: pointer;
    border: 1px solid var(--border); color: var(--text-mid); transition: var(--transition);
    background: transparent;
  }
  .lang-btn.active, .lang-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
  .header-consult {
    padding: 9px 12px; background: var(--gold); color: #fff;
    border-radius: var(--radius-sm); font-size: 13.5px; cursor: pointer;
    transition: var(--transition); border: none;
    box-shadow: 0 4px 14px rgba(184,151,58,0.3);
  }
  .header-consult:hover { background: var(--gold-lt); transform: translateY(-1px); }
  
  /* ===== Banner 轮播 ===== */
  #banner {
    position: relative; width: 100%; height: 680px; overflow: hidden;
  }
  .swiper-banner { width: 100%; height: 100%; }
  .swiper-banner .swiper-slide {
    position: relative; overflow: hidden;
  }
  .banner-img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05); transition: transform 6s ease;
  }
  .swiper-slide-active .banner-img { transform: scale(1); }
  .banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(26,92,82,0.75) 0%, rgba(26,92,82,0.2) 60%, transparent 100%);
  }
  .banner-content {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; max-width: var(--w-max); padding: 0 40px;
    color: #fff;
  }
  .banner-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-en); font-size: 13px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold-lt); margin-bottom: 20px;
    opacity: 0; transform: translateY(20px); transition: all 0.7s 0.2s;
  }
  .banner-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold-lt); display: block; }
  .swiper-slide-active .banner-tag { opacity: 1; transform: translateY(0); }
  .banner-title {
    font-family: var(--font-sc); font-size: 52px; font-weight: 700; line-height: 1.25;
    margin-bottom: 20px; max-width: 600px;
    opacity: 0; transform: translateY(25px); transition: all 0.7s 0.4s;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  }
  .swiper-slide-active .banner-title { opacity: 1; transform: translateY(0); }
  .banner-title span { color: var(--gold-lt); }
  .banner-sub {
    font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.88);
    max-width: 480px; margin-bottom: 36px;
    opacity: 0; transform: translateY(25px); transition: all 0.7s 0.6s;
  }
  .swiper-slide-active .banner-sub { opacity: 1; transform: translateY(0); }
  .banner-btns {
    display: flex; gap: 16px; align-items: center;
    opacity: 0; transform: translateY(25px); transition: all 0.7s 0.8s;
  }
  .swiper-slide-active .banner-btns { opacity: 1; transform: translateY(0); }
  .banner-btn-main {
    padding: 15px 36px; background: var(--gold);
    color: #fff; font-size: 15px; border-radius: var(--radius-sm);
    transition: var(--transition); box-shadow: 0 6px 20px rgba(184,151,58,0.4);
  }
  .banner-btn-main:hover { background: var(--gold-lt); transform: translateY(-2px); }
  .banner-btn-sub {
    padding: 14px 32px; border: 1.5px solid rgba(255,255,255,0.7);
    color: #fff; font-size: 15px; border-radius: var(--radius-sm); transition: var(--transition);
  }
  .banner-btn-sub:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
  .banner-content-right {
      text-align: right;
      right: 0;
      padding-right: 40px;
      padding-left: 0;
    }
    .banner-content-right .banner-title,
    .banner-content-right .banner-sub { margin-left: auto; }
    .banner-content-right .banner-btns { justify-content: flex-end; }
  
  /* 轮播分页 */
  .swiper-banner .swiper-pagination { bottom: 30px; }
  .swiper-banner .swiper-pagination-bullet {
    width: 24px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.4); opacity: 1; transition: all 0.3s;
  }
  .swiper-banner .swiper-pagination-bullet-active {
    width: 40px; background: var(--gold-lt);
  }
  /* 箭头 */
  .swiper-banner .swiper-button-prev,
  .swiper-banner .swiper-button-next {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px); color: #fff; transition: var(--transition);
  }
  .swiper-banner .swiper-button-prev:hover,
  .swiper-banner .swiper-button-next:hover { background: var(--gold); border-color: var(--gold); }
  .swiper-banner .swiper-button-prev::after,
  .swiper-banner .swiper-button-next::after { font-size: 14px; font-weight: 700; }
  
  /* Banner底部装饰波浪 */
  #banner .wave-bottom {
    position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2;
  }
  
  /* ===== 数据带 ===== */
  #stats-bar {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-lt) 100%);
    padding: 0;
    position: relative; z-index: 1;
  }
  .stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item {
    padding: 36px 30px; text-align: center; color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition); cursor: default;
  }
  .stat-item:hover { background: rgba(255,255,255,0.06); }
  .stat-num {
    font-family: var(--font-en); font-size: 48px; font-weight: 700;
    color: var(--gold-lt); line-height: 1.1; margin-bottom: 6px;
  }
  .stat-num sup { font-size: 22px; vertical-align: super; }
  .stat-num sub { font-size: 22px; vertical-align: baseline; }
  .stat-label { font-size: 14px; color: rgba(255,255,255,0.8); letter-spacing: 1px; }
  
  /* ===== 关于LRC ===== */
  #about { padding: 100px 0; background: var(--ivory); overflow: hidden; }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-main {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); display: block;
    aspect-ratio: 4/5; object-fit: cover;
  }
  .about-img-badge {
    position: absolute; bottom: -30px; right: -30px;
    width: 160px; height: 160px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; text-align: center; box-shadow: var(--shadow-md);
  }
  .about-img-badge .badge-num { font-family: var(--font-en); font-size: 38px; font-weight: 700; line-height: 1; }
  .about-img-badge .badge-txt { font-size: 12px; letter-spacing: 1px; opacity: 0.9; line-height: 1.4; }
  .about-img-deco {
    position: absolute; top: -20px; left: -20px;
    width: 120px; height: 120px; border: 2px solid var(--gold-pale);
    border-radius: var(--radius-md); z-index: -1;
  }
  .about-content { padding-right: 20px; }
  .about-content .section-desc{ max-width:100%; margin-top: 16px;}
  .about-features { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-feat-item {
    display: flex; align-items: flex-start; gap: 14px; padding: 16px;
    background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--border); transition: var(--transition);
  }
  .about-feat-item:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
  .feat-icon {
    width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
    background: var(--green-pale); display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .feat-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
  .feat-text p { font-size: 12.5px; color: var(--text-lt); line-height: 1.5; }
  .feat-btns {margin-top: 36px; display: flex; gap: 14px;}
  
  /* ===== 服务版块 ===== */
  #services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--green-pale) 100%);
  }
  .services-header { text-align: center; margin-bottom: 60px; }
  .services-header .section-desc { margin: 0 auto; }
  .services-header .gold-line { margin: 0 auto 24px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .service-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); position: relative;
    border: 1px solid var(--border);
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
  .service-img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .service-card:hover .service-img { transform: scale(1.04); }
  .service-img-wrap { overflow: hidden; position: relative; }
  .service-tag-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 4px 12px; background: var(--gold); color: #fff;
    font-size: 11px; border-radius: 20px; letter-spacing: 0.5px;
  }
  .service-body { padding: 24px; }
  .service-icon { font-size: 28px; margin-bottom: 12px; }
  .service-title { font-family: var(--font-sc); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
  .service-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
  .service-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green); font-weight: 500; transition: var(--transition); }
  .service-more:hover { gap: 10px; }
  .service-more .arrow { transition: transform 0.3s; }
  .service-more:hover .arrow { transform: translateX(4px); }
  
  /* ===== 专家团队 ===== */
  #experts { padding: 100px 0; background: var(--ivory); }
  .experts-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
  .experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .expert-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition); text-align: center;
  }
  .expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .expert-photo-wrap { position: relative; overflow: hidden; }
  .expert-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
    transition: transform 0.5s;
  }
  .expert-card:hover .expert-photo { transform: scale(1.04); }
  .expert-overlay {
    position: absolute; inset: 0; display: flex; align-items: flex-end;
    background: linear-gradient(0deg, rgba(26,92,82,0.85) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s; padding: 20px;
  }
  .expert-card:hover .expert-overlay { opacity: 1; }
  .expert-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
  .expert-tag { padding: 4px 10px; background: rgba(184,151,58,0.9); color: #fff; font-size: 11px; border-radius: 20px; }
  .expert-info { padding: 20px 16px; }
  .expert-name { font-family: var(--font-sc); font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
  .expert-title { font-size: 12.5px; color: var(--green); font-weight: 500; margin-bottom: 8px; }
  .expert-desc { font-size: 12px; color: var(--text-lt); line-height: 1.6; }
  
  /* ===== LRC优势 ===== */
  #advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
    position: relative; overflow: hidden;
  }
  #advantages::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,90,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  #advantages::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .adv-header { text-align: center; margin-bottom: 60px; }
  .adv-header .section-tag { color: var(--gold-lt); }
  .adv-header .section-tag::before,
  .adv-header .section-tag::after { background: var(--gold-lt); }
  .adv-header .section-title { color: #fff; }
  .adv-header .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto; }
  .adv-header .gold-line { margin: 0 auto 24px; }
  .adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .adv-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: var(--transition); position: relative; overflow: hidden;
  }
  .adv-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    opacity: 0; transition: opacity 0.3s;
  }
  .adv-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
  .adv-card:hover::before { opacity: 1; }
  .adv-num {
    font-family: var(--font-en); font-size: 48px; font-weight: 700;
    color: rgba(212,175,90,0.2); line-height: 1; margin-bottom: 16px;
    letter-spacing: -2px;
  }
  .adv-icon { font-size: 32px; margin-bottom: 16px; }
  .adv-title { font-family: var(--font-sc); font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 12px; }
  .adv-desc { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.8; }
  
  /* ===== 成功案例 ===== */
  #cases { padding: 100px 0; background: var(--white); }
  .cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
  .swiper-cases { padding-bottom: 40px !important; }
  .case-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: var(--transition);
  }
  .case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .case-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
  .case-body { padding: 24px; }
  .case-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .case-badge {
    padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500;
    background: var(--green-pale); color: var(--green);
  }
  .case-age { font-size: 12px; color: var(--text-lt); }
  .case-title { font-family: var(--font-sc); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
  .case-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
  .case-result {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px;
    background: var(--gold-pale); border-radius: var(--radius-sm);
    font-size: 13px; color: var(--gold); font-weight: 500;
  }
  .case-result .result-icon { font-size: 16px; }
  .swiper-cases .swiper-pagination-bullet { background: var(--green); }
  .swiper-cases .swiper-pagination-bullet-active { background: var(--gold); width: 20px; border-radius: 2px; }
  
  /* ===== 评价 ===== */
  #reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--gold-pale) 100%);
  }
  .reviews-header { text-align: center; margin-bottom: 50px; }
  .reviews-header .gold-line { margin: 0 auto 24px; }
  .reviews-header .section-desc { margin: 0 auto; }
  .swiper-reviews { padding: 10px 4px 50px !important; }
  .review-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: var(--transition); position: relative;
  }
  .review-card:hover { box-shadow: var(--shadow-md); }
  .review-card::before {
    content: '"'; font-family: var(--font-en); font-size: 80px;
    color: var(--gold-pale); line-height: 1; position: absolute; top: 10px; right: 20px;
  }
  .review-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--gold-pale);
  }
  .review-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
  .review-from { font-size: 12px; color: var(--text-lt); margin-top: 2px; }
  .swiper-reviews .swiper-pagination-bullet { background: var(--gold); }
  
  .review-imgs { display:flex; gap:8px; margin:12px 0; flex-wrap:wrap; }
  .review-img-thumb { width:80px; height:80px; object-fit:cover; border-radius:6px; cursor:pointer; transition:opacity 0.2s; }
  .review-img-thumb:hover { opacity:0.85; }
    
    #lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.88); z-index:9999; align-items:center; justify-content:center; }
    #lightbox.show { display:flex; }
    #lightbox img { max-width:90vw; max-height:90vh; border-radius:8px; box-shadow:0 8px 40px rgba(0,0,0,0.5); }
    #lightbox-close { position:absolute; top:20px; right:28px; color:#fff; font-size:36px; cursor:pointer; line-height:1; }
  
  /* ===== 资讯动态 ===== */
  #news { padding: 100px 0; background: var(--white); }
  .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
  .news-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 28px; }
  .news-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .news-card.news-featured .news-img { aspect-ratio: 16/10; }
  .news-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.4s; }
  .news-card:hover .news-img { transform: scale(1.03); }
  .news-img-wrap { overflow: hidden; position: relative; }
  .news-category {
    position: absolute; bottom: 14px; left: 14px; z-index: 2;
    padding: 4px 12px; font-size: 11px; border-radius: 20px;
    background: var(--green); color: #fff;
  }
  .news-featured .news-category{top:14px;bottom: initial;}
  .news-body { padding: 22px; }
  .news-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; font-size: 12px; color: var(--text-lt); }
  .news-title { font-family: var(--font-sc); font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.5; margin-bottom: 10px; transition: color 0.2s; }
  .news-card:hover .news-title { color: var(--green); }
  .news-card.news-featured .news-title { font-size: 20px; }
  .news-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  
  /* ===== 成功率展示 ===== */
  #success-rate {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green) 0%, #133D34 100%);
    position: relative; overflow: hidden;
  }
  #success-rate::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212,175,90,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
  }
  .sr-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .sr-content .section-tag { color: var(--gold-lt); }
  .sr-content .section-tag::before,
  .sr-content .section-tag::after { background: var(--gold-lt); }
  .sr-content .section-title { color: #fff; }
  .sr-content .section-desc { color: rgba(255,255,255,0.7); max-width: none; }
  .sr-content .gold-line { margin-bottom: 24px; }
  .sr-bars { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
  .sr-bar-item {}
  .sr-bar-label { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
  .sr-bar-label span:last-child { color: var(--gold-lt); font-weight: 600; font-family: var(--font-en); }
  .sr-bar-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
  .sr-bar-fill {
    height: 100%; border-radius: 3px; width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sr-chart-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .sr-chart-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 28px; text-align: center;
  }
  .sr-chart-ring { width: 120px; height: 120px; margin: 0 auto 16px; position: relative; }
  .sr-ring-svg { transform: rotate(-90deg); }
  .sr-ring-track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }
  .sr-ring-fill { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.4s cubic-bezier(0.4,0,0.2,1); }
  .sr-ring-label {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-en); font-size: 26px; font-weight: 700; color: var(--gold-lt);
  }
  .sr-chart-title { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
  
  /* ===== 联系我们 ===== */
  #contact { padding: 100px 0; background: var(--ivory); }
  .contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
  .contact-form-wrap { background: var(--white); padding: 44px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
  .contact-form-wrap h3 { font-family: var(--font-sc); font-size: 26px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
  .contact-form-wrap p { font-size: 14px; color: var(--text-mid); margin-bottom: 30px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 14px;
    font-family: var(--font-body); color: var(--text-dark);
    background: var(--ivory); transition: var(--transition); outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(26,92,82,0.08); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit { margin-top: 20px; width: 100%; padding: 15px; }
  .contact-info {}
  .contact-info-head { margin-bottom: 30px; }
  .contact-info-item {
    display: flex; align-items: flex-start; gap: 16px; padding: 22px;
    background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--border); margin-bottom: 16px;
    transition: var(--transition);
  }
  .contact-info-item:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
  .ci-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: var(--green-pale); display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--green);
  }
  .ci-text h4 { font-weight: 600; font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
  .ci-text p, .ci-text a { font-size: 13.5px; color: var(--text-mid); }
  .map-placeholder {
    border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
    margin-top: 20px; height: 200px; background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--text-lt); flex-direction: column; gap: 8px;
  }
  .form-tips{font-size: 12px!important; color: var(--text-lt)!important; margin-top: 12px; text-align: center;}
  
  /* ===== Footer ===== */
  #footer {
    background: linear-gradient(135deg, #0E2E28 0%, #162E28 100%);
    color: rgba(255,255,255,0.75);
  }
  .footer-main { padding: 70px 0 50px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
  .footer-brand {}
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo .logo-icon { background: rgba(255,255,255,0.1); font-size: 16px; }
  .footer-logo .name-en { color: #fff; }
  .footer-logo .name-cn { color: rgba(255,255,255,0.4); }
  .footer-logo .logo-img{display: block;  width: 300px;}
  .footer-intro { font-size: 13.5px; line-height: 1.9; margin-bottom: 24px; }
  .footer-socials { display: flex; gap: 12px; align-items: center; }

  .footer-socials .social-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s, opacity 0.2s;
      overflow: hidden;
    }
  .footer-socials .social-btn:hover { transform: scale(1.1); opacity: 0.85; }
  .footer-socials .social-btn img { width: 22px; height: 22px; filter: invert(1); }
    
  .footer-socials .social-btn[title="Facebook"]  { background: #1877F2; }
  .footer-socials .social-btn[title="TikTok"]    { background: #000000; }
  .footer-socials.social-btn[title="Instagram"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
  .footer-socials .social-btn[title="LINE"]      { background: #06C755; }
  .footer-socials .social-btn[title="WeChat"]    { background: #07C160; }
  .footer-socials .social-btn[title="WhatsApp"]  { background: #25D366; }
  .footer-socials .social-btn[title="YouTube"]   { background: #FF0000; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: var(--transition); cursor: pointer;
  }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
  .footer-col h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
  .footer-col ul li a::before { content: '›'; color: var(--gold); }
  .footer-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
  .footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items:center}
  .footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
  .footer-contact-item p { font-size: 13px; line-height: 1.6; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12.5px; color: rgba(255,255,255,0.35);
  }
  .footer-bottom .container{ display:flex; justify-content:space-between; align-items:center; width:100%}
  .footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-bottom a:hover { color: var(--gold-lt); }
  .footer-cert { display: flex; gap: 16px; align-items: center; }
  .cert-badge { padding: 3px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }
  
  /* ===== 右侧悬浮广告/联系 ===== */
  #float-bar {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    z-index: 900; display: flex; flex-direction: column; gap: 2px;
  }
  .float-item {
    width: 56px; background: var(--green); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 12px 0; cursor: pointer;
    transition: var(--transition); position: relative;
  }
  .float-item:hover { background: var(--green-lt); width: 64px; }
  .float-item:first-child { border-radius: 8px 0 0 0; }
  .float-item:last-child { border-radius: 0 0 0 8px; }
  .float-item .fi-icon { font-size: 20px; line-height: 1; }
  .float-item .fi-text { font-size: 10px; letter-spacing: 0.5px; text-align: center; line-height: 1.3; }
  .float-item.gold { background: var(--gold); }
  .float-item.gold:hover { background: var(--gold-lt); }
  /* 悬浮弹出 */
  .float-popup {
    position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 16px; min-width: 180px;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transition: var(--transition); margin-right: 8px;
  }
  .float-popup::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    width: 10px; height: 10px; background: var(--white);
    border-right: 1px solid var(--border); border-top: 1px solid var(--border);
    transform: translateY(-50%) rotate(45deg);
  }
  .float-item:hover .float-popup { opacity: 1; visibility: visible; }
  .float-popup p { font-size: 13px; color: var(--text-mid);text-align:center; }
  .float-popup strong { font-size: 16px; color: var(--green); display: block; margin-top: 4px; }
  .float-popup img{width:150px; height:150px; margin: 8px 0; border-radius: 6px; background: #eee;}
  
  /* ===== 回到顶部 ===== */
  #back-top {
    position: fixed; right: 0; bottom: 30px; z-index: 900;
    width: 56px; height: 44px; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; cursor: pointer;
    opacity: 0; pointer-events: none; transition: var(--transition);
    border-radius: 8px 0 0 8px;border: none;
  }
  #back-top.show { opacity: 1; pointer-events: all; }
  #back-top:hover { background: var(--gold-lt); }
  
  /* ===== 动画辅助 ===== */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .fade-in {
    opacity: 0; transition: opacity 0.6s;
  }
  .fade-in.visible { opacity: 1; }
  [data-delay="100"] { transition-delay: 0.1s; }
  [data-delay="200"] { transition-delay: 0.2s; }
  [data-delay="300"] { transition-delay: 0.3s; }
  [data-delay="400"] { transition-delay: 0.4s; }
  [data-delay="500"] { transition-delay: 0.5s; }
  [data-delay="600"] { transition-delay: 0.6s; }
  
  /* ===== 分隔装饰 ===== */
  .wave-divider { line-height: 0; overflow: hidden; }
  .wave-divider svg { display: block; width: 100%; }
  
  /* ===== wechat ===== */
  #wechat-modal .wechat-modal-mask {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 9998;
    }
    #wechat-modal .wechat-modal-box {
      position: fixed; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #fff; border-radius: 16px;
      padding: 32px 40px;
      text-align: center;
      z-index: 9999;
    }
    #wechat-modal .wechat-modal-box p {
      font-size: 16px; font-weight: 500; margin-bottom: 16px;
    }
    #wechat-modal .wechat-modal-box img {
      width: 180px; height: 180px; display: block; margin: 0 auto 12px;
    }
    #wechat-modal .wechat-modal-box span {
      font-size: 13px; color: #888;
    }
    #wechat-modal .wechat-modal-close {
      position: absolute; top: 12px; right: 16px;
      background: none; border: none;
      font-size: 18px; cursor: pointer; color: #999;
    }
    
/* ===================================================
   关于我们页面
=================================================== */
/* ── Hero Banner ── */
#about-hero {
  position: relative;
  min-height: 460px;
  background: linear-gradient(135deg, #0C3530 0%, var(--green) 45%, #1F6B5E 100%);
  display: flex; align-items: center; overflow: hidden;
}
#about-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 60%; height: 100%;
  background: url('../images/TU3EjSzU0NKlSANX.jpg') center center / cover no-repeat;
  opacity: 0.25;
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  pointer-events: none;
}
/* 装饰性大字 */
#about-hero::after {
  content: 'ABOUT';
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en); font-size: 180px; font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 12px;
  pointer-events: none; user-select: none; line-height: 1;
}
.about-hero-inner {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.about-hero-inner .section-tag { color: var(--gold-lt); margin-bottom: 20px; }
.about-hero-inner .section-tag::before,
.about-hero-inner .section-tag::after { background: var(--gold-lt); }
.about-hero-title {
  font-family: var(--font-sc);
  font-size: 52px; font-weight: 700;
  color: #fff; line-height: 1.2;
  margin-bottom: 22px;
}
.about-hero-title em { font-style: normal; color: var(--gold-lt); }
.about-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.72);
  line-height: 1.9; max-width: 560px; margin-bottom: 36px;
}
.about-hero-stats {
  display: flex; gap: 40px;
}
.ahs-item { text-align: left; }
.ahs-num {
  font-family: var(--font-en); font-size: 44px; font-weight: 700;
  color: var(--gold-lt); line-height: 1;
}
.ahs-num sup { font-size: 22px; vertical-align: super; }
.ahs-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 1px; }
/* 右侧图片装饰框 */
.about-hero-img-wrap {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44%; overflow: hidden; z-index: 1;
}
.about-hero-img-wrap::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, #0C3530, transparent);
  z-index: 2;
}
.about-hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}

/* ── 面包屑 ── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-lt); }
.breadcrumb-bar a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--green); }
.breadcrumb-bar span.sep { color: var(--border); }
.breadcrumb-bar span.cur { color: var(--green); font-weight: 500; }

/* ── 品牌故事 ── */
#about-story {
  padding: 100px 0;
  background: var(--ivory);
}
#about-story .fade-up {
  opacity: 1;
  transform: none;
  transition: none;
}
.story-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.story-img-stack {
  position: relative;
}
.story-img-main {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: block;
  aspect-ratio: 4/3; object-fit: cover;
}
.story-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(184,151,58,0.4);
  border: 4px solid var(--ivory);
}
.story-img-badge .badge-num {
  font-family: var(--font-en); font-size: 36px; font-weight: 700;
  color: #fff; line-height: 1;
}
.story-img-badge .badge-text {
  font-size: 11px; color: rgba(255,255,255,0.85);
  text-align: center; margin-top: 4px; line-height: 1.3;
}
.story-content { padding-right: 20px; }
.story-content .section-tag { margin-bottom: 16px; }
.story-content .section-title { margin-bottom: 20px; }
.story-text {
  font-size: 15px; color: var(--text-mid);
  line-height: 2; margin-bottom: 18px;
}
.story-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.story-quote p {
  font-family: var(--font-sc); font-size: 17px; color: var(--text-dark);
  font-style: italic; line-height: 1.8; margin: 0;
}
.story-quote cite {
  display: block; margin-top: 12px;
  font-size: 13px; color: var(--gold); font-style: normal;
}

/* ── 发展历程 / 时间轴 ── */
#about-timeline {
  padding: 100px 0;
  background: var(--white);
  position: relative; overflow: hidden;
}
#about-timeline::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}
.timeline-header { text-align: center; margin-bottom: 70px; }
.timeline-header .section-tag { justify-content: center; }

/* 横向时间轴 */
.timeline-track {
  position: relative;
  padding: 40px 0 60px;
}
/* 中轴线 */
.timeline-track::before {
  content: '';
  position: absolute; top: 60px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border) 5%, var(--border) 95%, transparent);
}
.timeline-nodes {
  display: flex; justify-content: space-between;
  position: relative; gap: 12px;
}
.tl-node {
  flex: 1; position: relative; text-align: center;
}
/* 年份圆点 */
.tl-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  color: var(--text-lt); margin: 0 auto 20px;
  position: relative; z-index: 2;
  transition: var(--transition);
}
.tl-node.milestone .tl-dot {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  border-color: transparent;
  color: #fff; font-size: 13px;
  box-shadow: 0 4px 20px rgba(26,92,82,0.35);
  margin-top: -6px;
}
.tl-node:hover .tl-dot {
  border-color: var(--green); color: var(--green);
  transform: scale(1.1); box-shadow: var(--shadow-sm);
}
.tl-node.milestone:hover .tl-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  transform: scale(1.08);
}
.tl-year {
  font-family: var(--font-en); font-size: 11px;
  color: var(--gold); font-weight: 700; letter-spacing: 1px;
  margin-bottom: 8px;
}
.tl-content {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  min-height: 100px;
}
.tl-node:hover .tl-content { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tl-node.milestone .tl-content {
  border-color: var(--gold); background: var(--white);
}
.tl-content h4 {
  font-family: var(--font-sc); font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px; line-height: 1.4;
}
.tl-content p {
  font-size: 12.5px; color: var(--text-lt); line-height: 1.7; margin: 0;
}
.tl-node.milestone .tl-content h4 { color: var(--green); }

/* ── 核心价值观 ── */
#about-values {
  padding: 100px 0;
  background: var(--ivory);
}
.values-header { text-align: center; margin-bottom: 60px; }
.values-header .section-tag { justify-content: center; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 28px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-lt));
  transform: scaleX(0); transition: transform 0.4s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-pale); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; transition: var(--transition);
}
.value-card:hover .value-icon {
  background: var(--green);
  transform: rotateY(180deg);
}
.value-title {
  font-family: var(--font-sc); font-size: 18px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 12px;
}
.value-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; }

/* ── 资质认证 ── */
#about-certs {
  padding: 100px 0;
  background: var(--green);
  position: relative; overflow: hidden;
}
#about-certs::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}
#about-certs::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.certs-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.certs-header .section-tag { color: var(--gold-lt); justify-content: center; }
.certs-header .section-tag::before,
.certs-header .section-tag::after { background: var(--gold-lt); }
.certs-header .section-title { color: #fff; }
#about-certs .certs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative; z-index: 1;
}
#about-certs .cert-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 36px 28px;
  backdrop-filter: blur(8px); text-align: center;
  transition: var(--transition);
}
#about-certs .cert-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(212,175,90,0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
#about-certs .cert-seal {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,90,0.2), rgba(212,175,90,0.08));
  border: 2px solid rgba(212,175,90,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 36px;
}
.cert-name {
  font-family: var(--font-en); font-size: 20px; font-weight: 700;
  color: var(--gold-lt); letter-spacing: 1px; margin-bottom: 8px;
}
.cert-full { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.cert-desc { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.cert-year {
  display: inline-block; margin-top: 16px;
  padding: 4px 14px; border-radius: 20px;
  background: rgba(212,175,90,0.2); border: 1px solid rgba(212,175,90,0.4);
  font-size: 12px; color: var(--gold-lt);
}


/* ── 核心团队 ── */
#about-team {
  padding: 100px 0;
  background: var(--white);
}
.team-header { text-align: center; margin-bottom: 60px; }
.team-header .section-tag { justify-content: center; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-bottom: 50px;
}
.team-card {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; color: var(--green-lt);
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-info { padding: 24px 20px; }
.team-name {
  font-family: var(--font-sc); font-size: 18px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 4px;
}
.team-title {
  font-size: 12.5px; color: var(--gold); font-weight: 500;
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.team-tag {
  padding: 3px 10px; border-radius: 3px;
  background: var(--green-pale); color: var(--green);
  font-size: 11.5px;
}
.team-desc { font-size: 13px; color: var(--text-lt); line-height: 1.8; }
.team-btn-more { width:100%; text-align:center;}

/* ── 医院环境 ── */
#about-facility {
  padding: 100px 0;
  background: var(--ivory);
}
.facility-header { text-align: center; margin-bottom: 60px; }
.facility-header .section-tag { justify-content: center; }
.facility-header .section-desc{ margin: 0 auto; text-align:center}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.fac-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.fac-item:first-child {
  grid-column: span 2; grid-row: span 2;
}
.fac-img {
  width: 100%; height: 100%; min-height: 200px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.fac-item:first-child .fac-img { min-height: 460px; }
.fac-item:hover .fac-img { transform: scale(1.06); }
.fac-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,35,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.fac-item:hover .fac-overlay { opacity: 1; }
.fac-label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: #fff; font-size: 14px; font-family: var(--font-sc);
  transform: translateY(8px); opacity: 0;
  transition: var(--transition);
}
.fac-item:hover .fac-label { transform: translateY(0); opacity: 1; }

/* ── 数字荣耀 ── */
#about-numbers {
  padding: 80px 0;
  background: linear-gradient(135deg, #0C3530 0%, var(--green) 100%);
  position: relative; overflow: hidden;
}
#about-numbers::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 60% 50%, rgba(212,175,90,0.08) 0%, transparent 65%);
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.num-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.num-item:last-child { border-right: none; }
.num-val {
  font-family: var(--font-en); font-size: 52px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 8px;
}
.num-val sup { font-size: 24px; vertical-align: super; }
.num-val sub { font-size: 22px; }
.num-label { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ── 合作伙伴 ── */
#about-partners {
  padding: 80px 0;
  background: var(--white);
}
.partners-header { text-align: center; margin-bottom: 48px; }
.partners-header .section-tag { justify-content: center; }
.partners-track {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
}
.partner-logo {
  width: 170px; height: 70px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px;
  filter: grayscale(1) opacity(0.55);
  transition: var(--transition);
}
.partner-logo:hover { filter: none; border-color: var(--green); box-shadow: var(--shadow-sm); }
.partner-logo img { width: 100%; height: 100%; object-fit: contain; }
.partner-logo-text {
  font-family: var(--font-en); font-size: 14px; font-weight: 700;
  color: var(--text-mid); letter-spacing: 1px; text-align: center;
}
#about-partners {
  background: var(--green);
  padding: 70px 0;
}

#about-partners .partners-header .section-tag {
  color: var(--gold-lt);
}
#about-partners .partners-header .section-tag::before,
#about-partners .partners-header .section-tag::after {
  background: var(--gold-lt);
}
#about-partners .partners-header .section-title {
  color: #fff;
}

#about-partners .partner-logo {
  border-color: rgba(255,255,255,0.2);
  filter: brightness(0) invert(1) opacity(0.5);
}
#about-partners .partner-logo:hover {
  filter: brightness(0) invert(1) opacity(1);
  border-color: var(--gold-lt);
}
#about-partners .partner-logo-text {
  color: #fff;
}

/* ── CTA ── */
#about-cta {
  padding: 100px 0;
  background: var(--ivory);
}
.cta-box {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  border-radius: var(--radius-lg); padding: 72px 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -80px; right: 200px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box::after {
  content: 'LRC';
  position: absolute; right: 40px; bottom: -20px;
  font-family: var(--font-en); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-tag { color: var(--gold-lt); }
.cta-content .section-tag::before,
.cta-content .section-tag::after { background: var(--gold-lt); }
.cta-title {
  font-family: var(--font-sc); font-size: 38px; font-weight: 700;
  color: #fff; line-height: 1.3; margin: 16px 0 16px;
}
.cta-title em { font-style: normal; color: var(--gold-lt); }
.cta-subtitle { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  min-width: 220px;
}
.cta-btn-main {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; background: var(--gold);
  color: #fff; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.cta-btn-main:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.4); }
.cta-btn-sec {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm); font-size: 14px;
  transition: var(--transition); white-space: nowrap;
}
.cta-btn-sec:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ── 滚动动画 ── */
.fade-up[data-delay="100"] { transition-delay: 0.1s; }
.fade-up[data-delay="200"] { transition-delay: 0.2s; }
.fade-up[data-delay="300"] { transition-delay: 0.3s; }
.fade-up[data-delay="400"] { transition-delay: 0.4s; }
.fade-up[data-delay="500"] { transition-delay: 0.5s; }
.fade-up[data-delay="600"] { transition-delay: 0.6s; }

/* ── 计数器动画 ── */
.count-up { display: inline-block; }
    
  
  /* =============================================
     资讯动态 - Tab多栏目版
     ============================================= */
  
  /* 头部：Tab导航 + 更多按钮 */
  .news-tabs-wrap {
    display: flex; align-items: center; gap: 20px;
  }
  .news-tabs {
    display: flex; gap: 4px;
    background: var(--ivory); border: 1px solid var(--border);
    border-radius: 8px; padding: 4px;
  }
  .news-tab {
    padding: 8px 16px; font-size: 13.5px; border-radius: 5px;
    border: none; background: transparent; color: var(--text-mid);
    cursor: pointer; transition: var(--transition); white-space: nowrap;
    font-family: var(--font-body);
  }
  .news-tab:hover { color: var(--green); }
  .news-tab.active {
    background: var(--green); color: #fff;
    box-shadow: 0 2px 8px rgba(26,92,82,0.25);
  }
  .news-more-btn { white-space: nowrap; flex-shrink: 0; }
  
  /* Tab面板 */
  .news-tab-panel { display: none; }
  .news-tab-panel.active { display: block; }
  .news-tab-panel[hidden] { display: none !important; }
  
  /* 第一行：精选大图 + 右侧2篇 */
  .news-row { margin-bottom: 24px; }
  .news-row-featured {
    display: grid; grid-template-columns: 1.45fr 1fr; gap: 24px;
  }
  .news-col-2 { display: flex; flex-direction: column; gap: 24px; }
  
  /* 第二行：4列网格 */
  .news-row-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .news-row-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .news-row-featured .news-featured:first-child {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.news-row-featured .news-featured:first-child .news-img-wrap {
  position: absolute;
  inset: 0;
}
.news-row-featured .news-featured:first-child .news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
}
.news-row-featured .news-featured:first-child .news-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 40px 20px 20px;
}
.news-row-featured .news-featured:first-child .news-title,
.news-row-featured .news-featured:first-child .news-meta { color: #fff; }
.news-row-featured .news-featured:first-child .news-excerpt { color: rgba(255,255,255,0.85); }
.news-row-featured .news-featured:first-child .news-read-more { color: #a8e6cf; }
  
  /* 卡片尺寸变体 */
  .news-card.news-featured .news-img { aspect-ratio: 16/10; }
  .news-card.news-sm .news-img     { aspect-ratio: 16/8.5; }
  .news-card.news-mini .news-img   { aspect-ratio: 16/9; }
  .news-card.news-mini .news-title { font-size: 14px; -webkit-line-clamp: 2; }
  .news-card.news-mini .news-body  { padding: 16px; }
  .news-card.news-mini .news-excerpt { display: none; }
  
  /* 栏目标签颜色 */
  .nc-med    { background: var(--green) !important; }
  .nc-tech   { background: #2563EB !important; }
  .nc-event  { background: var(--gold) !important; }
  .nc-story  { background: #9333EA !important; }
  .nc-policy { background: #64748B !important; }
  
  /* 阅读更多链接 */
  .news-read-more {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; color: var(--green); font-weight: 500;
    transition: gap 0.2s;
  }
  .news-read-more:hover { gap: 8px; }
  .news-read-more.news-enroll {
    color: var(--gold); font-weight: 600;
  }
  
  /* 活动横幅 */
  .event-banner {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; margin-bottom: 24px;
  }
  .event-banner img {
    width: 100%; height: 160px; object-fit: cover; display: block;
    filter: brightness(0.55);
  }
  .event-banner-content {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; color: #fff;
  }
  .event-banner-content h3 { font-family: var(--font-sc); font-size: 22px; font-weight: 600; }
  
  /* 活动倒计时标签 */
  .event-countdown {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    padding: 3px 10px; background: #EF4444; color: #fff;
    font-size: 11px; border-radius: 20px; animation: pulse-red 1.5s infinite;
  }
  @keyframes pulse-red {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
  }
  
  /* =============================================
     常见问题 FAQ
     ============================================= */
  #faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  }
  .faq-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 50px; gap: 30px;
  }
  .faq-cats {
    display: flex; flex-wrap: wrap; gap: 8px;
    align-items: flex-start; padding-top: 8px;
    flex-shrink: 0;
  }
  .faq-cat {
    padding: 7px 16px; font-size: 13px; border-radius: 20px;
    border: 1.5px solid var(--border); color: var(--text-mid);
    background: transparent; cursor: pointer; transition: var(--transition);
    font-family: var(--font-body);
  }
  .faq-cat:hover { border-color: var(--green); color: var(--green); }
  .faq-cat.active {
    background: var(--green); border-color: var(--green);
    color: #fff; box-shadow: 0 3px 12px rgba(26,92,82,0.25);
  }
  
  /* 问答列表：双列布局 */
  .faq-columns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px;
    margin-bottom: 48px;
  }
  
  /* 单条问答 */
  .faq-item {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }
  .faq-item-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    transition: gap 0.2s;
  }
  .faq-item-more:hover {
        gap: 8px;
    }
  /*.faq-item:first-child { border-top: 1px solid var(--border); }*/
  .faq-item.hidden-faq { display: none; }
  .faq-item.hidden-faq,
    /*.faq-item[data-show-all="0"] { */
    /*  display: none !important; */
    /*}*/
  
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; padding: 20px 0; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--text-dark);
    font-family: var(--font-body); transition: color 0.2s; line-height: 1.5;
  }
  .faq-q:hover { color: var(--green); }
  .faq-q[aria-expanded="true"] { color: var(--green); }
  
  .faq-icon {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    border: 1.5px solid var(--border); display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: var(--text-lt);
    transition: var(--transition); line-height: 1;
  }
  .faq-q[aria-expanded="true"] .faq-icon {
    background: var(--green); border-color: var(--green);
    color: #fff; transform: rotate(45deg);
  }
  
  .faq-a {
    padding: 0 0 20px 0; overflow: hidden;
    animation: faq-open 0.25s ease;
  }
  .faq-a p {
    font-size: 14px; color: var(--text-mid); line-height: 1.9;
    padding: 14px 20px; background: var(--green-pale);
    border-radius: var(--radius-md); border-left: 3px solid var(--green);
  }
  .faq-a p strong { color: var(--green); }
  
  @keyframes faq-open {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* 底部CTA */
  .faq-bottom {
    text-align: center; padding: 40px;
    background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
    border-radius: var(--radius-lg); border: 1px solid var(--border);
  }
  .faq-bottom p {
    font-size: 16px; color: var(--text-mid); margin-bottom: 20px;
  }
  
    .faq-columns { display:block; }
    .faq-col { display:grid; grid-template-columns:1fr 1fr; gap:0 48px; }
  
  /* =============================================
     服务详情页 — service-ivf.php 专用样式
     ============================================= */
  
  /* ── 面包屑 ── */
  .breadcrumb {
    padding: 14px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    font-size: 13px; color: var(--text-lt);
  }
  .breadcrumb ol { display: flex; align-items: center; gap: 6px; }
  .breadcrumb li { display: flex; align-items: center; gap: 6px; }
  .breadcrumb li + li::before { content: '›'; color: var(--text-lt); }
  .breadcrumb a { color: var(--text-mid); transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--green); }
  .breadcrumb li:last-child { color: var(--green); font-weight: 500; }
  
  /* ── 服务 Hero ── */
  #service-hero {
    padding: 70px 0 0;
    background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
    position: relative; overflow: hidden;
  }
  #service-hero::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
    pointer-events: none;
  }
  #service-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; width: 100%;
    height: 80px;
    background: linear-gradient(0deg, var(--ivory) 0%, transparent 100%);
    pointer-events: none;
  }
  .service-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    padding-bottom: 80px;
    position: relative; z-index: 1;
  }
  .service-hero-content { color: #fff; }
  .service-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; background: rgba(212,175,90,0.2);
    border: 1px solid rgba(212,175,90,0.4); border-radius: 20px;
    font-size: 12px; color: var(--gold-lt); letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .service-hero-title {
    font-family: var(--font-sc); font-size: 44px; font-weight: 700;
    line-height: 1.25; margin-bottom: 20px; color: #fff;
  }
  .service-hero-title em { font-style: normal; color: var(--gold-lt); }
  .service-hero-desc {
    font-size: 15px; color: rgba(255,255,255,0.78);
    line-height: 1.9; margin-bottom: 32px; max-width: 480px;
  }
  .service-hero-stats {
    display: flex; gap: 32px; margin-bottom: 36px;
  }
  .sh-stat { text-align: center; }
  .sh-stat-num {
    font-family: var(--font-en); font-size: 36px; font-weight: 700;
    color: var(--gold-lt); line-height: 1;
  }
  .sh-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.5px; }
  .service-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .service-hero-img-wrap { position: relative; }
  .service-hero-img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3); display: block;
    aspect-ratio: 5/4; object-fit: cover;
  }
  .hero-img-badge {
    position: absolute; bottom: -24px; left: -24px;
    background: var(--gold); color: #fff; border-radius: var(--radius-md);
    padding: 16px 22px; box-shadow: var(--shadow-md);
    text-align: center; min-width: 130px;
  }
  .hero-img-badge .hb-num {
    font-family: var(--font-en); font-size: 32px; font-weight: 700; line-height: 1;
  }
  .hero-img-badge .hb-txt { font-size: 12px; opacity: 0.9; margin-top: 3px; }
  
  /* ── 内页主体布局（左内容+右侧边栏）── */
  .service-body-wrap {
    padding: 80px 0 100px;
    background: var(--ivory);
  }
  .service-layout {
    display: grid; grid-template-columns: 1fr 340px;
    gap: 48px; align-items: flex-start;
  }
  
  /* ── 侧边栏整体 sticky（TOC+咨询卡+相关服务一起跟随）── */
  .service-layout > aside {
    position: sticky; top: 96px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .service-layout > aside::-webkit-scrollbar { display: none; }
  
  /* ── 锚点导航（内页目录）── */
  .service-toc {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .toc-head {
    padding: 18px 22px; background: var(--green); color: #fff;
    font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px;
  }
  .toc-list { padding: 10px 0; }
  .toc-list li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 22px; font-size: 13.5px; color: var(--text-mid);
    transition: var(--transition); border-left: 3px solid transparent;
  }
  .toc-list li a:hover,
  .toc-list li a.toc-active {
    color: var(--green); background: var(--green-pale);
    border-left-color: var(--green);
  }
  .toc-list li a .toc-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); flex-shrink: 0; transition: background 0.2s;
  }
  .toc-list li a.toc-active .toc-dot { background: var(--green); }
  
  /* 侧边栏：快速咨询卡 */
  .sidebar-consult {
    background: linear-gradient(135deg, var(--green), var(--green-lt));
    border-radius: var(--radius-lg); padding: 28px;
    color: #fff; margin-top: 24px;
  }
  .sidebar-consult h4 { font-family: var(--font-sc); font-size: 18px; margin-bottom: 8px; }
  .sidebar-consult p  { font-size: 13px; opacity: 0.8; margin-bottom: 20px; line-height: 1.7; }
  .sidebar-consult .btn-gold { width: 100%; justify-content: center; border-color: rgba(255,255,255,0.5); color: #fff; }
  .sidebar-consult .btn-gold:hover { background: var(--gold); border-color: var(--gold); }
  .sidebar-contact-items { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
  .sci { display: flex; align-items: center; gap: 10px; font-size: 13px; }
  .sci .sci-icon { font-size: 16px; }
  
  /* 侧边栏：相关服务 */
  .sidebar-related {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    margin-top: 24px;
  }
  .sidebar-related h4 {
    padding: 16px 20px; font-size: 14px; font-weight: 600;
    border-bottom: 1px solid var(--border); color: var(--text-dark);
  }
  .related-list li a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; font-size: 13.5px; color: var(--text-mid);
    border-bottom: 1px solid var(--border); transition: var(--transition);
  }
  .related-list li:last-child a { border-bottom: none; }
  .related-list li a:hover { color: var(--green); background: var(--green-pale); padding-left: 24px; }
  .related-list li a .rel-icon { font-size: 18px; flex-shrink: 0; }
  
  /* ── 内容区各版块通用 ── */
  .service-section { margin-bottom: 64px; }
  .service-section:last-child { margin-bottom: 0; }
  .ss-title {
    font-family: var(--font-sc); font-size: 26px; font-weight: 600;
    color: var(--text-dark); margin-bottom: 8px;
    display: flex; align-items: center; gap: 12px;
  }
  .ss-title::before {
    content: ''; display: block; width: 4px; height: 24px;
    background: linear-gradient(180deg, var(--gold), var(--green));
    border-radius: 2px; flex-shrink: 0;
  }
  .ss-divider {
    height: 1px; background: var(--border); margin: 16px 0 28px;
  }
  .ss-lead {
    font-size: 15px; color: var(--text-mid); line-height: 1.9;
    margin-bottom: 24px;
  }
  
  /* ── 适应症 ── */
  .indication-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .indication-card {
    padding: 20px; border: 1px solid var(--border);
    border-radius: var(--radius-md); background: var(--white);
    transition: var(--transition);
  }
  .indication-card:hover {
    border-color: var(--green-pale);
    box-shadow: var(--shadow-sm); transform: translateY(-2px);
  }
  .ind-icon { font-size: 26px; margin-bottom: 10px; }
  .ind-title { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
  .ind-desc  { font-size: 12.5px; color: var(--text-lt); line-height: 1.6; }
  
  /* ── 治疗流程 ── */
  .process-timeline { position: relative; }
  .process-timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--gold), var(--green));
    border-radius: 1px;
  }
  .process-step {
    display: flex; gap: 24px; margin-bottom: 32px;
    position: relative;
  }
  .process-step:last-child { margin-bottom: 0; }
  .step-circle {
    width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--green), var(--green-lt));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 4px 16px rgba(26,92,82,0.3);
    position: relative; z-index: 1;
  }
  .step-circle .step-num { font-family: var(--font-en); font-size: 18px; font-weight: 700; line-height: 1; }
  .step-circle .step-emoji { font-size: 14px; line-height: 1; }
  .step-body {
    flex: 1; background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--border); padding: 20px 24px;
    transition: var(--transition);
  }
  .step-body:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
  .step-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .step-title { font-size: 16px; font-weight: 600; color: var(--text-dark); }
  .step-duration {
    padding: 2px 10px; background: var(--gold-pale);
    color: var(--gold); font-size: 11.5px; border-radius: 20px; white-space: nowrap;
  }
  .step-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }
  .step-tips {
    margin-top: 10px; padding: 10px 14px;
    background: var(--green-pale); border-radius: var(--radius-sm);
    font-size: 12.5px; color: var(--green); display: flex; align-items: flex-start; gap: 6px;
  }
  .step-tips::before { content: '💡'; flex-shrink: 0; }
  
  /* ── 技术优势 ── */
  .tech-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .tech-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px;
    transition: var(--transition); position: relative; overflow: hidden;
  }
  .tech-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
  }
  .tech-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .tech-card:hover::after { transform: scaleX(1); }
  .tech-icon { font-size: 32px; margin-bottom: 14px; }
  .tech-title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
  .tech-desc  { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
  .tech-badge {
    display: inline-block; margin-top: 10px; padding: 3px 10px;
    background: var(--green-pale); color: var(--green);
    font-size: 11px; border-radius: 20px; font-weight: 500;
  }
  
  /* ── 费用区间 ── */
  .cost-table-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .cost-table { width: 100%; border-collapse: collapse; }
  .cost-table thead th {
    padding: 14px 20px; background: var(--green); color: #fff;
    font-size: 13px; font-weight: 500; text-align: left; letter-spacing: 0.5px;
  }
  .cost-table thead th:last-child { text-align: right; }
  .cost-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
  .cost-table tbody tr:last-child { border-bottom: none; }
  .cost-table tbody tr:hover { background: var(--green-pale); }
  .cost-table tbody td { padding: 14px 20px; font-size: 14px; color: var(--text-dark); }
  .cost-table tbody td:first-child { font-weight: 500; }
  .cost-table tbody td:last-child { text-align: right; font-weight: 600; color: var(--green); }
  .cost-table tfoot td {
    padding: 14px 20px; background: var(--gold-pale);
    font-size: 14px; font-weight: 600; color: var(--gold);
  }
  .cost-table tfoot td:last-child { text-align: right; font-size: 16px; }
  .cost-note {
    padding: 14px 20px; background: var(--ivory); border-top: 1px solid var(--border);
    font-size: 12.5px; color: var(--text-lt); line-height: 1.7;
  }
  
  /* ── 成功案例（内页版）── */
  .case-grid-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  
  /* ── 内页FAQ ── */
  .inner-faq { display: flex; flex-direction: column; gap: 0; }
  .inner-faq .faq-item:first-child { border-top: 1px solid var(--border); }
  .inner-faq .faq-q  { font-size: 14.5px; }
  
  /* ── 注意事项 ── */
  .notice-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .notice-card {
    padding: 20px; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--white);
  }
  .notice-card.notice-do   { border-top: 3px solid var(--green); }
  .notice-card.notice-dont { border-top: 3px solid #EF4444; }
  .notice-card h4 {
    font-size: 14px; font-weight: 600; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .notice-card.notice-do   h4 { color: var(--green); }
  .notice-card.notice-dont h4 { color: #EF4444; }
  .notice-list { display: flex; flex-direction: column; gap: 8px; }
  .notice-list li {
    font-size: 13px; color: var(--text-mid); line-height: 1.6;
    display: flex; align-items: flex-start; gap: 8px;
  }
  .notice-list li::before { flex-shrink: 0; font-size: 14px; }
  .notice-do   .notice-list li::before { content: '✓'; color: var(--green); }
  .notice-dont .notice-list li::before { content: '✗'; color: #EF4444; }
  
  /* ── 内页底部 CTA Banner ── */
  .service-cta-banner {
    background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
    border-radius: var(--radius-lg); padding: 48px 56px;
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 60px; position: relative; overflow: hidden;
  }
  .service-cta-banner::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,90,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .scb-text h3 {
    font-family: var(--font-sc); font-size: 28px; font-weight: 700;
    color: #fff; margin-bottom: 10px;
  }
  .scb-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
  .scb-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }
  .scb-actions .btn-gold{ border-color:rgba(255,255,255,0.4);color:#fff;}
  
/* =============================================
联系页
============================================= */

/* ── Hero ── */
#contact-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
  position: relative; overflow: hidden;
}
#contact-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.contact-hero-text .section-tag   { color: var(--gold-lt); }
.contact-hero-text .section-tag::before,
.contact-hero-text .section-tag::after { background: var(--gold-lt); }
.contact-hero-text .section-title { color: #fff; margin-bottom: 16px; }
.contact-hero-text .section-desc  { color: rgba(255,255,255,0.72); max-width: none; margin-bottom: 32px; }
.contact-hero-text .gold-line     { margin-bottom: 20px; }
/* 快速联系卡片组 */
.contact-quick-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cqc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  transition: var(--transition); cursor: pointer;
}
.cqc-item:hover { background: rgba(255,255,255,0.14); border-color: rgba(212,175,90,0.5); }
.cqc-icon { font-size: 22px; flex-shrink: 0; }
.cqc-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }
.cqc-val   { font-size: 13.5px; color: #fff; font-weight: 500; margin-top: 2px; }
/* 右侧信任标志 */
.contact-hero-trust { display: flex; flex-direction: column; gap: 16px; }
.trust-card {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); transition: var(--transition);
}
.trust-card:hover { background: rgba(255,255,255,0.11); }
.trust-icon {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,175,90,0.3), rgba(212,175,90,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.trust-text h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.trust-text p  { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── 主体 ── */
#contact-body { padding: 80px 0 100px; background: var(--ivory); }
.contact-body-layout {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: flex-start;
}

/* ── 表单区 ── */
.contact-form-section { }
.cfs-header { margin-bottom: 32px; }
.cfs-header h2 { font-family: var(--font-sc); font-size: 28px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.cfs-header p  { font-size: 14px; color: var(--text-mid); }
/* 步骤进度条 */
.form-steps {
  display: flex; align-items: center; margin-bottom: 36px; gap: 0;
}
.form-step {
  display: flex; align-items: center; gap: 10px; flex: 1;
}
.form-step:last-child { flex: 0; }
.fs-circle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: var(--transition);
}
.fs-circle.done    { background: var(--green); color: #fff; }
.fs-circle.active  { background: var(--gold);  color: #fff; box-shadow: 0 0 0 4px var(--gold-pale); }
.fs-circle.pending { background: var(--border); color: var(--text-lt); }
.fs-label { font-size: 12px; color: var(--text-lt); white-space: nowrap; }
.fs-label.active { color: var(--gold); font-weight: 600; }
.fs-line { flex: 1; height: 2px; background: var(--border); margin: 0 10px; }
.fs-line.done { background: var(--green); }
/* 表单卡 */
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
/* 表单步骤面板 */
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-panel-title { font-family: var(--font-sc); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.form-group label .req { color: var(--gold); font-size: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
  font-family: var(--font-body); color: var(--text-dark);
  background: var(--ivory); transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(26,92,82,0.08); }
.form-group input.error,
.form-group select.error { border-color: #EF4444; }
.form-group .field-hint { font-size: 12px; color: var(--text-lt); }
.form-group .field-error { font-size: 12px; color: #EF4444; display: none; }
.form-group.has-error .field-error { display: block; }
.form-group textarea { resize: vertical; min-height: 100px; }
/* 单选组 */
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-option {
  display: flex; align-items: center; gap: 8px; padding: 9px 16px;
  border: 1.5px solid var(--border); border-radius: 6px;
  cursor: pointer; transition: var(--transition); font-size: 13.5px; color: var(--text-mid);
}
.radio-option input[type="radio"] { display: none; }
.radio-option:hover { border-color: var(--green); color: var(--green); }
.radio-option.selected { border-color: var(--green); background: var(--green-pale); color: var(--green); font-weight: 500; }
/* 复选框 */
.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-option {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  border: 1.5px solid var(--border); border-radius: 6px;
  cursor: pointer; transition: var(--transition); font-size: 13px; color: var(--text-mid);
}
.check-option input[type="checkbox"] { display: none; }
.check-option:hover { border-color: var(--green); }
.check-option.selected { border-color: var(--green); background: var(--green-pale); color: var(--green); }
/* 表单按钮行 */
.form-btn-row { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.btn-form-prev { padding: 12px 24px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: transparent; color: var(--text-mid); font-size: 14px; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-form-prev:hover { border-color: var(--green); color: var(--green); }
.btn-form-next { padding: 13px 32px; background: var(--green); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 14px; cursor: pointer; transition: var(--transition); font-family: var(--font-body); display: flex; align-items: center; gap: 8px; }
.btn-form-next:hover { background: var(--green-lt); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-form-submit { padding: 13px 36px; background: var(--gold); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font-body); display: flex; align-items: center; gap: 8px; }
.btn-form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,151,58,0.3); }
/* 提交成功 */
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .success-icon { font-size: 60px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-sc); font-size: 24px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.form-success p  { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
/* 隐私声明 */
.form-privacy { margin-top: 16px; font-size: 12px; color: var(--text-lt); text-align: center; line-height: 1.7; }
.form-privacy a { color: var(--green); }

/* ── 右侧信息区 ── */
.contact-info-section { display: flex; flex-direction: column; gap: 20px; }
/* 联系卡 */
.ci-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.ci-card h3 { font-family: var(--font-sc); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.ci-rows { display: flex; flex-direction: column; gap: 14px; }
.ci-row { display: flex; align-items: flex-start; gap: 14px; }
.ci-row-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ci-row-body { flex: 1; }
.ci-row-label { font-size: 12px; color: var(--text-lt); margin-bottom: 3px; letter-spacing: 0.5px; }
.ci-row-val   { font-size: 14px; color: var(--text-dark); font-weight: 500; line-height: 1.5; }
.ci-row-val a { color: var(--green); }
/* 工作时间 */
.ci-hours { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ci-hour-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 8px 12px; border-radius: 6px; }
.ci-hour-row:nth-child(odd)  { background: var(--ivory); }
.ci-hour-row .day   { color: var(--text-mid); }
.ci-hour-row .hours { color: var(--green); font-weight: 500; }
.ci-hour-row.closed .hours { color: var(--text-lt); }
.ci-tips{ font-size:12px;color:var(--text-lt);margin-top:12px}
/* 二维码组 */
.qr-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qr-item  { text-align: center; }
.qr-img   { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); margin-bottom: 8px; }
.qr-label { font-size: 12px; color: var(--text-mid); }
/* 地图 */
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-map-placeholder {
  height: 100%; background: var(--green-pale);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-lt); font-size: 14px;
}
.contact-map-placeholder .map-icon { font-size: 40px; }
.contact-map-placeholder .map-addr { font-size: 13px; text-align: center; line-height: 1.7; color: var(--text-mid); }
.map-open-btn { padding: 9px 20px; background: var(--green); color: #fff; border-radius: var(--radius-sm); font-size: 13px; transition: var(--transition); }
.map-open-btn:hover { background: var(--green-lt); }

/* ── 预约流程说明 ── */
#consult-flow { padding: 80px 0; background: var(--white); }
.flow-header { text-align: center; margin-bottom: 50px; }
.flow-header .gold-line { margin: 0 auto 24px; }
.flow-steps-wrap {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.flow-steps-wrap::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 0;
}
.flow-step-item { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.fsi-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(26,92,82,0.25);
  border: 4px solid var(--white);
}
.fsi-num   { font-family: var(--font-en); font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1; }
.fsi-emoji { font-size: 20px; line-height: 1; }
.fsi-title { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.fsi-desc  { font-size: 12px; color: var(--text-lt); line-height: 1.6; }

/* ── 团队介绍小条 ── */
.ct-teams{ display:flex;align-items:center;gap:24px;flex-shrink:0}
#contact-team { padding: 60px 0; background: var(--green-pale); }
.ct-inner { display: flex; align-items: center; gap: 40px; }
.ct-text { flex: 1; }
.ct-text h3 { font-family: var(--font-sc); font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.ct-text p  { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.ct-advisors { display: flex; gap: -8px; }
.ct-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; margin-left: -10px; box-shadow: var(--shadow-sm); transition: transform 0.2s; }
.ct-avatar-more{ width:54px;height:54px;border-radius:50%;background:var(--green);border:3px solid #fff;display:flex;align-items:center;justify-content:center;font-size:13px;color:#fff;font-weight:600;margin-left:-10px;}
.ct-avatar:first-child { margin-left: 0; }
.ct-avatar:hover { transform: translateY(-4px); z-index: 1; }
.ct-online { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--green); font-weight: 500; }
.ct-online::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22C55E; display: block; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: pulse-green 1.5s infinite; }
@keyframes pulse-green { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* =============================================
   专家列表页
   ============================================= */

/* ── 列表页 Hero ── */
#doctors-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
  position: relative; overflow: hidden;
}
#doctors-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/04ffe54eb5174b293a49101c11672afc.png') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
#doctors-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.doctors-hero-inner { position: relative; z-index: 1; text-align: center; }
.doctors-hero-inner .section-tag { color: var(--gold-lt); justify-content: center; }
.doctors-hero-inner .section-tag::before,
.doctors-hero-inner .section-tag::after { background: var(--gold-lt); }
.doctors-hero-inner .section-title { color: #fff; margin: 0 auto 16px; }
.doctors-hero-inner .section-desc  { color: rgba(255,255,255,0.72); margin: 0 auto 36px; text-align: center; }
.doctors-hero-inner .gold-line{ margin: 0 auto 20px;}
.doctors-hero-stats {
  display: inline-flex; gap: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
}
.dhs-item {
  padding: 18px 36px; text-align: center; color: #fff;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.dhs-item:last-child { border-right: none; }
.dhs-num { font-family: var(--font-en); font-size: 30px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.dhs-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; letter-spacing: 0.5px; }

/* ── 筛选栏 ── */
#doctors-filter {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 76px; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.filter-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 0;
}
.filter-label { font-size: 13px; font-weight: 600; color: var(--text-dark); white-space: nowrap; flex-shrink: 0; }
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.filter-tag {
  padding: 6px 16px; font-size: 13px; border-radius: 20px;
  border: 1.5px solid var(--border); color: var(--text-mid);
  background: transparent; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.filter-tag:hover  { border-color: var(--green); color: var(--green); }
.filter-tag.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 3px 10px rgba(26,92,82,0.2); }
.filter-search {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 20px;
  background: var(--ivory); flex-shrink: 0;
}
.filter-search input {
  border: none; background: none; outline: none;
  font-size: 13px; color: var(--text-dark); width: 160px;
  font-family: var(--font-body);
}
.filter-search input::placeholder { color: var(--text-lt); }
.filter-search .search-icon { color: var(--text-lt); font-size: 14px; }

/* ── 医生列表网格 ── */
#doctors-list { padding: 64px 0 100px; background: var(--ivory); }
.doctors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-bottom: 50px;
}
/* 列表页卡片（比首页更丰富） */
.dl-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.dl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.dl-card-photo-wrap { position: relative; overflow: hidden; }
.dl-card-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.dl-card:hover .dl-card-photo { transform: scale(1.04); }
.dl-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,92,82,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; opacity: 0; transition: opacity 0.35s;
}
.dl-card:hover .dl-card-overlay { opacity: 1; }
.dl-overlay-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.dl-overlay-tag {
  padding: 3px 10px; background: rgba(184,151,58,0.85); color: #fff;
  font-size: 11px; border-radius: 20px;
}
.dl-overlay-btn {
  display: block; text-align: center; padding: 9px;
  background: var(--gold); color: #fff; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; transition: background 0.2s;
}
.dl-overlay-btn:hover { background: var(--gold-lt); }

.dl-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.dl-card-name { font-family: var(--font-sc); font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.dl-card-title { font-size: 12.5px; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.dl-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.dl-card-tag {
  padding: 2px 9px; font-size: 11px; border-radius: 20px;
  background: var(--green-pale); color: var(--green);
}
.dl-card-desc { font-size: 12.5px; color: var(--text-lt); line-height: 1.65; flex: 1; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.dl-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.dl-card-lang { font-size: 11.5px; color: var(--text-lt); }
.dl-card-link { font-size: 13px; color: var(--green); font-weight: 500; transition: gap 0.2s; display: flex; align-items: center; gap: 4px; }
.dl-card-link:hover { gap: 8px; }

/* 无结果提示 */
.no-result {
  display: none; text-align: center; padding: 60px 0;
  color: var(--text-lt); font-size: 15px; grid-column: 1/-1;
}
.no-result.show { display: block; }

/* 分页 */
.doctors-pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
}
.pg-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 14px; color: var(--text-mid); cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.pg-btn:hover  { border-color: var(--green); color: var(--green); }
.pg-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.pg-btn.pg-arrow { font-size: 16px; }
.pg-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.doctors-zx{ background: var(--green-pale); padding: 60px 0; text-align: center;}
.doctors-zx .section-tag{ justify-content: center;}
.doctors-zx .section-title{ margin-bottom: 12px;}
.doctors-zx .section-tips{ font-size:15px; color:var(--text-mid); margin-bottom: 28px;}
.doctors-zx .btn-primary{ margin: 0 auto;}

/* =============================================
   专家详情页
   ============================================= */

/* ── 详情页 Hero ── */
#doctor-hero {
  padding: 60px 0 0;
  background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
  position: relative; overflow: hidden;
}
#doctor-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}
#doctor-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80px;
  background: linear-gradient(0deg, var(--ivory) 0%, transparent 100%);
  pointer-events: none;
}
.doctor-hero-inner {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 56px; align-items: flex-end;
  padding-bottom: 80px; position: relative; z-index: 1;
}
/* 医生大头照 */
.doctor-photo-col { position: relative; }
.doctor-hero-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block; box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.doctor-cert-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; border-radius: var(--radius-sm);
  padding: 8px 18px; font-size: 12px; white-space: nowrap;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 6px;
}
/* 医生信息 */
.doctor-info-col { color: #fff; padding-bottom: 20px; }
.doctor-dept-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 14px; background: rgba(212,175,90,0.2);
  border: 1px solid rgba(212,175,90,0.4); border-radius: 20px;
  font-size: 12px; color: var(--gold-lt); letter-spacing: 1px; margin-bottom: 18px;
}
.doctor-hero-name {
  font-family: var(--font-sc); font-size: 40px; font-weight: 700;
  line-height: 1.2; margin-bottom: 6px; color: #fff;
}
.doctor-hero-name-en { font-family: var(--font-en); font-size: 20px; color: rgba(255,255,255,0.65); margin-bottom: 18px; letter-spacing: 0.5px; }
.doctor-hero-title { font-size: 15px; color: var(--gold-lt); font-weight: 500; margin-bottom: 20px; }
.doctor-hero-intro {
  font-size: 14.5px; color: rgba(255,255,255,0.75);
  line-height: 1.9; max-width: 540px; margin-bottom: 28px;
}

/* 专长标签 */
.doctor-expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.det { padding: 5px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 500; }
.det-gold  { background: rgba(184,151,58,0.25); border: 1px solid rgba(212,175,90,0.5); color: var(--gold-lt); }
.det-white { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }
/* hero底部数据 */
.doctor-hero-stats {
  display: flex; gap: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.dhs-col .dhs-num   { font-family: var(--font-en); font-size: 32px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.dhs-col .dhs-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
/* ── 专长领域 ── */
.specialty-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.specialty-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  transition: var(--transition);
}
.specialty-list li:hover {
  border-color: var(--gold);
  color: var(--text-dark);
}
.specialty-list li::before {
  content: '✦';
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 11px;
  color: var(--gold);
}
/* ── 荣誉与认证 ── */
.rongyu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rongyu-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fdf8ee 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}
.rongyu-list li strong {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
}
/* ── 详情主体（左内容+右栏）── */
.doctor-body-wrap {
  padding: 80px 0 100px; background: var(--ivory);
}
.doctor-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
  align-items: flex-start;
}
/* 右侧侧边栏整体sticky */
.doctor-layout > aside {
  position: sticky; top: 96px;
  max-height: calc(100vh - 110px);
  overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.doctor-layout > aside::-webkit-scrollbar { display: none; }

.dci-quote-mark {
  position: absolute;
  left: 18px; top: 14px;
  font-family: var(--font-en);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-style: italic;
}
.dci-text {
  font-family: var(--font-sc);
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
}
.dci-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(184,151,58,0.25);
}
.dci-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.dci-role {
  font-size: 12px;
  color: var(--text-mid);
}

.career-timeline { position: relative; padding-left: 32px; margin-bottom:64px}
.career-timeline::before {
  content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--gold), var(--green));
  border-radius: 1px;
}
.career-timeline--cms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.career-timeline--cms li {
  position: relative;
  margin-bottom: 28px;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
}
.career-timeline--cms li:last-child {
  margin-bottom: 0;
}
.career-timeline--cms li::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.career-item { position: relative; margin-bottom: 28px; }
.career-item:last-child { margin-bottom: 0; }
.career-dot {
  position: absolute; left: -29px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.career-year { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.5px; }
.career-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.career-org   { font-size: 13px; color: var(--green); margin-bottom: 6px; }
.career-desc  { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ── 学历 & 认证 ── */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.edu-card {
  padding: 20px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start;
  transition: var(--transition);
}
.edu-card:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-sm); }
.edu-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.edu-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; line-height: 1.4; }
.edu-text p  { font-size: 12px; color: var(--text-lt); line-height: 1.5; }

/* ── 学术成就 ── */
.achievement-list { display: flex; flex-direction: column; gap: 12px; }
.ach-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition);
}
.ach-item:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
.ach-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ach-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.ach-text p  { font-size: 12.5px; color: var(--text-mid); }

/* ── 患者评价 ── */
.doctor-reviews { display: flex; flex-direction: column; gap: 20px; }
.dr-review-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px;
  border: 1px solid var(--border); position: relative;
}
.dr-review-card::before {
  content: '"'; font-family: var(--font-en); font-size: 60px; line-height: 1;
  color: var(--gold-pale); position: absolute; top: 8px; right: 16px;
}
.dr-stars  { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.dr-text   { font-size: 13.5px; color: var(--text-mid); line-height: 1.9; font-style: italic; margin-bottom: 16px; }
.dr-author { display: flex; align-items: center; gap: 10px; }
.dr-avatar {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.dr-name   { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.dr-from   { font-size: 11.5px; color: var(--text-lt); }
.zhiwu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zhiwu-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  transition: var(--transition);
}
.zhiwu-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}
.zhiwu-list li:hover {
  border-color: var(--green);
  color: var(--text-dark);
}
.zhiwu-list li strong {
  color: var(--green);
  font-weight: 600;
}
/* ── 侧边栏：预约卡 ── */
.sidebar-appt {
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  border-radius: var(--radius-lg); padding: 28px; color: #fff;
}
.sidebar-appt h4 { font-family: var(--font-sc); font-size: 18px; margin-bottom: 6px; }
.sidebar-appt .appt-name { font-size: 13px; opacity: 0.75; margin-bottom: 20px; }
.appt-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.appt-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.appt-row .ai { font-size: 16px; flex-shrink: 0; }
.appt-row span { color: rgba(255,255,255,0.8); }
.appt-row strong { color: #fff; }
.appt-row del {
  text-decoration: line-through;
  color: var(--text-lt);
  font-weight: 400;
}
.appt-btn { display: block; text-align: center; padding: 13px; background: var(--gold); color: #fff; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; transition: var(--transition); margin-bottom: 10px; }
.appt-btn:hover { background: var(--gold-lt); }
.appt-btn-line { display: block; text-align: center; padding: 12px; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; border-radius: var(--radius-sm); font-size: 13.5px; transition: var(--transition); }
.appt-btn-line:hover { background: rgba(255,255,255,0.1); }

/* ── 侧边栏：其他专家推荐 ── */
.sidebar-doctors { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; margin-top: 20px; }
.sidebar-doctors h4 { padding: 16px 20px; font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--border); }
.sidebar-doctor-item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.sidebar-doctor-item:last-child { border-bottom: none; }
.sidebar-doctor-item:hover { background: var(--green-pale); }
.sd-photo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.sd-info .sd-name  { font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
.sd-info .sd-title { font-size: 11.5px; color: var(--green); margin-top: 2px; }
.sd-arrow { margin-left: auto; color: var(--text-lt); font-size: 16px; flex-shrink: 0; }

/* =============================================
   资讯列表页
   ============================================= */

/* ── 列表页 Hero ── */
#news-hero {
  padding: 56px 0;
  background: 
    linear-gradient(135deg, rgba(15,74,63,0.88) 0%, rgba(14,61,53,0.92) 100%),
    url('../images/mrthTdHdZO3W9gRs.jpg') center center / cover no-repeat;
  position: relative; overflow: hidden;
}
#news-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.news-hero-inner { position: relative; z-index: 1; text-align: center; }
.news-hero-inner .section-tag   { color: var(--gold-lt); justify-content: center; }
.news-hero-inner .section-tag::before,
.news-hero-inner .section-tag::after { background: var(--gold-lt); }
.news-hero-inner .section-title { color: #fff; margin: 0 auto 12px; }
.news-hero-inner .section-desc  { color: rgba(255,255,255,0.7); margin: 0 auto; }
.news-hero-inner .gold-line{ margin: 0 auto 16px;}

/* ── 资讯列表筛选栏 ── */
#news-filter {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 76px; z-index: 100; box-shadow: var(--shadow-sm);
}
.news-filter-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.news-filter-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.news-filter-cat {
  padding: 6px 16px; font-size: 13px; border-radius: 20px;
  border: 1.5px solid var(--border); color: var(--text-mid);
  background: transparent; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.news-filter-cat:hover  { border-color: var(--green); color: var(--green); }
.news-filter-cat.active,.news-filter-cat.selected { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 3px 10px rgba(26,92,82,0.2); }
.news-filter-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.news-sort-select {
  padding: 7px 12px; border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 13px; color: var(--text-mid); background: var(--ivory);
  cursor: pointer; outline: none; font-family: var(--font-body);
  transition: border-color 0.2s;
}
.news-sort-select:focus { border-color: var(--green); }
.news-filter-search {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border: 1.5px solid var(--border);
  border-radius: 20px; background: var(--ivory);
}
.news-filter-search input {
  border: none; background: none; outline: none;
  font-size: 13px; color: var(--text-dark); width: 150px;
  font-family: var(--font-body);
}
.news-filter-search input::placeholder { color: var(--text-lt); }

/* ── 列表主体布局 ── */
#news-body { padding: 60px 0 100px; background: var(--ivory); }
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: flex-start; }

/* 右侧侧边栏 sticky */
.news-sidebar {
  position: sticky; top: 130px;
  max-height: calc(100vh - 150px);
  overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.news-sidebar::-webkit-scrollbar { display: none; }

/* ── 精选置顶文章 ── */
.news-featured-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1.1fr 1fr;
  margin-bottom: 28px; transition: var(--transition);
}
.news-featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.nfc-img-wrap { overflow: hidden; position: relative; }
.nfc-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 260px; transition: transform 0.5s;
}
.news-featured-card:hover .nfc-img { transform: scale(1.04); }
.nfc-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 4px 12px; background: var(--gold); color: #fff;
  font-size: 11px; border-radius: 20px; font-weight: 500;
}
.nfc-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.nfc-cat  { display: inline-block; margin-bottom: 12px;}
.nfc-title {
  font-family: var(--font-sc); font-size: 22px; font-weight: 600;
  color: var(--text-dark); line-height: 1.45; margin-bottom: 12px;
  transition: color 0.2s;
}
.news-featured-card:hover .nfc-title { color: var(--green); }
.nfc-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nfc-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-lt); margin-bottom: 18px; }
.nfc-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--green); font-weight: 500; transition: gap 0.2s; }
.nfc-read-more:hover { gap: 10px; }

/* ── 普通文章列表 ── */
.news-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.nl-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); display: grid;
  grid-template-columns: 240px 1fr; transition: var(--transition);
}
.nl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--green-pale); }
.nl-img-wrap { overflow: hidden; position: relative; height:240px;}
.nl-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 180px; transition: transform 0.4s;
}
.nl-card:hover .nl-img { transform: scale(1.05); }
.nl-cat-badge {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  padding: 3px 10px; font-size: 11px; border-radius: 20px; color: #fff;
}
.nl-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.nl-title {
  font-family: var(--font-sc); font-size: 18px; font-weight: 600;
  color: var(--text-dark); line-height: 1.5; margin-bottom: 10px;
  transition: color 0.2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nl-card:hover .nl-title { color: var(--green); }
.nl-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-footer { display: flex; align-items: center; justify-content: space-between; }
.nl-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-lt); }
.nl-read { font-size: 13px; color: var(--green); font-weight: 500; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.nl-card:hover .nl-read { gap: 8px; }

/* ── 分页 ── */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.news-pagination a,
.news-pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color .18s, color .18s, background .18s;
  box-sizing: border-box;
  font-weight: 400;
  font-family: var(--font-body);
}

.news-pagination a:hover {
  border-color: var(--green);
  color: var(--green);
}

.news-pagination strong {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 500;
  cursor: default;
}

/* ── 右侧侧边栏 ── */
.ns-block {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; margin-bottom: 20px;
}
.ns-block-head {
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  color: var(--text-dark); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
/* 热门文章 */
.ns-hot-list { padding: 8px 0; }
.ns-hot-item {
  display: flex; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.ns-hot-item:last-child { border-bottom: none; }
.ns-hot-item:hover { background: var(--green-pale); }
.ns-hot-rank {
  width: 22px; height: 22px; border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 12px; font-weight: 700; color: #fff;
  margin-top: 2px;
}
.ns-hot-rank.r1 { background: #EF4444; }
.ns-hot-rank.r2 { background: var(--gold); }
.ns-hot-rank.r3 { background: #64748B; }
.ns-hot-rank.r4, .ns-hot-rank.r5, .ns-hot-rank.r6,
.ns-hot-rank.r7,
.ns-hot-rank.r8,
.ns-hot-rank.r9,
.ns-hot-rank.r10 { background: var(--border); color: var(--text-lt); }
.ns-hot-title { font-size: 13px; color: var(--text-dark); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.ns-hot-item:hover .ns-hot-title { color: var(--green); }
.ns-hot-views { font-size: 11px; color: var(--text-lt); margin-top: 4px; }
/* 栏目导航 */
.ns-cat-list { padding: 8px 0; }
.ns-cat-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 20px; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text-mid); transition: var(--transition);
}
.ns-cat-item:last-child { border-bottom: none; }
.ns-cat-item:hover { color: var(--green); background: var(--green-pale); padding-left: 24px; }
.ns-cat-item .ns-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ns-cat-item .ns-cat-count { font-size: 12px; color: var(--text-lt); background: var(--ivory); padding: 2px 8px; border-radius: 10px; }
.ns-cat-left{ display:flex;align-items:center;gap:8px}
.ns-cat-item[data-id="2137"] .ns-cat-dot { background: var(--green); }
.ns-cat-item[data-id="2138"] .ns-cat-dot { background: #2563EB; }
.ns-cat-item[data-id="2139"] .ns-cat-dot { background: var(--gold); }
.ns-cat-item[data-id="2140"] .ns-cat-dot { background: #9333EA; }
.ns-cat-item[data-id="2141"] .ns-cat-dot { background: #64748B; }
.ns-cat-item[data-id="2142"] .ns-cat-dot { background: #E11D48; }
/* 咨询CTA */
.ns-cta {
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  border-radius: var(--radius-lg); padding: 24px; color: #fff; margin-bottom: 20px;
  text-align: center;
}
.ns-cta h4 { font-family: var(--font-sc); font-size: 17px; margin-bottom: 8px; }
.ns-cta p  { font-size: 12.5px; opacity: 0.8; line-height: 1.7; margin-bottom: 16px; }
.ns-cta .btn-gold { width: 100%; justify-content: center; border-color: rgba(255,255,255,0.45); color: #fff; }
.ns-cta .btn-gold:hover { background: var(--gold); border-color: var(--gold); }
/* 标签云 */
.ns-tags { padding: 16px 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.ns-tag {
  padding: 4px 12px; font-size: 12px; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-mid);
  transition: var(--transition); cursor: pointer;
}
.ns-tag:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

/* =============================================
   资讯详情页
   ============================================= */

/* ── 详情页 Hero ── */
#article-hero {
  padding: 56px 0 0;
  background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
  position: relative; overflow: hidden;
}
#article-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 30px;
  background: linear-gradient(0deg, var(--ivory) 0%, transparent 100%);
  pointer-events: none;
}
.article-hero-inner {
  padding-bottom: 60px; max-width: 820px; position: relative; z-index: 1;
}
.article-hero-cats { display: flex; gap: 8px; margin-bottom: 16px; }
.article-hero-cat {
  padding: 4px 14px; border-radius: 20px; font-size: 12px;
  color: #fff; font-weight: 500;
}
.article-hero-title {
  font-family: var(--font-sc); font-size: 38px; font-weight: 700;
  color: #fff; line-height: 1.3; margin-bottom: 20px;
}
.article-hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ahm-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.ahm-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.ahm-item a { color: var(--gold-lt); transition: color 0.2s; }
.ahm-item a:hover { color: #fff; }

/* ── 详情主体布局 ── */
.article-body-wrap { padding: 60px 0 100px; background: var(--ivory); }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: flex-start; }
.article-layout main{ min-width:0;}
.article-sidebar {
  position: sticky; top: 130px;
  max-height: calc(100vh - 150px);
  overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.article-sidebar::-webkit-scrollbar { display: none; }

/* ── 文章封面图 ── */
.article-cover {
  width: 100%; border-radius: var(--radius-lg); display: block;
  margin-bottom: 36px; box-shadow: var(--shadow-md);
  aspect-ratio: 16/7; object-fit: cover;
}
/* ── 文章封面图区域 ── */
.article-cover-wrap {
  width: 100%;
  margin-bottom: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-sizing: border-box;
}
.article-cover-wrap video{
    width: 100%;
    margin: 20px 0;
    max-height: 500px;
}

/* 单图 */
.article-cover-single {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* 轮播容器 */
.article-cover-slider {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.article-cover-slider .swiper-container {
  width: 100%;
}
.article-cover-slider .swiper-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* 分页器 */
.article-cover-slider .swiper-pagination {
  bottom: 12px;
}
.article-cover-slider .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
}
.article-cover-slider .swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
}

/* 左右箭头 */
.article-cover-slider .swiper-button-prev,
.article-cover-slider .swiper-button-next {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.article-cover-slider .swiper-button-prev:hover,
.article-cover-slider .swiper-button-next:hover {
  background: rgba(0,0,0,0.6);
}
.article-cover-slider .swiper-button-prev::after,
.article-cover-slider .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

/* ── 文章正文排版 ── */
.article-content { background: var(--white); border-radius: var(--radius-lg); padding: 18px 20px; border: 1px solid var(--border); }
.article-content h2 {
  font-family: var(--font-sc); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin: 36px 0 14px; padding-left: 14px;
  border-left: 4px solid var(--gold); line-height: 1.4;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: var(--font-sc); font-size: 18px; font-weight: 600;
  color: var(--text-dark); margin: 28px 0 10px;
}
.article-content p {
  font-size: 15px; color: var(--text-mid); line-height: 1.95;
  margin-bottom: 18px;
}
.article-content p:last-child { margin-bottom: 0; }
.article-content p img{ margin:0 auto;}
.article-content strong { color: var(--text-dark); font-weight: 600; }
.article-content em { font-style: normal; color: var(--green); font-weight: 500; }
.article-content ul, .article-content ol {
  margin: 0 0 18px 0; padding-left: 20px;
}
.article-content ul li, .article-content ol li {
  font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-bottom: 6px;
}
.article-content ul li::marker { color: var(--gold); }
.article-content ol li::marker { color: var(--green); font-weight: 600; }
.article-content h6{
  margin: 24px 0; padding: 20px 24px;
  background: var(--green-pale); border-radius: var(--radius-md);
  border-left: 4px solid var(--green); font-size: 15px;
  color: var(--text-dark); font-style: italic; line-height: 1.85;
}
/* 提示框 */
.article-content .tip-box {
  padding: 18px 22px; border-radius: var(--radius-md); margin: 24px 0;
  display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.8;
}
.article-content .tip-box.tip-green { background: var(--green-pale); border-left: 4px solid var(--green); color: var(--text-dark); }
.article-content .tip-box.tip-gold  { background: var(--gold-pale);  border-left: 4px solid var(--gold);  color: var(--text-dark); }
.article-content .tip-box.tip-red   { background: #FEF2F2;           border-left: 4px solid #EF4444;      color: var(--text-dark); }
.article-content .tip-box .tip-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
/* 图片 */
.article-content figure { margin: 28px 0; }
.article-content figure img { width: 100%; border-radius: var(--radius-md); display: block; }
.article-content figcaption { font-size: 12.5px; color: var(--text-lt); text-align: center; margin-top: 8px; }
/* 分割线 */
.article-content hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
/* 引用 */
.article-content blockquote {
  margin: 24px 0; padding: 20px 24px;
  background: var(--green-pale); border-radius: var(--radius-md);
  border-left: 4px solid var(--green); font-size: 15px;
  color: var(--text-dark); font-style: italic; line-height: 1.85;
}
/* 数据表格 */
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius-md); overflow: hidden; }
.article-content table th { background: var(--green); color: #fff; padding: 12px 16px; font-size: 13.5px; text-align: left; }
.article-content table td { padding: 12px 16px; font-size: 13.5px; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.article-content table tr:last-child td { border-bottom: none; }
.article-content table tr:hover td { background: var(--green-pale); }

/* ── 文章底部：标签+分享+作者 ── */
.article-footer { margin-top: 36px; }
.article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.article-tags .at-label { font-size: 13px; color: var(--text-lt); }
.article-tag { padding: 4px 12px; font-size: 12px; border-radius: 20px; border: 1px solid var(--border); color: var(--text-mid); transition: var(--transition); }
.article-tag:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.article-share { display: flex; align-items: center; gap: 12px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.article-share .as-label { font-size: 13px; color: var(--text-lt); flex-shrink: 0; }
.share-btn { padding: 7px 18px; border-radius: 6px; font-size: 13px; cursor: pointer; transition: var(--transition); border: 1.5px solid var(--border); background: var(--white); color: var(--text-mid); font-family: var(--font-body); display: flex; align-items: center; gap: 6px; }
.share-btn:hover { border-color: var(--green); color: var(--green); }
.share-btn.share-wechat:hover { border-color: #07C160; color: #07C160; }
.share-btn.share-weibo:hover  { border-color: #E6162D; color: #E6162D; }

/* 作者卡 */
.author-card {
  display: flex; gap: 20px; padding: 24px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.author-photo { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--gold-pale); }
.author-info h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.author-info .author-title { font-size: 13px; color: var(--green); margin-bottom: 8px; }
.author-info .author-bio   { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ── 上一篇/下一篇 ── */
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.an-item {
  padding: 18px 20px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition);
}
.an-item:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
.an-item.an-next { text-align: right; }
.an-dir  { font-size: 11.5px; color: var(--text-lt); margin-bottom: 6px; letter-spacing: 0.5px; }
.an-title { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.an-item:hover .an-title { color: var(--green); }

/* ── 相关文章 ── */
.related-articles { margin-top: 50px; }
.related-articles h3 { font-family: var(--font-sc); font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.related-articles h3::before { content: ''; display: block; width: 4px; height: 22px; background: linear-gradient(180deg, var(--gold), var(--green)); border-radius: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-grid .news-title{  font-size:14px;}

/* ── 文章目录 TOC ── */
.article-toc {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; margin-bottom: 20px;display: none;
}
.article-toc .toc-head { background: var(--green); color: #fff; padding: 16px 20px; font-size: 14px; font-weight: 600; }
.article-toc .toc-list li a { padding: 9px 20px; font-size: 13px; }
/* h3级子目录 */
.article-toc .toc-list li.toc-sub a { padding-left: 34px; font-size: 12.5px; }

/* 阅读进度条 */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--gold), var(--green));
  width: 0; transition: width 0.1s linear;
}

/* ===================================================
   服务项目页 
=================================================== */

/* ── Hero ── */
#srv-hero {
  position: relative;
  min-height: 380px;
  background: 
    linear-gradient(135deg, rgba(12,53,48,0.90) 0%, rgba(15,90,70,0.85) 50%, rgba(31,107,94,0.90) 100%),
    url('../images/y95z3v7gZqMhRfyk.jpg') center center / cover no-repeat;
  display: flex; align-items: center; overflow: hidden;
}
#srv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 80% 50%, rgba(212,175,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}
#srv-hero::after {
  content: 'SERVICE';
  position: absolute; right: 30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en); font-size: 140px; font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 8px;
  pointer-events: none; user-select: none; line-height: 1;
}
.srv-hero-inner { position: relative; z-index: 2; padding: 70px 0; }
.srv-hero-inner .section-tag { color: var(--gold-lt); margin-bottom: 16px; }
.srv-hero-inner .section-tag::before,
.srv-hero-inner .section-tag::after { background: var(--gold-lt); }
.srv-hero-title {
  font-family: var(--font-sc); font-size: 46px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.srv-hero-title em { font-style: normal; color: var(--gold-lt); }
.srv-hero-desc { font-size: 15px; color: rgba(255,255,255,0.68); max-width: 520px; line-height: 1.8; }

/* 面包屑 */
.breadcrumb-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-lt); }
.breadcrumb-bar a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--green); }
.breadcrumb-bar .sep { color: var(--border); }
.breadcrumb-bar .cur { color: var(--green); font-weight: 500; }

/* ── 服务导航锚点 Tab ── */
#srv-tabs {
  position: sticky; top: 76px; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,92,82,0.06);
}
.srv-tabs-inner {
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.srv-tabs-inner::-webkit-scrollbar { display: none; }
.srv-tab {
  padding: 15px 22px; font-size: 13.5px; font-weight: 500;
  color: var(--text-mid); cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.srv-tab:hover { color: var(--green); }
.srv-tab.active { color: var(--green); border-bottom-color: var(--gold); }
.srv-tab-icon { font-size: 15px; }

/* ── 服务总览卡片区 ── */
#srv-overview { padding: 80px 0; background: var(--ivory); }
.overview-header { text-align: center; margin-bottom: 56px; }
.overview-header .section-tag { justify-content: center; }

.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 第一张和最后一张大卡，占2列 */
.srv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  position: relative;
}
.srv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.srv-card.featured {
  grid-column: span 2;
  flex-direction: row;
}
.srv-card-img {
  overflow: hidden; flex-shrink: 0;
}
.srv-card:not(.featured) .srv-card-img {
  aspect-ratio: 16/9;
}
.srv-card.featured .srv-card-img {
  width: 280px;
}
.srv-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.srv-card:hover .srv-card-img img { transform: scale(1.06); }

.srv-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.srv-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; flex-shrink: 0;
}
.srv-card.featured .srv-card-icon { width: 52px; height: 52px; font-size: 24px; }
.srv-card-name {
  font-family: var(--font-sc); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.srv-card.featured .srv-card-name { font-size: 20px; }
.srv-card-tag {
  display: inline-block; padding: 2px 10px; border-radius: 20px;
  background: var(--green-pale); color: var(--green);
  font-size: 11.5px; font-weight: 500; margin-bottom: 10px;align-self: flex-start;
}
.srv-card-desc {
  font-size: 13.5px; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 16px; flex: 1;
}
.srv-card-points {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.srv-card-point {
  padding: 3px 10px; border-radius: 3px;
  background: var(--ivory); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-mid);
}
.srv-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--green); font-weight: 500;
  transition: var(--transition); margin-top: auto;
}
.srv-card-link:hover { color: var(--gold); gap: 10px; }
.srv-card-link span { font-size: 16px; }

/* ── 各服务详情区块 ── */
.srv-section {
  padding: 80px 0;
  scroll-margin-top: 130px;
}
.srv-section:nth-child(odd) { background: var(--white); }
.srv-section:nth-child(even) { background: var(--ivory); }

/* 区块布局：左图右文 / 左文右图交替 */
.srv-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.srv-layout.reverse { direction: rtl; }
.srv-layout.reverse > * { direction: ltr; }

/* 服务图片 */
.srv-img-wrap { position: relative; }
.srv-img-main {
  width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.srv-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.srv-img-wrap:hover .srv-img-main img { transform: scale(1.04); }
/* 悬浮标签 */
.srv-img-badge {
  position: absolute; bottom: -16px; right: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
}
.srv-img-badge-icon { font-size: 22px; }
.srv-img-badge-text { font-size: 12px; color: var(--text-mid); line-height: 1.4; }
.srv-img-badge-text strong { display: block; color: var(--green); font-size: 14px; }

/* 服务内容 */
.srv-content { padding-top: 4px; }
.srv-section-num {
  font-family: var(--font-en); font-size: 64px; font-weight: 700;
  color: var(--green-pale); line-height: 1; margin-bottom: -10px;
  user-select: none;
}
.srv-content .section-title { margin-bottom: 6px; }
.srv-content .section-tag { margin-bottom: 12px; }
.srv-intro-text {
  font-size: 15px; color: var(--text-mid); line-height: 2; margin-bottom: 24px;
}

/* 适用人群标签 */
.srv-who {
  background: var(--green-pale); border-radius: var(--radius-md);
  padding: 16px 18px; margin-bottom: 24px;
}
.srv-who-title { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 1px; margin-bottom: 10px; }
.srv-who-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-who-tag {
  padding: 4px 12px; border-radius: 20px;
  background: var(--white); border: 1px solid rgba(26,92,82,0.15);
  font-size: 12.5px; color: var(--text-mid);
}

/* 服务要点列表 */
.srv-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.srv-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-mid); line-height: 1.7;
}
.srv-point::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}

.srv-detail-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--green); color: #fff;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  transition: var(--transition);
}
.srv-detail-btn:hover { background: #0C3530; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ── 最新文章区 ── */
#srv-articles { padding: 80px 0; background: var(--ivory); }
.articles-header { text-align: center; margin-bottom: 16px; }
.articles-header .section-tag { justify-content: center; }

/* 分类筛选器 */
.articles-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 48px;
}
.af-btn {
  padding: 7px 18px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 13px; color: var(--text-mid); cursor: pointer;
  transition: var(--transition);
}
.af-btn:hover { border-color: var(--green); color: var(--green); }
.af-btn.active {
  background: var(--green); border-color: var(--green);
  color: #fff;
}

/* 文章网格 */
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.article-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.article-card[style*="display:none"] { display: none !important; }

.article-card-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.article-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 10px; border-radius: 20px;
  background: var(--green); color: #fff; font-size: 11.5px;
}

.article-card-body { padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }
.article-card-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-lt); margin-bottom: 10px;
}
.article-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.article-card-title {
  font-family: var(--font-sc); font-size: 15px; font-weight: 600;
  color: var(--text-dark); line-height: 1.6; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-title:hover { color: var(--green); }
.article-card-desc {
  font-size: 13px; color: var(--text-lt); line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1; margin-bottom: 16px;
}
.article-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.article-card-author {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-lt);
}
.article-card-author img {
  width: 22px; height: 22px; border-radius: 50%; object-fit: cover;
}
.article-card-read {
  font-size: 12.5px; color: var(--green); font-weight: 500;
  transition: var(--transition);
}
.article-card-read:hover { color: var(--gold); }

/* 无结果提示 */
.articles-empty {
  text-align: center; padding: 48px 0;
  color: var(--text-lt); font-size: 14px; display: none;
}

/* 查看全部按钮 */
.articles-more { text-align: center; }
.articles-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; background: var(--white);
  border: 1.5px solid var(--green); color: var(--green);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  transition: var(--transition);
}
.articles-more-btn:hover { background: var(--green); color: #fff; }

/* ── CTA ── */
#srv-cta { padding: 80px 0; background: var(--white); }
.srv-cta-box {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  border-radius: var(--radius-lg); padding: 64px 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.srv-cta-box::after {
  content: 'LRC';
  position: absolute; right: 30px; bottom: -20px;
  font-family: var(--font-en); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
}
.srv-cta-content { position: relative; z-index: 1; }
.srv-cta-content .section-tag { color: var(--gold-lt); }
.srv-cta-content .section-tag::before,
.srv-cta-content .section-tag::after { background: var(--gold-lt); }
.srv-cta-title {
  font-family: var(--font-sc); font-size: 34px; font-weight: 700;
  color: #fff; line-height: 1.3; margin: 14px 0 12px;
}
.srv-cta-title em { font-style: normal; color: var(--gold-lt); }
.srv-cta-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.srv-cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px; min-width: 200px;
}
.srv-cta-btn-main {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px; background: var(--gold); color: #fff;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.srv-cta-btn-main:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.35); }
.srv-cta-btn-sec {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 28px; background: transparent;
  color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm); font-size: 14px;
  transition: var(--transition); white-space: nowrap;
}
.srv-cta-btn-sec:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* =============================================
   成功案例页
   ============================================= */

/* ── Hero ── */
#cases-hero {
  padding: 60px 0;
  background: 
    linear-gradient(135deg, rgba(12,45,38,0.93) 0%, rgba(14,61,53,0.93) 100%),
    url('../images/iHOlyP4kJgOWL0Oi.png') center center / cover no-repeat;
  position: relative; overflow: hidden;
}
#cases-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cases-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.cases-hero-text .section-tag   { color: var(--gold-lt); }
.cases-hero-text .section-tag::before,
.cases-hero-text .section-tag::after { background: var(--gold-lt); }
.cases-hero-text .section-title { color: #fff; margin-bottom: 16px; }
.cases-hero-text .section-desc  { color: rgba(255,255,255,0.72); max-width: none; margin-bottom: 32px; }
.cases-hero-text .gold-line     { margin-bottom: 20px; }
/* 右侧数据网格 */
.cases-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.chs-item {
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  text-align: center; transition: var(--transition);
  border-top: 1px solid rgba(212,175,90,0);
  transition: all 0.3s;
}
.chs-item:hover {
  background: rgba(255,255,255,0.1);
  border-top-color: var(--gold-lt);
}
.chs-num {
  font-family: var(--font-en); font-size: 46px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 8px;
}
.chs-num sup { font-size: 20px; vertical-align: super; }
.chs-label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 1px; }

/* ── 筛选栏 ── */
#cases-filter {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 76px; z-index: 100; box-shadow: var(--shadow-sm);
}
.cases-filter-inner {
  display: flex; align-items: center; gap: 20px; padding: 14px 0; flex-wrap: wrap;
}
.cases-filter-label { font-size: 13px; font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.cases-filter-tags  { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.cases-filter-tag {
  padding: 6px 16px; font-size: 13px; border-radius: 20px;
  border: 1.5px solid var(--border); color: var(--text-mid);
  background: transparent; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.cases-filter-tag:hover  { border-color: var(--green); color: var(--green); }
.cases-filter-tag.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 3px 10px rgba(26,92,82,0.2); }
/* 年龄快筛 */
.cases-age-filter { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cases-age-filter label { font-size: 12.5px; color: var(--text-lt); }
.cases-age-select {
  padding: 6px 12px; border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 13px; color: var(--text-mid); background: var(--ivory);
  cursor: pointer; outline: none; font-family: var(--font-body);
}
.cases-age-select:focus { border-color: var(--green); }

/* ── 案例主体 ── */
#cases-body { padding: 64px 0 100px; background: var(--ivory); }

/* 精选大案例（横向） */
.case-featured-wrap { margin-bottom: 40px; }
.case-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.case-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cf-img-wrap { position: relative; overflow: hidden; }
.cf-img {
  width: 100%; height: 100%; object-fit: cover; min-height: 320px;
  display: block; transition: transform 0.5s;
}
.case-featured:hover .cf-img { transform: scale(1.04); }
.cf-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  padding: 5px 14px; background: var(--gold); color: #fff;
  font-size: 12px; border-radius: 20px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.cf-body {
  padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.cf-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.cf-tag {
  padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
  background: var(--green-pale); color: var(--green);
}
.cf-tag.gold { background: var(--gold-pale); color: var(--gold); }
.cf-title {
  font-family: var(--font-sc); font-size: 24px; font-weight: 600;
  color: var(--text-dark); line-height: 1.4; margin-bottom: 14px;
}
.cf-quote {
  font-size: 14px; color: var(--text-mid); line-height: 1.9;
  font-style: italic; padding: 16px 20px;
  background: var(--green-pale); border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px; position: relative;
}
.cf-quote::before {
  content: '"'; font-family: var(--font-en); font-size: 48px;
  color: var(--green); position: absolute; top: -8px; left: 14px; line-height: 1;
  opacity: 0.3;
}
.cf-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.cf-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-mid); }
.cf-meta-item .mi { font-size: 15px; }
.cf-result {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--gold-pale); border-radius: var(--radius-md);
  font-size: 14px; color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.cf-result .ri { font-size: 20px; }
.cf-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--green); font-weight: 500;
  transition: gap 0.2s;
}
.cf-link:hover { gap: 10px; }

/* 普通案例网格 */
.cases-grid-wrap { }
.cases-grid-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.cases-count { font-size: 13.5px; color: var(--text-lt); }
.cases-count span { color: var(--green); font-weight: 600; }
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
/* 案例卡 */
.case-item {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.case-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.ci-img-wrap { position: relative; overflow: hidden; }
.ci-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.case-item:hover .ci-img { transform: scale(1.05); }
.ci-service-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 3px 11px; border-radius: 20px; font-size: 11.5px; font-weight: 500; color: #fff;background:var(--green);
}
.ci-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.ci-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.ci-profile { display: flex; align-items: center; gap: 10px; }
.ci-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold-pale); flex-shrink: 0;
}
.ci-name { font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
.ci-from { font-size: 11.5px; color: var(--text-lt); margin-top: 1px; }
.ci-stars { font-size: 12px; color: var(--gold); letter-spacing: 1px; flex-shrink: 0; }
.ci-title {
  font-family: var(--font-sc); font-size: 16px; font-weight: 600;
  color: var(--text-dark); line-height: 1.5; margin-bottom: 10px;
  transition: color 0.2s;
}
.ci-avatar-text {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1A5C52;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}
.case-item:hover .ci-title { color: var(--green); }
.ci-story {
  font-size: 13px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ci-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ci-tag {
  padding: 2px 9px; font-size: 11.5px; border-radius: 20px;
  background: var(--green-pale); color: var(--green);
}
.ci-result-bar {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: var(--gold-pale); border-radius: var(--radius-sm);
  font-size: 12.5px; color: var(--gold); font-weight: 500;
  margin-bottom: 14px;
}
.ci-result-bar .rbi { font-size: 15px; }
.ci-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.ci-date { font-size: 11.5px; color: var(--text-lt); }
.ci-more { font-size: 13px; color: var(--green); font-weight: 500; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.case-item:hover .ci-more { gap: 8px; }

/* 无结果 */
.cases-no-result {
  grid-column: 1/-1; text-align: center; padding: 60px 0;
  color: var(--text-lt); font-size: 15px; display: none;
}
.cases-no-result.show { display: block; }

/* ── 数据洞察带 ── */
#cases-insight {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
}
.insight-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.insight-text .section-tag   { color: var(--gold-lt); }
.insight-text .section-tag::before,
.insight-text .section-tag::after { background: var(--gold-lt); }
.insight-text .section-title { color: #fff; margin-bottom: 14px; }
.insight-text .section-desc  { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: none; }
.insight-text .gold-line     { margin-bottom: 20px; }
.insight-text .btn-primary{ margin-top:8px}
/* 年龄段分布图 */
.insight-chart { }
.insight-chart-title { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; letter-spacing: 0.5px; }
.insight-bars { display: flex; flex-direction: column; gap: 16px; }
.ib-item { }
.ib-head { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 7px; }
.ib-head .pct { color: var(--gold-lt); font-weight: 600; font-family: var(--font-en); }
.ib-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.ib-fill  {
  height: 100%; border-radius: 4px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
/* 服务分布饼图文字版 */
.insight-pie-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.ip-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
}
.ip-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ip-label { font-size: 12.5px; color: rgba(255,255,255,0.75); }
.ip-val   { font-size: 13px; color: var(--gold-lt); font-weight: 600; margin-left: auto; }

/* ── 提交案例 CTA ── */
#cases-submit-cta {
  padding: 60px 0; background: var(--green-pale);
}
.csc-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.csc-text h3 { font-family: var(--font-sc); font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.csc-text p  { font-size: 14px; color: var(--text-mid); line-height: 1.7; max-width: 540px; }
.csc-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ===================================================
   就医环境页面
=================================================== */

/* ── Hero ── */
#env-hero {
  background-image: 
    linear-gradient(135deg, rgba(12,53,48,0.92) 0%, rgba(15,90,70,0.88) 50%, rgba(31,107,94,0.92) 100%),
    url('../images/fP8c6pSraQDGECGr.jpg') !important;
  background-position: center center !important;
  background-size: auto, cover !important;
  background-repeat: no-repeat !important;
}
#env-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 75% 50%, rgba(212,175,90,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 300px 300px at 5% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
#env-hero::after {
  content: 'FACILITY';
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en); font-size: 160px; font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 10px;
  pointer-events: none; user-select: none; line-height: 1;
}
.env-hero-inner {
  position: relative; z-index: 2;
  padding: 80px 0;text-align: center;
}
.env-hero-inner .section-tag { color: var(--gold-lt); margin-bottom: 20px; }
.env-hero-inner .section-tag::before,
.env-hero-inner .section-tag::after { background: var(--gold-lt); }
.env-hero-title {
  font-family: var(--font-sc);
  font-size: 50px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 20px;
}
.env-hero-title em { font-style: normal; color: var(--gold-lt); }
.env-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.7);
  line-height: 1.9; max-width: 540px; margin: 22px auto 36px;
}
.env-hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;justify-content: center;
}
.env-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; font-size: 13px;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.env-hero-tag span { color: var(--gold-lt); font-size: 15px; }

/* 面包屑 */
.breadcrumb-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-lt); }
.breadcrumb-bar a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--green); }
.breadcrumb-bar span.sep { color: var(--border); }
.breadcrumb-bar span.cur { color: var(--green); font-weight: 500; }

/* ── Tab 导航 ── */
#env-tabs {
  position: sticky; top: 76px; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,92,82,0.06);
}
.env-tabs-inner {
  display: flex; gap: 0;
}
.env-tab {
  padding: 18px 32px;
  font-size: 14px; font-weight: 500;
  color: var(--text-mid); cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.env-tab:hover { color: var(--green); }
.env-tab.active { color: var(--green); border-bottom-color: var(--gold); }
.env-tab-icon { font-size: 16px; }

/* ── 通用 section 间距 ── */
.env-section { padding: 90px 0; }
.env-section-alt { background: var(--white); }

/* ── 区块标题 ── */
.env-header { margin-bottom: 56px; }
.env-header.center { text-align: center; }
.env-header.center .section-tag { justify-content: center; }
.env-header .section-desc { max-width: 600px; }
.env-header.center .section-desc { margin: 0 auto; text-align: center; }

/* ── 概览数据条 ── */
#env-overview {
  padding: 56px 0;
  background: var(--green);
  position: relative; overflow: hidden;
}
#env-overview::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 70% 50%, rgba(212,175,90,0.1) 0%, transparent 60%);
}
.overview-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.overview-item {
  text-align: center; padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.overview-item:last-child { border-right: none; }
.overview-num {
  font-family: var(--font-en); font-size: 42px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 6px;
}
.overview-num sup { font-size: 20px; vertical-align: super; }
.overview-label { font-size: 12.5px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ── 大厅 & 接待区 ── */
#env-lobby { background: var(--ivory); }
.lobby-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.lobby-content { padding-right: 20px; }
.lobby-content .section-title { margin-bottom: 20px; }
.lobby-text { font-size: 15px; color: var(--text-mid); line-height: 2; margin-bottom: 16px; }
.lobby-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lobby-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: var(--transition);
}
.lobby-feature:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.lf-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.lf-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.lf-text p  { font-size: 13px; color: var(--text-lt); line-height: 1.6; margin: 0; }
/* 右侧图片网格 */
.lobby-imgs {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 12px; height: 520px;
}
.lobby-img-main {
  grid-row: span 2;
  border-radius: var(--radius-lg); overflow: hidden;
}
.lobby-img-main img,
.lobby-img-sm img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.lobby-img-main:hover img,
.lobby-img-sm:hover img { transform: scale(1.05); }
.lobby-img-sm {
  border-radius: var(--radius-md); overflow: hidden;
}

/* ── 诊室 & VIP区 ── */
#env-clinic { background: var(--white); }
.clinic-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.clinic-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ivory);
  transition: var(--transition);
}
.clinic-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.clinic-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.clinic-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.clinic-card:hover .clinic-card-img img { transform: scale(1.06); }
.clinic-card-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 20px;
  background: var(--green); color: #fff;
  font-size: 11.5px; font-weight: 500;
}
.clinic-card-badge-gold{background: var(--gold);}
.clinic-card-body { padding: 24px 22px; }
.clinic-card-title {
  font-family: var(--font-sc); font-size: 17px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.clinic-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.clinic-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.clinic-card-tag {
  padding: 3px 10px; border-radius: 3px;
  background: var(--green-pale); color: var(--green); font-size: 11.5px;
}

/* ── 实验室 ── */
#env-lab { background: var(--ivory); }
.lab-hero-img {
  width: 100%; aspect-ratio: 21/8; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 60px; position: relative;
}
.lab-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.lab-hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,40,35,0.6) 0%, transparent 50%);
  display: flex; align-items: center; padding: 0 60px;
}
.lab-hero-text { max-width: 440px; }
.lab-hero-text h3 {
  font-family: var(--font-sc); font-size: 32px; font-weight: 700;
  color: #fff; margin-bottom: 14px; line-height: 1.3;
}
.lab-hero-text h3 em { font-style: normal; color: var(--gold-lt); }
.lab-hero-text p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.9; }

/* 实验室特色列表 */
.lab-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.lab-feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition); position: relative; overflow: hidden;
}
.lab-feature-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--green), var(--green-lt));
  transform: scaleY(0); transition: transform 0.3s;
}
.lab-feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.lab-feature-card:hover::before { transform: scaleY(1); }
.lab-feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--green-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.lab-feature-body h4 {
  font-family: var(--font-sc); font-size: 16px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.lab-feature-body p {
  font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin: 0;
}
.lab-feature-body .lf-cert {
  display: inline-block; margin-top: 10px;
  padding: 2px 10px; border-radius: 3px;
  background: var(--gold-pale); color: var(--gold);
  font-size: 11.5px; font-weight: 500;
}

/* 实验室图片瀑布 */
.lab-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.lab-gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.lab-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.lab-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.lab-gallery-item:hover img { transform: scale(1.07); }
.lab-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,35,0.65) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.lab-gallery-item:hover .lab-gallery-overlay { opacity: 1; }
.lab-gallery-label {
  font-size: 13px; color: #fff; font-family: var(--font-sc);
}

/* ── 认证标准 ── */
#env-standards {
  background: var(--green);
  padding: 90px 0;
  position: relative; overflow: hidden;
}
#env-standards::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 60%);
}
.standards-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.standards-header .section-tag { color: var(--gold-lt); justify-content: center; }
.standards-header .section-tag::before,
.standards-header .section-tag::after { background: var(--gold-lt); }
.standards-header .section-title { color: #fff; }
.standards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.standard-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 30px 24px;
  text-align: center; backdrop-filter: blur(8px);
  transition: var(--transition);
}
.standard-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(212,175,90,0.5);
  transform: translateY(-5px);
}
.standard-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,90,0.2), rgba(212,175,90,0.05));
  border: 1.5px solid rgba(212,175,90,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px;
}
.standard-name {
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  color: var(--gold-lt); margin-bottom: 6px; letter-spacing: 1px;
}
.standard-desc { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── 手术室 & 设备 ── */
#env-equipment { background: var(--white); }
.equipment-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.equipment-imgs {
  position: relative;
}
.equipment-img-main {
  width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.equipment-img-main img { width: 100%; height: 100%; object-fit: cover; }
.equipment-img-float {
  position: absolute; bottom: -28px; right: -28px;
  width: 200px; border-radius: var(--radius-md);
  overflow: hidden; border: 4px solid var(--ivory);
  box-shadow: var(--shadow-md);
}
.equipment-img-float img { width: 100%; display: block; }
.equipment-content { padding-left: 10px; }
.equipment-content .section-title { margin-bottom: 20px; }
.equipment-text { font-size: 15px; color: var(--text-mid); line-height: 2; margin-bottom: 28px; }
.equipment-list { display: flex; flex-direction: column; gap: 12px; }
.equipment-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: var(--transition);
}
.equipment-content .equipment-list{ gap: 8px;}
.equipment-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.ei-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.ei-name { font-size: 14px; font-weight: 500; color: var(--text-dark); flex: 1; }
.ei-badge {
  font-size: 11.5px; color: var(--green); background: var(--green-pale);
  padding: 2px 8px; border-radius: 3px;
}

/* ── 患者服务区 ── */
#env-service { background: var(--ivory); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 60px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.service-card-img {
  width: 100%; aspect-ratio: 3/2; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px 22px; }
.service-card-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.service-card-title {
  font-family: var(--font-sc); font-size: 17px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.service-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }

/* 中文服务横幅 */
.cn-service-banner {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  border-radius: var(--radius-lg); padding: 48px 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center; position: relative; overflow: hidden;
}
.cn-service-banner::before {
  content: '中';
  position: absolute; right: 180px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sc); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none;
}
.csb-content { position: relative; z-index: 1; }
.csb-content h3 {
  font-family: var(--font-sc); font-size: 28px; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.csb-content h3 em { font-style: normal; color: var(--gold-lt); }
.csb-content p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; margin: 0; }
.csb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.csb-tag {
  padding: 5px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.csb-action { position: relative; z-index: 1; }
.csb-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--gold);
  color: #fff; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  white-space: nowrap; transition: var(--transition);
}
.csb-btn:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.4); }

/* ── 全景图展示 ── */
#env-panorama { background: var(--white); padding: 90px 0; }
.panorama-header { text-align: center; margin-bottom: 48px; }
.panorama-header .section-tag { justify-content: center; }
.panorama-main {
  width: 100%; aspect-ratio: 21/8;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
}
.panorama-main img { width: 100%; height: 100%; object-fit: cover; }
.panorama-main-label {
  position: absolute; bottom: 20px; left: 24px;
  background: rgba(10,40,35,0.75); backdrop-filter: blur(6px);
  padding: 8px 18px; border-radius: 20px;
  font-size: 13px; color: #fff; border: 1px solid rgba(255,255,255,0.15);
}
.panorama-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.panorama-thumb {
  aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
  border: 2px solid transparent; transition: var(--transition);
}
.panorama-thumb.active { border-color: var(--gold); }
.panorama-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.panorama-thumb:hover img { transform: scale(1.08); }
.panorama-thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,40,35,0.7) 0%, transparent 100%);
  padding: 10px 10px 8px;
  font-size: 11.5px; color: rgba(255,255,255,0.9); text-align: center;
}

/* ── CTA ── */
#env-cta { padding: 90px 0; background: var(--ivory); }
.env-cta-box {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  border-radius: var(--radius-lg); padding: 64px 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.env-cta-box::after {
  content: 'LRC';
  position: absolute; right: 30px; bottom: -20px;
  font-family: var(--font-en); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
}
.env-cta-content { position: relative; z-index: 1; }
.env-cta-content .section-tag { color: var(--gold-lt); }
.env-cta-content .section-tag::before,
.env-cta-content .section-tag::after { background: var(--gold-lt); }
.env-cta-title {
  font-family: var(--font-sc); font-size: 34px; font-weight: 700;
  color: #fff; line-height: 1.3; margin: 14px 0 12px;
}
.env-cta-title em { font-style: normal; color: var(--gold-lt); }
.env-cta-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.env-cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px; min-width: 200px;
}
.env-cta-btn-main {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: var(--gold); color: #fff;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.env-cta-btn-main:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.4); }
.env-cta-btn-sec {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; background: transparent;
  color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm); font-size: 14px;
  transition: var(--transition); white-space: nowrap;
}
.env-cta-btn-sec:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }


/* =============================================
   实验室设备页
   ============================================= */

/* ── Hero ── */
#lab-hero {
  padding: 0;
  background: 
    linear-gradient(90deg, rgba(10,40,32,0.92) 0%, rgba(10,40,32,0.55) 60%, rgba(10,40,32,0.2) 100%),
    url('../images/k9Nqk5hb8Vhz5WBy.jpg') center center / cover no-repeat;
  position: relative; overflow: hidden; min-height: 580px;
  display: flex; align-items: center;
}
.lab-hero-inner {
  position: relative; z-index: 2; padding: 80px 0;
  max-width: 640px;
}
.lab-hero-inner .section-tag   { color: var(--gold-lt); }
.lab-hero-inner .section-tag::before,
.lab-hero-inner .section-tag::after { background: var(--gold-lt); }
.lab-hero-inner .section-title { color: #fff; font-size: 44px; margin-bottom: 18px; }
.lab-hero-inner .section-desc  { color: rgba(255,255,255,0.72); max-width: none; margin-bottom: 36px; }
.lab-hero-inner .gold-line     { margin-bottom: 20px; }
.lab-hero-inner .lab-hero-btns{ display:flex;gap:14px}
/* 认证徽章组 */
.lab-cert-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.lcb {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px; font-size: 12.5px; color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.lcb:hover { background: rgba(212,175,90,0.2); border-color: rgba(212,175,90,0.4); }
.lcb .lcb-icon { font-size: 15px; }

/* ── 核心数据带 ── */
#lab-stats {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-lt) 100%);
}
.lab-stats-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.lsi {
  padding: 30px 20px; text-align: center; color: #fff;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.lsi:hover { background: rgba(255,255,255,0.07); }
.lsi-num {
  font-family: var(--font-en); font-size: 38px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 5px;
}
.lsi-num sup { font-size: 18px; vertical-align: super; }
.lsi-label { font-size: 12.5px; color: rgba(255,255,255,0.72); letter-spacing: 0.5px; }

/* ── 版块通用标题 ── */
.lab-section { padding: 90px 0; }
.lab-section:nth-child(even) { background: var(--white); }
.lab-section:nth-child(odd)  { background: var(--ivory); }
.lab-sec-header { text-align: center; margin-bottom: 56px; }
.lab-sec-header .gold-line { margin: 0 auto 24px; }
.lab-sec-header .section-desc { margin: 0 auto; }

/* ── 核心设备展示 ── */
.equipment-list { display: flex; flex-direction: column; gap: 48px; }
/* 左图右文 / 左文右图交替 */
.eq-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.eq-item.eq-reverse { direction: rtl; }
.eq-item.eq-reverse > * { direction: ltr; }
/* 图片区 */
.eq-img-wrap { position: relative; }
.eq-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: block;
  aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s;
}
.eq-item:hover .eq-img { transform: scale(1.02); }
.eq-img-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.eq-badge {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: var(--gold); color: #fff; border-radius: var(--radius-md);
  padding: 10px 18px; font-size: 12px; font-weight: 600;
  box-shadow: var(--shadow-md); text-align: center; line-height: 1.4;
}
/* 文字区 */
.eq-content { }
.eq-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  padding: 4px 14px; background: var(--green-pale);
  border-radius: 20px; font-size: 12px; color: var(--green); font-weight: 500;
}
.eq-title {
  font-family: var(--font-sc); font-size: 26px; font-weight: 600;
  color: var(--text-dark); line-height: 1.35; margin-bottom: 6px;
}
.eq-subtitle { font-size: 13.5px; color: var(--green); font-weight: 500; margin-bottom: 16px; letter-spacing: 0.5px; }
.eq-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
/* 技术参数列表 */
.eq-specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.eq-spec {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px;
  background: var(--ivory); border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold); font-size: 13.5px;
}
.eq-spec .spec-label { color: var(--text-lt); flex-shrink: 0; min-width: 100px; font-size: 12.5px; }
.eq-spec .spec-val   { color: var(--text-dark); font-weight: 500; line-height: 1.5; }
/* 优势标签 */
.eq-advantages { display: flex; flex-wrap: wrap; gap: 8px; }
.eq-adv {
  padding: 4px 12px; font-size: 12px; border-radius: 20px;
  background: var(--green-pale); color: var(--green); border: 1px solid rgba(26,92,82,0.15);
}

/* ── 实验室环境展示（画廊）── */
.lab-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.lg-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.lg-item:first-child { grid-row: 1 / 3; }
.lg-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.lg-item:hover .lg-img { transform: scale(1.06); }
.lg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,92,82,0.6) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.lg-item:hover .lg-overlay { opacity: 1; }
.lg-label { font-size: 13px; color: #fff; font-weight: 500; }
.lg-more-btn {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  padding: 8px 20px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
  border-radius: 20px; font-size: 13px; backdrop-filter: blur(4px);
  transition: var(--transition);
}
.lg-more-btn:hover { background: var(--gold); border-color: var(--gold); }

/* ── 质控流程 ── */
.qc-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.qc-flow::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 0;
}
.qc-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.qcs-circle {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,92,82,0.3); border: 4px solid var(--white);
}
.qcs-num   { font-family: var(--font-en); font-size: 10px; color: rgba(255,255,255,0.6); line-height: 1; }
.qcs-emoji { font-size: 22px; line-height: 1; }
.qcs-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.qcs-desc  { font-size: 12.5px; color: var(--text-lt); line-height: 1.65; }

/* ── 认证与奖项 ── */
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px;
  border: 1px solid var(--border); text-align: center;
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.cert-icon { font-size: 40px; margin-bottom: 14px; }
.cert-name { font-family: var(--font-sc); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; line-height: 1.4; }
.cert-org  { font-size: 12px; color: var(--text-lt); line-height: 1.5; margin-bottom: 10px; }
.cert-year { display: inline-block; padding: 2px 10px; background: var(--gold-pale); color: var(--gold); font-size: 12px; border-radius: 20px; font-weight: 500; }

/* ── 技术对比表 ── */
.compare-table-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead th {
  padding: 16px 20px; font-size: 13.5px; font-weight: 600; text-align: center;
}
.compare-table thead th:first-child { text-align: left; background: var(--ivory); }
.compare-table thead th.th-lrc { background: var(--green); color: #fff; }
.compare-table thead th.th-avg { background: var(--gold-pale); color: var(--gold); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--green-pale); }
.compare-table tbody td { padding: 14px 20px; font-size: 13.5px; text-align: center; }
.compare-table tbody td:first-child { text-align: left; color: var(--text-dark); font-weight: 500; }
.compare-table .val-lrc  { color: var(--green); font-weight: 700; font-size: 15px; }
.compare-table .val-avg  { color: var(--text-lt); }
.compare-table .val-icon { font-size: 16px; }

/* ── 预约实验室参观 ── */
#lab-visit {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, #0E3D35 100%);
  position: relative; overflow: hidden;
}
#lab-visit::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.lab-visit-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.lv-text .section-tag   { color: var(--gold-lt); }
.lv-text .section-tag::before,
.lv-text .section-tag::after { background: var(--gold-lt); }
.lv-text .section-title { color: #fff; margin-bottom: 14px; }
.lv-text .section-desc  { color: rgba(255,255,255,0.72); max-width: none; margin-bottom: 28px; }
.lv-text .gold-line     { margin-bottom: 20px; }
.lv-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.lv-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.lv-feat .lf-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(212,175,90,0.2); border: 1px solid rgba(212,175,90,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.lv-form-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 36px;
  backdrop-filter: blur(8px);
}
.lv-form-card h4 { font-family: var(--font-sc); font-size: 20px; color: #fff; margin-bottom: 6px; }
.lv-form-card p  { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.lv-form-group { margin-bottom: 14px; }
.lv-form-group input,
.lv-form-group select {
  width: 100%; padding: 11px 16px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); color: #fff; font-size: 14px;
  font-family: var(--font-body); outline: none; transition: border-color 0.2s;
}
.lv-form-group input::placeholder { color: rgba(255,255,255,0.4); }
.lv-form-group input:focus,
.lv-form-group select:focus { border-color: var(--gold-lt); }
.lv-form-group select { color: rgba(255,255,255,0.7); }
.lv-form-group select option { color: var(--text-dark); background: #fff; }
.lv-submit {
  width: 100%; padding: 13px; background: var(--gold); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
  margin-top: 4px;
}
.lv-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,151,58,0.4); }

/* ===================================================
   温和刺激套餐页 - 专属样式
=================================================== */

/* ── Hero ── */
#gentle-hero {
  position: relative;
  min-height: 380px;
  background: 
    linear-gradient(135deg, rgba(15,74,63,0.88) 0%, rgba(14,61,53,0.92) 100%),
    url('../images/mrthTdHdZO3W9gRs.jpg') center center / cover no-repeat;
  display: flex; align-items: center; overflow: hidden;
}
#gentle-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(212,175,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}
#gentle-hero::after {
  content: 'GENTLE';
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en); font-size: 150px; font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 10px;
  pointer-events: none; user-select: none; line-height: 1;
}
.gentle-hero-inner {
  position: relative; z-index: 2; padding: 70px 0;
}
.gentle-hero-inner .section-tag { color: var(--gold-lt); margin-bottom: 16px; }
.gentle-hero-inner .section-tag::before,
.gentle-hero-inner .section-tag::after { background: var(--gold-lt); }
.gentle-hero-title {
  font-family: var(--font-sc); font-size: 46px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.gentle-hero-title em { font-style: normal; color: var(--gold-lt); }
.gentle-hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.7);
  font-family: var(--font-sc); letter-spacing: 2px;
}

/* 面包屑 */
.breadcrumb-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-lt); }
.breadcrumb-bar a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--green); }
.breadcrumb-bar span.sep { color: var(--border); }
.breadcrumb-bar span.cur { color: var(--green); font-weight: 500; }

/* ── Tab 导航 ── */
#gentle-tabs {
  position: sticky; top: 76px; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,92,82,0.06);
}
.gentle-tabs-inner { display: flex; }
.gentle-tab {
  padding: 16px 28px; font-size: 14px; font-weight: 500;
  color: var(--text-mid); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: var(--transition); white-space: nowrap;
}
.gentle-tab:hover { color: var(--green); }
.gentle-tab.active { color: var(--green); border-bottom-color: var(--gold); }

/* ── 通用版块 ── */
.gentle-section { padding: 80px 0; }
.gentle-section-ivory { background: var(--ivory); }
.gentle-section-white { background: var(--white); }

.gentle-header { margin-bottom: 48px; }
.gentle-header .section-desc { max-width: 680px; }

/* ── 方案介绍 ── */
.intro-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.intro-text { font-size: 15px; color: var(--text-mid); line-height: 2; margin-bottom: 20px; }
.intro-note {
  background: var(--green-pale); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px; margin-top: 8px;
}
.intro-note-title {
  font-size: 14px; font-weight: 600; color: var(--green);
  margin-bottom: 8px;
}
.intro-note p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin: 0; }

/* 右侧核心优势卡 */
.intro-advantages {
  display: flex; flex-direction: column; gap: 14px;
}
.intro-adv-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  transition: var(--transition);
}
.intro-adv-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.iac-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.iac-body h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.iac-body p  { font-size: 13px; color: var(--text-lt); line-height: 1.7; margin: 0; }

/* ── 方案特点 ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-lt));
  transform: scaleX(0); transition: transform 0.35s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-pale); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 20px; font-weight: 700;
  color: var(--green);
}
.feature-title {
  font-family: var(--font-sc); font-size: 16px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.feature-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }

/* 核心理念引用块 */
.philosophy-block {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  border-radius: var(--radius-lg); padding: 48px 56px;
  position: relative; overflow: hidden;
}
.philosophy-block::before {
  content: '"';
  position: absolute; top: -20px; left: 36px;
  font-family: var(--font-en); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.05); line-height: 1;
  pointer-events: none;
}
.philosophy-block p {
  font-family: var(--font-sc); font-size: 18px; color: #fff;
  line-height: 2; margin: 0; position: relative; z-index: 1;
}
.philosophy-block p em { font-style: normal; color: var(--gold-lt); }

/* ── 适用人群 ── */
.groups-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-bottom: 36px;
}
.group-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: var(--transition);
}
.group-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.group-title {
  font-family: var(--font-sc); font-size: 16px; font-weight: 600;
  color: var(--green); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.group-title::before {
  content: '';
  width: 4px; height: 16px; background: var(--gold);
  border-radius: 2px; flex-shrink: 0;
}
.group-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; }

/* ── 套餐详情 ── */
#gentle-packages { background: var(--ivory); }
.packages-intro { font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-bottom: 48px; }
.packages-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  align-items: start;
}
.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); }
.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(184,151,58,0.15);
}
.pkg-header {
  padding: 32px 28px 24px;
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
}
.pkg-card.featured .pkg-header {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
}
.pkg-name {
  font-family: var(--font-sc); font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.pkg-card.featured .pkg-name { color: #fff; }
.pkg-badge {
  display: inline-block; padding: 3px 10px;
  background: var(--gold); color: #fff;
  border-radius: 20px; font-size: 11.5px; font-weight: 500;
}
.pkg-price-wrap { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pkg-price {
  font-family: var(--font-en); font-size: 46px; font-weight: 700;
  color: var(--green); line-height: 1;
}
.pkg-card.featured .pkg-price { color: var(--gold-lt); }
.pkg-price-unit { font-size: 16px; color: var(--text-mid); }
.pkg-card.featured .pkg-price-unit { color: rgba(255,255,255,0.65); }
.pkg-duration { font-size: 13px; color: var(--text-lt); }
.pkg-card.featured .pkg-duration { color: rgba(255,255,255,0.55); }

/* 套餐亮点标签 */
.pkg-highlights {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 16px 28px; border-bottom: 1px solid var(--border);
  background: var(--ivory);
}
.pkg-card.featured .pkg-highlights { background: rgba(26,92,82,0.04); }
.pkg-hl {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--green); font-weight: 500;
}
.pkg-hl::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* 套餐内容 */
.pkg-body { padding: 24px 28px; }
.pkg-section-title {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  letter-spacing: 0.5px; margin: 20px 0 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.pkg-section-title:first-child { margin-top: 0; }
.pkg-items { list-style: none; padding: 0; margin: 0 0 4px; display: flex; flex-direction: column; gap: 7px; }
.pkg-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--text-mid); line-height: 1.6;
}
.pkg-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-lt); flex-shrink: 0; margin-top: 6px;
}
.pkg-item strong { color: var(--text-dark); }

/* 备注 */
.pkg-notes {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 18px 20px; margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.pkg-notes-title {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.pkg-note {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--text-lt); line-height: 1.65;
}
.pkg-note-num {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--border); color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; flex-shrink: 0; margin-top: 1px;
}

/* 套餐按钮 */
.pkg-btn {
  display: flex; align-items: center; justify-content: center;
  margin: 24px 28px 28px; padding: 14px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  transition: var(--transition); text-align: center;
}
.pkg-btn-default {
  background: var(--green-pale); color: var(--green);
  border: 1.5px solid var(--green);
}
.pkg-btn-default:hover { background: var(--green); color: #fff; }
.pkg-btn-featured {
  background: var(--gold); color: #fff;
}
.pkg-btn-featured:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.35); }

/* ── 方案对比表 ── */
#gentle-comparison { background: var(--white); }
.comparison-intro { font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-bottom: 32px; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 36px;
}
.comparison-table thead tr {
  background: var(--green);
}
.comparison-table thead th {
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  color: #fff; text-align: center;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody tr:nth-child(odd) { background: var(--ivory); }
.comparison-table tbody tr:nth-child(even) { background: var(--white); }
.comparison-table tbody tr:hover { background: var(--green-pale); }
.comparison-table td {
  padding: 14px 20px; font-size: 13.5px; color: var(--text-mid);
  border-bottom: 1px solid var(--border); text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text-dark); }
.comparison-table td.featured-cell {
  color: var(--green); font-weight: 600;
}
.comparison-table td.featured-cell::before { content: '✓ '; color: var(--gold); }

/* 选择建议 */
.choice-note {
  background: var(--green-pale); border: 1px solid rgba(26,92,82,0.15);
  border-radius: var(--radius-lg); padding: 28px 32px;
}
.choice-note-title {
  font-family: var(--font-sc); font-size: 16px; font-weight: 600;
  color: var(--green); margin-bottom: 12px;
}
.choice-note p { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin: 0; }
.choice-note strong { color: var(--green); }

/* ── 为何选择LRC ── */
#gentle-why {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
#gentle-why::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 60%);
}
.why-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.why-header .section-tag { color: var(--gold-lt); justify-content: center; }
.why-header .section-tag::before,
.why-header .section-tag::after { background: var(--gold-lt); }
.why-header .section-title { color: #fff; }
.why-text {
  font-size: 15px; color: rgba(255,255,255,0.72);
  line-height: 2; text-align: center; max-width: 700px;
  margin: 0 auto 48px; position: relative; z-index: 1;
}
.why-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; z-index: 1;
}
.why-stat {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.why-stat:last-child { border-right: none; }
.why-stat-num {
  font-family: var(--font-en); font-size: 44px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 6px;
}
.why-stat-num sup { font-size: 20px; vertical-align: super; }
.why-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.6); }

/* ── CTA ── */
#gentle-cta { padding: 80px 0; background: var(--ivory); }
.gentle-cta-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px 64px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  box-shadow: var(--shadow-md);
}
.gentle-cta-title {
  font-family: var(--font-sc); font-size: 28px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.3;
}
.gentle-cta-title em { font-style: normal; color: var(--green); }
.gentle-cta-sub { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.gentle-cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 190px; }
.gcta-btn-main {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px; background: var(--gold); color: #fff;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.gcta-btn-main:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.35); }
.gcta-btn-sec {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 28px; background: var(--green-pale); color: var(--green);
  border: 1.5px solid var(--green); border-radius: var(--radius-sm);
  font-size: 14px; transition: var(--transition); white-space: nowrap;
}
.gcta-btn-sec:hover { background: var(--green); color: #fff; }

/* ===================================================
   来院指南页
=================================================== */

/* ── Hero ── */
#guide-hero {
  position: relative;
  min-height: 340px;
  background: 
    linear-gradient(135deg, rgba(12,53,48,0.90) 0%, rgba(15,90,70,0.85) 50%, rgba(31,107,94,0.90) 100%),
    url('../images/GdKeTJb5G6Suljoq.jpg') center center / cover no-repeat;
  display: flex; align-items: center; overflow: hidden;
}
#guide-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(212,175,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}
#guide-hero::after {
  content: 'GUIDE';
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en); font-size: 150px; font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 10px;
  pointer-events: none; user-select: none; line-height: 1;
}
.guide-hero-inner { position: relative; z-index: 2; padding: 64px 0; }
.guide-hero-inner .section-tag { color: var(--gold-lt); margin-bottom: 16px; }
.guide-hero-inner .section-tag::before,
.guide-hero-inner .section-tag::after { background: var(--gold-lt); }
.guide-hero-title {
  font-family: var(--font-sc); font-size: 44px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.guide-hero-title em { font-style: normal; color: var(--gold-lt); }
.guide-hero-sub { font-size: 15px; color: rgba(255,255,255,0.68); }

/* ── 位置速览 ── */
#guide-overview {
  padding: 48px 0;
  background: var(--green);
  position: relative; overflow: hidden;
}
#guide-overview::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 500px 300px at 70% 50%, rgba(212,175,90,0.1) 0%, transparent 60%);
}
.overview-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.overview-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.overview-card:last-child { border-right: none; }
.oc-icon {
  font-size: 28px; flex-shrink: 0;
}
.oc-label { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.oc-val { font-size: 14px; color: #fff; font-weight: 500; line-height: 1.4; }
.oc-val em { font-style: normal; color: var(--gold-lt); }

/* ── 主内容区 ── */
#guide-main { padding: 80px 0; background: var(--ivory); }
.guide-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start;
}

/* 侧边目录 */
.guide-sidebar {
  position: sticky; top: 100px;
}
.guide-sidebar-title {
  font-size: 11px; font-weight: 700; color: var(--text-lt);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.guide-nav { display: flex; flex-direction: column; gap: 2px; }
.guide-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; color: var(--text-mid); cursor: pointer;
  transition: var(--transition); border-left: 2px solid transparent;
}
.guide-nav-item:hover { color: var(--green); background: var(--white); }
.guide-nav-item.active { color: var(--green); background: var(--white); border-left-color: var(--gold); font-weight: 500; }
.guide-nav-item .nav-num {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guide-nav-item.active .nav-num { background: var(--green); color: #fff; }

/* 联系提示卡 */
.guide-contact-card {
  margin-top: 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 16px;
}
.gcc-title { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.gcc-phone {
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  color: var(--green); margin-bottom: 8px;
}
.gcc-note { font-size: 12px; color: var(--text-lt); line-height: 1.6; }
.gcc-pdf {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 10px 12px;
  background: var(--gold-pale); border: 1px solid rgba(184,151,58,0.2);
  border-radius: var(--radius-sm); font-size: 12.5px; color: var(--gold);
  font-weight: 500; transition: var(--transition);
}
.gcc-pdf:hover { background: var(--gold); color: #fff; }

/* ── 方法区块 ── */
.guide-content { min-width: 0; }
.guide-method-block { margin-bottom: 60px; }
.guide-method-block:last-child { margin-bottom: 0; }

.method-header {
  display: flex; align-items: center; gap: 16px;
  background: var(--green); border-radius: var(--radius-md);
  padding: 18px 24px; margin-bottom: 32px;
}
.method-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  color: var(--gold-lt); flex-shrink: 0;
}
.method-title { font-family: var(--font-sc); font-size: 20px; font-weight: 700; color: #fff; }
.method-subtitle { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* 步骤列表 */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 0; position: relative;
}
/* 连接竖线 */
.step-item::before {
  content: '';
  position: absolute; left: 23px; top: 48px; bottom: 0;
  width: 2px; background: var(--border);
}
.step-item:last-child::before { display: none; }

.step-left { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.step-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 16px; font-weight: 700;
  color: var(--text-lt); flex-shrink: 0; z-index: 1;
  transition: var(--transition);
}
.step-item.key-step .step-dot {
  background: var(--green); border-color: var(--green);
  color: #fff; box-shadow: 0 4px 16px rgba(26,92,82,0.3);
}

.step-right { padding: 0 0 40px 20px; }
.step-title {
  font-family: var(--font-sc); font-size: 16px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px; padding-top: 10px;
}
.step-item.key-step .step-title { color: var(--green); }
.step-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }

.step-address {
  display: inline-block; padding: 6px 14px;
  background: var(--green-pale); border: 1px solid rgba(26,92,82,0.15);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--green);
  font-weight: 500; margin-bottom: 12px;
}
.step-highlight {
  font-weight: 600; color: var(--green);
}

/* 步骤图片 */
.step-img-single {
  width: 100%; max-width: 560px; border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 10px;
}
.step-img-single img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}
.step-img-single:hover img { transform: scale(1.03); }
.step-img-caption {
  font-size: 12px; color: var(--text-lt);
  text-align: center; margin-bottom: 10px;
  font-style: italic;
}

.step-img-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; max-width: 560px; margin-bottom: 10px;
}
.step-img-box { border-radius: var(--radius-md); overflow: hidden; }
.step-img-box img { width: 100%; display: block; transition: transform 0.4s; }
.step-img-box:hover img { transform: scale(1.04); }
.step-img-box-caption {
  font-size: 11.5px; color: var(--text-lt);
  text-align: center; padding: 6px 0;
}

/* APP提示块 */
.step-app-note {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 18px;
  margin: 12px 0; max-width: 560px;
}
.step-app-note-title { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.step-app-note ul { padding-left: 18px; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.step-app-note li { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── 分隔线 ── */
.guide-section-divider {
  border: none; border-top: 2px dashed var(--border);
  margin: 60px 0;
}

/* ── 警告提示 ── */
.guide-warning {
  background: #FFF8E1; border: 1px solid #FFD54F;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px; font-size: 13.5px;
  color: #78350F; line-height: 1.8; margin-top: 8px;
}
.guide-warning strong { color: #92400E; }

/* ── 位置总结 ── */
#guide-summary { padding: 80px 0; background: var(--white); }
.summary-header { text-align: center; margin-bottom: 48px; }
.summary-header .section-tag { justify-content: center; }

.summary-photos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.summary-photo { border-radius: var(--radius-md); overflow: hidden; }
.summary-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s; }
.summary-photo:hover img { transform: scale(1.05); }
.summary-photo-caption {
  text-align: center; font-size: 12.5px; color: var(--text-lt);
  padding: 8px 0; font-style: italic;
}

.summary-info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 680px; margin: 0 auto 40px;
}
.summary-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 18px;
  transition: var(--transition);
}
.summary-info-item:hover { border-color: var(--green); }
.sii-icon { font-size: 22px; flex-shrink: 0; }
.sii-label { font-size: 12px; color: var(--text-lt); margin-bottom: 3px; }
.sii-val { font-size: 14px; color: var(--text-dark); font-weight: 500; line-height: 1.4; }
.sii-val em { font-style: normal; color: var(--green); }

/* 地图嵌入 */
.summary-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.summary-map iframe { width: 100%; height: 380px; display: block; border: none; }

/* 温馨提示 */
.summary-tip {
  background: var(--green-pale); border: 1px solid rgba(26,92,82,0.15);
  border-radius: var(--radius-lg); padding: 28px 32px;
}
.summary-tip-title {
  font-size: 14px; font-weight: 600; color: var(--green);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.summary-tip p { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; margin: 0 0 8px; }
.summary-tip p:last-child { margin: 0; }
.summary-tip a { color: var(--green); text-decoration: underline; }
.summary-tip strong { color: var(--text-dark); }

/* ===================================================
   就诊指南页
=================================================== */

/* ── Hero ── */
.guide-hero-inner { position: relative; z-index: 2; padding: 64px 0; }
.guide-hero-inner .section-tag { color: var(--gold-lt); margin-bottom: 16px; }
.guide-hero-inner .section-tag::before,
.guide-hero-inner .section-tag::after { background: var(--gold-lt); }
.guide-hero-title {
  font-family: var(--font-sc); font-size: 46px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.guide-hero-title em { font-style: normal; color: var(--gold-lt); }
.guide-hero-sub { font-size: 15px; color: rgba(255,255,255,0.68); max-width: 480px; line-height: 1.8; }

/* 面包屑 */
.breadcrumb-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-lt); }
.breadcrumb-bar a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--green); }
.breadcrumb-bar .sep { color: var(--border); }
.breadcrumb-bar .cur { color: var(--green); font-weight: 500; }

/* ── 主 Tab 切换（试管 / 冻卵）── */
#main-tabs {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 76px; z-index: 100;
  box-shadow: 0 2px 12px rgba(26,92,82,0.06);
}
.main-tabs-inner {
  display: flex; gap: 0;
}
.main-tab {
  padding: 18px 36px; font-size: 15px; font-weight: 600;
  color: var(--text-mid); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.main-tab:hover { color: var(--green); }
.main-tab.active { color: var(--green); border-bottom-color: var(--gold); }
.main-tab-icon { font-size: 18px; }

/* ── 内容面板 ── */
.guide-panel { display: none; }
.guide-panel.active { display: block; }

/* ── 二级锚点 Tab ── */
.sub-tabs {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 132px; z-index: 99;
}
.sub-tabs-inner { display: flex; gap: 0; }
.sub-tab {
  padding: 13px 24px; font-size: 13.5px; font-weight: 500;
  color: var(--text-mid); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: var(--transition);
}
.sub-tab:hover { color: var(--green); }
.sub-tab.active { color: var(--green); border-bottom-color: var(--green); }

/* ── 通用 section ── */
.gs { padding: 72px 0; scroll-margin-top: 180px; }
.gs-white { background: var(--white); }
.gs-ivory { background: var(--ivory); }
.gs-green { background: var(--green); }

.gs-header { margin-bottom: 40px; }
.gs-header .section-tag { margin-bottom: 10px; }

/* ── 步骤序号大标题 ── */
.step-big-num {
  font-family: var(--font-en); font-size: 80px; font-weight: 700;
  color: var(--green-pale); line-height: 1; margin-bottom: -14px;
  user-select: none;
}

/* ── 检查表格 ── */
.check-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.check-table-wrap { }
.check-table-title {
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.check-table-title .ctt-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); font-size: 13px;
}
.check-table thead tr { background: var(--green); }
.check-table thead th {
  padding: 11px 14px; color: #fff; font-weight: 600;
  text-align: left; white-space: nowrap;
}
.check-table tbody tr:nth-child(odd) { background: var(--ivory); }
.check-table tbody tr:nth-child(even) { background: var(--white); }
.check-table tbody tr:hover { background: var(--green-pale); }
.check-table td {
  padding: 11px 14px; color: var(--text-mid);
  border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.65;
}
.check-table td:first-child { color: var(--text-dark); font-weight: 500; white-space: nowrap; }
.check-table .td-valid { color: var(--green); font-weight: 500; white-space: nowrap; }

/* 单表（冻卵用，3列不分左右） */
.check-tables-single { margin-bottom: 24px; }

/* 补充说明条 */
.check-note {
  background: var(--green-pale); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px; font-size: 13.5px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 14px;
}
.check-note strong { color: var(--green); }
.check-note-gold {
  background: var(--gold-pale); border-left-color: var(--gold);
}
.check-note-gold strong { color: var(--gold); }

/* ── 建档材料 ── */
.docs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.docs-list { display: flex; flex-direction: column; gap: 14px; }
.doc-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 18px;
  transition: var(--transition);
}
.doc-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.doc-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--font-en); font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.doc-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.doc-text p  { font-size: 13px; color: var(--text-lt); margin: 0; line-height: 1.6; }
.docs-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.docs-img-item { border-radius: var(--radius-md); overflow: hidden; height:190px;}
.docs-img-item img { width: 100%; display: block; }
.docs-img-caption {
  text-align: center; font-size: 11.5px; color: var(--text-lt);
  padding: 6px 0; font-style: italic;
}

/* ── 见诊说明卡片 ── */
.consult-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.consult-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  transition: var(--transition);
}
.consult-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.consult-card-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.consult-card-title {
  font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px;
}
.consult-card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
.consult-card-desc strong { color: var(--green); }

/* ── 诊疗流程时间轴 ── */
.timeline-section { padding: 72px 0; scroll-margin-top: 180px; }

/* 流程类型切换（传统/温和）*/
.process-type-tabs {
  display: flex; gap: 8px; margin-bottom: 40px;
}
.ptt-btn {
  padding: 9px 22px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  cursor: pointer; transition: var(--transition);
}
.ptt-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.ptt-btn:hover:not(.active) { border-color: var(--green); color: var(--green); }

.process-panel { display: none; }
.process-panel.active { display: block; }

/* 横向时间轴 */
.htl {
  position: relative;
  padding: 100px 0 56px;
}
/* 中轴线 */
.htl-track {
  display: flex; align-items: center;
  position: relative; margin: 60px 0;
}
.htl-track::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-lt) 100%);
}

/* 节点 */
.htl-nodes {
  display: flex; justify-content: space-between;
  width: 100%; position: relative; z-index: 1;
}
.htl-node {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.htl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green);
  position: relative; z-index: 2; flex-shrink: 0;
}
.htl-node.key .htl-dot {
  width: 48px; height: 48px;
  background: var(--green); border: none;
  box-shadow: 0 4px 16px rgba(26,92,82,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  text-align: center; line-height: 1.2;
}

/* 上方卡片 */
.htl-card-top {
  position: absolute; bottom: calc(100% + 18px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 14px;
  width: 170px; box-shadow: var(--shadow-sm);
  left: 50%; transform: translateX(-50%);
  font-size: 12.5px; color: var(--text-mid); line-height: 1.7;
}
.htl-card-top h4 {
  font-size: 13px; font-weight: 600; color: var(--green);
  margin-bottom: 5px; line-height: 1.3;
}
/* 下方卡片 */
.htl-card-bottom {
  position: absolute; top: calc(100% + 18px);
  background: var(--green-pale); border: 1px solid rgba(26,92,82,0.15);
  border-radius: var(--radius-md); padding: 12px 14px;
  width: 170px;
  left: 50%; transform: translateX(-50%);
  font-size: 12.5px; color: var(--text-mid); line-height: 1.7;
}
.htl-card-bottom h4 {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 5px; line-height: 1.3;
}
/* 连接线 */
.htl-node .htl-line-up,
.htl-node .htl-line-down {
  width: 1px; height: 18px;
  background: var(--green); flex-shrink: 0;
}

/* 流程备注 */
.process-remark {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 22px;
  font-size: 13.5px; color: var(--text-mid); line-height: 1.9;
  margin-top: 40px;
}
.process-remark strong { color: var(--green); }

/* ── 移植流程时间轴（7节点）── */
.transfer-htl .htl-card-top,
.transfer-htl .htl-card-bottom { width: 155px; }

/* ── CTA ── */
#guide-cta { padding: 72px 0; background: var(--ivory); }
.guide-cta-box {
  background: linear-gradient(135deg, var(--green) 0%, #0C3530 100%);
  border-radius: var(--radius-lg); padding: 56px 72px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.guide-cta-box::after {
  content: 'LRC';
  position: absolute; right: 24px; bottom: -20px;
  font-family: var(--font-en); font-size: 180px; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
}
.guide-cta-content { position: relative; z-index: 1; }
.guide-cta-content .section-tag { color: var(--gold-lt); }
.guide-cta-content .section-tag::before,
.guide-cta-content .section-tag::after { background: var(--gold-lt); }
.guide-cta-title {
  font-family: var(--font-sc); font-size: 30px; font-weight: 700;
  color: #fff; margin: 12px 0 10px; line-height: 1.3;
}
.guide-cta-title em { font-style: normal; color: var(--gold-lt); }
.guide-cta-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.guide-cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px; min-width: 190px;
}
.gcta-main {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 26px; background: var(--gold); color: #fff;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.gcta-main:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.35); }
.gcta-sec {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 26px; background: transparent;
  color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm); font-size: 14px;
  transition: var(--transition); white-space: nowrap;
}
.gcta-sec:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* 动画 */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="100"] { transition-delay: 0.1s; }
.fade-up[data-delay="200"] { transition-delay: 0.2s; }
.fade-up[data-delay="300"] { transition-delay: 0.3s; }

/* =============================================
   功能页通用
   ============================================= */

#func-hero {
  padding: 50px 0;
  background: 
    linear-gradient(135deg, rgba(15,74,63,0.88) 0%, rgba(14,61,53,0.92) 100%),
    url('../images/7y4IpJDnef3aEDtz.png') center center / cover no-repeat;
  position: relative; overflow: hidden;
}
#func-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.func-hero-inner { position: relative; z-index: 1; text-align: center; }
.func-hero-inner .section-tag   { color: var(--gold-lt); justify-content: center; }
.func-hero-inner .section-tag::before,
.func-hero-inner .section-tag::after { background: var(--gold-lt); }
.func-hero-inner .section-title { color: #fff; margin: 0 auto 10px; }
.func-hero-inner .section-desc  { color: rgba(255,255,255,0.7); margin: 0 auto; }
.func-hero-inner .gold-line{ margin:16px auto;}

/* ── 404 页 ── */
#page-404 { padding: 100px 0; background: var(--ivory); text-align: center; }
.e404-code {
  font-family: var(--font-en); font-size: 160px; font-weight: 700; line-height: 1;
  color: var(--green-pale); letter-spacing: -8px; margin-bottom: 0;
  position: relative; display: inline-block;
}
.e404-code::after {
  content: '404';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.e404-icon { font-size: 64px; margin: 8px 0 20px; display: block; }
.e404-title { font-family: var(--font-sc); font-size: 30px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.e404-desc  { font-size: 15px; color: var(--text-mid); line-height: 1.8; max-width: 480px; margin: 0 auto 36px; }
.e404-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 60px; }
.e404-link {
  display: flex; align-items: center; gap: 8px; padding: 12px 22px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-mid); background: var(--white);
  transition: var(--transition);
}
.e404-link:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); transform: translateY(-2px); }
.e404-link .el-icon { font-size: 18px; }
/* 搜索框 */
.e404-search { max-width: 440px; margin: 0 auto; }
.e404-search-box {
  display: flex; border: 2px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.e404-search-box:focus-within { border-color: var(--green); }
.e404-search-box input {
  flex: 1; padding: 13px 18px; border: none; outline: none;
  font-size: 14px; font-family: var(--font-body); color: var(--text-dark); background: var(--white);
}
.e404-search-box button {
  padding: 0 20px; background: var(--green); color: #fff; border: none;
  font-size: 15px; cursor: pointer; transition: background 0.2s;
}
.e404-search-box button:hover { background: var(--green-lt); }

/* ── 隐私/免责 正文排版 ── */
#policy-body { padding: 70px 0 100px; background: var(--ivory); }
.policy-layout { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: flex-start; }
/* 右侧目录 sticky */
.policy-sidebar {
  position: sticky; top: 96px;
  max-height: calc(100vh - 110px);
  overflow-y: auto; scrollbar-width: none;
}
.policy-sidebar::-webkit-scrollbar { display: none; }
.policy-toc {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.policy-toc .toc-head { background: var(--green); color: #fff; padding: 15px 20px; font-size: 14px; font-weight: 600; }
/* 正文卡 */
.policy-content {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 48px 52px; box-shadow: var(--shadow-sm);
}
.policy-update {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; background: var(--green-pale);
  border-radius: 20px; font-size: 12.5px; color: var(--green);
  margin-bottom: 32px;
}
.policy-content h2 {
  font-family: var(--font-sc); font-size: 20px; font-weight: 600;
  color: var(--text-dark); margin: 40px 0 14px; padding-left: 14px;
  border-left: 4px solid var(--gold); line-height: 1.4;
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content h3 {
  font-size: 16px; font-weight: 600; color: var(--text-dark); margin: 24px 0 10px;
}
.policy-content p {
  font-size: 14.5px; color: var(--text-mid); line-height: 1.95; margin-bottom: 16px;
}
.policy-content ul, .policy-content ol {
  margin: 0 0 16px 0; padding-left: 20px;
}
.policy-content li {
  font-size: 14.5px; color: var(--text-mid); line-height: 1.9; margin-bottom: 6px;
}
.policy-content ul li::marker { color: var(--gold); }
.policy-content ol li::marker { color: var(--green); font-weight: 600; }
.policy-content strong { color: var(--text-dark); font-weight: 600; }
.policy-content hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.policy-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.policy-tip {
  padding: 16px 20px; border-radius: var(--radius-md); margin: 20px 0;
  display: flex; gap: 12px; font-size: 14px; line-height: 1.8;
  background: var(--green-pale); border-left: 4px solid var(--green); color: var(--text-dark);
}
.policy-tip .tip-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.policy-contact-box {
  margin-top: 40px; padding: 24px 28px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.policy-contact-box h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.policy-contact-box p  { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin: 0; }
.policy-contact-box a  { color: var(--green); font-weight: 500; }

/* ── 站点地图 ── */
#sitemap-body { padding: 70px 0 100px; background: var(--ivory); }
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.sm-block {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.sm-block:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sm-block-head {
  padding: 16px 22px; background: var(--green);
  color: #fff; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.sm-block-head .smh-icon { font-size: 18px; }
.sm-list { padding: 8px 0; }
.sm-list li a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 22px; font-size: 13.5px; color: var(--text-mid);
  transition: var(--transition); border-left: 3px solid transparent;
}
.sm-list li a:hover { color: var(--green); background: var(--green-pale); border-left-color: var(--green); padding-left: 26px; }
.sm-list li a::before { content: '›'; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.sm-list li.sm-sub a { padding-left: 36px; font-size: 13px; color: var(--text-lt); }
.sm-list li.sm-sub a:hover { padding-left: 40px; }
.sm-list li.sm-sub a::before { content: '–'; font-size: 12px; color: var(--text-lt); }
.sm-tips{ margin-top:48px;padding:24px 32px;background:var(--white);border-radius:var(--radius-lg);border:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;gap:20px}
.sm-tips h4{ font-size:16px;font-weight:600;color:var(--text-dark);margin-bottom:6px}
.sm-tips p{font-size:13.5px;color:var(--text-mid);margin:0}
.sm-tips a{flex-shrink:0}
.lang-fallback-tip {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #fffbf0;
  border: 1px solid #e8d5a3;
  border-left: 4px solid var(--gold, #c9a84c);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #7a6a3a;
  line-height: 1.7;
}