/* 长沙中研皮肤病医院 - 精致奢华版样式 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
    /* 主色调 - 深海蓝与奢华金的优雅搭配 */
    --primary: #0a3d62;
    --primary-dark: #062a45;
    --primary-light: #1e5a8a;
    --accent: #d4af37;
    --accent-light: #e8c960;
    --accent-dark: #b8942f;

    /* 辅助色 - 清新医疗感 */
    --teal: #16a085;
    --teal-light: #1abc9c;
    --mint: #a8e6cf;

    /* 中性色 */
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-light: #eef2f7;
    --gray: #94a3b8;
    --gray-dark: #475569;
    --text: #1e293b;
    --text-light: #64748b;

    /* 功能色 */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #0ea5e9;

    /* 渐变 - 2026全新升级版 */
    --gradient-hero: linear-gradient(135deg, #064e3b 0%, #065f46 20%, #047857 60%, #059669 100%);
    --gradient-hero-light: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #e8c960 50%, #d4af37 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-teal: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);

    /* 阴影 - 更柔和更有层次 */
    --shadow-sm: 0 2px 8px rgba(10, 61, 98, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 61, 98, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 61, 98, 0.16);
    --shadow-xl: 0 24px 64px rgba(10, 61, 98, 0.20);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);

    /* 圆角 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* 字体 */
    --font-sc: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 全局重置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sc);
    color: var(--text);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 顶部信息栏 - 更新 ========== */
.topinfo {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.topinfo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.topinfo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topinfo-left, .topinfo-right {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255,255,255,0.9);
}

.topinfo span, .topinfo a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ========== 主头部 ========== */
/* 头部全部样式已抽到独立文件:css/header.css(225 行) */
/* .header / .header-inner / .logo-* / .header-right / .header-phone / .phone-* / .btn-yuyue / .btn-consult / .brand-* */

/* ========== 导航 ========== */
/* 导航样式已抽离到独立文件:css/nav.css(203 行)
   - 桌面:横向排开 + hover 下划线 + 滚动半透明
   - 平板:略紧凑
   - 手机:汉堡菜单(点开变 X,菜单纵向)
   引用方式:<link rel="stylesheet" href="css/nav.css"> 在 premium.css 之后
*/

/* ========== Hero Banner ========== */
.banner {
    min-height: 580px;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,60 C300,120 600,0 900,60 C1050,90 1150,50 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(22, 160, 133, 0.15) 0%, transparent 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.banner-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.banner-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease;
}

.banner h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.banner h1 span {
    color: var(--accent);
    position: relative;
}

.banner h1 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.banner > .banner-content > p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-white {
    padding: 16px 36px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    color: var(--primary);
}

.btn-outline-white {
    padding: 16px 36px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 通用区块 ========== */
.section {
    padding: 80px 0;
}

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

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

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
}

.more-link {
    display: block;
    text-align: center;
    margin-top: 36px;
    color: var(--primary);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: var(--accent);
    transform: translateX(6px);
}

/* ========== 服务卡片 ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 61, 98, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--teal);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-teal);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== 科室卡片 ========== */
.depts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dept-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.dept-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.dept-img {
    height: 180px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.dept-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
}

.dept-info {
    padding: 24px;
}

.dept-info h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.dept-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== 医生卡片 ========== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 61, 98, 0.06);
}

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

.doctor-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--gradient-hero);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
}

.doctor-photo::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-photo::after {
    opacity: 1;
}

.doctor-info h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
}

.doctor-info .zhiwei {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========== 案例卡片 ========== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.case-img {
    height: 200px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--teal);
    color: var(--white);
    font-size: 12px;
    border-radius: var(--radius-full);
}

.case-img span:last-child {
    font-size: 28px;
    color: var(--primary);
    font-weight: 600;
}

.case-info {
    padding: 22px;
}

.case-info h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 6px;
}

.case-info p {
    font-size: 14px;
    color: var(--success);
}

/* ========== 统计区块 ========== */
.stats-section {
    background: var(--gradient-hero);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .num {
    font-size: 44px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 15px;
    opacity: 0.9;
}

/* ========== 精选案例轮播风格区 ========== */
.featured-section {
    padding: 80px 0;
    background: var(--white);
}

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

.featured-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    transition: all 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.featured-img {
    width: 240px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,0.8);
}

.featured-content {
    padding: 32px;
    flex: 1;
}

.featured-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.featured-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========== 优势特色区 ========== */
.advantages-section {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.advantage-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.advantage-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.advantage-item h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 6px;
}

