/* ============================================================
   广汉市精神病医院 / 广汉市第三人民医院 — 全站样式
   基于参考站 React+TailwindCSS 设计稿还原
   ============================================================ */

@font-face {
  font-family: 'DingTalk JinBuTi';
  src: url('../font/DingTalk%20JinBuTi.ttf') format('truetype');
  font-display: swap;
}

/* ---------- CSS 变量 ---------- */
:root {
  --green:       #18a56e;
  --green-dark:  #148f5f;
  --green-light: #e7f6ee;
  --green-bg:    #f0faf6;
  --gold:        #f0a62b;
  --gold2:       #f2b53d;
  --gold-light:  #fdf1d7;
  --red:         #c8151f;
  --red2:        #e0574e;
  --red-light:   #fdeaea;
  --warm-bg:     #fef7ef;
  --dark:        #2b3537;
  --body:        #4a5759;
  --muted:       #8a9694;
  --muted2:      #9aa5a3;
  --border:      #eef2f0;
  --max-w:       1360px;
  --radius:      20px;
  --shadow-card: 0 10px 36px rgba(18,120,80,.07);
  --shadow-hover:0 16px 44px rgba(18,120,80,.13);
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { background: #fff; overflow-x: clip; }  /* overflow-x:clip 裁剪横向溢出、消除横向滚动条，且不会像 hidden 那样破坏 sticky 吸顶 */
body {
  margin: 0 auto;              /* 水平居中：超过最大宽度时两边留白 */
  max-width: 1920px;           /* 最大宽度：超过此值界面居中，两边留白 */
  font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue',Arial,sans-serif;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none !important; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0; }

/* ---------- 通用容器 ---------- */
.hos-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 顶部无障碍服务横条 ---------- */
.hos-topbar { height: 50px; background: var(--green); position: sticky; top: 0; z-index: 101; }
.hos-topbar-inner { height: 50px; display: flex; align-items: center; justify-content: flex-end; }
.hos-topbar-actions { display: flex; align-items: center; gap: 8px; }
.hos-topbar-btn {
  border: none; background: none; color: #fff;
  font-size: 16px; letter-spacing: .05em; cursor: pointer;
  padding: 8px 18px; border-radius: 99px; transition: background .2s;
}
.hos-topbar-btn:hover { background: rgba(255,255,255,.18); }
.hos-topbar-btn.active { background: rgba(255,255,255,.28); font-weight: 700; }
.hos-topbar-search {
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; padding: 7px 10px; border-radius: 99px; transition: background .2s;
}
.hos-topbar-search:hover { background: rgba(255,255,255,.18); }
.hos-topbar-search svg { width: 18px; height: 18px; }
/* 黑白模式：全站灰度 */
html.grayscale { filter: grayscale(100%); -webkit-filter: grayscale(100%); }
/* ============================================================
   无障碍辅助工具条 + 适老版（逻辑见 _files/js/aria.js）
   ============================================================ */
/* 工具条启用时为页面顶部腾出空间 */
body.aria-toolbar-on { padding-top: 84px !important; }

#ariaToolbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  height: 84px; background: #505050 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
#ariaToolbar .aria-toolbar-inner {
  height: 84px; display: flex; align-items: center; gap: 12px;
  max-width: 1400px; margin: 0 auto; padding: 0 14px;
}
#ariaToolbar .aria-toolbar-brand {
  display: flex; align-items: center; gap: 7px; flex-shrink: 0;
  color: #ff9027 !important; font-size: 18px !important; font-weight: 700;
}
#ariaToolbar .aria-toolbar-brand svg { width: 26px; height: 26px; }
#ariaToolbar .aria-toolbar-brand span { font-size: 18px !important; }
#ariaToolbar .aria-toolbar-btns {
  display: flex; align-items: center; gap: 2px;
  overflow-x: auto; flex: 1; min-width: 0;
  -webkit-overflow-scrolling: touch;
}
#ariaToolbar .aria-tbtn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; flex-shrink: 0; min-width: 74px;
  border: none; background: none; cursor: pointer;
  color: #fff !important; font-size: 14px !important; line-height: 1.2;
  padding: 8px 10px; border-radius: 6px; transition: background .2s;
}
#ariaToolbar .aria-tbtn span { font-size: 14px !important; }
#ariaToolbar .aria-tbtn svg { width: 24px; height: 24px; }
#ariaToolbar .aria-tbtn:hover { background: rgba(255,255,255,.18); }
#ariaToolbar .aria-tbtn.active { background: #ff9027 !important; color: #fff !important; }

