/**
 * Suopu 医疗主题 - 主样式表
 * 文件路径: wp-content/themes/suopu/assets/css/main.css
 *
 * 架构：
 *   1. CSS 变量（品牌色彩系统）
 *   2. 通用工具类
 *   3. 按钮系统
 *   4. 板块 / 区块样式
 *   5. Hero Banner
 *   6. 服务卡片
 *   7. 医生卡片
 *   8. 案例卡片
 *   9. 评价模块
 *  10. 悬浮咨询组件
 *  11. 导航栏
 *  12. 页脚
 */

/* =====================================================
   1. CSS 变量
   ===================================================== */
:root {
    --sp-primary:        #1a6fc4;
    --sp-primary-dark:   #155fa3;
    --sp-primary-light:  #e8f0fc;
    --sp-accent:         #f0b429;
    --sp-accent-dark:    #d99f1a;
    --sp-text:           #1a1a2e;
    --sp-muted:          #6c757d;
    --sp-bg-alt:         #f7f9fc;
    --sp-radius:         12px;
    --sp-radius-sm:      8px;
    --sp-shadow:         0 4px 20px rgba(0,0,0,.08);
    --sp-shadow-hover:   0 8px 32px rgba(26,111,196,.18);
    --sp-transition:     0.28s cubic-bezier(.4,0,.2,1);
    --sp-section-gap:    80px;
}

/* =====================================================
   2. 基础 & 工具类
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    color: var(--sp-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.sp-object-cover { object-fit: cover; }

.sp-lazy-img {
    transition: opacity 0.4s ease;
    opacity: 0;
}
.sp-lazy-img.sp-loaded { opacity: 1; }

/* =====================================================
   3. 按钮系统
   ===================================================== */
.btn-sp-primary,
.btn-sp-accent,
.btn-sp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
    font-size: 0.95rem;
    transition: all var(--sp-transition);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-sp-primary {
    background: var(--sp-primary);
    color: #fff;
    border-color: var(--sp-primary);
}
.btn-sp-primary:hover, .btn-sp-primary:focus {
    background: var(--sp-primary-dark);
    border-color: var(--sp-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sp-shadow-hover);
}

.btn-sp-accent {
    background: var(--sp-accent);
    color: #fff;
    border-color: var(--sp-accent);
}
.btn-sp-accent:hover {
    background: var(--sp-accent-dark);
    border-color: var(--sp-accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sp-outline {
    background: transparent;
    color: var(--sp-primary);
    border-color: var(--sp-primary);
}
.btn-sp-outline:hover {
    background: var(--sp-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm.btn-sp-primary,
.btn-sm.btn-sp-outline {
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
}

/* =====================================================
   4. 板块通用样式
   ===================================================== */
.sp-section {
    padding: var(--sp-section-gap) 0;
}
.sp-section-alt {
    background: var(--sp-bg-alt);
}
.sp-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.sp-section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.sp-section-header p {
    color: var(--sp-muted);
    max-width: 600px;
    margin: 0 auto;
}
.sp-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sp-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}
.sp-label::before {
    content: '— ';
}
.sp-label::after {
    content: ' —';
}

/* 通用卡片 */
.sp-card {
    background: #fff;
    border-radius: var(--sp-radius);
    box-shadow: var(--sp-shadow);
    transition: transform var(--sp-transition), box-shadow var(--sp-transition);
    overflow: hidden;
}
.sp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sp-shadow-hover);
}

/* =====================================================
   5. Hero Banner
   ===================================================== */
.sp-hero {
    position: relative;
    overflow: hidden;
}
.sp-hero-swiper,
.sp-hero__slide {
    height: clamp(520px, 80vh, 820px);
}
.sp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sp-hero__bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.sp-hero__overlay {
    position: absolute;
    inset: 0;
}
.sp-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.sp-hero__content>.row{ width:100%}
.sp-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
}
.sp-hero__title {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);letter-spacing: 5px;
}
.sp-hero__subtitle {
    font-size: 40px;
    color: rgba(255,255,255);
    margin-bottom: 1.8rem;
    max-width: 540px;
}
.sp-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.sp-hero__actions .sp-hero__btn-primary{ background:#FF2231; border:0; padding-left:50px; padding-right:50px}
.sp-hero__btn-primary {
    font-size: 1.05rem;
    padding: 0.75rem 2rem;
}
.sp-hero__btn-secondary {
    font-size: 1rem;
    padding: 0.65rem 1.6rem;
}
.sp-hero__trust {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.sp-hero__trust span {
    color: rgba(255,255,255,.8);
    font-size: 0.875rem;
}
.sp-hero__trust .bi-check-circle-fill { color: var(--sp-accent); }

/* 英雄表单卡片 */
.sp-hero__form-card {
    background: #fff;
    border-radius: var(--sp-radius);
    padding: 2rem;
    box-shadow: 0 12px 48px rgba(0,0,0,.25);
    animation: heroCardIn 0.6s ease 0.3s both;
}
@keyframes heroCardIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Swiper 导航 */
.sp-hero__nav {
    color: #fff;
    background: rgba(255,255,255,.15);
    width: 44px; height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
}
.sp-hero__nav::after { font-size: 1rem; }
.sp-hero__pagination .swiper-pagination-bullet { background: #fff; opacity: .5; }
.sp-hero__pagination .swiper-pagination-bullet-active { opacity: 1; }

/* =====================================================
   6. 服务卡片
   ===================================================== */
.sp-service-card__thumb img {
    transition: transform 0.5s ease;
}
.sp-service-card:hover .sp-service-card__thumb img {
    transform: scale(1.06);
}
.sp-filter-btn {
    background: transparent;
    border: 1.5px solid #dee2e6;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.875rem;
    color: var(--sp-muted);
    cursor: pointer;
    transition: all var(--sp-transition);
}
.sp-filter-btn:hover,
.sp-filter-btn.active {
    background: var(--sp-primary);
    border-color: var(--sp-primary);
    color: #fff;
}

/* =====================================================
   7. 医生卡片
   ===================================================== */
.sp-doctor-card__avatar {
    width: 110px; height: 110px;
    margin-top: 1.5rem;
    border: 4px solid var(--sp-primary-light);
    border-radius: 50%;
    overflow: hidden;
}

/* =====================================================
   8. 案例卡片 — 术前术后
   ===================================================== */
.sp-ba-label {
    position: absolute;
    bottom: 10px;
    padding: 2px 10px;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.sp-ba-label--before { left: 10px; }
.sp-ba-label--after  { right: 10px; }

/* =====================================================
   9. 数据统计
   ===================================================== */
.sp-stat-number { font-size: clamp(2rem, 4vw, 2.8rem); }

/* =====================================================
   10. 评价
   ===================================================== */
.sp-testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sp-muted);
    font-style: italic;
}

/* =====================================================
   11. 导航栏
   ===================================================== */
.sp-navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: background var(--sp-transition), box-shadow var(--sp-transition), color var(--sp-transition);
    z-index: 1030;
}

/* ── 透明模式（全站，开关开启时）── */
.sp-navbar.sp-navbar--transparent {
    background: transparent;
    box-shadow: none;
}
.sp-navbar.sp-navbar--transparent .navbar-brand,
.sp-navbar.sp-navbar--transparent .nav-link,
.sp-navbar.sp-navbar--transparent .sp-navbar-nav a,
.sp-navbar.sp-navbar--transparent .sp-navbar-icon-btn {
    color: #fff;
}
.sp-navbar.sp-navbar--transparent .sp-navbar-icon-btn:hover {
    background: rgba(255,255,255,.18);
    color: #fff;
}

/* ── Breadcrumb Hero 顶部覆盖模式：Header 叠在 Banner 上方 ── */
.sp-navbar.sp-navbar--breadcrumb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-top: 22px;
    padding-bottom: 14px;
    z-index: 1040;
}
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) > .container {
    align-items: center;
}
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .navbar-brand,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .nav-link,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-navbar-nav a,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-navbar-icon-btn {
    color: #fff !important;
}
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .nav-link,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-navbar-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 16px !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    text-shadow: 0 1px 5px rgba(0,0,0,.12);
}
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .nav-link:hover,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .nav-link.active,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-navbar-nav a:hover,
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-navbar-nav .current-menu-item > a {
    color: #fff !important;
    opacity: .86;
}
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-logo__img {
    height: 42px;
    max-width: 190px;
}
.sp-navbar.sp-navbar--breadcrumb-overlay:not(.sp-navbar--scrolled) .sp-navbar-icon-btn:hover {
    background: rgba(255,255,255,.18);
    color: #fff;
}
.sp-navbar.sp-navbar--breadcrumb-overlay + .suopu-breadcrumb-hero,
.sp-navbar.sp-navbar--breadcrumb-overlay + .suopu-breadcrumb-plain {
    margin-top: 0;
}

/* ── 滚动后恢复白色背景（由 JS 添加 .sp-navbar--scrolled 类）── */
.sp-navbar.sp-navbar--scrolled {
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.1) !important;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.sp-navbar.sp-navbar--breadcrumb-overlay.sp-navbar--scrolled {
    padding-top: 22px;
    padding-bottom: 14px;
}
.sp-navbar.sp-navbar--breadcrumb-overlay.sp-navbar--scrolled > .container {
    align-items: center;
}
.sp-navbar.sp-navbar--scrolled .navbar-brand,
.sp-navbar.sp-navbar--scrolled .nav-link,
.sp-navbar.sp-navbar--scrolled .sp-navbar-nav a,
.sp-navbar.sp-navbar--scrolled .sp-navbar-icon-btn {
    color: var(--sp-text);
}
.sp-navbar.sp-navbar--breadcrumb-overlay.sp-navbar--scrolled .nav-link,
.sp-navbar.sp-navbar--breadcrumb-overlay.sp-navbar--scrolled .sp-navbar-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 16px !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    text-shadow: none;
}
.sp-navbar.sp-navbar--breadcrumb-overlay.sp-navbar--scrolled .sp-logo__img {
    height: 42px;
    max-width: 190px;
}
.sp-navbar.sp-navbar--scrolled .sp-navbar-icon-btn:hover {
    background: rgba(0,0,0,.05);
    color: var(--sp-primary);
}

/* ── Logo 图片尺寸约束 ── */
.sp-logo__img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    vertical-align: middle;
}
.sp-logo__img--mobile {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    vertical-align: middle;
}

/* ── 导航链接 ── */
.sp-navbar .nav-link {
    font-weight: 500;
    font-size: 18px;
    padding: 0.5rem 20px!important;
    transition: color var(--sp-transition);
}
.sp-navbar .nav-link:hover,
.sp-navbar .nav-link.active {
    color: #FF2231;
}

/* ── 右侧功能按钮组 ── */
.sp-navbar-actions {
    gap: 0.25rem;
    flex-shrink: 0; /* 不允许被压缩 */
}

/* 图标按钮（微信 + 菜单，PC + 移动端均显示） */
.sp-navbar-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 7px 9px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;       /* 图标大小 */
    line-height: 1;
    color: var(--sp-text);   /* 默认颜色（实色背景时） */
    transition: transform .18s ease, color .18s ease, background .18s ease;
}
.sp-navbar-icon-btn:hover {
    transform: scale(1.12);
    background: rgba(0,0,0,.05);
    color: var(--sp-primary);
}
.sp-navbar-icon-btn:focus-visible {
    outline: 2px solid var(--sp-primary);
    outline-offset: 2px;
}

/* =====================================================
   12. 悬浮咨询组件
   ===================================================== */
.sp-float-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sp-float-item {
    position: relative;
}
.sp-float-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 56px;
    background: var(--sp-primary);
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background var(--sp-transition), transform var(--sp-transition);
    gap: 2px;
}
.sp-float-link:hover { background: var(--sp-primary-dark); color: #fff; }
.sp-float-label {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1;
}
.sp-float-item:first-child .sp-float-link { border-radius: var(--sp-radius-sm) 0 0 0; }
.sp-float-item:last-child  .sp-float-link { border-radius: 0 0 0 var(--sp-radius-sm); }

.sp-float-expand {
    position: absolute;
    right: 100%;
    top: 0;
    background: #fff;
    box-shadow: var(--sp-shadow);
    border-radius: var(--sp-radius-sm) 0 0 var(--sp-radius-sm);
    padding: 0.75rem 1rem;
    min-width: 160px;
    font-size: 0.875rem;
    color: var(--sp-text);
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--sp-transition), transform var(--sp-transition);
}
.sp-float-item:hover .sp-float-expand {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.sp-float-qr { min-width: auto; text-align: center; padding: 1rem; }

/* 返回顶部按钮 */
#sp-back-top {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--sp-transition);
    background: var(--sp-accent);
}
#sp-back-top.sp-visible {
    opacity: 1;
    pointer-events: auto;
}

/* =====================================================
   12. 页脚
   ===================================================== */
.sp-footer {
    background: #1C2333;
    color:#fff;
}
.sp-footer a {
    color:#fff;
    text-decoration: none;
    transition: color var(--sp-transition);
}
.sp-footer a:hover { color: rgba(255,255,255,.7); }
.sp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 0.875rem;
}

