    .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            overflow: hidden;
 
        }
        
        .carousel-inner {
            position: relative;
            height: 600px;
            transition: height 0.5s ease;
        }
        
        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
            display: flex;
            align-items: center;
        }
        
        .carousel-item.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .carousel-item.prev {
            transform: translateX(-100%);
        }
        
        .carousel-item.next {
            transform: translateX(100%);
        }
        
        .text-content {
            position: absolute;
            left: 10%;
            top: 50%;
            transform: translateY(-50%);
            max-width: 500px;
            z-index: 2;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .text-content h2 {
            font-size: 56px;
            margin-bottom: 20px;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
        }
        
        .text-content p {
            font-size: 24px;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
        }
        
        .text-content .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #e20f02;
            color: white;
            /* text-decoration: none; */
            border-radius: 4px;
            font-weight: bold;
            /* transition: background-color 0.3s ease, transform 0.3s ease; */
            /* opacity: 0; */
            /* transform: translateY(20px); */
            /* transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s; */
            opacity: 0.2!important;
        }
        
        .text-content .btn:hover {
            background-color: #c40010;
            transform: translateY(-3px);
            opacity: 0.9 !important;
        }
        
        .carousel-item.active .text-content h2,
        .carousel-item.active .text-content p,
        .carousel-item.active .text-content .btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .image-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .image-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 5s ease;
        }
        
        .carousel-item.active .image-content img {
            transform: scale(1.05);
        }
        
        /* 图片覆盖层 */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
            z-index: 1;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
            z-index: 10;
        }
        
        .carousel-control.prev {
            left: 20px;
        }
        
        .carousel-control.next {
            right: 20px;
        }
        
        .carousel-control:hover {
            background-color: #e60012;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .indicator.active {
            background-color: white;
            transform: scale(1.3);
        }
        
        /* 响应式设计 - 平板设备 */
        @media (max-width: 768px) {
            .carousel-inner {
                height: 200px;
            }
            
            .text-content {
                left: 5%;
                right: 5%;
                max-width: none;
                text-align: center;
            }
            
            .text-content h2 {
                font-size: 28px;
            }
            
            .text-content p {
                font-size: 16px;
                margin-bottom: 20px;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        
        /* 响应式设计 - 手机设备 */
        @media (max-width: 480px) {
            .carousel-inner {
                height: 152px;
            }
            
            .text-content {
                left: 5%;
                right: 5%;
            }
            
            .text-content h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }
            
            .text-content p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .text-content .btn {
                padding: 10px 25px;
                font-size: 14px;
            }
            
            .carousel-control {
                width: 35px;
                height: 35px;
            }
            
            .carousel-indicators {
                bottom: 15px;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
            }
        }
        
         .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgb(121 121 121 / 70%) 0%, rgba(0, 0, 0, 0.1) 100%);
            z-index: 1;
        }
        
        