.advantage-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* ========== CTA 区块 ========== */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========== 页脚 ========== */
.footer {
    background: #0a1525;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* ========== 浮动按钮 ========== */
.float-btns {
    position: fixed;
    right: 24px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--gradient-hero);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========== 首页首屏Hero区域 - 焕新2026版 ========== */
.home-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 40%, #3182ce 100%);
    padding: 50px 0 70px;
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
}

/* 背景图 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    /* 性能优化 */
    will-change: transform;
}

/* 暗色蒙层 - 让左侧文字可读 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(13, 36, 64, 0.92) 0%,
        rgba(13, 36, 64, 0.80) 35%,
        rgba(13, 36, 64, 0.45) 65%,
        rgba(13, 36, 64, 0.20) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 让容器在蒙层之上 */
.home-hero > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* 添加精致的背景纹理 - 调整到蒙层上方但低透明 */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* 装饰圆 - 放到 overlay 上面但低不透明 */
.home-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-main {
  /*   display: grid;
    grid-template-columns: 1.2fr 1fr;  双列(文左 + 地图右)旧版
    gap: 48px;
    align-items: center; */
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.badge-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #064e3b;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-content h1 span {
    color: #fcd34d;
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fcd34d, #fbbf24, #f59e0b);
    border-radius: var(--radius-full);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* 一键咨询按钮组 */
.hero-cta {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.hero-cta a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.hero-cta .cta-phone {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #064e3b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.hero-cta .cta-phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.2) inset;
}

.hero-cta .cta-consult {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #064e3b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.hero-cta .cta-consult:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45);
}

.hero-cta .cta-book {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.hero-cta .cta-book:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.6);
}

.hero-cta a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.cta-text {
    font-size: 13px;
    line-height: 1.4;
}

.cta-text strong {
    font-size: 16px;
    display: block;
}

.cta-text small {
    font-size: 12px;
    opacity: 0.8;
}

/* 核心关键词标签 */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-tags span {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 地图卡片 */
.hero-map {
    position: relative;
    z-index: 1;
}

.map-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.25), 0 0 0 1px rgba(255,255,255,0.15) inset;
    border: 1px solid rgba(255,255,255,0.5);
}

.map-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: #064e3b;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.map-embed {
    margin-bottom: 20px;
}

