        /* 原有Bootstrap轮播图样式 */
        .carousel-item {
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        /* 不同色值的背景 */
        .chenyu-slide-1 {
            background-color: #ff6b6b;
        }
        
        .chenyu-slide-2 {
            background-color: #4ecdc4;
        }
        
        .chenyu-slide-3 {
            background-color: #45b7d1;
        }
        
        .chenyu-slide-4 {
            background-color: #96ceb4;
        }
        
        .chenyu-slide-5 {
            background-color: #feca57;
        }
        
        /* 响应式高度调整 */
        @media (max-width: 768px) {
            .carousel-item {
                height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-item {
                height: 250px;
            }
        }
        
        /* 轮播图内容样式 */
        .chenyu-carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 20px;
        }
        
        .chenyu-carousel-caption h5 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .chenyu-carousel-caption p {
            font-size: 1.1rem;
        }
        
        /* 移动端文字大小调整 */
        @media (max-width: 768px) {
            .chenyu-carousel-caption h5 {
                font-size: 1.5rem;
            }
            
            .chenyu-carousel-caption p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .chenyu-carousel-caption h5 {
                font-size: 1.2rem;
            }
            
            .chenyu-carousel-caption p {
                font-size: 0.9rem;
            }
        }
        
        /* 轮播图指示器样式 */
        .chenyu-carousel-indicators {
            bottom: 20px;
        }
        
        .chenyu-carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        /* 轮播图控制按钮样式 */
        .chenyu-carousel-control-prev,
        .chenyu-carousel-control-next {
            width: 10%;
        }
        
        .chenyu-carousel-control-prev-icon,
        .chenyu-carousel-control-next-icon {
            width: 3rem;
            height: 3rem;
        }
        
        /* 移动端控制按钮调整 */
        @media (max-width: 768px) {
            .chenyu-carousel-control-prev-icon,
            .chenyu-carousel-control-next-icon {
                width: 2rem;
                height: 2rem;
            }
        }
        
        /* 页面整体样式 */
        .chenyu-body {
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        .chenyu-container {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        /* 标题样式 */
        .chenyu-page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }
        
        /* 响应式标题 */
        @media (max-width: 768px) {
            .chenyu-page-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .chenyu-page-title {
                font-size: 1.5rem;
            }
        }

        /* Swiper轮播图样式 */
        .main-slider {
            position: relative;
            height: 850px;
            overflow: hidden;
        }

        .swiper-slide {
            position: relative;
            height: 850px;
        }

        .swiper-silde-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-layer {
            position: absolute;
            top: 0;
            left:0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
        }

        .image-layer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .swiper-slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            color: white;
        }

        .main-slider__content h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: white;
        }

        .main-slider__content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: white;
        }

        .main-slider__content .more {
           padding: 16px 35px;
           font-size: 18px;
           color: #fff;
           display: inline-block;
           font-weight: 500;
           font-family: "Albert Sans";
           border-radius: 32px;
           position: relative;
           z-index: 1;
           transition: 0.5s;
           overflow: hidden;
           /* border: 1px solid #000; */
           background-color: #000;
           width: 180px;
           height: 58px;
           border-radius: 100px;
        }

        .main-slider__content .more:hover {
            color: #e60013;
            cursor: pointer;
            width: 180px;
            height: 58px;
            border-radius: 100px;
            z-index: 1;
        }

        .main-slider__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 20;
        }

        .swiper-button-prev,
        .swiper-button-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .swiper-button-prev {
            left: 50px !important;
        }

        .swiper-button-next {
            right: 50px !important;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
        }

        .swiper-pagination {
            position: absolute;
            bottom: 20px !important;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            justify-content: center;
            align-items: center;
            width: auto;
        }

        .swiper-pagination-bullet {
            width: 12px !important;
            height: 12px !important;
            background:#fff !important;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            flex-shrink: 0;
            opacity: 1 !important;
        }

        .swiper-pagination-bullet-active {
            background: #e60013 !important;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .main-slider,
            .swiper-slide {
                height: 400px;
            }

            .main-slider__content h2 {
                font-size: 2rem;
            }

            .main-slider__content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .main-slider,
            .swiper-slide {
                height: 300px;
            }

            .main-slider__content h2 {
                font-size: 1.5rem;
            }

            .main-slider__content p {
                font-size: 0.9rem;
            }

            .swiper-button-prev,
            .swiper-button-next {
                width: 40px;
                height: 40px;
            }
        }
        
        .main-slider__content{
            padding: 85px 100px 0;
            width: 833px;
            height: 447px;
            border-radius: 40px;
            background-color: rgb(230 0 19 / 65%);
            position: absolute;
            top: -250px;
            left: -100px;
        }
        
        .mediic-service-bx {
            padding: 37px 37px 0;
            width: 383px;
            height: 160px;
            border-radius: 30px;
            background-color: rgba(255, 255, 255, 0.30196078431372547);
            border: 2px solid #ffffff;
            position: absolute;
            right: 60px;
            top: 620px;
            backdrop-filter: blur(12px);
            overflow: hidden;
            z-index: 9999;
        }
        .mediic-hero-content h4 {
            color: var(--primary-color);
            font-weight: 600;
        }
        .mediic-hero-content p {
            width: 100%;
            color: #fff;
        }
        