:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b6b;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    /* 整站淡灰蓝底，减轻纯白刺眼感 */
    --bg-page: #eaf0f8;
    --bg-light: #dfe8f4;
    --bg-white: #f4f8fc;
    --bg-soft: #e9f0fa;
    --border-color: #c8d4e8;
    --nav-main-bg: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #6b8dd6 50%, #8e44ad 75%, #667eea 100%);
    /* 顶栏 Logo 区必须与示意图一致为纯白底，不用整站 --bg-white */
    --nav-logo-strip-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 168, 232, 0.9) 100%);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-page);
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-page);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 首页：各区块与轮播 Banner 最大宽度一致（.banner-carousel 为 1400px） */
body.home-page .container {
    max-width: 1400px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--nav-main-bg);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    visibility: visible;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar.scrolled {
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
    background: var(--nav-main-bg);
    background-size: 200% 200%;
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.nav-logo-row {
    padding: 20px 0;
    background: var(--nav-logo-strip-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-logo-strip-bg);
    padding: 0;
}

.nav-logo img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    display: block;
    background: var(--nav-logo-strip-bg);
    border-radius: 0;
}

.nav-logo a {
    display: inline-block;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.nav-menu-row {
    width: 100%;
    background: transparent;
    border-top: none;
    border-bottom: none;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    display: block;
}


.nav-menu-row .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 0;
}


.nav-menu {
    display: flex !important;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
    position: static !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu li {
    background: transparent !important;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border-radius: 0 !important;
    transition: color 0.2s ease, text-shadow 0.25s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent !important;
    background-color: transparent !important;
    overflow: visible;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    vertical-align: middle;
}


/* 当前页：无底块铺色，仅底部流光条 */
.nav-link.active {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: none;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 12px 20px !important;
    backdrop-filter: none;
}

.nav-link.active::before {
    display: none !important;
    content: none !important;
}

/* 悬停：只强化文字（略提亮 + 极淡光晕），不与底边流光抢视觉；预约按钮仍走 .nav-cta:hover */
.nav-link:not(.nav-cta):hover {
    color: #ffffff !important;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.32);
    background: transparent !important;
    transform: none;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none;
}

.nav-link.active:not(.nav-cta):hover {
    text-shadow: none;
}

.nav-link::after {
    display: none;
}

/* 桌面：选中项底边流光（::after 仅用于此项；预约按钮见 :not(.nav-cta)） */
.nav-link.active:not(.nav-cta)::after {
    display: block !important;
    content: '' !important;
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 2px;
    border-radius: 1px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.28) 38%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255, 255, 255, 0.28) 62%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 260% 100%;
    animation: navActiveFlow 2.6s ease-in-out infinite;
}

@keyframes navActiveFlow {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-link.active:not(.nav-cta)::after {
        animation: none;
        background-position: 50% 0;
    }
}

.nav-link.nav-cta {
    gap: 0;
}