/* =====================================================
   13. 响应式
   ===================================================== */
@media (max-width: 991px) {
    :root { --sp-section-gap: 56px; }
    .sp-hero__form-card { display: none; }
    .sp-float-bar { display: none; }
}
@media (max-width: 767px) {
    .sp-hero__title { font-size: 1.8rem; }
    .sp-section-header h2 { font-size: 1.5rem; }
}

/* =====================================================
   Hero Swiper 移动端高度适配
   ===================================================== */
@media (max-width: 768px) {
    .sp-hero-swiper,
    .sp-hero__slide {
        height: clamp(280px, 60vw, 480px);
    }
    .sp-hero__title { font-size: 1.5rem; }
    .sp-hero__subtitle { font-size: .9rem; }
}

/* Swiper 品牌色样式覆写 */
.sp-hero__nav {
    color: #fff;
    background: rgba(255,255,255,.15);
    width: 44px; height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
}
.sp-hero__nav::after { font-size: 1rem; font-weight: 700; }
.sp-hero__nav:hover { background: rgba(255,255,255,.3); }
.sp-hero__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.55);
    opacity: 1;
    width: 8px; height: 8px;
    transition: background var(--sp-transition), width var(--sp-transition);
}
.sp-hero__pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* =====================================================
   13. 内页 Banner（纯图片展示区）
   ===================================================== */
.sp-page-banner {
    position: relative;
    overflow: hidden;
    background-color: #0a3d7a; /* 图片加载前占位色 */
    background-size: cover;
    background-position: center top;
    /* PC 默认高度 */
    min-height: 300px;
    display: flex;
    align-items: stretch;
}
/* 背景图（CSS 变量，由 inline style 或模板注入） */
@media (max-width: 768px) {
    .sp-page-banner {
        background-image: var(--sp-banner-bg-mobile, var(--sp-banner-bg-img, none));
        min-height: 180px;
    }
}
@media (min-width: 769px) {
    .sp-page-banner {
        background-image: var(--sp-banner-bg-img, none);
        min-height: 300px;
    }
}
/* 暗色渐变遮罩（仅有背景图时） */
.sp-page-banner--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,29,70,.35) 0%, rgba(10,29,70,.55) 100%);
    z-index: 0;
}
/* 内部图片（若用 <img> 替代背景图时） */
.sp-page-banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}
/* 标题文字层（可选，仅当模板内设置时显示） */
.sp-page-banner__content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 48px 0;
    color: #fff;
}
.sp-page-banner .sp-banner-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.sp-page-banner .sp-banner-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 0;
}

/* ── 独立面包屑条 ── */
.sp-breadcrumb-strip {
    background: #f7f9fc;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
}
.sp-breadcrumb-strip .breadcrumb {
    margin-bottom: 0;
    font-size: .85rem;
}
.sp-breadcrumb-strip .breadcrumb-item a {
    color: var(--sp-primary);
    text-decoration: none;
}
.sp-breadcrumb-strip .breadcrumb-item a:hover { text-decoration: underline; }
.sp-breadcrumb-strip .breadcrumb-item.active { color: var(--sp-muted); }

/* =====================================================
   14. 新闻列表
   ===================================================== */
.sp-news-archive,
.sp-case-archive {
    padding: 1.5rem 0 2rem;
    background: #f4f6fa;
}

.sp-news-layout,
.sp-case-layout {
    align-items: stretch;
}

.sp-news-layout > [class*="col-"],
.sp-case-layout > [class*="col-"] {
    display: flex;
}

.sp-news-main-panel,
.sp-news-sidebar-panel,
.sp-case-main-panel,
.sp-case-sidebar-panel {
    width: 100%;
    min-width: 0;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.sp-news-main-panel {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.sp-news-sidebar-panel,
.sp-case-sidebar-panel {
    padding: 1rem;
}

.sp-news-sidebar-panel .sp-sidebar-card,
.sp-case-sidebar-panel .sp-sidebar-card {
    margin-bottom: 0 !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sp-news-sidebar-panel .sp-sidebar-qr {
    padding: .35rem 0 1.25rem;
    border-bottom: 1px solid #eef2f7;
}

.sp-news-sidebar-panel .sp-news-route-card,
.sp-case-sidebar-panel .sp-news-route-card {
    padding-top: 1.25rem;
}

.sp-news-list { display: flex; flex-direction: column; gap: 0; }

.sp-news-item {
    border-bottom: 1px solid #eef0f5;
    transition: background var(--sp-transition);
}
.sp-news-item:last-child { border-bottom: none; }
.sp-news-item:hover { background: var(--sp-bg-alt); }

.sp-news-item-inner {
    display: flex;
    gap: 16px;
    padding: 18px 4px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.sp-news-thumb {
    flex: 0 0 160px;
    width: 160px;
    height: 106px;
    overflow: hidden;
    border-radius: var(--sp-radius-sm);
    background: #eef0f5;
}
.sp-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sp-news-item:hover .sp-news-thumb img { transform: scale(1.05); }

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

.sp-news-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sp-text);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--sp-transition);
}
.sp-news-item:hover .sp-news-title { color: var(--sp-primary); }

.sp-news-excerpt {
    font-size: .85rem;
    color: var(--sp-muted);
    margin-bottom: 10px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #aaa;
}
.sp-news-more { color: var(--sp-primary); font-weight: 500; }

/* 内嵌广告区块 */
.sp-news-ad {
    margin: 12px 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f7fb;
}
.sp-news-ad-img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* =====================================================
   广告轮播 — 列表页头部 & 详情页底部
   ===================================================== */
.sp-news-header-swiper-wrap,
.sp-news-bottom-swiper-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.sp-news-header-swiper-wrap { margin-bottom: 12px; }
.sp-news-bottom-swiper-wrap { border-radius: var(--sp-radius-sm); }

/* 广告容器：图片自适应 */
.sp-ad-banner { display: block; width: 100%; overflow: hidden; line-height: 0; }
.sp-ad-banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 头部轮播固定高度 */
.sp-news-header-swiper .sp-ad-banner__img {
    height: 200px;
}
@media (min-width: 768px) {
    .sp-news-header-swiper .sp-ad-banner__img { height: 260px; }
}
@media (min-width: 1200px) {
    .sp-news-header-swiper .sp-ad-banner__img { height: 300px; }
}

/* 底部轮播固定高度 */
.sp-news-bottom-swiper .sp-ad-banner__img {
    height: 120px;
}
@media (min-width: 768px) {
    .sp-news-bottom-swiper .sp-ad-banner__img { height: 160px; }
}
@media (min-width: 1200px) {
    .sp-news-bottom-swiper .sp-ad-banner__img { height: 200px; }
}

/* 分页点 */
.sp-news-header-swiper__dots,
.sp-news-bottom-swiper__dots {
    bottom: 8px !important;
}
.sp-news-header-swiper__dots .swiper-pagination-bullet,
.sp-news-bottom-swiper__dots .swiper-pagination-bullet {
    background: rgba(255,255,255,.8);
    opacity: 1;
}
.sp-news-header-swiper__dots .swiper-pagination-bullet-active,
.sp-news-bottom-swiper__dots .swiper-pagination-bullet-active {
    background: #fff;
}

/* 分页 */
.sp-pagination { display: flex; justify-content: center; }
.sp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sp-pagination .page-numbers li a,
.sp-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    width: auto;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: .875rem;
    line-height: 1;
    white-space: nowrap;
    color: var(--sp-text);
    text-decoration: none;
    transition: all var(--sp-transition);
}
.sp-pagination .page-numbers li .current,
.sp-pagination .page-numbers li a:hover {
    background: var(--sp-primary);
    border-color: var(--sp-primary);
    color: #fff;
}

/* =====================================================
   14b. 案例列表与案例侧边栏
   ===================================================== */
.sp-case-main-panel {
    padding: 1rem;
}

.sp-single-case {
    background: #f4f6fa;
}

.sp-single-case article.col-lg-8 {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
    padding: 1.5rem;
}

.sp-case-list {
    display: flex;
    flex-direction: column;
}

.sp-case-list-item {
    border-bottom: 1px solid #eef0f5;
    transition: background var(--sp-transition);
}

.sp-case-list-item:last-child {
    border-bottom: none;
}

.sp-case-list-item:hover {
    background: var(--sp-bg-alt);
}

.sp-case-list-inner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 4px;
    color: inherit;
    text-decoration: none;
}

.sp-case-list-thumb {
    flex: 0 0 190px;
    width: 190px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #eef3f8;
}

.sp-case-list-thumb img,
.sp-case-list-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
    align-items: center;
    justify-content: center;
}

.sp-case-list-thumb img {
    transition: transform .4s ease;
}

.sp-case-list-item:hover .sp-case-list-thumb img {
    transform: scale(1.04);
}

.sp-case-list-no-img {
    color: #9aa7b7;
    font-size: 1.6rem;
}

.sp-case-list-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sp-case-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.sp-case-list-tags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 24px;
    padding: 2px 9px;
    border-radius: 999px;
    background: #eef7fb;
    color: #3d7892;
    font-size: .75rem;
    font-weight: 600;
}

.sp-case-list-title {
    margin: 0 0 8px;
    color: var(--sp-text);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--sp-transition);
}

.sp-case-list-item:hover .sp-case-list-title {
    color: var(--sp-primary);
}

.sp-case-list-excerpt {
    color: var(--sp-muted);
    font-size: .88rem;
    line-height: 1.72;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-case-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: #9aa3af;
    font-size: .8rem;
}

.sp-case-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sp-case-list-more {
    color: var(--sp-primary);
    font-weight: 600;
}

.sp-case-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sp-case-sidebar-title {
    display: flex;
    align-items: center;
    margin: 0 0 12px;
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.sp-case-consult-card {
    padding: .35rem 0 1.25rem !important;
    border-bottom: 1px solid #eef2f7;
}

.sp-case-consult-desc {
    margin: 0 0 12px;
    color: var(--sp-muted);
    font-size: .84rem;
    line-height: 1.65;
}

.sp-case-consult-form .form-control {
    min-height: 42px;
    border-color: #dbe3ed;
    border-radius: 8px;
    font-size: .88rem;
}

.sp-case-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 40px;
    margin-top: 10px;
    border: 1px solid #d6dce4;
    border-radius: 999px;
    color: #4b5563;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.sp-case-phone-link:hover {
    border-color: var(--sp-primary);
    color: var(--sp-primary);
}

.sp-case-related-card {
    padding-bottom: 1.25rem !important;
    border-bottom: 1px solid #eef2f7;
}

.sp-case-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-case-related-item {
    border-bottom: 1px solid #f0f2f5;
}

.sp-case-related-item:last-child {
    border-bottom: none;
}

.sp-case-related-item a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    color: inherit;
    text-decoration: none;
}

.sp-case-related-item img {
    flex: 0 0 68px;
    width: 68px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    background: #eef3f8;
}

.sp-case-related-info {
    flex: 1;
    min-width: 0;
}

.sp-case-related-title,
.sp-case-related-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-case-related-title {
    -webkit-line-clamp: 2;
    color: var(--sp-text);
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.45;
    transition: color var(--sp-transition);
}

.sp-case-related-excerpt {
    -webkit-line-clamp: 1;
    margin-top: 3px;
    color: #9aa3af;
    font-size: .74rem;
    line-height: 1.45;
}

.sp-case-related-item a:hover .sp-case-related-title {
    color: var(--sp-primary);
}

/* =====================================================
   15. 侧边栏
   ===================================================== */
.sp-sidebar-card {
    background: #fff;
    border-radius: var(--sp-radius);
    box-shadow: var(--sp-shadow);
    padding: 20px;
}

.sp-sidebar-qr { text-align: center; }
.sp-qr-img {
    width: 160px; height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 10px;
    display: block;
    border: 3px solid var(--sp-primary-light);
}
.sp-qr-placeholder {
    width: 160px; height: 160px;
    margin: 0 auto 10px;
    background: var(--sp-bg-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-muted);
}
.sp-qr-tip {
    font-size: .875rem;
    color: var(--sp-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.sp-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sp-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sp-primary);
    margin-bottom: 14px;
}

.sp-sidebar-news-list { list-style: none; padding: 0; margin: 0; }
.sp-sidebar-news-item { border-bottom: 1px solid #f0f0f0; }
.sp-sidebar-news-item:last-child { border-bottom: none; }
.sp-sidebar-news-item a {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
    align-items: center;
}
.sp-sidebar-news-item img {
    flex: 0 0 64px;
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}
.sp-sidebar-news-info { flex: 1; min-width: 0; }
.sp-sidebar-news-title {
    font-size: .82rem;
    font-weight: 500;
    color: var(--sp-text);
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color var(--sp-transition);
}
.sp-sidebar-news-item a:hover .sp-sidebar-news-title { color: var(--sp-primary); }
.sp-sidebar-news-date { font-size: .75rem; color: #aaa; }

.sp-sidebar-address { font-size: .875rem; color: var(--sp-muted); line-height: 1.7; }

.sp-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-news-route-card {
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
    background: #f8fbff;
}

.sp-news-route-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.sp-news-route-heading .bi {
    color: #3d7892;
    font-size: 1.05rem;
}

.sp-news-route-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-news-route-item {
    background: #fff;
}

.sp-news-route-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: inherit;
    cursor: pointer;
}

.sp-news-route-toggle:focus-visible {
    outline: 2px solid var(--sp-primary);
    outline-offset: 2px;
}

.sp-news-route-thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 58px;
    object-fit: cover;
}

