/* =====================================================================
   郑州众生医院官网 · V3 紧凑型 CMS 模板风
   - 版式：信息密度高、列表式、区块 48px
   - 配色：墨青 + 金（品牌 V3.2）+ 暖米底 + 白卡
   - 字体：思源宋体（本地 woff2，标题）+ 系统黑体（正文）
   - 动效：轻 hover，克制动效
   ===================================================================== */

/* ---------- 字体（本地托管） ---------- */
@font-face {
  font-family: 'Noto Serif SC';
  src: url('/fonts/noto-serif-sc-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Serif SC';
  src: url('/fonts/noto-serif-sc-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Serif SC';
  src: url('/fonts/noto-serif-sc-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Serif SC';
  src: url('/fonts/noto-serif-sc-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  --primary: #103399;
  --primary-dark: #0B2A7A;
  --primary-deeper: #071C52;
  --gold: #C8A666;
  --gold-light: #D9BE85;
  --gold-pale: #F0E4CD;
  --gold-deep: #7A5C26; /* 小字号金色文字用深金，保证 4.5:1 对比度 */
  --bg: #F6F4EF;
  --bg-alt: #FDFCFA; /* 暖白（替代纯白卡，与暖米底同色温） */
  --bg-mist: #EFEAE0;
  --text: #333333;
  --text-light: #55636A;
  --text-muted: #5F6E68; /* 原 #8A958F 仅 2.8:1，改后 4.9:1 */
  --text-on-dark: rgba(255,255,255,.85);
  --hairline: #E4DED2;
  --hairline-dark: rgba(255,255,255,.14);
  --shadow-soft: 0 1px 3px rgba(16,51,153,.06);
  --shadow-lift: 0 8px 24px -10px rgba(16,51,153,.18);
  --r-lg: 12px;
  --r-md: 8px;
  --r-sm: 5px;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --maxw: 1240px;
  --nav-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--primary-dark); line-height: 1.4; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 860px; }
.section { padding: 48px 0; }
.section-soft { background: var(--bg-alt); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.center { text-align: center; }
.muted { color: var(--text-muted); font-size: 13px; }
.lead { font-size: 16px; color: var(--text-light); }
.empty { color: var(--text-muted); text-align: center; padding: 36px 0; font-size: 14px; }
.hidden { display: none !important; }

/* 区段标题（政务文件风：标题 + 短金线 + 全宽 hairline，副题/更多右对齐） */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline); flex-wrap: wrap; }
.sec-head h2 { font-size: 22px; font-weight: 700; position: relative; padding-left: 0; }
.sec-head h2::before { display: none; }
.sec-head h2::after { content: ''; display: block; width: 44px; height: 3px; background: var(--gold); margin-top: 6px; border-radius: 2px; }
.sec-head .sec-sub { color: var(--text-muted); font-size: 13px; }
.sec-head .sec-more { margin-left: auto; font-size: 13px; color: var(--primary); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.sec-head .sec-more:hover { color: var(--gold); border-color: var(--primary); }

/* 按钮 */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px; border-radius: var(--r-sm);
  background: var(--primary); color: #fff; font-size: 14px; border: 1px solid transparent; cursor: pointer;
  transition: all .3s var(--ease);
}
.btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn:active { transform: scale(.98); }
.btn-light { background: var(--bg-alt); color: var(--primary); border: 1px solid var(--hairline); }
.btn-light:hover { background: var(--bg-mist); color: var(--primary); }
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-light.btn-on-dark { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-light.btn-on-dark:hover { background: rgba(255,255,255,.12); color: #fff; }
.link { color: var(--gold-deep); font-size: 13px; }

/* =====================================================================
   顶部条：Logo + 欢迎语 + 搜索 + 快捷条
   ===================================================================== */
.top-bar { background: var(--bg-alt); border-bottom: 1px solid var(--hairline); }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-top: 6px; padding-bottom: 6px; flex-wrap: wrap; }
.top-left { display: flex; align-items: center; gap: 14px; }
.top-logo { font-family: var(--font-serif); font-weight: 900; font-size: 16px; color: var(--primary-dark); letter-spacing: .08em; }
.top-logo::after { content: ''; display: inline-block; width: 1px; height: 14px; background: var(--hairline); margin-left: 14px; vertical-align: -2px; }
.top-welcome { color: var(--text-muted); font-size: 12.5px; }
.top-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-search { display: flex; align-items: center; }
.top-search input {
  width: 180px; border: 1px solid var(--hairline); border-right: none; border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: 5px 10px; font-size: 13px; background: var(--bg); color: var(--text);
}
.top-search input:focus { outline: none; border-color: var(--gold); background: var(--bg-alt); }
.top-search button {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--primary); color: #fff; border: none; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 5px 12px; font-size: 13px; cursor: pointer; transition: background .3s;
}
.top-search button:hover { background: var(--primary-dark); }
.top-quick { display: flex; align-items: center; gap: 0; }
.top-quick a { font-size: 13px; color: var(--text-light); padding: 2px 10px; border-left: 1px solid var(--hairline); }
.top-quick a:first-child { border-left: none; }
.top-quick a:hover { color: var(--gold); }

/* =====================================================================
   主导航：深色全宽条（8 菜单）
   ===================================================================== */
.site-header { background: var(--primary-deeper); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 16px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  color: var(--primary-deeper); font-family: var(--font-serif); font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.brand-logo { height: 72px; width: auto; display: block; }
.brand-slogan {
  font-family: var(--font-serif); font-size: 15px; font-weight: 700; letter-spacing: .14em;
  color: var(--gold-light); white-space: nowrap;
  border-left: 1px solid rgba(200,166,102,.35); padding-left: 16px; line-height: 1.5;
}
.site-nav { display: flex; }
.site-nav a {
  color: var(--text-on-dark); padding: 0 18px; font-size: 16px; height: var(--nav-h);
  display: flex; align-items: center; position: relative; transition: color .3s var(--ease), background .3s var(--ease);
}
.site-nav a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.site-nav a:hover { color: var(--gold-light); background: rgba(255,255,255,.04); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--gold-light); font-weight: 600; }
.nav-toggle { display: none; background: none; border: 1px solid var(--hairline-dark); color: #fff; padding: 6px 10px; border-radius: var(--r-sm); cursor: pointer; }

/* =====================================================================
   大轮播 banner
   ===================================================================== */
.hero.slider-mode { position: relative; }
.hero.slider-mode .hero-track { position: relative; height: 440px; overflow: hidden; }
.hero.slider-mode .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); display: flex; align-items: center; }
.hero.slider-mode .hero-slide.active { opacity: 1; }
.hero.slider-mode .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* 渐变遮罩：左深右浅，文字清晰、图片通透 */
.hero.slider-mode .hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,28,82,.88) 0%, rgba(16,51,153,.55) 45%, rgba(16,51,153,.12) 100%);
}
.hero.slider-mode .hero-content { position: relative; z-index: 2; }
.hero.slider-mode .hero-content h1 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; letter-spacing: .04em; }
.hero.slider-mode .hero-content p { color: rgba(255,255,255,.82); margin-top: 12px; font-size: 16px; max-width: 560px; }
.hero-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.hero-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: all .3s var(--ease); }
.hero-dots span.active { background: var(--gold); width: 22px; border-radius: 5px; }