.nav-cta {
    background: linear-gradient(135deg, #4a9eff 0%, #0066cc 50%, #0052a3 100%);
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}


.nav-cta:hover {
    background: linear-gradient(135deg, #5bb3ff 0%, #0088ff 50%, #0066cc 100%);
    box-shadow: 0 6px 25px rgba(74, 158, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-cta.active {
    background: linear-gradient(135deg, #5bb3ff 0%, #0088ff 50%, #0066cc 100%);
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 预约按钮上的 current：保持按钮形态，不用顶栏底边线 */
.nav-link.nav-cta.active {
    background: linear-gradient(135deg, #5bb3ff 0%, #0088ff 50%, #0066cc 100%) !important;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
}

.nav-cta::after {
    display: none;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--nav-main-bg);
    background-size: 200% 200%;
    list-style: none;
    min-width: max-content;
    width: max-content;
    max-width: min(90vw, 360px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    border-radius: 0;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding-left: 28px;
    font-weight: 500;
}

.dropdown-menu a.active {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: #ffffff;
    font-weight: 700;
    border-left: 4px solid #c9e5ff;
    padding-left: 20px;
    position: relative;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.12);
}

.dropdown-menu a.active::before {
    content: '▶';
    position: absolute;
    left: 8px;
    color: #d9ecff;
    font-size: 10px;
    animation: slide-in 0.3s ease;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 下拉：细线 chevron，替代 Unicode ▼ */
.dropdown-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 0;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    font-size: 0;
    line-height: 0;
    color: transparent;
    overflow: visible;
}

.dropdown-arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 5px;
    height: 5px;
    border-right: 2px solid rgba(255, 255, 255, 0.88);
    border-bottom: 2px solid rgba(255, 255, 255, 0.88);
    transform: rotate(45deg);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease, border-color 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow::after {
    transform: rotate(225deg);
    border-color: rgba(255, 255, 255, 1);
}

/* 无下拉的一级导航：占位宽度与 .dropdown-arrow 一致，避免「专家团队」等项视觉偏窄 */
.nav-menu .nav-link-suffix {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 0;
    flex-shrink: 0;
    vertical-align: middle;
    visibility: hidden;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Banner区域 */
.banner-section {
    width: 100%;
    margin-top: 206px;
    margin-bottom: 6px;
    position: relative;
    overflow: visible;
    background: transparent;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.banner-carousel {
    position: relative;
    max-width: 1400px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #000;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.banner-link:hover {
    opacity: 0.9;
}

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

.banner-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.banner-prev,
.banner-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-prev:hover,
.banner-next:hover {
    background: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    justify-content: center;
    padding: 0 20px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.banner-dot.active {
    background: var(--bg-white);
    transform: scale(1.2);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero区域 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -2;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--bg-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-block {
    width: 100%;
}

/* 章节标题 */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 服务区域 */
.services {
    padding: 50px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-thumb {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bg-soft);
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.service-card:hover .service-thumb img {
    transform: scale(1.04);
}

.service-card-inner {
    padding: 28px 28px 36px;
}

.service-card-inner .service-title {
    margin-top: 0;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    margin-left: 5px;
}

/* 专家团队 */
.experts {
    padding: 50px 0;
    background: var(--bg-light);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.expert-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.expert-avatar {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 专家介绍图为横版图文合成，圆形/ cover 会裁切文字；长方形 + contain 完整展示 */
.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.avatar-placeholder {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.expert-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.expert-title {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.expert-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    margin-top: auto;
    padding-top: 15px;
}

.expert-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 8px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 14px;
    line-height: 1;
}

.expert-link.expert-detail {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.expert-link.expert-detail:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.expert-link.expert-appointment {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.expert-link.expert-appointment:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.section-footer {
    text-align: center;
}

/* 特色功能 */
.features {
    padding: 50px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 在线咨询 */
.consultation {
    padding: 100px 0;
    background: var(--bg-light);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.consultation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

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

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 预约挂号 */
.appointment {
    padding: 100px 0;
    background: var(--bg-white);
}

.appointment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.method-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.method-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #6b8dd6 50%, #8e44ad 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    max-width: min(96vw, 1480px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2.1fr 1.05fr 0.85fr 1fr;
        gap: 36px 40px;
    }
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom > p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 0.65em;
    row-gap: 0.35em;
    margin: 0;
}

.footer-bottom .footer-beian-link + .footer-beian-link {
    margin-inline-start: 0.75rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-beian-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    line-height: 1;
}

.footer-bottom .footer-beian-icp-label {
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-bottom .footer-beian-link .footer-beian-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin: 0;
    display: block;
    vertical-align: middle;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-contact li div {
    flex: 1;
    line-height: 1.8;
}

.footer-contact li strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hospital-scenery {
    margin-top: 10px;
}

.scenery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.scenery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
}

.scenery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scenery-item:hover img {
    transform: scale(1.1);
}

.scenery-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* 桌面端导航菜单确保显示 */
@media (min-width: 969px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu-row {
        display: block !important;
        visibility: visible !important;
    }
    
    .nav-menu-row .nav-container {
        display: flex !important;
    }
}

/* 响应式设计 */
@media (max-width: 968px) {
    .navbar > .nav-container {
        padding: 0 !important;
    }

    .nav-logo-row {
        padding: 15px 0;
    }
    
    .nav-logo img {
        max-height: 70px;
    }
    
    .nav-menu-row .nav-container {
        flex-direction: row !important;
        justify-content: flex-end;
        min-height: 52px;
        padding: 0 0 0 20px;
    }

    .nav-menu-row {
        overflow: hidden;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 0;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.88) 0%,
            rgba(118, 75, 162, 0.88) 25%,
            rgba(107, 141, 214, 0.88) 50%,
            rgba(142, 68, 173, 0.88) 75%,
            rgba(102, 126, 234, 0.88) 100%
        ) !important;
        background-size: 200% 200%;
        flex-direction: column !important;
        padding: 100px 20px 40px;
        transition: opacity 0.25s ease;
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
        gap: 5px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    #navMenu:not(.active) {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        color: rgba(255, 255, 255, 0.95);
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .nav-link.active {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        font-weight: 700;
        border-left: 4px solid #ffffff;
        padding-left: 16px !important;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px !important;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active::before {
        display: none;
    }
    
    .nav-link:not(.nav-cta):hover {
        color: #ffffff !important;
        text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-link.active:not(.nav-cta):hover {
        text-shadow: none;
    }
    
    .nav-cta {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .banner-section {
        margin-top: 120px;
        padding: 0 10px;
    }
    
    .banner-carousel {
        height: 300px;
        border-radius: 8px;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .banner-controls {
        padding: 0 15px;
    }
    
    .banner-dots {
        bottom: 10px;
    }

    .nav-menu.active {
        display: flex !important;
        height: 100vh !important;
        padding: 100px 20px 40px !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        -webkit-tap-highlight-color: transparent;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 18, 36, 0.38);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.22s ease, visibility 0.22s ease;
        z-index: 998;
    }

    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .consultation-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 30px;
    }
    
    .scenery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services,
    .experts,
    .features,
    .faq-preview,
    .knowledge {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .banner-section {
        margin-top: 100px;
    }
    
    .banner-carousel {
        height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
    
    .scenery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .experts-grid,
    .features-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 0;
    }

    .service-card-inner {
        padding: 22px 20px 28px;
    }

    .expert-card,
    .feature-card,
    .knowledge-card {
        padding: 25px 20px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services,
    .experts,
    .features,
    .faq-preview,
    .knowledge {
        padding: 30px 0;
    }
    
    
    .service-title,
    .expert-name,
    .feature-title {
        font-size: 18px;
    }
    
    .expert-title {
        font-size: 14px;
    }
}

/* 健康科普区域 */
.knowledge {
    padding: 100px 0;
    background: var(--bg-white);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.knowledge-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.knowledge-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.knowledge-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.knowledge-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.knowledge-title a:hover {
    color: var(--primary-color);
}

.knowledge-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.knowledge-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.knowledge-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: margin-left 0.3s ease;
}

.knowledge-link:hover {
    margin-left: 5px;
}

/* FAQ预览区域 */
.faq-preview {
    padding: 50px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: margin-left 0.3s ease;
}

.faq-link:hover {
    margin-left: 5px;
}

/* 文章页面 */
.article-page {
    padding-top: 200px;
    background: var(--bg-light);
    min-height: 100vh;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

/* 专家团队/科室/预约等：主区域为 .article-page > .container，无白盒 article 的顶 padding，面包屑易贴顶栏；不提高全局 article-page padding-top */
.article-page > .container {
    padding-top: 24px;
}

/* 内页顶区：极简排版，无侧条/标题下粗线/面包屑胶囊 */
.breadcrumb {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(26, 39, 68, 0.42);
    letter-spacing: 0.04em;
}

ol.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    list-style: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

ol.breadcrumb li {
    display: inline-flex;
    align-items: baseline;
}

ol.breadcrumb li + li::before {
    content: '/';
    margin: 0 0.45em;
    color: rgba(26, 39, 68, 0.28);
    font-weight: 400;
}

.breadcrumb a {
    color: #5a6d82;
    text-decoration: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    background: none;
}

.breadcrumb span {
    color: #1e2d3d;
    font-weight: 600;
    margin-left: 0;
}

.article-header {
    position: relative;
    margin-bottom: 36px;
    padding: 0 0 22px 0;
    border-bottom: none;
    border-radius: 0;
    background: none;
}

.article-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 102, 204, 0) 0%,
        rgba(0, 102, 204, 0.22) 22%,
        rgba(0, 168, 232, 0.35) 50%,
        rgba(0, 102, 204, 0.22) 78%,
        rgba(0, 102, 204, 0) 100%
    );
}

.article-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.05rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 8px 0;
    padding: 0;
    color: #0f1f33;
    line-height: 1.22;
    display: block;
}

.article-header .section-subtitle {
    margin: 0;
    max-width: 52ch;
    font-size: 15px;
    line-height: 1.65;
    color: #5c6b7d;
    text-align: left;
    font-weight: 400;
}

.article-header .article-subtitle {
    margin: 8px 0 0 0;
    max-width: 62ch;
    font-size: 15px;
    line-height: 1.65;
    color: #5c6b7d;
    text-align: left;
    font-weight: 400;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #8b96a8;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.article-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content .article-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 1.25rem 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.25rem;
}

.article-content .article-figure {
    margin: 1.5rem 0 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-content .article-figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.article-content section {
    margin-bottom: 50px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-primary);
}

.article-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--text-primary);
}

.article-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.article-content section > p:first-of-type {
    text-indent: 2em;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-content strong {
    font-weight: 700;
    color: var(--text-primary);
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--primary-color);
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.related-articles {
    margin-bottom: 30px;
}

.related-articles h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 12px;
}

.related-articles a {
    color: var(--primary-color);
    text-decoration: none;
    transition: margin-left 0.3s ease;
}

.related-articles a:hover {
    margin-left: 5px;
}

.article-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ页面（与首页 Banner 主区同宽 1400px） */
.faq-page > .container {
    max-width: 1400px;
}

.faq-page {
    padding-top: 200px;
    background: var(--bg-light);
    min-height: 100vh;
    padding-bottom: 60px;
}

.faq-header {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 40px 20px 0;
    text-align: center;
}

.faq-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.faq-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-intro a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0 20px;
}

.category-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.category-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section {
    margin-bottom: 30px;
}

.faq-section .faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.faq-section .faq-question {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.faq-section .faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-section .faq-answer p {
    margin-bottom: 15px;
}

.faq-section .faq-answer ul,
.faq-section .faq-answer ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.faq-section .faq-answer li {
    margin-bottom: 8px;
}

.faq-section .faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-section .faq-answer a:hover {
    text-decoration: underline;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

.faq-footer {
    max-width: 100%;
    margin: 60px auto 0;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 15px;
    text-align: center;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.faq-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* 联系页面样式 */
.contact-info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}

.contact-info-card--primary {
    background: linear-gradient(135deg, #f5f9ff 0%, #eef4ff 100%);
    border: 1px solid rgba(56, 111, 218, 0.14);
}

.contact-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.contact-info-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(56, 111, 218, 0.12);
    color: #2c5cab;
    font-size: 12px;
    font-weight: 600;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.online-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.online-services .service-item .btn {
    margin-top: auto;
}

/* 联系我们页：在线服务按钮底边防裁切 */
.online-services .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    box-sizing: border-box;
    min-height: 52px;
    padding: 14px 32px 15px;
}

.online-services .btn-outline {
    border: none;
    background-color: var(--bg-white);
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.online-services .btn-outline:hover {
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.map-container {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.map-container--modern {
    padding: 26px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6fc 100%);
    border: 1px solid rgba(37, 85, 176, 0.12);
}

.map-panel {
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid rgba(37, 85, 176, 0.1);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.map-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #2555b0;
    background: rgba(37, 85, 176, 0.1);
    margin-bottom: 12px;
}

.map-frame-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(37, 85, 176, 0.16);
}

.map-frame-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
    filter: saturate(1.06) contrast(1.02);
}

.map-pulse {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    right: 18%;
    top: 46%;
    background: rgba(255, 60, 60, 0.75);
    box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.45);
    animation: mapPulse 1.8s ease-out infinite;
    pointer-events: none;
}

@keyframes mapPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.45);
    }
    80% {
        box-shadow: 0 0 0 20px rgba(255, 60, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0);
    }
}

.map-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.map-action-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    min-height: 40px;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 999px;
    border: 2px solid rgba(37, 85, 176, 0.28);
    border-bottom: 2px solid rgba(37, 85, 176, 0.28);
    background: var(--bg-white);
    color: #1f4fa8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-decoration-line: none;
    background-clip: padding-box;
    transition: all 0.2s ease;
}

.article-content a.map-action-chip {
    border-bottom: 2px solid rgba(37, 85, 176, 0.28) !important;
}

.map-action-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 85, 176, 0.45);
    border-bottom-color: rgba(37, 85, 176, 0.45);
    box-shadow: var(--shadow-sm);
}

.article-content a.map-action-chip:hover {
    border-bottom: 2px solid rgba(37, 85, 176, 0.45) !important;
}

/* 覆盖 .article-content a 的默认下划线边框逻辑，避免圆角按钮底边缺口 */
.article-content .map-actions .map-action-chip,
.article-content .map-actions .map-action-chip:hover {
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    perspective: 1000px;
}

.route-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.94) 100%);
    border: 1px solid rgba(87, 128, 201, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(30, 65, 130, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: routeCardFadeIn 0.6s ease both;
}

.route-card:nth-child(2) { animation-delay: 0.08s; }
.route-card:nth-child(3) { animation-delay: 0.14s; }
.route-card:nth-child(4) { animation-delay: 0.2s; }

.route-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -140%;
    width: 60%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(113, 161, 255, 0.2), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.route-card::after {
    content: "";
    position: absolute;
    right: -22px;
    top: -22px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(95, 146, 241, 0.22), rgba(95, 146, 241, 0));
    pointer-events: none;
}

.route-card:hover {
    transform: translateY(-6px) rotateX(1deg);
    border-color: rgba(60, 117, 223, 0.36);
    box-shadow: 0 16px 36px rgba(39, 80, 156, 0.15);
}

.route-card:hover::before {
    left: 125%;
}

.route-card h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: linear-gradient(135deg, rgba(69, 124, 228, 0.18), rgba(69, 124, 228, 0.08));
    box-shadow: inset 0 0 0 1px rgba(69, 124, 228, 0.16);
}

.route-summary {
    color: #58708f;
    font-size: 14px;
    margin-bottom: 10px;
}

.route-card ul {
    margin-bottom: 0;
}

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

@media (max-width: 900px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

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

    .map-frame-wrap iframe {
        height: 300px;
    }

    .about-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-tech-list {
        grid-template-columns: 1fr;
    }

    .honor-feed-grid,
    .honor-pillars,
    .honor-news-grid {
        grid-template-columns: 1fr;
    }
}

.map-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

/* 医院简介页现代化模块 */
.about-hero-panel {
    position: relative;
    background: linear-gradient(135deg, rgba(237, 244, 255, 0.95) 0%, rgba(246, 250, 255, 0.95) 100%);
    border: 1px solid rgba(90, 138, 226, 0.18);
    border-radius: 16px;
    padding: 24px 24px 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(44, 86, 162, 0.08);
    animation: aboutFadeUp 0.55s ease both;
}

.about-hero-panel::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 155, 255, 0.28) 0%, rgba(100, 155, 255, 0) 70%);
    pointer-events: none;
}

.about-hero-panel__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #285cb8;
    background: rgba(80, 132, 223, 0.12);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.about-hero-panel__media {
    margin: 0 0 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(88, 130, 204, 0.2);
    box-shadow: 0 10px 24px rgba(44, 86, 162, 0.12);
}

.about-hero-panel__media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-stat-grid {
    margin: 8px 0 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-stat-card {
    background: #fff;
    border: 1px solid rgba(88, 130, 204, 0.18);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(53, 93, 166, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 22px rgba(53, 93, 166, 0.14);
}

.about-stat-card__value {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #224f9f;
}

.about-stat-card__unit {
    font-size: 14px;
    margin-left: 3px;
    font-weight: 700;
    color: #4f6c99;
}

.about-stat-card__label {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #607694;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 18px;
}

.about-feature-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(82, 125, 197, 0.17);
    border-radius: 12px;
    padding: 16px 16px 12px;
    box-shadow: 0 6px 16px rgba(45, 78, 140, 0.08);
    overflow: hidden;
}

.about-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4f86e0 0%, #7ca8ef 100%);
}

.about-feature-card h3 {
    margin-top: 0;
    font-size: 19px;
}

.about-tech-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    padding-left: 20px;
}