.sp-news-route-summary {
    flex: 1;
    min-width: 0;
}

.sp-news-route-name {
    display: block;
    margin-bottom: 5px;
    font-size: .9rem;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-news-route-meta,
.sp-news-route-hours,
.sp-news-route-address {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
    color: #394150;
    font-size: .78rem;
    line-height: 1.45;
}

.sp-news-route-meta {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-news-route-meta .bi,
.sp-news-route-hours .bi,
.sp-news-route-address .bi {
    flex: 0 0 auto;
    color: #4f8195;
    font-size: .88rem;
    line-height: 1.35;
}

.sp-news-route-detail {
    padding: 8px 0 0;
}

.sp-news-route-detail[hidden] {
    display: none !important;
}

.sp-news-route-detail-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: .95rem;
    font-weight: 700;
}

.sp-news-route-desc {
    margin: 8px 0;
    color: #1f2937;
    font-size: .78rem;
    line-height: 1.65;
}

.sp-news-route-address {
    margin-top: 10px;
    font-size: .86rem;
}

.sp-news-route-address .bi {
    font-size: 1rem;
}

.sp-news-route-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.sp-news-route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid #d6dce4;
    border-radius: 8px;
    background: #fff;
    color: #4b5563;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
}

.sp-news-route-btn:hover {
    border-color: var(--sp-primary);
    color: var(--sp-primary);
}

.sp-news-route-item:not(.is-active) .sp-news-route-toggle {
    background: #f5f9fc;
}

.sp-news-route-item.is-active .sp-news-route-toggle {
    margin-bottom: 0;
}

/* =====================================================
   16. 新闻详情页
   ===================================================== */
.sp-article-header { margin-bottom: 20px; }
.sp-article-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--sp-text);
    margin-bottom: 10px;
}
.sp-article-meta { font-size: .82rem; color: var(--sp-muted); }
.sp-article-cover { margin-bottom: 20px; border-radius: var(--sp-radius); overflow: hidden; }
.sp-article-thumb { width: 100%; height: auto; display: block; }
.sp-article-content {
    font-size: .95rem;
    line-height: 1.9;
    color: #333;
}
.sp-article-content p { margin-bottom: 1em; }
.sp-article-content img { max-width: 100%; height: auto; border-radius: 6px; margin: 12px 0; }
.sp-article-cta {
    margin-top: 28px;
    padding: 20px;
    background: var(--sp-bg-alt);
    border-radius: var(--sp-radius);
    border-left: 4px solid var(--sp-primary);
}

/* =====================================================
   17. 医生列表（新闻详情页底部）
   ===================================================== */
.sp-section-title-sm {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sp-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sp-primary);
    margin-bottom: 16px;
}

.sp-doctor-list { display: flex; flex-direction: column; gap: 0; }

.sp-doctor-row {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef0f5;
    align-items: flex-start;
}
.sp-doctor-row:last-child { border-bottom: none; }

.sp-doctor-row-avatar {
    flex: 0 0 90px;
    position: relative;
}
.sp-doctor-row-avatar img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--sp-radius-sm);
    border: 2px solid var(--sp-primary-light);
}
.sp-doctor-avatar-placeholder {
    width: 90px; height: 110px;
    background: var(--sp-bg-alt);
    border-radius: var(--sp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--sp-muted);
}
.sp-doctor-badge {
    display: block;
    text-align: center;
    background: var(--sp-primary);
    color: #fff;
    font-size: .7rem;
    padding: 2px 4px;
    border-radius: 0 0 4px 4px;
    margin-top: -2px;
}

.sp-doctor-row-info { flex: 1; min-width: 0; }
.sp-doctor-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sp-text);
    margin-bottom: 4px;
}
.sp-doctor-name small { font-weight: 400; font-size: .82rem; margin-left: 8px; }
.sp-doctor-exp { font-size: .82rem; color: var(--sp-muted); margin-bottom: 6px; }
.sp-doctor-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.sp-tag {
    display: inline-block;
    background: var(--sp-primary-light);
    color: var(--sp-primary);
    font-size: .75rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
}
.sp-doctor-excerpt { font-size: .82rem; color: var(--sp-muted); line-height: 1.6; margin-bottom: 10px; }
.sp-doctor-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.sp-btn-sm {
    padding: 5px 14px;
    font-size: .8rem;
    border-radius: 6px;
}

/* =====================================================
   18. 响应式适配（新闻页）
   ===================================================== */
@media (max-width: 768px) {
    .sp-news-thumb { flex: 0 0 110px; width: 110px; height: 80px; }
    .sp-news-title { font-size: .9rem; }
    .sp-doctor-row { flex-direction: column; }
    .sp-doctor-row-avatar { flex: none; }
    .sp-doctor-row-avatar img { width: 80px; height: 90px; }
    .sp-case-list-inner { gap: 12px; padding: 14px 0; }
    .sp-case-list-thumb { flex-basis: 116px; width: 116px; border-radius: 6px; }
    .sp-case-list-tags { gap: 5px; margin-bottom: 6px; }
    .sp-case-list-tags span { min-height: 22px; padding: 1px 7px; font-size: .68rem; }
    .sp-case-list-title { font-size: .9rem; line-height: 1.45; margin-bottom: 5px; }
    .sp-case-list-excerpt { font-size: .76rem; line-height: 1.55; -webkit-line-clamp: 2; }
    .sp-case-list-meta { margin-top: 8px; font-size: .72rem; }
    .sp-case-list-more { display: none !important; }
    .sp-single-case article.col-lg-8 { padding: 1rem; border-radius: 10px; }
}

/* =====================================================
   18b. 新闻详情页新版
   ===================================================== */
body.single-suopu_news .suopu-breadcrumb-hero .suopu-breadcrumb-nav,
body.single-suopu_news .suopu-breadcrumb-plain .suopu-breadcrumb-nav,
body.single-suopu_news .suopu-breadcrumb-below {
    display: none !important;
}

.sp-news-detail-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e8edf4;
    padding: 13px 0;
}

.sp-news-detail-breadcrumb .breadcrumb {
    align-items: center;
    color: #8a95a6;
    font-size: .92rem;
    line-height: 1.45;
}

.sp-news-detail-breadcrumb .breadcrumb-item a {
    color: #657084;
    text-decoration: none;
}

.sp-news-detail-breadcrumb .breadcrumb-item a:hover {
    color: var(--sp-primary);
}

.sp-news-detail-breadcrumb .breadcrumb-item.active {
    color: #1f2937;
    font-weight: 600;
}

.sp-news-detail {
    background: #f4f6fa;
    padding: 1.5rem 0 2rem;
}

.sp-news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.sp-news-detail-main,
.sp-news-detail-sidebar {
    min-width: 0;
}

.sp-news-detail-article,
.sp-news-detail-doctors {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.sp-news-detail-article {
    padding: 22px 18px 24px;
}

.sp-news-detail-header {
    margin-bottom: 16px;
}

.sp-news-detail-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 1.2rem;
    line-height: 1.52;
    font-weight: 800;
}

.sp-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 13px;
    color: #97a1af;
    font-size: .78rem;
    line-height: 1.5;
}

.sp-news-detail-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 3px;
    background: #ff2333;
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
}

.sp-news-detail-summary {
    margin: 8px 0 0;
    color: #677284;
    font-size: .86rem;
    line-height: 1.65;
}

.sp-news-detail-top-ad,
.sp-news-detail-cover {
    margin: 16px 0 18px;
    overflow: hidden;
    border-radius: 0;
    background: #eef4fb;
}

.sp-news-detail-top-ad .sp-ad-banner__img,
.sp-news-detail-cover-img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 124px;
    object-fit: cover;
}

.sp-news-detail-section-title,
.sp-news-detail-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: #1f2937;
    font-size: .95rem;
    line-height: 1.4;
    font-weight: 800;
}

.sp-news-detail-section-title::before,
.sp-news-detail-block-title .bi {
    color: #245f82;
    font-size: 1rem;
}

.sp-news-detail-section-title::before {
    content: "☰";
    line-height: 1;
}

.sp-news-detail-content {
    color: #3f4854;
    font-size: .9rem;
    line-height: 2.02;
}

.sp-news-detail-content p {
    margin: 0 0 1.05em;
}

.sp-news-detail-content h2,
.sp-news-detail-content h3,
.sp-news-detail-content h4 {
    margin: 1.35em 0 .65em;
    color: #162032;
    line-height: 1.45;
    font-weight: 800;
}

.sp-news-detail-content h2 { font-size: 1.15rem; }
.sp-news-detail-content h3 { font-size: 1.03rem; }
.sp-news-detail-content h4 { font-size: .96rem; }

.sp-news-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 18px auto;
}

.sp-news-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px auto 18px;
    max-width: 440px;
}

.sp-news-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.sp-news-detail-btn:hover {
    color: #fff;
    filter: brightness(.97);
    transform: translateY(-1px);
}

.sp-news-detail-btn--primary {
    background: linear-gradient(135deg, #ff4a22 0%, #ff6a1e 100%);
    box-shadow: 0 10px 18px rgba(255, 91, 30, .22);
}

.sp-news-detail-btn--secondary {
    background: linear-gradient(135deg, #3da4f5 0%, #4caefb 100%);
    box-shadow: 0 10px 18px rgba(61, 164, 245, .2);
}

.sp-news-detail-bottom-ad {
    margin-top: 24px;
    border-radius: 0;
}

.sp-news-detail-doctors {
    margin-top: 18px;
    padding: 20px 18px 10px;
}

.sp-news-detail-doctor-list {
    display: grid;
    gap: 16px;
}

.sp-news-detail-doctor-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.sp-news-detail-doctor-photo {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    background: #edf5fb;
    text-decoration: none;
}

.sp-news-detail-doctor-photo img,
.sp-news-detail-doctor-empty {
    display: block;
    width: 100%;
    aspect-ratio: 1 / .88;
    object-fit: cover;
    object-position: top center;
}

.sp-news-detail-doctor-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca9b8;
    font-size: 3rem;
}

.sp-news-detail-doctor-badge {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #027f90 0%, #026b80 100%);
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 10px 18px rgba(2, 107, 128, .18);
}

.sp-news-detail-doctor-body {
    min-width: 0;
    padding: 0 16px 18px;
}

.sp-news-detail-doctor-name {
    margin: 0 0 8px;
    color: #111827;
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 800;
}

.sp-news-detail-doctor-name a {
    color: inherit;
    text-decoration: none;
}

.sp-news-detail-doctor-name a:hover {
    color: var(--sp-primary);
}

.sp-news-detail-doctor-desc {
    margin: 0 0 14px;
    color: #8b95a4;
    font-size: .84rem;
    line-height: 1.75;
}

.sp-news-detail-doctor-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 280px;
}

.sp-news-detail-doctor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 14px;
    border: 1px solid #e1e7ef;
    border-radius: 6px;
    background: #fff;
    color: #475569;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.sp-news-detail-doctor-btn:hover {
    border-color: var(--sp-primary);
    color: var(--sp-primary);
}

.sp-news-detail-sidebar {
    display: none;
}