/* 无图占位 banner */
.hero { background: linear-gradient(140deg, var(--primary-deeper) 0%, var(--primary-dark) 60%, var(--primary) 100%); position: relative; overflow: hidden; }
.hero::before { content: '医'; position: absolute; right: -20px; bottom: -40px; font-family: var(--font-serif); font-weight: 900; font-size: 150px; line-height: 1; color: rgba(200,166,102,.05); }
.hero-static { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 56px 24px; position: relative; z-index: 2; }
.hero-copy .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .3em; color: var(--gold); margin-bottom: 14px; }
.hero-copy .hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.hero-copy h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: .06em; line-height: 1.35; }
.hero-copy p { color: rgba(255,255,255,.78); font-size: 15px; margin-top: 14px; max-width: 560px; }
.hero-seal { flex-shrink: 0; }
.hero-seal .ring {
  width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(200,166,102,.5);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-seal .ring::before { content: ''; position: absolute; width: 228px; height: 228px; border: 1px dashed rgba(200,166,102,.25); border-radius: 50%; }
.hero-seal .seal-core { text-align: center; color: var(--gold-light); font-family: var(--font-serif); }
.hero-seal .seal-core .big { font-size: 24px; letter-spacing: .28em; font-weight: 900; padding-left: .28em; }
.hero-seal .seal-core .small { font-size: 11px; letter-spacing: .36em; margin-top: 8px; padding-left: .36em; opacity: .8; }

/* =====================================================================
   活动通知横幅
   ===================================================================== */
.notice-bar { background: var(--primary-deeper); border-bottom: 1px solid rgba(200,166,102,.35); }
.notice-inner { display: flex; align-items: center; gap: 16px; padding: 8px 24px; flex-wrap: wrap; }
.notice-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--primary-deeper);
  font-weight: 700; font-size: 12px; letter-spacing: .1em; padding: 3px 12px; border-radius: 16px; white-space: nowrap;
}
.notice-tag svg { width: 12px; height: 12px; }
.notice-list { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.notice-item { color: var(--text-on-dark); font-size: 13px; padding: 3px 12px; border-radius: 14px; border: 1px solid var(--hairline-dark); transition: all .3s var(--ease); }
.notice-item:hover { border-color: var(--gold); color: var(--gold-light); }
.notice-item::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: 6px; vertical-align: 1px; }