.article-content a.about-honor-link {
    display: inline-block;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    font-weight: 700;
}

.about-timeline {
    position: relative;
    margin-top: 6px;
    padding-left: 22px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(180deg, rgba(82, 132, 219, 0.6), rgba(82, 132, 219, 0.12));
}

.about-timeline__item {
    position: relative;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid rgba(83, 126, 201, 0.16);
    border-radius: 12px;
    padding: 14px 16px;
}

.about-timeline__item::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f86e0;
    box-shadow: 0 0 0 3px rgba(79, 134, 224, 0.18);
}

.about-timeline__item h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

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

/* 医院荣誉页现代化模块 */
.honor-hero-panel {
    position: relative;
    background: linear-gradient(145deg, rgba(236, 244, 255, 0.96), rgba(247, 250, 255, 0.96));
    border: 1px solid rgba(86, 134, 216, 0.2);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 14px 34px rgba(32, 72, 142, 0.1);
    overflow: hidden;
    animation: honorFadeUp 0.55s ease both;
}

.honor-hero-panel::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 154, 255, 0.3), rgba(96, 154, 255, 0));
    pointer-events: none;
}

.honor-hero-panel__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(65, 120, 220, 0.14);
    color: #275ab5;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 6px;
}

.honor-hero-panel h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    background: linear-gradient(120deg, #1f4d99 0%, #3f7de0 55%, #7fa8ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 4px;
    margin-bottom: 14px;
}

.honor-hero-panel p {
    margin-bottom: 12px;
    color: #516987;
}

.honor-highlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.honor-highlight-chips span {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(73, 123, 212, 0.22);
    background: #fff;
    color: #355f9f;
    font-size: 11px;
    font-weight: 600;
}

.honor-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.honor-news-card {
    position: relative;
    display: block;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(84, 125, 196, 0.2);
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(43, 76, 136, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.honor-news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.06) contrast(1.06) brightness(1.03);
    transform: scale(1);
    transition: transform 0.24s ease;
}

.honor-news-card__tag {
    display: inline-flex;
    margin: 12px 14px 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(73, 123, 212, 0.12);
    color: #2e5fb4;
    font-weight: 700;
    font-size: 12px;
}

.honor-news-card h3 {
    margin: 0 14px 16px;
    font-size: 18px;
    line-height: 1.45;
    color: var(--text-primary);
}

.honor-news-card:hover {
    border-color: rgba(73, 123, 212, 0.4);
    box-shadow: 0 14px 30px rgba(39, 73, 136, 0.14);
}

.honor-news-card:hover img {
    transform: scale(1.03);
}

.honor-detail-content img,
.content-plain-import img {
    max-width: 100%;
    height: auto !important;
    border-radius: 10px;
    margin: 10px auto;
    display: block;
    box-shadow: 0 6px 18px rgba(30, 58, 112, 0.12);
}

/* 文字可铺满版心，但正文单图保持阅读友好的宽度 */
.honor-detail-content p > img,
.content-plain-import p > img {
    width: min(100%, 760px);
}

/* 荣誉详情富文本常带行内 background:white，统一与页面底色融合 */
.honor-detail-content p,
.honor-detail-content h4,
.honor-detail-content span,
.content-plain-import p,
.content-plain-import h4,
.content-plain-import span {
    background: transparent !important;
}

/* 荣誉详情富文本字号不一，统一正文排版 */
.honor-detail-content section,
.content-plain-import section {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-primary);
}

.content-plain-import {
    max-width: none;
    margin: 0 auto;
}

.content-plain-import p,
.content-plain-import h4 {
    margin: 0 0 18px;
    text-align: left;
    color: #24364f;
}

.honor-detail-content p,
.content-plain-import p {
    text-indent: 2em !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.content-plain-import * {
    color: inherit !important;
}

.content-plain-import a {
    color: var(--primary-color) !important;
}

.content-plain-import__lead {
    font-size: 1.08rem !important;
    color: #1d2f49 !important;
}

.content-plain-import__media {
    text-align: center !important;
}

.content-plain-import__meta {
    font-size: 14px !important;
    color: #6d7d94 !important;
    text-align: right !important;
}

.content-plain-import img {
    margin: 16px auto;
}

.content-plain-import__figure {
    margin: 18px auto 14px;
    max-width: 760px;
}

.content-plain-import__figure img {
    margin: 0 auto;
}

.content-plain-import__figcaption {
    margin-top: 10px;
    text-align: center;
    color: #6c7d95;
    font-size: 14px;
    line-height: 1.6;
}

.content-plain-import__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(900px, calc(100% - 140px));
    margin: 18px auto 12px;
}

