/* =========================================================
   重庆中附专科门诊 · PC官网样式
   配色：医疗红（专业可信）—— 主品牌 #c0202e + 暖红点缀 #e8554e + 红CTA #e53935
   文字 #333 / #777，背景白 + 暖浅灰 #f6f2f2
   ========================================================= */

:root {
    --white: #ffffff;
    --primary: #c0202e;
    --primary-dark: #9e1822;
    --primary-darker: #740d14;
    --primary-soft: #fbecec;
    --accent: #e8554e;
    --accent-soft: #fbe4e3;
    --cta: #e53935;
    --cta-dark: #b71c1c;
    --ink: #333333;
    --muted: #777777;
    --bg: #ffffff;
    --bg-soft: #f6f2f2;
    --bg-deep: #740d14;
    --line: #ece3e3;
    --shadow: 0 10px 30px rgba(192, 32, 46, .10);
    --shadow-lg: 0 18px 48px rgba(192, 32, 46, .16);
    --radius: 14px;
    --radius-sm: 10px;
    --maxw: 1200px;
    --header-h: 100px;
    --topbar-h: 40px;
    font-synthesis: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB",
    "Source Han Sans SC", "Noto Sans CJK SC", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- 通用区块 ---------- */
section {
    padding: 78px 0;
}

.section-soft {
    background: var(--bg-soft);
}

#appointment {
    display: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    text-transform: none;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 14px;
}

.section-sub {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 8px;
    font-size: 16px;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--cta);
    color: #fff;
    box-shadow: 0 8px 20px rgba(224, 50, 47, .28);
}

.btn-cta:hover {
    background: var(--cta-dark);
    box-shadow: 0 12px 26px rgba(224, 50, 47, .36);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 138, 122, .26);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* =========================================================
   顶部条 + 导航
   ========================================================= */
.topbar {
    height: var(--topbar-h);
    background: var(--primary-darker);
    color: #f3b6ba;
    font-size: 13.5px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.topbar a {
    color: #f3b6ba;
}

.topbar a:hover {
    color: #fff;
}

.topbar .tb-left {
    display: flex;
    gap: 22px;
    align-items: center;
}

.topbar .tb-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar .tb-phone {
    color: var(--accent);
    font-weight: 700;
}

.topbar {
    display: none;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}


.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 284px;
}

.brand .logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 26px;
}

.brand .name {
    font-size: 25px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
}

.brand .name small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 0;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav a {
    padding: 8px 17px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    position: relative;
    transition: color .15s, background .15s;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary);
    background: transparent;
}

.nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: -2px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px auto;
    transition: .2s;
}

.banner {
    min-height: 180px;
}

/* =========================================================
   首页 Hero
   ========================================================= */
.hero {
    width: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 30%, rgba(192, 32, 46, .05) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 65%, rgba(192, 32, 46, .04) 0 2px, transparent 3px);
    background-size: 90px 90px, 120px 120px;
    opacity: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-10px);
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hero h1 .hl {
    color: var(--accent);
}

.hero .lead {
    font-size: 18px;
    color: #6f5a5c;
    max-width: 560px;
    margin-bottom: 18px;
}

.hero .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.hero .hero-tags span {
    background: rgba(192, 32, 46, .06);
    border: 1px solid rgba(192, 32, 46, .16);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    color: var(--primary-dark);
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 16px;
    color: var(--ink);
}

.hero-phone svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.hero-phone a {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: .5px;
}

.hero-phone a:hover {
    color: var(--accent);
}

.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-stat {
    background: rgba(192, 32, 46, .05);
    border-radius: 12px;
    padding: 16px;
}

.hero-stat .num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.hero-stat .lbl {
    font-size: 13.5px;
    color: var(--muted);
}

/* 信任条 */
.trustbar {
    background: var(--primary-soft);
    border-bottom: 1px solid var(--line);
}

.trustbar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
}

.trustbar .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--primary-dark);
    font-weight: 600;
}

.trustbar .item .ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-weight: 800;
}

/* =========================================================
   核心特色
   ========================================================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .fico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 15px;
}

/* =========================================================
   治疗优势（深色）
   ========================================================= */
.adv-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.adv-list {
    display: grid;
    gap: 18px;
}

.adv-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 18px 20px;
}

.adv-item .badge {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--accent);
    color: #5a0a0e;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.adv-item h4 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 4px;
}

.adv-item p {
    font-size: 14.5px;
    color: #e3b3b7;
}

.adv-visual {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(212, 160, 23, .20), rgba(15, 138, 122, .25));
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 34px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.flow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flow .step {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
}

.flow .arrow {
    color: var(--accent);
    font-weight: 800;
    font-size: 20px;
}

/* =========================================================
   医院简介 & 新闻动态（Tab 左右切换）
   ========================================================= */
.section-about-news {
    background: var(--bg-soft);
    padding: 44px 0;
    overflow: hidden;
}

.section-panels {
    display: block;
}

.section-panel {
    display: none;
}

.section-panel.active {
    display: block;
}

/* 医院动态卡片网格 */
.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 26px;
}

.news-toolbar .filter-bar {
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

.news-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.nc-photo {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-soft);
}

.nc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card:hover .nc-photo img {
    transform: scale(1.05);
}

.nc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.nc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.nc-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    background: var(--primary);
}

.nc-date {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
}

.nc-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 10px;
}

.nc-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
    flex: 1;
}

.nc-more {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 700;
}

.news-card:hover .nc-more {
    text-decoration: underline;
}

.news-more {
    margin-top: 34px;
    text-align: center;
}

/* 医院环境板块 */
.env-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.env-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

.env-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.ec-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-soft);
}

.ec-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.env-card:hover .ec-photo img {
    transform: scale(1.05);
}

.env-card figcaption {
    padding: 16px 18px 20px;
}