body.single-suopu_news .sp-news-sidebar-panel {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid #e8edf4;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

body.single-suopu_news .sp-news-sidebar-panel .sp-sidebar-card {
    border-radius: 0;
}

body.single-suopu_news .sp-news-sidebar-panel .sp-sidebar-qr {
    padding: 12px 12px 18px;
    border: 0;
}

body.single-suopu_news .sp-news-sidebar-panel .sp-qr-img,
body.single-suopu_news .sp-news-sidebar-panel .sp-qr-placeholder {
    width: min(100%, 268px);
    height: auto;
    aspect-ratio: 1;
    border: 4px solid #57a4f2;
    border-radius: 14px;
    padding: 10px;
    background: #fff;
    object-fit: contain;
}

body.single-suopu_news .sp-news-sidebar-panel .sp-qr-tip {
    margin: 12px 0 0;
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 800;
}

body.single-suopu_news .sp-news-sidebar-panel .btn-sp-primary {
    display: none;
}

body.single-suopu_news .sp-news-route-card {
    background: #fff;
    padding: 16px 0 0;
}

body.single-suopu_news .sp-news-route-heading {
    margin-bottom: 13px;
    padding: 0 0 0 2px;
}

body.single-suopu_news .sp-news-route-item {
    border-bottom: 1px solid #eef3f8;
    padding: 0 0 12px;
}

body.single-suopu_news .sp-news-route-item:last-child {
    border-bottom: 0;
}

body.single-suopu_news .sp-news-route-toggle {
    gap: 10px;
    padding: 0;
}

body.single-suopu_news .sp-news-route-thumb {
    flex-basis: 98px;
    width: 98px;
    height: 66px;
}

body.single-suopu_news .sp-news-route-item:not(.is-active) .sp-news-route-toggle {
    background: transparent;
}

body.single-suopu_news .sp-news-route-detail {
    padding-top: 10px;
}

body.single-suopu_news .sp-news-route-desc {
    color: #364152;
}

@media (min-width: 768px) {
    .sp-news-detail-article {
        padding: 30px 30px 34px;
    }

    .sp-news-detail-title {
        font-size: 1.45rem;
    }

    .sp-news-detail-top-ad .sp-ad-banner__img,
    .sp-news-detail-cover-img {
        min-height: 178px;
    }

    .sp-news-detail-doctors {
        padding: 24px 26px 12px;
    }

    .sp-news-detail-doctor-card {
        grid-template-columns: 210px minmax(0, 1fr);
        align-items: center;
        gap: 18px;
        min-height: 168px;
    }

    .sp-news-detail-doctor-photo img,
    .sp-news-detail-doctor-empty {
        height: 168px;
        aspect-ratio: auto;
    }

    .sp-news-detail-doctor-body {
        padding: 16px 22px 16px 0;
    }
}

@media (min-width: 992px) {
    .sp-news-detail-layout {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 1.5rem;
    }

    .sp-news-detail-sidebar {
        display: block;
        position: sticky;
        top: 96px;
    }
}

@media (max-width: 575px) {
    .sp-news-detail-breadcrumb {
        padding: 9px 0;
    }

    .sp-news-detail-breadcrumb .breadcrumb {
        font-size: .76rem;
    }

    .sp-news-detail {
        padding: 16px 0 42px;
        background: #fff;
    }

    .sp-news-detail-article,
    .sp-news-detail-doctors {
        border: 0;
        box-shadow: none;
    }

    .sp-news-detail-article {
        padding: 0 0 20px;
    }

    .sp-news-detail-title {
        font-size: .98rem;
        line-height: 1.5;
    }

    .sp-news-detail-meta {
        font-size: .7rem;
    }

    .sp-news-detail-summary {
        font-size: .74rem;
        line-height: 1.65;
    }

    .sp-news-detail-content {
        font-size: .78rem;
        line-height: 1.95;
    }

    .sp-news-detail-actions {
        gap: 10px;
        margin-top: 20px;
    }

    .sp-news-detail-btn {
        min-height: 38px;
        padding: 0 10px;
        border-radius: 5px;
        font-size: .74rem;
    }

    .sp-news-detail-doctors {
        margin-top: 8px;
        padding: 8px 0 0;
    }

    .sp-news-detail-block-title {
        margin-bottom: 16px;
        font-size: .92rem;
    }

    .sp-news-detail-doctor-list {
        gap: 18px;
    }

    .sp-news-detail-doctor-card {
        border: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    }

    .sp-news-detail-doctor-body {
        padding: 0 16px 18px;
    }

    .sp-news-detail-doctor-name {
        font-size: .9rem;
    }

    .sp-news-detail-doctor-desc {
        font-size: .72rem;
        line-height: 1.62;
    }

    .sp-news-detail-doctor-actions {
        max-width: none;
    }

    .sp-news-detail-doctor-btn {
        min-height: 34px;
        font-size: .75rem;
    }
}

/* =====================================================
   19. 医生列表页 Hero Banner
   ===================================================== */
.sp-doctor-hero {
    background: linear-gradient(135deg, #0d4f9e 0%, #1a6fc4 60%, #2589e8 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.sp-doctor-hero::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="150" cy="80" r="120" fill="rgba(255,255,255,0.06)"/></svg>') no-repeat center/cover;
    pointer-events: none;
}
.sp-doctor-hero-content { max-width: 600px; color: #fff; }
.sp-dh-stars { color: var(--sp-accent); font-size: .9rem; margin-bottom: 10px; }
.sp-dh-stars span { color: rgba(255,255,255,.8); margin-left: 6px; }
.sp-dh-title { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; color: #fff; }
.sp-dh-desc { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 24px; }
.sp-dh-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--sp-accent); color: #1a1a2e;
    padding: 10px 24px; border-radius: 8px;
    font-weight: 700; text-decoration: none;
    transition: background var(--sp-transition);
}
.sp-dh-btn:hover { background: var(--sp-accent-dark); color: #fff; }

/* =====================================================
   20. 医生列表 Tab 筛选栏
   ===================================================== */
.sp-doctor-tabs-wrap {
    background: #fff;
    border-bottom: 1px solid #e7ebf0;
    box-shadow: none;
    position: relative;
    z-index: 20;
}
.sp-doctor-tabs {
    display: flex;
    gap: 18px;
    padding: 12px 0;
    overflow-x: auto;
}
.sp-dtab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 46px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2933;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    white-space: nowrap;
    transition: color var(--sp-transition), background var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}
.sp-dtab:hover {
    color: #024a65;
    background: #f4f7f9;
}
.sp-dtab.active {
    color: #fff;
    background: #074a63;
    border-color: #074a63;
    box-shadow: 0 8px 18px rgba(7,74,99,.2);
}

/* =====================================================
   21. 医生卡片网格
   ===================================================== */
.sp-doctor-list-section {
    padding: 54px 0 72px;
    background: #fff;
}

.sp-doctor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 42px;
    margin-bottom: 50px;
}

/* 医生卡片 */
.sp-dcard {
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(25,45,70,.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}
.sp-dcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(25,45,70,.1);
}

.sp-dcard-img-wrap {
    position: relative;
    height: auto;
    aspect-ratio: 1 / .93;
    display: block;
    overflow: hidden;
    background: linear-gradient(110deg, #f5f9fc 0%, #e8eff4 100%);
}
.sp-dcard-img-wrap::before {
    content: "WE\A DENTAL";
    white-space: pre;
    position: absolute;
    inset: 14px auto auto 12px;
    color: rgba(7,74,99,.055);
    font-size: clamp(3rem, 5.6vw, 5.7rem);
    font-weight: 900;
    line-height: .78;
    letter-spacing: 0;
    pointer-events: none;
}
.sp-dcard-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s;
}
.sp-dcard:hover .sp-dcard-img { transform: scale(1.04); }
.sp-dcard-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--sp-muted); }

.sp-dcard-hover-qr {
    position: absolute;
    inset: 34px 31px 26px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #fff;
    border: 8px solid rgba(7,74,99,.16);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(15,36,54,.16);
    opacity: 0;
    transform: translateY(8px) scale(.98);
    transition: opacity var(--sp-transition), transform var(--sp-transition);
    pointer-events: none;
}
.sp-dcard:hover .sp-dcard-hover-qr,
.sp-dcard:focus-within .sp-dcard-hover-qr {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.sp-dcard-hover-qr img {
    width: min(100%, 168px);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}
.sp-dcard-hover-qr em { font-style: normal; font-size: .86rem; font-weight: 700; color: var(--sp-text); text-align: center; }

.sp-dcard-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #ffc94a;
    font-size: .68rem;
    line-height: 1;
}
.sp-dcard-stars em {
    display: inline-flex;
    align-items: center;
    height: 16px;
    padding: 0 5px;
    margin-right: 2px;
    background: #07516c;
    color: #fff;
    font-style: normal;
    font-size: .58rem;
    font-weight: 700;
}
.sp-dcard-badge {
    position: absolute;
    z-index: 2;
    left: 26px;
    right: 18px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-height: 46px;
    padding: 6px 28px 7px 11px;
    background: linear-gradient(92deg, #079c9b 0%, #064767 100%);
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 4% 50%);
    color: #fff;
    text-align: left;
}
.sp-dcard-badge strong {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-dcard-body {
    padding: 16px 16px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sp-dcard-clinic { display: none; }
.sp-dcard-name {
    min-height: 22px;
    margin: 0;
    overflow: hidden;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sp-dcard-name a { color: var(--sp-text); text-decoration: none; }
.sp-dcard-name a:hover { color: var(--sp-primary); }
.sp-dcard-title-tag,
.sp-dcard-tags,
.sp-dtag { display: none; }
.sp-dcard-excerpt {
    min-height: 36px;
    margin: 0;
    color: #a0a8b2;
    font-size: .78rem;
    line-height: 1.55;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sp-dcard-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 2px;
}
.sp-dcard-btn {
    min-width: 0;
    min-height: 34px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center; text-decoration: none;
    transition: all var(--sp-transition); border: none;
    display: flex; align-items: center; justify-content: center;
}
.sp-dcard-btn--primary,
.sp-dcard-btn--outline {
    background: #fff;
    color: #6b7280;
    border: 1px solid #d8dee6;
}
.sp-dcard-btn--primary:hover,
.sp-dcard-btn--outline:hover {
    background: #074a63;
    border-color: #074a63;
    color: #fff;
}

body.post-type-archive-suopu_doctor .sp-pagination {
    margin-top: 8px;
}
body.post-type-archive-suopu_doctor .sp-pagination .page-numbers {
    gap: 8px;
}
body.post-type-archive-suopu_doctor .sp-pagination .page-numbers li a,
body.post-type-archive-suopu_doctor .sp-pagination .page-numbers li span {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border: 0;
    border-radius: 2px;
    background: #f2f3f5;
    color: #333;
    font-size: .82rem;
}
body.post-type-archive-suopu_doctor .sp-pagination .page-numbers li .current,
body.post-type-archive-suopu_doctor .sp-pagination .page-numbers li a:hover {
    background: #ff233c;
    color: #fff;
}

/* =====================================================
   22. 医生详情页 Hero Banner
   ===================================================== */
.sp-dsingle-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,.16) 0 0.8rem, transparent 0.85rem),
        radial-gradient(circle at 85% 74%, rgba(255,255,255,.1) 0 4.5rem, transparent 4.6rem),
        linear-gradient(120deg, #1685f4 0%, #2f9cff 52%, #1283f3 100%);
    padding: 118px 0 34px;
    color: #fff;
    overflow: hidden;
}
.sp-dsh-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 64px;
    align-items: center;
}