.content-plain-import__gallery-item {
    margin: 0;
}

.content-plain-import__gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

@media (max-width: 760px) {
    .content-plain-import__gallery {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

.honor-detail-content p,
.honor-detail-content h4,
.honor-detail-content span,
.honor-detail-content strong,
.content-plain-import p,
.content-plain-import h4,
.content-plain-import span,
.content-plain-import strong {
    font-size: inherit !important;
    line-height: inherit !important;
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* 荣誉详情页返回按钮：避免被全局链接样式吃掉底边 */
.honor-detail-content .btn.btn-outline,
.honor-detail-content .btn.btn-outline:hover {
    border-bottom: 2px solid var(--primary-color) !important;
    line-height: 1.2;
    box-sizing: border-box;
}

.article-content section > h2 {
    position: relative;
}

.article-content section > h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 86px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f86e0 0%, rgba(79, 134, 224, 0) 100%);
}

.honor-feed-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(84, 125, 196, 0.18);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(43, 76, 136, 0.08);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.honor-feed-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 52%;
    transform: skewX(-16deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(111, 160, 245, 0.16), rgba(255, 255, 255, 0));
    transition: left 0.5s ease;
}

.honor-feed-card:hover {
    transform: translateY(-5px);
    border-color: rgba(73, 123, 212, 0.4);
    box-shadow: 0 14px 30px rgba(39, 73, 136, 0.14);
}

.honor-feed-card:hover::before {
    left: 120%;
}

.honor-feed-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6b7f9d;
    font-size: 12px;
}

.honor-feed-card__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(73, 123, 212, 0.12);
    color: #2e5fb4;
    font-weight: 700;
}

.honor-feed-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.honor-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.honor-pillar-card {
    background: #fff;
    border: 1px solid rgba(86, 130, 204, 0.18);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(45, 78, 140, 0.08);
}

.honor-pillar-card h3 {
    margin-top: 0;
}

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

/* 专家页面样式 */
.experts-page {
    padding: 40px 0;
}

.experts-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.expert-specialty {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
}

/* 科室页面样式 */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.department-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.department-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.department-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.department-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.department-card h3 a:hover {
    color: var(--primary-color);
}

.department-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
}

.department-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: margin-left 0.3s ease;
    margin-top: auto;
}

.department-link:hover {
    margin-left: 5px;
}

/* 咨询和预约页面样式 */
.consultation-page,
.appointment-page {
    padding: 40px 0;
}

.appointment-page {
    position: relative;
}

.appointment-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(620px 220px at 10% 0%, rgba(80, 138, 230, 0.12), transparent 68%),
        radial-gradient(520px 200px at 90% 6%, rgba(133, 105, 232, 0.12), transparent 66%);
}

.consultation-page .consultation-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.consultation-page .consultation-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.consultation-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.consultation-page .form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.consultation-page .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.info-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.appointment-page .appointment-methods {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.appointment-page .method-side-stack {
    display: grid;
    gap: 20px;
}

.appointment-page .method-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(87, 132, 212, 0.14);
    box-shadow: 0 14px 32px rgba(34, 73, 140, 0.1);
    backdrop-filter: blur(2px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.appointment-page .method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 132, 224, 0.28);
    box-shadow: 0 18px 40px rgba(34, 73, 140, 0.16);
}

.appointment-page .method-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, rgba(79, 132, 224, 0.18), rgba(122, 167, 242, 0.1));
    box-shadow: inset 0 0 0 1px rgba(79, 132, 224, 0.12);
}

.appointment-page .method-card-horizontal {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    text-align: left;
    align-items: start;
    padding: 26px 24px;
    min-height: 245px;
}

.appointment-page .method-card-horizontal .method-icon {
    margin: 0;
}

.appointment-page .method-card-horizontal__content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.appointment-page .method-card-horizontal h3 {
    margin-top: 4px;
}

.appointment-page .method-card-horizontal .phone-number {
    margin: 10px 0 12px;
}

.appointment-page .method-card-horizontal .method-note {
    margin-top: auto;
}

.appointment-page .method-card form {
    text-align: left;
    margin-top: 20px;
}

.appointment-page .form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #2a466b;
}

.appointment-page .form-group input,
.appointment-page .form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(119, 146, 187, 0.36);
    background: #fff;
    color: #1d3556;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.appointment-page .form-group input:focus,
.appointment-page .form-group select:focus {
    outline: none;
    border-color: #4e85df;
    box-shadow: 0 0 0 3px rgba(78, 133, 223, 0.16);
    transform: translateY(-1px);
}

.appointment-page .btn.btn-block,
.appointment-page .btn.btn-outline {
    position: relative;
    overflow: hidden;
}

.appointment-page .btn.btn-block::before,
.appointment-page .btn.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 52%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    transition: left 0.45s ease;
}

.appointment-page .btn.btn-block:hover::before,
.appointment-page .btn.btn-outline:hover::before {
    left: 130%;
}

.appointment-page .phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.appointment-page .phone-number a {
    color: var(--primary-color);
    text-decoration: none;
}

.method-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

.appointment-notes {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(92, 132, 202, 0.16);
    position: relative;
    z-index: 1;
}

.appointment-notes h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.appointment-notes ul {
    list-style: none;
    padding: 0;
}

.appointment-notes li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.appointment-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.guide-flow-section {
    margin-top: 34px;
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
    border: 1px solid rgba(81, 131, 219, 0.16);
}

.guide-flow-note {
    color: #5e718c;
    margin-bottom: 14px;
}

.guide-flow-image-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(81, 131, 219, 0.2);
    box-shadow: 0 10px 24px rgba(38, 78, 146, 0.14);
}

.guide-flow-image {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: block;
    height: auto;
}

@media (max-width: 968px) {
    .consultation-page .consultation-wrapper {
        grid-template-columns: 1fr;
    }

    .appointment-page .appointment-methods {
        grid-template-columns: 1fr;
    }

    .appointment-page .method-card-horizontal {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        min-height: auto;
    }

    .appointment-page .method-card-horizontal .method-icon {
        margin: 0 auto;
    }

    .appointment-page .method-card-horizontal__content {
        align-items: center;
    }

    .appointment-page .method-card-horizontal .method-note {
        margin-top: 12px;
    }
}

/* 技术详情模态框样式 */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.service-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.service-detail h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-section ul,
.detail-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.detail-section ul li,
.detail-section ol li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.detail-section ul li strong,
.detail-section ol li strong {
    color: #333;
    font-weight: 600;
}

.expert-detail .expert-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.expert-detail .expert-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.expert-detail .expert-meta {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.expert-intro-wrap {
    margin: 0;
}

.expert-intro-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .service-detail h2 {
        font-size: 24px;
    }

    .detail-section h3 {
        font-size: 18px;
    }

    .expert-actions {
        flex-direction: column;
        gap: 8px;
    }

    .expert-link {
        width: 100%;
        text-align: center;
    }
}



    50% { box-shadow: 0 10px 26px rgba(89, 105, 255, 0.48), 0 0 16px rgba(0, 220, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45); }
}


/* 医院品牌内容合集展示 */
.brand-doc-list {
    display: grid;
    gap: 12px;
    padding-left: 0;
    list-style: none;
}

.brand-doc-list a {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.35);
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.12), rgba(129, 102, 255, 0.08));
    color: #1458b8;
    font-weight: 600;
    text-decoration: none;
}

.brand-doc-list a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.2);
}

.brand-media-grid {
    display: grid;
    gap: 20px;
    margin-top: 14px;
}

.brand-image-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.brand-video-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.brand-media-card {
    margin: 0;
    background: var(--bg-white);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(0, 40, 110, 0.12);
    border: 1px solid rgba(74, 158, 255, 0.16);
}

.brand-media-card img,
.brand-media-card video {
    width: 100%;
    display: block;
    border-radius: 10px;
    background: #000;
}

.brand-media-card figcaption {
    margin-top: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}


/* 品牌页三大分区炫光效果 */
.brand-hub-content {
    display: grid;
    gap: 26px;
}

