/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 文字选择 */
::selection {
    background-color: #4a90e2;
    color: white;
}

/* 链接样式 */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* 按钮样式 */
.btn-primary, .btn-secondary, .btn-login, .btn-register {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: #4a90e2;
    border: 1.5px solid #4a90e2;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: white;
}

.btn-login {
    background-color: transparent;
    color: #333;
    padding: 8px 20px;
    border: 1px solid #ddd;
}

.btn-register {
    background-color: #4a90e2;
    color: white;
    padding: 8px 20px;
    margin-left: 10px;
}

/* 标题样式 */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    color: #222;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* 导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a90e2;
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 15px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
    word-break: keep-all;
}

.nav-links a:hover {
    color: #4a90e2;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-links {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 英雄区域 */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.highlight {
    color: #4a90e2;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(74, 144, 226, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* 服务项目 */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.service-icon i {
    font-size: 2.2rem;
    color: #4a90e2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #222;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* 服务场景 */
.scenarios {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.scenario-card {
    background-color: white;
    border-radius: 8px;
    padding: 35px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.scenario-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.scenario-icon i {
    font-size: 2.2rem;
    color: #4a90e2;
}

.scenario-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #222;
    text-align: center;
}

.scenario-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.scenario-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.service-tag {
    background-color: #f0f7ff;
    color: #4a90e2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #d1e3ff;
}

/* 突出显示的服务场景 */
.scenario-card.featured {
    border: 2px solid #4a90e2;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
    position: relative;
}

.scenario-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.25);
}

.recommended-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