/* ---------- 高对比配色（4 种，循环切换） ---------- */
/* 深蓝白 */
html.aria-theme-blue, html.aria-theme-blue body { background: #00294a !important; }
html.aria-theme-blue * { color: #fff !important; }
html.aria-theme-blue *:not(img):not(svg):not(iframe):not(video) {
  background-color: #00294a !important; background-image: none !important; border-color: #4a7ab5 !important;
}
/* 黑底白字 */
html.aria-theme-black, html.aria-theme-black body { background: #000 !important; }
html.aria-theme-black * { color: #fff !important; }
html.aria-theme-black *:not(img):not(svg):not(iframe):not(video) {
  background-color: #000 !important; background-image: none !important; border-color: #555 !important;
}
/* 森林绿 */
html.aria-theme-green, html.aria-theme-green body { background: #0b3d0b !important; }
html.aria-theme-green * { color: #e8ffe8 !important; }
html.aria-theme-green *:not(img):not(svg):not(iframe):not(video) {
  background-color: #0b3d0b !important; background-image: none !important; border-color: #2e7d32 !important;
}
/* 巧克力 */
html.aria-theme-choco, html.aria-theme-choco body { background: #3e2723 !important; }
html.aria-theme-choco * { color: #ffe0b2 !important; }
html.aria-theme-choco *:not(img):not(svg):not(iframe):not(video) {
  background-color: #3e2723 !important; background-image: none !important; border-color: #8d6e63 !important;
}

/* ---------- 适老版：放大正文、标题与行高 ---------- */
html.aria-elderly body, html.aria-elderly p, html.aria-elderly li, html.aria-elderly a,
html.aria-elderly span, html.aria-elderly div, html.aria-elderly td, html.aria-elderly th,
html.aria-elderly label, html.aria-elderly button, html.aria-elderly input, html.aria-elderly select {
  font-size: 18px !important; line-height: 1.8 !important;
}
html.aria-elderly h1 { font-size: 32px !important; }
html.aria-elderly h2 { font-size: 28px !important; }
html.aria-elderly h3 { font-size: 24px !important; }
html.aria-elderly h4 { font-size: 21px !important; }

/* ---------- 大鼠标指针 ---------- */
html.aria-bigmouse, html.aria-bigmouse * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath d='M4 2 L20 12 L12 13.5 L9 22 Z' fill='%23000' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") 4 2, auto !important;
}

/* ---------- 十字线 ---------- */
.aria-cross-h, .aria-cross-v { position: fixed; z-index: 99998; pointer-events: none; background: rgba(220,53,69,.75); display: none; }
.aria-cross-h { left: 0; right: 0; height: 2px; }
.aria-cross-v { top: 0; bottom: 0; width: 2px; }

/* ---------- 大字幕 ---------- */
#ariaBigSub {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 99998; max-width: 82%;
  background: #000 !important; color: #fff !important;
  font-size: 26px !important; line-height: 1.5;
  padding: 12px 22px; border-radius: 10px;
  display: none; pointer-events: none; text-align: center;
}

/* ============================================================
   顶部导航（内页）
   ============================================================ */
.hos-header {
  position: sticky;
  top: 50px;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.hos-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  height: 76px;
}
.hos-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  width: fit-content;
  min-width: 0;
}
.hos-logo > div {
  flex: 0 0 auto;
  width: fit-content;
  min-width: 0;
}
.hos-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green);
  box-shadow: 0 4px 12px rgba(24,165,110,.35);
  flex-shrink: 0;
}
.hos-logo-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.2; }
.hos-logo-name {
  display: inline-block;
  width: max-content;
  max-width: 350px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.hos-logo-sub  { font-size: 11px; color: var(--muted2); margin-top: 2px; }

.hos-nav {
  display: flex;
  align-items: center;
  align-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px 36px;
  justify-content: flex-start;
  align-self: stretch;
}
.hos-nav a, .hos-nav-label {
  position: relative;
  padding-bottom: 8px;
  font-size: 15px;
  color: var(--body);
  transition: color .2s;
  flex: 0 0 auto;
  white-space: nowrap;
}
.hos-nav-label { cursor: default; }
.hos-nav a:hover, .hos-nav a.active, .hos-nav-label:hover, .hos-nav-label.active { color: var(--green); font-weight: 600; }
.hos-nav a.active::after, .hos-nav-label.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  border-radius: 99px;
  background: var(--green);
}

/* 导航下拉子菜单 */
.hos-nav-item { position: relative; display: flex; align-items: center; align-self: stretch; flex: 0 0 auto; }
.hos-nav-arrow {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -2px; margin-left: 2px;
  transition: transform .25s;
}
.hos-nav-item:hover .hos-nav-arrow { transform: rotate(180deg); }
.hos-nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 150px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,.14);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 110;
}
.hos-nav-item:hover .hos-nav-sub {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hos-nav-sub a {
  display: block; padding: 11px 24px;
  font-size: 14px; text-align: center; white-space: nowrap;
  color: var(--body);
}
.hos-nav-sub a:hover { background: var(--green-bg); color: var(--green); }
.hos-nav-sub a.active { color: var(--green); font-weight: 600; }
.hos-nav-sub a.active::after { display: none; }

/* 移动端导航（汉堡按钮 + 全屏抽屉） */
.hos-mnav-toggle {
  display: none;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--dark);
}
.hos-mnav-toggle svg { width: 26px; height: 26px; }
.hos-mnav {
  position: fixed; inset: 0; z-index: 200;
  background: #fff;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease, visibility .3s;
  visibility: hidden;
  display: none;
}
.hos-mnav.open { transform: translateX(0); visibility: visible; }
.hos-mnav-lock { overflow: hidden; }
.hos-mnav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f1;
  flex-shrink: 0;
}
.hos-mnav-close {
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--dark);
  display: flex; align-items: center;
}
.hos-mnav-close svg { width: 24px; height: 24px; }
.hos-mnav-search {
  display: flex; align-items: center;
  margin: 16px 20px; height: 42px;
  border: 1px solid #e3e6e5; border-radius: 99px;
  padding: 0 6px 0 18px;
  flex-shrink: 0; background: #fff;
}
.hos-mnav-search input {
  flex: 1; min-width: 0;
  border: none; outline: none; background: transparent;
  font-size: 14px; color: var(--body);
}
.hos-mnav-search input::placeholder { color: #9aa5a3; }
.hos-mnav-search button {
  background: none; border: none; cursor: pointer;
  padding: 8px; color: #6b7674;
  display: flex; align-items: center;
}
.hos-mnav-search button svg { width: 18px; height: 18px; }
.hos-mnav-list { flex: 1; overflow-y: auto; padding: 0 20px 24px; }
.hos-mnav-list > .hos-mnav-link {
  display: block; padding: 16px 0;
  font-size: 16px; color: var(--dark);
  border-bottom: 1px solid #f0f2f1;
}
.hos-mnav-row {
  display: flex; align-items: center;
  width: 100%;
  background: none; border: none;
  border-bottom: 1px solid #f0f2f1;
  padding: 0; margin: 0;
  font: inherit; text-align: left;
  cursor: pointer;
}
.hos-mnav-row .hos-mnav-link {
  flex: 1; padding: 16px 0;
  font-size: 16px; color: var(--dark);
}
.hos-mnav-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-left: 16px;
  color: #9aa5a3;
  transition: transform .25s;
}
.hos-mnav-group.open .hos-mnav-arrow { transform: rotate(180deg); }
.hos-mnav-sub { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.hos-mnav-group.open .hos-mnav-sub { max-height: 320px; }
.hos-mnav-sub a {
  display: block; padding: 11px 0 11px 18px;
  font-size: 14px; color: var(--body);
  position: relative;
}
.hos-mnav-sub a::before {
  content: ''; position: absolute; left: 2px; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: #c8cfcd; transform: translateY(-50%);
}
.hos-mnav-sub a:last-child { padding-bottom: 16px; }

/* ============================================================
   首页 Hero
   ============================================================ */
.hos-hero { position: relative; background: var(--green-bg); }
.hos-hero-banner {
  position: relative;
  height: 803px;
  overflow: hidden;
}
/* 轮播幻灯片：堆叠 + 淡入淡出 */
.hos-hero-slides { position: absolute; inset: 0; }
.hos-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.hos-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
.hos-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hos-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: rgba(1, 17, 12, .4);
  pointer-events: none;
}
/* 轮播指示圆点 */
.hos-hero-dots {
  position: absolute; left: 50%; bottom: 88px;
  transform: translateX(-50%);
  z-index: 15;
  display: flex; align-items: center; gap: 10px;
}
.hos-hero-dot {
  width: 10px; height: 10px;
  padding: 0; border: none;
  border-radius: 99px;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.hos-hero-dot:hover { background: rgba(255,255,255,.85); }
.hos-hero-dot.is-active { width: 28px; background: #fff; }
/* 首页顶部导航（吸顶：默认透明覆于 banner，滚动后白底+阴影） */
.hos-hero-header {
  position: sticky; top: 50px; z-index: 100;
  margin-bottom: -80px; /* 负外边距使 banner 上移，导航视觉上覆盖在 banner 上 */
  transition: background-color .3s, box-shadow .3s;
}
.hos-hero-header.is-scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
/* 无障碍工具条启用时，吸顶元素下移避开工具条 */
body.aria-toolbar-on .hos-topbar { top: 84px; }
body.aria-toolbar-on .hos-hero-header,
body.aria-toolbar-on .hos-header { top: 134px; }
/* 滚动后（白底）文字配色 */
.hos-hero-header.is-scrolled .hos-hero-logo-name { color: var(--dark); text-shadow: none; }
.hos-hero-header.is-scrolled .hos-hero-nav > a { color: var(--body); }
.hos-hero-header.is-scrolled .hos-hero-nav > a:hover,
.hos-hero-header.is-scrolled .hos-hero-nav > a.active { color: var(--green); font-weight: 600; }
.hos-hero-header.is-scrolled .hos-hero-nav-label { color: var(--body); }
.hos-hero-header.is-scrolled .hos-nav-item:hover .hos-hero-nav-label { color: var(--green); font-weight: 600; }
.hos-hero-header.is-scrolled .hos-mnav-toggle { color: var(--dark); }
.hos-hero-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  height: 80px;
}
.hos-hero-logo {
  display: flex; align-items: center; gap: 12px;
  flex: 0 0 auto;
  width: fit-content;
  min-width: 0;
}
.hos-hero-logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px; background: var(--green);
  box-shadow: 0 4px 12px rgba(24,165,110,.4);
}
.hos-hero-logo-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.2; }
.hos-hero-logo-name {
  display: inline-block;
  width: max-content;
  max-width: 350px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hos-hero-nav {
  display: flex;
  align-items: center;
  align-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px 36px;
  justify-content: flex-start;
  align-self: stretch;
}
.hos-hero-nav > a {
  position: relative; padding-bottom: 8px;
  font-size: 15px; color: rgba(255,255,255,.85);
  transition: color .2s;
  flex: 0 0 auto;
  white-space: nowrap;
}
.hos-hero-nav > a:hover, .hos-hero-nav > a.active { color: #fff; font-weight: 500; }
.hos-hero-nav-label {
  position: relative; padding-bottom: 8px;
  font-size: 15px; color: rgba(255,255,255,.85);
  transition: color .2s; cursor: default;
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.hos-nav-item:hover .hos-hero-nav-label { color: #fff; font-weight: 500; }
.hos-hero-nav > a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  border-radius: 99px; background: #18c584;
}

/* Hero 中部标题 */
.hos-hero-title {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 238px;
}
.hos-hero-badge {
  border: 1px solid #ffffff;
  border-radius: 99px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.17);
  font-family: 'DingTalk JinBuTi', sans-serif;
  font-size: 22px;
  color: rgba(255,255,255,.95);
}
.hos-hero-h1 {
  margin-top: 30px;
  font-family: 'DingTalk JinBuTi', sans-serif;
  font-size: 58px; font-weight: 700;
  letter-spacing: .1em; color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hos-hero-motto {
  margin-top: 25px;
  font-family: 'DingTalk JinBuTi', sans-serif;
  font-size: 28px;
  color: rgba(255,255,255,.95);
}

/* 绿色信息条 */
.hos-infobar {
  position: relative; z-index: 10;
  margin: -60px auto 0;
  width: 100%; max-width: 1200px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 116px; padding: 0 16px;
  background: linear-gradient(to right, #0d957d, #17a66e);
  box-shadow: 0 16px 40px rgba(10,140,95,.35);
}
.hos-infobar-item {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hos-infobar-item + .hos-infobar-item { border-left: 1px solid rgba(255,255,255,.25); }
.hos-infobar-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; background: rgba(255,255,255,.15);
}
.hos-infobar-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; }
.hos-infobar-label { font-size: 13px; color: rgba(255,255,255,.75); }
.hos-infobar-value { font-size: 15px; font-weight: 500; color: #fff; margin-top: 4px; line-height: 1.5; }

/* ============================================================
   患者服务区
   ============================================================ */
.hos-services-wrap { background: linear-gradient(180deg,#f0faf6 77%,rgba(240,250,246,0) 100%); }
.hos-patient { padding: 118px 0 76px; }
.hos-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.hos-section-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 28px; font-weight: 700; color: var(--dark);
}
.hos-section-title .bar {
  display: inline-block; width: 6px; height: 26px;
  border-radius: 99px; background: var(--gold2);
}
.hos-section-more {
  display: flex; align-items: center; gap: 4px;
  font-size: 15px; color: var(--muted);
  transition: color .2s;
}
.hos-section-more:hover { color: var(--green); }

.hos-patient-grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.hos-patient-grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 24px; }

.hos-svc-card {
  position: relative; z-index: 1;
  display: block;
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s;
  overflow: hidden;
}
.hos-svc-card:hover { box-shadow: var(--shadow-hover); }
.hos-svc-card.tall { height: 490px; }
.hos-svc-card.wide { height: 272px; }

.hos-svc-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
}
.hos-svc-icon.amber { background: var(--gold-light); color: var(--gold); }
.hos-svc-icon.green { background: #dff4e8; color: #1faa72; }
.hos-svc-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }

.hos-svc-title { margin-top: 20px; font-size: 19px; font-weight: 700; color: var(--dark); }
.hos-svc-desc  { margin-top: 8px; font-size: 13px; line-height: 1.9; color: var(--muted); max-width: 220px; }
.hos-svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 26px;
  border-radius: 99px; background: #fff;
  padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: #e9a42f;
  box-shadow: 0 4px 16px rgba(30,60,45,.10);
  transition: box-shadow .2s;
}
.hos-svc-more:hover { box-shadow: 0 6px 20px rgba(30,60,45,.16); }
.hos-svc-more svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.hos-svc-mascot {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; align-items: flex-end;
}
.hos-svc-mascot img { width: 105px; }
.hos-svc-bubble {
  background: #fff;
  padding: 10px 20px;
  border-radius: 24px 8px 24px 24px;
  box-shadow: 0 0 23px rgba(219,234,226,.74);
  font-size: 14px; font-weight: 500;
  background-image: linear-gradient(98deg,#00b786 0%,#f4a23d 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   专家风采区
   ============================================================ */
.hos-experts { position: relative; }
.hos-experts-inner {
  display: flex; align-items: flex-start; gap: 29px;
  padding: 64px 0 150px;
}
.hos-expert-card {
  position: relative; z-index: 20;
  display: flex; flex-direction: column; align-items: center;
  width: 267px; min-height: 486px; flex-shrink: 0;
  border-radius: var(--radius); background: #fff;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(30,110,75,.10);
  transition: box-shadow .25s;
}
.hos-expert-card:hover { box-shadow: 0 18px 52px rgba(30,110,75,.16); }
.hos-expert-avatar { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; }
.hos-expert-name  { margin-top: 24px; font-size: 20px; font-weight: 700; color: var(--dark); }
.hos-expert-title { margin-top: 10px; font-size: 14px; color: var(--green); }
.hos-expert-dept  { margin-top: 6px; font-size: 14px; color: var(--body); }
.hos-expert-desc  { margin-top: 24px; font-size: 13px; line-height: 2.1; color: var(--muted2); }
.hos-expert-link  { margin-top: auto; padding-top: 24px; font-size: 14px; color: #409AEB; }
.hos-expert-link:hover { text-decoration: underline; }

.hos-experts-deco { overflow:  hidden; position: relative; margin-left: auto; margin-right: 60px; margin-top: -6px; width: 388px; max-width: 100%; flex-shrink: 1; }
.hos-experts-deco .board { width: 100%; height: auto; }
.hos-experts-cloud {
  position: absolute; top: -324px; left: 0; z-index: 0;
  width: 1143px; max-width: 100%; pointer-events: none;
}
/* 背景3（山景）：随容器宽度等比缩放，小分辨率不溢出、不变形 */
.hos-experts-mountains {
  position: absolute; bottom: 0; right: 0px; z-index: 10;
  width: 1143px; max-width: 100%; pointer-events: none;
}

/* ============================================================
   公告区（招聘/招标/其他/健康科普）
   ============================================================ */
.hos-notices { position: relative; background: #fff; }
.hos-notices-health-bg {
  position: absolute; bottom: -80px; right: 0;
  width: 770px; pointer-events: none;
}
.hos-notices-grid {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 43% 1fr;
}
/* 防止网格项内容（如 nowrap 标题）撑大 1fr 轨道导致小宽度下右侧空白/横向滚动 */
.hos-notices-grid > * { min-width: 0; }
.hos-notices-grid:last-of-type { margin-bottom: 80px; }
/* 招聘公告卡 */
.hos-recruit-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 36px 40px;
  box-shadow: 0 14px 40px rgba(30,140,110,.25);
}
.hos-recruit-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hos-recruit-head {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.hos-recruit-head h2 { font-size: 26px; font-weight: 700; color: #fff; }
.hos-recruit-head a { font-size: 14px; color: rgba(255,255,255,.8); }
.hos-recruit-head a:hover { color: #fff; }
.hos-recruit-list { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: space-around; }
.hos-recruit-list li { border-bottom: 1px solid rgba(255,255,255,.15); padding: 10px 0; }
.hos-recruit-list li:last-child { border-bottom: none; }
.hos-recruit-list a { display: block; font-size: 15px; color: rgba(255,255,255,.95); transition: color .2s; }
.hos-recruit-list a:hover { color: #fff; }
.hos-recruit-list .date { margin-top: 6px; font-size: 13px; font-weight: 500; color: #e0b32e; }

/* 招标公告 */
.hos-bid-section { display: flex; flex-direction: column; }
.hos-bid-title {
  display: flex; align-items: center; justify-content: space-between;
  margin: 36px 0 24px 40px;
}
.hos-bid-title h2 { font-size: 24px; font-weight: 700; color: #5fa38a; }
.hos-bid-title a { font-size: 14px; color: #8ab8a8; }
.hos-bid-title a:hover { color: #5fa38a; }
.hos-bid-card {
  position: relative; flex: 1; overflow: hidden;
  box-shadow: 0 14px 40px rgba(30,60,80,.18);
}
.hos-bid-card > img {
  position: absolute; inset: 0;
  width: 115%; height: 100%; object-fit: cover;
}
.hos-bid-overlay { position: absolute; inset: 0; background: rgba(28,58,85,.45); }
.hos-bid-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 40px; padding: 32px 40px;
  align-content: center; height: 100%;
}
.hos-bid-item {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 20px 12px;
  transition: all .3s;
}
.hos-bid-item:last-child { border-bottom: none; }
.hos-bid-item:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.hos-bid-date {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; flex-shrink: 0;
}
.hos-bid-date img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }
.hos-bid-date span { position: relative; font-style: italic; color: #fff; }
.hos-bid-date .day { font-size: 25px; font-weight: 300; }
.hos-bid-date .mon { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.7); }
.hos-bid-item p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.9); }
.hos-bid-item:hover p { color: #fff; }

/* 其他公告 */
.hos-other-section { margin-top: 30px; padding: 36px 40px 0; }
.hos-other-title {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.hos-other-title h2 { font-size: 24px; font-weight: 700; color: #5fa38a; }
.hos-other-title a { font-size: 14px; color: #8ab8a8; }
.hos-other-title a:hover { color: #5fa38a; }
.hos-other-list li { border-bottom: 1px solid #eae7df; padding: 16px 0; }
.hos-other-list li:last-child { border-bottom: none; }
.hos-other-list a {
  display: block; font-size: 15px; color: var(--body);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .2s;
}
.hos-other-list a:hover { color: var(--green); }
.hos-other-list .date { margin-top: 6px; font-size: 13px; font-weight: 500; color: #e8a020; }

/* 健康科普 */
.hos-health-section { margin-top: 66px; padding-left: 40px; }
.hos-health-title {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.hos-health-title h2 { font-size: 24px; font-weight: 700; color: #5fa38a; }
.hos-health-title a { font-size: 14px; color: #8ab8a8; }
.hos-health-title a:hover { color: #5fa38a; }
.hos-health-item {
  display: flex; align-items: center; gap: 24px;
  background: rgba(250,248,245,.8);
  margin: 16px 0; padding: 20px 28px 20px 0;
  transition: opacity .2s;
}
.hos-health-item:hover { opacity: .88; }
.hos-health-item img { width: 280px; aspect-ratio: 3/2; flex-shrink: 0; object-fit: cover; margin: -20px 0; }
.hos-health-tag {
  display: inline-block; border-radius: 99px;
  padding: 5px 12px; font-size: 12px;
}
.hos-health-tag.green { background: var(--green-light); color: var(--green); }
.hos-health-tag.amber { background: var(--gold-light); color: #e8a020; }
.hos-health-item h3 { margin-top: 12px; font-size: 17px; font-weight: 700; color: var(--dark); transition: color .2s; }
.hos-health-item:hover h3 { color: var(--green); }
.hos-health-item .desc { margin-top: 8px; font-size: 13px; line-height: 1.8; color: var(--muted); }
.hos-health-item .date { margin-top: 12px; font-size: 13px; color: #b5bebc; }

/* 米色背景块 */
.hos-notices-cream {
  position: absolute; left: -36px; right: calc(57% - 3px);
  top: 172px; bottom: -80px;
  background: #faf8f5;
}
.hos-ginkgo {
  position: absolute; left: -45px; top: -55px; z-index: 20;
  width: 150px; pointer-events: none;
}

/* ============================================================
   党建动态区
   ============================================================ */
.hos-party { position: relative; overflow: hidden; background: var(--warm-bg); padding-bottom: 80px; }
.hos-party-banner { position: relative; }
.hos-party-banner > img { display: block; width: 100%; }
.hos-party-banner .hos-container { position: absolute; inset: 0; }
.hos-party-banner-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.hos-party-banner-text { margin-left: 170px; }
.hos-party-banner-text .sub { font-size: 14px; letter-spacing: .2em; color: #e8792b; }
.hos-party-banner-text h2 {
  margin-top: 8px;
  font-family: 'Kaiti SC','KaiTi','STKaiti',serif;
  font-size: 38px; font-weight: 700;
}
.hos-party-banner-text h2 .red { color: var(--red); }
.hos-party-banner-text h2 .dark { color: #3a2a26; }
.hos-party-banner-text p { margin-top: 8px; max-width: 520px; font-size: 14px; line-height: 1.9; color: #7a6a60; }
.hos-party-banner-btns { display: flex; gap: 20px; }
.hos-party-btn {
  display: flex; align-items: center; gap: 12px;
  border-radius: 12px;
  background: linear-gradient(115deg,#eb4436 0%,#ef7f75 94%);
  padding: 16px 24px;
  box-shadow: 0 10px 24px rgba(210,60,45,.35);
}
.hos-party-btn svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; }
.hos-party-btn .t1 { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.hos-party-btn .t2 { display: block; margin-top: 2px; font-size: 11px; color: rgba(255,255,255,.75); }
.hos-party-ribbon {
  position: absolute; right: 0; top: 100%;
  width: 535px !important; pointer-events: none;
}

.hos-party-content { padding-top: 60px; position: relative; }
.hos-party-sub {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hos-party-sub .bar { display: inline-block; width: 5px; height: 22px; border-radius: 99px; background: #f2a53d; }
.hos-party-sub h3 { font-size: 20px; font-weight: 700; color: var(--dark); }
.hos-party-more-link { margin-left: auto; font-size: 14px; color: var(--muted); transition: color .2s; }
.hos-party-more-link:hover { color: var(--green); }

.hos-party-latest { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hos-party-news-card {
  position: relative;
  display: block; overflow: hidden;
  height: 320px;
  border-radius: var(--radius); background: #31251f;
  box-shadow: 0 10px 36px rgba(160,90,40,.08);
  transition: box-shadow .25s;
}
.hos-party-news-card:hover { box-shadow: 0 16px 44px rgba(160,90,40,.15); }
.hos-party-news-card img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hos-party-news-card .body {
  position: absolute; inset: auto 0 0; z-index: 1;
  padding: 72px 28px 24px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.82));
}
.hos-party-news-card h4 { font-size: 20px; font-weight: 700; color: #ffffff; transition: color .2s; }
.hos-party-news-card:hover h4 { color: #ffffff; }
.hos-party-news-card .desc { margin-top: 8px; font-size: 18px; line-height: 1.9; color: #DEDEDE; }
.hos-party-news-card .date { margin-top: 12px; font-size: 18px; font-weight: 500; color: #FFA100; }

.hos-party-mid { margin-top: 40px; display: grid; grid-template-columns: 3fr 2fr; gap: 24px; }
.hos-party-mid > div { display: flex; flex-direction: column; min-width: 0; }
.hos-party-more-list {
  flex: 1; border-radius: var(--radius); background: #fff;
  padding: 16px 32px;
  box-shadow: 0 10px 36px rgba(160,90,40,.08);
}
.hos-party-more-item {
  display: flex; align-items: center; gap: 24px;
  border-bottom: 1px solid #f3ede4;
  padding: 20px 0;
}
.hos-party-more-item:last-child { border-bottom: none; }
.hos-party-more-item .day { font-size: 26px; font-weight: 800; color: #b50917; line-height: 1; text-align: center; width: 52px; flex-shrink: 0; }
.hos-party-more-item .ym  { margin-top: 6px; font-size: 12px; color: #b5ada5; text-align: center; }
.hos-party-more-item .info { border-left: 1px solid #f0e9de; padding-left: 24px; min-width: 0; }
.hos-party-more-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); transition: color .2s; }
.hos-party-more-item:hover h4 { color: var(--red); }
.hos-party-more-item .desc { margin-top: 6px; font-size: 13px; color: #9a958f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hos-party-study {
  flex: 1; border-radius: var(--radius); background: #fff;
  padding: 16px 32px;
  box-shadow: 0 10px 36px rgba(160,90,40,.08);
  min-height: 280px;
}
.hos-party-study a {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #f3ede4;
  padding: 19px 0;
  font-size: 15px; color: var(--body);
  transition: color .2s;
}
.hos-party-study a:last-child { border-bottom: none; }
.hos-party-study a:hover { color: var(--red); }
.hos-party-study .icon { display: flex; align-items: center; gap: 12px; }
.hos-party-study svg { width: 18px; height: 18px; fill: none; stroke: #c5bdb2; stroke-width: 2; }
.hos-party-study a:hover svg { stroke: var(--red); }

.hos-party-bottom { margin-top: 32px; display: grid; grid-template-columns: 3fr 2fr; gap: 24px; align-items: stretch; }
.hos-party-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hos-party-stat {
  display: flex; align-items: center; gap: 20px;
  border-radius: var(--radius); background: #fff;
  padding: 24px 32px;
  box-shadow: 0 10px 36px rgba(160,90,40,.08);
}
.hos-party-stat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
}
.hos-party-stat-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-party-stat-num { font-size: 30px; font-weight: 800; line-height: 1; }
.hos-party-stat-label { margin-top: 8px; font-size: 14px; color: #6a7573; }
.hos-party-never-forget { width: 100%; height: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: 0 10px 36px rgba(200,60,40,.18); }

/* ============================================================
   联系区
   ============================================================ */
.hos-contact { background: #e4f5eb; padding-top: 70px; }
.hos-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hos-contact-card {
  border-radius: var(--radius); background: #fff;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
}
.hos-contact-card--fixed { min-height: 280px; }
.hos-contact-card h3 { margin-bottom: 16px; font-size: 17px; font-weight: 700; color: var(--dark); }
.hos-contact-info li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #5a6663;
  padding: 12px 0;
}
.hos-contact-info svg { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: var(--green); stroke-width: 2; }
.hos-download-list a {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #eef4f0;
  padding: 13px 0;
  font-size: 15px; color: #5a6663;
  transition: color .2s;
}
.hos-download-list a:last-child { border-bottom: none; }
.hos-download-list a:hover { color: var(--green); }
.hos-download-list svg { width: 17px; height: 17px; flex-shrink: 0; fill: none; stroke: var(--green); stroke-width: 2; }

.hos-hotline {
  position: relative; z-index: 10;
  display: flex; align-items: flex-end; gap: 20px;
  margin-top: 32px;
}
.hos-hotline img { width: 78px; }
.hos-hotline-bubble {
  margin-bottom: 8px;
  border-radius: 99px; background: #fff;
  padding: 13px 28px;
  font-size: 16px;
  box-shadow: 0 8px 28px rgba(18,120,80,.12);
}
.hos-hotline-bubble .green { color: var(--green); }
.hos-hotline-bubble .gold  { font-weight: 700; color: #e8a020; }

.hos-map { position: relative; }
.hos-map-container { width: 100%; height: 529px; z-index: 1; }
.hos-campus-panel {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  z-index: 1001; width: 320px; background: #fff; border-radius: 16px;
  padding: 24px; box-shadow: 0 16px 48px rgba(30,60,50,.22);
}
.hos-campus-panel h3 { margin: 0 0 12px; font-size: 17px; font-weight: 700; color: #2b3537; }
.hos-campus-item {
  display: block; width: 100%; border: none; background: none; text-align: left;
  border-radius: 12px; padding: 12px 16px; cursor: pointer; transition: background .2s;
}
.hos-campus-item:hover { background: #f4faf7; }
.hos-campus-item.active { background: #e7f6ee; }
.hos-campus-item .name { margin: 0; font-size: 15px; font-weight: 700; color: #2b3537; }
.hos-campus-item.active .name { color: #18a56e; }
.hos-campus-item .addr {
  margin: 6px 0 0; font-size: 13px; line-height: 1.6; color: #7a8583;
  display: flex; align-items: flex-start; gap: 6px;
}
.hos-campus-item .addr svg { flex-shrink: 0; margin-top: 2px; color: #a5b3af; }
.hos-campus-item .tel {
  margin: 4px 0 0; font-size: 13px; color: #7a8583;
  display: flex; align-items: center; gap: 6px;
}
.hos-campus-item .tel svg { flex-shrink: 0; color: #a5b3af; }
.campus-pin { background: none; border: none; }
.campus-popup .leaflet-popup-content-wrapper {
  border-radius: 14px; box-shadow: 0 8px 32px rgba(30,60,50,.18); padding: 0;
}
.campus-popup .leaflet-popup-content { margin: 0; }
.campus-popup .leaflet-popup-tip { box-shadow: 0 4px 12px rgba(30,60,50,.1); display: none;}

/* ============================================================
   页脚
   ============================================================ */
.hos-footer { background: #2c3436; padding: 40px 0; }
.hos-footer-inner { display: flex; gap: 48px; }
.hos-footer-brand { width: 300px; flex-shrink: 0; }
.hos-footer-logo { display: flex; align-items: center; gap: 12px; }
.hos-footer-logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; background: var(--green);
}
.hos-footer-logo-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.2; }
.hos-footer-logo-name { font-size: 17px; font-weight: 700; color: #fff; }
.hos-footer-logo-sub  { margin-top: 2px; font-size: 11px; color: #8a9496; }
.hos-footer-info { margin-top: 28px; }
.hos-footer-info li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #9aa4a6;
  padding: 8px 0;
}
.hos-footer-info svg { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: #7a8587; stroke-width: 2; }

.hos-footer-links { flex: 1; min-width: 110px; }
.hos-footer-links h4 { font-size: 16px; font-weight: 500; color: #fff; }
.hos-footer-links .bar { display: block; margin-top: 8px; width: 24px; height: 2px; background: var(--green); }
.hos-footer-links ul { margin-top: 14px; }
.hos-footer-links li { padding: 5px 0; }
.hos-footer-links a { font-size: 14px; color: #9aa4a6; transition: color .2s; }
.hos-footer-links a:hover { color: #fff; }

.hos-footer-qr { display: flex; gap: 24px; flex-shrink: 0; flex-wrap: wrap; }
.hos-footer-qr-item { text-align: center; }
.hos-footer-qr-item img { width: 140px; height: 140px; border-radius: 6px; }
.hos-footer-qr-item p { margin-top: 10px; font-size: 12px; line-height: 1.6; color: #9aa4a6; }
.hos-footer-bottom {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: #7a8587;
}
.hos-footer-bottom a { color: #9aa4a6; transition: color .2s; }
.hos-footer-bottom a:hover { color: #fff; }
.hos-footer-icp { margin-left: 16px; }

/* ============================================================
   内页 Banner（医院概况等）
   ============================================================ */
.hos-page-banner { position: relative; height: 420px; overflow: hidden; }
.hos-page-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hos-page-banner-overlay { position: absolute; inset: 0; background: rgba(18,64,46,.55); }
.hos-page-banner .hos-container { height: 100%; }
.hos-page-banner-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
}
.hos-page-banner-en {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; letter-spacing: .25em; color: rgba(255,255,255,.85);
}
.hos-page-banner-en::before { content: ''; display: inline-block; width: 36px; height: 2px; background: rgba(255,255,255,.7); }
.hos-page-banner h1 { margin-top: 20px; font-size: 44px; font-weight: 700; letter-spacing: .05em; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hos-page-banner p { margin-top: 16px; font-size: 16px; color: rgba(255,255,255,.85); }

/* ============================================================
   医院概况标签页
   ============================================================ */
.hos-about-tabs { background: #fff; }
.hos-about-tabs-inner { display: flex; align-items: center; gap: 16px; padding: 24px 0; flex-wrap: wrap; }
.hos-about-tab {
  display: flex; align-items: center; gap: 8px;
  border-radius: 99px; padding: 11px 24px;
  font-size: 15px; color: var(--body);
  border: none; background: none; cursor: pointer;
  transition: all .2s;
}
.hos-about-tab:hover { color: #f5a623; }
.hos-about-tab.active {
  background: #f5a623; font-weight: 600; color: #fff;
  box-shadow: 0 8px 20px rgba(245,166,35,.35);
}
.hos-about-tab svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.hos-about-content { background: #f6f8f7; padding: 48px 0 88px; }
.hos-about-intro { min-height: 320px; }
.hos-about-intro p { font-size: 15px; line-height: 2.1; color: var(--body); margin-bottom: 6px; }
.hos-about-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hos-about-card {
  border-radius: var(--radius); background: #fff;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(20,90,60,.06);
}
.hos-about-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
.hos-about-card p { margin-top: 12px; font-size: 14px; line-height: 1.9; color: #6a7573; }
.hos-about-card .green-title { font-size: 17px; font-weight: 700; color: var(--green); }
.hos-about-org-card h3 { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 700; color: var(--dark); }
.hos-about-org-card h3 .bar { display: inline-block; width: 5px; height: 18px; border-radius: 99px; background: var(--green); }
.hos-about-org-card p { margin-top: 12px; font-size: 14px; line-height: 2; color: #6a7573; }
.hos-about-space { display: flex; flex-direction: column; gap: 24px; }

.hos-honor-list { border-radius: var(--radius); background: #fff; padding: 24px 40px; box-shadow: 0 8px 30px rgba(20,90,60,.06); }
.hos-honor-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  font-size: 15px; color: var(--body);
}
.hos-honor-item + .hos-honor-item { border-top: 1px solid var(--border); }
.hos-honor-item svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: #f0a62b; stroke-width: 2; }

.hos-history-list { border-radius: var(--radius); background: #fff; padding: 32px 40px; box-shadow: 0 8px 30px rgba(20,90,60,.06); }
.hos-history-item { display: flex; gap: 32px; padding-bottom: 32px; position: relative; }
.hos-history-item:last-child { padding-bottom: 0; }
.hos-history-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 38px; top: 76px;
  width: 2px; height: calc(100% - 76px);
  background: #e3eee9;
}
.hos-history-year {
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; flex-shrink: 0;
  border-radius: 50%; background: var(--green-light);
  font-size: 18px; font-weight: 700; color: var(--green);
  z-index: 1;
}
.hos-history-event { padding-top: 10px; font-size: 15px; line-height: 1.9; color: var(--body); }

/* ============================================================
   来院导航
   ============================================================ */
.hos-guide { background: #fff; padding: 72px 0; }
.hos-guide-head { display: flex; align-items: center; gap: 12px; }
.hos-guide-head .bar { display: inline-block; width: 6px; height: 24px; border-radius: 99px; background: var(--green); }
.hos-guide-head h2 { font-size: 26px; font-weight: 700; color: var(--dark); }
.hos-guide-head span { font-size: 14px; color: var(--muted2); }
.hos-guide-grid { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.hos-guide-main { width: 100%; }
.hos-guide-left { min-width: 0; }
.hos-guide-addrs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.hos-guide-addr {
  display: flex; align-items: flex-start; gap: 12px;
  border: 2px solid #e3eae6; border-radius: 12px;
  background: #fff; padding: 14px 16px; cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.hos-guide-addr:hover { border-color: #b9e2cd; }
.hos-guide-addr.active { border-color: var(--green); background: #f0faf5; box-shadow: 0 6px 18px rgba(24,165,110,.14); }
.hos-guide-addr-icon {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-top: 2px; border-radius: 50%; background: var(--green-light);
}
.hos-guide-addr-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 2; }
.hos-guide-addr-info { flex: 1; min-width: 0; }
.hos-guide-addr .name { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.45; color: var(--dark); }
.hos-guide-addr.active .name { color: var(--green); }
.hos-guide-addr .addr {
  margin: 6px 0 0; font-size: 12px; line-height: 1.5; color: #7a8583;
  display: flex; align-items: flex-start; gap: 5px;
}
.hos-guide-addr .addr svg { flex-shrink: 0; width: 12px; height: 12px; margin-top: 2px; fill: none; stroke: #a5b3af; stroke-width: 2; }
.hos-guide-addr .tel {
  margin: 4px 0 0; font-size: 12px; color: #7a8583;
  display: flex; align-items: center; gap: 5px;
}
.hos-guide-addr .tel svg { flex-shrink: 0; width: 12px; height: 12px; fill: none; stroke: #a5b3af; stroke-width: 2; }
.hos-guide-mapbox { height: 480px; z-index: 1; }
.hos-guide-map {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: #e9f3ee;
  box-shadow: 0 12px 40px rgba(20,90,60,.08);
}
.hos-guide-map > img { width: 100%; min-height: 420px; object-fit: cover; opacity: .9; }
.hos-guide-map-card {
  position: absolute; left: 32px; top: 50%;
  transform: translateY(-50%);
  width: 300px;
  border-radius: var(--radius); background: #fff;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(20,60,45,.18);
}
.hos-guide-map-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); }
.hos-guide-map-card .row { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; color: #6a7573; }
.hos-guide-map-card svg { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: var(--muted2); stroke-width: 2; }
.hos-guide-nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  border-radius: 8px; background: var(--green);
  padding: 9px 20px;
  font-size: 13px; font-weight: 500; color: #fff;
  transition: background .2s;
}
.hos-guide-nav-btn:hover { background: var(--green-dark); }
.hos-guide-nav-btn svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; }
.hos-guide-cards { display: flex; flex-direction: column; gap: 20px; }
.hos-guide-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hos-guide-card {
  border-radius: var(--radius);
  background: #f6f8f7; padding: 24px 32px;
}
.hos-guide-card-head { display: flex; align-items: center; gap: 12px; }
.hos-guide-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-light);
}
.hos-guide-card-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--green); stroke-width: 2; }
.hos-guide-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); }
.hos-guide-card p { margin-top: 12px; font-size: 14px; line-height: 1.8; color: #6a7573; white-space: pre-line; }
.hos-guide-card .nav-link { margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--gold); }
.hos-guide-card .nav-link:hover { text-decoration: underline; }
.hos-guide-card .nav-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ============================================================
   通用栏目列表页
   ============================================================ */
.hos-channel-banner { position: relative; height: 300px; overflow: hidden; background: linear-gradient(135deg,#0d957d,#18a56e); }
.hos-channel-banner--red { background: linear-gradient(135deg,#a3121b,#e0574e); }
.hos-channel-banner .hos-container { height: 100%; }
.hos-channel-banner-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
}
.hos-channel-banner-en { font-size: 14px; letter-spacing: .25em; color: rgba(255,255,255,.75); }
.hos-channel-banner .hos-channel-banner-en { margin-top: 0; }
.hos-channel-banner h1 { margin-top: 16px; font-size: 40px; font-weight: 700; color: #fff; }
.hos-channel-banner p { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,.85); }
/* 党建动态栏目横幅：使用「党建动态背景」图，文字用暖色系（与首页党建区一致，需置于 base 规则之后以覆盖白色文字） */
.hos-channel-banner--party { background: var(--warm-bg); }
.hos-channel-banner-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hos-channel-banner--party .hos-channel-banner-en { color: #e8792b; }
.hos-channel-banner--party h1 { color: var(--red); font-family: 'Kaiti SC','KaiTi','STKaiti',serif; letter-spacing: .08em; }
.hos-channel-banner--party p { color: #7a6a60; }

.hos-channel-body { padding: 48px 0 80px; background: #f6f8f7; }
.hos-channel-single-content { margin-top: 0; }
.hos-channel-single-content .ace-line {
  margin-bottom: 16px;
  color: var(--body);
  font-size: 15px;
  line-height: 2.1;
}
.hos-channel-tabs { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hos-channel-tab {
  border-radius: 99px; padding: 8px 24px;
  font-size: 14px; color: var(--body);
  border: 1px solid #dde5e2; background: #fff;
  transition: all .2s; cursor: pointer;
}
.hos-channel-tab:hover, .hos-channel-tab.active {
  background: var(--green); color: #fff; border-color: var(--green);
}

.hos-article-list { display: flex; flex-direction: column; gap: 0; }
.hos-article-item {
  display: flex; gap: 24px; align-items: flex-start;
  background: #fff; border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(18,120,80,.05);
  transition: box-shadow .2s;
}
.hos-article-item:hover { box-shadow: 0 8px 32px rgba(18,120,80,.11); }
.hos-article-item img { width: 180px; height: 120px; flex-shrink: 0; object-fit: cover; border-radius: 10px; }
.hos-article-item-body { flex: 1; }
.hos-article-item-title { font-size: 17px; font-weight: 700; color: var(--dark); transition: color .2s; }
.hos-article-item:hover .hos-article-item-title { color: var(--green); }
.hos-article-item-desc { margin-top: 10px; font-size: 14px; line-height: 1.8; color: var(--muted); }
.hos-article-item-meta { margin-top: 16px; display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted2); }
.hos-article-item-meta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-article-item-meta .meta-item { display: flex; align-items: center; gap: 4px; }

/* 分页 */
.hos-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.hos-pagination a, .hos-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: 8px; font-size: 14px;
  border: 1px solid #dde5e2; color: var(--body);
  transition: all .2s;
}
.hos-pagination a:hover { border-color: var(--green); color: var(--green); }
.hos-pagination .active { background: var(--green); color: #fff; border-color: var(--green); }
.hos-pagination .disabled { opacity: .4; cursor: not-allowed; }
.hos-article-item-tag { border-radius: 99px; background: #f2f6f4; padding: 2px 10px; font-size: 11px; color: #6a7573; }
.hos-article-item-arrow { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: #c5cfcc; stroke-width: 2; transition: all .2s; }
.hos-article-item:hover .hos-article-item-arrow { stroke: var(--green); transform: translateX(4px); }

/* ============================================================
   文章详情页
   ============================================================ */
.hos-article-detail { padding: 48px 0 80px; background: #f6f8f7; }
.hos-article-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.hos-article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: #6a7573; transition: color .2s; margin-bottom: 24px; }
.hos-article-back:hover { color: var(--green); }
.hos-article-back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-article-detail-card {
  border-radius: var(--radius); background: #fff;
  padding: 48px 56px;
  box-shadow: 0 8px 30px rgba(20,90,60,.06);
}
.hos-article-detail-tag { display: inline-block; border-radius: 99px; background: var(--green-light); padding: 4px 14px; font-size: 13px; color: var(--green); }
.hos-article-detail-title { font-size: 26px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.hos-article-detail-meta {
  display: flex; align-items: center; gap: 20px;
  margin-top: 16px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--muted2);
}
.hos-article-detail-meta .meta-item { display: flex; align-items: center; gap: 6px; }
.hos-article-detail-meta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-article-content { margin-top: 32px; }
.hos-article-content p { font-size: 15px; line-height: 2.1; color: var(--body); margin-bottom: 16px; }
.hos-article-content h2, .hos-article-content h3, .hos-article-content h4 {
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin: 28px 0 12px;
  padding-left: 16px;
  border-left: 4px solid var(--green);
}
.hos-article-content img { max-width: 100%; border-radius: 10px; margin: 16px 0; }
.hos-article-content video, .hos-article-content iframe { max-width: 100%; height: auto; }
.hos-article-quote {
  margin: 28px 0;
  border-radius: 12px; background: var(--green-light);
  padding: 20px 28px;
  font-size: 15px; line-height: 1.9; color: var(--green);
  font-style: italic;
}
.hos-article-prevnext { list-style: none; margin: 40px 0 0; padding: 40px 0 0; border-top: 1px solid var(--border); }
.hos-article-prevnext li { display: flex; gap: 8px; padding: 8px 0; font-size: 14px; }
.hos-article-prevnext strong { color: var(--dark); flex-shrink: 0; }
.hos-article-prevnext a { color: var(--green); }
.hos-article-prevnext a:hover { text-decoration: underline; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 99px; background: #f2f6f4; padding: 8px 20px;
  font-size: 14px; color: #6a7573; border: none; cursor: pointer; transition: all .2s;
}
.share-btn:hover { background: var(--green-light); color: var(--green); }
.share-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
/* 侧边栏 */
.hos-article-sidebar { display: flex; flex-direction: column; gap: 28px; }
.hos-sidebar-card { border-radius: 18px; border: 1px solid #eef2f0; background: #fff; padding: 24px; box-shadow: 0 8px 28px rgba(18,120,80,.05); }
.hos-sidebar-card h3 { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; color: var(--dark); }
.hos-sidebar-card h3 .bar { width: 4px; height: 16px; border-radius: 99px; }
.hos-sidebar-card h3 .bar.gold { background: var(--gold); }
.hos-sidebar-card h3 .bar.green { background: var(--green); }
.hos-sidebar-related { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.hos-sidebar-related a { display: flex; gap: 12px; }
.hos-sidebar-related a img { width: 72px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.hos-sidebar-related a p { font-size: 13px; font-weight: 500; line-height: 1.6; color: var(--body); transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hos-sidebar-related a:hover p { color: var(--green); }
.hos-sidebar-related a .date { margin-top: 4px; font-size: 12px; color: #b5bebc; }
.hos-sidebar-more { margin-top: 16px; }
.hos-sidebar-more a { display: flex; align-items: center; gap: 8px; padding: 12px 0; border-bottom: 1px solid #f2f6f4; font-size: 14px; color: var(--body); transition: color .2s; }
.hos-sidebar-more a:last-child { border-bottom: none; }
.hos-sidebar-more a:hover { color: var(--green); }
.hos-sidebar-more a svg { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: #c5cfcc; stroke-width: 2; }
.hos-sidebar-more a:hover svg { stroke: var(--green); }

/* 面包屑 */
.hos-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 0;
  font-size: 13px; color: var(--muted2);
}
.hos-breadcrumb a { color: var(--muted); transition: color .2s; }
.hos-breadcrumb a:hover { color: var(--green); }
.hos-breadcrumb .sep { color: #ccc; }

/* ============================================================
   健康科普页
   ============================================================ */
.hos-health-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hos-health-head h2 { font-size: 24px; font-weight: 700; color: var(--dark); }
/* 查看更多（区块标题右侧） */
.hos-health-more {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
  font-size: 15px; color: var(--muted);
  transition: color .2s;
}
.hos-health-more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-health-more:hover { color: var(--green); }
/* 科普子栏目列表页：返回上一页 */
.hos-health-list-top { margin-bottom: 26px; }
.hos-health-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px; border-radius: 99px;
  border: 1px solid #dde5e2; background: #fff;
  font-size: 14px; color: var(--body);
  transition: all .2s;
}
.hos-health-back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.hos-health-back:hover { border-color: var(--green); color: var(--green); }
.hos-health-head-bar { width: 6px; height: 22px; border-radius: 99px; }
.hos-health-head-bar.gold { background: var(--gold); }
.hos-health-head-bar.green { background: var(--green); }
.hos-health-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.hos-health-card {
  border-radius: 18px; overflow: hidden; background: #fff;
  box-shadow: 0 10px 36px rgba(18,120,80,.07);
  transition: box-shadow .3s;
}
.hos-health-card:hover { box-shadow: 0 16px 44px rgba(18,120,80,.14); }
.hos-health-card-img { overflow: hidden; height: 210px; }
.hos-health-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hos-health-card:hover .hos-health-card-img img { transform: scale(1.04); }
.hos-health-card-body { padding: 20px 24px; }
.hos-health-card-tag { display: inline-block; border-radius: 99px; background: var(--green-light); padding: 4px 12px; font-size: 12px; color: var(--green); }
.hos-health-card-body h3 { margin-top: 12px; font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--dark); transition: color .2s; }
.hos-health-card:hover h3 { color: var(--green); }
.hos-health-card-body p { margin-top: 8px; font-size: 13px; line-height: 1.8; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hos-health-card-foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.hos-health-card-foot .date { font-size: 13px; color: #b5bebc; }
.hos-health-card-foot .more { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--gold); }
.hos-health-card-foot .more svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
/* 专家检索栏 */
.hos-expert-search {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #fff; border: 1px solid #eef3f1; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 10px 36px rgba(18,120,80,.07);
  margin-bottom: 28px;
}
.hos-expert-search-field {
  display: flex; align-items: center; gap: 9px;
  height: 46px; padding: 0 18px;
  border: 1px solid #e2e8e6; border-radius: 99px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.hos-expert-search-field:hover { border-color: #c3d6cf; }
.hos-expert-search-field:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(24,165,110,.12); }
.hos-expert-search-field > svg { width: 17px; height: 17px; flex-shrink: 0; fill: none; stroke: #9aa5a3; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.hos-expert-search-field:focus-within > svg { stroke: var(--green); }
.hos-expert-search-field select {
  border: none; outline: none; background: transparent; cursor: pointer;
  min-width: 120px; font-size: 14px; color: var(--body);
  -webkit-appearance: none; appearance: none; padding-right: 4px;
}
.hos-expert-search-field .hos-expert-arrow { width: 14px; height: 14px; pointer-events: none; }
.hos-expert-search-field input {
  border: none; outline: none; background: transparent;
  min-width: 180px; font-size: 14px; color: var(--body);
}
.hos-expert-search-field input::placeholder { color: #b5bebc; }
.hos-expert-search-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 46px; padding: 0 32px; margin-left: auto;
  border: none; border-radius: 99px; cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 14px; font-weight: 600; letter-spacing: .05em;
  box-shadow: 0 6px 18px rgba(24,165,110,.3);
  transition: transform .2s, box-shadow .2s;
}
.hos-expert-search-btn:hover { transform: translateY(-1px); box-shadow: 0 9px 22px rgba(24,165,110,.42); }
.hos-expert-search-btn svg { width: 16px; height: 16px; }
/* 科室分类选项卡 */
.hos-dept-tabs { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hos-dept-tab {
  padding: 9px 22px; border-radius: 99px; font-size: 14px; font-weight: 500;
  color: var(--body); background: #fff; border: 1px solid #e2e8e6;
  transition: all .2s;
}
.hos-dept-tab:hover { color: var(--green); border-color: var(--green); }
.hos-dept-tab.active { background: var(--green); color: #fff; border-color: var(--green); }
/* 视频卡片 */
.hos-video-card .hos-health-card-img { position: relative; }
.hos-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
  pointer-events: none;
}
.hos-video-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.hos-video-card:hover .hos-video-play { background: rgba(24,165,110,.9); transform: translate(-50%,-50%) scale(1.1); }
.hos-video-time {
  position: absolute; right: 10px; bottom: 10px;
  border-radius: 6px;
  background: rgba(0,0,0,.65);
  padding: 2px 8px;
  font-size: 12px; line-height: 1.5; color: #fff;
}
/* 问答 */
.hos-qa-list { display: flex; flex-direction: column; gap: 16px; }
.hos-qa-item { border-radius: 16px; border: 1px solid #eef2f0; background: #fff; overflow: hidden; transition: box-shadow .2s; }
.hos-qa-item:hover { box-shadow: 0 8px 28px rgba(18,120,80,.08); }
.hos-qa-q { display: flex; align-items: center; gap: 16px; padding: 20px 28px; cursor: pointer; }
.hos-qa-q > span:nth-child(2) { flex: 1; font-size: 16px; font-weight: 500; color: var(--dark); }
.hos-qa-badge { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.hos-qa-badge.q { background: #fdf1d7; color: var(--gold); }
.hos-qa-badge.a { background: var(--green-light); color: var(--green); }
.hos-qa-arrow { width: 20px; height: 20px; fill: none; stroke: #9aa5a3; stroke-width: 2; transition: transform .2s; }
.hos-qa-item.open .hos-qa-arrow { transform: rotate(180deg); }
.hos-qa-a { display: none; padding: 0 28px 24px; gap: 16px; align-items: flex-start; }
.hos-qa-item.open .hos-qa-a { display: flex; }
.hos-qa-a p { font-size: 14px; line-height: 2; color: #6a7573; }

/* ============================================================
   搜索页
   ============================================================ */
.hos-search-form { margin-top: 32px; }
.hos-search-box {
  display: flex; align-items: center; gap: 12px;
  border-radius: 99px; border: 1px solid #e3eae7;
  background: #fff; padding: 14px 24px;
  box-shadow: 0 8px 28px rgba(20,90,60,.07);
  transition: border-color .2s;
}
.hos-search-box:focus-within { border-color: var(--green); }
.hos-search-box svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: #9aa5a3; stroke-width: 2; }
.hos-search-box input { flex: 1; border: none; outline: none; font-size: 15px; color: var(--dark); background: transparent; }
.hos-search-box input::placeholder { color: #b5bebc; }
.hos-search-box button {
  flex-shrink: 0; border: none; border-radius: 99px;
  background: var(--green); color: #fff;
  padding: 8px 24px; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background .2s;
}
.hos-search-box button:hover { background: var(--green-dark); }
/* 搜索关键词黄色高亮（Lucene 高亮输出 <em> 标记） */
.hos-article-item em {
  font-style: normal; font-weight: 600;
  background: #ffe14d; color: var(--dark);
  border-radius: 3px; padding: 0 3px;
}
.hos-search-hot { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hos-search-hot span { font-size: 13px; color: #9aa5a3; }
.hos-search-hot a {
  border-radius: 99px; background: #f2f6f4;
  padding: 6px 16px; font-size: 13px; color: #6a7573;
  transition: all .2s;
}
.hos-search-hot a:hover { background: var(--green-light); color: var(--green); }

/* ============================================================
   留言板（我要留言 / 留言列表 / 留言详情）
   ============================================================ */
.hos-msg-page { padding: 56px 0 88px; background: #f6f8f7; min-height: 60vh; }
.hos-msg-head { text-align: center; margin-bottom: 36px; }
.hos-msg-head h1 {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 28px; font-weight: 700; color: var(--dark);
}
.hos-msg-head h1 svg { width: 26px; height: 26px; color: var(--green); }
.hos-msg-head p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* 表单卡片 */
.hos-msg-card {
  max-width: 780px; margin: 0 auto;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(20,90,60,.06);
  padding: 44px 52px;
}
.hos-msg-form .hos-msg-row { margin-bottom: 22px; }
.hos-msg-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hos-msg-label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 9px; }
.hos-msg-label .req { color: var(--red2); margin-left: 3px; }
.hos-msg-input {
  display: block; width: 100%;
  border: 1px solid #e3eae7; border-radius: 10px;
  padding: 11px 15px; font-size: 14px; color: var(--body);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.hos-msg-input::placeholder { color: #b5bebc; }
.hos-msg-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(24,165,110,.12); }
textarea.hos-msg-input { resize: vertical; min-height: 160px; line-height: 1.8; }
.hos-msg-form label.error { display: block; margin-top: 6px; font-size: 12px; color: var(--red2); }

/* 留言类别：胶囊单选 */
.hos-msg-types { display: flex; gap: 12px; flex-wrap: wrap; }
.hos-msg-type { position: relative; }
.hos-msg-type input { position: absolute; opacity: 0; pointer-events: none; }
.hos-msg-type label {
  display: inline-flex; align-items: center; margin: 0;
  padding: 8px 30px; border-radius: 99px; cursor: pointer;
  border: 1px solid #dde5e2; background: #fff;
  font-size: 14px; color: var(--body); transition: all .2s;
}
.hos-msg-type label:hover { border-color: var(--green); color: var(--green); }
.hos-msg-type input:checked + label {
  background: var(--green-light); border-color: var(--green);
  color: var(--green); font-weight: 600;
}

/* 验证码 */
.hos-msg-captcha-wrap { display: block; position: relative; }
.hos-msg-captcha { display: flex; gap: 12px; align-items: center; }
.hos-msg-captcha .hos-msg-input { flex: 1; min-width: 0; }
.hos-msg-captcha img {
  height: 44px; width: 128px; object-fit: cover; flex-shrink: 0;
  border-radius: 10px; border: 1px solid #e3eae7; cursor: pointer;
}
/* 验证码错误提示：绝对定位避免挤占 flex 布局 */
.hos-msg-captcha-wrap .error.invalid-feedback,
.hos-msg-captcha-wrap label.error {
  display: block; margin-top: 6px; font-size: 12px; color: var(--red2);
}

/* 提交按钮 */
.hos-msg-submit { display: flex; justify-content: center; margin-top: 32px; }
.hos-msg-submit button {
  border: none; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 99px; padding: 13px 72px;
  font-size: 16px; letter-spacing: .15em;
  box-shadow: 0 6px 18px rgba(24,165,110,.35);
  transition: transform .2s, box-shadow .2s;
}
.hos-msg-submit button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(24,165,110,.45); }
.hos-msg-tip { margin-top: 22px; text-align: center; font-size: 13px; color: var(--muted); }
.hos-msg-tip a { color: var(--green); }
.hos-msg-tip a:hover { text-decoration: underline; }

/* 提交成功画面 */
.hos-msg-success { text-align: center; padding: 56px 40px; }
.hos-msg-success-art { display: flex; justify-content: center; }
.hos-msg-success-art svg { width: 220px; max-width: 70%; height: auto; }
.hos-msg-success h2 { margin-top: 22px; font-size: 26px; font-weight: 700; color: var(--dark); }
.hos-msg-success p { margin-top: 14px; font-size: 14px; line-height: 2; color: var(--muted); }
.hos-msg-success-actions { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.hos-msg-home-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 99px; padding: 12px 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 15px; letter-spacing: .08em;
  box-shadow: 0 6px 18px rgba(24,165,110,.35);
  transition: transform .2s, box-shadow .2s;
}
.hos-msg-home-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(24,165,110,.45); color: #fff; }
.hos-msg-home-btn svg { width: 16px; height: 16px; }
.hos-msg-again-link { font-size: 14px; color: var(--green); }
.hos-msg-again-link:hover { text-decoration: underline; }

/* 列表页工具栏 */
.hos-msg-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.hos-msg-filters { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 0; }
.hos-msg-filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.hos-msg-chip {
  border-radius: 99px; padding: 6px 18px;
  font-size: 13px; color: var(--body);
  border: 1px solid #dde5e2; background: #fff; transition: all .2s;
}
.hos-msg-chip:hover { border-color: var(--green); color: var(--green); }
.hos-msg-chip.active { background: var(--green); border-color: var(--green); color: #fff; }
.hos-msg-post-btn {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  border-radius: 99px; padding: 11px 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 15px; letter-spacing: .05em;
  box-shadow: 0 6px 18px rgba(24,165,110,.35);
  transition: transform .2s, box-shadow .2s;
}
.hos-msg-post-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(24,165,110,.45); color: #fff; }
.hos-msg-post-btn svg { width: 16px; height: 16px; }

/* 留言列表卡片 */
.hos-msg-list { display: flex; flex-direction: column; gap: 16px; }
.hos-msg-item {
  display: block; background: #fff; border-radius: 16px;
  padding: 22px 26px; box-shadow: 0 4px 16px rgba(20,90,60,.05);
  transition: transform .2s, box-shadow .2s;
}
.hos-msg-item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(20,90,60,.11); }
.hos-msg-item-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hos-msg-item-title {
  flex: 1; min-width: 0; font-size: 16px; font-weight: 600; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hos-msg-item:hover .hos-msg-item-title { color: var(--green); }
.hos-msg-badge {
  display: inline-flex; align-items: center; flex-shrink: 0;
  border-radius: 99px; padding: 3px 12px;
  font-size: 12px; color: var(--green);
  background: var(--green-light);
}
.hos-msg-badge--ok { color: #178a52; background: #dff5e9; }
.hos-msg-badge--wait { color: var(--muted); background: #f0f3f2; }
.hos-msg-item-text {
  margin-top: 12px; font-size: 14px; line-height: 1.8; color: var(--body);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hos-msg-item-meta {
  margin-top: 14px; display: flex; justify-content: space-between; gap: 12px;
  font-size: 13px; color: var(--muted2);
}
.hos-msg-item-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hos-msg-item-meta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-msg-empty { text-align: center; padding: 64px 0; }
.hos-msg-empty svg { width: 56px; height: 56px; color: #c5cfcc; }
.hos-msg-empty p { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* 留言详情 */
.hos-msg-back { margin-bottom: 18px; }
.hos-msg-back a {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; color: var(--muted); transition: color .2s;
}
.hos-msg-back a:hover { color: var(--green); }
.hos-msg-back svg { width: 16px; height: 16px; }
.hos-msg-detail {
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(20,90,60,.06);
  padding: 40px 48px;
}
.hos-msg-detail-badges { display: flex; gap: 8px; margin-bottom: 14px; }
.hos-msg-detail-head h1 { font-size: 24px; font-weight: 700; color: var(--dark); line-height: 1.5; }
.hos-msg-detail-meta {
  margin-top: 14px; padding-bottom: 18px; border-bottom: 1px solid #edf2f0;
  display: flex; gap: 24px; font-size: 13px; color: var(--muted2);
}
.hos-msg-detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hos-msg-detail-meta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.hos-msg-detail-body { padding: 22px 0; font-size: 15px; line-height: 2; color: var(--body); word-break: break-word; }
.hos-msg-reply {
  margin-top: 10px; border-radius: 14px;
  background: var(--green-bg); border: 1px solid #cdeedd;
  padding: 22px 26px;
}
.hos-msg-reply-head { display: flex; align-items: center; gap: 8px; color: var(--green-dark); flex-wrap: wrap; }
.hos-msg-reply-head svg { width: 18px; height: 18px; }
.hos-msg-reply-head strong { font-size: 15px; }
.hos-msg-reply-meta { font-size: 13px; color: var(--muted2); margin-left: auto; }
.hos-msg-reply-body { margin-top: 12px; font-size: 14px; line-height: 1.9; color: var(--body); word-break: break-word; }
.hos-msg-detail-foot { margin-top: 28px; display: flex; justify-content: flex-end; }

/* ============================================================
   入场动画（首页模块滚动进入视口时淡入上移）
   隐藏态仅在 JS 可用（html.hos-js）时生效，避免无 JS 环境内容不可见
   ============================================================ */
.hos-reveal { transition: opacity .8s ease, transform .8s ease; }
html.hos-js .hos-reveal:not(.is-visible) { opacity: 0; transform: translateY(40px); }
html.hos-js .hos-reveal.is-visible { opacity: 1; transform: none; }
/* banner 位于首屏顶部，用「淡入+轻微缩放」代替向上滑入，避免顶部出现位移空隙 */
html.hos-js .hos-reveal-banner:not(.is-visible) { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  html.hos-js .hos-reveal:not(.is-visible) { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1100px) {
  .hos-patient-grid4 { grid-template-columns: repeat(2,1fr); }
  .hos-experts-inner { flex-wrap: wrap; }
  /* 背景1（专家展板）不隐藏：换行后居中展示并随宽度缩放 */
  .hos-experts-deco { margin: 24px auto 0; }
  .hos-notices-grid { grid-template-columns: 1fr; }
  .hos-notices-cream { display: none; }
  .hos-party-mid, .hos-party-bottom { grid-template-columns: 1fr; }
  .hos-party-stats { grid-template-columns: repeat(3,1fr); }
  .hos-guide-grid { grid-template-columns: 1fr; }
  .hos-footer-inner { flex-wrap: wrap; }
  .hos-article-detail-grid { grid-template-columns: 1fr; }
  .hos-health-grid { grid-template-columns: repeat(2,1fr); }
  /* 留言板 */
  .hos-msg-card, .hos-msg-detail { padding: 32px 28px; }
  .hos-msg-grid2 { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- 手机端（<768px）：统一汉堡导航 + 全面适配，不隐藏内容、不出现横向滚动条 ---------- */
@media (max-width: 768px) {
  /* 容器与顶部横条 */
  .hos-container { padding: 0 16px; }
  .hos-topbar { height: 44px; }
  .hos-topbar-inner { height: 44px; }
  .hos-topbar-btn { font-size: 15px; padding: 6px 14px; }
  .hos-topbar-search { padding: 5px 8px; }
  .hos-topbar-search svg { width: 16px; height: 16px; }

  /* 导航统一：隐藏桌面导航，显示汉堡按钮 + 抽屉（首页与内页一致） */
  .hos-nav { display: none; }
  .hos-hero-nav { display: none; }
  .hos-mnav-toggle { display: flex; }
  .hos-mnav { display: flex; }

  /* 内页头部 */
  .hos-header-inner { height: 64px; justify-content: space-between; gap: 0; }
  .hos-logo-name { font-size: 15px; }

  /* 首页头部（吸顶，汉堡按钮用白色） */
  .hos-hero-header-inner { height: 64px; justify-content: space-between; gap: 0; }
  .hos-hero-header { margin-bottom: -64px; top: 44px; }
  .hos-header { top: 44px; }
  body.aria-toolbar-on .hos-hero-header,
  body.aria-toolbar-on .hos-header { top: 128px; }
  .hos-hero-header .hos-mnav-toggle { color: #fff; }
  .hos-hero-logo-name { font-size: 17px; }

  /* 首页 Hero */
  .hos-hero-banner { height: 480px; }
  .hos-hero-title { padding-top: 150px; }
  .hos-hero-badge { font-size: 13px; padding: 8px 22px; }
  .hos-hero-h1 { font-size: 30px; letter-spacing: .06em; }
  .hos-hero-motto { font-size: 14px; letter-spacing: .3em; }
  .hos-hero-dots { bottom: 64px; }

  /* 绿色信息条 */
  .hos-infobar { width: auto; margin: -40px 16px 0; grid-template-columns: 1fr; height: auto; padding: 20px; gap: 16px; }
  .hos-infobar-item { justify-content: flex-start; }
  .hos-infobar-item + .hos-infobar-item { border-left: none; border-top: 1px solid rgba(255,255,255,.25); padding-top: 16px; }

  /* 患者服务 */
  .hos-patient { padding: 64px 0 48px; }
  .hos-section-title { font-size: 22px; }
  .hos-patient-grid4, .hos-patient-grid2 { grid-template-columns: 1fr; }
  .hos-svc-card.tall, .hos-svc-card.wide { height: auto; }
  .hos-svc-desc { max-width: none; }
  .hos-svc-mascot img { width: 84px; }

  /* 专家风采（装饰背景防溢出，卡片整行展示） */
  .hos-experts-cloud { width: 100% !important; top: -120px !important; left: 0 !important; }
  .hos-experts-inner { padding: 48px 0 56px; gap: 20px; }
  .hos-expert-card { width: 100%; min-height: 0; flex-shrink: 1; padding: 36px 24px; }

  /* 公告区（装饰背景防溢出） */
  .hos-notices-health-bg { max-width: 100%; }
  .hos-ginkgo { left: 0; width: 110px; }
  .hos-recruit-card { padding: 28px 24px; }
  .hos-bid-title { margin: 28px 0 20px; }
  .hos-bid-grid { grid-template-columns: 1fr; padding: 24px; }
  .hos-other-section { margin-top: 24px; padding: 28px 24px 0; }
  .hos-health-section { margin-top: 40px; padding-left: 0; }
  .hos-health-item { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; margin: 14px 0; }
  .hos-health-item img { width: 100%; margin: 0; aspect-ratio: 16/9; }

  /* 党建动态 */
  .hos-party-banner > img { min-height: 190px; object-fit: cover; }
  .hos-party-banner-inner { padding: 0 16px; }
  .hos-party-banner-text { margin-left: 0; }
  .hos-party-banner-text h2 { font-size: 26px; }
  .hos-party-banner-text p { max-width: none; font-size: 13px; line-height: 1.7; }
  .hos-party-banner-btns { display: none; }
  .hos-party { padding-bottom: 48px; }
  .hos-party-content { padding-top: 40px; }
  .hos-party-latest { grid-template-columns: 1fr; }
  .hos-party-mid, .hos-party-bottom { grid-template-columns: 1fr; }
  .hos-party-stats { grid-template-columns: 1fr; }
  .hos-party-more-list, .hos-party-study { padding: 12px 20px; }
  .hos-party-stat { padding: 20px 24px; }

  /* 联系区 */
  .hos-contact { padding-top: 48px; }
  .hos-contact-grid { grid-template-columns: 1fr; }
  .hos-contact-card { padding: 24px; }
  .hos-hotline img { width: 56px; }
  .hos-hotline-bubble { padding: 10px 18px; font-size: 14px; }

  /* 地图与院区面板（面板改为地图下方静态展示，不隐藏） */
  .hos-map-container { height: 320px; }
  .hos-campus-panel { position: static; transform: none; width: auto; margin: 16px; box-shadow: 0 8px 28px rgba(30,60,50,.12); }

  /* 页脚 */
  .hos-footer { padding: 40px 0; }
  .hos-footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .hos-footer-brand { grid-column: 1 / -1; width: 100%; }
  .hos-footer-qr { grid-column: 1 / -1; }
  .hos-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* 内页 Banner */
  .hos-page-banner { height: 260px; }
  .hos-page-banner h1 { font-size: 28px; }
  .hos-page-banner p { font-size: 14px; }
  .hos-channel-banner { height: 210px; }
  .hos-channel-banner h1 { font-size: 26px; }
  .hos-channel-banner p { font-size: 13px; }

  /* 医院概况 */
  .hos-about-grid2 { grid-template-columns: 1fr; }
  .hos-about-content { padding: 36px 0 56px; }
  .hos-about-card { padding: 24px; }
  .hos-honor-list, .hos-history-list { padding: 20px 24px; }
  .hos-history-item { gap: 18px; }
  .hos-history-year { width: 56px; height: 56px; font-size: 14px; }
  .hos-history-item:not(:last-child)::after { left: 27px; top: 56px; height: calc(100% - 56px); }

  /* 来院导航 */
  .hos-guide { padding: 48px 0; }
  .hos-guide-addrs { grid-template-columns: 1fr; }
  .hos-guide-mapbox { height: 320px; }
  .hos-guide-map-card { position: static; transform: none; width: auto; margin: 16px; box-shadow: none; }
  .hos-guide-card { padding: 20px 24px; }
  .hos-guide-routes { grid-template-columns: 1fr; }

  /* 文章列表（保留缩略图，不再隐藏） */
  .hos-article-item { padding: 16px; gap: 14px; }
  .hos-article-item img { width: 100px; height: 75px; }
  .hos-article-item-title { font-size: 15px; }
  .hos-article-item-desc { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hos-article-item-meta { flex-wrap: wrap; gap: 10px; }

  /* 文章详情 */
  .hos-article-detail { padding: 32px 0 56px; }
  .hos-article-detail-card { padding: 28px 20px; }
  .hos-article-detail-title { font-size: 20px; }
  .hos-article-detail-meta { flex-wrap: wrap; gap: 10px; }
  .hos-article-content img, .hos-article-content video, .hos-article-content iframe { max-width: 100%; height: auto; }

  /* 健康科普 / 专家 / 科室卡片 */
  .hos-health-grid { grid-template-columns: 1fr; }

  /* 专家检索栏（整列堆叠） */
  .hos-expert-search { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .hos-expert-search-field { width: 100%; }
  .hos-expert-search-field select, .hos-expert-search-field input { flex: 1; min-width: 0; width: 100%; }
  .hos-expert-search-btn { margin-left: 0; width: 100%; justify-content: center; }

  /* 问答 / 搜索 / 分页 */
  .hos-qa-q { padding: 16px 20px; }
  .hos-qa-a { padding: 0 20px 20px; }
  .hos-search-box { padding: 10px 16px; }
  .hos-pagination { flex-wrap: wrap; }
  .hos-breadcrumb { flex-wrap: wrap; }

  /* 留言板移动端 */
  .hos-msg-page { padding: 36px 0 60px; }
  .hos-msg-head { margin-bottom: 26px; }
  .hos-msg-head h1 { font-size: 22px; }
  .hos-msg-card, .hos-msg-detail { padding: 26px 18px; border-radius: 16px; }
  .hos-msg-toolbar { flex-direction: column; align-items: stretch; }
  .hos-msg-post-btn { justify-content: center; }
  .hos-msg-submit button { width: 100%; }
  .hos-msg-captcha img { width: 104px; }
  .hos-msg-detail-head h1 { font-size: 20px; }
  .hos-msg-detail-meta { flex-wrap: wrap; gap: 10px; }
}