.brand-zone {
    position: relative;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(7, 38, 92, 0.05) 0%, rgba(83, 51, 205, 0.06) 48%, rgba(179, 48, 255, 0.07) 100%);
    border: 1px solid rgba(80, 132, 255, 0.2);
    box-shadow: 0 12px 26px rgba(20, 58, 120, 0.12);
    overflow: hidden;
}

.brand-zone::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -20%;
    width: 55%;
    height: 300%;
    transform: rotate(18deg);
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: zoneSweep 4.8s linear infinite;
    pointer-events: none;
}

.brand-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 14px;
    align-items: stretch;
}

.brand-news-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    border-radius: 14px;
    padding: 16px;
    background: linear-gradient(160deg, rgba(244, 248, 252, 0.98), rgba(228, 236, 248, 0.92));
    border: 1px solid rgba(255, 170, 120, 0.35);
    box-shadow: 0 8px 20px rgba(36, 81, 155, 0.1);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-news-card:hover {
    border-color: rgba(255, 140, 70, 0.55);
    box-shadow:
        0 8px 24px rgba(36, 81, 155, 0.12),
        0 0 0 1px rgba(255, 150, 80, 0.2),
        0 0 28px rgba(255, 120, 50, 0.18);
}

/* 首页品牌精选区块 */
.home-brand-spotlight {
    position: relative;
    padding: 56px 0 64px;
    overflow: hidden;
}

.home-brand-spotlight__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(99, 102, 241, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 30%, rgba(249, 115, 22, 0.14), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(56, 189, 248, 0.1), transparent 45%),
        linear-gradient(165deg, #e8eef8 0%, #dde8f6 40%, #ecf2fb 100%);
    pointer-events: none;
}

.home-brand-spotlight__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    background-size: 200% 100%;
    animation: homeBrandShimmer 14s ease-in-out infinite;
    opacity: 0.45;
}

@keyframes homeBrandShimmer {
    0%,
    100% {
        background-position: 120% 0;
    }
    50% {
        background-position: -20% 0;
    }
}

.home-brand-spotlight__inner {
    position: relative;
    z-index: 1;
}

.home-brand-spotlight__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.home-brand-spotlight__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #f97316 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 8px 28px rgba(99, 102, 241, 0.35),
        0 0 40px rgba(249, 115, 22, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-brand-spotlight__cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 12px 36px rgba(99, 102, 241, 0.45),
        0 0 48px rgba(249, 115, 22, 0.28);
}

.home-brand-spotlight__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .home-brand-spotlight__layout {
        grid-template-columns: 1fr;
    }
}

.home-brand-spotlight__panel {
    border-radius: 20px;
    padding: 22px 20px 24px;
    background: rgba(244, 248, 252, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.home-brand-spotlight__panel:hover {
    box-shadow:
        0 12px 40px rgba(99, 102, 241, 0.12),
        0 0 0 1px rgba(249, 115, 22, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.home-brand-spotlight__panel--video {
    background: linear-gradient(160deg, rgba(240, 246, 252, 0.9), rgba(226, 236, 248, 0.75));
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.home-brand-spotlight__panel--video .home-brand-video-grid {
    flex: 1;
    min-height: 0;
}

.home-brand-spotlight__panel--video .home-brand-spotlight__panel-head {
    margin-bottom: 10px;
}

.home-brand-spotlight__panel-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.home-brand-spotlight__panel-head h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.home-brand-spotlight__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #6366f1;
    padding: 4px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.15);
}

.home-brand-spotlight__label--video {
    color: #ea580c;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(251, 146, 60, 0.08));
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.18);
}

.home-brand-spotlight__empty {
    margin: 0;
    padding: 16px;
    font-size: 14px;
    color: #64748b;
}

.home-brand-news-grid {
    gap: 12px;
    grid-template-columns: 1fr;
}

.brand-news-card--home {
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(242, 248, 252, 0.98), rgba(232, 240, 250, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.brand-news-card--home .brand-news-cover img {
    height: 140px;
}

.brand-news-card--home h3 {
    font-size: 15px;
    -webkit-line-clamp: 2;
}

.brand-news-card--home > p {
    font-size: 13px;
    -webkit-line-clamp: 2;
}

.home-brand-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    align-content: start;
}

@media (max-width: 639px) {
    .home-brand-video-grid {
        grid-template-columns: 1fr;
    }
}

/* 品牌页视频（无 home 修饰） */
.brand-media-card .home-brand-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.brand-media-card .home-brand-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-brand-video-card {
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: visible;
    border-radius: 14px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.1);
    background: rgba(15, 23, 42, 0.04);
}

.home-brand-video-card .home-brand-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #0f172a;
}

.home-brand-video-card .home-brand-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-brand-video-title {
    margin: 0;
    padding: 8px 10px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #334155;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 2.8em;
}

/* 首页品牌区按钮：与品牌页 article 内链同样式 */
.home-brand-spotlight .brand-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    align-self: flex-end;
    padding: 9px 18px;
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.2s ease;
}

.home-brand-spotlight .brand-news-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.22);
}

.home-brand-spotlight .brand-news-link--disabled {
    opacity: 0.65;
    cursor: not-allowed;
    color: #6b7280;
    border-color: #c5cad6;
    background: var(--bg-soft);
}

.home-brand-spotlight .brand-news-link--disabled:hover {
    transform: none;
    background: var(--bg-soft);
    color: #6b7280;
}

/* 覆盖 .article-content a 的链接色，避免蓝字叠蓝底看不清 */
.article-content .brand-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    align-self: flex-end;
    padding: 9px 18px;
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-bottom: 1.5px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
        box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-font-smoothing: antialiased;
}

.article-content .brand-news-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.22);
}

.brand-glow-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-glow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(68, 109, 210, 0.25), 0 0 18px rgba(106, 92, 255, 0.18);
}

@keyframes zoneSweep {
    0% { left: -30%; }
    100% { left: 140%; }
}


/* 新闻区门户风格升级 */
.brand-news-cover {
    display: block;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.brand-news-cover img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.brand-news-card:hover .brand-news-cover img {
    transform: scale(1.06);
}

.brand-news-cover--static {
    cursor: default;
}

.article-content .brand-news-link--disabled {
    opacity: 0.65;
    cursor: not-allowed;
    color: #6b7280;
    border-color: #c5cad6;
    background: var(--bg-soft);
}

.article-content .brand-news-link--disabled:hover {
    transform: none;
    background: var(--bg-soft);
    color: #6b7280;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.brand-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.brand-news-tag {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6b1a 45%, #e85d00 100%);
    border: 1px solid rgba(255, 220, 180, 0.65);
    box-shadow:
        0 0 10px rgba(255, 140, 60, 0.85),
        0 0 22px rgba(255, 100, 30, 0.45),
        0 0 36px rgba(255, 120, 40, 0.28),
        0 4px 12px rgba(200, 70, 0, 0.35);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}

.brand-news-card:hover .brand-news-tag {
    box-shadow:
        0 0 14px rgba(255, 160, 80, 0.95),
        0 0 28px rgba(255, 110, 40, 0.55),
        0 0 44px rgba(255, 130, 50, 0.35),
        0 5px 16px rgba(200, 70, 0, 0.4);
}

.brand-news-time {
    font-size: 12px;
    color: #5f6b85;
    font-weight: 600;
}

.brand-news-card h3 {
    margin: 8px 0 6px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 700;
    color: #1a2744;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-news-card > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #5f6b85;
    flex: 1 1 auto;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reveal-card {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* 第三篇图文双栏布局 */
.news-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
    align-items: start;
}

.news-split-text p {
    margin-bottom: 0;
}

.news-split-media {
    margin: 0;
}

@media (max-width: 992px) {
    .news-split-layout {
        grid-template-columns: 1fr;
    }
}


/* 医院品牌：与其它项同一套 hover / active，无额外装饰 */
.nav-link.nav-brand-link {
    animation: none;
}

/* 健康科普四个页面：科技感主题升级 */
body.knowledge-theme-page {
    background:
        radial-gradient(circle at 12% 14%, rgba(92, 203, 255, 0.16), transparent 38%),
        radial-gradient(circle at 88% 0%, rgba(112, 118, 255, 0.14), transparent 35%),
        linear-gradient(180deg, #f6f9ff 0%, #f4f8ff 42%, #f8fbff 100%);
}

body.knowledge-theme-page .article-page {
    position: relative;
    overflow: hidden;
}

body.knowledge-theme-page .article-page::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 188, 255, 0.2), rgba(52, 188, 255, 0));
    filter: blur(1px);
    pointer-events: none;
}