/* =====================================================================
   信任条（医保定点/床位/底蕴/全年无休）
   ===================================================================== */
.trust-bar { background: var(--bg-alt); border-bottom: 1px solid var(--hairline); }
.trust-inner { display: grid; grid-template-columns: repeat(6, 1fr); }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-left: 1px solid var(--hairline); }
.trust-item:first-child { border-left: none; }
.trust-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-ico svg { width: 18px; height: 18px; fill: currentColor; }
.trust-item strong { display: block; font-family: var(--font-serif); font-size: 15px; color: var(--primary-dark); line-height: 1.4; }
.trust-item small { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

/* =====================================================================
   就诊范围（9 科室 3×3）
   ===================================================================== */
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.scope-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 16px 18px; transition: all .3s var(--ease);
}
.scope-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.scope-num {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text-muted);
  line-height: 1; padding-top: 4px; min-width: 26px;
}
.scope-body h3 { font-size: 16px; margin-bottom: 4px; color: var(--primary-dark); }
.scope-body p { color: var(--text-light); font-size: 13px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* =====================================================================
   快捷入口 8 宫格
   ===================================================================== */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 18px 12px; transition: all .3s var(--ease);
}
.quick-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.quick-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 2px;
}
.quick-ico svg { width: 22px; height: 22px; fill: currentColor; }
.quick-card strong { font-size: 15px; color: var(--primary-dark); font-weight: 600; }
.quick-card .quick-tip { font-size: 12px; color: var(--text-muted); }

/* =====================================================================
   信息流 4 列
   ===================================================================== */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-col { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 18px; display: flex; flex-direction: column; }
.info-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--primary-dark); padding-bottom: 8px; margin-bottom: 8px; }
.info-head h3 { font-size: 16px; color: var(--primary-dark); }
.info-head .more { font-size: 12px; color: var(--gold-deep); }
.info-head .more:hover { color: var(--primary); }
.info-list { flex: 1; }
.info-list li { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px dashed var(--hairline); }
.info-list li:last-child { border-bottom: none; }
.info-list a { flex: 1; font-size: 13.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .3s var(--ease), transform .3s var(--ease); }
.info-list a:hover { color: var(--gold-deep); transform: translateX(3px); }
.info-list .date { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.info-list .empty-li { color: var(--text-muted); font-size: 13px; padding: 14px 0; }

/* =====================================================================
   信息流 2+1 主次（左工作动态头条 + 右三列）
   ===================================================================== */
.info-split { display: grid; grid-template-columns: 1.7fr 1fr; gap: 18px; align-items: start; }
.info-feature { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 20px; }
.feat-top { display: block; padding: 12px 0 16px; margin-bottom: 6px; border-bottom: 2px solid var(--primary-dark); }
.feat-top h4 { font-family: var(--font-serif); font-size: 19px; color: var(--primary-dark); line-height: 1.5; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s var(--ease); }
.feat-top p { color: var(--text-light); font-size: 13.5px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.feat-top:hover h4 { color: var(--gold-deep); }
.feat-date { font-size: 12px; color: var(--text-muted); }
.info-mini { display: flex; flex-direction: column; gap: 18px; }
.mini-col { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 16px 18px; }
.mini-col .info-list li { padding: 7px 0; }

/* =====================================================================
   专家介绍（zz6y 版式）
   ===================================================================== */
.doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.doc-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 16px; transition: all .3s var(--ease);
}
.doc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.doc-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale);
  color: var(--primary); font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.doc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doc-info { min-width: 0; }
