/* ==========================================================================
   港牙通手机站 · miniapp-v2.css — 设计原型合并叠加层
   --------------------------------------------------------------------------
   加载顺序：本文件必须在 miniapp.css 之后加载（同名类被本文件覆盖属预期行为）。

   合并来源（按以下顺序叠放，后者覆盖前者；保留原型 v4→v5→v6 的叠加机制，
   未做"去重"）：
     1. miniapp-prototype/index.html 内联 <style>（第 9–364 行，基础层 v1–v3）
     2. miniapp-prototype/mobile-home-v4.css
     3. miniapp-prototype/mobile-home-v5.css
     4. miniapp-prototype/mobile-home-v6.css
     5. miniapp-prototype/mobile-detail-v1.css
     6. miniapp-prototype/mobile-article-v1.css
     7. miniapp-prototype/conversion-mobile.css
   注：原型 index.html 的实际 <link> 顺序是 conversion-mobile.css 在前、v4–v6
   在后；本文件按交付要求把 conversion 置于最后，使其"real phone"紧凑首屏
   覆写（hero-banner 342px 等）生效——这正是 conversion-mobile.css 自身
   "kept last so the real phone preview uses them"注释的意图。

   为适配真实网站（body 自然滚动、全宽页面，无预览外壳）做过的中性化：
     a. 基础层 .phone{375px×812px 固定外壳、圆角、边框、阴影} —— 整条删除；
        ?frame=1 预览外壳由 miniapp.css 原有 .phone 规则继续提供。
     b. 基础层 html,body 的 background:#F0F0F0 桌面灰底 —— 改为 #fff。
     c. 基础层 .scroll{flex:1;overflow-y:auto}（把滚动限制在外壳内）——
        改为仅 overflow-x:hidden + scroll-behavior:smooth；
        .scroll::-webkit-scrollbar{display:none} 一并移除。
     d. v4 的 .phone{background:#fff}、v6 的 .phone{width:390px;...} —— 删除。
     e. detail 层 .gyt-hospital-detail .phone{width:390px;...} —— 去除尺寸，
        仅保留背景色。
     f. conversion 层的 .phone{width:100%;height:100svh;...} 与
        .status-bar{display:none} —— 删除（生产环境没有 .phone/.status-bar
        元素；保留只会破坏 ?frame=1 预览外壳）。
   基础层 .status-bar 的内部排版规则予以保留（仅 ?frame=1 预览用到）。

   文件末尾"冲突补丁"一节处理与现有 miniapp.css 的冲突
   （.navbar .lang-wrap、.dp-cta、.scroll 底部留白），详见该节注释。
   ========================================================================== */

/* ──────────────────────────────────────────────────────────────
   [1/7] 基础层：index.html 内联 <style>（reset、:root、hero、sec、
   svc-grid、hosp、doc、price、testi、cta、bottom-nav 等）
   ────────────────────────────────────────────────────────────── */