.sp-dsh-info { min-width: 0; padding-bottom: 0; max-width: 620px; }
.sp-dsh-location { font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.sp-dsh-stars { color: var(--sp-accent); font-size: .85rem; }
.sp-dsh-badge {
    display: inline-block;
    background: linear-gradient(90deg, #1a8c3c, #27ae60);
    color: #fff; font-size: .78rem; font-weight: 700;
    padding: 4px 14px; border-radius: 4px;
    margin: 8px 0;
}
.sp-dsh-name { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.28; letter-spacing: 0; }
.sp-dsh-name small { font-size: .85rem; font-weight: 400; margin-left: 10px; color: rgba(255,255,255,.75); }
.sp-dsh-subtitle { max-width: 620px; color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.8; margin: -6px 0 14px; }
.sp-dsh-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; color: rgba(255,255,255,.86); }
.sp-dsh-price span { font-size: .82rem; }
.sp-dsh-price strong { color: var(--sp-accent); font-size: 1.25rem; font-weight: 800; }
.sp-dsh-price em { font-style: normal; font-size: .78rem; color: rgba(255,255,255,.65); }

.sp-dsh-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.sp-dsh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
    min-width: 178px; min-height: 44px;
    padding: 10px 24px; border-radius: 4px; cursor: pointer;
    font-weight: 700; font-size: .9rem; border: none;
    text-decoration: none; transition: all var(--sp-transition);
}
.sp-dsh-btn--primary { background: #ff4b1f; color: #fff; }
.sp-dsh-btn--primary:hover { background: #e93612; color: #fff; }
.sp-dsh-btn--outline { background: rgba(255,255,255,.28); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.sp-dsh-btn--outline:hover { background: rgba(255,255,255,.38); color: #fff; }
.sp-dsh-quick-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 14px; }
.sp-dsh-quick-badges span { display: inline-flex; align-items: center; justify-content: center; min-width: 112px; min-height: 30px; padding: 4px 12px; border-radius: 4px; background: #ff9d00; color: #fff; font-size: .75rem; font-weight: 700; }

.sp-dsh-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 14px; }
.sp-dsh-tag-label { font-size: .82rem; color: rgba(255,255,255,.7); }
.sp-dsh-tag { background: rgba(255,255,255,.15); color: #fff; font-size: .75rem; padding: 3px 10px; border-radius: 20px; }

.sp-dsh-meta { list-style: none; padding: 14px 18px; margin: 0 0 16px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.14); border-radius: 6px; }
.sp-dsh-meta li { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 4px; }
.sp-dsh-meta li span { color: rgba(255,255,255,.55); }

.sp-dsh-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.sp-dsh-stat { text-align: center; }
.sp-dsh-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.sp-dsh-stat strong sup { font-size: .7em; }
.sp-dsh-stat span { font-size: .75rem; color: rgba(255,255,255,.7); }

/* 右侧头像 */
.sp-dsh-photo {
    min-width: 0;
    width: 100%;
    max-width: 430px;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}
.sp-dsh-gallery { width: 100%; min-width: 0; overflow: hidden; }
.sp-dsh-avatar-wrap { position: relative; width: 100%; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,61,128,.22); }
.sp-dsh-main-swiper { width: 100%; min-width: 0; height: 460px; background: rgba(255,255,255,.08); }
.sp-dsh-main-swiper .swiper-slide { height: 100%; }
.sp-dsh-avatar {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
}
.sp-dsh-avatar-badge {
    position: absolute; bottom: 22px; left: 26px; right: 26px;
    background: linear-gradient(90deg, rgba(0,151,136,.95), rgba(0,56,86,.95));
    color: #fff;
    font-size: .78rem; font-weight: 700;
    padding: 10px 16px;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.sp-dsh-avatar-badge span { margin-right: 6px; font-size: .72rem; }
.sp-dsh-avatar-badge i { color: var(--sp-accent); font-size: .72rem; margin-right: 1px; }
.sp-dsh-avatar-badge strong { display: block; margin-top: 4px; font-size: 1.45rem; line-height: 1.25; }
.sp-dsh-thumbs-wrap {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    margin-top: 12px;
}
.sp-dsh-thumbs-swiper { width: 100%; min-width: 0; }
.sp-dsh-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / .78;
    height: auto;
    padding: 0;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.66);
    border-radius: 4px;
    background: rgba(255,255,255,.28);
    box-shadow: 0 8px 18px rgba(0,69,145,.16);
    cursor: pointer;
    opacity: .72;
    transition: opacity var(--sp-transition), border-color var(--sp-transition), transform var(--sp-transition);
}
.sp-dsh-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.sp-dsh-thumb:hover,
.sp-dsh-thumb.swiper-slide-thumb-active {
    border-color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}
.sp-dsh-thumbs-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0,69,145,.14);
    cursor: pointer;
    transition: background var(--sp-transition), color var(--sp-transition), opacity var(--sp-transition);
}
.sp-dsh-thumbs-nav:hover { background: #fff; color: #075a80; }
.sp-dsh-thumbs-nav.swiper-button-disabled { opacity: .35; cursor: default; }

/* =====================================================
   23. 医生详情 Tab 导航
   ===================================================== */
.sp-dtabs-nav-wrap {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    z-index: 99;
    top: 64px;
}
.sp-dtabs-nav { display: flex; justify-content: center; gap: 18px; overflow-x: auto; padding: 11px 0; }
.sp-dtab-link {
    min-width: 128px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    font-size: .9rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    border-radius: 7px;
    border-bottom: 0;
    white-space: nowrap;
    transition: all var(--sp-transition);
}
.sp-dtab-link.active,
.sp-dtab-link:hover { color: #fff; background: #56a8f6; border-bottom-color: transparent; box-shadow: 0 7px 16px rgba(37,141,237,.25); }

/* =====================================================
   24. 医生详情主体内容
   ===================================================== */
.sp-dsingle-body { padding: 48px 0 0; background: #fff; }

.sp-dsingle-section { margin-bottom: 54px; }

.sp-dsingle-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 1.55rem; font-weight: 800;
    color: var(--sp-text);
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 42px;
    position: relative;
    text-align: center;
}
.sp-dsingle-title::after {
    content: '/////';
    position: static;
    width: auto; height: auto;
    background: none;
    color: #e2e7ee;
    font-size: 1rem;
    letter-spacing: .18em;
}
.sp-dsingle-title::before {
    content: '/////';
    color: #e2e7ee;
    font-size: 1rem;
    letter-spacing: .18em;
}

.sp-dsingle-media-row {
    display: flex; gap: 64px; align-items: center;
}
.sp-dsingle-media-row--reverse { flex-direction: row-reverse; }
.sp-dsingle-text { flex: 1; font-size: .95rem; line-height: 1.95; color: #5f6771; }
.sp-dsingle-media { flex: 0 0 430px; }
.sp-dsingle-img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; border-radius: 2px; box-shadow: none; display: block; }
.sp-doctor-intro-section { margin-bottom: 66px; }
.sp-doctor-intro-section:last-child { margin-bottom: 0; }
.sp-doctor-intro-heading { font-size: 1.36rem; font-weight: 800; color: #101820; margin-bottom: 14px; }
.sp-doctor-intro-copy { color: #5d6670; line-height: 1.95; }
.sp-doctor-intro-copy p:last-child { margin-bottom: 0; }

.sp-sub-title { font-size: 1rem; font-weight: 700; color: var(--sp-text); margin-bottom: 8px; }
.sp-specialty-list { padding-left: 0; list-style: none; }
.sp-specialty-list li { padding: 6px 0; font-size: .9rem; color: #444; border-bottom: 1px dashed #e9ecef; }

.sp-btn-more {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 124px;
    background: #56a8f6; color: #fff;
    border: none; cursor: pointer;
    padding: 8px 22px; border-radius: 999px;
    font-weight: 700; font-size: .84rem;
    margin-top: 14px;
    text-decoration: none;
    transition: background var(--sp-transition);
}
.sp-btn-more:hover { background: #258ded; color: #fff; }

/* 出诊时间格 */
.sp-schedule-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.sp-schedule-item {
    background: var(--sp-bg-alt);
    border: 1px solid #e0e8f5;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex; flex-direction: column; gap: 4px;
    min-width: 120px;
}
.sp-schedule-day { font-weight: 700; color: var(--sp-primary); }
.sp-schedule-time { font-size: .85rem; color: var(--sp-text); }
.sp-schedule-loc { font-size: .78rem; color: var(--sp-muted); }

.sp-appoint-list { padding-left: 20px; font-size: .9rem; color: #444; }
.sp-appoint-list li { margin-bottom: 6px; }

/* =====================================================
   25. 用户评论
   ===================================================== */
.sp-reviews-list { display: flex; flex-direction: column; gap: 16px; }
.sp-review-item {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: var(--sp-radius-sm);
    padding: 16px;
}
.sp-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.sp-review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%; overflow: hidden;
    background: var(--sp-primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--sp-primary); flex-shrink: 0;
}
.sp-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sp-review-name { font-weight: 700; font-size: .9rem; }
.sp-review-stars { color: var(--sp-accent); font-size: .75rem; }
.sp-review-tag {
    margin-left: auto;
    background: var(--sp-primary-light);
    color: var(--sp-primary);
    font-size: .72rem; padding: 2px 10px;
    border-radius: 20px;
}
.sp-review-content { font-size: .88rem; color: #444; line-height: 1.7; margin-bottom: 8px; }
.sp-review-date { font-size: .75rem; color: #aaa; }

/* =====================================================
   25b. 医生详情新增字段样式
   ===================================================== */
/* 简介板块：工作信息列表 */
.sp-intro-meta-list {
    list-style: none; padding: 0;
    margin: 16px 0;
    background: var(--sp-bg-alt);
    border-radius: var(--sp-radius-sm);
    padding: 14px 16px;
}
.sp-intro-meta-list li {
    padding: 5px 0;
    font-size: .9rem; color: #444;
    display: flex; align-items: flex-start; gap: 4px;
}
.sp-intro-meta-list li.sp-clinic-desc {
    font-size: .82rem; color: var(--sp-muted);
    font-style: italic;
}
.sp-avatar-caption { font-size: .93rem; line-height: 1.85; color: #555; margin-bottom: 14px; }

/* 尤其擅长描述段落 */
.sp-specialty-summary {
    font-size: .93rem; line-height: 1.85; color: #444;
    background: var(--sp-primary-light);
    border-left: 3px solid var(--sp-primary);
    padding: 10px 14px; border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}

/* 业务图板块 - 灰底区分背景 */
.sp-dsingle-section--alt {
    background: var(--sp-bg-alt);
    border-radius: var(--sp-radius);
    padding: 30px;
    margin-left: -15px; margin-right: -15px;
}
.sp-dsingle-img--rounded { border-radius: var(--sp-radius); }

.sp-biz-desc { font-size: .93rem; line-height: 1.85; color: #444; margin-bottom: 10px; }
.sp-biz-subdesc {
    font-size: .85rem; line-height: 1.75; color: var(--sp-muted);
    border-top: 1px dashed #dee2e6; padding-top: 10px; margin-top: 0;
}

/* 教育文化说明 */
.sp-edu-detail { font-size: .9rem; line-height: 1.9; color: #444; }

/* 用户评价主引用块 */
.sp-review-main-row { margin-bottom: 30px; align-items: center; }
.sp-review-main-quote {
    background: #fff;
    border-left: 4px solid var(--sp-primary);
    border-radius: 0 var(--sp-radius-sm) var(--sp-radius-sm) 0;
    padding: 20px 20px 16px 24px;
    box-shadow: var(--sp-shadow-sm);
    position: relative;
}
.sp-quote-icon {
    font-size: 2rem; color: var(--sp-primary); opacity: .15;
    position: absolute; top: 10px; right: 14px;
}
.sp-review-main-quote p {
    font-size: .93rem; line-height: 1.9; color: #555;
    margin: 0;
}

/* =====================================================
   26. 案例精选横向滚动
   ===================================================== */
.sp-cases-banner {
    background: linear-gradient(120deg, #1685f4 0%, #2f9cff 100%);
    padding: 48px 0 52px;
}
.sp-cases-banner-header { text-align: center; margin-bottom: 30px; }
.sp-cases-banner-header h2 { display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 1.42rem; font-weight: 800; color: #fff; margin: 0; }
.sp-cases-banner-header h2::before,
.sp-cases-banner-header h2::after { content: '/////'; font-size: .95rem; letter-spacing: .18em; color: rgba(255,255,255,.72); }
.sp-cases-scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 42px;
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
}
.sp-case-slide {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 86px;
    border-radius: 0;
    overflow: visible;
    text-decoration: none;
    position: relative;
    color: #fff;
}
.sp-case-slide img { width: 118px; height: 78px; object-fit: cover; display: block; border-radius: 2px; }
.sp-case-slide-content { min-width: 0; }
.sp-case-slide-title {
    position: static;
    background: none;
    color: #fff; font-size: .86rem; font-weight: 800; line-height: 1.55; padding: 0;
}
.sp-case-slide-desc {
    margin-top: 2px;
    font-size: .72rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,.78);
    margin-bottom: 0;
}
.sp-case-empty {
    grid-column: 1 / -1;
    padding: 24px;
    text-align: center;
    color: rgba(255,255,255,.78);
    border: 1px dashed rgba(255,255,255,.38);
    border-radius: 8px;
}

/* =====================================================
   27. 常见问题（FAQ 卡片）
   ===================================================== */
.sp-dfaq-section { padding: 50px 0; background: var(--sp-bg-alt); }
.sp-dfaq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.sp-dfaq-card {
    background: #fff;
    border-radius: var(--sp-radius);
    box-shadow: var(--sp-shadow);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}
.sp-dfaq-card:hover { transform: translateY(-4px); box-shadow: var(--sp-shadow-hover); }
.sp-dfaq-icon {
    width: 64px; height: 64px;
    background: var(--sp-primary-light);
    color: var(--sp-primary);
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}
.sp-dfaq-type { font-size: .75rem; color: var(--sp-muted); margin-bottom: 6px; }
.sp-dfaq-q { font-size: .9rem; font-weight: 700; color: var(--sp-text); margin-bottom: 10px; }
.sp-dfaq-a { font-size: .82rem; color: var(--sp-muted); line-height: 1.6; margin: 0; }

/* =====================================================
   28. 底部 CTA Banner（医生页共用）
   ===================================================== */
.sp-cta-banner {
    background: linear-gradient(120deg, #1685f4 0%, #2f9cff 100%);
    padding: 50px 20px;
    color: #fff;
}
.sp-cta-sub { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.sp-cta-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.sp-cta-desc { font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.sp-cta-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f90; color: #1a1a2e;
    border: none; cursor: pointer;
    padding: 12px 32px; border-radius: 8px;
    font-size: 1rem; font-weight: 700;
    transition: background var(--sp-transition);
}
.sp-cta-btn:hover { background: var(--sp-accent-dark); color: #fff; }

/* =====================================================
   29. 响应式（医生页）
   ===================================================== */
@media (max-width: 1200px) {
    .sp-doctor-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .sp-doctor-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-dsingle-hero { padding: 96px 0 30px; }
    .sp-dsh-inner { grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
    .sp-dsh-info { max-width: none; }
    .sp-dsh-photo { grid-row: 1; width: 100%; max-width: 430px; justify-self: center; align-items: stretch; }
    .sp-dsh-avatar-wrap,
    .sp-dsh-gallery { width: min(100%, 430px); }
    .sp-dsh-main-swiper { height: auto; aspect-ratio: .98 / 1; }
    .sp-dsingle-media-row,
    .sp-dsingle-media-row--reverse { flex-direction: row; gap: 18px; align-items: flex-start; }
    .sp-dsingle-media { flex: 0 0 36%; }
    .sp-dsingle-text { flex: 1; min-width: 0; }
    .sp-cases-scroll { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 600px) {
    .sp-doctor-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sp-dh-title { font-size: 1.6rem; }
    .sp-dsingle-hero { padding: 86px 0 24px; }
    .sp-dsh-inner { gap: 18px; }
    .sp-dsh-location,
    .sp-dsh-stars,
    .sp-dsh-badge { display: none; }
    .sp-dsh-name { font-size: 1.62rem; margin-bottom: 10px; }
    .sp-dsh-subtitle { font-size: .84rem; line-height: 1.65; margin-bottom: 10px; }
    .sp-dsh-price { margin-bottom: 12px; }
    .sp-dsh-price strong { font-size: 1.1rem; }
    .sp-dsh-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .sp-dsh-btn { min-width: 0; min-height: 42px; padding: 8px 12px; font-size: .82rem; }
    .sp-dsh-quick-badges { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; margin-bottom: 12px; }
    .sp-dsh-quick-badges span { min-width: 0; min-height: 29px; padding: 4px 5px; font-size: .68rem; }
    .sp-dsh-tags { font-size: .78rem; margin-bottom: 10px; }
    .sp-dsh-tag { font-size: .7rem; }
    .sp-dsh-meta { padding: 12px 14px; margin-bottom: 0; }
    .sp-dsh-meta li { font-size: .73rem; line-height: 1.55; }
    .sp-dsh-stats { display: none; }
    .sp-dsh-avatar-wrap { border-radius: 4px; }
    .sp-dsh-avatar-badge { left: 16px; right: 16px; bottom: 16px; padding: 8px 12px; }
    .sp-dsh-avatar-badge strong { font-size: 1.24rem; }
    .sp-dsh-thumbs-wrap { grid-template-columns: 30px minmax(0, 1fr) 30px; gap: 6px; margin-top: 8px; }
    .sp-dsh-thumbs-nav { width: 30px; height: 30px; }
    .sp-dtabs-nav-wrap { top: 56px; border-radius: 0; }
    .sp-dtabs-nav { justify-content: space-between; gap: 8px; padding: 9px 0; }
    .sp-dtab-link { min-width: 0; flex: 1; min-height: 38px; padding: 8px 7px; font-size: .78rem; }
    .sp-dsingle-body { padding-top: 30px; }
    .sp-dsingle-section { margin-bottom: 34px; }
    .sp-dsingle-title { gap: 12px; font-size: 1.2rem; margin-bottom: 26px; }
    .sp-dsingle-title::before,
    .sp-dsingle-title::after { font-size: .76rem; letter-spacing: .12em; }
    .sp-dsingle-media-row,
    .sp-dsingle-media-row--reverse { gap: 14px; margin-bottom: 22px; }
    .sp-dsingle-media { flex-basis: 34%; order: 0; }
    .sp-dsingle-text { order: 1; font-size: .72rem; line-height: 1.58; }
    .sp-dsingle-img { aspect-ratio: .95 / .78; border-radius: 1px; }
    .sp-doctor-intro-heading { font-size: .9rem; margin-bottom: 5px; }
    .sp-doctor-intro-copy { line-height: 1.58; color: #59636d; }
    .sp-doctor-intro-copy p { margin-bottom: 4px; }
    .sp-btn-more { min-width: 82px; min-height: 24px; padding: 4px 12px; font-size: .66rem; margin-top: 5px; }
    .sp-cases-banner { padding: 36px 0 38px; }
    .sp-cases-banner-header { margin-bottom: 22px; }
    .sp-cases-banner-header h2 { gap: 12px; font-size: 1.12rem; }
    .sp-cases-banner-header h2::before,
    .sp-cases-banner-header h2::after { font-size: .72rem; letter-spacing: .12em; }
    .sp-case-slide { grid-template-columns: 76px minmax(0, 1fr); gap: 10px; min-height: 66px; }
    .sp-case-slide img { width: 76px; height: 54px; }
    .sp-case-slide-title { font-size: .74rem; line-height: 1.45; }
    .sp-case-slide-desc { font-size: .62rem; line-height: 1.45; }
    #tab-faq .suopu-faq-section { padding-top: 38px !important; padding-bottom: 38px !important; }
    .sp-cta-title { font-size: 1.45rem; }
    .sp-cta-banner { padding: 42px 18px; }
    .sp-dcard-img-wrap { aspect-ratio: 1 / .98; }
    body.post-type-archive-suopu_doctor .sp-doctor-tabs { gap: 12px; padding: 10px 0; }
    body.post-type-archive-suopu_doctor .sp-dtab { min-width: 118px; min-height: 48px; padding: 9px 18px; }
    body.post-type-archive-suopu_doctor .sp-doctor-list-section { padding: 34px 0 54px; }
    body.post-type-archive-suopu_doctor .sp-dcard-badge {
        left: 25px;
        right: 9px;
        bottom: 17px;
        min-height: 37px;
        padding: 5px 20px 6px 10px;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-badge strong {
        font-size: .86rem;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-stars em {
        display: none;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-body {
        padding: 13px 12px 14px;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-name {
        font-size: .9rem;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-actions {
        gap: 5px;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-btn {
        min-height: 34px;
        padding: 6px 4px;
        font-size: .78rem;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-hover-qr {
        inset: 18px 14px 14px;
        border-width: 6px;
        padding: 9px;
        gap: 6px;
    }
    body.post-type-archive-suopu_doctor .sp-dcard-hover-qr img {
        width: min(100%, 116px);
    }
    body.post-type-archive-suopu_doctor .sp-dcard-hover-qr em {
        font-size: .72rem;
    }
    .sp-dfaq-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   30. 页脚（Footer）
   ===================================================== */
.sp-footer {
    background: #0d1117;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    line-height: 1.75;
}

/* 主体区域 */
.sp-footer-main {
    padding: 26px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* 内层 Flex：左内容 + 右二维码 */
.sp-footer-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}
.sp-footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* ── 快速链接行 ── */
.sp-footer-quickrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 18px;
}
.sp-footer-sitename {
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}
.sp-footer-quickrow .sp-footer-qdivider,.sp-footer-beian .sp-footer-qdivider{ display:none}
.sp-footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}
.sp-footer-ql {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    padding: 0 10px;
    transition: color .2s;
    white-space: nowrap;
}
.sp-footer-ql:hover { color: #fff; }
.sp-footer-qdivider {
    color: rgba(255,255,255);
    user-select: none;
}

/* ── 备案行 ── */
.sp-footer-beian {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;
    font-size: 18px;
}
.sp-footer-beian .sp-footer-qdivider { padding: 0 4px; }
.sp-footer-beian-link {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}
.sp-footer-beian-link:hover { color: rgba(255,255,255,.75); }
.sp-beian-icon { width: 14px; height: 14px; vertical-align: middle; }

/* ── 门店列表 ── */
.sp-footer-stores {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 18px;
    line-height: 1.9;justify-content: center;
}
.sp-footer-stores-label {
    white-space: nowrap;
    margin-right: 2px; color: #fff;
}
.sp-footer-stores .sp-footer-qdivider { padding: 0 15px; }
.sp-footer-store-link {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.sp-footer-store-link:hover { color: rgba(255,255,255,.9); }
.sp-footer-store-text {
    color: rgba(255,255,255,.35);
    white-space: nowrap;
}

/* ── 合作伙伴 ── */
.sp-footer-partner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px; flex-direction: column
}
.sp-footer-partner-slogan { color: rgba(255,255,255); font-size:18px}
.sp-footer-partner-sep { margin: 0 6px; color: rgba(255,255,255); }
.sp-footer-partner-tel {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.sp-footer-partner-tel:hover { color: #fff; }
.sp-footer-partner-logo-wrap { display: inline-flex; align-items: center; }
.sp-footer-partner-logo {
    height: 90px;
    width: auto;
    transition: opacity .2s;
    vertical-align: middle;
}
.sp-footer-partner-logo-wrap:hover .sp-footer-partner-logo { opacity: 1; }

/* ── 右侧：客服二维码 ── */
.sp-footer-qr-wrap { flex-shrink: 0; }
.sp-footer-qr-card {
    text-align: center;
}
.sp-footer-qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.sp-footer-qr-label {
    font-size: 14px;
    color: #fff;
    margin: 6px 0 0;
}

/* ── 顶部广告横幅 (.foot-ad) ── */
.foot-ad {
    padding: 48px 0 44px;
    position: relative;
    overflow: hidden;
}
/* 左侧装饰圆（模拟设计图波纹） */
.foot-ad::before,
.foot-ad::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}
.foot-ad::before {
    width: 320px;
    height: 320px;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}
.foot-ad::after {
    width: 200px;
    height: 200px;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}
.foot-ad-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}
.foot-ad-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    margin: 0 0 10px;
    line-height: 1.3;
}
.foot-ad-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.88);
    margin: 0 0 24px;
    letter-spacing: .04em;
}
.foot-ad-btn {
    display: inline-block;
    padding: 10px 36px;
    background: #e53935;
    border: none;
    border-radius: 24px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .06em;
    box-shadow: 0 4px 16px rgba(229,57,53,.4);
    transition: background var(--sp-transition), transform var(--sp-transition), box-shadow var(--sp-transition);
}
.foot-ad-btn:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,57,53,.5);
    color: #fff;
}

@media (max-width: 768px) {
    .foot-ad { padding: 36px 0 32px; }
    .foot-ad-title { font-size: 1.5rem; }
    .foot-ad::before { width: 200px; height: 200px; left: -60px; }
    .foot-ad::after  { width: 130px; height: 130px; left: 50px; }
}
@media (max-width: 480px) {
    .foot-ad-title { font-size: 1.25rem; letter-spacing: .03em; }
    .foot-ad-desc  { font-size: .9rem; }
    .foot-ad-btn   { padding: 9px 28px; font-size: .93rem; }
}

/* ── 版权条 ── */
.sp-footer-bottom {
    background: #080c12;
    padding: 11px 0;display: none;
}
.sp-footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.28);
}
.sp-footer-tel-link {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .2s;
}
.sp-footer-tel-link:hover { color: #fff; }
.sp-navbar.sp-navbar--transparent{position: fixed;width: 100%;}

/* ── 响应式 ── */
@media (max-width: 992px) {
    .sp-footer-quickrow,.sp-footer-beian,.sp-footer-stores,.sp-footer-partner-slogan { font-size: 16px; }
    .sp-footer-ql { padding: 0 7px; }
}
@media (max-width: 768px) {
    .sp-footer-inner { flex-direction: column; align-items: stretch; gap: 20px; }
    .sp-footer-qr-wrap { text-align: center; }
    .sp-footer-qr-card { display: inline-block; }
    .sp-footer-copyright { justify-content: center; text-align: center; }
    .sp-footer-quickrow { justify-content: center; }
    .sp-footer-beian { justify-content: center; }
    .sp-footer-stores { justify-content: center; }
    .sp-footer-partner { justify-content: center; text-align: center; }
    .sp-navbar.sp-navbar--transparent:not(.sp-navbar--breadcrumb-overlay){position: relative;}
    .sp-navbar.sp-navbar--transparent:not(.sp-navbar--breadcrumb-overlay) .navbar-brand,
    .sp-navbar.sp-navbar--transparent:not(.sp-navbar--breadcrumb-overlay) .nav-link,
    .sp-navbar.sp-navbar--transparent:not(.sp-navbar--breadcrumb-overlay) .sp-navbar-icon-btn {
    color: #033C5B;}
    .sp-navbar.navbar>.container{flex-wrap: nowrap;}
}
@media (max-width: 480px) {
 .foot-ad .foot-ad-title{ font-size:28px}
 .foot-ad .foot-ad-desc { font-size: 20px;}
 .foot-ad{padding: 40px 0 !important;}
 .sp-footer-quickrow,.sp-footer-beian,.sp-footer-stores,.sp-footer-partner-slogan { font-size: 14px; }
 .sp-footer-qr-wrap{ display:none}
 .sp-footer-partner-logo { height: 60px;}
}

/* =========================================================
   移动端底部固定导航栏 .sp-mobile-nav
   仅在 < 992px 时显示（d-flex d-lg-none 由 Bootstrap 控制）
   ========================================================= */

/* ── 容器 ── */
.sp-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 -1px 0 rgba(0,0,0,.07), 0 -4px 16px rgba(0,0,0,.08);
    height: 100px;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── 菜单项通用 ── */
.sp-mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #888;
    font-size: 12px;
    line-height: 1.2;
    padding: 10px;
    transition: color .2s, background .2s;
    position: relative;
    min-width: 0;
}
.sp-mobile-nav-item:hover {
    color: var(--sp-primary, #1a6fc4);
    background: rgba(26,111,196,.04);
}

/* ── 激活状态 ── */
.sp-mobile-nav-item.active {
    color: var(--sp-primary, #1a6fc4);
}
.sp-mobile-nav-item.active .sp-mobile-nav-icon,
.sp-mobile-nav-item.active .sp-mobile-nav-icon i,
.sp-mobile-nav-item.active .sp-mobile-nav-icon svg {
    color: var(--sp-primary, #1a6fc4);
    fill: var(--sp-primary, #1a6fc4);
}
.sp-mobile-nav-item.active .sp-mobile-nav-label {
    color: var(--sp-primary, #1a6fc4);
    font-weight: 600;
}

/* ── 图标容器 ── */
.sp-mobile-nav-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-mobile-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: inherit;
}
.sp-mobile-nav-icon i {
    font-size: 22px;
    line-height: 1;
}
.sp-mobile-nav-icon-img {
    width: 45px;
    height:45px;
    object-fit: contain;
}

/* ── 文字标签 ── */
.sp-mobile-nav-label {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: #000;
}

/* ── 中央凸起项（居中扩展按钮，医疗 APP 常见样式）── */
.sp-mobile-nav-item--center {
    flex: none;
    width: 70px;
    align-self: flex-start;
    margin-top: -16px;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    flex: none;
    /* 覆盖凸起项图标/文字颜色 */
}
.sp-mobile-nav-item--center .sp-mobile-nav-icon,
.sp-mobile-nav-item--center .sp-mobile-nav-icon i,
.sp-mobile-nav-item--center .sp-mobile-nav-icon-img {
    color: #fff;
}
.sp-mobile-nav-item--center .sp-mobile-nav-icon-img{ width:64px; height:64px}
.sp-mobile-nav-item--center .sp-mobile-nav-label {
    color:#000;
    position: absolute;
    bottom: -15px;
    font-size: 14px;
}
.sp-mobile-nav-item--center:hover {
    background: var(--sp-primary-dark, #155a9e);
    color: #fff;
}

/* ── body 底部留白（防内容被遮挡）仅移动端 ── */
@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }
}

/* =====================================================
   来院路线卡片 (.sp-route-*)
   ===================================================== */
.sp-route-card {
    background: #fff;
    border-radius: var(--sp-radius);
    box-shadow: var(--sp-shadow);
    overflow: hidden;
    transition: box-shadow var(--sp-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sp-route-card:hover { box-shadow: var(--sp-shadow-hover); }
.sp-route-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9ecef;
    flex-shrink: 0;
}
.sp-route-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sp-route-card:hover .sp-route-card__img { transform: scale(1.04); }
.sp-route-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sp-route-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sp-text);
    margin-bottom: 12px;
}
.sp-route-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sp-route-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .9rem;
    color: var(--sp-muted);
    line-height: 1.5;
}
.sp-route-card__meta li i {
    flex-shrink: 0;
    color: var(--sp-primary);
    margin-top: 2px;
}
.sp-route-card__qr {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #e9ecef;
    border-radius: var(--sp-radius-sm);
    padding: 4px;
    background: #fff;
}
.sp-route-card__actions {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* =====================================================
   31. 首页新版
   ===================================================== */
body.home .sp-hero-swiper,
body.home .sp-hero__slide {
    height: clamp(390px, 34vw, 520px);
}

body.home #sp-hero {
    overflow: visible;
    margin-bottom: 112px;
}

body.home .sp-hero__content {
    padding-top: 46px;
}

body.home .sp-hero__title {
    max-width: 650px;
    font-size: 46px;
    line-height: 1.16;
    letter-spacing: 0;
    margin-bottom: 16px;
    white-space: normal;
}

body.home .sp-hero__subtitle {
    max-width: 450px;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 26px;
}

body.home .sp-hero__actions {
    margin-bottom: 0;
}

body.home .sp-hero__actions .sp-hero__btn-primary {
    min-height: 38px;
    padding: 8px 32px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
}

body.home .sp-hero__nav {
    display: none;
}

.sp-homepage {
    position: relative;
    z-index: 5;
    overflow: visible;
    background: #fff;
}

.sp-home-section {
    padding: 62px 0;
}

.sp-home-section-head {
    margin-bottom: 30px;
}

.sp-home-section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 0 9px;
    color: #101827;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.28;
}

.sp-home-section-title::before,
.sp-home-section-title::after {
    content: "/////";
    color: rgba(13, 118, 178, .16);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .16em;
}

.sp-home-section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #a6afba;
    font-size: 15px;
    line-height: 1.8;
}

.sp-home-services {
    position: relative;
    z-index: 8;
    padding-bottom: 36px;
}

body.home #sp-hero > .sp-home-services {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -58px;
    z-index: 12;
    padding-bottom: 0;
}

.sp-home-services-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 112px;
    overflow: hidden;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(214,223,232,.95);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(23,72,115,.14);
    backdrop-filter: blur(8px);
}

body.home #sp-hero .sp-home-services-shell {
    max-width: 1180px;
    min-height: 118px;
    margin: 0 auto;
    box-shadow: 0 18px 38px rgba(31, 79, 120, .2);
}

.sp-home-service-item {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
    padding: 22px 30px;
    color: #172033;
    text-decoration: none;
    transition: background var(--sp-transition), transform var(--sp-transition);
}

.sp-home-service-item + .sp-home-service-item::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 1px;
    background: #e4eaf0;
}

.sp-home-service-item:hover {
    background: #f7fbff;
    color: #172033;
}

.sp-home-service-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
}

.sp-home-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sp-home-service-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sp-home-service-copy strong {
    color: #202938;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.sp-home-service-copy em {
    margin-top: 2px;
    overflow: hidden;
    color: #8b95a1;
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-home-doctors {
    padding-top: 0;
    background: #fff;
}

.sp-home-tabs {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 38px;
}

.sp-home-tab {
    min-width: 106px;
    min-height: 48px;
    padding: 10px 24px;
    border: 0;
    border-radius: 8px;
    background: #f8fafc;
    color: #182233;
    box-shadow: 0 8px 18px rgba(15,35,55,.05);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background var(--sp-transition), color var(--sp-transition), box-shadow var(--sp-transition);
}

.sp-home-tab.active,
.sp-home-tab:hover {
    background: #074a63;
    color: #fff;
    box-shadow: 0 10px 22px rgba(7,74,99,.18);
}

.sp-home-doctor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 38px 34px;
}

.sp-home-doctor-card.is-hidden {
    display: none;
}

.sp-home-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.sp-home-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 30px;
    padding: 6px 26px;
    border: 1px solid #e0e6ec;
    border-radius: 3px;
    background: #fff;
    color: #a2acb6;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: border-color var(--sp-transition), color var(--sp-transition), background var(--sp-transition);
}

.sp-home-more-btn:hover {
    border-color: var(--sp-primary);
    background: #f8fbff;
    color: var(--sp-primary);
}

.sp-home-routes {
    background: linear-gradient(180deg, #f5fbff 0%, #fff 100%);
}

#sp-home-routes .suopu-route-card,
#sp-home-routes .suopu-route-item {
    max-width: 100%;
}

#sp-home-routes .suopu-route-card-first {
    margin-bottom: 18px !important;
}

.sp-home-route-panel {
    padding: 24px 26px 18px;
    border: 1px solid rgba(230,239,247,.8);
    border-radius: 3px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 18px 44px rgba(41,91,132,.08);
}

.sp-home-route-feature {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr) 184px;
    align-items: center;
    gap: 48px;
    padding: 6px 10px 20px;
}

.sp-home-route-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23,51,82,.12);
}

.sp-home-route-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.sp-home-route-desc {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.9;
}

.sp-home-route-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sp-home-route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 34px;
    padding: 7px 18px;
    border: 1px solid #d9e0e7;
    border-radius: 4px;
    background: #fff;
    color: #66717d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--sp-transition), color var(--sp-transition), border-color var(--sp-transition);
}

.sp-home-route-btn:hover {
    border-color: var(--sp-primary);
    background: var(--sp-primary);
    color: #fff;
}

.sp-home-route-qr {
    text-align: center;
}

.sp-home-route-qr img {
    width: 142px;
    height: 142px;
    padding: 8px;
    border: 1px solid #d7e1ea;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
}

.sp-home-route-qr p {
    margin: 8px 0 0;
    color: #172033;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.sp-home-route-row {
    border-top: 1px solid #e9eef3;
}

.sp-home-route-row--first,
.sp-home-route-toggle {
    display: grid;
    grid-template-columns: minmax(190px, 1.08fr) minmax(0, 2.2fr) minmax(190px, .9fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 62px;
    padding: 0 12px;
}

.sp-home-route-row h3,
.sp-home-route-row p,
.sp-home-route-row-title,
.sp-home-route-row-address {
    margin: 0;
    min-width: 0;
    color: #263241;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.sp-home-route-row p,
.sp-home-route-row-address {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #5d6875;
    font-size: 13px;
    font-weight: 600;
}

.sp-home-route-row i {
    color: #2b83a7;
}

.sp-home-route-toggle {
    background: transparent;
    text-align: left;
}

.sp-home-route-row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.sp-home-route-row-actions .sp-home-route-btn {
    min-width: 84px;
}

.sp-home-route-arrow {
    font-size: 15px;
    transition: transform var(--sp-transition);
}

.sp-home-route-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #5d6875;
    cursor: pointer;
}

.sp-home-route-arrow-btn[aria-expanded="true"] .sp-home-route-arrow {
    transform: rotate(180deg);
}

.sp-home-route-collapse-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding: 0 12px 20px 12px;
}

.sp-home-route-collapse-inner img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    object-fit: cover;
}

.sp-home-route-collapse-inner p {
    margin: 0 0 8px;
    color: #596575;
    font-size: 13px;
    line-height: 1.8;
}

.sp-home-route-mini {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sp-home-advantages {
    background: #fff;
}

.sp-home-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.sp-home-adv-card {
    min-height: 280px;
    padding: 46px 30px 34px;
    border: 1px solid #e9eef4;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(28,64,102,.04);
    text-align: center;
    transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.sp-home-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(28,64,102,.09);
}

.sp-home-adv-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 26px;
    color: #1f7db8;
    font-size: 46px;
}

.sp-home-adv-card h3 {
    margin: 0 0 18px;
    color: #192334;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.sp-home-adv-card p {
    margin: 0;
    color: #7d8793;
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
}

.sp-home-news {
    background: linear-gradient(180deg, #f5f9fd 0%, #fff 100%);
}

.sp-home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 56px;
}

.sp-home-news-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 76px;
    align-items: start;
    gap: 18px;
    min-height: 72px;
}

.sp-home-news-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2px;
    color: #1b7db5;
    line-height: 1.1;
}

.sp-home-news-date strong {
    font-size: 18px;
    font-weight: 900;
}

.sp-home-news-date span {
    margin-top: 7px;
    color: #8090a1;
    font-size: 11px;
    font-weight: 700;
}

.sp-home-news-copy {
    min-width: 0;
}

.sp-home-news-copy h3 {
    margin: 0 0 7px;
    overflow: hidden;
    color: #1c2635;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.38;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-home-news-copy h3 a {
    color: inherit;
    text-decoration: none;
}

.sp-home-news-copy h3 a:hover {
    color: var(--sp-primary);
}

.sp-home-news-copy p {
    margin: 0;
    overflow: hidden;
    color: #9aa4af;
    font-size: 12px;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-home-news-link {
    padding-top: 2px;
    color: #1d87c5;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    text-align: right;
    text-decoration: none;
    white-space: nowrap;
}

.sp-home-news-link:hover {
    color: #07516c;
}

@media (max-width: 1199.98px) {
    .sp-home-service-item {
        padding: 20px 22px;
    }

    .sp-home-doctor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sp-home-route-feature {
        grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    }

    .sp-home-route-qr {
        display: none;
    }

    .sp-home-adv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    body.home #sp-hero {
        margin-bottom: 66px;
    }

    body.home .sp-hero-swiper,
    body.home .sp-hero__slide {
        height: 330px;
    }

    body.home .sp-hero__content {
        padding-top: 52px;
        align-items: center;
    }

    body.home .sp-hero__title {
        max-width: 330px;
        font-size: 26px;
        line-height: 1.25;
    }

    body.home .sp-hero__subtitle {
        max-width: 310px;
        font-size: 17px;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    body.home .sp-hero__actions .sp-hero__btn-primary {
        min-height: 34px;
        padding: 8px 26px;
        font-size: 12px;
    }

    .sp-home-section {
        padding: 44px 0;
    }

    .sp-home-section-head {
        margin-bottom: 22px;
    }

    .sp-home-section-title {
        gap: 13px;
        font-size: 22px;
    }

    .sp-home-section-title::before,
    .sp-home-section-title::after {
        font-size: 12px;
        letter-spacing: .1em;
    }

    .sp-home-section-subtitle {
        max-width: 300px;
        font-size: 12px;
        line-height: 1.65;
    }

    .sp-home-services {
        padding-bottom: 26px;
    }

    body.home #sp-hero > .sp-home-services {
        bottom: -48px;
        padding-bottom: 0;
    }

    .sp-home-services-shell {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 76px;
        border-radius: 10px;
        box-shadow: 0 10px 22px rgba(23,72,115,.1);
    }

    body.home #sp-hero .sp-home-services-shell {
        min-height: 76px;
        max-width: none;
    }

    .sp-home-service-item {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 76px;
        padding: 9px 4px;
        text-align: center;
    }

    .sp-home-service-item + .sp-home-service-item::before {
        top: 12px;
        bottom: 12px;
    }

    .sp-home-service-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .sp-home-service-copy strong {
        font-size: 11px;
    }

    .sp-home-service-copy em {
        display: none;
    }

    .sp-home-tabs {
        gap: 12px;
        margin-bottom: 24px;
    }

    .sp-home-tab {
        min-width: 82px;
        min-height: 38px;
        padding: 8px 14px;
        border-radius: 5px;
        font-size: 12px;
    }

    .sp-home-doctor-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 24px;
    }

    .sp-home-doctor-card:nth-child(n+3) {
        display: none;
    }

    .sp-home-route-panel {
        padding: 12px;
        border-radius: 8px;
    }

    .sp-home-route-feature {
        display: block;
        padding: 0 0 12px;
    }

    .sp-home-route-image {
        margin-bottom: 14px;
    }

    .sp-home-route-desc {
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 1.75;
    }

    .sp-home-route-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sp-home-route-btn {
        min-height: 40px;
        padding: 8px 12px;
    }

    .sp-home-route-row--first,
    .sp-home-route-toggle {
        grid-template-columns: 1fr 26px;
        gap: 6px;
        min-height: auto;
        padding: 15px 4px;
    }

    .sp-home-route-row--first h3,
    .sp-home-route-row-title {
        grid-column: 1 / -1;
        font-size: 14px;
    }

    .sp-home-route-row--first p,
    .sp-home-route-row-address {
        grid-column: 1 / 2;
        font-size: 11px;
    }

    .sp-home-route-row-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
        display: grid;
        grid-template-columns: 1fr 1fr 26px;
    }

    .sp-home-route-row-actions .sp-home-route-btn {
        width: 100%;
    }

    .sp-home-route-collapse-inner {
        grid-template-columns: 1fr;
        padding: 0 4px 15px;
    }

    .sp-home-adv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .sp-home-adv-card {
        min-height: 228px;
        padding: 26px 13px 20px;
        border-radius: 4px;
    }

    .sp-home-adv-card i {
        width: 52px;
        height: 52px;
        margin-bottom: 15px;
        font-size: 34px;
    }

    .sp-home-adv-card h3 {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .sp-home-adv-card p {
        font-size: 10px;
        line-height: 1.65;
    }

    .sp-home-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sp-home-news-item {
        grid-template-columns: 50px minmax(0, 1fr) 58px;
        gap: 10px;
        padding-bottom: 12px;
        border-bottom: 1px solid #edf2f7;
    }

    .sp-home-news-date strong {
        font-size: 13px;
    }

    .sp-home-news-date span {
        font-size: 9px;
    }

    .sp-home-news-copy h3 {
        font-size: 12px;
    }

    .sp-home-news-copy p {
        font-size: 10px;
    }

    .sp-home-news-link {
        font-size: 10px;
    }
}

/* =====================================================
   常见问题 FAQ (.sp-faq-*)
   ===================================================== */
.sp-faq-section { padding: var(--sp-section-gap) 0; }
.sp-faq-section__header { text-align: center; margin-bottom: 40px; }
.sp-faq-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--sp-text);
}
.sp-faq-section__subtitle {
    color: var(--sp-muted);
    margin-top: 8px;
    font-size: 1rem;
}

