:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b6b;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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;
}

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

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #6b8dd6 50%, #8e44ad 75%, #667eea 100%);
    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: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #6b8dd6 50%, #8e44ad 75%, #667eea 100%);
    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: #ffffff;
    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: #ffffff;
    padding: 0;
}

.nav-logo img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    display: block;
    background: #ffffff;
    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.95);
    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: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    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;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
    font-weight: 700;
    position: relative;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 10px 18px !important;
    backdrop-filter: blur(10px);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(255, 255, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 24px rgba(255, 255, 255, 1), 0 2px 12px rgba(255, 255, 255, 0.7);
        opacity: 0.9;
    }
}

.nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(8px);
}

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

.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);
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    list-style: none;
    min-width: 200px;
    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: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(0, 102, 204, 0.08);
    color: #0066cc;
    padding-left: 28px;
    font-weight: 500;
}

.dropdown-menu a.active {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.15) 0%, rgba(74, 158, 255, 0.1) 100%);
    color: #0066cc;
    font-weight: 700;
    border-left: 4px solid #4a9eff;
    padding-left: 20px;
    position: relative;
    box-shadow: -2px 0 8px rgba(74, 158, 255, 0.2);
}

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

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

.dropdown-arrow {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.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: 220px;
    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: 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: 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: 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: 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: 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: #ffffff;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    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-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.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: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.expert-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.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;
    margin-top: 15px;
}

.expert-link {
    display: inline-block;
    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;
}

.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: 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: 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: 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-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 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 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.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) {
    .nav-logo-row {
        padding: 15px 0;
    }
    
    .nav-logo img {
        max-height: 70px;
    }
    
    .nav-menu-row .nav-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #6b8dd6 50%, #8e44ad 75%, #667eea 100%);
        background-size: 200% 200%;
        flex-direction: column;
        padding: 100px 20px 40px;
        transition: left 0.3s 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;
    }
    
    .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:hover {
        color: #ffffff !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .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 {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .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);
    }

    .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,
    .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-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .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: 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: 900px;
    margin: 0 auto;
}

.faq-item {
    background: 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: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: var(--shadow-md);
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

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

.breadcrumb span {
    color: var(--text-secondary);
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

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

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

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

.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 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页面 */
.faq-page {
    padding-top: 200px;
    background: var(--bg-light);
    min-height: 100vh;
    padding-bottom: 60px;
}

.faq-header {
    max-width: 900px;
    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: 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: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-section .faq-item {
    background: 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: 900px;
    margin: 60px auto 0;
    padding: 30px 20px;
    background: 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-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: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.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: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.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;
}

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

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

/* 专家页面样式 */
.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: 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: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.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;
}

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

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

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

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

.consultation-page .consultation-form {
    background: 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: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.appointment-page .method-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.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: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.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;
}

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

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

/* 技术详情模态框样式 */
.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: #ffffff;
    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;
}

@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;
    }
}