.env-card figcaption h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.env-card figcaption p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* 旧时间线样式保留（其它页面若引用仍可兼容） */
.news-row-item {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

.news-row-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.news-row-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.news-row-date .d {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.news-row-date .m {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.news-row-body {
    display: flex;
    flex-direction: column;
}

.news-row-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.45;
}

.news-row-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-row-more {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 700;
    margin-left: 4px;
}

.news-row-item:hover .news-row-more {
    text-decoration: underline;
}

.section-tabs-inline {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.about-title.section-tabs-inline .section-tab-title {
    font-size: 32px;
    font-weight: 800;
    color: #555;
    cursor: pointer;
    transition: color .2s ease;
    user-select: none;
}

.about-title.section-tabs-inline .section-tab-title:hover {
    color: var(--ink);
}

.about-title.section-tabs-inline .section-tab-title.active {
    color: var(--ink);
}

.about-title.section-tabs-inline .section-tab-title .title-dot {
    color: var(--primary);
    font-size: 42px;
    line-height: 0;
    margin-left: 2px;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 45px;
    align-items: stretch;
    min-height: 360px;
}

.about-body {
    padding-right: 10px;
    display: flex;
    flex-direction: column;
}

.about-header {
    margin-bottom: 16px;
}

.about-en {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.about-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0;
}

.about-title span {
    color: var(--primary);
    font-size: 44px;
    line-height: 0;
    margin-left: 2px;
}

.about-more {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 9px 17px;
    border-radius: 999px;
    transition: all .2s;
}

.about-more:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.about-more svg {
    width: 16px;
    height: 16px;
}

.about-desc {
    margin-bottom: 6px;
}

.about-desc p {
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.85;
    font-size: 15px;
}

.about-desc p:last-child {
    margin-bottom: 0;
}

.about-points {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.about-points .pt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px dashed var(--muted);
    padding: 14px 0;
}

.about-points .pt:last-child {
    border-bottom: unset;
}

.about-points .pt .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex: none;
    margin-right: 10px;
}

.about-points .about-points-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-poster {
    border-radius: var(--radius);
    height: 360px;
    min-height: 360px;
}

.poster-hint {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 1;
    font-size: 13px;
    color: var(--muted);
    background: rgba(255, 255, 255, .9);
    padding: 7px 13px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}

/* =========================================================
   白斑科普（左 Tab + 中内容 + 右推荐）
   ========================================================= */
.section-science {
    background: var(--bg);
    padding: 56px 0;
}

.science-wrap {
    display: grid;
    grid-template-columns: 170px 1fr 360px;
    gap: 22px;
    align-items: stretch;
    min-height: 420px;
}

/* 左侧 Tab */
.science-tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.science-tabs .science-tab {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}

.science-tabs .science-tab:hover {
    background: #fff;
    color: var(--primary);
    border-color: rgba(192, 32, 46, .35);
}

.science-tabs .science-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.science-tabs .science-tab:active {
    transform: translateY(1px);
}

/* 中间内容 */
.science-visual {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 34px;
    box-shadow: var(--shadow);
}

.science-visual .science-panel {
    display: none;
}

.science-visual .science-panel.active {
    display: block;
}

.science-visual h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.science-intro {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.science-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.science-points li {
    position: relative;
    padding-left: 14px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.8;
}

.science-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.science-points li strong {
    color: var(--primary);
    font-weight: 700;
}

/* 右侧推荐 */
.science-side {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
}

.science-side-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.science-side-panel {
    display: none;
}

.science-side-panel.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.science-side-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.55;
    transition: color .2s ease;
}

.science-side-panel a:last-child {
    border-bottom: none;
}

.science-side-panel a:hover {
    color: var(--primary);
}

.science-side-panel a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--muted);
}

/* =========================================================
   医生团队
   ========================================================= */