.doc-info strong { display: block; font-size: 16px; color: var(--primary-dark); font-family: var(--font-serif); }
.doc-info .doc-title { display: inline-block; font-size: 12px; color: var(--gold-deep); margin: 2px 0 6px; }
.doc-info .doc-spe { font-size: 12.5px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.doc-info .doc-time { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.doc-empty { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 26px 20px 20px; }
.team-stats { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.team-stat { display: flex; align-items: baseline; gap: 8px; background: var(--bg-mist); border-radius: var(--r-sm); padding: 8px 16px; }
.team-stat strong { font-family: var(--font-serif); font-size: 20px; font-weight: 900; color: var(--primary); }
.team-stat span { font-size: 13px; color: var(--text-light); }

/* =====================================================================
   医院文化
   ===================================================================== */
.culture-band { background: linear-gradient(140deg, var(--primary-deeper), var(--primary-dark)); }
.culture-band .sec-head { border-bottom-color: var(--hairline-dark); }
.culture-band .sec-head h2 { color: #fff; }
.culture-band .sec-head h2::before { background: var(--gold); }
.culture-band .sec-head .sec-sub { color: rgba(255,255,255,.6); }
.culture-main { text-align: center; padding: 12px 0 4px; }
.motto-kicker {
  display: inline-block; font-size: 12px; letter-spacing: .34em; color: var(--gold);
  border: 1px solid rgba(200,166,102,.4); border-radius: 3px; padding: 2px 10px; margin-bottom: 16px;
}
.motto strong {
  display: block; font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(30px, 4.4vw, 44px); color: #fff; letter-spacing: .18em; line-height: 1.5;
}
.culture-tags { display: flex; justify-content: center; gap: 10px; margin: 22px 0; flex-wrap: wrap; }
.c-tag {
  font-family: var(--font-serif); font-size: 14px; color: var(--gold-light);
  border: 1px solid rgba(200,166,102,.35); border-radius: 20px; padding: 4px 18px; letter-spacing: .14em;
}
.culture-tl { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; color: rgba(255,255,255,.65); font-size: 13.5px; }
.culture-tl i { font-style: normal; color: var(--gold); }
/* 品牌承诺（首页核心展示） */
.promise-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 6px 0 26px; }
.promise-col {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  padding: 22px 20px; text-align: center;
}
.promise-col h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 900; color: var(--gold); letter-spacing: .3em;
  margin-bottom: 14px;
}
.promise-col ul { list-style: none; }
.promise-col li { color: rgba(255,255,255,.82); font-size: 14px; padding: 5px 0; }
.promise-col li::before { content: '◆'; font-size: 8px; color: var(--gold); margin-right: 8px; vertical-align: 2px; }
.promise-line {
  text-align: center; font-family: var(--font-serif); font-size: 20px; letter-spacing: .08em;
  color: #fff; margin-bottom: 18px;
}
.culture-meta { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 22px; }
.culture-meta span { border-left: 2px solid var(--gold); padding-left: 10px; }
@media (max-width: 767px) {
  .promise-main { grid-template-columns: 1fr; }
}

/* =====================================================================
   友情链接
   ===================================================================== */
.friend-links { background: var(--bg-alt); border-top: 1px solid var(--hairline); }
.friend-links .container { display: flex; align-items: center; gap: 18px; padding-top: 16px; padding-bottom: 16px; flex-wrap: wrap; }
.fl-label { font-size: 13px; color: var(--text-muted); }
.friend-links a { font-size: 13px; color: var(--text-light); }
.friend-links a:hover { color: var(--gold); }

/* =====================================================================
   页脚
   ===================================================================== */
.site-footer { background: var(--primary-deeper); color: rgba(255,255,255,.72); padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.site-footer h4 { color: var(--gold-light); margin-bottom: 12px; font-size: 15px; letter-spacing: .08em; }
.site-footer p, .site-footer li { font-size: 13px; margin-bottom: 6px; color: rgba(255,255,255,.65); }
.site-footer a { color: rgba(255,255,255,.65); }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--hairline-dark); padding-top: 14px; text-align: center; }
.footer-bottom p { font-size: 12px; }

/* =====================================================================
   子页公共：横幅 + 内容
   ===================================================================== */
.page-hero { background: linear-gradient(140deg, var(--primary-deeper), var(--primary-dark)); color: #fff; padding: 34px 0; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: 26px; letter-spacing: .06em; }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 4px; font-size: 13.5px; }
.page-hero a { color: var(--gold-light); }

/* 内容卡 */
.content-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 26px; margin-bottom: 16px; }
.content-card h2 { font-size: 20px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-dark); position: relative; }
.content-card h2::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 60px; height: 2px; background: var(--gold); }
.prose p { margin-bottom: 12px; color: var(--text-light); font-size: 14.5px; }
.prose h3 { margin: 20px 0 10px; font-size: 17px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; color: var(--text-light); }
.prose ol { list-style: decimal; padding-left: 22px; margin-bottom: 12px; color: var(--text-light); }
.prose li { margin-bottom: 5px; }
.prose img { border-radius: var(--r-md); margin: 16px 0; }
.prose blockquote { border-left: 3px solid var(--gold); background: rgba(200,166,102,.07); padding: 10px 14px; margin: 14px 0; border-radius: 0 6px 6px 0; color: var(--text-light); font-size: 14px; }
.article-cover img { width: 100%; border-radius: var(--r-md); margin: 0 0 18px; border: 1px solid var(--hairline); }

