/* ===== 全局重置 & 基础 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background: #F5F7FA;
            color: #1e2a3a;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* ---- 通用板块标题 ---- */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            flex-wrap: wrap;
            gap: 8px 12px;
        }
        .section-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: #1e2a3a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-header h2 i {
            color: #08C7A3;
            font-size: 20px;
        }

        
        

        
        /* ============================================================
                   响应式
                   ============================================================ */

        @media (max-width: 992px) {
            .hospital-nav a {
                font-size: 14px;
                padding: 12px 16px;
            }
            .party-list {
                grid-template-columns: 1fr;
            }
            .env-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .environment-section {
                padding: 20px 16px;
            }
            .environment-section .env-title {
                font-size: 19px;
            }

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

            
        }

        @media (max-width: 480px) {
            .header-logo .brand {
                font-size: 20px;
            }
            .header-logo .sub-title {
                font-size: 12px;
            }

            .hospital-nav a {
                font-size: 12px;
                padding: 8px 12px;
            }
            
            .env-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .load-more-btn {
                padding: 6px 20px;
                font-size: 13px;
            }
        }
        
        
        
        /* ===== 就诊评价样式 ===== */
    .review-section {
        background: #ffffff;
        border-radius: 16px;
        padding: 24px 28px 28px;
        margin-bottom: 28px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        border: 1px solid #edf0f5;
    }
    .review-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
        flex-wrap: wrap;
        gap: 8px 12px;
    }
    .review-section .section-header h2 {
        font-size: 22px;
        font-weight: 700;
        color: #1e2a3a;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .review-section .section-header h2 i {
        color: #08C7A3;
        font-size: 20px;
    }
    .review-section .review-count {
        font-size: 14px;
        color: #6a7a8e;
    }

    .review-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
    }

    .review-item {
        background: #f8fafc;
        border-radius: 12px;
        padding: 16px 18px;
        border: 1px solid #edf0f5;
        transition: all 0.25s;
        cursor: default;
        position: relative;
    }
    .review-item:hover {
        border-color: #d0e8e0;
        box-shadow: 0 4px 12px rgba(8, 199, 163, 0.06);
    }

    .review-item .review-header {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 6px;
    }
    .review-item .review-header .review-doctor {
        font-size: 15px;
        font-weight: 600;
        color: #1e2a3a;
    }
    .review-item .review-header .review-doctor i {
        color: #08C7A3;
        margin-right: 4px;
    }
    .review-item .review-header .review-disease {
        font-size: 13px;
        color: #5a6a7e;
        background: #edf2f9;
        padding: 0 12px;
        border-radius: 12px;
    }
    .review-item .review-header .review-effect {
        font-size: 13px;
        font-weight: 500;
        padding: 0 12px;
        border-radius: 12px;
        background: #E6F9F4;
        color: #08C7A3;
    }
    .review-item .review-header .review-effect.satisfied {
        background: #E6F9F4;
        color: #08C7A3;
    }
    .review-item .review-header .review-effect.general {
        background: #fef3e0;
        color: #e8a87c;
    }
    .review-item .review-header .review-effect.unsatisfied {
        background: #fde8e8;
        color: #e87070;
    }

    .review-item .review-text {
        font-size: 14px;
        color: #4a5a6e;
        line-height: 1.7;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 4px;
    }
    .review-item .review-text .detail {
        color: #08C7A3;
        cursor: pointer;
        font-weight: 500;
    }
    .review-item .review-user {
        font-size: 13px;
        color: #8a9aa8;
        margin-top: 8px;
        display: flex;
        align-items: center;
        gap: 4px;
        position: absolute;
        right: 20px;
        bottom: 14px;
    }
    .review-item .review-user i {
        font-size: 12px;
    }
    .review-item .review-stars {
        color: #f5a623;
        margin-top: 2px;
        font-size: 13px;
    }
    .review-item .review-stars .empty {
        color: #dce3ec;
    }

    /* 加载更多按钮（复用） */
    .load-more-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }
    .load-more-btn {
        background: #ffffff;
        color: #08C7A3;
        border: 1.5px solid #08C7A3;
        padding: 10px 40px;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        font-family: inherit;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .load-more-btn:hover {
        background: #08C7A3;
        color: #ffffff;
        box-shadow: 0 4px 16px rgba(8, 199, 163, 0.25);
    }
    .load-more-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        border-color: #d0d8e0;
        color: #8a9aa8;
        background: #f5f7fa;
        box-shadow: none;
    }
    .load-more-btn.hidden {
        display: none;
    }
    .load-more-btn .spinner {
        display: none;
        animation: spin 0.8s linear infinite;
    }
    .load-more-btn.loading .spinner {
        display: inline-block;
    }
    .load-more-btn.loading .btn-text {
        display: none;
    }
    .load-more-btn.loading .btn-text-loading {
        display: inline;
    }
    .load-more-btn .btn-text-loading {
        display: none;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* ===== 响应式 ===== */
    @media (max-width: 768px) {
        .review-section {
            padding: 18px 16px 20px;
        }
        .review-list {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .review-item {
            padding: 14px 16px;
        }
        .review-item .review-header {
            gap: 8px;
        }
        .review-item .review-header .review-doctor {
            font-size: 14px;
        }
        .review-item .review-text {
            font-size: 13px;
        }
        .review-section .section-header h2 {
            font-size: 19px;
        }
        .load-more-btn {
            padding: 8px 28px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .review-section .section-header h2 {
            font-size: 17px;
        }
        .review-item .review-header .review-doctor {
            font-size: 13px;
        }
        .review-item .review-header .review-disease,
        .review-item .review-header .review-effect {
            font-size: 12px;
            padding: 0 8px;
        }
        .review-item .review-text {
            font-size: 12px;
        }
        .load-more-btn {
            padding: 6px 20px;
            font-size: 13px;
        }
    }