.doctor-feature {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.doctor-photo {
    position: relative;
    background: var(--primary-soft);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    min-height: 460px;
}

.doctor-info {
    padding: 32px 38px 36px;
}

.doctor-top {
    margin-bottom: 22px;
}

.doctor-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.doctor-top .doctor-name {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 0;
}

.doctor-top .doctor-name .nm {
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
}

.doctor-top .doctor-name .ti {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}

.doctor-top .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doctor-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.doctor-actions .btn {
    padding: 6px 16px;
    font-size: 13.5px;
    border-radius: 6px;
    border-width: 1px;
    box-shadow: none;
    text-align: center;
    justify-content: center;
}

.doctor-actions .btn:hover {
    box-shadow: none;
}

.doctor-actions .btn-outline {
    border-color: var(--line);
    color: var(--muted);
    background: transparent;
}

.doctor-actions .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.doctor-top .tags span {
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
}

.doctor-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.doctor-info .bio {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.skill-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    padding: 18px 20px;
    background: var(--bg-soft);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.team-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-card .ph {
    height: 230px;
    background: repeating-linear-gradient(45deg, #f7eaea 0 14px, #f1e2e2 14px 28px);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 46px;
    border-bottom: 1px solid var(--line);
}

.team-card .info {
    padding: 18px 16px;
}

.team-card .info .nm {
    font-size: 17px;
    font-weight: 800;
}

.team-card .info .ro {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.team-card .info .ds {
    font-size: 13.5px;
    color: var(--muted);
}

/* =========================================================
   诊疗项目
   ========================================================= */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.svc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 26px;
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.svc-card .sv-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-soft), #fff);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--primary);
}

.svc-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}

.svc-card p {
    color: var(--muted);
    font-size: 14.5px;
}

.svc-card .sv-more {
    margin-top: 14px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* 新闻公告 */
.news-list {
    display: grid;
    gap: 14px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 22px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.news-item .n-date {
    flex: none;
    width: 70px;
    color: var(--primary);
    font-weight: 800;
    font-size: 15px;
}

.news-item .n-tag {
    flex: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.news-item .n-tag.tag-act {
    background: var(--accent-soft);
    color: #5a0a0e;
}

.news-item .n-title {
    font-size: 16px;
    color: var(--ink);
    font-weight: 600;
}

/* =========================================================
   在线预约 / 咨询
   ========================================================= */
.appt-wrap {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.appt-aside {
    background: linear-gradient(160deg, var(--primary-darker), var(--primary-dark));
    color: #fff;
    padding: 40px 36px;
}

.appt-aside h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.appt-aside p {
    color: #f3b6ba;
    font-size: 15px;
    margin-bottom: 26px;
}

.appt-aside .a-list {
    display: grid;
    gap: 16px;
}

.appt-aside .a-list .it {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.appt-aside .a-list .it .ic {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 9px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
}

.appt-aside .a-list .it .t strong {
    display: block;
    font-size: 15px;
}

.appt-aside .a-list .it .t span {
    font-size: 13.5px;
    color: #e3b3b7;
}

.appt-aside .a-phone {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.appt-aside .a-phone .lab {
    font-size: 13px;
    color: #e3b3b7;
}

.appt-aside .a-phone .num {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
}

.appt-form {
    background: #fff;
    padding: 40px 38px;
}

.appt-form .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.appt-form .field {
    margin-bottom: 16px;
}

.appt-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px;
}

.appt-form label .req {
    color: var(--cta);
}

.appt-form input, .appt-form select, .appt-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: #fcfdfd;
    transition: border-color .15s, box-shadow .15s;
}

.appt-form input:focus, .appt-form select:focus, .appt-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.appt-form textarea {
    resize: vertical;
    min-height: 92px;
}

.appt-form .err {
    color: var(--cta);
    font-size: 12.5px;
    margin-top: 5px;
    display: none;
}

.appt-form .field.invalid input,
.appt-form .field.invalid select,
.appt-form .field.invalid textarea {
    border-color: var(--cta);
}

.appt-form .field.invalid .err {
    display: block;
}

.appt-form .submit {
    width: 100%;
    margin-top: 6px;
}

.appt-policy {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.form-success.show {
    display: block;
}

.form-success .ok-ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 34px;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--muted);
}

/* =========================================================
   页脚
   ========================================================= */
.footer {
    background: var(--primary-darker);
    color: #d4a6aa;
    padding: 54px 0 22px;
}

.footer .f-top {
    display: grid;
    grid-template-columns: 1.35fr 1.45fr .85fr;
    gap: 0;
    margin-bottom: 34px;
}

.footer .f-col {
    padding: 0 34px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.footer .f-col:first-child {
    padding-left: 0;
}

.footer .f-col:last-child {
    border-right: none;
    padding-right: 0;
}

.footer h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer h4 small {
    font-size: 13px;
    color: #c98e92;
    font-weight: 400;
    margin-left: 6px;
}

.footer .f-about-body {
    text-align: left;
}

.footer .f-about p {
    font-size: 14px;
    line-height: 1.9;
    color: #d4a6aa;
}

.footer .f-contact ul {
    list-style: none;
}

.footer .f-contact li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.footer .f-contact li a {
    color: #e9bcc0;
}

.footer .f-contact li a:hover {
    color: #fff;
}

.footer .f-icon {
    flex: none;
    font-size: 15px;
    line-height: 1.6;
}

.footer .f-qr img {
    width: 120px;
    height: 120px;
    display: block;
    background: #fff;
    border-radius: 8px;
    object-fit: contain;
}

/* 网站备案 */
.site-record {
    background: #4a0c11;
    color: #d4a6aa;
    padding: 14px 0;
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
}

.site-record p {
    margin: 0;
}

/* 右侧浮动按钮 */
.float-cta {
    position: fixed;
    right: 22px;
    bottom: 80px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-cta .fc-item {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    font-size: 11px;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s, color .2s, background .2s;
}

.float-cta .fc-item svg {
    width: 18px;
    height: 18px;
}

.float-cta .fc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    color: var(--primary-dark);
}

.float-cta .fc-item:first-child {
    background: var(--primary);
    color: #fff;
}

.float-cta .fc-item:first-child:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ===== 快捷入口（6 图标导航） ===== */
.quick-links {
    position: relative;
    z-index: 5;
    background: var(--bg-soft);
}

.quick-links .container {
    padding: unset;
}

.quick-row {
    display: block;
    overflow: hidden;
}

.quick-grid {
    display: grid;
    grid-template-columns:  repeat(6, 1fr);
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
}

.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .2s;
    border-right: 1px solid var(--line);
    padding: 32px 16px;
}

.quick-grid .quick-card:last-child {
    border-right: none;
}

.quick-card:hover {
    background: #f3ece7;
}

.quick-card:hover .icon-wrap {
    transform: translateY(-4px);
}

.quick-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 32, 46, .06);
    margin-bottom: 14px;
    transition: background .2s;
}

.quick-card svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
}

.quick-card:nth-child(1) .icon-wrap {
    background: #e23a2e;
}

.quick-card:nth-child(2) .icon-wrap {
    background: #c41e3a;
}

.quick-card:nth-child(3) .icon-wrap {
    background: #c89211;
}

.quick-card:nth-child(4) .icon-wrap {
    background: #d4791a;
}

.quick-card:nth-child(5) .icon-wrap {
    background: #e23a2e;
}

.quick-card:nth-child(6) .icon-wrap {
    background: #9e1318;
}

.quick-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    transition: color .2s;
}

/* ===== 特色诊疗 ===== */
.section-specialties {
    background: var(--bg-soft);
    padding: 88px 0;
}

.spec-wrap {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 44px;
    align-items: stretch;
}

.spec-main {
    display: flex;
    flex-direction: column;
}

.spec-main h2 {
    margin-bottom: 34px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
    align-items: stretch;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s, color .2s;
}

.spec-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.spec-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex: none;
}

.spec-visual {
    display: flex;
}

.spec-thumb {
    width: 100%;
    min-height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 100%),
    linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spec-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,50 Q35,20 50,50 T80,50' fill='none' stroke='rgba(255,255,255,.12)' stroke-width='2'/%3E%3Ccircle cx='75' cy='30' r='3' fill='rgba(255,255,255,.18)'/%3E%3C/svg%3E") repeat;
    opacity: .6;
}

.thumb-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .85);
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.thumb-placeholder svg {
    width: 56px;
    height: 56px;
    stroke: #fff;
    opacity: .9;
}

.thumb-placeholder span {
    font-size: 14px;
}

/* =========================================================
   内页（子页面）通用样式
   ========================================================= */
.page-crumb {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    font-size: 14px;
    color: var(--muted);
}

.page-crumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-crumb a {
    color: var(--primary);
}

.page-crumb a:hover {
    text-decoration: underline;
}

.page-crumb .sep {
    color: #ccc;
}

.page-crumb span:last-child {
    color: var(--ink);
}

/* 来院路线 */
.section-contact {
    background: var(--bg);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h3 {
    font-size: 17px;
    color: var(--primary);
    margin: 22px 0 8px;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
}

.route-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-list li {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
    padding-left: 14px;
    position: relative;
}

.route-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.route-list strong {
    color: var(--ink);
}

.contact-map {
    min-height: 360px;
}

.map-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: var(--radius);
    border: 1px dashed var(--line);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 15px;
    text-align: center;
    padding: 30px;
}

/* =========================================================
   内页专属组件（每个导航栏目独立完整页面使用）
   ========================================================= */
/* 页头 banner */
.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #b51d2b 0%, #c0202e 48%, #d4454f 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 0;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background: radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .16) 0 14px, transparent 15px),
    radial-gradient(circle at 72% 62%, rgba(255, 255, 255, .10) 0 10px, transparent 11px),
    radial-gradient(circle at 95% 78%, rgba(255, 255, 255, .12) 0 8px, transparent 9px);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.ph-en {
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    opacity: .82;
    text-transform: uppercase;
}

.ph-title {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0 14px;
    line-height: 1.15;
}

