        /* 主容器 - 固定宽度1160px */
        .carousel-wrapper {
            width: 1160px;
            margin: 0 auto;
            position: relative;
			overflow:hidden;
        }

        /* 轮播容器 */
        .swiper-container {
            width: 100%;
            position: relative;
            overflow: visible !important;
            border-radius: 10px;
        }

        /* 设置每个slide的宽度为960px */
        #case .swiper-slide {
            width: 960px !important;
            transition: all 0.3s ease;
        }

.story-section .swiper-slide {
            width: 100% !important;
            transition: all 0.3s ease;
        }
#case1 .swiper-slide{ width:410px !important;
            transition: all 0.3s ease;}
			#case1 .slide-img{height:300px;}
        /* 图片容器 */
        .slide-img {
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .slide-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ========== 独立文字区域 ========== */
        .text-container {
            width: 100%;
            margin-top: 20px;
            text-align: center;
            position: relative;
        }

        .text-item {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
            padding: 5px 30px;
        }

        .text-item.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: relative;
        }

    
        .slide-desc {
            font-size: 16px;
            color: #fff;
            line-height: 2;
        }