/* 科室列表（子页） */
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dep-card {
  background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 20px; transition: all .3s var(--ease); display: block;
}
.dep-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.dep-card h3 { font-size: 17px; margin-bottom: 8px; }
.dep-card p { color: var(--text-light); font-size: 13.5px; margin-bottom: 10px; }
.dep-more { color: var(--gold-deep); font-size: 13px; font-weight: 600; }

/* 资讯列表页 */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 14px 12px; border-bottom: 1px solid var(--hairline); transition: all .3s var(--ease);
}
.news-row:first-child { border-top: 1px solid var(--hairline); }
.news-row:hover { background: var(--bg-alt); padding-left: 20px; }
.news-row h3 { font-size: 15.5px; margin-bottom: 3px; }
.news-row p { color: var(--text-light); font-size: 13px; }
.news-row .news-date { white-space: nowrap; font-size: 13px; color: var(--text-muted); }

/* 分类筛选 */
.filter-bar { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.chip { padding: 6px 16px; border-radius: 16px; border: 1px solid var(--hairline); color: var(--text-light); font-size: 13px; background: var(--bg-alt); transition: all .3s var(--ease); }
.chip:hover { border-color: var(--gold); color: var(--primary); }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 24px; }
.page-info { color: var(--text-muted); font-size: 13px; }