.ph-sub {
    font-size: 16px;
    line-height: 1.85;
    max-width: 760px;
    opacity: .94;
}

/* 带 banner 图片的页头（about.html 等） */
.page-hero.about-hero {
    padding: 0;
    min-height: 520px;
}

.page-hero.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-hero .ph-text {
    flex: 1;
    min-width: 0;
}

.about-hero .ph-sub {
    max-width: none;
}

.ph-figure {
    flex: 0 0 420px;
    max-width: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.ph-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.ph-crumb {
    background: #fff;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13.5px;
}

.ph-crumb .container {
    padding: 4px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.ph-crumb a {
    color: var(--muted);
}

.ph-crumb a:hover {
    color: var(--primary);
    text-decoration: none;
}

.ph-crumb .sep {
    margin: 0 8px;
    opacity: .5;
}

.ph-crumb-label {
    margin-right: 4px;
}

/* ===== 栏目页通用小 banner（标题左 + 面包屑右） ===== */
.page-hero.sub-hero {
    padding: 0;
    min-height: 180px;
}

.sub-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

.sub-hero .ph-text {
    flex: 1;
    min-width: 0;
}

.sub-hero .ph-title {
    margin-bottom: 6px;
}

.sub-hero .ph-en {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: .8;
    text-transform: uppercase;
    margin-top: 6px;
}

.sub-crumb {
    font-size: 14px;
    opacity: .92;
    color: #fff;
    flex-shrink: 0;
}

.sub-crumb a {
    color: #fff;
}

.sub-crumb a:hover {
    text-decoration: underline;
}

.sub-crumb span {
    margin: 0 8px;
    opacity: .6;
}

/* ===== 病种专题页（双栏列表） ===== */
.page-hero.disease-sub-hero {
    padding: 0;
    min-height: 180px;
}

.disease-sub-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

.disease-sub-hero .ph-text {
    flex: 1;
    min-width: 0;
}

.disease-sub-hero .ph-title {
    margin-bottom: 6px;
}

.disease-sub-hero .ph-en {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: .8;
    text-transform: uppercase;
    margin-top: 6px;
}

.disease-crumb {
    font-size: 14px;
    opacity: .92;
    color: #fff;
    flex-shrink: 0;
}

.disease-crumb a {
    color: #fff;
}

.disease-crumb a:hover {
    text-decoration: underline;
}

.disease-crumb span {
    margin: 0 8px;
    opacity: .6;
}

.disease-section {
    background: var(--bg-soft);
    padding: 40px 0 64px;
}

.list-wrap {
    display: flex;
    gap: 30px;
}

.list-side {
    width: 260px;
    flex-shrink: 0;
}

.list-main {
    flex: 1;
    min-width: 0;
}

.side-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: visible;
    margin-bottom: 24px;
}

.side-box h4 {
    background: var(--bg-soft);
    padding: 14px 18px;
    font-size: 16px;
    color: var(--ink);
    border-left: 4px solid var(--primary);
}

.side-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li a {
    display: block;
    padding: 13px 18px;
    font-size: 15px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    transition: all .2s;
}

.side-nav li:last-child a {
    border-bottom: none;
}

.side-nav li a:hover,
.side-nav li.active a {
    background: var(--bg-soft);
    color: var(--primary);
    padding-left: 24px;
    font-weight: 600;
}

.side-expert {
    padding: 0;
}

.doc-card-v {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 14px 18px;
    overflow: visible;
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}

.doc-card-v:hover {
    transform: translateY(-3px);
}

.doc-card-photo {
    margin: 14px 0 14px;
    width: 100%;
    height: 220px;
    background: var(--bg-soft);
    display: block;
    overflow: hidden;
}

.doc-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 0;
}

.doc-card-head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.doc-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.doc-card-title {
    font-size: 13px;
    color: var(--muted);
    margin-top: 0;
}

.doc-card-divider {
    margin: 12px 0;
    border: 0;
    border-top: 1px dashed var(--line);
}

.doc-card-intro {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    text-align: left;
}

.doc-card-intro strong {
    color: var(--ink);
    font-weight: 600;
}

.doc-card-intro a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.doc-card-intro a:hover {
    text-decoration: underline;
}

.doc-card-btns {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.doc-card-btns .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 8px;
    font-size: 13px;
    justify-content: center;
}

.side-contact {
    padding: 16px 14px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 2;
}

.side-contact b {
    color: var(--primary);
}

.side-contact p {
    margin: 0 0 10px;
}

.side-contact p:last-child {
    margin-bottom: 0;
}

.side-contact strong {
    color: var(--ink);
    font-weight: 600;
}

.side-contact a:not(.btn) {
    color: var(--primary);
}

.side-contact .btn {
    margin-top: 6px;
    display: inline-flex;
}

