/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --secondary-color: #7CB342;
    --accent-color: #5C9EAD;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* 导航栏 */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero区域 */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #5C9EAD 50%, #7CB342 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

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

/* 通用section样式 */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* 简介区域 */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.number{
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}


/* 团队区域 */
.team {
    background-color: var(--bg-white);
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.member-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.member-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.member-credentials {
    list-style: none;
    padding: 0;
}

.member-credentials li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.member-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 涉及领域 */
.conditions {
    background-color: var(--bg-light);
}

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

.condition-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.condition-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.condition-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.condition-card:nth-child(4) {
    border-top-color: #E67E22;
}

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

.condition-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.condition-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 产品服务 */
.services {
    background-color: var(--bg-white);
}

.service-item {
    margin-bottom: 60px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-item.reverse .service-content {
    direction: rtl;
}

.service-item.reverse .service-text {
    direction: ltr;
}

.service-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.service-text strong {
    color: var(--primary-color);
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* 循证证据 */
.evidence {
    background-color: var(--bg-light);
}

.evidence-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.evidence-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.evidence-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.evidence-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.evidence-link:hover {
    gap: 10px;
}

/* 患者分享 */
.stories {
    background-color: var(--bg-white);
}

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

.story-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: var(--shadow-hover);
}

.story-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.story-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.story-tag {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.story-content {
    padding: 30px;
}

.story-quote {
    background-color: white;
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.story-details p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.story-details strong {
    color: var(--primary-color);
}

.story-insights {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    margin-top: 40px;
}

.story-insights h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

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

.insight-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-5px);
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.insight-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.insight-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 页脚 */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .team-member {
        grid-template-columns: 1fr;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-item.reverse .service-content {
        direction: ltr;
    }

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

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

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

    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .evidence-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }
}

/* 子页面样式 */

/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #4A90E2 0%, #5C9EAD 50%, #7CB342 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* 导航栏活动状态 */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* 关于我们页面 */
.mission-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.content-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.content-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.problem-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.problem-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.problem-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.problem-text h3:first-child {
    margin-top: 0;
}

.problem-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-5px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.advantages-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.advantage-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 90px;
}

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

.advantage-number {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.advantage-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.advantage-item p {
    line-height: 1.7;
    color: var(--text-light);
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.philosophy-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.philosophy-item:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.philosophy-item:nth-child(3) {
    border-top-color: var(--accent-color);
}

.philosophy-item:nth-child(4) {
    border-top-color: #E67E22;
}

.philosophy-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.philosophy-item p {
    line-height: 1.7;
    color: var(--text-light);
}

/* 团队页面 */
.team-intro-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.chief-expert-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.expert-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.expert-photo-large {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: sticky;
    top: 100px;
}

.expert-photo-large img {
    width: 100%;
    height: auto;
    display: block;
}

.expert-details h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.expert-title-large {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

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

.expert-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.expert-list {
    list-style: none;
    padding: 0;
}

.expert-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.expert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.expert-section > p {
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.expertise-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.expertise-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.expertise-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.expertise-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.achievements-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.achievement-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.achievement-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #5C9EAD 50%, #7CB342 100%);
    color: white;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.join-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* 响应式设计 - 子页面 */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .problem-content {
        grid-template-columns: 1fr;
    }

    .expert-profile {
        grid-template-columns: 1fr;
    }

    .expert-photo-large {
        position: relative;
        top: 0;
    }

    .advantage-item {
        padding-left: 30px;
    }

    .advantage-number {
        position: relative;
        left: 0;
        top: 0;
        display: block;
        margin-bottom: 10px;
    }
}

/* 产品服务页面 */
.services-overview {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.conditions-detail {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.condition-card-detail {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.condition-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px 25px;
}

.condition-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.condition-body {
    padding: 25px;
}

.condition-body p {
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.core-services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-subsection {
    margin-bottom: 30px;
}

.service-subsection h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.service-subsection p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    padding: 15px;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-process {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    background-color: var(--bg-light);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* 响应式设计 - 产品服务页面 */
@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse .service-detail-content {
        direction: ltr;
    }

    .service-detail-image {
        position: relative;
        top: 0;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

/* 循证证据页面 */
.evidence-intro {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.evidence-main {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.tab-intro {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.tab-intro h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tab-intro p {
    line-height: 1.8;
    color: var(--text-dark);
}

.evidence-importance {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.importance-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.importance-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.importance-card p {
    line-height: 1.7;
    color: var(--text-dark);
}

/* 患者分享页面 */
.stories-intro {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.stories-main {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.stories-grid-full {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-card-full {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.story-header-full {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.story-header-full h2 {
    font-size: 2rem;
    margin: 0;
}

.story-tag-large {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.story-content-full {
    padding: 40px;
}

.story-quote-large {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.story-quote-large p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    padding-left: 40px;
}

.story-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.story-section.highlight {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.05), rgba(74, 144, 226, 0.05));
}

.story-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.story-section p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.story-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.story-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.story-insights-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.insight-item-full {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.insight-item-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.insight-item-full h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.insight-item-full p {
    line-height: 1.7;
    color: var(--text-light);
}

.patient-message {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #5C9EAD 50%, #7CB342 100%);
    color: white;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.message-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* 响应式设计 - 循证证据和患者分享页面 */
@media (max-width: 768px) {
    .story-header-full {
        padding: 30px 20px;
    }

    .story-header-full h2 {
        font-size: 1.5rem;
    }

    .story-content-full {
        padding: 20px;
    }

    .story-quote-large p {
        font-size: 1rem;
        padding-left: 20px;
    }

    .story-section {
        padding: 20px;
    }

    .message-content h2 {
        font-size: 1.8rem;
    }

    .cta-button-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* 患者反馈卡片 */
.testimonials-cards {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.testimonial-stars {
    font-size: 1.5rem;
    color: #FFB800;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 响应式设计 - 患者反馈卡片 */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-stars {
        font-size: 1.3rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}


/* ==================== 产品服务页面新样式 ==================== */
.core-treatments { padding: 60px 0; background: #fff; }
.treatment-card { background: #fff; border: 2px solid #E8F5E9; border-radius: 12px; padding: 30px; margin-bottom: 30px; margin-left: -20px; margin-right: -20px; transition: all 0.3s ease; }
.treatment-card:hover { border-color: #7CB342; box-shadow: 0 8px 24px rgba(124, 179, 66, 0.15); transform: translateY(-4px); }
.treatment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.treatment-header h3 { color: #2C3E50; font-size: 24px; margin: 0; }
.treatment-badge { background: linear-gradient(135deg, #4A90E2, #7CB342); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; }
.treatment-intro { color: #555; line-height: 1.8; margin-bottom: 20px; }
.treatment-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.highlight-item { display: flex; align-items: center; gap: 10px; color: #666; }
.highlight-icon { color: #7CB342; font-weight: bold; font-size: 18px; }
.btn-detail { display: inline-block; background: linear-gradient(135deg, #4A90E2, #7CB342); color: #fff; padding: 12px 32px; border-radius: 25px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; }
.btn-detail:hover { transform: translateX(5px); box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3); }
.auxiliary-services { padding: 60px 0; background: #F9F9F9; }
.auxiliary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.auxiliary-card { background: #fff; padding: 30px; border-radius: 8px; border-left: 4px solid #4A90E2; }
.auxiliary-card h4 { color: #2C3E50; font-size: 18px; margin-bottom: 12px; }
.auxiliary-card p { color: #666; line-height: 1.8; }
.conditions-section { padding: 60px 0; background: #fff; }
.conditions-simple-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 30px; }
.condition-simple-card { background: #F9F9F9; padding: 24px; border-radius: 8px; transition: all 0.3s ease; }
.condition-simple-card:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.condition-simple-card h4 { color: #2C3E50; font-size: 18px; margin-bottom: 12px; }
.condition-simple-card p { color: #666; font-size: 14px; line-height: 1.6; }
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #4A90E2, #7CB342); text-align: center; }
.cta-content h2 { color: #fff; font-size: 36px; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-primary-large { display: inline-block; background: #fff; color: #4A90E2; padding: 16px 48px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 18px; transition: all 0.3s ease; }
.btn-primary-large:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-secondary-large { display: inline-block; background: transparent; color: #fff; border: 2px solid #fff; padding: 16px 48px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 18px; transition: all 0.3s ease; }
.btn-secondary-large:hover { background: #fff; color: #4A90E2; transform: translateY(-3px); }
@media (max-width: 768px) {
    .treatment-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cta-content h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-primary-large, .btn-secondary-large { width: 100%; max-width: 300px; }
}


/* CTA引流按钮样式 */
.cta-floating { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg, #4A90E2, #7CB342); padding: 20px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); z-index: 1000; max-width: 300px; }
.cta-floating h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.cta-floating p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 16px; }
.cta-buttons { display: flex; gap: 10px; }
.btn-cta-primary, .btn-cta-secondary { padding: 10px 20px; border-radius: 20px; text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.3s; }
.btn-cta-primary { background: #fff; color: #4A90E2; }
.btn-cta-secondary { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-read-more { display: inline-block; margin-top: 16px; padding: 10px 24px; background: linear-gradient(135deg, #4A90E2, #7CB342); color: #fff; border-radius: 20px; text-decoration: none; transition: all 0.3s; }
@media (max-width: 768px) { .cta-floating { bottom: 10px; right: 10px; max-width: 250px; } }

/* 详情页面样式 */
.breadcrumb { background: #f8f9fa; padding: 15px 0; font-size: 14px; color: #666; }
.breadcrumb a { color: #4A90E2; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.detail-intro { padding: 60px 0; background: #fff; }
.intro-content h2 { color: #2c3e50; font-size: 32px; margin-bottom: 24px; }
.intro-content p { font-size: 18px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.detail-mechanism { padding: 60px 0; background: #f8f9fa; }
.detail-mechanism h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 48px; }
.mechanism-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.mechanism-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s; }
.mechanism-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.mechanism-icon { font-size: 48px; margin-bottom: 16px; }
.mechanism-card h3 { color: #2c3e50; font-size: 20px; margin-bottom: 12px; }
.mechanism-card p { color: #666; line-height: 1.6; }
.detail-evidence { padding: 60px 0; background: #fff; }
.detail-evidence h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 32px; }
.evidence-badge-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.evidence-badge { background: linear-gradient(135deg, #4A90E2, #7CB342); color: #fff; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500; }
.evidence-list { max-width: 900px; margin: 0 auto; }
.evidence-item { background: #f8f9fa; padding: 24px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid #4A90E2; }
.evidence-item h4 { color: #2c3e50; font-size: 20px; margin-bottom: 12px; }
.evidence-item p { color: #555; line-height: 1.7; }
.detail-process { padding: 60px 0; background: #f8f9fa; }
.detail-process h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 48px; }
.process-timeline { max-width: 800px; margin: 0 auto; }
.process-step { display: flex; gap: 24px; margin-bottom: 32px; }
.step-number { flex-shrink: 0; width: 50px; height: 50px; background: linear-gradient(135deg, #4A90E2, #7CB342); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; }
.step-content h3 { color: #2c3e50; font-size: 20px; margin-bottom: 8px; }
.step-content p { color: #666; line-height: 1.6; }
.detail-digital { padding: 60px 0; background: #fff; }
.detail-digital h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 48px; }
.digital-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.digital-card { background: #f8f9fa; padding: 30px; border-radius: 12px; text-align: center; transition: all 0.3s; }
.digital-card:hover { background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.digital-icon { font-size: 48px; margin-bottom: 16px; }
.digital-card h3 { color: #2c3e50; font-size: 20px; margin-bottom: 12px; }
.digital-card p { color: #666; line-height: 1.6; }
.detail-suitable { padding: 60px 0; background: #f8f9fa; }
.detail-suitable h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 48px; }
.suitable-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.suitable-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.suitable-yes { border-top: 4px solid #7CB342; }
.suitable-note { border-top: 4px solid #FFA726; }
.suitable-card h3 { color: #2c3e50; font-size: 22px; margin-bottom: 20px; }
.suitable-card ul { list-style: none; padding: 0; }
.suitable-card li { padding: 8px 0; padding-left: 24px; position: relative; color: #555; line-height: 1.6; }
.suitable-card li:before { content: "•"; position: absolute; left: 0; color: #4A90E2; font-weight: bold; }
.detail-myths { padding: 60px 0; background: #fff; }
.detail-myths h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 48px; }
.myths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.myth-card { background: #f8f9fa; padding: 24px; border-radius: 12px; border-left: 4px solid #FFA726; }
.myth-card h4 { color: #2c3e50; font-size: 18px; margin-bottom: 12px; }
.myth-card p { color: #555; line-height: 1.6; }
.detail-experience { padding: 60px 0; background: #f8f9fa; }
.detail-experience h2 { text-align: center; color: #2c3e50; font-size: 32px; margin-bottom: 48px; }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.experience-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); position: relative; }
.experience-quote { font-size: 72px; color: #4A90E2; opacity: 0.2; position: absolute; top: 10px; left: 20px; line-height: 1; }
.experience-card p { color: #555; line-height: 1.7; font-style: italic; margin-bottom: 16px; position: relative; z-index: 1; }
.experience-author { color: #7CB342; font-weight: 500; font-size: 14px; }
.detail-cta { padding: 80px 0; background: linear-gradient(135deg, #4A90E2, #7CB342); }
.cta-box { text-align: center; color: #fff; }
.cta-box h2 { font-size: 36px; margin-bottom: 16px; }
.cta-box p { font-size: 18px; margin-bottom: 32px; opacity: 0.95; }
.cta-buttons-center { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
    .mechanism-grid, .digital-grid, .suitable-grid, .myths-grid, .experience-grid { grid-template-columns: 1fr; }
    .process-step { flex-direction: column; }
    .detail-intro h2, .detail-mechanism h2, .detail-evidence h2, .detail-process h2, .detail-digital h2, .detail-suitable h2, .detail-myths h2, .detail-experience h2 { font-size: 24px; }
    .cta-box h2 { font-size: 28px; }
}

/* 患者分享链接样式 */
.story-link {
    margin-top: 20px;
    text-align: center;
}

.story-link-inline {
    margin-top: 15px;
}

.story-link-inline a,
.story-link a {
    color: #2c7a7b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-link-inline a:hover,
.story-link a:hover {
    color: #234e52;
    text-decoration: underline;
}

/* 服务亮点样式 */
.service-highlights {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.highlight-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.highlight-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* 干预方法详细介绍样式 */
.treatment-detail-section {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.treatment-detail-section h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.treatment-detail-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.treatment-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.treatment-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.treatment-list li:before {
    content: "▸";
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: bold;
}

.treatment-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* 治疗卡片适配更多内容 */
.treatment-card {
    margin-bottom: 40px;
}

.treatment-intro {
    margin-bottom: 25px;
}


/* 二维码弹窗 */
.modal-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.7);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1000;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
}

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

.qr-modal {
		background-color: white;
		border-radius: 16px;
		width: 90%;
		max-width: 500px;
		padding: 40px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
		transform: scale(0.9);
		transition: transform 0.3s ease;
		position: relative;
}

.modal-overlay.active .qr-modal {
		transform: scale(1);
}

.close-btn {
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		font-size: 24px;
		color: #7f8c8d;
		cursor: pointer;
		transition: color 0.3s;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
}

.close-btn:hover {
		color: #e74c3c;
		background-color: #f9f9f9;
}

.modal-header {
		text-align: center;
		margin-bottom: 30px;
}

.modal-header h2 {
		color: #2c3e50;
		font-size: 1.8rem;
		margin-bottom: 10px;
}

.modal-header p {
		color: #7f8c8d;
}

.qr-container {
		text-align: center;
		padding: 20px 0;
		background-color: #f8f9fa;
		border-radius: 12px;
		margin-bottom: 25px;
}

.qr-code {
		width: 200px;
		height: 200px;
		margin: 0 auto;
		background-color: #fff;
		padding: 15px;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qr-code img {
		max-width: 100%;
}

.qr-instructions {
		background-color: #e8f4fc;
		border-radius: 10px;
		padding: 20px;
		margin-top: 20px;
}

.qr-instructions h3 {
		color: #3498db;
		margin-bottom: 10px;
		font-size: 1.1rem;
}

.qr-instructions ol {
		padding-left: 20px;
		color: #555;
}

.qr-instructions li {
		margin-bottom: 8px;
}