@charset "utf-8";
        /* CSS Document */

        * {
            text-decoration: none;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f5f7fc;
            scroll-behavior: smooth;
        }

        /* ========= 第二模块: 轮播图 + 悬浮三个卡片 ========= */
        .carousel-section {
            position: relative;
            margin-top: 0px;
            background: #eef2f5;
        }
        .floating-cards {
            position: absolute;
            bottom: 5vw;
            left: 50%;
            transform: translateX(-50%);
            z-index: 30;
            display: flex;
            gap: 24px;
            width: 90%;
            max-width: 1000px;
            justify-content: center;
            flex-wrap: wrap;
            pointer-events: auto;
        }
        .service-card {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(2px);
            border-radius: 20px;
            padding: 23px 28px;
            text-align: center;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
            width: 220px;
            transition: transform 0.25s ease, box-shadow 0.2s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 240, 0.6);
        }
        .service-card:hover {
            transform: translateY(-6px);
            background: white;
            box-shadow: 0 24px 40px -12px rgba(0, 0, 0, 0.25);
        }
        .card-icon {
            font-size: 35px;
            color: #f7bd8e;
            margin-bottom: 10px;
        }
        .service-card h4 {
            font-size: 18px;
            font-weight: normal;
            color: #333;
            letter-spacing: 0.5px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            flex: 0 0 100%;
            position: relative;
            height: 660px;
            background-size: cover;
            background-position: center;
        }
        .slide-title {
            position: absolute;
            right: 0;
            text-align: center;
            color: white;
            padding: 12px 20px;
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
            width: 100%;
            margin: 0 auto;
            border-radius: 60px;
            top: 13vw;
            left: 0%;
            transform: translateX(0%);
            white-space: nowrap;
        }
        @media (max-width: 760px) {
            .slide-title {
                font-size: 1.2rem;
                white-space: normal;
                width: 80%;
                text-align: center;
                padding: 8px 16px;
            }
            .slide {
                height: 320px;
            }
            .floating-cards {
                top: 10px;
                gap: 12px;
            }
            .service-card {
                padding: 12px 16px;
                width: 100px;
            }
            .card-icon {
                font-size: 28px;
            }
            .service-card h4 {
                font-size: 12px;
            }
        }
        .carousel-dots {
            position: absolute;
            bottom: 18px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 20;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }
        .dot.active {
            background-color: #4671fb;
            width: 28px;
            border-radius: 12px;
            box-shadow: 0 0 5px rgba(27, 140, 110, 0.6);
        }

        /* ========= 第三模块：医院新闻 (左右结构) ========= */

        .news-grid {
            display: grid !important;
            grid-template-columns: 0.7fr 1fr 0.7fr !important;
            gap: 28px !important;
            align-items: start !important;
        }

        .six-info-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            background: transparent;
        }

        .info-card-item {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            padding-bottom: 16px;
            border: 0px solid rgba(0, 110, 80, 0.1);
        }

        .info-card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 110, 80, 0.12);
            border-color: rgba(44, 155, 119, 0.3);
        }

        .card-img-top {
            width: 100%;
            height: 110px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .card-img-top i {
            font-size: 35px;
            color: #e37318;
            filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.05));
        }

        .card-text-area {
            padding: 14px 8px 6px;
        }

        .card-text-area h4 {
            font-size: 18px;
            font-weight: normal;
            margin: 0 0 15px 0;
            color: #333;
        }

        .card-text-area p {
            font-size: 0.75rem;
            color: #6c7a89;
            margin: 0;
            line-height: 1.4;
        }

        .info-card-item.double-width {
            grid-column: span 2;
            background-size: cover !important;
        }

        @media (max-width: 1100px) {
            .news-grid {
                grid-template-columns: 260px 1fr 300px !important;
                gap: 20px !important;
            }
        }

        @media (max-width: 900px) {
            .news-grid {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }
            .six-info-cards {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }
            .info-card-item.double-width {
                grid-column: span 2;
            }
        }

        .news-module {
            padding: 5vw 0;
            background: #f5f7fc;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 45px;
            flex-wrap: wrap;
            gap: 12px;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 25px;
        }
        .section-header h2 {
            font-size: 32px;
            color: #333;
            position: relative;
            padding-left: 0px;
            border-left: 0px solid #4671fb;
            font-weight: 700;
        }
        .more-link {
            color: #333;
            font-weight: normal;
            text-decoration: none;
            font-size: 18px;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .more-link:hover {
            color: #0f6b54;
            gap: 12px;
        }

        .featured-news-slider {
            background: white;
            border-top-right-radius: 50px;
            border-bottom-left-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: 0.2s;
        }
        .slider-container {
            position: relative;
            overflow: hidden;
        }
        .slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .slider-item {
            flex: 0 0 100%;
            background: white;
        }
        .slider-img {
            height: 290px;
            background-size: cover;
            background-position: center;
            width: 100%;
        }
        .slider-content {
            padding: 50px 24px 28px 50px;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .news-category {
            color: #4671fb;
            font-size: 16px;
            font-weight: normal;
            padding: 4px 0px;
            border-radius: 0px;
            display: inline-block;
        }
        .news-date {
            font-size: 16px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .slider-content h3 {
            font-size: 1.4rem;
            font-weight: normal;
            color: #333;
            line-height: 1.4;
            margin-top: 6px;
            transition: 0.2s;
            cursor: pointer;
        }
        .slider-content h3:hover {
            color: #4671fb;
        }
        .slider-dots {
            position: relative;
            top: -12vw;
            z-index: 999;
            text-align: center;
            padding: 0 0 0px 0;
        }
        .slider-dots .dot {
            background-color: #cfdfed;
            width: 8px;
            height: 8px;
            margin: 0 6px;
        }
        .slider-dots .dot.active {
            background-color: #4671fb;
            width: 24px;
        }

        .news-list-right {
            border-radius: 28px;
            padding: 0px 0px 20px 0px;
        }
        .news-item-list {
            display: flex;
            flex-direction: column;
        }
        .news-list-item {
            margin-bottom: 19px;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 0 0 19px 0;
            border-bottom: 1px solid #ddd;
            transition: 0.2s;
        }
        .news-list-item:last-child {
            border-bottom: none;
        }
        .list-thumb {
            background: #fff;
            width: 120px;
            height: 120px;
            border-top-left-radius: 20px;
            border-bottom-right-radius: 20px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
            transition: 0.2s;
        }
        .news-list-item:hover .list-thumb {
            transform: scale(1.02);
        }
        .timebox {
            width: 120px;
            height: 120px;
            border: 0px solid #979797;
            text-align: center;
        }
        .date {
            color: #333;
            font-weight: 600;
            font-size: 28px;
            display: block;
            margin: 1.5rem 0px 0px 0px;
        }
        .year {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }
        .list-info {
            flex: 1;
        }
        .list-date {
            font-size: 14px;
            color: #666;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .list-title {
            font-size: 18px;
            font-weight: normal;
            margin: 13px 0 22px 0;
            color: #333;
            line-height: 1.4;
            cursor: pointer;
            transition: 0.2s;
        }
        .list-title:hover {
            color: #4671fb;
        }
        .more-btn {
            background: transparent;
            border: 0px solid #dce5ef;
            padding: 6px 0px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 500;
            color: #4f6f8f;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .more-btn i {
            font-size: 11px;
        }
        .more-btn:hover {
            color: #4671fb;
        }
        .right-footer-more {
            text-align: center;
            margin-top: 12px;
            padding-top: 16px;
        }
        .right-footer-more .more-link {
            color: #4671fb;
            font-weight: 600;
        }
        @media (max-width: 980px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .slider-img {
                height: 200px;
            }
            .list-thumb {
                width: 70px;
                height: 70px;
            }
        }
        @media (max-width: 550px) {
            .news-list-item {
                flex-wrap: wrap;
                gap: 12px;
            }
            .list-info {
                width: 100%;
            }
            .more-btn {
                margin-top: 4px;
            }
            .slider-content {
                padding: 16px;
            }
            .slider-content h3 {
                font-size: 1.2rem;
            }
        }

        /* ========= 第四模块：科室导航（选项卡+背景图+下方固定仪器） ========= */
        .keshi {
            max-width: 86%;
        }
        .dept-tab-module {
            position: relative;
            background: url('../images/keshi.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: local;
            padding: 6vw 0;
            margin: 0 0%;
            width: 100%;
        }
        .dept-tab-container {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(2px);
            border-radius: 20px;
            padding: 50px 60px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
        }
        .dept-tab-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }
        .tab-categories {
            flex: 0 0 240px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .tab-categories h3 {
            font-size: 32px;
            color: #333;
        }
        .tab-categories p {
            ont-size: 16px;
            color: #666;
            padding-bottom: 30px;
        }
        .tab-btn {
            border: 0px solid rgba(27, 140, 110, 0.3);
            padding: 8px 0px;
            border-radius: 0px;
            font-weight: 500;
            font-size: 18px;
            text-align: left;
            cursor: pointer;
            transition: all 0.25s;
            color: #333;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .tab-btn i {
            font-size: 20px;
            color: #4671fb;
            width: 28px;
        }
        .tab-btn:hover {
            font-weight: 600;
            color: #4671fb;
        }
        .tab-btn.active {
            font-weight: 600;
            color: #4671fb;
        }
        .tab-btn.active i {
            color: white;
        }
        .tab-content-area {
            flex: 1;
            padding: 28px 30px;
            transition: all 0.2s;
        }
        .disease-name {
            border-bottom: 1px dashed #ddd;
            padding-bottom: 18px;
            margin-bottom: 24px;
        }
        .disease-name h3 {
            font-size: 28px;
            color: #1b2f44;
            font-weight: 800;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .disease-name h3 i {
            color: #4671fb;
            font-size: 32px;
        }
        .disease-desc {
            margin-top: 12px;
            color: #2c4a6e;
            font-size: 15px;
            line-height: 1.5;
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
        }
        .disease-tag {
            border: 0px solid #ddd;
            padding: 10px;
            border-radius: 50%;
            font-size: 16px;
            font-weight: 500;
            height: 100px;
            width: auto;
            text-align: center;
            color: #666;
            line-height: 2vw;
        }
        .disease-tag img {
            display: block;
            height: 80px;
            margin: 6px auto;
            background: white;
            border-bottom-left-radius: 20px;
            border-top-right-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }
        .instruments-section {
            margin-top: 0vw;
        }
        .instruments-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 20px;
            color: #1b2f44;
            border-left: 4px solid #4671fb;
            padding-left: 16px;
        }
        .instruments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 0fr));
            gap: 20px;
        }
        .instrument-item {
            text-align: center;
            transition: all 0.2s;
            cursor: default;
        }
        .instrument-item:hover {
            transform: translateY(-5px);
        }
        .instrument-icon {
            font-size: 42px;
            color: #4671fb;
            margin-bottom: 12px;
        }
        .instrument-icon img {
            width: 100%;
            border-top-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }
        .instrument-item span {text-shadow: 2px 2px 4px #000000;
            display: block;
            font-weight: bold;
            font-size: 16px;
            color: #ffff;
            position: relative;
            top: -3.5vw;
        }
        @media (max-width: 860px) {
            .dept-tab-grid {
                flex-direction: column;
            }
            .tab-categories {
                flex-direction: row;
                flex-wrap: wrap;
                flex: auto;
            }
            .tab-btn {
                flex: 1 0 auto;
                justify-content: center;
            }
            .disease-name h3 {
                font-size: 22px;
            }
        }

        /* ========= 第五模块：专家团队 (左中右结构) ========= */
        .expert-team-module {
            padding: 6vw 0;
            background: #ffffff;
        }
        .expert-container {
            background: #ffffff;
            border-radius: 0px;
            overflow: hidden;
            padding: 40px 0px 0 0;
        }
        .expert-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .expert-left {
            flex: 0 0 460px;
        }
        .expert-thumb-list {
            border-bottom: 1px dashed #ddd;
            padding-bottom: 16px;
            display: block;
            overflow: hidden;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 32px;
        }
        .expert-thumb-item {
            float: left;
            width: 230px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            padding: 10px 13px;
            border-radius: 60px;
            transition: all 0.2s;
            background: #f8fafc;
        }
        .expert-thumb-item.active {
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            box-shadow: 0 4px 12px rgba(27, 140, 110, 0.2);
            border-left: 0px solid #4671fb;
        }
        .expert-thumb-item.active h4 {
            color: #fff;
        }
        .expert-thumb-item.active p {
            color: #fff;
        }
        .thumb-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .thumb-info h4 {
            font-size: 18px;
            font-weight: normal;
            color: #333;
        }
        .thumb-info p {
            line-height: 1.2vw;
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        .fixed-info {
            background: #f8fafc;
            border-radius: 20px;
            padding: 10px 10px;
            margin-top: 0px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }
        .fixed-info p {
            margin: 8px 0;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            padding: 0px 12px;
        }
        .fixed-info i {
            width: 28px;
            color: #4671fb;
            font-size: 18px;
        }
        .slogan {
            font-size: 18px !important;
            color: #333 !important;
            font-weight: 700;
            color: #4671fb;
            background: #f8fafc;
            padding: 15px 12px !important;
            border-radius: 28px;
            text-align: center;
        }
        .expert-middle {
            flex: 0 0 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .expert-large-img {
            width: 60%;
            background: #f0f2f5;
        }
        .expert-right {
            flex: 1;
            min-width: 260px;
        }
        .expert-name {
            font-size: 32px;
            font-weight: 800;
            color: #111;
            margin-bottom: 8px;
        }
        .expert-title {
            font-size: 18px;
            color: #666;
            font-weight: normal;
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 15px;
        }
        .expert-bio {
            background: #fff;
            padding: 18px 0px;
            border-radius: 0px;
            margin-bottom: 20px;
            line-height: 1.8;
            color: #666;
            font-size: 16px;
        }
        .expert-skills {
            margin-bottom: 30px;
        }
        .skills-title {
            font-weight: 700;
            margin-bottom: 14px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .skill-item {
            background: #f0f6fc;
            border-radius: 40px;
            padding: 8px 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }
        .skill-item i {
            color: #4671fb;
            font-size: 16px;
        }
        .appointment-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-top: 60px;
        }
        .btn-outline,
        .btn-primary {
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: 0.2s;
            border: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            color: white;
            box-shadow: 0 5px 12px rgba(27, 140, 110, 0.3);
        }
        .btn-primary:hover {
            background: #0f6b54;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: white;
            border: 1px solid #4671fb;
            color: #4671fb;
        }
        .btn-outline:hover {
            background: #4671fb10;
            border-color: #0f6b54;
        }
        @media (max-width: 960px) {
            .expert-grid {
                flex-direction: column;
            }
            .expert-left,
            .expert-middle {
                flex: auto;
            }
            .expert-left {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                align-items: center;
            }
            .expert-thumb-list {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            .fixed-info {
                width: 100%;
            }
            .expert-middle {
                text-align: center;
            }
            .expert-large-img {
                max-width: 280px;
            }
        }

        /* ========= 第六模块：诊疗服务 ========= */
        .service-module {
            padding: 6vw 0;
            background: url(../images/fuwubg.jpg);
        }
        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0px;
            margin-bottom: 60px;
        }
        .service-card-item {
            background: #f9fbfe;
            border-radius: 0px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .service-card-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(27, 140, 110, 0.15);
        }
        .card-img-top {
            width: 100%;
            height: 77px;
            margin-top: 0px;
            object-fit: cover;
        }
        .card-img-top1 {
            width: 100%;
            height: 220px;
            margin-top: 0px;
            object-fit: cover;
        }
        .card-label {
            padding: 63px 16px;
            font-size: 22px;
            font-weight: normal;
            color: #fff;
            background: white;
            border-top: 0px solid #4671fb;
        }
        .card-label dd {
            background: #fff;
            width: 30px;
            height: 2px;
            margin: 20px auto;
        }
        .card-label a {
            text-decoration: none;
            font-size: 14px;
            color: #fff;
        }

        .bianmin {
            width: 100%;
            background: #fff;
            padding: 2vw 0 2vw 0;
            border-top: 1px dashed #ddd;
            margin-top: 0vw;
        }

        .detail-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 20px;
        }
        .detail-service-item {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 20px;
            background: #f8fafc;
            border-radius: 28px;
            padding: 30px 26px;
            transition: all 0.2s;
            cursor: pointer;
        }
        .detail-service-item:hover {
            background: #eef5f1;
            transform: translateX(5px);
        }
        .detail-img {
            width: 60px;
            height: 60px;
            border-radius: 0px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .detail-text h4 {
            font-size: 18px;
            font-weight: 700;
            color: #111;
            margin-bottom: 6px;
        }
        .detail-text p {
            font-size: 13px;
            color: #5a6e8a;
            line-height: 1.4;
        }
        @media (max-width: 1024px) {
            .service-cards-grid,
            .detail-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 640px) {
            .service-cards-grid,
            .detail-services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========= 新增轮播板块样式 (按钮悬浮于图片区域内部) ========= */
        .carousel-showcase {
            padding: 6vw 0 3vw 0;
            background: #fff;
        }
        .section-header-light {
            margin-bottom: 32px;
        }
        .section-header-light h2 {
            font-size: 28px;
            color: #1e3a5f;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            font-weight: 700;
        }
        .section-header-light h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: #0b6e4f;
            border-radius: 4px;
        }
        .image-slider-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }
        .slider-scroll-area {
            flex: 1;
            overflow-x: auto;
            border-radius: 28px;
        }
        .slider-scroll-area::-webkit-scrollbar {
            height: 6px;
        }
        .slider-track-flex {
            display: flex;
            gap: 24px;
            flex-wrap: nowrap;
        }
        .image-card {
            flex: 0 0 calc((100% - (3 * 24px)) / 5);
            min-width: 220px;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            background: white;
            position: relative;
        }
        .image-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 36px -12px rgba(0, 0, 0, 0.25);
        }
        .card-img-bg {
            width: 100%;
            height: 10vw;
            background-size: cover !important;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card-img-bg .img-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .image-title-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
            padding: 20px 16px 16px;
            text-align: left;
        }
        .image-title-overlay h4 {
            color: #fff;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 6px;
            letter-spacing: 1px;
        }
        .image-title-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }

        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 60px;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 12;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .slider-nav-btn:hover {
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            border-color: white;
            transform: translateY(-50%) scale(1.02);
        }
        .slider-nav-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
            background: rgba(0, 0, 0, 0.4);
        }
        .prev-btn {
            left: 16px;
        }
        .next-btn {
            right: 16px;
        }

        @media (max-width: 1000px) {
            .image-card {
                flex: 0 0 calc((100% - (2 * 24px)) / 3);
            }
            .slider-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }
        @media (max-width: 768px) {
            .image-card {
                flex: 0 0 calc((100% - (1 * 24px)) / 2);
            }
            .prev-btn {
                left: 8px;
            }
            .next-btn {
                right: 8px;
            }
        }
        @media (max-width: 550px) {
            .image-card {
                flex: 0 0 85%;
            }
        }

        /* ================================================================ */
        /* ========= 移动端完美适配（仅针对 768px 及以下设备） ========= */
        /* ================================================================ */
        @media (max-width: 768px) {

            /* ----- 全局容器 & 通用 ----- */
            .container {
                width: 94% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: auto !important;
                margin-right: auto !important;
                max-width: 94% !important;
            }

            /* ----- 所有文字字号统一用 vw ----- */
            body,
            p,
            span,
            div,
            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            a,
            li,
            button,
            input,
            textarea,
            label,
            .section-header h2,
            .more-link,
            .service-card h4,
            .card-text-area h4,
            .card-text-area p,
            .news-category,
            .news-date,
            .slider-content h3,
            .list-date,
            .list-title,
            .more-btn,
            .tab-categories h3,
            .tab-categories p,
            .tab-btn,
            .disease-name h3,
            .disease-tag,
            .instrument-item span,
            .expert-name,
            .expert-title,
            .expert-bio,
            .skill-item,
            .fixed-info p,
            .slogan,
            .card-label,
            .card-label a,
            .detail-text h4,
            .detail-text p,
            .image-title-overlay h4,
            .image-title-overlay p,
            .btn-outline,
            .btn-primary {
                font-size:4vw !important;
            }

            /* 标题类稍大 */
            .section-header h2,
            .tab-categories h3,
            .disease-name h3,
            .expert-name,
            .card-label {
                font-size: 4.8vw !important;
            }

            /* 小字类稍小 */
            .card-text-area p,
            .news-date,
            .list-date,
            .more-btn,
            .detail-text p,
            .fixed-info p,
            .thumb-info p {
                font-size: 2.8vw !important;
            }

            /* 超大标题 */
            .slide-title {
                font-size: 4.5vw !important;
                top: 12vw !important;
                padding: 6px 12px !important;
                width: 90% !important;
                border-radius: 30px !important;
            }

            /* ----- 轮播图 ----- */
            .carousel-section .slide {
                height: 48vw !important;
                min-height: 220px !important;
            }
            .carousel-section .floating-cards {
                bottom: 2vw !important;
                gap: 2.5vw !important;
                width: 96% !important;
            }
            .carousel-section .service-card {
                width: 28vw !important;
                padding: 2.5vw 1.5vw !important;
                border-radius: 3.5vw !important;
                background: rgba(255, 255, 255, 0.96) !important;
            }
            .carousel-section .card-icon {
                font-size: 5vw !important;
                margin-bottom: 0.5vw !important;
            }
            .carousel-section .service-card h4 {
                font-size: 2.6vw !important;
                letter-spacing: 0 !important;
            }
            .carousel-dots .dot {
                width: 2.5vw !important;
                height: 2.5vw !important;
                margin: 0 1.5vw !important;
            }
            .carousel-dots .dot.active {
                width: 6vw !important;
                border-radius: 3vw !important;
            }

            /* ----- 新闻模块 ----- */
            .news-module {
                padding: 6vw 0 !important;
            }
            .news-grid {
                grid-template-columns: 1fr !important;
                gap: 5vw !important;
            }

            /* 五个卡片：两列 */
            .six-info-cards {
                grid-template-columns: 1fr 1fr !important;
                gap: 2.5vw !important;
            }
            .info-card-item {
                border-radius: 3vw !important;
                padding-bottom: 2vw !important;
            }
            .info-card-item .card-img-top {
                height: 18vw !important;
            }
            .info-card-item .card-img-top i {
                font-size: 7vw !important;
            }
            .info-card-item .card-text-area {
                padding: 2vw 1vw 1vw !important;
            }
            .info-card-item .card-text-area h4 {
                font-size: 3.2vw !important;
                margin-bottom: 0 !important;
            }
            .info-card-item.double-width {
                grid-column: span 2 !important;
                min-height: 18vw !important;
                background-size: cover !important;
                background-position: center !important;
            }
            .info-card-item.double-width .card-img-top {
                height: 0 !important;
                min-height:30vw !important;
            }
            .info-card-item.double-width .card-text-area h4 {
                font-size: 0 !important;
            }

            /* 焦点新闻轮播 */
            .featured-news-slider {
                border-radius: 4vw !important;
                border-top-right-radius: 8vw !important;
                border-bottom-left-radius: 8vw !important;
            }
            .slider-img {
                height: 38vw !important;
                min-height: 160px !important;
            }
            .slider-content {
                padding: 3vw 4vw 4vw !important;
            }
            .news-meta {
                gap: 2vw !important;
                margin-bottom: 1.5vw !important;
            }
            .news-category {
                font-size:3.5vw !important;
                padding: 0.5vw 0 !important;
            }
            .news-date {
                font-size:3.5vw !important;
            }
            .slider-content h3 {
                font-size: 3.6vw !important;
                margin-top: 0.5vw !important;
                line-height: 1.5 !important;
            }
            .slider-dots {
                top: -8vw !important;
                padding: 0 !important;
            }
            .slider-dots .dot {
                width: 2vw !important;
                height: 2vw !important;
                margin: 0 1.2vw !important;
            }
            .slider-dots .dot.active {
                width: 5vw !important;
            }

            /* 右侧新闻列表 */
            .news-list-right {
                padding: 0 !important;
            }
            .news-list-item {
                gap: 3vw !important;
                padding: 0 0 3vw 0 !important;
                margin-bottom: 3vw !important;
                flex-wrap: nowrap !important;
                align-items: center !important;
            }
            .list-thumb {
                width: 20vw !important;
                height: 20vw !important;
                border-radius: 3vw !important;
                flex-shrink: 0 !important;
            }
            .timebox {
                width: 20vw !important;
                height: 20vw !important;
            }
            .timebox .date {
                font-size: 5vw !important;
                margin-top: 2vw !important;
            }
            .timebox .year {
                font-size: 2.6vw !important;
            }
            .list-info {
                flex: 1 !important;
                min-width: 0 !important;
            }
            .list-date {
                font-size:3vw !important;
                gap: 1.5vw !important;
            }
            .list-title {
                font-size: 3.2vw !important;
                margin: 1vw 0 1.5vw 0 !important;
                line-height: 1.4 !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                display: -webkit-box !important;
                -webkit-line-clamp: 2 !important;
                -webkit-box-orient: vertical !important;
            }
            .more-btn {
                font-size: 2.4vw !important;
                padding: 0.5vw 0 !important;
            }
            .more-btn i {
                font-size: 2vw !important;
            }

            /* ----- 科室导航 ----- */
            .dept-tab-module {
                padding: 8vw 0 !important;
            }
            .keshi {
                max-width: 96% !important;
            }
            .dept-tab-container {
                padding: 4vw 4vw !important;
                border-radius: 0 !important;
            }
            .dept-tab-grid {
                flex-direction: column !important;
                gap: 3vw !important;
            }
            .tab-categories {
                flex: auto !important;
                flex-direction: row !important;
                flex-wrap: wrap !important;
                gap: 1.5vw !important;
            }
            .tab-categories h3 {
                font-size: 4.8vw !important;
                width: 100% !important;
            }
            .tab-categories p {
                font-size:3.5vw !important;
                width: 100% !important;
                padding-bottom: 2vw !important;
            }
            .tab-btn {
                flex: 0 0 auto !important;
                font-size: 3vw !important;
                padding: 1.5vw 3vw !important;
                border-radius: 6vw !important;
                background: rgba(255, 255, 255, 0.7) !important;
                border: 1px solid #e0e7ef !important;
                justify-content: center !important;
                gap: 1.5vw !important;
            }
            .tab-btn i {
                font-size: 3.5vw !important;
                width: auto !important;
            }
            .tab-btn.active {
                background: linear-gradient(135deg, #2eb4fc, #1366f7) !important;
                color: #fff !important;
                border-color: #1366f7 !important;
                 font-size: 3vw !important;
            }
            .tab-btn.active i {
                color: #fff !important;
            }
            .tab-content-area {
                padding: 3vw 2vw !important;
            }
            .disease-name {
                padding-bottom: 2vw !important;
                margin-bottom: 2vw !important;
            }
            .disease-name h3 {
                font-size: 4.2vw !important;
                gap: 2vw !important;
            }
            .disease-name h3 i {
                font-size: 5vw !important;
            }
            .disease-desc {
                gap: 2vw !important;
                margin-top: 1.5vw !important;
            }
            .disease-tag {
                height: auto !important;
                padding: 1.5vw 2vw !important;
                font-size: 2.8vw !important;
                line-height: 3vw !important;
                border-radius: 3vw !important;
                display: flex !important;
                align-items: center !important;
                gap: 1.5vw !important;
                flex: 0 0 auto !important;
            }
            .disease-tag img {
                height: 8vw !important;
                width: 8vw !important;
                margin: 0 !important;
                padding: 1.5vw !important;
                border-radius: 2vw !important;
                flex-shrink: 0 !important;
            }
            .instruments-section {
                margin-top: 5vw !important;
            }
            .instruments-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2.5vw !important;
            }
            .instrument-item {
                background: rgba(255, 255, 255, 0.85) !important;
                border-radius: 3vw !important;
                padding: 2vw 1vw !important;
                box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.08) !important;
            }
            .instrument-icon {
                font-size: 6vw !important;
                margin-bottom: 0.5vw !important;
            }
            .instrument-icon img {
                border-radius: 2.5vw !important;
                width: 100% !important;
            }
            .instrument-item span {
                font-size: 2.6vw !important;
                top: -1vw !important;
                color: #333 !important;
                font-weight: 600 !important;
                padding: 1vw 0 !important;
                background: rgba(255, 255, 255, 0.8) !important;
                border-radius: 2vw !important;
                margin-top: 0.5vw !important;
            }

            /* ----- 专家团队 ----- */
            .expert-team-module {
                padding: 6vw 0 !important;
            }
            .expert-container {
                padding: 3vw 0 0 0 !important;
            }
            .expert-grid {
                flex-direction: column !important;
                gap: 3vw !important;
            }
            .expert-left {
                flex: auto !important;
                width: 100% !important;
                display: block !important;
            }
            .expert-thumb-list {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                gap: 2vw !important;
                padding-bottom: 2vw !important;
                margin-bottom: 2.5vw !important;
                border-bottom: 1px dashed #ddd !important;
                -webkit-overflow-scrolling: touch !important;
                scrollbar-width: none !important;
            }
            .expert-thumb-list::-webkit-scrollbar {
                display: none !important;
            }
            .expert-thumb-item {
                float: none !important;
                flex: 0 0 34vw !important;
                min-width: 140px !important;
                padding: 1.5vw 2vw !important;
                border-radius: 8vw !important;
                margin-bottom: 0 !important;
                flex-direction: column !important;
                text-align: center !important;
                gap: 0.5vw !important;
                background: #f8fafc !important;
                border: 1px solid #eef2f7 !important;
            }
            .thumb-img {
                width: 10vw !important;
                height: 10vw !important;
                min-width: 44px !important;
                min-height: 44px !important;
                border-radius: 50% !important;
            }
            .thumb-info h4 {
                font-size: 3vw !important;
                white-space: nowrap !important;
            }
            .thumb-info p {
                font-size: 2.2vw !important;
                line-height: 1.2 !important;
                white-space: nowrap !important;
            }
            .fixed-info {
                border-radius: 3vw !important;
                padding: 2vw 2vw !important;
            }
            .fixed-info p {
                font-size: 2.8vw !important;
                padding: 0.5vw 2vw !important;
                gap: 2vw !important;
            }
            .fixed-info i {
                font-size: 3.5vw !important;
                width: 5vw !important;
            }
            .slogan {
                font-size: 3.2vw !important;
                padding: 2vw 3vw !important;
                border-radius: 4vw !important;
            }
            .expert-middle {
                flex: auto !important;
                padding: 14vw 0 !important;
            }
            .expert-large-img {
                width: 60% !important;
                max-width: 240px !important;
                border-radius: 4vw !important;
            }
            .expert-right {
                flex: auto !important;
                min-width: 0 !important;
                padding: 0 0.5vw !important;
            }
            .expert-name {
                font-size: 4.8vw !important;
                margin-bottom: 0.5vw !important;
            }
            .expert-title {
                font-size: 3vw !important;
                padding-bottom: 2vw !important;
                margin-bottom: 2vw !important;
            }
            .expert-bio {
                font-size: 3vw !important;
                padding: 2vw 0 !important;
                line-height: 1.6 !important;
                margin-bottom: 2vw !important;
            }
            .skills-list {
                gap: 1.5vw !important;
            }
            .skill-item {
                font-size:3vw !important;
                padding: 1.2vw 3vw !important;
                border-radius: 6vw !important;
                gap: 1.5vw !important;
            }
            .skill-item i {
                font-size: 2.8vw !important;
            }
            .appointment-buttons {
                margin-top: 4vw !important;
                gap: 2.5vw !important;
            }
            .btn-outline,
            .btn-primary {
                font-size: 3vw !important;
                padding: 2vw 5vw !important;
                border-radius: 8vw !important;
            }

            /* ----- 诊疗服务 ----- */
            .service-module {
                padding: 6vw 0 !important;
            }
            .service-cards-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2.5vw !important;
                margin-bottom: 5vw !important;
            }
            .service-card-item {
                border-radius: 3vw !important;
                box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.06) !important;
            }
            .card-img-top1 {
                height: 28vw !important;
            }
            .card-label {
                padding: 3vw 2vw !important;
                font-size: 3.8vw !important;
            }
            .card-label dd {
                width: 5vw !important;
                height: 0.3vw !important;
                margin: 1.5vw auto !important;
            }
            .card-label a {
                font-size: 2.6vw !important;
            }
            .detail-services-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2.5vw !important;
                margin-top: 2vw !important;
            }
            .detail-service-item {
                padding: 3vw 3vw !important;
                border-radius: 4vw !important;
                gap: 2.5vw !important;
                flex-direction: column !important;
                text-align: center !important;
                background: #f8fafc !important;
            }
            .detail-img {
                width: 12vw !important;
                height: 12vw !important;
                min-width: 48px !important;
                min-height: 48px !important;
            }
            .detail-text h4 {
                font-size: 3.2vw !important;
                margin-bottom: 0.5vw !important;
            }
            .detail-text p {
                font-size: 2.4vw !important;
            }

            /* ----- 荣誉资质轮播 ----- */
            .carousel-showcase {
                padding: 6vw 0 4vw 0 !important;
            }
            .image-slider-wrapper {
                padding: 0 0 !important;
            }
            .slider-scroll-area {
                border-radius: 3vw !important;
            }
            .slider-track-flex {
                gap: 2.5vw !important;
            }
            .image-card {
                flex: 0 0 calc((100% - 2.5vw) / 2) !important;
                min-width: 0 !important;
                border-radius: 3vw !important;
            }
            .card-img-bg {
                height: 32vw !important;
                min-height: 140px !important;
            }
            .slider-nav-btn {
                width: 8vw !important;
                height: 8vw !important;
                min-width: 36px !important;
                min-height: 36px !important;
                font-size: 3.5vw !important;
                border-radius: 50% !important;
                background: rgba(0, 0, 0, 0.5) !important;
            }
            .prev-btn {
                left: 1.5vw !important;
            }
            .next-btn {
                right: 1.5vw !important;
            }
            .slider-nav-btn.disabled {
                opacity: 0.2 !important;
            }

            /* ----- 便民服务 (bianmin) ----- */
            .bianmin {
                padding: 4vw 0 !important;
                margin-top: 0 !important;
            }
            .bianmin .detail-services-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2.5vw !important;
                margin-top: 0 !important;
            }
            .bianmin .detail-service-item {
                padding: 3vw 2vw !important;
                border-radius: 4vw !important;
                flex-direction: column !important;
                text-align: center !important;
                gap: 1.5vw !important;
                background: #f8fafc !important;
            }
            .bianmin .detail-img {
                width: 12vw !important;
                height: 12vw !important;
                min-width: 44px !important;
                min-height: 44px !important;
            }
            .bianmin .detail-text h4 {
                font-size: 3.2vw !important;
                margin-bottom: 0.3vw !important;
            }
            .bianmin .detail-text p {
                font-size: 2.4vw !important;
            }

            /* ----- 微调 section-header ----- */
            .section-header {
                margin-bottom: 4vw !important;
                padding-bottom: 2.5vw !important;
                gap: 1.5vw !important;
                flex-wrap: wrap !important;
            }
            .section-header h2 {
                font-size: 4.8vw !important;
            }
            .section-header .more-link {
                font-size:4vw !important;
                gap: 1.5vw !important;
            }
            .section-header .more-link i {
                font-size: 2.4vw !important;
            }

            /* ----- 隐藏桌面端不必要的装饰或调整间距 ----- */
            .container {
                width: 94% !important;
            }

            /* 确保图片正确缩放 */
            img {
                max-width: 100% !important;
                height: auto !important;
            }

            /* 按钮触摸优化 */
            .tab-btn,
            .expert-thumb-item,
            .service-card,
            .info-card-item,
            .detail-service-item,
            .image-card,
            .slider-nav-btn,
            .btn-outline,
            .btn-primary,
            .more-btn {
                -webkit-tap-highlight-color: transparent !important;
                touch-action: manipulation !important;
            }

            /* 滚动条优化 */
            .slider-scroll-area,
            .expert-thumb-list {
                -webkit-overflow-scrolling: touch !important;
            }
        }

        /* ===== 针对更小屏设备 (≤480px) 的微调 ===== */
        @media (max-width: 480px) {

            .carousel-section .slide {
                height: 52vw !important;
                min-height: 180px !important;
            }
            .carousel-section .service-card {
                width: 26vw !important;
                padding: 2vw 1vw !important;
            }
            .carousel-section .service-card h4 {
                font-size: 2.2vw !important;
            }
            .slide-title {
                font-size: 4vw !important;
                top: 10vw !important;
                width: 92% !important;
            }

            .six-info-cards {
                gap: 2vw !important;
            }
            .info-card-item .card-img-top {
                height: 16vw !important;
            }
            .info-card-item .card-img-top i {
                font-size: 6vw !important;
            }
            .info-card-item .card-text-area h4 {
                font-size:3.5vw !important;
            }
            .expert-thumb-item {
                flex: 0 0 30vw !important;
                min-width: 110px !important;
                padding: 1.2vw 1.5vw !important;
            }
            .thumb-img {
                width: 9vw !important;
                height: 9vw !important;
                min-width: 36px !important;
                min-height: 36px !important;
            }
            .thumb-info h4 {
                font-size: 2.6vw !important;
            }
            .thumb-info p {
                font-size: 2vw !important;
            }

            .service-cards-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2vw !important;
            }
            .card-img-top1 {
                height: 24vw !important;
            }
            .card-label {
                font-size: 3.2vw !important;
                padding: 2.5vw 1.5vw !important;
            }
            .detail-services-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 2vw !important;
            }
            .detail-service-item {
                padding: 2.5vw 2vw !important;
            }
            .detail-text h4 {
                font-size: 2.8vw !important;
            }
            .detail-text p {
                font-size: 2.2vw !important;
            }

            .image-card {
                flex: 0 0 calc((100% - 2vw) / 2) !important;
            }
            .card-img-bg {
                height: 28vw !important;
                min-height: 110px !important;
            }
            .slider-nav-btn {
                width: 7vw !important;
                height: 7vw !important;
                min-width: 30px !important;
                min-height: 30px !important;
                font-size: 3vw !important;
            }

            .disease-tag {
                font-size:3.5vw !important;
                padding: 1.2vw 1.8vw !important;
            }
            .disease-tag img {
                height: 7vw !important;
                width: 7vw !important;
                padding: 1.2vw !important;
            }
            .instruments-grid {
                gap: 2vw !important;
            }
            .instrument-item span {
                font-size:3vw !important;
            }

            .slider-content h3 {
                font-size:3.8vw !important;
                margin-bottom: 6vw;
            }
            .list-title {
                font-size:3.5vw !important;
            }
            .news-list-item {
                gap: 2vw !important;
                padding-bottom: 2vw !important;
                margin-bottom: 2vw !important;
            }
            .list-thumb {
                width: 18vw !important;
                height: 18vw !important;
            }
            .timebox {
                width: 18vw !important;
                height: 18vw !important;
            }
            .timebox .date {
                font-size: 4.5vw !important;
                margin-top:3.5vw !important;
            }
            .timebox .year {
                font-size:3vw !important;
            }

            .expert-large-img {
                width: 70% !important;
                max-width: 180px !important;
            }
            .btn-outline,
            .btn-primary {
                font-size:3vw !important;
                padding: 1.8vw 4vw !important;
            }
            .appointment-buttons {
                gap: 2vw !important;
            }

            .fixed-info p {
                font-size:3.5vw !important;
                padding: 0.3vw 1.5vw !important;
            }
            .slogan {
                font-size: 2.8vw !important;
                padding: 1.5vw 2.5vw !important;
            }

            .tab-btn {
                font-size:3vw !important;
                padding: 1.2vw 2.5vw !important;
                border-radius: 5vw !important;
            }
            .tab-btn i {
                font-size: 3vw !important;
            }
            .disease-name h3 {
                font-size: 3.8vw !important;
            }
            .dept-tab-container {
                padding: 3vw 3vw !important;
            }
            .expert-thumb-item.active p {
    color: #333;
}
.expert-thumb-item.active h4 {
    color: #333;
}
        }