/* ═══════════════════ RESET & ROOT ═══════════════════ */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
:root{
  --o:#EF6C00;--od:#D45A00;--ol:#FF9A40;
  --og:rgba(239,108,0,.06);--og2:rgba(239,108,0,.10);
  --cream:#FFFCF8;--warm:#FFF8F0;--white:#FFFFFF;
  --d:#1A1A1A;--d2:#2D2D2D;--g:#555;--g2:#999;--g3:#BBB;
  --bd:#EFEFEF;--bd2:#E0E0E0;
  --r:16px;--r2:20px;--r3:24px;
  --shadow-sm:0 1px 3px rgba(0,0,0,.04),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 4px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.04);
  --shadow-lg:0 8px 32px rgba(0,0,0,.08),0 2px 8px rgba(0,0,0,.04);
  --shadow-xl:0 16px 48px rgba(0,0,0,.10),0 4px 12px rgba(0,0,0,.04);
  --shadow-o:0 4px 20px rgba(239,108,0,.15),0 1px 4px rgba(239,108,0,.10);
}
/* [适配] 原型 background:#F0F0F0 是衬托手机外壳的桌面灰底，真实网站改为白底 */
html,body{height:100%;font-family:'Noto Sans TC',system-ui,-apple-system,sans-serif;
  background:#fff;color:var(--d);-webkit-font-smoothing:antialiased}

/* ═══════════════════ PHONE FRAME ═══════════════════ */
/* [适配] 原型 .phone{width:375px;height:812px;margin:20px auto;border-radius:44px;
   overflow:hidden;background:var(--cream);box-shadow:...;display:flex;...} 整条删除：
   真实网站全宽、body 自然滚动；?frame=1 预览外壳沿用 miniapp.css 的 .phone 规则。 */

/* Status Bar（仅 ?frame=1 预览模式存在该结构，保留内部排版规则） */
.status-bar{height:48px;display:flex;align-items:center;justify-content:space-between;
  padding:12px 28px 0;background:var(--white);flex-shrink:0;position:relative;z-index:100}
.status-bar .time{font-size:15px;font-weight:600;letter-spacing:-.2px}
.status-bar .icons{display:flex;gap:5px;align-items:center}
.status-bar .icons svg{width:16px;height:16px}

/* ═══════════════════ SCROLLABLE CONTENT ═══════════════════ */
/* [适配] 原型 .scroll{flex:1;overflow-y:auto;...} 是把滚动限制在外壳内的规则，
   真实网站为 body 自然滚动，仅保留横向裁剪与平滑滚动；
   原型 .scroll::-webkit-scrollbar{display:none} 一并移除。 */
.scroll{overflow-x:hidden;-webkit-overflow-scrolling:touch;
  scroll-behavior:smooth}

/* ═══════════════════ HERO SECTION ═══════════════════ */
.hero{position:relative;background:var(--white);padding:0 0 28px}
.hero-top{padding:14px 20px 0;display:flex;align-items:center;justify-content:space-between}
.hero-logo{display:flex;align-items:center;gap:8px}
.hero-logo img{height:34px;width:auto;border-radius:0}
.hero-logo .brand{font-size:18px;font-weight:700;color:var(--d)}
.hero-logo .brand span{color:var(--o);font-weight:800}
.hero-bell{width:36px;height:36px;border-radius:50%;background:var(--og);display:flex;
  align-items:center;justify-content:center;position:relative;cursor:pointer}
.hero-bell svg{width:20px;height:20px;color:var(--o)}
.hero-bell::after{content:'';width:7px;height:7px;background:#EF4444;border-radius:50%;
  position:absolute;top:6px;right:7px;border:2px solid var(--white)}
.lang-wrap{display:flex;border-radius:50px;overflow:hidden;background:var(--og);border:1px solid rgba(239,108,0,.12)}
.lang-btn{padding:5px 13px;font-size:11px;font-weight:600;color:var(--g3);cursor:pointer;border:none;background:none;transition:all .25s;font-family:inherit}
.lang-btn.on{background:var(--o);color:#fff}

/* Hero Banner Card */
.hero-banner{margin:18px 20px 0;border-radius:var(--r3);overflow:hidden;position:relative;
  height:185px;background:linear-gradient(135deg,#1a1a1a 0%,#2D2D2D 100%)}
.hero-banner img{width:100%;height:100%;object-fit:cover;opacity:.45}
.hero-banner-content{position:absolute;inset:0;padding:28px 24px;display:flex;
  flex-direction:column;justify-content:center}
.hero-badge{display:inline-flex;align-items:center;gap:5px;background:rgba(239,108,0,.9);
  color:#fff;font-size:11px;font-weight:600;padding:4px 10px;border-radius:20px;
  width:fit-content;letter-spacing:.5px;backdrop-filter:blur(4px)}
.hero-badge svg{width:12px;height:12px}
.hero-h1{font-size:26px;font-weight:800;color:#fff;margin:12px 0 8px;
  line-height:1.25;letter-spacing:-.5px;text-shadow:0 2px 12px rgba(0,0,0,.3)}
.hero-sub{font-size:13px;color:rgba(255,255,255,.8);font-weight:400;line-height:1.5}
.hero-sub strong{color:var(--ol);font-weight:600}

/* Search */
.search-box{margin:12px 20px 0;display:flex;align-items:center;gap:8px;
  background:var(--white);border:1.5px solid var(--bd);border-radius:22px;
  padding:8px 10px 8px 14px;box-shadow:var(--shadow-sm);transition:all .2s}
.search-box:active{border-color:var(--ol);box-shadow:var(--shadow-o)}
.search-box svg{width:16px;height:16px;color:var(--g3);flex-shrink:0}
.search-box span{font-size:13px;color:var(--g3);flex:1}
.search-ai{width:28px;height:28px;border-radius:8px;background:linear-gradient(135deg,var(--o),var(--od));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  box-shadow:0 2px 8px rgba(239,108,0,.25)}
.search-ai svg{width:14px;height:14px;color:#fff}

/* ═══════════════════ TRUST STATS ═══════════════════ */
.trust-stats{display:flex;gap:8px;padding:18px 20px 0}
.trust-item{flex:1;text-align:center;padding:14px 8px;background:var(--white);
  border-radius:var(--r);border:1px solid var(--bd);box-shadow:var(--shadow-sm)}
.trust-num{font-size:22px;font-weight:800;color:var(--o);letter-spacing:-.5px;line-height:1}
.trust-num span{font-size:12px;font-weight:600}
.trust-label{font-size:11px;color:var(--g);margin-top:5px;font-weight:500;line-height:1.2}

/* ═══════════════════ SECTION SHARED ═══════════════════ */
.sec{padding:32px 20px 0}
.sec-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.sec-title{font-size:19px;font-weight:700;color:var(--d);display:flex;align-items:center;gap:8px}
.sec-title .icon-wrap{width:30px;height:30px;border-radius:10px;display:flex;
  align-items:center;justify-content:center;flex-shrink:0}
.sec-title .icon-wrap svg{width:17px;height:17px;color:#fff}
.sec-more{font-size:12px;color:var(--g2);font-weight:500;display:flex;align-items:center;gap:2px;cursor:pointer}
.sec-more svg{width:14px;height:14px}

/* ═══════════════════ DENTAL SERVICES ═══════════════════ */
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px 12px}
.svc-item{display:flex;flex-direction:column;align-items:center;gap:8px;cursor:pointer}
.svc-icon{width:54px;height:54px;border-radius:16px;display:flex;align-items:center;
  justify-content:center;position:relative;transition:transform .2s}
.svc-icon svg{width:26px;height:26px}
.svc-item:active .svc-icon{transform:scale(.92)}
.svc-name{font-size:12px;font-weight:500;color:var(--d2);text-align:center}
.svc-hot{position:absolute;top:-3px;right:-3px;width:16px;height:16px;border-radius:50%;
  background:#EF4444;display:flex;align-items:center;justify-content:center;
  border:2px solid var(--cream)}
.svc-hot::after{content:'';width:5px;height:5px;background:#fff;border-radius:50%}

/* service icon colors */
.svc-c1{background:linear-gradient(135deg,#FFF3E0,#FFE0B2)}.svc-c1 svg{color:#E65100}
.svc-c2{background:linear-gradient(135deg,#E8F5E9,#C8E6C9)}.svc-c2 svg{color:#2E7D32}
.svc-c3{background:linear-gradient(135deg,#E3F2FD,#BBDEFB)}.svc-c3 svg{color:#1565C0}
.svc-c4{background:linear-gradient(135deg,#FCE4EC,#F8BBD0)}.svc-c4 svg{color:#C62828}
.svc-c5{background:linear-gradient(135deg,#F3E5F5,#E1BEE7)}.svc-c5 svg{color:#6A1B9A}
.svc-c6{background:linear-gradient(135deg,#E0F7FA,#B2EBF2)}.svc-c6 svg{color:#00695C}
.svc-c7{background:linear-gradient(135deg,#FFF8E1,#FFECB3)}.svc-c7 svg{color:#F57F17}
.svc-c8{background:linear-gradient(135deg,#EDE7F6,#D1C4E9)}.svc-c8 svg{color:#4527A0}

/* AI Banner */
.ai-banner{margin-top:20px;padding:16px 18px;border-radius:var(--r);
  background:linear-gradient(135deg,#1A1A1A 0%,#2D2D2D 50%,#3D2D1D 100%);
  display:flex;align-items:center;gap:14px;cursor:pointer;position:relative;overflow:hidden}
.ai-banner::before{content:'';position:absolute;width:120px;height:120px;
  background:radial-gradient(circle,rgba(239,108,0,.2),transparent 70%);
  right:-20px;top:-40px;border-radius:50%}
.ai-glow{width:44px;height:44px;border-radius:14px;
  background:linear-gradient(135deg,var(--o),var(--od));display:flex;
  align-items:center;justify-content:center;flex-shrink:0;box-shadow:var(--shadow-o)}
.ai-glow svg{width:22px;height:22px;color:#fff}
.ai-text{flex:1;position:relative;z-index:1}
.ai-text h4{font-size:14px;font-weight:600;color:#fff;margin-bottom:3px}
.ai-text h4 span{background:linear-gradient(90deg,var(--ol),#FFD54F);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;font-size:11px;
  font-weight:700;margin-left:6px;letter-spacing:.5px}
.ai-text p{font-size:11.5px;color:rgba(255,255,255,.6);font-weight:400}
.ai-arrow{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ai-arrow svg{width:14px;height:14px;color:rgba(255,255,255,.5)}

/* ═══════════════════ 6大核心優勢 ═══════════════════ */
.adv-grid{display:flex;flex-direction:column;gap:14px}
.adv-card{display:flex;align-items:center;gap:0;
  background:var(--white);border-radius:16px;border:1px solid var(--bd);
  box-shadow:0 2px 12px rgba(0,0,0,.04);position:relative;overflow:hidden;
  cursor:pointer;transition:transform .2s,box-shadow .2s}
.adv-card:active{transform:scale(.98);box-shadow:0 4px 20px rgba(0,0,0,.08)}
.adv-card::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;border-radius:4px 0 0 4px;z-index:2}
.adv-card:nth-child(1)::before{background:linear-gradient(180deg,#1565C0,#0D47A1)}
.adv-card:nth-child(2)::before{background:linear-gradient(180deg,#EF6C00,#D45A00)}
.adv-card:nth-child(3)::before{background:linear-gradient(180deg,#2E7D32,#1B5E20)}
.adv-card:nth-child(4)::before{background:linear-gradient(180deg,#6A1B9A,#4A148C)}
.adv-card:nth-child(5)::before{background:linear-gradient(180deg,#00838F,#006064)}
.adv-card:nth-child(6)::before{background:linear-gradient(180deg,#C62828,#B71C1C)}
.adv-img{width:150px;flex-shrink:0;position:relative;overflow:hidden;background:var(--warm);line-height:0}
.adv-img img{width:100%;height:auto;display:block}
.adv-num{position:absolute;top:8px;left:12px;font-size:10px;font-weight:800;color:#fff;
  background:rgba(0,0,0,.45);backdrop-filter:blur(6px);padding:3px 8px;border-radius:8px;
  letter-spacing:.5px;z-index:1}
.adv-body{flex:1;min-width:0;padding:14px 14px 12px}
.adv-body h5{font-size:15px;font-weight:700;color:var(--d);margin-bottom:5px}
.adv-body p{font-size:11.5px;color:var(--g);line-height:1.55;font-weight:400;margin-bottom:8px}
.adv-tags{display:flex;gap:5px;flex-wrap:wrap}
.adv-tag{font-size:10px;font-weight:600;padding:3px 8px;border-radius:6px}
.adv-card:nth-child(1) .adv-tag{color:#1565C0;background:#E3F2FD}
.adv-card:nth-child(2) .adv-tag{color:var(--o);background:var(--og)}
.adv-card:nth-child(3) .adv-tag{color:#2E7D32;background:#E8F5E9}
.adv-card:nth-child(4) .adv-tag{color:#6A1B9A;background:#F3E5F5}
.adv-card:nth-child(5) .adv-tag{color:#00838F;background:#E0F7FA}
.adv-card:nth-child(6) .adv-tag{color:#C62828;background:#FFEBEE}

/* ═══════════════════ PROCESS STEPS ═══════════════════ */
.process{display:flex;flex-direction:column;gap:12px;position:relative}
.step{display:flex;align-items:flex-start;gap:14px;position:relative;
  background:var(--white);border-radius:14px;padding:16px;
  border:1px solid var(--bd);box-shadow:0 2px 8px rgba(0,0,0,.04)}
.step-num{width:36px;height:36px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--o),var(--od));position:relative;z-index:2;
  box-shadow:0 3px 10px rgba(239,108,0,.2)}
.step-num span{font-size:14px;font-weight:800;color:#fff}
.step-icon{width:36px;height:36px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;margin-left:auto}
.step-icon svg{width:18px;height:18px}
.step-body{flex:1;min-width:0}
.step-body h6{font-size:14px;font-weight:700;color:var(--d);margin-bottom:2px;display:flex;align-items:center;gap:6px}
.step-body p{font-size:11.5px;color:var(--g);font-weight:400;line-height:1.55;margin-bottom:4px}
.step-tag{font-size:10px;font-weight:600;padding:2px 8px;border-radius:4px;display:inline-block}
.step-tag.orange{color:var(--o);background:var(--og)}
.step-tag.green{color:#2E7D32;background:#E8F5E9}
.step-tag.blue{color:#1565C0;background:#E3F2FD}
.step-tag.purple{color:#6A1B9A;background:#F3E5F5}

/* ═══════════════════ HOSPITAL SECTION ═══════════════════ */
.hosp-featured{border-radius:var(--r2);overflow:hidden;position:relative;
  height:175px;box-shadow:var(--shadow-md);margin-bottom:14px}
.hosp-featured img{width:100%;height:100%;object-fit:cover}
.hosp-featured-overlay{position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 60%);
  padding:0 18px 18px;display:flex;flex-direction:column;justify-content:flex-end}
.hosp-featured-badge{display:inline-flex;align-items:center;gap:4px;
  background:rgba(239,108,0,.9);color:#fff;font-size:10px;font-weight:600;
  padding:3px 10px;border-radius:12px;width:fit-content;margin-bottom:8px;
  backdrop-filter:blur(4px)}
.hosp-featured-badge svg{width:11px;height:11px}
.hosp-featured h4{font-size:16px;font-weight:700;color:#fff;margin-bottom:4px;
  text-shadow:0 1px 4px rgba(0,0,0,.3)}
.hosp-featured p{font-size:11.5px;color:rgba(255,255,255,.75);font-weight:400}

.hosp-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.hosp-card{background:var(--white);border-radius:var(--r);overflow:hidden;
  border:1px solid var(--bd);box-shadow:var(--shadow-sm);cursor:pointer;
  transition:transform .2s}
.hosp-card:active{transform:scale(.97)}
.hosp-card-img{height:80px;overflow:hidden}
.hosp-card-img img{width:100%;height:100%;object-fit:cover}
.hosp-card-body{padding:10px 12px 12px}
.hosp-card-body h5{font-size:13px;font-weight:700;color:var(--d);margin-bottom:4px;line-height:1.3}
.hosp-card-body .loc{font-size:11px;color:var(--g);display:flex;align-items:center;gap:3px;margin-bottom:6px}
.hosp-card-body .loc svg{width:12px;height:12px;color:var(--o)}
.hosp-tags{display:flex;gap:4px;flex-wrap:wrap}
.hosp-tag{font-size:10px;color:var(--o);background:var(--og);padding:2px 7px;
  border-radius:5px;font-weight:500}

/* ═══════════════════ DOCTOR SECTION ═══════════════════ */
.doc-list{display:flex;flex-direction:column;gap:12px}
.doc-card{display:flex;align-items:center;gap:14px;padding:14px 16px;
  background:var(--white);border-radius:var(--r);border:1px solid var(--bd);
  box-shadow:var(--shadow-sm);cursor:pointer;transition:transform .2s;position:relative}
.doc-card:active{transform:scale(.98)}
.doc-rank{position:absolute;top:0;left:0;width:22px;height:22px;
  background:var(--o);border-radius:0 0 10px 0;display:flex;align-items:center;
  justify-content:center;font-size:10px;font-weight:700;color:#fff}
.doc-rank.gold{background:linear-gradient(135deg,#F59E0B,#D97706)}
.doc-rank.silver{background:linear-gradient(135deg,#9CA3AF,#6B7280)}
.doc-rank.bronze{background:linear-gradient(135deg,#D97706,#92400E)}
.doc-avatar{width:56px;height:56px;border-radius:16px;overflow:hidden;flex-shrink:0;
  background:var(--og);border:2px solid var(--bd);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:24px;font-weight:700;letter-spacing:0}
.doc-avatar img{width:100%;height:100%;object-fit:cover}
/* 展開/收起 */
.hosp-card.is-hidden,.doc-card.is-hidden{display:none}
.sec-more{cursor:pointer;user-select:none}
.doc-info{flex:1;min-width:0}
.doc-info h5{font-size:15px;font-weight:700;color:var(--d);margin-bottom:2px}
.doc-info .spec{font-size:11.5px;color:var(--o);font-weight:600;margin-bottom:3px}
.doc-info .exp{font-size:11px;color:var(--g);font-weight:400}
.doc-rating{text-align:right;flex-shrink:0}
.doc-rating .stars{font-size:12px;color:#F59E0B;letter-spacing:1px;margin-bottom:2px}
.doc-rating .count{font-size:10px;color:var(--g2)}

/* ═══════════════════ PRICE TABLE ═══════════════════ */
.price-card{background:var(--white);border-radius:var(--r2);border:1px solid var(--bd);
  box-shadow:var(--shadow-sm);overflow:hidden}
.price-header{display:grid;grid-template-columns:2fr 1.2fr 1.2fr;padding:12px 16px;
  background:linear-gradient(135deg,#1A1A1A,#2D2D2D);gap:8px}
.price-header span{font-size:11px;font-weight:600;color:rgba(255,255,255,.7);text-align:center}
.price-header span:first-child{text-align:left}
.price-row{display:grid;grid-template-columns:2fr 1.2fr 1.2fr;padding:13px 16px;
  gap:8px;border-bottom:1px solid var(--bd);align-items:center}
.price-row:last-child{border:none}
.price-row:nth-child(even){background:var(--og)}
.price-name{font-size:13px;font-weight:600;color:var(--d)}
.price-hk{font-size:12px;color:var(--g);text-align:center;text-decoration:line-through;font-weight:400}
.price-sz{font-size:14px;font-weight:700;color:var(--o);text-align:center}
.price-save{margin-top:12px;padding:14px 16px;background:var(--og);border-radius:var(--r);
  text-align:center;font-size:13px;font-weight:600;color:var(--o);
  display:flex;align-items:center;justify-content:center;gap:6px}
.price-save svg{width:16px;height:16px}
.gyt-payment-methods{margin-top:10px;padding:12px 13px 13px;border:1px solid var(--bd);
  border-radius:var(--r);background:rgba(255,255,255,.78)}
.gyt-payment-label{display:block;margin-bottom:9px;color:var(--g);font-size:11px;font-weight:600;line-height:1.3}
.gyt-payment-tags{display:flex;flex-wrap:wrap;gap:7px}
.gyt-payment-tag{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;
  border:1px solid rgba(239,108,0,.14);border-radius:999px;background:#fffaf6;
  color:#5e514a;font-size:11px;font-weight:600;line-height:1;white-space:nowrap}
.gyt-payment-tag::before{width:5px;height:5px;margin-right:6px;border-radius:50%;background:var(--o);content:""}
.gyt-payment-tag--alipay::before,.gyt-payment-tag--wechat::before{background:#19a974}
.gyt-payment-tag--card::before{background:#3f7edb}
.gyt-payment-tag--cash::before{background:#a78145}
.lp-hosp-transit{display:flex;align-items:center;gap:6px;margin:5px 0 6px;color:#168764;font-size:10px;font-weight:700;line-height:1.35}
.lp-hosp-transit-icon{width:6px;height:6px;flex:0 0 auto;border-radius:50%;background:#168764;box-shadow:0 0 0 3px #ddf1e8}
.gyt-transport-block{margin-bottom:24px;padding:12px 12px 10px;border:1px solid #d5ebe1;border-radius:13px;background:#f6fbf8}
.gyt-transport-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.gyt-transport-head .dp-block-title{margin:0}
.gyt-transport-head>span{color:#168764;font-size:10px;font-weight:700}
.gyt-transport-list{border-top:1px solid #e2f0e9}
.gyt-transport-line{display:flex;align-items:flex-start;gap:8px;padding:8px 0;border-bottom:1px solid #e2f0e9;color:#294850;font-size:12px;line-height:1.5}
.gyt-transport-line:last-child{border-bottom:0}
.gyt-transport-dot{width:6px;height:6px;flex:0 0 auto;margin-top:6px;border-radius:50%;background:#168764}
.gyt-transport-note{margin:7px 0 0;color:#889691;font-size:10px;line-height:1.55}
.hosp-featured-location,.hosp-featured-description{display:block}
.hosp-featured-transit{display:flex;align-items:center;gap:6px;margin:5px 0;color:#168764;font-size:11px;font-weight:800;line-height:1.35}
.hosp-featured-transit-icon{width:6px;height:6px;flex:0 0 auto;border-radius:50%;background:#168764;box-shadow:0 0 0 3px #ddf1e8}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testi-header{display:flex;align-items:center;gap:12px;margin-bottom:20px;
  padding:16px 18px;background:var(--white);border-radius:var(--r);
  border:1px solid var(--bd);box-shadow:var(--shadow-sm)}
.testi-score{text-align:center}
.testi-score .num{font-size:32px;font-weight:800;color:var(--o);line-height:1}
.testi-score .stars{font-size:13px;color:#F59E0B;letter-spacing:1px;margin-top:2px}
.testi-meta{flex:1}
.testi-meta .label{font-size:13px;font-weight:600;color:var(--d);margin-bottom:2px}
.testi-meta .platforms{font-size:11px;color:var(--g);font-weight:400}

.testi-list{display:flex;flex-direction:column;gap:14px}
.testi-card{padding:18px;background:var(--white);border-radius:var(--r);
  border:1px solid var(--bd);box-shadow:var(--shadow-sm)}
.testi-top{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.testi-avatar{width:40px;height:40px;border-radius:12px;display:flex;
  align-items:center;justify-content:center;font-size:16px;font-weight:700;color:#fff;flex-shrink:0}
.testi-user{flex:1;min-width:0}
.testi-user h6{font-size:13px;font-weight:600;color:var(--d)}
.testi-user .from{font-size:10.5px;color:var(--g2);font-weight:400;margin-top:1px}
.testi-platform{font-size:10px;font-weight:600;padding:3px 8px;border-radius:6px}
.plat-wa{background:#E8F5E9;color:#2E7D32}
.plat-gg{background:#E3F2FD;color:#1565C0}
.plat-ig{background:#FCE4EC;color:#C62828}
.plat-fb{background:#E8EAF6;color:#283593}
.testi-stars{font-size:11px;color:#F59E0B;letter-spacing:.5px;margin-bottom:8px}
.testi-text{font-size:13px;color:var(--d2);line-height:1.65;font-weight:400}
.testi-text mark{background:var(--og2);color:var(--o);font-weight:600;
  border-radius:3px;padding:0 3px}
.testi-footer{margin-top:10px;display:flex;align-items:center;gap:8px}
.testi-tag{font-size:10px;color:var(--o);background:var(--og);padding:3px 8px;
  border-radius:5px;font-weight:500}

/* ═══════════════════ CTA ═══════════════════ */
.cta-section{margin:36px 20px 32px;padding:28px 22px;
  background:linear-gradient(135deg,#1A1A1A 0%,#2D2D2D 50%,#3D2D1D 100%);
  border-radius:var(--r3);text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;width:200px;height:200px;
  background:radial-gradient(circle,rgba(239,108,0,.15),transparent 60%);
  right:-50px;top:-80px;border-radius:50%}
.cta-section::after{content:'';position:absolute;width:150px;height:150px;
  background:radial-gradient(circle,rgba(239,108,0,.1),transparent 60%);
  left:-40px;bottom:-60px;border-radius:50%}
.cta-section h3{font-size:20px;font-weight:700;color:#fff;margin-bottom:8px;position:relative;z-index:1}
.cta-section p{font-size:12.5px;color:rgba(255,255,255,.6);margin-bottom:20px;position:relative;z-index:1}
.cta-btn{display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,var(--o),var(--od));color:#fff;
  font-size:15px;font-weight:700;padding:14px 36px;border-radius:50px;border:none;
  box-shadow:var(--shadow-o);cursor:pointer;position:relative;z-index:1;
  transition:transform .2s}
.cta-btn:active{transform:scale(.95)}
.cta-btn svg{width:18px;height:18px}
.cta-trust{margin-top:16px;display:flex;align-items:center;justify-content:center;
  gap:16px;position:relative;z-index:1}
.cta-trust span{font-size:10.5px;color:rgba(255,255,255,.5);display:flex;
  align-items:center;gap:4px}
.cta-trust svg{width:12px;height:12px}

/* ═══════════════════ BOTTOM NAV ═══════════════════
   注：真实网站底部导航为 .g-bottom-nav，本组 .bottom-nav 规则在当前模板下
   不命中任何元素，仅为保留原型层叠顺序而完整保留。 */
.bottom-nav{height:82px;background:var(--white);border-top:1px solid var(--bd);
  display:flex;align-items:flex-start;padding:8px 0 0;flex-shrink:0;
  box-shadow:0 -2px 12px rgba(0,0,0,.04)}
.nav-item{flex:1;display:flex;flex-direction:column;align-items:center;gap:3px;
  cursor:pointer;position:relative;padding-top:4px}
.nav-item svg{width:22px;height:22px;color:var(--g3);transition:color .2s}
.nav-item span{font-size:10px;color:var(--g3);font-weight:500;transition:color .2s}
.nav-item.active svg{color:var(--o)}
.nav-item.active span{color:var(--o);font-weight:600}
.nav-item.active::after{content:'';position:absolute;top:0;width:20px;height:2.5px;
  background:var(--o);border-radius:0 0 2px 2px}
.nav-center{margin-top:-18px}
.nav-center-btn{width:52px;height:52px;border-radius:18px;
  background:linear-gradient(135deg,var(--o),var(--od));display:flex;
  align-items:center;justify-content:center;box-shadow:var(--shadow-o)}
.nav-center-btn svg{width:24px;height:24px;color:#fff}
.nav-center span{margin-top:3px}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
.scroll .sec{animation:fadeUp .5s ease-out both}
.scroll .sec:nth-child(2){animation-delay:.05s}
.scroll .sec:nth-child(3){animation-delay:.1s}
.scroll .sec:nth-child(4){animation-delay:.15s}

/* ──────────────────────────────────────────────────────────────
   [2/7] mobile-home-v4.css（首页叠加层 v4）
   适配：删除 .phone{background:#fff}（外壳规则，生产无此元素）。
   ────────────────────────────────────────────────────────────── */

/*
  港牙通手机站首页 v4
  Design role: conversion-first mobile landing page.
  Assumptions: preserve existing links/data; make hierarchy visibly different from the previous long card stack.
*/

:root {
  --brand-orange: #f56a16;
  --brand-orange-dark: #dd530d;
  --brand-green: #08b957;
  --brand-green-dark: #087d42;
  --brand-ink: #16191d;
  --brand-muted: #687078;
  --brand-warm: #fff8f2;
  --brand-soft: #f6f7f6;
  --brand-line: #e8ebe9;
}

.hero-tools { display: flex; align-items: center; gap: 8px; }
.hero-wa-button { display: none; }
.gyt-hero-points,
.gyt-process-section { display: none; }

/* The prototype is a fixed phone canvas; apply its mobile rules at every
   surrounding browser width so file:// preview and real phones match. */
  html, body { background: #fff; color: var(--brand-ink); }
  body { font-size: 16px; }
  .scroll { background: var(--brand-soft); }

  .hero { padding: 0; background: #fff; }
  .hero-top {
    min-height: 64px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(232,235,233,.8);
  }
  .hero-logo img { height: 40px; }
  .lang-wrap { display: none; }
  .hero-wa-button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--brand-green);
    font: 800 11px/1 'Noto Sans TC', sans-serif;
    box-shadow: 0 7px 18px rgba(8,185,87,.24);
  }

  .hero-banner {
    height: 402px;
    margin: 0;
    border-radius: 0;
    background: var(--brand-warm);
  }
  .hero-banner img {
    opacity: 1;
    object-position: 68% center;
    transform: scale(1.02);
  }
  .hero-banner::after {
    background: linear-gradient(90deg, rgba(255,248,242,1) 0%, rgba(255,248,242,.98) 30%, rgba(255,248,242,.76) 51%, rgba(255,248,242,.04) 82%);
  }
  .hero-banner-content {
    width: 67%;
    padding: 28px 16px 22px;
    justify-content: center;
  }
  .hero-h1 {
    margin: 0 0 11px;
    color: var(--brand-ink);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.8px;
    text-shadow: none;
    text-wrap: balance;
  }
  .hero-sub {
    max-width: 205px;
    color: #4a514d;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
    text-wrap: pretty;
  }
  .gyt-hero-points {
    display: grid;
    gap: 6px;
    margin-top: 12px;
    color: #28583d;
    font-size: 11px;
    font-weight: 700;
  }
  .gyt-hero-points span::before {
    content: '✓';
    display: inline-grid;
    place-items: center;
    width: 15px;
    height: 15px;
    margin-right: 6px;
    border-radius: 50%;
    color: #fff;
    background: var(--brand-green);
    font-size: 9px;
  }
  .gyt-hero-actions { gap: 8px; margin-top: 16px; }
  .gyt-action {
    min-height: 46px;
    border-radius: 999px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(0,0,0,.1);
  }
  .gyt-action-primary { background: var(--brand-orange); }
  .gyt-action-whatsapp { background: var(--brand-green); }

  .gyt-service-promise {
    gap: 8px;
    padding: 13px 12px 16px;
    background: #fff;
    border-bottom: 0;
  }
  .gyt-promise-item {
    min-height: 86px;
    padding: 11px 3px 9px;
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(20,40,30,.05);
  }
  .gyt-promise-icon { width: 30px; height: 30px; margin-bottom: 7px; }
  .gyt-promise-item strong { font-size: 10px; }
  .gyt-promise-item span { margin-top: 4px; font-size: 8px; }

  .sec {
    margin: 10px 0 0;
    padding: 28px 16px;
    background: #fff;
  }
  .sec-head { margin-bottom: 18px; }
  .sec-title { color: var(--brand-ink); font-size: 20px; font-weight: 800; }
  .sec-title .icon-wrap { display: none; }
  .sec-more { min-height: 44px; padding-left: 12px; color: var(--brand-muted); font-size: 12px; }

  .gyt-services-section { margin-top: 0; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 19px 8px; }
  .svc-item:nth-child(n+7) { display: none; }
  .svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  }
  .svc-name { font-size: 12px; font-weight: 650; }

  .gyt-advantages-section { display: none; }

  .gyt-clinics-section { background: #fff; }
  .hosp-featured {
    height: auto;
    border: 1px solid var(--brand-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(25,45,35,.07);
  }
  .hosp-featured > img { display: block; height: 166px; }
  .hosp-featured-overlay {
    position: static;
    padding: 15px 15px 16px;
    background: #fff;
  }
  .hosp-featured-badge {
    margin-bottom: 8px;
    color: #8f490b;
    background: #fff1e5;
    border: 0;
  }
  .hosp-featured h4 { color: var(--brand-ink); font-size: 16px; text-shadow: none; }
  .hosp-featured p { color: var(--brand-muted); font-size: 12px; line-height: 1.6; }
  .hosp-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
  .hosp-grid .hosp-card:nth-child(n+3) { display: none; }
  .hosp-card { border: 1px solid var(--brand-line); border-radius: 12px; box-shadow: none; }
  .hosp-card-img { height: 92px; }
  .hosp-card-body { padding: 11px 11px 13px; }

  .gyt-doctors-section .doc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gyt-doctors-section .doc-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    min-height: 132px;
    padding: 15px 12px;
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(25,45,35,.05);
  }
  .gyt-doctors-section .doc-card:nth-child(n+3) { display: none; }
  .gyt-doctors-section .doc-avatar { width: 52px; height: 52px; border-radius: 50%; }
  .gyt-doctors-section .doc-rank,
  .gyt-doctors-section .doc-rating { display: none; }
  .gyt-doctors-section .doc-info h5 { font-size: 15px; }
  .gyt-doctors-section .doc-info .spec { font-size: 11px; line-height: 1.5; }
  .gyt-doctors-section .doc-info .exp { grid-column: 1 / -1; font-size: 10px; line-height: 1.5; }

  .gyt-process-section {
    display: block;
    margin-top: 10px;
    padding: 28px 16px;
    background: #fff;
  }
  .gyt-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .gyt-section-head h2 { font-size: 20px; font-weight: 800; }
  .gyt-section-head span { color: var(--brand-muted); font-size: 12px; }
  .gyt-process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; position: relative; }
  .gyt-process-track::before { content: ''; position: absolute; top: 16px; left: 9%; right: 9%; height: 1px; background: #dcdeda; }
  .gyt-process-track > div { position: relative; z-index: 1; text-align: center; }
  .gyt-process-track b { display: grid; place-items: center; width: 32px; height: 32px; margin: 0 auto 9px; border-radius: 50%; color: var(--brand-orange); background: #fff1e6; font-size: 10px; }
  .gyt-process-track strong { display: block; font-size: 9px; line-height: 1.35; }
  .gyt-process-track span { display: block; margin-top: 3px; color: var(--brand-muted); font-size: 8px; }

  .price-card { border-radius: 12px; box-shadow: none; }
  .price-header { background: #242725; }
  .price-row { min-height: 53px; align-items: center; }
  .price-row:nth-of-type(n+5) { display: none; }
  .price-name { font-size: 13px; }
  .price-save { border-radius: 10px; }

  .testi-header { margin-bottom: 14px; padding: 14px; border-radius: 12px; background: #fff8f1; }
  .testi-list .testi-card:nth-child(n+2) { display: none; }
  .testi-card { border: 1px solid var(--brand-line); border-radius: 12px; box-shadow: none; }
  .testi-text { font-size: 14px; line-height: 1.75; }

  .cta-section {
    margin: 10px 0 0;
    padding: 30px 20px 34px;
    border-radius: 0;
    background: var(--brand-orange);
  }
  .cta-section::before,
  .cta-section::after { display: none; }
  .cta-section h3 { font-size: 23px; }
  .cta-section p { color: rgba(255,255,255,.82); font-size: 14px; }
  .cta-btn { min-height: 48px; padding: 0 28px; border-radius: 999px; }
  .cta-trust span { color: rgba(255,255,255,.82); }

  .gyt-conversion-dock {
    grid-template-columns: 1fr 1.12fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 26px rgba(22,30,26,.11);
  }
  .gyt-dock-btn { min-height: 48px; border-radius: 999px; font-size: 13px; }

/* ──────────────────────────────────────────────────────────────
   [3/7] mobile-home-v5.css（首页叠加层 v5）
   ────────────────────────────────────────────────────────────── */

/* 港牙通手机站首页 v5 — reference-led mobile conversion layout */
:root {
  --v5-navy: #103c55;
  --v5-teal: #118e8c;
  --v5-orange: #ff8737;
  --v5-green: #19c768;
  --v5-mint: #f0f8f5;
  --v5-copy: #536b78;
  --v5-line: #d6e9e5;
}

/* The prototype always renders inside a 390px phone shell, even when the
   surrounding browser window is desktop-sized. Keep these rules unconditional. */
  .gyt-home .status-bar { background: #fff; }
  .gyt-home .scroll { background: #fff; }
  .gyt-v5-hero { padding: 0; background: #fff; }

  .gyt-v5-windowbar {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    height: 52px;
    padding: 0 16px;
    color: #111b22;
    border-bottom: 1px solid #edf0ef;
  }
  .gyt-v5-windowbar strong { text-align: center; font-size: 15px; font-weight: 700; }
  .gyt-v5-back { width: 12px; height: 12px; border-left: 2px solid #263943; border-bottom: 2px solid #263943; transform: rotate(45deg); }
  .gyt-v5-more { font-size: 15px; letter-spacing: 2px; text-align: right; }

  .gyt-v5-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 10px 20px;
    background: #fffdf7;
    box-shadow: 0 8px 22px rgba(62, 93, 77, .07);
  }
  .gyt-v5-nav img { width: 88px; height: 34px; object-fit: contain; object-position: left center; }
  .gyt-v5-nav > div { display: flex; align-items: center; gap: 17px; }
  .gyt-v5-nav button {
    min-height: 46px;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--v5-orange);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(255, 135, 55, .3);
  }
  .gyt-v5-menu { position: relative; width: 20px; height: 14px; border-top: 2px solid var(--v5-navy); border-bottom: 2px solid var(--v5-navy); }
  .gyt-v5-menu::after { content: ''; position: absolute; top: 5px; left: 0; width: 20px; height: 2px; background: var(--v5-navy); }

  .gyt-v5-intro {
    padding: 30px 21px 36px;
    background:
      radial-gradient(circle at 94% 8%, rgba(255, 232, 208, .45), transparent 32%),
      linear-gradient(180deg, #f7fbf8 0%, #f0f8f5 100%);
  }
  .gyt-v5-route {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid #cae4df;
    border-radius: 999px;
    color: #2a7777;
    background: rgba(255,255,255,.84);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(54, 106, 91, .08);
  }
  .gyt-v5-route i { width: 9px; height: 9px; margin-right: 8px; border: 3px solid #d8f4e7; border-radius: 50%; background: #20c56c; box-sizing: content-box; }
  .gyt-v5-intro h1 {
    margin: 24px 0 20px;
    color: #153948;
    font-size: 33px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.3px;
  }
  .gyt-v5-intro h1 em { display: block; color: var(--v5-teal); font-style: normal; }
  .gyt-v5-lead { margin: 0; color: var(--v5-copy); font-size: 16px; font-weight: 580; line-height: 1.85; }

  .gyt-v5-decisions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 9px; margin: 25px 0 28px; }
  .gyt-v5-decisions span,
  .gyt-v5-process span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px 0 36px;
    border: 1px solid var(--v5-line);
    border-radius: 999px;
    color: #4d6974;
    background: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 750;
    box-shadow: 0 5px 13px rgba(42, 86, 74, .08);
  }
  .gyt-v5-decisions span::before,
  .gyt-v5-process span::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 14px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--v5-teal);
    border-bottom: 2px solid var(--v5-teal);
    transform: rotate(-45deg);
  }

  .gyt-v5-actions { display: grid; gap: 12px; }
  .gyt-v5-actions button {
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: .2px;
  }
  .gyt-v5-actions button:first-child { background: var(--v5-orange); box-shadow: 0 12px 25px rgba(255, 135, 55, .25); }
  .gyt-v5-actions button:last-child { background: var(--v5-green); box-shadow: 0 12px 25px rgba(25, 199, 104, .23); }
  .gyt-v5-actions b { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 7px; border: 1px solid rgba(255,255,255,.76); border-radius: 50%; font-size: 8px; vertical-align: 2px; }

  .gyt-v5-process-link { display: flex; align-items: center; gap: 10px; margin: 14px 2px 15px; color: #137b79; font-size: 14px; font-weight: 850; text-decoration: none; }
  .gyt-v5-process-link span { width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); }
  .gyt-v5-process { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
  .gyt-v5-process span { width: auto; min-height: 40px; padding-right: 17px; }

  .gyt-v5-contact { display: grid; gap: 15px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #cfe6df; }
  .gyt-v5-contact > div { display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 11px; }
  .gyt-v5-contact i { position: relative; grid-row: 1 / 3; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #d3e7e3; border-radius: 10px; background: #fff; }
  .gyt-v5-contact .gyt-v5-phone::before { content: ''; width: 7px; height: 13px; border-left: 2px solid var(--v5-teal); border-bottom: 2px solid var(--v5-teal); border-radius: 0 0 0 7px; transform: rotate(-38deg); }
  .gyt-v5-contact .gyt-v5-chat::before { content: ''; width: 14px; height: 10px; border: 2px solid var(--v5-teal); border-radius: 4px; }
  .gyt-v5-contact .gyt-v5-chat::after { content: ''; position: absolute; width: 5px; height: 5px; margin: 11px 0 0 -10px; border-left: 2px solid var(--v5-teal); border-bottom: 2px solid var(--v5-teal); transform: skewY(-35deg); }
  .gyt-v5-contact small { color: #7b9199; font-size: 11px; }
  .gyt-v5-contact strong { color: #21485c; font-size: 14px; letter-spacing: .2px; }
  .gyt-v5-boundary { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin-top: 22px; padding: 14px; border: 1px solid #d5e7e4; border-radius: 14px; background: rgba(255,255,255,.8); }
  .gyt-v5-boundary i { display: grid; place-items: center; width: 16px; height: 16px; border: 1.5px solid var(--v5-teal); border-radius: 50%; color: var(--v5-teal); font: 800 10px/1 serif; }
  .gyt-v5-boundary p { margin: 0; color: #617985; font-size: 11px; line-height: 1.65; }
  .gyt-v5-boundary strong { color: #2b6370; }

  .gyt-v5-scene { position: relative; margin: 0; padding: 36px 21px 56px; overflow: hidden; background: linear-gradient(180deg, #edf7f4 0%, #deefec 100%); }
  .gyt-v5-scene > img { display: block; width: 100%; height: 390px; object-fit: cover; object-position: 64% center; border-radius: 24px; box-shadow: 0 18px 40px rgba(31, 75, 72, .13); }
  .gyt-v5-scene-note { position: absolute; left: 34px; right: 34px; display: grid; grid-template-columns: 42px auto; grid-template-rows: auto auto; align-items: center; column-gap: 12px; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 10px 28px rgba(25, 63, 61, .14); }
  .gyt-v5-scene-note i { grid-row: 1 / 3; width: 42px; height: 42px; border-radius: 12px; background: #e8f7f4; }
  .gyt-v5-scene-note i::after { content: ''; display: block; width: 16px; height: 12px; margin: 14px auto 0; border: 2px solid var(--v5-teal); border-radius: 3px; }
  .gyt-v5-scene-note strong { color: #17495f; font-size: 17px; }
  .gyt-v5-scene-note span { color: #7d9198; font-size: 10px; }
  .gyt-v5-note-top { top: 60px; }
  .gyt-v5-note-bottom { bottom: 78px; }

  .gyt-v5-stats { display: grid; grid-template-columns: 1fr 1fr; background: var(--v5-navy); color: #fff; }
  .gyt-v5-stats > div { min-height: 123px; padding: 25px 13px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .gyt-v5-stats strong { display: block; font-size: 25px; font-weight: 850; }
  .gyt-v5-stats strong span { color: #f5b53b; }
  .gyt-v5-stats small { display: block; margin-top: 10px; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.5; }

  .gyt-service-promise { display: none !important; }
  .gyt-services-section { margin-top: 0; }

/* ──────────────────────────────────────────────────────────────
   [4/7] mobile-home-v6.css（首页叠加层 v6）
   适配：删除 .phone{width:390px;max-width:100%;margin:0 auto}
   （390px 外壳尺寸规则，生产无此元素）。
   ────────────────────────────────────────────────────────────── */

/* 港牙通手机首页 v6 — compact, original conversion hierarchy */
:root {
  --gyt6-orange: #ff7418;
  --gyt6-green: #09b95b;
  --gyt6-ink: #132733;
  --gyt6-muted: #65747c;
  --gyt6-cream: #fff8ef;
  --gyt6-mint: #eff9f3;
}

/* This is a mobile landing page, not an app shell. The legacy prototype tab
   bar must stay hidden even when the phone canvas is viewed in a wide browser.
   （注：真实网站底部导航为 .g-bottom-nav，本规则当前不命中任何元素。） */
.bottom-nav { display: none !important; }
.gyt-conversion-dock {
  left: 50%;
  right: auto;
  width: min(390px, 100vw);
  max-width: 100vw;
  transform: translateX(-50%);
}

.gyt-v6-hero { padding: 0; background: #fff; }
.gyt-v6-hero .gyt-v5-windowbar,
.gyt-v6-hero .gyt-v5-nav,
.gyt-v6-hero .gyt-v5-intro,
.gyt-v6-hero .gyt-v5-scene,
.gyt-v6-hero .gyt-v5-stats { display: none !important; }

.gyt6-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 10px 16px;
  border-bottom: 1px solid #edf0ee;
  background: #fff;
}
.gyt6-brand { display: grid; grid-template-columns: 88px 1fr; align-items: center; column-gap: 8px; }
.gyt6-brand picture { display:block; width:88px; }
.gyt6-brand img { width: 88px; height: 34px; object-fit: contain; object-position: left center; }
.gyt6-brand span { max-width: 118px; color: #6c7478; font-size: 8px; line-height: 1.3; }
.gyt6-nav button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--gyt6-green);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(9, 185, 91, .22);
}

.gyt6-hero-main { padding: 0 13px 13px; background: linear-gradient(180deg, #fff 0%, #fffaf4 100%); }
.gyt6-stage { position: relative; height: 260px; margin: 0 -13px; overflow: hidden; background: var(--gyt6-cream); }
.gyt6-stage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #fffaf2 0%, rgba(255,250,242,.98) 43%, rgba(255,250,242,.5) 65%, rgba(255,250,242,0) 88%); }
.gyt6-stage > .gyt6-stage-media { position:absolute; inset:0 0 0 auto; width:68%; height:100%; }
.gyt6-stage > .gyt6-stage-media img { display:block; width:100%; height:100%; object-fit:cover; object-position:62% center; }
.gyt6-copy { position: relative; z-index: 2; width: 58%; padding: 25px 0 18px 16px; }
.gyt6-kicker { display: inline-block; margin-bottom: 10px; color: #8a5a2c; font-size: 10px; font-weight: 800; letter-spacing: .8px; }
.gyt6-copy h1 { margin: 0 0 14px; color: var(--gyt6-ink); font-size: 31px; font-weight: 950; line-height: 1.08; letter-spacing: -1.2px; }
.gyt6-copy p { position: relative; margin: 7px 0; padding-left: 20px; color: #45545b; font-size: 10px; font-weight: 750; line-height: 1.45; }
.gyt6-copy p b { position: absolute; left: 0; top: 1px; width: 14px; height: 14px; border-radius: 50%; background: var(--gyt6-green); }
.gyt6-copy p b::after { content: ''; position: absolute; left: 4px; top: 3px; width: 5px; height: 3px; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg); }

.gyt6-actions { display: grid; gap: 9px; margin-top: -10px; position: relative; z-index: 3; }
.gyt6-actions button { min-height: 50px; border: 0; border-radius: 999px; color: #fff; font-size: 14px; font-weight: 850; box-shadow: 0 9px 20px rgba(25,40,30,.13); }
.gyt6-actions button:first-child { background: linear-gradient(135deg, #ff8b28, var(--gyt6-orange)); }
.gyt6-actions button:last-child { background: linear-gradient(135deg, #10c765, var(--gyt6-green)); }
.gyt6-actions span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; font-size: 8px; }
.gyt6-action-note { margin:8px 0 0; color:#77868b; font-size:9px; font-weight:650; text-align:center; }

.gyt6-assurances { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 11px; }
.gyt6-assurances > div { min-height: 78px; padding: 9px 3px 7px; text-align: center; border: 1px solid #ecece8; border-radius: 12px; background: #fff; box-shadow: 0 5px 14px rgba(35,55,45,.05); }
.gyt6-assurances i { display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto 6px; border-radius: 9px; color: var(--gyt6-green); background: #edf9f2; font-size: 11px; font-style: normal; font-weight: 900; }
.gyt6-assurances strong { display: block; color: var(--gyt6-ink); font-size: 10px; }
.gyt6-assurances small { display: block; margin-top: 3px; color: #879096; font-size: 7px; }

.gyt6-why { margin-top: 9px; padding: 24px 15px 20px; background: #fff; }
.gyt6-why header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 15px; }
.gyt6-why header span { color: var(--gyt6-orange); font-size: 9px; font-weight: 900; letter-spacing: .5px; }
.gyt6-why h2 { margin: 4px 0 0; color: var(--gyt6-ink); font-size: 20px; font-weight: 900; }
.gyt6-why header small { color: #8a9498; font-size: 9px; }
.gyt6-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.gyt6-why article { position: relative; min-height: 112px; padding: 14px 11px 11px; overflow: hidden; border: 1px solid #e6eee9; border-radius: 13px; background: linear-gradient(145deg, #fff 0%, var(--gyt6-mint) 100%); }
.gyt6-why article:nth-child(2n) { background: linear-gradient(145deg, #fff 0%, #fff5e9 100%); }
.gyt6-why article i { position: absolute; right: 8px; top: 5px; color: rgba(9,185,91,.11); font-size: 28px; font-style: normal; font-weight: 950; }
.gyt6-why article strong { position: relative; display: block; color: #173944; font-size: 13px; }
.gyt6-why article p { position: relative; margin: 8px 0 0; color: #687a80; font-size: 9px; line-height: 1.65; }
.gyt6-boundary { margin: 12px 0 0; padding: 10px 12px; border-radius: 10px; color: #748187; background: #f6f8f7; font-size: 8px; line-height: 1.6; }

.gyt-services-section .sec-head { align-items: end; }
.gyt-price-toggle { padding:6px 0 6px 10px; border:0; background:transparent; font:inherit; }
.gyt-price-toggle svg { transition:transform .2s ease; }
.gyt-prices-section.is-price-expanded .price-row:nth-of-type(n+5) { display:grid; }
.gyt-prices-section.is-price-expanded .gyt-price-toggle svg { transform:rotate(90deg); }
.gyt-services-section .sec-title,
.gyt-clinics-section .sec-title,
.gyt-doctors-section .sec-title,
.gyt-prices-section .sec-title,
.gyt-reviews-section .sec-title { font-size: 19px; }

/* Mobile-only service chooser: informative cards, not a desktop icon grid. */
.gyt-services-section { padding-top: 24px; }
.gyt-services-section .svc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.gyt-services-section .svc-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 3px;
  min-height: 102px;
  padding: 10px;
  border: 1px solid #e5ece8;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #f5faf7 100%);
  box-shadow: 0 6px 18px rgba(30, 62, 49, .055);
  text-align: left;
}
.gyt-services-section .svc-item:nth-child(n+7) { display: none; }
.gyt-services-section .svc-item:nth-child(1) { border-color: #ffe2c6; background: linear-gradient(145deg, #fff 0%, #fff6ec 100%); }
.gyt-services-section .svc-icon {
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(227,221,211,.75);
  border-radius: 14px;
  background: #fbf7f0 !important;
  box-shadow: none;
}
.gyt-services-section .svc-item:nth-child(1) .svc-icon { background: #fff5e9 !important; }
.gyt-services-section .svc-icon picture { display:block; width:100%; height:100%; }
.gyt-services-section .svc-icon img { display:block; width:100%; height:100%; object-fit:cover; }
.gyt-services-section .svc-icon svg { width: 23px; height: 23px; color: #078951 !important; }
.gyt-services-section .svc-item:nth-child(1) .svc-icon svg { color: #f06b13 !important; }
.gyt-services-section .svc-hot { display: none; }
.gyt-services-section .svc-name {
  align-self: end;
  color: #17333d;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
}
.gyt6-svc-desc {
  align-self: start;
  color: #839096;
  font-size: 8.5px;
  font-weight: 600;
  line-height: 1.35;
}
.gyt6-svc-action {
  grid-column: 2;
  color: #ef6c12;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .1px;
}
.gyt-services-section .svc-item:hover { border-color:#f4c8a9; box-shadow:0 8px 20px rgba(30,62,49,.09); }
.gyt-services-section .svc-item:focus-visible { outline:3px solid rgba(239,108,0,.22); outline-offset:2px; }
.gyt-services-section .svc-item:active { transform:scale(.985); background:#eff9f3; }

.hero-logo picture,
.hero-banner picture,
.hosp-card-img picture { display:block; width:100%; height:100%; }
.hero-banner picture img,
.hosp-card-img picture img { display:block; width:100%; height:100%; object-fit:cover; }
.hosp-featured > .gyt-hospital-media { display:block; width:100%; height:166px; }
.hosp-featured > .gyt-hospital-media img { display:block; width:100%; height:100%; object-fit:cover; }

.gyt6-context-lead { display:flex; align-items:center; justify-content:space-between; gap:10px; margin:10px 16px 0; padding:12px 13px; border:1px solid #e6ede9; border-radius:14px; background:linear-gradient(135deg,#fffaf4 0%,#f0faf4 100%); box-shadow:0 6px 18px rgba(30,62,49,.05); }
.gyt6-context-lead div { min-width:0; }
.gyt6-context-lead strong { display:block; color:#17343f; font-size:11px; line-height:1.35; }
.gyt6-context-lead span { display:block; margin-top:3px; color:#7e8c91; font-size:8px; line-height:1.35; }
.gyt6-context-lead button { flex:0 0 auto; min-height:34px; padding:0 12px; border:0; border-radius:999px; color:#fff; background:var(--gyt6-orange); font-size:9px; font-weight:850; box-shadow:0 5px 12px rgba(255,116,24,.2); }

/* A compact trust signal on the homepage; full feedback stays with clinics. */
.gyt-reviews-section { padding-top:24px; padding-bottom:24px; }
.gyt6-review-head { display:flex; align-items:end; justify-content:space-between; margin-bottom:12px; }
.gyt6-review-head span { color:var(--gyt6-orange); font-size:9px; font-weight:900; letter-spacing:.5px; }
.gyt6-review-head h2 { margin:4px 0 0; color:var(--gyt6-ink); font-size:20px; font-weight:900; }
.gyt6-review-head button { padding:5px 0 4px 8px; border:0; color:#7c8a8f; background:transparent; font:750 9px inherit; cursor:pointer; }
.gyt6-review-card { padding:14px; border:1px solid #e7ece9; border-radius:15px; background:linear-gradient(145deg,#fff 0%,#f7fbf8 100%); box-shadow:0 7px 20px rgba(30,62,49,.06); }
.gyt6-review-score { display:flex; align-items:center; gap:10px; }
.gyt6-review-score>strong { color:var(--gyt6-orange); font-size:18px; line-height:1; }
.gyt6-review-score div { display:grid; gap:2px; }
.gyt6-review-score b { color:#f5a000; font-size:11px; letter-spacing:1px; }
.gyt6-review-score span { color:#879398; font-size:8px; }
.gyt6-review-card blockquote { margin:11px 0 12px; color:#314951; font-size:11px; font-weight:650; line-height:1.65; }
.gyt6-review-card footer { display:flex; align-items:center; justify-content:space-between; padding-top:10px; border-top:1px solid #edf0ee; }
.gyt6-review-card footer>span { display:grid; grid-template-columns:30px auto; grid-template-rows:auto auto; column-gap:8px; align-items:center; }
.gyt6-review-card footer i { grid-row:1/3; display:grid; place-items:center; width:30px; height:30px; border-radius:10px; color:#fff; background:linear-gradient(135deg,#ff8b28,var(--gyt6-orange)); font-size:11px; font-style:normal; font-weight:900; }
.gyt6-review-card footer b { color:#314951; font-size:10px; }
.gyt6-review-card footer small { color:#909b9f; font-size:7.5px; }
.gyt6-review-card footer button { padding:7px 10px; border:0; border-radius:999px; color:#087b43; background:#eaf8f0; font:800 8.5px inherit; cursor:pointer; }
.gyt6-review-extra { display:grid; gap:8px; margin-top:8px; }
.gyt6-review-extra[hidden] { display:none; }
.gyt6-review-extra-card { padding:12px; border:1px solid #e7ece9; border-radius:13px; background:#fff; box-shadow:0 5px 14px rgba(30,62,49,.045); }
.gyt6-review-extra-card header { display:flex; align-items:center; justify-content:space-between; gap:8px; }
.gyt6-review-extra-card header strong { color:#314951; font-size:10px; }
.gyt6-review-extra-card header span { color:#8c999d; font-size:8px; }
.gyt6-review-extra-card p { margin:8px 0; color:#53666d; font-size:10px; line-height:1.65; }
.gyt6-review-extra-card small { display:inline-block; padding:4px 8px; border-radius:999px; color:#087b43; background:#eaf8f0; font-size:8px; font-weight:800; }

/* Homepage entry to the mobile SEO article. */
.gyt6-guides { margin-top:10px; padding:28px 16px 30px; background:#fff; }
.gyt6-guides-head { display:flex; align-items:end; justify-content:space-between; margin-bottom:15px; }
.gyt6-guides-head span { color:var(--gyt6-orange); font-size:9px; font-weight:900; letter-spacing:.5px; }
.gyt6-guides-head h2 { margin:4px 0 0; color:var(--gyt6-ink); font-size:20px; font-weight:900; }
.gyt6-guides-head a { color:#7c8a8f; font-size:10px; font-weight:700; text-decoration:none; }
.gyt6-guide-card { display:block; overflow:hidden; border:1px solid #e7ece9; border-radius:16px; color:inherit; background:#fff; text-decoration:none; box-shadow:0 8px 24px rgba(30,62,49,.07); }
.gyt6-guide-card>picture { display:block; width:100%; height:168px; }
.gyt6-guide-card>picture img { display:block; width:100%; height:100%; object-fit:cover; object-position:62% center; }
/* 模板在有真实封面时输出裸 img（无 picture 包裹），需同等约束 */
.gyt6-guide-card>img { display:block; width:100%; height:168px; object-fit:cover; object-position:62% center; }
.gyt6-guide-body { padding:14px 14px 16px; }
.gyt6-guide-body>span { display:inline-block; padding:4px 8px; border-radius:999px; color:#a44c0d; background:#fff1e5; font-size:8px; font-weight:850; }
.gyt6-guide-body h3 { margin:9px 0 6px; color:#17343f; font-size:16px; font-weight:900; line-height:1.45; }
.gyt6-guide-body p { margin:0; color:#6d7d83; font-size:10px; line-height:1.65; }
.gyt6-guide-body small { display:block; margin-top:11px; color:#9aa3a6; font-size:8px; }

/* ──────────────────────────────────────────────────────────────
   [5/7] mobile-detail-v1.css（医院/医生详情页）
   适配：.gyt-hospital-detail .phone 去除 390px 外壳尺寸，仅留背景色。
   ────────────────────────────────────────────────────────────── */

/* 港牙通医院详情页 — mobile-first institution profile */
:root { --detail-orange:#ff7418; --detail-green:#08b95b; --detail-ink:#17333f; --detail-muted:#718087; --detail-line:#e6ece9; }
/* [适配] 原型 .gyt-hospital-detail .phone{width:390px;max-width:100%;margin:0 auto;...}
   为外壳尺寸规则，已去除，仅保留页面背景色 */
.gyt-hospital-detail .phone { background:#f6f8f7; }
.gyt-hospital-detail .bottom-nav { display:none!important; }
.gyt-hospital-detail .status-bar { display:none; }
.gyt-hospital-detail .navbar { height:56px; padding:0 15px; border-bottom:1px solid var(--detail-line); background:rgba(255,255,255,.96); }
.gyt-hospital-detail .navbar .nav-back { width:36px; height:36px; border-radius:50%; background:#f1f6f3; }
.gyt-hospital-detail .navbar .nav-back svg { color:#21424e; }
.gyt-hospital-detail .navbar .nav-title { font-size:15px; color:var(--detail-ink); }
.gyt-hospital-detail .lang-wrap { display:none; }
.gyt-hospital-detail .scroll { padding-bottom:84px; background:#f6f8f7; }
.gyt-hospital-detail .dp-hero { height:210px; margin:12px 14px 0; border-radius:16px 16px 0 0; }
.gyt-hospital-detail .dp-hero img { object-position:center; }
.gyt-hospital-detail .dp-hero > .gyt-detail-hero-media { display:block; width:100%; height:100%; }
.gyt-hospital-detail .dp-hero-overlay { padding:14px; justify-content:flex-start; background:linear-gradient(180deg,rgba(10,30,30,.42),transparent 45%); }
.gyt-hospital-detail .dp-hero-overlay h1,
.gyt-hospital-detail .dp-hero-overlay .dp-loc { display:none; }
.gyt-hospital-detail .dp-badge2 { background:rgba(255,255,255,.92); color:#9b4d12; box-shadow:0 4px 14px rgba(0,0,0,.1); }
.gyt-hospital-summary { margin:0 14px; padding:18px 16px 17px; border-radius:0 0 16px 16px; background:#fff; box-shadow:0 9px 26px rgba(25,60,48,.07); }
.gyt-hospital-summary h2 { margin:0; color:var(--detail-ink); font-size:20px; font-weight:900; line-height:1.35; }
.gyt-hospital-rating { display:flex; align-items:center; gap:7px; margin-top:8px; }
.gyt-stars { color:#ff8218; font-size:13px; letter-spacing:1px; }
.gyt-hospital-rating strong { color:#344b55; font-size:13px; }
.gyt-hospital-rating small { margin-left:auto; color:#8c999e; font-size:9px; }
.gyt-hospital-tags { display:flex; gap:6px; margin-top:10px; }
.gyt-hospital-tags span { padding:5px 9px; border-radius:999px; color:#15845b; background:#eaf8f1; font-size:9px; font-weight:800; }
.gyt-hospital-facts { display:grid; gap:12px; margin-top:17px; padding-top:16px; border-top:1px solid var(--detail-line); }
.gyt-hospital-facts>div { display:grid; grid-template-columns:34px 1fr; align-items:center; gap:10px; }
.gyt-hospital-facts i { display:grid; place-items:center; width:32px; height:32px; border-radius:10px; color:#0c9360; background:#edf8f3; font-size:10px; font-style:normal; font-weight:900; }
.gyt-hospital-facts p { margin:0; }
.gyt-hospital-facts b { display:block; color:#324c58; font-size:11px; }
.gyt-hospital-facts span { display:block; margin-top:2px; color:#7a898f; font-size:10px; line-height:1.45; }
.gyt-hospital-detail .dp-body { margin:10px 14px 18px; padding:18px 16px 28px; border-radius:16px; background:#fff; }
.gyt-hospital-detail .dp-tags { margin-bottom:18px; }
.gyt-hospital-detail .dp-tags .t { color:#9d541d; background:#fff2e7; }
.gyt-hospital-detail .dp-block { margin-bottom:24px; }
.gyt-hospital-detail .dp-block-title { color:var(--detail-ink); font-size:16px; font-weight:850; }
.gyt-hospital-detail .dp-block-title::before { background:var(--detail-orange); }
.gyt-hospital-detail .dp-text { color:#64767e; line-height:1.8; }
.gyt-hospital-detail .dp-info-card { border-color:var(--detail-line); background:#f8faf9; box-shadow:none; }
.gyt-hospital-detail .dp-info-card .v { color:#24434f; font-size:12px; }
.gyt-hospital-detail .dp-doc { border-color:var(--detail-line); box-shadow:0 5px 14px rgba(25,60,48,.05); }
.gyt-hospital-detail .dp-cta { display:none!important; }

/* ──────────────────────────────────────────────────────────────
   [6/7] mobile-article-v1.css（SEO 文章页）
   ────────────────────────────────────────────────────────────── */

/* 港牙通 SEO article detail — mobile reading experience */
:root { --article-orange:#ff7418; --article-green:#08b95b; --article-ink:#142d39; --article-muted:#6f8088; --article-line:#e8ecea; }
* { box-sizing:border-box; }
html,body { margin:0; font-family:'Noto Sans TC',system-ui,-apple-system,sans-serif; background:#eef1f0; color:var(--article-ink); }
.article-phone { width:390px; max-width:100%; min-height:100svh; margin:0 auto; padding-bottom:82px; background:#fff; }
.article-nav { position:sticky; top:0; z-index:50; display:grid; grid-template-columns:40px 1fr 40px; align-items:center; min-height:56px; padding:0 12px; border-bottom:1px solid var(--article-line); background:rgba(255,255,255,.96); backdrop-filter:blur(12px); }
.article-back { display:grid; place-items:center; width:36px; height:36px; border-radius:50%; color:#274651; background:#f2f6f4; text-decoration:none; font-size:22px; }
.article-brand-media { display:block; width:82px; height:32px; margin:auto; }
.article-brand { display:block; width:82px; height:32px; object-fit:contain; }
.article-more { color:#51666f; text-align:center; font-size:16px; letter-spacing:2px; }
.article-head { padding:24px 18px 20px; }
.article-kicker { color:var(--article-orange); font-size:10px; font-weight:900; letter-spacing:.7px; }
.article-head h1 { margin:9px 0 13px; color:#102a36; font-size:25px; font-weight:950; line-height:1.28; letter-spacing:-.7px; }
.article-meta { display:flex; gap:12px; color:#8a969b; font-size:9px; }
.article-summary { margin:0 18px 18px; padding:16px; border-radius:14px; background:linear-gradient(135deg,#fff8ec,#f2faf5); }
.article-summary strong { display:block; color:#213f4b; font-size:14px; }
.article-summary p { margin:7px 0 12px; color:#697a81; font-size:11px; line-height:1.65; }
.article-summary button { width:100%; min-height:42px; border:0; border-radius:999px; color:#fff; background:var(--article-green); font-size:12px; font-weight:850; }
.article-cover { display:block; width:calc(100% - 36px); height:215px; margin:0 18px 22px; overflow:hidden; border-radius:16px; }
.article-cover img { display:block; width:100%; height:100%; object-fit:cover; object-position:60% center; }
.article-contact-placeholder { margin:0 18px 26px; padding:14px; border:1px solid #dcece4; border-radius:16px; background:#f7fcf9; box-shadow:0 8px 24px rgba(25,60,48,.05); }
.article-contact-placeholder h2 { margin:0 0 12px; color:#173640; text-align:center; font-size:17px; font-weight:900; }
.article-contact-panel { display:grid; grid-template-columns:minmax(0,1fr) 112px; align-items:center; gap:12px; padding:15px; border:1px solid #dbe9e2; border-radius:14px; background:#fff; }
.article-contact-copy strong { display:block; color:#142f39; font-size:16px; font-weight:900; line-height:1.35; }
.article-contact-copy span { display:block; margin-top:8px; color:#667a82; font-size:10px; line-height:1.65; }
.article-contact-copy small { display:inline-block; margin-top:11px; padding:5px 8px; border-radius:999px; color:#168758; background:#edf8f2; font-size:8px; font-weight:800; }
.article-qr-slot { display:grid; place-content:center; width:112px; height:112px; border:2px dashed #b9d5c8; border-radius:12px; color:#5d776d; background:repeating-linear-gradient(45deg,#f7fbf9 0,#f7fbf9 7px,#f1f7f4 7px,#f1f7f4 14px); text-align:center; }
.article-qr-slot b { display:block; color:var(--article-green); font-size:25px; font-weight:500; line-height:1; }
.article-qr-slot span { display:block; margin-top:7px; font-size:9px; font-weight:800; line-height:1.35; }
.article-contact-placeholder>p { margin:11px 0 0; color:#667b83; text-align:center; font-size:10px; font-weight:650; }
.article-content { padding:0 18px 22px; color:#465c66; font-size:14px; line-height:1.9; }
.article-content p { margin:0 0 17px; }
.article-content h2 { margin:29px 0 13px; padding-left:12px; border-left:4px solid var(--article-orange); color:#153440; font-size:19px; font-weight:900; line-height:1.42; }
.article-content h3 { margin:23px 0 10px; color:#1f4552; font-size:16px; }
.article-points { display:grid; gap:10px; margin:15px 0 20px; padding:0; list-style:none; }
.article-points li { position:relative; padding:12px 12px 12px 38px; border:1px solid var(--article-line); border-radius:12px; background:#fafcfb; font-size:12px; line-height:1.65; }
.article-points li::before { content:''; position:absolute; left:15px; top:16px; width:8px; height:4px; border-left:2px solid var(--article-green); border-bottom:2px solid var(--article-green); transform:rotate(-45deg); }
.article-note { margin:22px 0; padding:14px; border-radius:12px; color:#596f77; background:#eef8f3; font-size:11px; line-height:1.7; }
.article-related { margin:0 18px 26px; padding:18px 14px; border-top:1px solid var(--article-line); }
.article-related h2 { margin:0 0 13px; font-size:18px; }
.article-clinic { display:grid; grid-template-columns:106px 1fr; gap:12px; overflow:hidden; border:1px solid var(--article-line); border-radius:14px; color:inherit; background:#fff; text-decoration:none; box-shadow:0 7px 20px rgba(25,60,48,.06); }
.article-clinic picture { display:block; width:106px; height:100%; min-height:105px; }
.article-clinic img { display:block; width:100%; height:100%; min-height:105px; object-fit:cover; }
.article-clinic div { padding:13px 10px 12px 0; }
.article-clinic strong { display:block; color:#173540; font-size:13px; line-height:1.4; }
.article-clinic span { display:block; margin-top:7px; color:#78888e; font-size:9px; line-height:1.55; }
/* 注：真实网站底部导航为 .g-bottom-nav，以下 .bottom-nav 规则当前不命中任何元素 */
.bottom-nav { display:none!important; }
.gyt-conversion-dock { left:50%; right:auto; width:min(390px,100vw); max-width:100vw; transform:translateX(-50%); }

/* ──────────────────────────────────────────────────────────────
   [7/7] conversion-mobile.css（转化层：固定按钮、留资弹层、
   真实手机覆写）
   适配：删除 .phone{width:100%;height:100svh;...} 与
   .status-bar{display:none} 两条外壳规则（生产环境无
   .phone/.status-bar 元素；保留会破坏 ?frame=1 预览外壳）。
   ────────────────────────────────────────────────────────────── */

:root {
  --gyt-orange: #f56a16;
  --gyt-orange-dark: #df5410;
  --gyt-green: #08b957;
  --gyt-green-dark: #079e4c;
  --gyt-ink: #171717;
  --gyt-muted: #6c6c6c;
  --gyt-line: #ececec;
  --gyt-surface: #ffffff;
}

/* Lightweight image placeholder shown only while lazy media is loading. */
img[loading="lazy"] {
  background-color: #f1f5f3;
  background-image: linear-gradient(100deg, #f1f5f3 0%, #fafcfb 44%, #f1f5f3 78%);
  background-size: 210% 100%;
  animation: gyt-image-loading 1.2s ease-in-out infinite;
}
img[loading="lazy"].gyt-image-ready {
  background-image: none;
  animation: none;
}
@keyframes gyt-image-loading { to { background-position-x: -210%; } }
@media (prefers-reduced-motion: reduce) {
  img[loading="lazy"] { animation: none; }
}

/* Mobile home v2: the supplied reference's focused, conversion-first first screen. */
/* The deliverable is always a mobile landing-page canvas. */
  .hero-top { min-height: 62px; padding: 10px 16px; }
  .hero-banner { height: 342px; background: #fff8f2; }
  .hero-banner img { object-position: 69% center; }
  .hero-banner::after { background: linear-gradient(90deg, rgba(255,248,242,.99) 0%, rgba(255,248,242,.93) 43%, rgba(255,248,242,.08) 82%); }
  .hero-banner-content { width: 66%; padding: 23px 16px; }
  .hero-h1 { margin: 2px 0 8px; font-size: 28px; line-height: 1.12; }
  .hero-sub { font-size: 12px; line-height: 1.55; }
  .gyt-hero-actions { gap: 7px; margin-top: 12px; }
  .gyt-action { min-height: 42px; border-radius: 999px; font-size: 12px; box-shadow: 0 5px 14px rgba(0,0,0,.1); }
  .gyt-service-promise { gap: 8px; padding: 12px 12px 16px; }
  .gyt-promise-item { min-height: 78px; padding: 10px 3px 8px; border-radius: 10px; }
  .gyt-promise-item strong { font-size: 10px; }
  .gyt-promise-item span { font-size: 8px; }
  .svc-grid { gap: 15px 8px; }
  .svc-icon { width: 52px; height: 52px; border-radius: 15px; }
  .gyt-conversion-dock { grid-template-columns: 1fr 1.12fr; }
  .gyt-dock-btn { border-radius: 999px; }

.gyt-hero-actions,
.gyt-service-promise,
.gyt-conversion-dock,
.gyt-lead-sheet {
  display: none;
}

/* Apply the mobile conversion layer at every surrounding browser width. */
  html,
  body {
    width: 100%;
    min-height: 100%;
    height: auto;
    background: #fff;
    overflow-x: hidden;
  }

  .scroll {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .bottom-nav,
  .dp-cta {
    display: none !important;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-top {
    min-height: 64px;
    padding: 10px 16px;
    background: #fff;
  }

  .hero-logo img {
    height: 38px;
  }

  .hero-banner {
    height: 300px;
    margin: 0;
    border-radius: 0;
    background: #f7f3ef;
  }

  .hero-banner img {
    opacity: 1;
    object-position: 62% center;
  }

  .hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.1) 75%);
    pointer-events: none;
  }

  .hero-banner-content {
    z-index: 1;
    width: 72%;
    padding: 24px 16px;
    justify-content: flex-start;
  }

  .hero-badge {
    display: none;
  }

  .hero-h1 {
    margin: 4px 0 10px;
    color: var(--gyt-ink);
    font-size: 29px;
    line-height: 1.16;
    text-shadow: none;
    letter-spacing: 0;
  }

  .hero-sub {
    color: #444;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-sub strong {
    display: block;
    color: var(--gyt-green-dark);
  }

  .gyt-hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 15px;
  }

  .gyt-action {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font: 700 14px/1 'Noto Sans TC', system-ui, sans-serif;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(0,0,0,.12);
  }

  .gyt-action-primary {
    background: var(--gyt-orange);
  }

  .gyt-action-whatsapp {
    background: var(--gyt-green);
  }

  .gyt-service-promise {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 12px 14px;
    background: #fff;
    border-bottom: 1px solid var(--gyt-line);
  }

  .gyt-promise-item {
    min-width: 0;
    padding: 10px 4px 9px;
    text-align: center;
    border: 1px solid var(--gyt-line);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.04);
  }

  .gyt-promise-icon {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    margin: 0 auto 6px;
    border-radius: 50%;
    color: var(--gyt-green-dark);
    background: #eaf8f0;
    font-size: 14px;
    font-weight: 900;
  }

  .gyt-promise-item strong {
    display: block;
    color: #252525;
    font-size: 11px;
    line-height: 1.25;
  }

  .gyt-promise-item span {
    display: block;
    margin-top: 3px;
    color: #888;
    font-size: 9px;
    line-height: 1.25;
  }

  .sec {
    padding: 25px 16px 0;
  }

  .sec-head {
    margin-bottom: 15px;
  }

  .sec-title {
    font-size: 18px;
  }

  .sec-title .icon-wrap {
    display: none;
  }

  .svc-grid {
    gap: 14px 8px;
  }

  .svc-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .hosp-card,
  .doc-card,
  .testi-card,
  .dp-block {
    border-radius: 7px;
  }

  .cta-section {
    margin-bottom: 0;
    border-radius: 0;
  }

  .gyt-conversion-dock {
    position: fixed;
    z-index: 800;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 8px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--gyt-line);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
    backdrop-filter: blur(14px);
  }

  .gyt-dock-btn {
    min-width: 0;
    height: 48px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font: 700 13px/1.2 'Noto Sans TC', system-ui, sans-serif;
    cursor: pointer;
  }

  .gyt-dock-assess {
    background: var(--gyt-orange);
  }

  .gyt-dock-wa {
    background: var(--gyt-green);
  }

  .gyt-lead-sheet {
    position: fixed;
    z-index: 1200;
    inset: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(0,0,0,.46);
  }

  .gyt-lead-sheet.is-open {
    display: flex;
  }

  .gyt-lead-panel {
    width: min(100%, 430px);
    padding: 21px 18px calc(18px + env(safe-area-inset-bottom));
    border-radius: 12px 12px 8px 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0,0,0,.24);
  }

  .gyt-lead-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .gyt-lead-head h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .gyt-lead-head p {
    margin-top: 5px;
    color: var(--gyt-muted);
    font-size: 12px;
    line-height: 1.5;
  }

  .gyt-lead-close {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 50%;
    color: #555;
    background: #f1f1f1;
    font-size: 21px;
    cursor: pointer;
  }

  .gyt-lead-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin: 16px 0;
  }

  .gyt-lead-benefits span {
    padding: 8px 4px;
    border-radius: 6px;
    color: #276441;
    background: #eff9f3;
    text-align: center;
    font-size: 10px;
    font-weight: 650;
  }

  .gyt-lead-form {
    display: grid;
    gap: 10px;
  }

  .gyt-field {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid #ddd;
    border-radius: 7px;
    color: #222;
    background: #fff;
    font: 14px 'Noto Sans TC', system-ui, sans-serif;
  }

  .gyt-field:focus {
    outline: 2px solid rgba(245,106,22,.16);
    border-color: var(--gyt-orange);
  }

  .gyt-submit {
    height: 48px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--gyt-orange);
    font: 700 14px 'Noto Sans TC', system-ui, sans-serif;
    cursor: pointer;
  }

  .gyt-form-note,
  .gyt-form-message {
    color: #888;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
  }

  .gyt-form-message {
    min-height: 15px;
    color: #197642;
    font-weight: 650;
  }


/* Mobile home v2 overrides: kept last so the real phone preview uses them. */
/* Final mobile conversion refinements. */
  .hero-top { min-height: 62px; padding: 10px 16px; }
  .hero-banner { height: 342px; background: #fff8f2; }
  .hero-banner img { object-position: 69% center; }
  .hero-banner::after { background: linear-gradient(90deg, rgba(255,248,242,.99) 0%, rgba(255,248,242,.93) 43%, rgba(255,248,242,.08) 82%); }
  .hero-banner-content { width: 66%; padding: 23px 16px; }
  .hero-h1 { margin: 2px 0 8px; font-size: 28px; line-height: 1.12; }
  .hero-sub { font-size: 12px; line-height: 1.55; }
  .gyt-hero-actions { gap: 7px; margin-top: 12px; }
  .gyt-action { min-height: 42px; border-radius: 999px; font-size: 12px; box-shadow: 0 5px 14px rgba(0,0,0,.1); }
  .gyt-service-promise { gap: 8px; padding: 12px 12px 16px; }
  .gyt-promise-item { min-height: 78px; padding: 10px 3px 8px; border-radius: 10px; }
  .gyt-promise-item strong { font-size: 10px; }
  .gyt-promise-item span { font-size: 8px; }
  .svc-grid { gap: 15px 8px; }
  .svc-icon { width: 52px; height: 52px; border-radius: 15px; }
  .gyt-conversion-dock { grid-template-columns: 1fr 1.12fr; }
  .gyt-dock-btn { border-radius: 999px; }

/* ==========================================================================
   冲突补丁：原型规则误伤现有网站元素时在此修正（miniapp.css 不改动；
   本节位于本文件末尾，叠加顺序最优先）
   ========================================================================== */

/* 补丁 1 · .navbar .lang-wrap
   v4 的 .lang-wrap{display:none} 本意只是隐藏首页 hero 里的语言切换
   （原型以 .hero-wa-button 替代），但选择器未限定范围，会把内页
   partials/top-nav.blade.php 中 .navbar 的语言切换一并隐藏。
   此处恢复内页导航的语言切换（首页 hero 的仍按 v4 隐藏）。 */
.navbar .lang-wrap { display: flex; }

/* 补丁 2 · 旧底部导航与详情页 CTA 由转化坞取代
   转化层（conversion-mobile.js）已在全站注入固定转化坞
   .gyt-conversion-dock；按交付说明新版不含底部标签导航，
   隐藏旧 .g-bottom-nav，详情页 .dp-cta 维持 conversion 层的隐藏规则。 */
.g-bottom-nav { display: none !important; }

/* 补丁 3 · .scroll 底部留白
   底部固定元素现在是转化坞（约 66px+safe-area），
   预留 90px 避免最后一屏内容被遮住。 */
.scroll { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }

/* 补丁 4 · 首页 hero 保留语言切换
   v4 的 .lang-wrap{display:none} 会把 hero 内的语言切换隐藏；
   实际站点必须保留繁/EN 切换（后端 ?lang=en），恢复显示并补工具区布局。 */
.gyt6-nav-tools { display: flex; align-items: center; gap: 8px; }
.gyt-v6-hero .lang-wrap { display: flex; }

/* 补丁 5 · 转化坞居中规则冲突
   v6 的 .gyt-conversion-dock 用 left:50%+translateX(-50%) 居中，
   conversion 层（后合并）改为 left:0;right:0;margin:0 auto 但没有重置
   transform，两者叠加导致坞体向左偏移 50% 宽度、按钮跑出屏外。
   以 conversion 层的居中方式为准，清掉 v6 残留的位移。
   另：conversion 层的 max-width:600px 在桌面浏览器下过宽，
   原型坞体与内容栏同宽（约 390px），收紧一致。 */
.gyt-conversion-dock { transform: none; max-width: 390px; }