.map-placeholder {
    background: linear-gradient(145deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px dashed #5eead4;
}

.map-info p {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
}

.map-info strong {
    color: #064e3b;
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.map-address-detail {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    background: #f8fafc;
    padding: 16px;
    border-radius: var(--radius-md);
}

.map-address-detail p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.addr-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    padding: 0 8px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0d9488;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: var(--radius-md);
    border: 1px solid #5eead4;
    transition: all 0.3s;
}

.map-link:hover {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
}

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

/* ========== 快捷入口 ========== */
.quick-entry {
    background: var(--white);
    padding: 32px 0;
    box-shadow: var(--shadow-sm);
}

/* entry 快捷入口样式已抽到独立文件:css/entry.css(147 行) */

/* ========== 双品牌展示 + 顶部按钮(也用于 hero 等其他地方) ========== */
.brand-primary {
    color: var(--accent);
}

.brand-eq {
    margin: 0 12px;
    opacity: 0.7;
}

.brand-secondary {
    color: var(--white);
}

/* 顶部按钮 */
.top-btn {
    background: var(--accent);
    color: var(--primary-dark) !important;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

/* 一键咨询按钮 */
.btn-consult {
    padding: 12px 20px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-consult:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

/* ========== 资质证明 ========== */
.about-intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-brand {
    font-size: 20px;
    color: var(--accent);
    margin-top: 8px;
    font-weight: 600;
}

.qualifications {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.quali-item {
    text-align: center;
    padding: 16px 12px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
}

.quali-icon {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.quali-item span:last-child {
    font-size: 13px;
    color: var(--text-light);
}

.intro-features {
    margin-top: 24px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.feature-point span:first-child {
    color: var(--teal);
    font-weight: 600;
}

.image-card {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 12px;
}

.image-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========== 医生标签 ========== */
.doctor-card {
    position: relative;
}

.doctor-card.featured {
    border: 2px solid var(--accent);
}

.doctor-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.doctor-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.doctor-tags span {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
}

.tag-yl {
    background: #e0f2fe;
    color: #0369a1;
}

.tag-dy {
    background: #fef3c7;
    color: #b45309;
}

.tag-wb {
    background: #fce7f3;
    color: #be185d;
}

.doctor-info .specialty {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

/* ========== 快速入口导航 ========== */
.quick-nav-section {
    background: var(--white);
    padding: 48px 0;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-nav-item:hover {
    background: var(--gradient-hero);
    color: var(--white);
    transform: translateY(-3px);
}

.qn-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.quick-nav-item:hover .qn-icon {
    background: var(--accent);
    color: var(--primary-dark);
}

.qn-text {
    font-size: 13px;
    text-align: center;
    color: var(--text);
}

.quick-nav-item:hover .qn-text {
    color: var(--white);
}

/* ========== 两大专属专栏区域 ========== */
.special-column-section {
    background: var(--off-white);
    padding: 70px 0;
}

.special-column-section .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.special-column-section .section-title h2 {
    font-size: 34px;
    color: #064e3b;
    margin-bottom: 10px;
    font-weight: 700;
}

.special-column-section .section-title p {
    color: var(--text-light);
    font-size: 17px;
}

/* 每个专属专栏块 */
.special-column-block {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 36px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
}

.special-column-block:last-of-type {
    margin-bottom: 0;
}

.special-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e2e8f0;
}

.col-tag {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.special-col-header h3 {
    font-size: 24px;
    color: #064e3b;
    font-weight: 700;
}

.special-col-header p {
    color: var(--text-light);
    font-size: 14px;
    margin-left: auto;
}

/* 文章分类网格 */
.article-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 每个分类 */
.article-cat {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ccfbf1;
}

.cat-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

/* 文章列表 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s;
    border-left: 3px solid transparent;
}

.article-item:hover {
    background: #f0fdfa;
    border-left-color: #0d9488;
    transform: translateX(4px);
}

.article-tag {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    min-width: 38px;
    text-align: center;
}

.article-text {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

/* 康复案例专用 */
.case-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.case-area {
    background: #fef3c7;
    color: #92400e;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.case-desc {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
}

/* 响应式处理 */
@media(max-width: 992px) {
    .article-categories {
        grid-template-columns: 1fr 1fr;
    }
    .special-col-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .special-col-header p {
        margin-left: 0;
    }
	
	.hero-cta .cta-book{display: none;} 
}

@media(max-width: 576px) {
    .article-categories {
        grid-template-columns: 1fr;
    }
    .special-column-block {
        padding: 20px;
    }

	.hero-cta .cta-book{display: none;}
	
}

/* ========== 专栏区域 ========== */
.column-section {
    background: var(--gray-light);
    padding: 80px 0;
}

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

.column-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.column-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-teal);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.column-text h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.column-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== 站内链接闭环 ========== */
.footer-links {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 8px;
}

/* ========== 页面横幅 ========== */
.page-banner {
    background: var(--gradient-hero);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-banner p {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.85;
}

/* ========== 锚点导航 ========== */
.anchor-nav {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 50;
}

.anchor-nav .container {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.anchor-item {
    color: var(--text);
    font-size: 15px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.anchor-item:hover,
.anchor-item.active {
    background: var(--primary);
    color: var(--white);
}

/* ========== 病因板块 ========== */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cause-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.cause-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-teal);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.cause-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.cause-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.cause-tip {
    margin-top: 40px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.cause-tip p {
    font-size: 14px;
    color: var(--text);
}

/* ========== 症状板块 ========== */
.symptoms-show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 40px;
}

.symptom-main h3,
.symptom-types h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.symptom-list {
    list-style: none;
}

.symptom-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 15px;
}

.symptom-list li span {
    width: 28px;
    height: 28px;
    background: var(--gradient-teal);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

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

.type-card {
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.type-num {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.type-card p {
    font-size: 13px;
    color: var(--text-light);
}

.symptom-warning {
    margin-top: 32px;
    padding: 20px;
    background: #fef2f2;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--error);
}

.symptom-warning h4 {
    color: var(--error);
    margin-bottom: 8px;
}

.symptom-warning p {
    font-size: 14px;
    color: var(--text);
}

/* ========== 治疗方法板块 ========== */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    transition: all 0.3s ease;
}

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

.treat-img {
    width: 140px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    flex-shrink: 0;
}

.treat-content {
    padding: 28px;
    flex: 1;
}

.treat-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 6px;
}

.treat-highlight {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.treat-content > p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.treat-advantage {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.treat-advantage span {
    padding: 4px 12px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    border-radius: var(--radius-full);
}

.treatment-note {
    margin-top: 32px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.treatment-note p {
    font-size: 14px;
    color: var(--text);
}

/* ========== 康复案例说明 ========== */
.case-desc {
    font-size: 14px;
    color: var(--text-light);
    margin: 12px 0;
}

.case-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.case-disclaimer {
    margin-top: 24px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-size: 13px;
}

/* ========== 费用说明 ========== */
.fee-structure {
    margin-top: 40px;
}

.fee-intro {
    padding: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.fee-intro p {
    font-size: 15px;
    line-height: 1.7;
}

.fee-factors h3,
.fee-range h3,
.fee-insurance h3,
.fee-tips h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.factors-list,
.tips-list {
    list-style: none;
    margin-bottom: 32px;
}

.factors-list li,
.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.factors-list li span,
.tips-list li span {
    width: 24px;
    height: 24px;
    background: var(--gray-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-light);
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.range-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-light);
}

.range-label {
    display: block;
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.range-price {
    display: block;
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
}

.range-note {
    font-size: 12px;
    color: var(--text-light);
}

.fee-insurance {
    padding: 24px;
    background: #e0f2fe;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.fee-insurance p {
    font-size: 14px;
    color: var(--text);
}

.fee-tips {
    padding: 24px;
    background: #ecfdf5;
    border-radius: var(--radius-lg);
}

/* ========== 科普专栏 ========== */
.kepu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.kepu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.kepu-card h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
}

.kepu-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== 就医攻略 ========== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.guide-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.guide-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.guide-content p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.guide-content strong {
    color: var(--primary);
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .featured-card {
        flex-direction: column;
    }

    .featured-img {
        width: 100%;
        height: 180px;
    }

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

    .hero-main {
       /*  grid-template-columns: 1fr; */
    }

    .hero-map {
        order: -1;
    }

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

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

    /* 手机版:医院简介区域所有文字居中 */
    .intro-content {
        text-align: center;
    }

    .intro-content p,
    .intro-content .quali-item,
    .intro-content .feature-point {
        text-align: center;
    }

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

    .logo-text h1 {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 18px;
    }

    .brand-eq {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .services-grid, .depts-grid, .doctors-grid, .cases-grid {
        grid-template-columns: 1fr;
    }

    .header-right {
        display: none;
    }

    /* 导航 - 平板略紧凑(已抽到 nav.css,这里仅留空以避免破坏) */

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

    .advantages-grid, .quick-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .banner {
        min-height: 450px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .banner p {
        font-size: 16px;
    }

    .banner-btns {
        flex-direction: column;
    }

    .btn-white, .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .advantages-grid, .quick-entry, .quick-nav-grid, .qualifications {
        grid-template-columns: repeat(2, 1fr);
    }

    .anchor-nav .container {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .symptoms-show,
    .treatments-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

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

    .treatment-card {
        flex-direction: column;
    }

    .treat-img {
        width: 100%;
        height: 80px;
    }

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

/* ========== 新模块区域 - 白殿风科普专栏 & 长沙本地就医攻略 ========== */
.module-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.module-section:nth-child(even) {
    background: linear-gradient(180deg, #fff 0%, #f0f4f8 100%);
}

.module-header {
    text-align: center;
    margin-bottom: 48px;
}

.module-header .module-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 28px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.module-header h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.module-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.module-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.module-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.card-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-articles a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.25s ease;
}

.card-articles a:hover {
    background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
    color: #1a365d;
    transform: translateX(4px);
}

.card-articles a span {
    flex-shrink: 0;
    padding: 4px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== 底部地图区域 ========== */
.bottom-map-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.map-container {
    display: flex;
    justify-content: center;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

.map-info-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.map-info-card .icon {
    font-size: 28px;
}

.map-details {
    text-align: left;
    margin-bottom: 24px;
}

.map-details .hospital-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.map-details p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-details p::before {
    content: '📌';
    font-size: 14px;
}

.map-details .address::before { content: '🏥'; }
.map-details .metro::before { content: '🚇'; }
.map-details .phone::before { content: '📞'; }

.btn-map {
    display: inline-block;
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 响应式调整 */
@media (max-width: 968px) {
    .module-grid {
        grid-template-columns: 1fr;
    }

    .module-header h2 {
        font-size: 28px;
    }

    .map-info-card {
        padding: 30px;
    }
}

/* ========== 响应式增强(完整三档断点) ========== */

/* 桌面: ≥1025px  (默认样式) */

/* 平板: ≤1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .topinfo {
        font-size: 12px;
    }

    .topinfo-left, .topinfo-right {
        gap: 14px;
    }

    .topinfo-left span:first-child {
        display: none; /* 地址在 1024 隐藏,头部小图标替代 */
    }

    .header-right .header-phone .phone-text span {
        display: none; /* "专家热线" 文字隐藏,只留号码 */
    }

    .btn-yuyue,
    .btn-consult {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* 导航 - 1024 平板(已抽到 nav.css) */

    .qualifications {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .quali-item {
        padding: 12px 8px;
    }

    .quali-icon {
        font-size: 20px;
    }

    .quali-item span:last-child {
        font-size: 12px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .featured-card {
        padding: 0;
    }

    .featured-img {
        width: 180px;
    }

    .featured-content {
        padding: 24px;
    }

    .treatment-card .treat-content {
        padding: 22px;
    }

    .module-section {
        padding: 60px 0;
    }

    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 34px;
    }
}

/* 平板/手机: ≤992px (与原有规则合并增强) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .featured-card {
        flex-direction: column;
    }

    .featured-img {
        width: 100%;
        height: 180px;
    }

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

    .hero-main {
       /*  grid-template-columns: 1fr; */
    }

    .hero-map {
        order: -1;
    }

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

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

    /* 手机版:医院简介区域所有文字居中 */
    .intro-content {
        text-align: center;
    }

    .intro-content p,
    .intro-content .quali-item,
    .intro-content .feature-point {
        text-align: center;
    }

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

    .logo-text h1 {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 18px;
    }

    .brand-eq {
        display: none;
    }

    /* Hero 全宽背景图:蒙层调暗一点,适应平板 */
    .home-hero {
        min-height: 480px;
    }

    .hero-bg {
        background-position: 70% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg,
            rgba(13, 36, 64, 0.94) 0%,
            rgba(13, 36, 64, 0.85) 45%,
            rgba(13, 36, 64, 0.55) 80%,
            rgba(13, 36, 64, 0.30) 100%);
    }

    .hero-main {
        max-width: 640px;
    }    /* 内页 - 症状/治疗网格 */
    .causes-grid,
    .kepu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .symptoms-show {
        grid-template-columns: 1fr;
    }

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

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

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

    .special-column-block {
        padding: 24px;
    }
}

/* 手机: ≤768px */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    /* 顶栏折叠: 只显示"咨询热线",其余隐藏 */
    .topinfo {
        padding: 8px 0;
    }

    .topinfo-inner {
        gap: 6px;
    }

    .topinfo-left,
    .topinfo-right a:not(.top-btn) {
        display: none;
    }

    .topinfo-right {
        width: 100%;
        justify-content: space-between;
    }

    .topinfo-right .top-btn {
        padding: 4px 10px;
        font-size: 12px;
    }

    /* 头部简化 */
    .header {
        padding: 12px 0;
    }

    .header-right {
        gap: 8px;
    }

    .header-phone {
        padding: 6px 10px;
        gap: 8px;
    }

    .phone-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .phone-text strong {
        font-size: 14px;
    }

    .header-right .btn-yuyue,
    .header-right .btn-consult {
        display: none; /* 头部按钮移到悬浮栏,移动端不显示 */
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .logo-text h1 {
        font-size: 15px;
        line-height: 1.3;
    }

    .logo-text p {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* 导航 - 768 手机端(已抽到 nav.css) */

    /* Home Hero - 手机端:图放满全宽,蒙层加深 */
    .home-hero {
        min-height: 560px;
        padding: 40px 0 56px;
    }

    .logo-img {
        height: 44px;
        max-width: 240px;
    }

    .hero-bg {
        background-position: 60% center;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(13, 36, 64, 0.75) 0%,
            rgba(13, 36, 64, 0.88) 50%,
            rgba(13, 36, 64, 0.92) 100%);
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Banner 调整 */
    .banner h1 {
        font-size: 32px;
    }

    .banner > .banner-content > p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    /* 手机:section-title 全部内容居中 */
    .section-title {
        text-align: center;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .services-grid, .cases-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* 手机版:专家团队(doctors) + 特色科室(depts) 一行二列 */
    .depts-grid, .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .header-right {
        display: none; /* 由顶部"咨询热线"承担 */
    }

    .footer-grid {
        /* 手机:第一栏满宽一列,其他 3 栏一行三列 */
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .footer-grid > .footer-col:first-child {
        grid-column: 1 / -1;  /* 跨三列 = 满宽 */
    }

    .advantages-grid, .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-grid, .quick-entry {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .stat-item .num {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta a {
        padding: 14px 20px;
        justify-content: center;
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tags span {
        padding: 6px 14px;
        font-size: 12px;
    }

    .map-card {
        padding: 20px;
    }

    /* entry 快捷入口 768px 样式已抽到 css/entry.css */

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

    .column-card {
        padding: 20px;
        gap: 16px;
    }

    .column-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .column-text h3 {
        font-size: 17px;
    }

    /* 浮动按钮 - 缩小并让出底部 */
    .float-btns {
        right: 12px;
        bottom: 80px;
        gap: 8px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }

    /* 内页 banner */
    .page-banner {
        padding: 40px 0;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .page-banner p {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* 锚点导航 - 横滚/换行 */
    .anchor-nav {
        padding: 8px 0;
    }

    .anchor-nav .container {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .anchor-item {
        font-size: 13px;
        padding: 6px 12px;
    }

    /* 病因/症状/治疗 - 手机版优化为两列 */
    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .kepu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cause-card,
    .kepu-card {
        padding: 22px;
    }

    .symptoms-show,
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .treatment-card {
        flex-direction: column;
    }

    .treat-img {
        width: 100%;
        height: 120px;
    }

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

    .guide-card {
        padding: 22px;
    }

    /* 模块/科普专栏 */
    .module-header h2 {
        font-size: 24px;
    }

    .module-card {
        padding: 20px;
    }

    .module-section {
        padding: 50px 0;
    }

    /* 底部地图 */
    .bottom-map-section {
        padding: 40px 0;
    }

    .map-info-card {
        padding: 24px 20px;
    }

    .map-info-card h3 {
        font-size: 19px;
    }

    .map-details .hospital-name {
        font-size: 17px;
    }

    /* 案例/医生/科室卡片 */
    .case-img {
        height: 160px;
    }

    .case-info {
        padding: 16px;
    }

    .doctor-card {
        padding: 22px 18px;
    }

    .doctor-photo {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }

    .dept-img {
        height: 140px;
        font-size: 36px;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .btn-white, .btn-outline-white {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* 表格/列表 */
    .factors-list li,
    .tips-list li {
        font-size: 14px;
        padding: 10px 0;
    }

    .symptom-list li {
        font-size: 14px;
    }

    /* 特殊专栏 - 头部 */
    .special-col-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .special-col-header p {
        margin-left: 0;
    }

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

/* 小屏手机: ≤480px */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 14px;
    }

    .banner {
        min-height: 380px;
    }

    .banner h1 {
        font-size: 26px;
    }

    .banner p {
        font-size: 14px;
    }

    .banner-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-white, .btn-outline-white {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section {
        padding: 40px 0;
    }

    .topinfo-right {
        font-size: 11px;
    }

    .header-phone {
        padding: 5px 8px;
    }

    .phone-text strong {
        font-size: 13px;
    }

    .logo-text h1 {
        font-size: 13px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-cta a {
        padding: 12px 14px;
    }

    .cta-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .cta-text strong {
        font-size: 14px;
    }

    .advantages-grid, .quick-nav-grid, .qualifications {
        grid-template-columns: repeat(2, 1fr);
    }

    .qualifications {
        gap: 10px;
    }

    .quali-item {
        padding: 10px 6px;
    }

    .quali-icon {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .quali-item span:last-child {
        font-size: 11px;
    }

    .anchor-nav .container {
        flex-wrap: wrap;
        gap: 6px;
    }

    .anchor-item {
        font-size: 12px;
        padding: 4px 10px;
    }

    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

    .symptoms-show,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .treatment-card {
        flex-direction: column;
    }

    .treat-img {
        width: 100%;
        height: 80px;
    }

    .type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-item .num {
        font-size: 26px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .float-btns {
        right: 8px;
        bottom: 70px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .module-header h2 {
        font-size: 20px;
    }

    .module-card {
        padding: 18px;
    }

    .map-info-card {
        padding: 20px 16px;
    }

    .page-banner h1 {
        font-size: 22px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    /* 顶栏/导航头像 */
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .header {
        padding: 10px 0;
    }

    .logo-img {
        height: 38px;
        max-width: 200px;
    }
}
/* 全局兜底:桌面端隐藏汉堡按钮已抽到 nav.css 末尾 */