/* 医生子页 */
.doc-card-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.doctor-detail { display: flex; gap: 28px; align-items: center; }
.avatar-lg { width: 96px; height: 96px; border-radius: 50%; background: var(--gold-pale); color: var(--primary); font-family: var(--font-serif); font-size: 36px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.doctor-info h2 { font-size: 22px; margin-bottom: 6px; }
.doctor-info p { color: var(--text-light); font-size: 14px; margin-bottom: 4px; }
.doctor-info .lead { color: var(--gold); font-weight: 600; }

/* 联系页 */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--hairline); }
.contact-list li:last-child { border-bottom: none; }
.contact-list strong { display: block; color: var(--primary-dark); font-family: var(--font-serif); font-size: 15px; }
.contact-list p { color: var(--text-light); font-size: 14px; }
.ci { width: 30px; height: 30px; color: var(--gold); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci svg { width: 22px; height: 22px; fill: currentColor; }
.map-addr { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.nav-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.map-card iframe { width: 100%; border-radius: var(--r-md); border: 1px solid var(--hairline); }

/* 表单（预约/留言） */
.form-panel { max-width: 640px; }.form-panel .grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-panel label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--text-light); }
.form-panel input, .form-panel select, .form-panel textarea {
  border: 1px solid var(--hairline); border-radius: var(--r-sm); padding: 9px 12px; font-size: 14px;
  font-family: inherit; background: #fff; color: var(--text);
}
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus { outline: 2px solid var(--gold-pale); border-color: var(--gold); }
.input-invalid { border-color: #C0392B !important; }
.field-err { color: #C0392B; font-size: 12px; margin-top: 4px; }
.form-panel .full { grid-column: 1 / -1; }
.form-panel .actions { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; }
.form-ok { background: #EDF5EE; color: #2E5E43; border: 1px solid #C9DFCE; border-radius: var(--r-sm); padding: 10px 14px; font-size: 14px; margin-bottom: 14px; }
.form-error { background: #F9E8E6; color: #8E3A34; border: 1px solid #F0CFCB; border-radius: var(--r-sm); padding: 10px 14px; font-size: 14px; margin-bottom: 14px; }

/* 门诊排班表 */
.schedule-table { width: 100%; border-collapse: collapse; background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; }
.schedule-table th { background: var(--primary); color: #fff; padding: 10px 12px; text-align: left; font-size: 13.5px; }
.schedule-table td { padding: 10px 12px; border-bottom: 1px solid var(--hairline); font-size: 13.5px; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: #F7F4EC; }

/* 搜索页 */
.search-stats { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
.search-res h3 { font-size: 17px; margin: 18px 0 8px; padding-left: 10px; border-left: 3px solid var(--gold); }

/* 弹窗（活动详情） */
.modal-mask { position: fixed; inset: 0; background: rgba(14,35,48,.6); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal { background: var(--bg-alt); border-radius: var(--r-lg); max-width: 620px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 28px; position: relative; box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 6px; }
.modal h3 { font-size: 20px; margin-bottom: 12px; padding-right: 28px; }

.breadcrumb { font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.bc-sep { opacity: .6; }

/* flash */
.flash { padding: 10px 16px; border-radius: var(--r-sm); margin: 12px auto; max-width: var(--maxw); font-size: 13px; }
.flash-info { background: #EAF0E6; color: #2E5E43; }
.flash-error { background: #F9E8E6; color: #8E3A34; }

/* =====================================================================
   响应式
   ===================================================================== */
@media (max-width: 1199px) {
  /* 信任条 7 项：1199px 以下 4 列（4+3 两行），行首项无线 */
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-left: 1px solid var(--hairline); }
  .trust-item:nth-child(4n+1) { border-left: none; }
}

@media (max-width: 1023px) {
  .scope-grid, .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(4, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-split { grid-template-columns: 1fr; }
  .info-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .doc-card-list, .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero.slider-mode .hero-track { height: 360px; }
}

@media (max-width: 767px) {
  .section { padding: 36px 0; }
  .scope-grid, .doc-grid, .quick-grid, .info-grid, .doc-card-list, .dep-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  /* 2 列：覆盖 1199px 的 4 列线，奇数列无线，偶数列补竖线，底部横线分隔 */
  .trust-item, .trust-item:nth-child(4n+1) { border-left: none; border-bottom: 1px solid var(--hairline); }
  .trust-item:nth-child(even) { border-left: 1px solid var(--hairline); }
  .trust-item:last-child { border-bottom: none; grid-column: 1 / -1; }
  .info-mini { grid-template-columns: 1fr; }
  /* 触控目标 ≥44px（移动端） */
  .chip { padding: 9px 18px; }
  .notice-item { padding: 7px 14px; }
  .top-quick a { padding: 6px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-static { flex-direction: column; text-align: center; padding: 40px 24px; }
  .hero-seal { display: none; }
  .hero.slider-mode .hero-track { height: 300px; }
  .top-right { width: 100%; justify-content: space-between; }
  .top-search input { width: 140px; }
  .site-nav {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--primary-deeper); flex-direction: column; padding: 8px 16px 14px;
    border-bottom: 1px solid var(--hairline-dark); box-shadow: 0 16px 30px rgba(0,0,0,.25);
  }
  .site-nav.open { display: flex; }
  .site-nav a { height: auto; padding: 11px 10px; border-bottom: 1px solid var(--hairline-dark); }
  .site-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .form-panel .grid-form { grid-template-columns: 1fr; }
  .news-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .doctor-detail { flex-direction: column; text-align: center; }
  .schedule-table { font-size: 12.5px; }
  .schedule-table th, .schedule-table td { padding: 8px; }
}

/* 尊重减弱动效偏好 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .hero-slide, .hero-dots span { transition: none !important; }
}

/* =====================================================================
   V3 兼容层：子页面旧类名的紧凑风适配
   ===================================================================== */
/* 滚动揭示（仅 JS 可用时启用；无 JS / reduced-motion 时正常显示） */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* 区段标题（旧结构，about 页用，与 sec-head 同款政务文件风） */
.section-head { margin-bottom: 24px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline); }
.section-head h2 { font-size: 22px; margin-top: 0; font-weight: 700; }
.section-head h2::after { content: ''; display: block; width: 44px; height: 3px; background: var(--gold); margin-top: 6px; border-radius: 2px; }
.section-head p { color: var(--text-light); margin-top: 8px; font-size: 14px; max-width: 640px; }
.section-head .link { float: right; font-size: 13px; color: var(--primary); border-bottom: 1px solid var(--gold); padding-bottom: 1px; margin-top: -28px; }

/* 子目录导航 */
.subnav { background: var(--bg-alt); border-bottom: 1px solid var(--hairline); position: sticky; top: var(--nav-h); z-index: 90; }
.subnav-inner { display: flex; }
.subnav a { padding: 13px 20px; font-size: 14px; color: var(--text-light); border-bottom: 2px solid transparent; transition: all .3s var(--ease); font-weight: 500; }
.subnav a:hover { color: var(--primary); }
.subnav a.active { color: var(--primary-dark); font-weight: 700; border-bottom-color: var(--gold); }

/* 时间线 */
.timeline { position: relative; margin: 26px 0 0; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--gold-pale); }
.tl-item { display: grid; grid-template-columns: 86px 1fr; gap: 18px; padding: 0 0 26px 32px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 2px; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 2px solid var(--gold); }
.tl-year { font-family: var(--font-serif); font-size: 22px; color: var(--gold); font-weight: 700; }
.tl-item p { color: var(--text-light); font-size: 14px; }

/* 文化墙 */
.culture-block { margin-bottom: 40px; }
.culture-block > h3 { font-size: 17px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.culture-block > h3::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.culture-quote {
  font-family: var(--font-serif); font-size: clamp(26px, 3.6vw, 36px); font-weight: 900; color: #fff;
  text-align: center; letter-spacing: .12em; line-height: 1.6;
  background: linear-gradient(140deg, var(--primary-deeper), var(--primary-dark));
  border-radius: var(--r-lg); padding: 40px 26px; position: relative; overflow: hidden;
}
.culture-quote small { display: block; font-size: 13px; color: var(--gold); letter-spacing: .2em; margin-top: 10px; font-weight: 400; }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.culture-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 22px; }
.culture-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 15px; letter-spacing: .16em; }
.culture-card p { color: var(--text-light); font-size: 14px; }

/* 价值观 2x2 */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 22px; transition: all .3s var(--ease); }
.value-card:hover { border-color: var(--gold); }
.value-card h3 { font-size: 24px; margin-bottom: 8px; font-weight: 900; }
.value-card p { color: var(--text-light); font-size: 13.5px; }

/* 六则 / 承诺 */
.liu-grid { display: flex; flex-direction: column; }
.liu-item { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 16px 8px; border-bottom: 1px solid var(--hairline); }
.liu-item:first-child { border-top: 2px solid var(--primary-dark); }
.liu-item b { font-family: var(--font-serif); font-size: 15px; color: var(--primary-dark); }
.liu-item p { color: var(--text-light); font-size: 13.5px; }
.promise-grid { display: flex; flex-direction: column; }
.promise-item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 14px 8px; border-bottom: 1px solid var(--hairline); }
.promise-item b { font-family: var(--font-serif); font-size: 15px; color: var(--primary); }
.promise-item p { color: var(--text-light); font-size: 13.5px; }
/* 差异化对照表（品牌承诺页） */
.diff-table { border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; }
.diff-row { display: grid; grid-template-columns: 1fr 1.4fr; }
.diff-row span { padding: 13px 18px; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.diff-row span:first-child { color: var(--text-light); background: var(--bg-mist); }
.diff-row span:last-child { color: var(--text); }
.diff-head span { font-family: var(--font-serif); font-weight: 700; color: var(--primary-dark); }
.diff-row:last-child span { border-bottom: none; }
@media (max-width: 767px) {
  .diff-row { grid-template-columns: 1fr; }
  .diff-row span { border-bottom: 1px solid var(--hairline); }
}
/* 验证码（预约/留言） */
.captcha-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.captcha-expr {
  font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--primary-dark);
  background: var(--bg-mist); border: 1px dashed var(--gold); border-radius: var(--r-sm);
  padding: 7px 16px; min-width: 92px; text-align: center; letter-spacing: .06em;
}

/* 科室列表（编号式） */
.dep-list { border-top: 2px solid var(--primary-dark); }
.dep-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: center; padding: 20px 8px; border-bottom: 1px solid var(--hairline); transition: all .3s var(--ease); }
.dep-row:hover { background: var(--bg-alt); padding-left: 16px; }
.dep-row .dep-num { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); font-weight: 600; }
.dep-row .dep-body h3 { font-size: 17px; margin-bottom: 4px; }
.dep-row .dep-body p { color: var(--text-light); font-size: 13.5px; }
.dep-row .dep-arrow { color: var(--gold); font-size: 18px; transition: transform .3s var(--ease); }
.dep-row:hover .dep-arrow { transform: translateX(5px); }

/* 医生（子页网格/详情/迷你） */
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.doctor-card {
  background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 22px; text-align: center; transition: all .3s var(--ease); display: block;
}
.doctor-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.doctor-card h3 { margin: 12px 0 4px; font-size: 17px; }
.doctor-card .muted { font-size: 12px; }
.doctor-card p { color: var(--text-light); font-size: 13px; }
.doctor-mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.doctor-mini { display: flex; gap: 12px; align-items: center; background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 14px; transition: all .3s var(--ease); }
.doctor-mini:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-soft); }
.doctor-mini h3 { font-size: 14px; }
.doctor-mini p { color: var(--text-light); font-size: 12.5px; }
.doctor-detail { display: flex; gap: 24px; align-items: center; }
.doctor-info h2 { font-size: 22px; margin-bottom: 6px; }
.doctor-info p { color: var(--text-light); font-size: 14px; margin-bottom: 4px; }
.doctor-info .lead { color: var(--gold); font-weight: 600; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-pale); color: var(--primary); font-family: var(--font-serif); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-xl { width: 120px; height: 120px; font-size: 44px; }

/* 详情卡 / 文章 */
.detail-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 24px; margin-bottom: 16px; }
.detail-card h2 { font-size: 19px; margin-bottom: 12px; }
.article { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 32px; }
.article-head { margin-bottom: 20px; border-bottom: 1px solid var(--hairline); padding-bottom: 18px; }
.article-head h1 { font-size: 24px; margin: 10px 0 6px; }
.article-lead { color: var(--text-light); font-size: 15px; margin-bottom: 18px; }
.news-cat { display: inline-block; font-size: 12px; color: var(--gold-deep); border: 1px solid var(--gold-pale); border-radius: 4px; padding: 1px 10px; letter-spacing: .08em; background: rgba(200,166,102,.06); }

/* 资讯行式（含 body 结构） */
.news-row-body h3 { font-size: 15.5px; margin-bottom: 4px; }
.news-row-body p { color: var(--text-light); font-size: 13px; }
.news-date { font-size: 12.5px; color: var(--text-muted); }

/* 活动列表 */
.act-list { display: flex; flex-direction: column; gap: 14px; }
.act-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 22px; transition: all .3s var(--ease); }
.act-card:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-soft); }
.act-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.act-badge { background: var(--gold); color: #fff; font-size: 12px; padding: 2px 12px; border-radius: 4px; letter-spacing: .1em; }
.act-card h3 { font-size: 16px; }
.act-open { cursor: pointer; }

/* 空状态卡 */
.empty-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 36px; text-align: center; }
.empty-card h3 { margin-bottom: 8px; }