body.knowledge-theme-page .article-container {
    position: relative;
    border: 1px solid rgba(92, 132, 214, 0.16);
    border-radius: 24px;
    padding: clamp(22px, 3.8vw, 38px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.95));
    box-shadow:
        0 24px 56px rgba(26, 61, 126, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
}

body.knowledge-theme-page .article-header {
    margin-bottom: 30px;
    padding: 22px 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(90, 132, 218, 0.2);
    background: linear-gradient(135deg, rgba(232, 243, 255, 0.92), rgba(238, 246, 255, 0.82));
    box-shadow: 0 16px 38px rgba(39, 86, 168, 0.12);
}

body.knowledge-theme-page .article-header::after {
    height: 2px;
    background: linear-gradient(90deg, rgba(44, 161, 255, 0), rgba(44, 161, 255, 0.7), rgba(123, 103, 255, 0));
}

body.knowledge-theme-page .article-header h1 {
    background: linear-gradient(96deg, #123d84 0%, #1362c0 40%, #4088f4 68%, #6f61f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 28px rgba(46, 111, 214, 0.2);
}

body.knowledge-theme-page .article-meta {
    flex-wrap: wrap;
    gap: 10px;
}

body.knowledge-theme-page .article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(90, 131, 215, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: #56719a;
    box-shadow: 0 8px 20px rgba(42, 88, 170, 0.08);
}

body.knowledge-theme-page .article-content .article-lead {
    border: 1px solid rgba(85, 155, 255, 0.24);
    border-left: 4px solid #3988f6;
    border-radius: 14px;
    padding: 16px 18px;
    background: linear-gradient(120deg, rgba(232, 244, 255, 0.92), rgba(245, 250, 255, 0.8));
    box-shadow: 0 14px 30px rgba(44, 88, 167, 0.11);
}

body.knowledge-theme-page .article-content section {
    margin-bottom: 22px;
    border: 1px solid rgba(88, 133, 217, 0.15);
    border-radius: 18px;
    padding: 20px 20px 14px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.95));
    box-shadow: 0 14px 32px rgba(30, 70, 145, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.knowledge-theme-page .article-content section:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 142, 252, 0.3);
    box-shadow: 0 20px 42px rgba(29, 79, 171, 0.14);
}

body.knowledge-theme-page .article-content h2 {
    margin-top: 0;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(89, 132, 210, 0.22);
    color: #163467;
}

body.knowledge-theme-page .article-content h3 {
    color: #1f4f95;
}

body.knowledge-theme-page .article-content h4 {
    color: #2f639f;
}

body.knowledge-theme-page .article-content ul,
body.knowledge-theme-page .article-content ol {
    padding-left: 24px;
}

body.knowledge-theme-page .article-content li {
    margin-bottom: 8px;
}

body.knowledge-theme-page .article-content .article-figure {
    border-radius: 16px;
    border: 1px solid rgba(102, 148, 224, 0.22);
    box-shadow: 0 16px 36px rgba(33, 76, 151, 0.16);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

body.knowledge-theme-page .article-content .article-figure:hover {
    transform: translateY(-4px) scale(1.008);
    box-shadow: 0 22px 46px rgba(31, 86, 173, 0.24);
}

body.knowledge-theme-page .article-content .article-figure img {
    transition: transform 0.42s ease, filter 0.42s ease;
    filter: saturate(1.06) contrast(1.03);
}

body.knowledge-theme-page .article-content .article-figure:hover img {
    transform: scale(1.03);
    filter: saturate(1.12) contrast(1.06);
}

body.knowledge-theme-page .related-articles {
    border: 1px solid rgba(85, 135, 220, 0.17);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(246, 251, 255, 0.9);
}

body.knowledge-theme-page .related-articles ul {
    margin-bottom: 0;
}

body.knowledge-theme-page .related-articles a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 2px;
}

body.knowledge-theme-page .related-articles a::before {
    content: '◈';
    font-size: 11px;
    color: #4f85d4;
}

@media (max-width: 767px) {
    body.knowledge-theme-page .article-container {
        border-radius: 18px;
        padding: 16px 14px;
    }

    body.knowledge-theme-page .article-header {
        border-radius: 14px;
        padding: 14px 12px;
    }

    body.knowledge-theme-page .article-content section {
        border-radius: 14px;
        padding: 14px 12px 10px;
    }
}

/* 健康科普页：科技视觉区 */
.knowledge-visual-strip {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.35fr);
    gap: 20px;
    margin: 0 0 24px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(85, 135, 221, 0.24);
    background: linear-gradient(145deg, rgba(231, 243, 255, 0.9), rgba(245, 250, 255, 0.86));
    box-shadow: 0 16px 36px rgba(29, 70, 147, 0.12);
}

.knowledge-visual-strip__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(93, 145, 229, 0.3);
    box-shadow: 0 12px 28px rgba(27, 77, 166, 0.18);
}

.knowledge-visual-strip__media img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.42s ease, filter 0.42s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.knowledge-visual-strip:hover .knowledge-visual-strip__media img {
    transform: scale(1.015);
    filter: saturate(1.08);
}

.knowledge-visual-strip__content h2 {
    margin: 8px 0 8px;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    color: #153c77;
    line-height: 1.35;
}

.knowledge-visual-strip__content p {
    margin: 0 0 14px;
    color: #4f6688;
}

.knowledge-visual-strip__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(79, 142, 245, 0.36);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(229, 243, 255, 0.95));
    color: #2a63b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 0 0 0 rgba(66, 148, 255, 0.35);
    animation: knowledgeBadgePulse 2.8s ease-in-out infinite;
}

.knowledge-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.knowledge-data-card {
    border-radius: 12px;
    border: 1px solid rgba(93, 139, 218, 0.25);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 10px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.knowledge-data-card strong {
    display: block;
    margin-bottom: 3px;
    color: #1c58aa;
    font-size: 18px;
    line-height: 1.2;
}

.knowledge-data-card span {
    font-size: 12px;
    color: #5b7294;
    line-height: 1.45;
}

@keyframes knowledgeBadgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(66, 148, 255, 0.24);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(66, 148, 255, 0);
    }
}

@media (max-width: 980px) {
    .knowledge-visual-strip {
        grid-template-columns: 1fr;
    }

    .knowledge-visual-strip__media img {
        min-height: 190px;
    }
}

@media (max-width: 640px) {
    .knowledge-data-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ 页面科技感增强 */
body.faq-theme-page .faq-page {
    background:
        radial-gradient(circle at 10% 8%, rgba(100, 194, 255, 0.18), transparent 32%),
        radial-gradient(circle at 92% 0%, rgba(115, 125, 255, 0.14), transparent 30%),
        linear-gradient(180deg, #f5f8ff 0%, #f1f6ff 46%, #f7faff 100%);
}

body.faq-theme-page .faq-header {
    padding-top: 28px;
    margin-bottom: 26px;
}

body.faq-theme-page .faq-header h1 {
    background: linear-gradient(96deg, #163e7f 0%, #1e67bc 42%, #3f87ed 74%, #6b63f2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 24px rgba(36, 92, 181, 0.2);
}

.faq-visual-strip {
    display: grid;
    grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.4fr);
    gap: 20px;
    margin: 0 20px 28px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(89, 137, 221, 0.25);
    background: linear-gradient(145deg, rgba(231, 243, 255, 0.9), rgba(246, 250, 255, 0.9));
    box-shadow: 0 16px 36px rgba(28, 71, 148, 0.12);
}

.faq-visual-strip__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(96, 145, 228, 0.28);
    box-shadow: 0 12px 30px rgba(26, 76, 165, 0.18);
}

.faq-visual-strip__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.42s ease, filter 0.42s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.faq-visual-strip:hover .faq-visual-strip__media img {
    transform: scale(1.015);
    filter: saturate(1.08);
}

.faq-visual-strip__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(76, 139, 241, 0.36);
    color: #2d67be;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(228, 242, 255, 0.96));
    box-shadow: 0 0 0 0 rgba(76, 139, 241, 0.32);
    animation: faqBadgePulse 2.8s ease-in-out infinite;
}

