* {
            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;
        }
        .section-header .more {
            font-size: 14px;
            color: #6a7a8e;
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .section-header .more:hover {
            color: #08C7A3;
        }

        

        /* ---- 科室导航 ---- */
        .dept-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;
        }
        .dept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 12px;
        }
        .dept-grid .dept-item {
            background: #f8fafc;
            border-radius: 10px;
            padding: 12px 8px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: #4a5a6e;
            border: 1px solid #edf0f5;
            cursor: pointer;
            transition: all 0.2s;
        }
        .dept-grid .dept-item:hover {
            border-color: #08C7A3;
            color: #08C7A3;
            background: #f0f7f5;
        }

        /* ---- 就医指南 ---- */
        .guide-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;
        }
        .guide-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .guide-grid .guide-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 18px 20px;
            border: 1px solid #edf0f5;
        }
        .guide-grid .guide-item h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1e2a3a;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .guide-grid .guide-item h4 i {
            color: #08C7A3;
        }
        .guide-grid .guide-item p {
            font-size: 14px;
            color: #5a6a7e;
            line-height: 1.8;
        }
        .guide-grid .guide-item .more-link {
            color: #08C7A3;
            font-weight: 500;
            cursor: pointer;
            font-size: 14px;
        }
        .guide-grid .guide-item .more-link:hover {
            text-decoration: underline;
        }

        

        /* ---- 用户评价 ---- */
        .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-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 24px;
        }
        .review-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 16px 18px;
            border: 1px solid #edf0f5;
        }
        .review-item .review-user {
            font-size: 14px;
            font-weight: 600;
            color: #1e2a3a;
        }
        .review-item .review-doctor {
            font-size: 13px;
            color: #5a6a7e;
        }
        .review-item .review-disease {
            font-size: 13px;
            color: #5a6a7e;
        }
        .review-item .review-text {
            font-size: 14px;
            color: #4a5a6e;
            margin-top: 6px;
            line-height: 1.6;
        }
        .review-item .review-stars {
            color: #f5a623;
            margin-top: 4px;
            font-size: 14px;
        }
        .review-item .review-stars .empty {
            color: #dce3ec;
        }
        .review-item .review-more {
            color: #08C7A3;
            cursor: pointer;
            font-weight: 500;
            font-size: 13px;
        }

        

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

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

        @media (max-width: 768px) {
            

            

            .section-header h2 {
                font-size: 19px;
            }
            .dept-section,
            .guide-section,
            .review-section {
                padding: 18px 16px 20px;
            }

            
            .dept-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 8px;
            }
            .dept-grid .dept-item {
                font-size: 13px;
                padding: 10px 6px;
            }
            .guide-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .review-list {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            
        }

        @media (max-width: 480px) {
            

            .hospital-hero .hero-left .hospital-name-row h1 {
                font-size: 19px;
            }
            .hospital-hero .hero-left .hospital-name-row .badge-group span {
                font-size: 11px;
                padding: 1px 10px;
            }
            .hospital-hero .hero-left .hospital-desc {
                font-size: 14px;
            }

            .dept-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
            .dept-grid .dept-item {
                font-size: 12px;
                padding: 8px 4px;
            }
            .section-header h2 {
                font-size: 17px;
            }
        }