* {
            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;
        }

        /* ============================================================
                   头部区域 (五层结构)
                   ============================================================ */

        

        /* ---- 第二层：搜索栏 (可切换) ---- */
        .header-search {
            background: #ffffff;
            border-bottom: 1px solid #eef1f6;
            padding: 12px 0;
        }
        .header-search .container {
            display: flex;
            align-items: center;
            gap: 0;
            max-width: 720px;
            margin: 0 auto;
            background: #f0f2f5;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            padding: 0;
        }
        .header-search .search-select {
            border: none;
            background: transparent;
            padding: 12px 10px 12px 20px;
            font-size: 14px;
            color: #1e2a3a;
            outline: none;
            cursor: pointer;
            font-weight: 500;
            min-width: 80px;
            border-right: 1px solid #dce3ec;
            flex-shrink: 0;
        }
        .header-search .search-select option {
            font-weight: 400;
        }
        .header-search .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 16px;
            font-size: 14px;
            outline: none;
            color: #1e2a3a;
            min-width: 80px;
        }
        .header-search .search-input::placeholder {
            color: #aab8c8;
        }
        .header-search .search-submit {
            background: #08C7A3;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            border-radius: 0 30px 30px 0;
            flex-shrink: 0;
        }
        .header-search .search-submit:hover {
            background: #06A889;
        }

        /* ---- 第三层：导航菜单 ---- */
        .header-nav {
            background: #ffffff;
            border-bottom: 1px solid #eef1f6;
            padding: 6px 0;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
        }
        .header-nav .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 22px;
            align-items: center;
            justify-content: space-around;
        }
        .header-nav a {
            font-size: 15px;
            font-weight: 500;
            color: #2c3e50;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .header-nav a:hover,
        .header-nav a.active {
            color: #08C7A3;
            border-bottom-color: #08C7A3;
        }
        .header-nav a.active {
            font-weight: 600;
        }
        .header-nav .nav-tag {
            background: #ff6b6b;
            color: #fff;
            font-size: 10px;
            padding: 0 8px;
            border-radius: 10px;
            font-weight: 500;
            margin-left: -8px;
            vertical-align: top;
        }

        /* ---- 第四层：Banner (轮播) ---- */
        .header-banner {
            background: #ffffff;
            padding: 16px 0 20px;
            border-bottom: 1px solid #eef1f6;
        }
        .banner-wrapper {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            background: #fff;
            touch-action: pan-y; /* 保留垂直滚动，水平拖动由JS接管 */
        }
        .banner-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .banner-slide {
            flex: 0 0 100%;
            min-height: 150px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            background: linear-gradient(135deg, #e8f9f5, #d0f0e8);
            position: relative;
            overflow: hidden;
        }
        .banner-slide img{ width:100%; height:100%;}
        .banner-slide:nth-child(2) {
            background: linear-gradient(135deg, #fef3e8, #fde8d0);
        }
        .banner-slide:nth-child(3) {
            background: linear-gradient(135deg, #e8edfe, #d0ddfa);
        }
        .banner-slide .banner-text {
            font-size: 28px;
            font-weight: 700;
            color: #1a2a4a;
            z-index: 1;
            flex: 1;
        }
        .banner-slide .banner-text small {
            font-weight: 400;
            font-size: 16px;
            color: #4a5a6e;
            display: block;
            margin-top: 6px;
        }
        .banner-slide .banner-deco {
            font-size: 70px;
            opacity: 0.15;
            color: #08C7A3;
            position: absolute;
            right: 20px;
            bottom: 10px;
        }
        /* 指示点 */
        .banner-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }
        .banner-dots span {
            width: 36px;
            height: 5px;
            border-radius: 4px;
            background: rgba(8, 199, 163, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
        .banner-dots span.active {
            background: #08C7A3;
            width: 50px;
        }

        /* ---- 第五层：四个大入口按钮 ---- */
        .header-entries {
            background: #ffffff;
            padding: 18px 0 30px;
            border-bottom: 1px solid #eef1f6;
        }
        .header-entries .entry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .header-entries .entry-item {
            background: #f8faff;
            border-radius: 16px;
            padding: 22px 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s;
            border: 1px solid #edf2f9;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .header-entries .entry-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(8, 199, 163, 0.15);
            border-color: #b8e0d6;
            background: #ffffff;
        }
        .header-entries .entry-item .entry-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #fff;
        }
        .header-entries .entry-item .entry-icon.blue {
            background: linear-gradient(135deg, #5abf9a, #08C7A3);
        }
        .header-entries .entry-item .entry-icon.green {
            background: linear-gradient(135deg, #36c97a, #1fab5e);
        }
        .header-entries .entry-item .entry-icon.orange {
            background: linear-gradient(135deg, #ff9a44, #f57c1a);
        }
        .header-entries .entry-item .entry-icon.purple {
            background: linear-gradient(135deg, #a78bfa, #7c5cfc);
        }
        .header-entries .entry-item .entry-label {
            font-size: 18px;
            font-weight: 600;
            color: #1e2a3a;
        }
        .header-entries .entry-item .entry-desc {
            font-size: 13px;
            color: #7a8a9e;
            margin-top: 2px;
        }

        /* ============================================================
                   内容区域
                   ============================================================ */

        .section {
            margin-top: 36px;
        }
        .section:first-of-type {
            margin-top: 28px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .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: 22px;
        }
        .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;
        }

        /* ===== 科室标签组 ===== */
        .tag-group {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            gap: 8px 14px;
            margin-bottom: 18px;
            padding: 4px 2px 8px 2px;
            border-bottom: 1px solid #eef1f6;
            scrollbar-width: thin;
            -ms-overflow-style: none;
            scroll-behavior: smooth;
        }
        .tag-group::-webkit-scrollbar {
            height: 4px;
        }
        .tag-group::-webkit-scrollbar-track {
            background: #edf0f5;
            border-radius: 4px;
        }
        .tag-group::-webkit-scrollbar-thumb {
            background: #c8d0dc;
            border-radius: 4px;
        }
        .tag-group::-webkit-scrollbar-thumb:hover {
            background: #a8b4c4;
        }
        .tag-group .tag {
            font-size: 14px;
            color: #4a5a6e;
            cursor: pointer;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            font-weight: 500;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .tag-group .tag:hover,
        .tag-group .tag.active {
            color: #08C7A3;
            border-bottom-color: #08C7A3;
        }
        .tag-group .tag.more {
            color: #8a9aa8;
        }
        .tag-group .tag.more:hover {
            color: #08C7A3;
        }

        /* ---- 卡片网格 ---- */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 22px;
        }
        .card-grid-2 {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }

        /* ---- 医院卡片 ---- */
        .hospital-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf0f5;
            transition: all 0.25s;
            display: flex;
            flex-direction: column;
            gap: 8px;
            cursor: pointer;
        }
        .hospital-card:hover {
            box-shadow: 0 8px 28px rgba(8, 199, 163, 0.08);
            border-color: #d0e8e0;
            transform: translateY(-2px);
        }
        .hospital-card .top-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .hospital-card .logo-placeholder {
            width: 52px;
            height: 52px;
            background: linear-gradient(145deg, #eef3fc, #dce6f5);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #08C7A3;
            flex-shrink: 0;
        }
        .hospital-card .logo-placeholder img{width:100%; height:100%;}
        .hospital-card .hospital-name {
            font-size: 17px;
            font-weight: 600;
            color: #1e2a3a;
        }
        .hospital-card .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            font-size: 12px;
            color: #4a5a6e;
            margin-top: 2px;
        }
        .hospital-card .badge-group span {
            display: inline-block;
            padding: 1px 12px;
            border-radius: 2px;
            font-weight: 500;
            font-size: 12px;
        }
        /* 第一个标签：主色背景 + 白色 */
        .hospital-card .badge-group span:first-child {
            background: #08C7A3;
            color: #ffffff;
        }
        /* 第二个标签：浅色背景 + 主色 */
        .hospital-card .badge-group span:last-child {
            background: #E6F9F4;
            color: #08C7A3;
        }
        /* 只有一个标签时，使用浅色背景 */
        .hospital-card .badge-group span:only-child {
            background: #E6F9F4;
            color: #08C7A3;
        }

        .hospital-card .info-row {
            font-size: 13px;
            color: #5a6a7e;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 4px;
        }
        .hospital-card .info-row i {
            color: #8a9aa8;
            width: 16px;
        }
        .hospital-card .phone {
            color: #1e2a3a;
            font-weight: 500;
        }

        /* ---- 医生卡片 ---- */
        .doctor-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 20px 18px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf0f5;
            transition: all 0.25s;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            cursor: pointer;
        }
        .doctor-card:hover {
            box-shadow: 0 8px 28px rgba(8, 199, 163, 0.08);
            border-color: #d0e8e0;
            transform: translateY(-2px);
        }
        .doctor-card .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(145deg, #eef3fc, #dce6f5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #08C7A3;
            flex-shrink: 0;
        }
        .doctor-card .avatar img {width:100%;height:100%;}
        .doctor-card .doc-info {
            flex: 1;
        }
        .doctor-card .doc-name {
            font-size: 16px;
            font-weight: 600;
            color: #1e2a3a;
        }
        .doctor-card .doc-title {
            font-size: 13px;
            color: #08C7A3;
            background: #E6F9F4;
            padding: 0 12px;
            border-radius: 12px;
            display: inline-block;
            margin-top: 2px;
            font-weight: 500;
        }
        .doctor-card .doc-hospital {
            font-size: 13px;
            color: #5a6a7e;
            margin-top: 4px;
        }
        .doctor-card .doc-desc {
            font-size: 13px;
            color: #6a7a8e;
            margin-top: 6px;
            line-height: 1.5;
        }
        .doctor-card .doc-desc .detail {
            color: #08C7A3;
            cursor: pointer;
            font-weight: 500;
        }

        /* ---- 科普卡片 ---- */
        .article-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 18px 20px 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf0f5;
            transition: all 0.25s;
            cursor: pointer;
        }
        .article-card:hover {
            box-shadow: 0 8px 28px rgba(8, 199, 163, 0.08);
            border-color: #d0e8e0;
            transform: translateY(-2px);
        }
        .article-card .art-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e2a3a;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .article-card .art-summary {
            font-size: 13px;
            color: #6a7a8e;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .article-card .art-summary .detail {
            color: #08C7A3;
            cursor: pointer;
            font-weight: 500;
        }

        /* ---- 互联网诊疗平台 ---- */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 16px;
            background: #ffffff;
            border-radius: 14px;
            padding: 24px 20px;
            border: 1px solid #edf0f5;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .platform-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 12px 4px;
            border-radius: 12px;
            transition: all 0.2s;
            cursor: pointer;
        }
        .platform-item:hover {
            background: #f5f8ff;
        }
        .platform-item .p-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: linear-gradient(145deg, #eef3fc, #dce6f5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #08C7A3;
            font-weight: 600;
        }
        .platform-item .p-name {
            font-size: 13px;
            color: #2c3e50;
            text-align: center;
            font-weight: 500;
        }

        /* ---- 最新资讯 ---- */
        .news-list {
            background: #ffffff;
            border-radius: 14px;
            padding: 18px 24px 10px;
            border: 1px solid #edf0f5;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .news-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f3f8;
            font-size: 14px;
            color: #1e2a3a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item:hover {
            color: #08C7A3;
        }
        .news-item .news-tag {
            background: #E6F9F4;
            color: #08C7A3;
            font-size: 12px;
            padding: 0 12px;
            border-radius: 12px;
            font-weight: 500;
            flex-shrink: 0;
        }

        /* ===== 底部 ===== */
        .footer {
            background: #ffffff;
            border-top: 1px solid #e8ecf1;
            padding: 28px 0 22px;
            margin-top: 40px;
            text-align: center;
            font-size: 13px;
            color: #8a9aa8;
        }
        .footer .footer-links {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .footer .footer-links a {
            color: #4a5a6e;
            transition: color 0.2s;
        }
        .footer .footer-links a:hover {
            color: #08C7A3;
        }

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

        @media (max-width: 992px) {
            .header-entries .entry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .banner-slide .banner-text {
                font-size: 22px;
            }
        }

        @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;
                position: absolute;
            }
            .header-auth .divider {
                display: none;
            }
            .header-search .container {
                max-width: 100%;
                border-radius: 24px;
                margin: 0 20px;
            }
            .header-search .search-select {
                padding: 10px 8px 10px 14px;
                font-size: 13px;
                min-width: 70px;
            }
            .header-search .search-submit {
                padding: 10px 18px;
                font-size: 14px;
            }
            .header-nav .container {
                gap: 4px 14px;
            }
            .header-nav a {
                font-size: 13px;
            }
            .header-banner {
                padding: 10px 0 14px;
            }
            .banner-slide {
                min-height: 120px;
            }
            .banner-slide .banner-text {
                font-size: 18px;
            }
            .banner-slide .banner-text small {
                font-size: 14px;
            }
            .banner-dots span {
                width: 28px;
                height: 4px;
            }
            .banner-dots span.active {
                width: 40px;
            }
            .header-entries .entry-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .header-entries .entry-item {
                padding: 16px 8px;
            }
            .header-entries .entry-item .entry-icon {
                width: 52px;
                height: 52px;
                font-size: 24px;
            }
            .header-entries .entry-item .entry-label {
                font-size: 16px;
            }

            .tag-group {
                gap: 8px 12px;
                padding: 4px 0 10px 0;
                margin-bottom: 14px;
                padding-right: 4px;
            }
            .tag-group .tag {
                font-size: 13px;
                padding: 4px 2px;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }
            .card-grid-2 {
                grid-template-columns: 1fr;
            }
            .platform-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .section-header h2 {
                font-size: 19px;
            }
            .doctor-card .avatar {
                width: 70px;
                height: 70px;
                font-size: 30px;
            }
            .news-item {
                align-items: flex-start;
                gap: 4px;
            }
            .banner-slide .banner-deco {
                font-size: 50px;
                right: 10px;
                bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            .platform-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .header-entries .entry-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .header-nav a {
                font-size: 12px;
                padding: 6px 0;
            }
            .header-nav .container {
                gap: 2px 10px;
            }
            .header-logo .brand {
                font-size: 20px;
            }
            .header-logo .sub-title {
                font-size: 12px;
            }
            .header-search .search-select {
                min-width: 60px;
                font-size: 12px;
                padding: 8px 6px 8px 10px;
            }
            .header-search .search-input {
                font-size: 13px;
                padding: 10px 12px;
            }
            .header-search .search-submit {
                padding: 10px 14px;
                font-size: 13px;
            }
            .banner-slide .banner-text {
                font-size: 16px;
            }
            .banner-slide .banner-text small {
                font-size: 12px;
            }
            .tag-group {
                gap: 6px 10px;
            }
            .tag-group .tag {
                font-size: 12px;
            }
            .banner-dots span {
                width: 22px;
                height: 4px;
            }
            .banner-dots span.active {
                width: 30px;
            }
        }

        /* 辅助 */
        .text-ellipsis {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }