/* ===== NON-CRITICAL CSS - 非首屏样式（外联） ===== */

/* ===== COMBO CARD ===== */
.combo-card{background:var(--w);border-radius:var(--r);padding:20px 16px;box-shadow:var(--sh1);border:2px solid var(--g);position:relative;overflow:hidden;}
.combo-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--g),var(--g2));}
.combo-card .combo-badge{position:absolute;top:10px;right:10px;background:var(--o);color:#fff;font-size:11px;padding:3px 10px;border-radius:10px;font-weight:600;}
.combo-card h3{font-size:16px;font-weight:700;color:var(--t);margin-bottom:8px;}
.combo-card .combo-list{font-size:13px;color:var(--tl);line-height:1.7;margin-bottom:12px;}
.combo-card .combo-list li{padding-left:18px;position:relative;}
.combo-card .combo-list li::before{content:'\2713';position:absolute;left:0;color:var(--g);font-weight:700;}
.combo-card .combo-price{font-size:20px;font-weight:700;color:var(--o);}
.combo-card .combo-price em{font-style:normal;font-size:13px;color:var(--tl2);font-weight:400;margin-left:6px;}

/* ===== HOSPITAL LIST ===== */
.hospital-list{display:flex;flex-direction:column;gap:10px;}
.hospital-item{background:var(--w);border-radius:var(--r);box-shadow:var(--sh1);padding:12px;display:flex;gap:12px;align-items:flex-start;}
.hospital-item.hidden-hosp{display:none;}
.hospital-icon{width:46px;height:46px;min-width:46px;flex-shrink:0;background:var(--gl);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;margin-top:3px;}
.hospital-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px;}
.hospital-name{font-size:14px;font-weight:700;color:var(--t);}
.hospital-brief{font-size:10px;color:var(--tl);line-height:1.5;text-align:left;}
.hospital-tags{display:flex;flex-wrap:wrap;gap:4px;margin-top:2px;}
.hospital-tag{display:inline-block;padding:1px 7px;border-radius:10px;font-size:10px;line-height:1.6;}
.hospital-tag.blue{background:#e3f2fd;color:#1565c0;}
.hospital-tag.green{background:#e8f5e9;color:#2e7d32;}
.hospital-tag.orange{background:#fff3e0;color:#e65100;}
.hospital-tag.purple{background:#f3e5f5;color:#7b1fa2;}
.hospital-tag.red{background:#ffebee;color:#c62828;}
.hospital-tag.teal{background:#e0f2f1;color:#00695c;}
.hospital-more-btn{width:100%;padding:12px;background:var(--gl);color:var(--g);text-align:center;font-size:14px;font-weight:600;border-radius:var(--r);margin-top:10px;cursor:pointer;border:none;}

/* ===== PRICE TABLE ===== */
.price-table{background:var(--w);border-radius:var(--r);box-shadow:var(--sh1);overflow:hidden;}
.price-table .pt-head{display:grid;grid-template-columns:2fr 1fr 1fr;background:var(--g);color:#fff;padding:12px 14px;font-size:13px;font-weight:600;}
.price-table .pt-row{display:grid;grid-template-columns:2fr 1fr 1fr;padding:12px 14px;font-size:13px;border-bottom:1px solid var(--bg);align-items:center;}
.price-table .pt-row:last-child{border-bottom:none;}
.price-table .pt-row .pt-label{font-weight:600;color:var(--t);}
.price-table .pt-row .pt-price{color:var(--o);font-weight:700;font-size:14px;}
.price-table .pt-row .pt-unit{color:var(--tl2);font-size:12px;}

/* ===== TEAM GRID ===== */
.team-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.team-card{background:var(--w);border-radius:var(--r);padding:14px;box-shadow:var(--sh1);text-align:center;}
.team-card .team-avatar{width:80px;height:80px;border-radius:50%;margin:0 auto 10px;background:var(--gl);overflow:hidden;}
.team-card .team-avatar img{width:100%;height:100%;object-fit:cover;}
.team-card .team-name{font-size:14px;font-weight:700;color:var(--t);margin-bottom:4px;}
.team-card .team-title{font-size:12px;color:var(--g);margin-bottom:6px;}
.team-card .team-exp{font-size:11px;color:var(--tl2);line-height:1.5;}

/* ===== DAILY REPORT ===== */
.report-card{background:var(--w);border-radius:var(--r);box-shadow:var(--sh2);overflow:hidden;}
.report-card .rc-header{background:linear-gradient(135deg,var(--gd),var(--g),var(--g2));padding:16px 18px;color:#fff;display:flex;align-items:center;justify-content:space-between;}
.report-card .rc-header h3{font-size:15px;font-weight:700;}
.report-card .rc-header .rc-badge{background:rgba(255,255,255,0.2);padding:4px 10px;border-radius:12px;font-size:11px;}
.report-card .rc-body{padding:16px 18px;}
.report-card .rc-step{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--bg);}
.report-card .rc-step:last-child{border-bottom:none;}
.report-card .rc-step .step-num{width:28px;height:28px;border-radius:50%;background:var(--gl);color:var(--g);font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.report-card .rc-step .step-text{font-size:13px;color:var(--tl);line-height:1.6;}
.report-card .rc-step .step-text strong{color:var(--t);}

/* ===== SERVICE SCENE ===== */
.scene-scroll{position:relative;overflow:hidden;}
.scene-track{display:flex;gap:10px;width:max-content;padding:0 40px 0 40px;}
.scene-img{width:260px;height:180px;border-radius:var(--r);object-fit:cover;flex-shrink:0;box-shadow:var(--sh1);pointer-events:none;}

/* ===== ARTICLE CARDS - NEW STYLE ===== */
.article-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px;}
.article-card-new{background:var(--w);border-radius:0;box-shadow:none;overflow:hidden;text-decoration:none;color:var(--t);display:block;}
.article-card-new .art-img-wrap{width:100%;aspect-ratio:4/3;overflow:hidden;background:var(--bg);border-radius:0;}
.article-card-new .art-img{width:100%;height:100%;object-fit:cover;border-radius:0;}
.article-card-new .art-content{padding:12px;}
.article-card-new .art-title{font-size:14px;font-weight:600;color:#0288D1;line-height:1.4;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;border-radius:0;background:var(--gl);padding:8px 10px;width:100%;box-sizing:border-box;margin:0 0 8px 0;}
.article-card-new .art-desc{font-size:12px;color:var(--tl2);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}

/* ===== REVIEWS ===== */
.review-card{background:var(--w);border-radius:var(--r);padding:16px;box-shadow:var(--sh2);border:1px solid var(--bd);margin-bottom:10px;}
.review-card .rv-head{display:flex;align-items:flex-start;gap:10px;margin-bottom:8px;}
.review-card .rv-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover;background:var(--bg);flex-shrink:0;}
.review-card .rv-info{flex:1;display:flex;align-items:center;gap:8px;}
.review-card .rv-name{font-size:14px;font-weight:600;color:var(--t);}
.review-card .rv-stars{color:var(--gold);font-size:13px;margin-left:auto;}
.review-card .rv-text{font-size:13px;color:var(--tl);line-height:1.6;}
.review-card .rv-tag{display:inline-block;background:var(--gl);color:var(--g);font-size:11px;padding:3px 8px;border-radius:8px;}
.review-card .rv-meta-row{display:flex;align-items:center;justify-content:space-between;gap:6px;margin-top:6px;}
.review-card .rv-meta-row .rv-meta{color:var(--tl2);font-size:12px;}

/* ===== FAQ ===== */
.faq-item{background:var(--w);border-radius:var(--rs);margin-bottom:8px;box-shadow:var(--sh2);border:1px solid var(--bd);overflow:hidden;}
.faq-item .faq-q{padding:14px 16px;font-size:14px;font-weight:600;color:var(--t);display:flex;align-items:center;justify-content:space-between;cursor:pointer;}
.faq-item .faq-q::after{content:'\25B6';font-size:10px;color:var(--tl2);transition:transform 0.3s;}
.faq-item.open .faq-q::after{transform:rotate(90deg);}
.faq-item .faq-a{display:none;padding:0 16px 14px;font-size:13px;color:var(--tl);line-height:1.7;}
.faq-item.open .faq-a{display:block;}

/* ===== FOOTER STYLES ===== */
.pc-footer-title{font-size:14px;font-weight:700;color:#fff;margin-bottom:10px;}
.pc-footer-item{font-size:12px;color:#fff;margin-bottom:6px;}
.pc-footer-city-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:6px 20px;}
.pc-footer-item a{color:#fff;text-decoration:none;transition:color .2s;}
.pc-footer-item a:hover{color:#6BB3D9;}
.pc-footer-bottom{text-align:center;padding-top:16px;border-top:1px solid #333;font-size:11px;color:#fff;}

/* ===== PC GRID LAYOUTS ===== */
.pc-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.pc-grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px;}
.pc-section{margin-bottom:28px;}
.pc-section-title{font-size:20px;font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.pc-price-wrap{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.pc-price-card{background:var(--w);border-radius:var(--r);box-shadow:var(--sh1);overflow:hidden;}
.pc-price-card .pcp-head{padding:14px 18px;font-size:15px;font-weight:700;color:var(--t);background:var(--gl);border-left:4px solid var(--g);}
.pc-price-card .pcp-row{display:flex;justify-content:space-between;padding:12px 18px;font-size:13px;border-bottom:1px solid var(--bg);}
.pc-price-card .pcp-row:last-child{border-bottom:none;}
.pc-price-card .pcp-row .pcp-label{color:var(--tl);}
.pc-price-card .pcp-row .pcp-val{color:var(--o);font-weight:700;}
#reviewDisplayPC{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
#reviewDisplayPC .review-card{margin-bottom:0;}

/* ===== PC RESPONSIVE - Non Critical ===== */
@media(min-width:768px){
  .pc-footer{display:grid;grid-template-columns:2fr 2fr 2fr 3fr;gap:20px;background:#000;color:#fff;width:100vw;margin-left:calc(-50vw + 50%);padding:28px 32px;box-sizing:border-box;}
  .pc-footer-bottom{grid-column:1/-1;}
  .scenario-grid{grid-template-columns:1fr 1fr 1fr;}
  .hospital-item{padding:18px;gap:20px;}
  .hospital-icon{width:60px;height:60px;min-width:60px;font-size:28px;}
  .hospital-name{font-size:18px;}
  .hospital-brief{font-size:14px;}
  .hospital-tag{font-size:11px;padding:2px 8px;}
  .hospital-more-btn{font-size:16px;padding:14px;}
  .scene-img{width:300px;height:200px;}
  .article-grid{grid-template-columns:1fr 1fr 1fr;gap:16px;}
  .article-card-new .art-img-wrap{aspect-ratio:4/3;}
  .article-card-new .art-title{font-size:15px;}
  .article-card-new .art-desc{font-size:13px;}
  .team-grid{grid-template-columns:repeat(4,1fr);gap:16px;}
}