.faq-visual-strip__content h2 {
    margin: 9px 0 8px;
    font-size: clamp(1.18rem, 2.3vw, 1.48rem);
    color: #183f7a;
    line-height: 1.35;
}

.faq-visual-strip__content p {
    margin: 0 0 14px;
    color: #516988;
}

.faq-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.faq-metric-card {
    border-radius: 12px;
    border: 1px solid rgba(92, 139, 218, 0.25);
    background: rgba(255, 255, 255, 0.82);
    padding: 10px 10px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.faq-metric-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 18px;
    line-height: 1.2;
    color: #1d58ab;
}

.faq-metric-card span {
    font-size: 12px;
    line-height: 1.45;
    color: #5e7291;
}

body.faq-theme-page .category-btn {
    border-color: rgba(103, 145, 220, 0.26);
    box-shadow: 0 8px 18px rgba(35, 75, 147, 0.08);
}

body.faq-theme-page .category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(35, 80, 160, 0.14);
}

body.faq-theme-page .category-btn.active {
    box-shadow: 0 14px 30px rgba(38, 86, 167, 0.3);
}

body.faq-theme-page .faq-section .faq-item {
    border: 1px solid rgba(93, 137, 214, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 255, 0.92));
    box-shadow: 0 13px 30px rgba(32, 75, 148, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.faq-theme-page .faq-section .faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 142, 249, 0.32);
    box-shadow: 0 20px 40px rgba(33, 85, 172, 0.16);
}

body.faq-theme-page .faq-section .faq-question {
    color: #173a70;
    border-bottom-color: rgba(90, 131, 206, 0.24);
}

body.faq-theme-page .comparison-table {
    border-radius: 12px;
    overflow: hidden;
}

body.faq-theme-page .comparison-table th {
    background: linear-gradient(120deg, #2f72cc, #5f8fe6);
}

@keyframes faqBadgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 139, 241, 0.22);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 139, 241, 0);
    }
}

@media (max-width: 980px) {
    .faq-visual-strip {
        grid-template-columns: 1fr;
    }

    .faq-visual-strip__media img {
        min-height: 190px;
    }
}

@media (max-width: 680px) {
    .faq-metric-grid {
        grid-template-columns: 1fr;
    }

    .faq-visual-strip {
        margin: 0 12px 22px;
    }
}

/* 科室页面科技感增强 */
body.departments-theme-page .article-page {
    background:
        radial-gradient(circle at 12% 9%, rgba(92, 194, 255, 0.16), transparent 34%),
        radial-gradient(circle at 88% 0%, rgba(114, 126, 255, 0.13), transparent 32%),
        linear-gradient(180deg, #f6f9ff 0%, #f2f7ff 48%, #f8fbff 100%);
}

.department-visual-strip {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 20px;
    margin: 0 0 28px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(86, 136, 220, 0.24);
    background: linear-gradient(145deg, rgba(232, 244, 255, 0.92), rgba(245, 250, 255, 0.9));
    box-shadow: 0 16px 36px rgba(27, 72, 148, 0.12);
}

.department-visual-strip__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(97, 145, 226, 0.28);
    box-shadow: 0 12px 30px rgba(27, 78, 166, 0.18);
}

.department-visual-strip__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.42s ease, filter 0.42s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.department-visual-strip:hover .department-visual-strip__media img {
    transform: scale(1.015);
    filter: saturate(1.08);
}

.department-visual-strip__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(76, 139, 241, 0.36);
    color: #2d67be;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(228, 242, 255, 0.96));
    box-shadow: 0 0 0 0 rgba(76, 139, 241, 0.3);
    animation: deptBadgePulse 2.8s ease-in-out infinite;
}

.department-visual-strip__content h2 {
    margin: 9px 0 8px;
    font-size: clamp(1.18rem, 2.3vw, 1.48rem);
    color: #173f79;
    line-height: 1.35;
}

.department-visual-strip__content p {
    margin: 0 0 14px;
    color: #526a89;
}

.department-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.department-metric-card {
    border-radius: 12px;
    border: 1px solid rgba(92, 139, 218, 0.24);
    background: rgba(255, 255, 255, 0.82);
    padding: 10px 10px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.department-metric-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 18px;
    line-height: 1.2;
    color: #1d58ab;
}

.department-metric-card span {
    font-size: 12px;
    line-height: 1.45;
    color: #5e7291;
}

body.departments-theme-page .department-card {
    border: 1px solid rgba(93, 138, 214, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.93));
    box-shadow: 0 13px 30px rgba(32, 75, 148, 0.1);
}

body.departments-theme-page .department-card:hover {
    border-color: rgba(79, 142, 249, 0.32);
    box-shadow: 0 20px 42px rgba(33, 85, 172, 0.16);
}

body.departments-theme-page .department-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, rgba(79, 132, 224, 0.18), rgba(122, 167, 242, 0.1));
    box-shadow: inset 0 0 0 1px rgba(79, 132, 224, 0.12);
}

/* 专家页面科技感增强 */
body.experts-theme-page .article-page {
    background:
        radial-gradient(circle at 14% 10%, rgba(97, 194, 255, 0.16), transparent 34%),
        radial-gradient(circle at 86% 0%, rgba(125, 118, 255, 0.13), transparent 32%),
        linear-gradient(180deg, #f6f9ff 0%, #f2f7ff 48%, #f8fbff 100%);
}

.experts-visual-strip {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 20px;
    margin: 0 0 28px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(86, 136, 220, 0.24);
    background: linear-gradient(145deg, rgba(232, 244, 255, 0.92), rgba(245, 250, 255, 0.9));
    box-shadow: 0 16px 36px rgba(27, 72, 148, 0.12);
}

.experts-visual-strip__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(97, 145, 226, 0.28);
    box-shadow: 0 12px 30px rgba(27, 78, 166, 0.18);
}

.experts-visual-strip__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.42s ease, filter 0.42s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: brightness(1.08) saturate(1.04);
}

/* 头图统一：强二次元 v2 */
.knowledge-visual-strip__media,
.faq-visual-strip__media,
.department-visual-strip__media,
.experts-visual-strip__media,
.dept-visual-strip__media {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    animation: animeV3FrameJitter 1.9s steps(2, end) infinite;
}

.knowledge-visual-strip__media::before,
.faq-visual-strip__media::before,
.department-visual-strip__media::before,
.experts-visual-strip__media::before,
.dept-visual-strip__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 12%, rgba(112, 212, 255, 0.34), transparent 44%),
        radial-gradient(circle at 86% 82%, rgba(255, 96, 228, 0.24), transparent 42%),
        linear-gradient(140deg, rgba(94, 93, 255, 0.25), rgba(34, 219, 255, 0.18));
    mix-blend-mode: screen;
    opacity: 0.9;
    animation: animeV3RgbCyan 1.8s steps(2, end) infinite;
}

.knowledge-visual-strip__media::after,
.faq-visual-strip__media::after,
.department-visual-strip__media::after,
.experts-visual-strip__media::after,
.dept-visual-strip__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            112deg,
            rgba(255, 255, 255, 0.12) 0 2px,
            rgba(255, 255, 255, 0) 2px 9px
        ),
        linear-gradient(180deg, rgba(12, 22, 54, 0.03), rgba(12, 22, 54, 0.12));
    mix-blend-mode: soft-light;
    opacity: 0.78;
    animation: animeV3RgbMagenta 1.7s steps(2, end) infinite reverse;
}

.knowledge-visual-strip__media img,
.faq-visual-strip__media img,
.department-visual-strip__media img,
.experts-visual-strip__media img,
.dept-visual-strip__media img {
    position: relative;
    z-index: 0;
    filter:
        contrast(1.32)
        saturate(1.72)
        brightness(1.08)
        hue-rotate(-13deg)
        drop-shadow(-2px 0 0 rgba(51, 234, 255, 0.5))
        drop-shadow(2px 0 0 rgba(255, 91, 222, 0.45));
    animation: animeV3ChannelShift 1.75s steps(2, end) infinite;
}

