 /* ===== 全局重置 & 基础 ===== */
        * {
            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;
            position: relative;
        }
        .section-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: #1e2a3a;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 6px;
        }
        .section-header h2 i {
            color: #08C7A3;
            font-size: 20px;
        }

        /* ---- 科室筛选下拉（替换原来的“查看更多”） ---- */
        .dept-filter-wrapper {
            position: absolute;
            flex-shrink: 0;
            right: 20px;
            top: 0px;
        }
        .dept-filter-select {
            appearance: none;
            -webkit-appearance: none;
            padding: 8px 36px 8px 18px;
            border-radius: 24px;
            border: 1.5px solid #e8ecf1;
            background: #ffffff;
            font-size: 14px;
            font-weight: 500;
            color: #1e2a3a;
            cursor: pointer;
            outline: none;
            transition: all 0.25s;
            font-family: inherit;
            min-width: 130px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9aa8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 12px 8px;
        }
        .dept-filter-select:hover {
            border-color: #08C7A3;
        }
        .dept-filter-select:focus {
            border-color: #08C7A3;
            box-shadow: 0 0 0 3px rgba(8, 199, 163, 0.12);
        }
        .dept-filter-select option {
            font-weight: 400;
        }

        /* ---- 专家风采 ---- */
        .expert-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;
        }
        .expert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .expert-card {
            background: #f8fafc;
            border-radius: 14px;
            padding: 20px 20px 18px;
            border: 1px solid #edf0f5;
            transition: all 0.25s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 6px;
            position: relative;
        }
        .expert-card:hover {
            box-shadow: 0 6px 20px rgba(8, 199, 163, 0.08);
            border-color: #d0e8e0;
            transform: translateY(-2px);
        }
        .expert-card .expert-top {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .expert-card .expert-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E6F9F4, #b8e6db);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
            color: #08C7A3;
            flex-shrink: 0;
        }
        .expert-card .expert-name {
            font-size: 17px;
            font-weight: 600;
            color: #1e2a3a;
        }
        .expert-card .expert-titles {
            font-size: 13px;
            color: #5a6a7e;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .expert-card .expert-titles span {
            background: #edf2f9;
            padding: 0 10px;
            border-radius: 10px;
            font-size: 12px;
            color: #4a5a6e;
        }
        .expert-card .expert-dept {
            font-size: 13px;
            color: #5a6a7e;
        }
        .expert-card .expert-skill {
            font-size: 13px;
            color: #6a7a8e;
            line-height: 1.6;
            margin-top: 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .expert-card .expert-skill .detail {
            color: #08C7A3;
            cursor: pointer;
            font-weight: 500;
        }
        .expert-card .expert-btn {
            margin-top: 10px;
            align-self: flex-start;
            background: #08C7A3;
            color: #fff;
            border: none;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            position: absolute;
            top: 5px;
            right: 20px;
        }
        .expert-card .expert-btn:hover {
            background: #06A889;
        }

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

        /* ---- 科室导航 ---- */
        .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) {
            .guide-grid {
                grid-template-columns: 1fr;
            }
            .party-list {
                grid-template-columns: 1fr;
            }
            .review-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-top .container {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .header-auth {
                justify-content: flex-end;
                flex-direction: column;
                gap: 0;
            }
            .header-auth .divider {
                display: none;
            }

            

            .section-header {
                /* flex-direction: column; */
                align-items: flex-start;
            }
            .section-header h1 {
                font-size: 19px;
            }
            .dept-filter-wrapper {
                /* width: 100%; */
            }
            .dept-filter-select {
                width: 100%;
                min-width: unset;
            }

            .expert-section,
            .dept-section,
            .guide-section,
            .review-section {
                padding: 18px 16px 20px;
            }

            .expert-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .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;
            }

            .expert-card .expert-top {
                gap: 10px;
            }
            .expert-card .expert-avatar {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
            .expert-card .expert-name {
                font-size: 15px;
            }
            .expert-card .expert-btn {
                position: absolute;
                align-self: flex-start;
                margin-top: 8px;
            }

            .load-more-btn {
                padding: 8px 28px;
                font-size: 14px;
            }
        }

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

            

            .expert-grid {
                grid-template-columns: 1fr;
                gap: 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;
            }

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