/* ===== 全局重置 & 基础 ===== */
        * {
            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;
        }
        /* ============================================================
                   医院主页主体
                   ============================================================ */

        .hospital-main {
            padding: 24px 0 40px;
        }

        /* ---- 医院简介 Hero ---- */
        .hospital-hero {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px 32px;
            margin-bottom: 28px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf0f5;
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .hospital-hero .hero-left {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 2;
            min-width: 260px;
        }
        .hospital-hero .hero-left .hospital-name-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hospital-hero .hero-left .hospital-name-row h1 {
            font-size: 28px;
            font-weight: 700;
            color: #1e2a3a;
        }
        .hospital-hero .hero-left .hospital-name-row .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .hospital-hero .hero-left .hospital-name-row .badge-group span {
            display: inline-block;
            padding: 2px 14px;
            border-radius: 12px;
            font-weight: 500;
            font-size: 13px;
        }
        .hospital-hero .hero-left .hospital-name-row .badge-group span:first-child {
            background: #08C7A3;
            color: #ffffff;
        }
        .hospital-hero .hero-left .hospital-name-row .badge-group span:last-child {
            background: #E6F9F4;
            color: #08C7A3;
        }
        .hospital-hero .hero-left .hospital-desc {
            font-size: 15px;
            color: #5a6a7e;
            line-height: 1.8;
        }
        .hospital-hero .hero-left .hospital-desc .detail {
            color: #08C7A3;
            cursor: pointer;
            font-weight: 500;
        }
        .hospital-hero .hero-left .hospital-contact {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 14px;
            color: #5a6a7e;
            margin-top: 4px;
        }
        .hospital-hero .hero-left .hospital-contact i {
            color: #8a9aa8;
            width: 20px;
            text-align: center;
        }
        .hospital-hero .hero-left .hospital-contact .phone {
            color: #1e2a3a;
            font-weight: 500;
        }

        .hospital-hero .hero-right {
            flex: 1;
            min-width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #eef3fc, #dce6f5);
            border-radius: 14px;
            padding: 24px;
            min-height: 160px;
        }
        .hospital-hero .hero-right .logo-big {
            font-size: 48px;
            font-weight: 700;
            color: #08C7A3;
            letter-spacing: 2px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        .hospital-hero .hero-right .logo-big i {
            font-size: 56px;
            color: #08C7A3;
            opacity: 0.4;
        }
        .hospital-hero .hero-right .logo-big span {
            font-size: 20px;
            font-weight: 600;
        }

        /* ---- 通用板块标题 ---- */
        .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;
        }

        /* ============================================================
           ★★★ 医院环境 — 核心模块 ★★★
           ============================================================ */

        .environment-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px 32px;
            margin-bottom: 28px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf0f5;
        }
        .environment-section .env-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e2a3a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .environment-section .env-title i {
            color: #08C7A3;
        }

        /* ---- 环境图片网格 ---- */
        .env-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .env-grid .env-item {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            background: #eef3fc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #8a9aa8;
            border: 1px solid #edf0f5;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }
        .env-grid .env-item:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(8, 199, 163, 0.12);
            border-color: #08C7A3;
        }
        .env-grid .env-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .env-grid .env-item .env-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #8a9aa8;
            font-weight: 500;
        }
        .env-grid .env-item .env-placeholder i {
            font-size: 36px;
            color: #c8d4e0;
        }

        /* ---- 加载更多 ---- */
        .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;
        }

        

        

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

        @media (max-width: 992px) {
            .party-list {
                grid-template-columns: 1fr;
            }
            .env-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            

            .hospital-main {
                padding: 16px 0 30px;
            }

            .hospital-hero {
                padding: 20px 18px;
                flex-direction: column;
            }
            .hospital-hero .hero-left .hospital-name-row h1 {
                font-size: 22px;
            }
            .hospital-hero .hero-right {
                min-height: 100px;
                padding: 16px;
            }
            .hospital-hero .hero-right .logo-big {
                font-size: 32px;
            }
            .hospital-hero .hero-right .logo-big i {
                font-size: 40px;
            }

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

            .env-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }


            .load-more-btn {
                padding: 6px 20px;
                font-size: 13px;
            }
        }