.knowledge-visual-strip:hover .knowledge-visual-strip__media img,
.faq-visual-strip:hover .faq-visual-strip__media img,
.department-visual-strip:hover .department-visual-strip__media img,
.experts-visual-strip:hover .experts-visual-strip__media img,
.dept-visual-strip:hover .dept-visual-strip__media img {
    filter:
        contrast(1.38)
        saturate(1.88)
        brightness(1.1)
        hue-rotate(-15deg)
        drop-shadow(-3px 0 0 rgba(51, 234, 255, 0.56))
        drop-shadow(3px 0 0 rgba(255, 91, 222, 0.52));
}

@keyframes animeV3FrameJitter {
    0%, 70%, 100% { transform: translate3d(0, 0, 0); }
    20% { transform: translate3d(0.6px, -0.4px, 0); }
    40% { transform: translate3d(-0.5px, 0.4px, 0); }
}

@keyframes animeV3RgbCyan {
    0%, 65%, 100% { transform: translateX(0); opacity: 0.88; }
    25% { transform: translateX(-2px); opacity: 0.96; }
    45% { transform: translateX(1px); opacity: 0.92; }
}

@keyframes animeV3RgbMagenta {
    0%, 60%, 100% { transform: translateX(0); opacity: 0.74; }
    22% { transform: translateX(2px); opacity: 0.84; }
    44% { transform: translateX(-1px); opacity: 0.8; }
}

@keyframes animeV3ChannelShift {
    0%, 68%, 100% {
        filter:
            contrast(1.32)
            saturate(1.72)
            brightness(1.08)
            hue-rotate(-13deg)
            drop-shadow(-2px 0 0 rgba(51, 234, 255, 0.5))
            drop-shadow(2px 0 0 rgba(255, 91, 222, 0.45));
    }
    24% {
        filter:
            contrast(1.4)
            saturate(1.92)
            brightness(1.12)
            hue-rotate(-17deg)
            drop-shadow(-3px 0 0 rgba(64, 237, 255, 0.62))
            drop-shadow(3px 0 0 rgba(255, 96, 231, 0.58));
    }
    46% {
        filter:
            contrast(1.36)
            saturate(1.84)
            brightness(1.1)
            hue-rotate(-15deg)
            drop-shadow(-2px 0 0 rgba(64, 237, 255, 0.58))
            drop-shadow(2px 0 0 rgba(255, 96, 231, 0.54));
    }
}

.experts-visual-strip__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(76, 139, 241, 0.36);
    color: #2d67be;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(228, 242, 255, 0.96));
    box-shadow: 0 0 0 0 rgba(76, 139, 241, 0.3);
    animation: deptBadgePulse 2.8s ease-in-out infinite;
}

.experts-visual-strip__content h2 {
    margin: 9px 0 8px;
    font-size: clamp(1.18rem, 2.3vw, 1.48rem);
    color: #173f79;
    line-height: 1.35;
}

.experts-visual-strip__content p {
    margin: 0 0 14px;
    color: #526a89;
}

.experts-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.experts-metric-card {
    border-radius: 12px;
    border: 1px solid rgba(92, 139, 218, 0.24);
    background: rgba(255, 255, 255, 0.82);
    padding: 10px 10px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.experts-metric-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 18px;
    line-height: 1.2;
    color: #1d58ab;
}

.experts-metric-card span {
    font-size: 12px;
    line-height: 1.45;
    color: #5e7291;
}

body.experts-theme-page .experts-filter .filter-btn {
    border-color: rgba(103, 145, 220, 0.26);
    box-shadow: 0 8px 18px rgba(35, 75, 147, 0.08);
}

body.experts-theme-page .experts-filter .filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(35, 80, 160, 0.14);
}

body.experts-theme-page .experts-filter .filter-btn.active {
    box-shadow: 0 14px 30px rgba(38, 86, 167, 0.3);
}

body.experts-theme-page .expert-card {
    border: 1px solid rgba(93, 138, 214, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.93));
    box-shadow: 0 13px 30px rgba(32, 75, 148, 0.1);
}

body.experts-theme-page .expert-card:hover {
    border-color: rgba(79, 142, 249, 0.32);
    box-shadow: 0 20px 42px rgba(33, 85, 172, 0.16);
}

@keyframes deptBadgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 139, 241, 0.22);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 139, 241, 0);
    }
}

@media (max-width: 980px) {
    .department-visual-strip,
    .experts-visual-strip {
        grid-template-columns: 1fr;
    }

    .department-visual-strip__media img,
    .experts-visual-strip__media img {
        min-height: 190px;
    }
}

@media (max-width: 680px) {
    .department-metric-grid,
    .experts-metric-grid {
        grid-template-columns: 1fr;
    }
}

/* 内科/外科页面科技感增强 */
body.dept-article-theme-page {
    background:
        radial-gradient(circle at 12% 10%, rgba(98, 194, 255, 0.16), transparent 34%),
        radial-gradient(circle at 88% 0%, rgba(116, 126, 255, 0.13), transparent 32%),
        linear-gradient(180deg, #f6f9ff 0%, #f2f7ff 48%, #f8fbff 100%);
}

body.dept-article-theme-page .article-container {
    border: 1px solid rgba(92, 132, 214, 0.16);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.95));
    box-shadow:
        0 24px 56px rgba(26, 61, 126, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

body.dept-article-theme-page .article-header {
    margin-bottom: 28px;
    padding: 22px 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(90, 132, 218, 0.2);
    background: linear-gradient(135deg, rgba(232, 243, 255, 0.92), rgba(238, 246, 255, 0.82));
    box-shadow: 0 16px 38px rgba(39, 86, 168, 0.12);
}

body.dept-article-theme-page .article-header h1 {
    background: linear-gradient(96deg, #123d84 0%, #1362c0 40%, #4088f4 68%, #6f61f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 28px rgba(46, 111, 214, 0.2);
}

body.dept-article-theme-page .article-content section {
    margin-bottom: 22px;
    border: 1px solid rgba(88, 133, 217, 0.15);
    border-radius: 18px;
    padding: 20px 20px 14px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.95));
    box-shadow: 0 14px 32px rgba(30, 70, 145, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.dept-article-theme-page .article-content section:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 142, 252, 0.3);
    box-shadow: 0 20px 42px rgba(29, 79, 171, 0.14);
}

body.dept-article-theme-page .article-content h2 {
    margin-top: 0;
    border-bottom: 1px solid rgba(89, 132, 210, 0.22);
    color: #163467;
}

.dept-visual-strip {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 20px;
    margin: 0 0 24px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(85, 135, 221, 0.24);
    background: linear-gradient(145deg, rgba(231, 243, 255, 0.9), rgba(245, 250, 255, 0.86));
    box-shadow: 0 16px 36px rgba(29, 70, 147, 0.12);
}

.dept-visual-strip__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(93, 145, 229, 0.3);
    box-shadow: 0 12px 28px rgba(27, 77, 166, 0.18);
}

.dept-visual-strip__media img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.42s ease, filter 0.42s ease;
}

.dept-visual-strip:hover .dept-visual-strip__media img {
    transform: scale(1.015);
    filter: saturate(1.08);
}

.dept-visual-strip--surgery .dept-visual-strip__media {
    max-height: 300px;
}

.dept-visual-strip--surgery .dept-visual-strip__media img {
    height: 300px;
    object-position: center 28%;
}

.dept-visual-strip__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(79, 142, 245, 0.36);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(229, 243, 255, 0.95));
    color: #2a63b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.dept-visual-strip__content h2 {
    margin: 8px 0 8px;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    color: #153c77;
    line-height: 1.35;
}

.dept-visual-strip__content p {
    margin: 0 0 14px;
    color: #4f6688;
}

.dept-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.dept-metric-card {
    border-radius: 12px;
    border: 1px solid rgba(93, 139, 218, 0.25);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 10px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.dept-metric-card strong {
    display: block;
    margin-bottom: 3px;
    color: #1c58aa;
    font-size: 18px;
    line-height: 1.2;
}

.dept-metric-card span {
    font-size: 12px;
    color: #5b7294;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .dept-visual-strip {
        grid-template-columns: 1fr;
    }

    .dept-visual-strip__media img {
        min-height: 190px;
    }

    .dept-visual-strip--surgery .dept-visual-strip__media,
    .dept-visual-strip--surgery .dept-visual-strip__media img {
        max-height: none;
        height: auto;
    }
}

@media (max-width: 680px) {
    body.dept-article-theme-page .article-container {
        border-radius: 18px;
    }

    .dept-metric-grid {
        grid-template-columns: 1fr;
    }
}