/* 服务宗旨 */
.mission {
    padding: 80px 0;
    background-color: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.mission-icon i {
    font-size: 2.2rem;
    color: #4a90e2;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #222;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* 服务流程 */
.process {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

/* 服务价格 */
.pricing {
    padding: 80px 0;
    background-color: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    background-color: #4a90e2;
    color: white;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

.pricing-card.featured .price {
    color: white;
}

.price span {
    font-size: 1.2rem;
    font-weight: normal;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-features i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.price-features .fa-check {
    color: #4CAF50;
}

.price-features .fa-times {
    color: #ff6b6b;
}

.pricing-card.featured .fa-check {
    color: white;
}

.pricing-card.featured .fa-times {
    color: rgba(255, 255, 255, 0.7);
}

/* 关于我们 */
.about {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a90e2;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 联系预约 */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-form {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form form {
    flex: 2;
}

.contact-info {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
    font-size: 1.2rem;
    margin-right: 15px;
}

.info-item h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
}

/* 页脚 */
.footer {
    background-color: #222;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 250px;
}

.footer-logo i {
    font-size: 2rem;
    color: #4a90e2;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-logo p {
    margin-top: 10px;
    color: #aaa;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    flex: 2;
    min-width: 250px;
}

.footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #4a90e2;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #777;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #aaa;
}

.footer-bottom a:hover {
    color: white;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #222;
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #222;
}

.modal-body {
    padding: 40px 20px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-form {
        flex-direction: column;
    }

    /* 导航优化，防止汉字换行 */
    .logo {
        font-size: 1.4rem;
    }

    .logo i {
        font-size: 1.6rem;
    }

    .nav-links li {
        margin-left: 12px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    /* 在较小桌面屏幕进一步优化导航 */
    .container {
        padding: 0 15px;
    }

    .nav-links li {
        margin-left: 10px;
    }

    .nav-links a {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .auth-links {
        flex-direction: column;
        gap: 10px;
    }

    .btn-register {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .process-steps {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* 政策条款复选框 */
.policy-checkboxes {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.policy-checkbox {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.policy-checkbox:last-child {
    margin-bottom: 0;
}

.policy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.policy-checkbox label {
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.policy-checkbox label a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.policy-checkbox label a:hover {
    text-decoration: underline;
}

.policy-checkbox input[type="checkbox"]:checked {
    accent-color: #4a90e2;
}

/* 合作医院 */
.hospitals {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hospital-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hospital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hospital-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
    display: flex;
    align-items: center;
}

.hospital-card h3 i {
    color: #4a90e2;
    margin-right: 10px;
    font-size: 1.3rem;
}

.hospital-intro {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hospital-details {
    margin-top: 20px;
}

.hospital-details h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.hospital-details h4 i {
    color: #4a90e2;
    margin-right: 8px;
}

.specialties-list {
    list-style: none;
    margin-bottom: 20px;
}

.specialties-list li {
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
}

.specialties-list i {
    color: #4CAF50;
    margin-right: 8px;
    font-size: 0.9rem;
}

.hospital-address, .hospital-transport, .hospital-hours, .hospital-branch {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.hospital-branches {
    margin-bottom: 15px;
    color: #555;
    display: block;
}

.hospital-address i, .hospital-transport i, .hospital-hours i, .hospital-branch i {
    color: #4a90e2;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* 分院信息样式 */
.hospital-branches h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.hospital-branches h4 i {
    color: #4a90e2;
    margin-right: 8px;
}

.branches-list {
    list-style: none;
    margin-bottom: 15px;
    margin-top: 5px;
}

.branches-list li {
    margin-bottom: 10px;
    color: #666;
    display: block;
    padding-left: 24px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.4;
}

.branches-list i {
    color: #4a90e2;
    position: absolute;
    left: 0;
    top: 0;
}

.branches-list strong {
    color: #333;
    display: block;
    margin-bottom: 1px;
    font-weight: 600;
    font-size: 1em;
}


/* 门诊时间说明样式 */
.time-notice {
    background-color: #f0f7ff;
    border-left: 4px solid #4a90e2;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.time-notice p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.time-notice i {
    color: #4a90e2;
    margin-right: 8px;
}

.time-notice strong {
    color: #333;
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .hospitals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hospital-card {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* 微信二维码悬停效果 */
.wechat-icon-container {
    position: relative;
    display: inline-block;
}

.wechat-qr {
    position: absolute;
    bottom: 100%;
    left: 200%;
    transform: translateX(-50%);
    width: 150px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-bottom: 10px;
}

.wechat-icon-container:hover .wechat-qr {
    opacity: 1;
    visibility: visible;
}

.wechat-qr img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* 调整联系信息部分的微信图标容器 */
.info-item.wechat-item .wechat-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 调整社交链接中的微信图标容器 */
.social-links .wechat-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 就医指南页面 */
.guide {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.disease-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.disease-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.disease-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.disease-icon i {
    font-size: 2rem;
    color: #4a90e2;
}

.disease-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.disease-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.disease-description a {
    color: #4a90e2;
    text-decoration: underline;
    text-decoration-color: rgba(74, 144, 226, 0.3);
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.disease-description a:hover {
    color: #3a7bc8;
    text-decoration-color: rgba(74, 144, 226, 0.7);
}

.recommended-hospitals {
    margin-top: 20px;
    margin-bottom: 20px;
}

.recommended-hospitals h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.recommended-hospitals h4 i {
    color: #4a90e2;
    margin-right: 8px;
}

.hospital-list {
    list-style: none;
    margin-top: 10px;
}

.hospital-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.hospital-list li:before {
    content: "•";
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hospital-list strong {
    color: #333;
}

.tips {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    margin-top: 20px;
}

.tips h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
}

.tips h4 i {
    color: #4a90e2;
    margin-right: 8px;
}

.tips p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.guide-note {
    background-color: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.guide-note h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.guide-note h3 i {
    color: #ff9800;
    margin-right: 10px;
}

.guide-note p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.guide-note p:last-child {
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .disease-card {
        padding: 20px;
    }
}

/* 分院分隔线样式 */
.branch-separator {
    margin: 25px 0;
    border: none;
    border-top: 2px dashed #e0e0e0;
}

/* 分院信息区块增强样式 */
.branches-section {
    margin-top: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.branches-section h4 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.branches-section h4 i {
    color: #4a90e2;
    margin-right: 8px;
}

.branches-section .branches-list {
    margin-top: 10px;
}

.branches-section .branches-list li {
    border-bottom: 1px solid #eee;
}

.branches-section .branches-list li:last-child {
    border-bottom: none;
}

/* 总院信息突出显示 */
.hospital-main-info {
    background-color: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #d1e3ff;
}

/* 安检提醒样式 */
.security-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ff9800;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.security-notice h4 {
    margin: 0 0 10px 0;
    color: #333;
    display: flex;
    align-items: center;
}

.security-notice h4 i {
    color: #ff9800;
    margin-right: 10px;
}

.security-notice p {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 0.95rem;
}

.security-notice ul {
    margin: 0 0 10px 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
}

.security-notice .note {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* 警惕医托提示样式 */
.tout-warning {
    background-color: #ffeaea;
    border-left: 4px solid #e53935;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.tout-warning h4 {
    margin: 0 0 10px 0;
    color: #333;
    display: flex;
    align-items: center;
}

.tout-warning h4 i {
    color: #e53935;
    margin-right: 10px;
}

.tout-warning p {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 0.95rem;
}

.tout-warning ul {
    margin: 0 0 10px 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
}

.tout-warning .note {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .branches-section {
        padding: 12px;
    }

    .hospital-main-info {
        padding: 12px;
    }

    .security-notice {
        padding: 12px;
        margin-bottom: 20px;
    }

    .security-notice ul {
        padding-left: 18px;
    }

    .tout-warning {
        padding: 12px;
        margin-bottom: 20px;
    }

    .tout-warning ul {
        padding-left: 18px;
    }
}