/* ── PC 端：accordion ── */
.sp-faq-accordion .accordion-button,
.sp-faq-accordion__btn {
    font-size: .97rem;
    font-weight: 600;
    color: var(--sp-text);
    background: #fff;
    box-shadow: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}
.sp-faq-accordion .accordion-button:not(.collapsed),
.sp-faq-accordion__btn:not(.collapsed) {
    color: var(--sp-primary);
    background: var(--sp-primary-light);
}
.sp-faq-accordion .accordion-button::after { filter: none; }
.sp-faq-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: var(--sp-radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.sp-faq-accordion .accordion-body {
    font-size: .93rem;
    color: #444;
    padding: 14px 20px 20px;
    line-height: 1.8;
}

/* ── FAQ 问题图标（仅 PC 端，Bootstrap d-none d-lg-inline-block 控制显示）── */
.sp-faq-icon {
    color: var(--sp-primary);
    margin-right: 10px;
    font-size: 1.1rem;
    vertical-align: middle;
    line-height: 1;
    flex-shrink: 0;
}
/* 展开状态时图标随文字变色 */
.accordion-button:not(.collapsed) .sp-faq-icon {
    color: var(--sp-primary-dark);
}

/* ── 移动端：垂直堆叠列表 ── */
.sp-faq-stack .sp-faq-stack__item {
    border: 1px solid #e9ecef;
    border-radius: var(--sp-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}
.sp-faq-stack__q {
    background: var(--sp-primary-light);
    padding: 14px 16px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--sp-primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
}
.sp-faq-stack__q i { flex-shrink: 0; }
.sp-faq-stack__a {
    padding: 14px 16px;
    font-size: .9rem;
    color: #444;
    line-height: 1.8;
    background: #fff;
}
.sp-faq-stack__a p:last-child { margin-bottom: 0; }

/* =====================================================
   来院路线页面样式（命名空间：suopu-*）
   ===================================================== */

/* 页面容器 */
.suopu-route-section {
    background: #f8f9fa;
}

.suopu-route-title-wrap {
    position: relative;
}

.suopu-route-title {
    margin: 0;
    color: #111827;
    font-size: 1.65rem;
    line-height: 1.25;
    font-weight: 800 !important;
    letter-spacing: 0;
    vertical-align: middle;
}

.suopu-route-title-decoration {
    color: #d7dce2;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: .18em;
    vertical-align: middle;
}

/* 第一条门店卡片 */
.suopu-route-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.suopu-hospital-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.suopu-hospital-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.btn-route {
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

.suopu-qrcode-box {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.suopu-qrcode-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.suopu-qrcode-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* 信息行（第一条底部 + 其他门店顶部共用） */
.suopu-info-row {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.suopu-route-card .suopu-info-row {
    margin-top: 1.5rem;
}

.suopu-route-header .suopu-info-row {
    border-top: none;
    padding-top: 0;
    margin: 0;
}

.suopu-info-col {
    display: flex;
    align-items: center;
}

.suopu-info-text {
    font-size: 0.9rem;
    color: #666;
}

.suopu-info-address-col {
    color: #666;
}

.suopu-info-address-col i {
    flex-shrink: 0;
}

/* 其他门店折叠列表 */
.suopu-route-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: all 0.3s ease;
}

.suopu-route-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.suopu-route-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.suopu-route-info {
    flex: 1;
    min-width: 0;
}

.suopu-route-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.suopu-route-address {
    font-size: 0.9rem;
    color: #666;
}

.suopu-route-hours {
    font-size: 0.9rem;
    color: #666;
}

.suopu-route-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.suopu-toggle-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.suopu-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.suopu-toggle-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.suopu-toggle-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.suopu-route-detail {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* =====================================================
   FAQ Section 样式（命名空间：suopu-faq-*）
   ===================================================== */

.suopu-faq-section {
    background: #fff;
}

.suopu-faq-container {
    max-width: 1120px;
}

.suopu-faq-title-wrap {
    position: relative;
}

.suopu-faq-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.suopu-faq-title-decoration {
    color: #1a6fc4;
    font-weight: 300;
    font-size: 1.2rem;
}

.suopu-faq-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.suopu-faq-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border-color: #e8f0fc;
}

.suopu-faq-icon-box {
    background: #e8f0fc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.suopu-faq-icon-content {
    text-align: center;
}

.suopu-faq-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.suopu-faq-icon-fallback {
    font-size: 3rem;
    color: #1a6fc4;
    display: block;
    margin-bottom: 1rem;
}

.suopu-faq-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.suopu-faq-content {
    padding: 2rem;
}

.suopu-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.suopu-faq-answer {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.suopu-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Route FAQ design */
.suopu-route-faq {
    background: #fff;
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
}

.suopu-route-faq .suopu-faq-container {
    max-width: 100%;
}

.suopu-route-faq .suopu-faq-list {
    width: 100%;
}

@media (min-width: 576px) {
    .suopu-route-faq .suopu-faq-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .suopu-route-faq .suopu-faq-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .suopu-route-faq .suopu-faq-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .suopu-route-faq .suopu-faq-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .suopu-route-faq .suopu-faq-container {
        max-width: 1320px;
    }
}

.suopu-route-faq .suopu-faq-title-wrap {
    margin-bottom: 1.7rem !important;
}

.suopu-route-faq .suopu-faq-title {
    color: #111827;
    font-size: 1.65rem;
    line-height: 1.25;
    font-weight: 800 !important;
    letter-spacing: 0;
    vertical-align: middle;
}

.suopu-route-faq .suopu-faq-title-decoration {
    color: #d7dce2;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: .18em;
    vertical-align: middle;
}

.suopu-route-faq .suopu-faq-card {
    border: 1px solid #e6e8eb;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(15,23,42,.14);
    margin-bottom: 1rem !important;
    overflow: hidden;
}

.suopu-route-faq .suopu-faq-card:hover {
    border-color: #dfe5ec;
    box-shadow: 0 4px 12px rgba(15,23,42,.16);
}

.suopu-route-faq .suopu-faq-card-row {
    min-height: 258px;
}

.suopu-route-faq .suopu-faq-icon-box {
    background: #bcd8f6;
    min-height: 258px;
    padding: 2.6rem 1.4rem;
}

.suopu-route-faq .suopu-faq-icon-content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.suopu-route-faq .suopu-faq-icon-img {
    width: 108px;
    height: 108px;
    margin-bottom: 1.65rem;
    object-fit: contain;
}

.suopu-route-faq .suopu-faq-icon-fallback {
    margin-bottom: 1.65rem;
    color: #7a8ea4;
    font-size: 5.6rem;
    line-height: 1;
}

.suopu-route-faq .suopu-faq-tag {
    color: #1f2937;
    font-size: 1.58rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.suopu-route-faq .suopu-faq-body-col {
    background: #fff;
}

.suopu-route-faq .suopu-faq-content {
    min-height: 100%;
    padding: 2.35rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suopu-route-faq .suopu-faq-question {
    margin-bottom: .75rem;
    color: #111827;
    font-size: 1.06rem;
    line-height: 1.55;
    font-weight: 800;
}

.suopu-route-faq .suopu-faq-answer {
    color: #111827;
    font-size: .9rem;
    line-height: 1.85;
}

.suopu-route-faq .suopu-faq-answer h3 {
    margin: .65rem 0 .38rem;
    color: #111827;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 800;
}

.suopu-route-faq .suopu-faq-answer h3:first-child {
    margin-top: 0;
}

.suopu-route-faq .suopu-faq-answer p,
.suopu-route-faq .suopu-faq-answer .faq-txt-info {
    margin: 0 0 .7rem;
}

.suopu-route-faq .suopu-faq-answer .red-bg {
    display: inline-block;
    padding: .04rem .38rem;
    border-radius: .22rem;
    background: #ff1f2e;
    color: #fff;
    line-height: 1.35;
}

/* =====================================================
   响应式布局
   ===================================================== */

@media (max-width: 991.98px) {
    .suopu-route-title {
        font-size: 1.55rem;
    }

    .suopu-route-card {
        padding: 1.5rem;
    }

    .suopu-route-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .suopu-route-info {
        width: 100%;
    }

    .suopu-route-actions {
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }

    .suopu-toggle-btn {
        align-self: center;
        margin-top: 0.5rem;
        order: 3;
        width: 100%;
        max-width: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .suopu-info-col {
        flex-direction: column;
        align-items: flex-start;
        text-align: left !important;
    }

    .suopu-faq-icon-box {
        padding: 1.5rem;
    }

    .suopu-faq-content {
        padding: 1.5rem;
    }

    .suopu-route-faq .suopu-faq-card-row {
        min-height: 0;
    }

    .suopu-route-faq .suopu-faq-icon-box {
        min-height: 190px;
        padding: 2rem 1rem;
    }

    .suopu-route-faq .suopu-faq-content {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .suopu-route-title {
        font-size: 1.42rem;
    }

    .suopu-route-title-decoration {
        font-size: .9rem;
        letter-spacing: .12em;
    }

    .suopu-route-card {
        padding: 1rem;
    }

    .suopu-route-header {
        padding: 1rem;
    }

    .suopu-route-detail {
        padding: 1rem;
    }

    .btn-route {
        width: 100%;
        text-align: center;
    }

    .suopu-route-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-route-appt,
    .btn-route-consult {
        width: 100%;
    }

    .suopu-qrcode-img {
        width: 120px;
        height: 120px;
    }

    .suopu-faq-title {
        font-size: 1.4rem;
    }

    .suopu-faq-title-decoration {
        font-size: 1rem;
    }

    .suopu-faq-icon-img {
        width: 60px;
        height: 60px;
    }

    .suopu-faq-icon-fallback {
        font-size: 2.5rem;
    }

    .suopu-route-faq {
        padding-top: 2.25rem !important;
        padding-bottom: 2.5rem !important;
    }

    .suopu-route-faq .suopu-faq-title {
        font-size: 1.42rem;
    }

    .suopu-route-faq .suopu-faq-title-decoration {
        font-size: .9rem;
        letter-spacing: .12em;
    }

    .suopu-route-faq .suopu-faq-icon-img {
        width: 82px;
        height: 82px;
        margin-bottom: 1rem;
    }

    .suopu-route-faq .suopu-faq-icon-fallback {
        margin-bottom: 1rem;
        font-size: 4.2rem;
    }

    .suopu-route-faq .suopu-faq-tag {
        font-size: 1.32rem;
    }

    .suopu-route-faq .suopu-faq-answer {
        font-size: .86rem;
    }
}