/* 联系页 */
.contact-card { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 24px; }
.contact-card h2 { font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.contact-card h2::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.qr-box { margin-top: 16px; text-align: center; }
.qr-box img { width: 120px; margin: 0 auto; border: 1px solid var(--hairline); border-radius: var(--r-sm); }
.qr-box p { color: var(--text-muted); font-size: 12.5px; margin-top: 4px; }
.map-pin { width: 48px; height: 48px; margin: 0 auto 12px; background: var(--bg-mist); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.map-pin svg { width: 26px; height: 26px; }
.map-placeholder { text-align: center; padding: 10px 0; }

/* 表单（通用） */
.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-form label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--text-light); }
.grid-form input, .grid-form select, .grid-form textarea { border: 1px solid var(--hairline); border-radius: var(--r-sm); padding: 9px 12px; font-size: 14px; font-family: inherit; background: #fff; color: var(--text); }
.grid-form input:focus, .grid-form select:focus, .grid-form textarea:focus { outline: 2px solid var(--gold-pale); border-color: var(--gold); }
.grid-form textarea { resize: vertical; }
.actions { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; }
.full { grid-column: 1 / -1; }

@media (max-width: 767px) {
  .doctor-grid { grid-template-columns: 1fr; }
  .culture-grid, .values-grid { grid-template-columns: 1fr; }
  .dep-row { grid-template-columns: 44px 1fr; }
  .dep-row .dep-arrow { display: none; }
  .tl-item { grid-template-columns: 64px 1fr; }
  .liu-item, .promise-item { grid-template-columns: 1fr; gap: 6px; }
  .article { padding: 20px; }
  .doctor-detail { flex-direction: column; text-align: center; }
  .subnav-inner { flex-wrap: wrap; }
  .subnav a { padding: 11px 14px; font-size: 13px; }
  .grid-form { grid-template-columns: 1fr; }
}