.uni-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.uni-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.uni-title-bar {
    width: 4px;
    height: 30px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.uni-title-text h3 {
    font-size: 26px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
}

.uni-title-text .en-inline {
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.uni-title-text .slash {
    font-weight: 400;
    color: var(--muted);
    margin: 0 6px;
}

.disease-intro {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 24px;
    line-height: 1.9;
    color: var(--muted);
    font-size: 15px;
}

.list-item {
    display: flex;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 18px;
    transition: all .3s;
    text-decoration: none;
    color: inherit;
}

.list-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.list-date {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    background: var(--bg-soft);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.list-date .d {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.list-date .y {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.list-body {
    flex: 1;
    min-width: 0;
}

.list-body h3 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 8px;
    transition: color .3s;
}

.list-item:hover .list-body h3 {
    color: var(--primary);
}

.list-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    background: var(--bg-soft);
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
    color: var(--muted);
    background: #fff;
    transition: all .3s;
    text-decoration: none;
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 内页通用 section */
.inner-section {
    padding: 35px 0;
}

.inner-section.alt {
    background: var(--bg-soft);
}

.inner-section.about-intro {
    padding-top: 55px;
}

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

.sec-head.center {
    text-align: center;
}

.sec-head .s-en {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.sec-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin: 7px 0 0;
}

.sec-head .s-desc {
    color: var(--muted);
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.75;
    max-width: 780px;
}

.sec-head.center .s-desc {
    margin-left: auto;
    margin-right: auto;
}

/* 概况两栏 */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 50px;
    align-items: center;
}

.intro-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    border: 1px solid var(--line);
}

.intro-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.intro-text p {
    color: var(--ink);
    line-height: 1.95;
    margin: 0 0 15px;
    font-size: 15.5px;
}

.intro-lead {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 18px;
    line-height: 1.3;
}

.intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.intro-points .pt {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14.5px;
    color: var(--ink);
}

.intro-points .pt::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* 数据卡 */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-num .u {
    font-size: 16px;
    font-weight: 700;
    margin-left: 3px;
}

.stat-label {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

/* 价值/特色卡 */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    transition: .2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.value-card .vc-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #fbeaec;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 17px;
    margin: 0 0 8px;
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* 医生筛选 + 卡片 */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14.5px;
    transition: .2s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.doc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .25s;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.doc-photo {
    height: 250px;
    background: linear-gradient(135deg, #f3e2e5, #ead2d7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
}

.doc-info {
    padding: 18px 20px 22px;
}

.doc-info .doc-name {
    font-size: 18px;
    font-weight: 700;
}

.doc-info .doc-dept {
    color: var(--primary);
    font-size: 13.5px;
    margin: 5px 0 10px;
}

.doc-info .doc-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.doc-info .doc-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.doc-card.hide {
    display: none;
}

/* 主诊医生详情（参考截图双栏布局） */
.doctor-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.doctor-main {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
}

.doctor-header {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.doctor-header .dh-photo {
    background: linear-gradient(135deg, #f3e2e5, #ead2d7);
    border-radius: 12px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
    overflow: hidden;
}

.doctor-header .dh-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.doctor-header .dh-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px;
}

.doctor-header .dh-zhicheng {
    font-size: 18px;
}

.doctor-header .dh-title {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.doctor-header .dh-tag {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 14px;
}

.doctor-header .dh-intro {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.doctor-header .dh-btn {
    display: inline-flex;
}

.doctor-sections {
    padding-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.doctor-section .ds-title {
    font-size: 18px;
    font-weight: 700;
    padding-left: 14px;
    border-left: 4px solid var(--primary);
    margin: 0 0 14px;
    color: var(--ink);
}

.doctor-section .ds-body {
    font-size: 15px;
    line-height: 1.9;
}

.doctor-section .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doctor-section .skill-tags span {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.doctor-section .schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.doctor-section .schedule-table th,
.doctor-section .schedule-table td {
    border: 1px solid var(--line);
    padding: 12px 16px;
    text-align: center;
    font-size: 14.5px;
}

.doctor-section .schedule-table th {
    background: var(--bg-soft);
    font-weight: 600;
    color: var(--ink);
}

/* 医生团队页内容区预约表单（标签与输入框横向排列） */
.doc-book-form {
    max-width: 600px;
}

.doc-book-form .f-field {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.doc-book-form .f-field.full {
    width: 100%;
}

.doc-book-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    width: 80px;
    flex-shrink: 0;
    padding-top: 12px;
    line-height: 1.4;
}

.doc-book-form label .req {
    color: var(--primary);
    margin-left: 2px;
}

.doc-book-form input,
.doc-book-form select,
.doc-book-form textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    flex: 1;
    min-width: 0;
}

.doc-book-form textarea {
    resize: vertical;
    min-height: 92px;
}

.doc-book-form input:focus,
.doc-book-form select:focus,
.doc-book-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.doc-book-form .f-field.invalid input,
.doc-book-form .f-field.invalid select,
.doc-book-form .f-field.invalid textarea {
    border-color: #e23;
}

.doc-book-form .f-error {
    color: #e23;
    font-size: 12.5px;
    min-height: 0;
    margin-top: 4px;
    width: 100%;
    padding-left: 92px;
    box-sizing: border-box;
}

.doc-book-form .f-submit {
    margin-top: 6px;
}

.doc-book-form .f-submit .btn {
    width: 100%;
}

.doc-book-form .book-success {
    display: none;
    background: #eafaf0;
    border: 1px solid #b7e6c8;
    color: #1c7a3e;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.7;
}

.doc-book-form .book-success.show {
    display: block;
}

@media (max-width: 575px) {
    .doc-book-form .f-field {
        flex-direction: column;
        gap: 6px;
    }

    .doc-book-form label {
        width: 100%;
        padding-top: 0;
    }

    .doc-book-form .f-error {
        padding-left: 0;
    }
}

.doctor-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ds-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
}

.ds-box .ds-box-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 4px solid var(--primary);
    color: var(--ink);
}

.ds-doc-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ds-doc-mini .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.ds-doc-mini .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.ds-doc-mini .meta {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.ds-hotline {
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
}

.ds-hotline h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
}

.ds-hotline .tel {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    display: block;
}

.ds-hotline .btn {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    display: inline-flex;
}

.ds-hotline .btn:hover {
    background: rgba(255, 255, 255, .92);
}

.ds-hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ds-hot-list li + li {
    border-top: 1px solid var(--line);
}

.ds-hot-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.45;
}

.ds-hot-list a:hover {
    color: var(--primary);
}

.ds-hot-list a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 10px;
    opacity: .55;
}

.ds-route {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.9;
}

.ds-route p {
    margin: 0 0 10px;
}

.ds-route strong {
    color: var(--ink);
    font-weight: 600;
}

.ds-route a:not(.btn) {
    color: var(--primary);
}

.ds-route .btn {
    margin-top: 8px;
    display: inline-flex;
}

/* 诊疗项目卡 */
.spec-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.spec-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: .2s;
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.spec-card .sc-ico {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #fbeaec;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.spec-card h4 {
    font-size: 17px;
    margin: 0 0 8px;
}

.spec-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* 流程时间线 */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tl-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 22px;
}

.tl-step .tl-no {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.tl-step h4 {
    font-size: 16.5px;
    margin: 0 0 8px;
}

.tl-step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* 科普分类切换 */
.sci-cats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.sci-cat {
    border: none;
    background: transparent;
    padding: 14px 22px;
    margin-bottom: -1px;
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: .2s;
}

.sci-cat:hover {
    color: var(--ink);
}

.sci-cat.active {
    color: var(--ink);
    border-bottom-color: var(--primary);
}

.sci-panel {
    display: none;
}

.sci-panel.active {
    display: block;
}

.sci-intro {
    font-size: 15.5px;
    line-height: 1.95;
    color: var(--ink);
    margin: 0 0 18px;
}

.article-list {
    display: flex;
    flex-direction: column;
}

.article-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: 14.5px;
}

.article-list a:last-child {
    border-bottom: none;
}

.article-list a:hover {
    color: var(--primary);
}

.article-list .a-dot {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 0;
}

.article-list .a-title {
    flex: 1;
}

.article-list .a-date {
    color: var(--muted);
    font-size: 13px;
    flex-shrink: 0;
}

/* FAQ 手风琴 */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.faq-q .faq-ico {
    transition: .25s;
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item.open .faq-ico {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 14.5px;
}

.faq-item.open .faq-a {
    display: block;
}

/* ===== 健康问答页（原生 details 手风琴） ===== */
.qa-intro {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qa-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.qa-item .qa-item-header {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.qa-item ::-webkit-details-marker {
    display: none;
}

.qa-item .q {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qa-item .q .tag {
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.qa-item .ar {
    transition: .25s;
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.qa-answer {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    border-top: 1px dashed var(--line);
    margin-top: 0;
    padding-top: 16px;
}

.qa-cta {
    margin-top: 32px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
}

.qa-cta p {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 16px;
}

.qa-cta .btn {
    display: inline-flex;
}

/* 交通方式切换 */
.transport-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.transport-tab {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14.5px;
    color: var(--muted);
    transition: .2s;
}

.transport-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.transport-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.transport-panel {
    display: none;
}

.transport-panel.active {
    display: block;
}

.map-box {
    width: 100%;
    min-height: 380px;
    border-radius: 16px;
    border: 1px dashed var(--line);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 15px;
    text-align: center;
    padding: 30px;
}

/* 预约表单 */
.book-wrap {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 36px;
    align-items: start;
}

.book-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.book-form .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.book-form .f-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.book-form .f-field.full {
    grid-column: 1 / -1;
}

.book-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.book-form label .req {
    color: var(--primary);
    margin-left: 2px;
}

.book-form input, .book-form select, .book-form textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    width: 100%;
}

.book-form textarea {
    resize: vertical;
    min-height: 92px;
}

.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.book-form .f-field.invalid input, .book-form .f-field.invalid select, .book-form .f-field.invalid textarea {
    border-color: #e23;
}

.book-form .f-error {
    color: #e23;
    font-size: 12.5px;
    min-height: 0;
    margin-top: 2px;
}

.book-form .f-submit {
    margin-top: 6px;
}

.book-success {
    display: none;
    background: #eafaf0;
    border: 1px solid #b7e6c8;
    color: #1c7a3e;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.7;
}

.book-success.show {
    display: block;
}

.book-aside {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.book-aside h4 {
    font-size: 17px;
    margin: 0 0 14px;
}

.book-aside ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-aside li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.book-aside li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.book-aside .ba-phone {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin: 6px 0 4px;
}

.book-aside .ba-note {
    font-size: 13px;
    color: var(--muted);
}

/* CTA 横幅 */
.cta-band {
    background: linear-gradient(120deg, #b51d2b, #c0202e 55%, #d4454f);
    color: #fff;
    border-radius: 16px;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-band h3 {
    font-size: 22px;
    margin: 0 0 6px;
}

.cta-band p {
    opacity: .92;
    margin: 0;
    font-size: 14.5px;
}

.cta-band .btn-cta {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.cta-band .btn-cta:hover {
    background: rgba(255, 255, 255, .88);
}

/* ===== 栏目页：分类入口卡 ===== */
.col-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.col-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.col-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.col-card .cc-ico {
    font-size: 30px;
    line-height: 1;
}

.col-card h4 {
    margin: 14px 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.col-card p {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
}

.col-card .cc-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.col-card:hover .cc-more {
    text-decoration: underline;
}

.sec-head-actions {
    margin: 0 0 22px;
}

.link-more {
    color: var(--primary);
    font-weight: 600;
    margin-left: 6px;
}

.link-more:hover {
    text-decoration: underline;
}

/* ===== 列表页：工具条 + 筛选 ===== */
.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.list-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.list-filter-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
}

.list-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.list-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.list-count {
    font-size: 13.5px;
    color: var(--muted);
}

/* ===== 列表页：主体两栏（列表 + 侧栏） ===== */
.art-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.art-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.art-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.art-cover {
    position: relative;
    height: 150px;
}

.art-cover .art-cat-tag {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(192, 32, 46, .92);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.art-card-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.art-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
    margin: 0 0 10px;
}

.art-card:hover .art-card-title {
    color: var(--primary);
}

.art-card-sum {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px;
    flex: 1;
}

.art-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--muted);
}

.art-card-meta .ac-more {
    color: var(--primary);
    font-weight: 600;
}

/* 行式列表（新闻） */
.art-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.art-row {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.art-row:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.ar-date {
    text-align: center;
    color: var(--primary);
    border-right: 1px solid var(--line);
    padding-right: 14px;
}

.ar-date .d {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.ar-date .m {
    font-size: 12px;
    color: var(--muted);
}

.ar-tags {
    margin-bottom: 6px;
}

.ar-tag {
    display: inline-block;
    background: #fdeef0;
    color: var(--primary);
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 4px;
}

.ar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
}

.art-row:hover .ar-title {
    color: var(--primary);
}

.ar-sum {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.ar-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
}

/* ===== 侧栏 ===== */
.art-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.art-side .side-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.side-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 14px;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}

.side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-list li {
    border-bottom: 1px dashed var(--line);
}

.side-list li:last-child {
    border-bottom: none;
}

.side-list a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 11px 0;
    color: var(--ink);
    font-size: 14px;
    transition: color .2s ease;
}

.side-list a:hover {
    color: var(--primary);
}

.side-list .si-dot {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.side-list .si-title {
    flex: 1;
    line-height: 1.5;
}

.side-list .si-date {
    color: var(--muted);
    font-size: 12px;
    flex-shrink: 0;
}

.side-cta {
    background: linear-gradient(120deg, #b51d2b, #c0202e);
    color: #fff;
    text-align: center;
}

.side-cta p {
    margin: 0 0 12px;
    font-size: 14.5px;
}

.side-cta .btn-cta {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* ===== 文章详情页 ===== */
.art-detail {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.ad-cover {
    height: 240px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    box-shadow: var(--shadow);
}

.ad-cover-img {
    overflow: hidden;
}

.ad-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.35;
    margin: 0 0 14px;
}

.ad-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--muted);
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.ad-meta .ad-cat {
    color: var(--primary);
    font-weight: 600;
}

.ad-body {
    font-size: 15.5px;
    line-height: 1.95;
    color: #333;
}

.ad-body .ad-p {
    margin: 0 0 16px;
}

.ad-body .ad-h {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 14px;
}

.ad-body .ad-quote {
    margin: 20px 0;
    padding: 14px 18px;
    background: #fdf3f4;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    color: #a8323c;
    font-size: 14.5px;
    line-height: 1.8;
}

.ad-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 26px 0;
}

.ad-tag {
    background: #fdeef0;
    color: var(--primary);
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 999px;
}

.ad-nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.ad-nav a {
    flex: 1;
    color: var(--ink);
    font-size: 14px;
    transition: color .2s ease;
}

.ad-nav a:hover {
    color: var(--primary);
}

.ad-nav .ad-prev::before {
    content: "← ";
    color: var(--muted);
}

.ad-nav .ad-next {
    text-align: right;
}

.ad-nav .ad-next::after {
    content: " →";
    color: var(--muted);
}

.ad-nav .ad-disabled {
    color: #bbb;
    pointer-events: none;
}

.ad-rel {
    margin-top: 4px;
}

.art-missing {
    text-align: center;
    padding: 60px 0;
    color: var(--muted);
    font-size: 16px;
}

.art-missing a {
    color: var(--primary);
    font-weight: 600;
}

/* 封面占位渐变 */
.grad-cause {
    background: linear-gradient(135deg, #fde8ea, #f6cfd4);
}

.grad-symptom {
    background: linear-gradient(135deg, #fdeede, #f8d9c2);
}

.grad-harm {
    background: linear-gradient(135deg, #fbe3e6, #f3c2c8);
}

.grad-treat {
    background: linear-gradient(135deg, #eaf3ec, #cfe6d4);
}

.grad-news {
    background: linear-gradient(135deg, #e9eefb, #cdd9f3);
}

/* 病种专题页 */
.disease-photo {
    min-height: 320px;
    background: linear-gradient(135deg, #f8e8e8 0%, #f4e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b08a8a;
    font-size: 16px;
    border-radius: var(--radius);
}

.intro-points.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ip-item {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid var(--line);
}

.ip-num {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 28px;
    margin-bottom: 10px;
}

.ip-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.ip-item p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.treatment-timeline {
    grid-template-columns: repeat(3, 1fr);
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.rel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: 15px;
    transition: color .2s, background .2s;
}

.rel-item:last-child {
    border-bottom: none;
}

.rel-item:hover {
    color: var(--primary);
    background: var(--bg-soft);
}

.rel-dot {
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 0;
}

.rel-title {
    flex: 1;
}

.rel-item svg {
    width: 18px;
    height: 18px;
    color: var(--muted);
    flex-shrink: 0;
}

.sec-head.left {
    text-align: left;
    align-items: flex-start;
}

/* ===== 文章详情页（参考截图双栏布局） ===== */
.article-sub-hero {
    padding: 0;
    min-height: 180px;
}

.article-sub-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

.article-sub-hero .ph-text {
    flex: 1;
    min-width: 0;
}

.article-sub-hero .ph-title {
    margin-bottom: 6px;
}

.article-sub-hero .ph-en {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: .8;
    text-transform: uppercase;
    margin-top: 6px;
}

.article-crumb {
    font-size: 14px;
    opacity: .92;
    color: #fff;
    flex-shrink: 0;
}

.article-crumb a {
    color: #fff;
}

.article-crumb a:hover {
    text-decoration: underline;
}

.article-crumb span {
    margin: 0 8px;
    opacity: .6;
}

.article-section {
    background: var(--bg-soft);
    padding: 40px 0 64px;
}

.article-section .article-body img {
    margin: 0 auto;
}

.article-section .article-body p {
    text-indent: 2em;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

.article-main {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 42px 42px;
    box-shadow: var(--shadow);
}

.article-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.4;
    text-align: center;
    margin: 0 0 18px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
    font-size: 13.5px;
    color: var(--muted);
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--line);
    margin-bottom: 28px;
}

.article-meta-sep {
    margin: 0 12px;
    color: #ddd;
}

.article-body {
    font-size: 16px;
    line-height: 2;
    color: #444;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body .article-p {
    margin: 0 0 18px;
    text-indent: 2em;
}

.article-body .article-h {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 16px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
    line-height: 1.4;
}

.article-body .article-quote {
    background: var(--bg-soft);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    color: var(--muted);
    border-radius: 0 8px 8px 0;
}

.article-figure {
    margin: 24px 0;
    text-align: center;
}

.article-figure-placeholder {
    background: #f6f2f2;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

.article-figure figcaption {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
}

.article-pager {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-pager-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    font-size: 14px;
    transition: color .2s;
}

.article-pager-link:hover {
    color: var(--primary);
}

.article-pager-link small {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.article-pager-link span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.article-pager-prev {
    align-items: flex-start;
}

.article-pager-next {
    align-items: flex-end;
    text-align: right;
}

.article-pager-disabled {
    color: #bbb;
    font-size: 13px;
}

.article-pager a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    flex: 1;
}

.article-missing {
    text-align: center;
    padding: 80px 0;
    color: var(--muted);
    font-size: 16px;
}

.article-missing a {
    color: var(--primary);
    font-weight: 600;
}

/* 文章详情页侧边栏 */
.article-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}

.article-side-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: var(--shadow);
}

.article-side-title {
    background: var(--bg-soft);
    padding: 14px 18px;
    font-size: 16px;
    color: var(--ink);
    border-left: 4px solid var(--primary);
    margin: 0;
}

.article-side-route {
    padding: 16px 14px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 2;
}

.article-side-route p {
    margin: 0 0 10px;
}

.article-side-route strong {
    color: var(--ink);
    font-weight: 600;
}

.article-side-route a:not(.btn) {
    color: var(--primary);
}

.article-side-route .btn {
    margin-top: 6px;
    display: inline-flex;
}

.side-map, .route-map {
    position: relative;
    display: block;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
}

.side-map img, .route-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-map .route-map {
    height: 360px;
    margin-bottom: 0;
}

.article-side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-side-menu li a {
    display: block;
    padding: 13px 18px;
    font-size: 14.5px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    transition: all .2s;
}

.article-side-menu li:last-child a {
    border-bottom: none;
}

.article-side-menu li a:hover,
.article-side-menu li a.active {
    background: var(--bg-soft);
    color: var(--primary);
    padding-left: 24px;
    font-weight: 600;
}

.article-side-docs {
    padding: 0;
}

.article-side-docs .doc-card-intro {
    font-size: 12.5px;
}

.article-side-hot {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-side-hot li {
    border-bottom: 1px dashed var(--line);
}

.article-side-hot li:last-child {
    border-bottom: none;
}

.article-side-hot li a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 18px;
    color: var(--ink);
    font-size: 14px;
    transition: color .2s;
}

.article-side-hot li a:hover {
    color: var(--primary);
}

.article-hot-dot {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.article-hot-title {
    flex: 1;
    line-height: 1.5;
}

.article-hot-date {
    color: var(--muted);
    font-size: 12px;
    flex-shrink: 0;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 内页响应式 */
@media (max-width: 991px) {
    .intro-grid, .doctor-layout, .book-wrap {
        grid-template-columns: 1fr;
    }

    .doctor-header {
        grid-template-columns: 1fr;
    }

    .doctor-header .dh-photo {
        min-height: 280px;
    }

    .stat-row, .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-grid, .spec-grid-2, .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .ph-title {
        font-size: 30px;
    }

    .art-layout, .art-detail {
        grid-template-columns: 1fr;
    }

    .art-grid {
        grid-template-columns: 1fr;
    }

    .col-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .art-side {
        position: static;
    }

    .intro-points.grid-3, .treatment-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .disease-photo {
        min-height: 260px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .env-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        min-height: 420px;
    }

    .page-hero.about-hero {
        padding: 0;
        min-height: 420px;
    }

    .page-hero.about-hero .container {
        gap: 30px;
    }

    .ph-figure {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .page-hero.disease-sub-hero,
    .page-hero.sub-hero {
        min-height: auto;
        padding: 34px 0;
    }

    .disease-sub-hero .container,
    .sub-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .disease-crumb,
    .sub-crumb {
        margin-top: 4px;
    }

    .list-wrap {
        flex-direction: column;
    }

    .list-side {
        width: 100%;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-side {
        position: static;
    }

    .article-sub-hero {
        min-height: auto;
        padding: 34px 0;
    }

    .article-sub-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .article-crumb {
        margin-top: 4px;
    }
}

@media (max-width: 575px) {
    .stat-row, .value-grid, .doc-grid, .spec-grid-2, .timeline {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .env-grid {
        grid-template-columns: 1fr;
    }

    .news-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-toolbar .btn-outline {
        display: none;
    }

    .book-form .f-row {
        grid-template-columns: 1fr;
    }

    .intro-points {
        grid-template-columns: 1fr;
    }

    .intro-points.grid-3, .treatment-timeline {
        grid-template-columns: 1fr;
    }

    .ph-title {
        font-size: 26px;
    }

    .page-hero {
        min-height: 360px;
    }

    .page-hero.about-hero {
        padding: 0;
        min-height: 360px;
    }

    .page-hero.about-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .ph-figure {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .page-hero.disease-sub-hero,
    .page-hero.sub-hero {
        padding: 28px 0;
    }

    .disease-sub-hero .ph-title,
    .sub-hero .ph-title {
        font-size: 28px;
    }

    .disease-crumb,
    .sub-crumb {
        font-size: 13px;
    }

    .disease-crumb span,
    .sub-crumb span {
        margin: 0 5px;
    }

    .list-item {
        flex-direction: column;
        gap: 16px;
    }

    .list-date {
        width: 64px;
        height: 64px;
    }

    .list-date .d {
        font-size: 24px;
    }

    .uni-title-text h3 {
        font-size: 22px;
    }

    .disease-intro {
        padding: 18px 20px;
    }

    .cta-band {
        padding: 26px 22px;
    }

    .col-cards {
        grid-template-columns: 1fr;
    }

    .art-row {
        grid-template-columns: 64px 1fr;
    }

    .art-row .ar-more {
        display: none;
    }

    .ad-title {
        font-size: 24px;
    }

    .article-main {
        padding: 24px 22px 30px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-meta {
        font-size: 12.5px;
    }

    .article-meta-sep {
        margin: 0 8px;
    }

    .article-body {
        font-size: 14.5px;
    }

    .article-pager {
        flex-direction: column;
        gap: 14px;
    }

    .doctor-main {
        padding: 22px;
    }

    .doctor-header {
        gap: 20px;
    }

    .doctor-header .dh-name {
        font-size: 24px;
    }

    .doctor-header .dh-zhicheng {
        font-size: 16px;
    }

    .doctor-section .schedule-table th,
    .doctor-section .schedule-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .ds-hotline .tel {
        font-size: 22px;
    }

    .article-pager-next {
        align-items: flex-start;
        text-align: left;
    }

    .page-hero.article-sub-hero {
        padding: 28px 0;
    }

    .article-sub-hero .ph-title {
        font-size: 28px;
    }

    .article-crumb {
        font-size: 13px;
    }

    .article-crumb span {
        margin: 0 5px;
    }
}

@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .feature-grid, .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 10px 16px;
        box-shadow: var(--shadow);
    }

    .nav.open a {
        padding: 12px 14px;
    }

    .nav.open a.active::after {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: 2;
    }

    .about-wrap, .adv-grid, .doctor-feature, .appt-wrap, .spec-wrap {
        grid-template-columns: 1fr;
    }

    .about-wrap {
        min-height: auto;
    }

    .about-body {
        justify-content: flex-start;
    }

    .section-panel[data-section-panel="news"] .about-body {
        justify-content: flex-start;
        height: auto;
    }

    .about-visual {
        order: 2;
    }

    .about-points {
        gap: 16px 38px;
    }

    .science-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .science-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        order: 1;
    }

    .science-tabs .science-tab {
        flex: 1;
        min-width: 140px;
        text-align: center;
        padding: 14px 18px;
        min-height: 52px;
    }

    .science-visual {
        order: 2;
        padding: 24px;
    }

    .science-side {
        order: 3;
        padding: 20px;
    }

    .spec-visual {
        position: static;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contact-map, .map-placeholder {
        min-height: 280px;
    }

    .sv-card {
        min-height: 300px;
    }

    .doctor-photo img {
        min-height: 380px;
    }

    .appt-aside {
        order: 2;
    }

    .footer .f-top {
        grid-template-columns: 1fr;
    }

    .footer .f-col {
        border-right: none;
        padding: 0 0 26px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer .f-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .feature-grid, .svc-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .spec-item {
        padding: 14px 10px;
        font-size: 13px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-card {
        padding: 22px 10px;
    }

    .quick-card svg {
        width: 32px;
        height: 32px;
    }

    .quick-card h4 {
        font-size: 14px;
    }

    .appt-form .f-row {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-en {
        font-size: 40px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-header {
        flex-direction: column;
        gap: 14px;
    }

    .section-tabs-inline {
        flex-wrap: wrap;
    }

    .about-title.section-tabs-inline .section-tab-title {
        font-size: 26px;
    }

    .news-row-date .d {
        font-size: 22px;
    }

    .news-row-item {
        padding: 14px;
        gap: 12px;
    }

    .footer .f-top {
        grid-template-columns: 1fr;
    }

    .topbar .tb-left {
        gap: 14px;
        font-size: 12.5px;
    }

    .float-cta {
        bottom: 20px;
        right: 14px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}
