.swiper-manager-container.swiper-style6 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .swiper-manager-container.swiper-style6 {
            width: 100%;
            height: 100%; /* 竖向滚动时设置固定高度 */
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .swiper-manager-container.swiper-style6 .swiper-slide {
            position: relative;
            overflow: hidden;
            min-height: auto; /* 竖向滚动时不需要最小高度 */
            height: 100%; /* 每个slide高度占满容器 */
        }
        
        /* Background Image and Video Styles */
        .swiper-manager-container.swiper-style6 .slide-background-img {
            position: relative;
            width: 100%;
            height: 100%; /* 竖向滚动时图片高度占满 */
            display: block;
            object-fit: cover; /* 确保图片覆盖整个区域 */
            z-index: 1;
        }

        .swiper-manager-container.swiper-style6 .fixedheight .slide-background-img {
        height: 100%;
        }
        
        .swiper-manager-container.swiper-style6 .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }
        
        .swiper-manager-container.swiper-style6 .video-container iframe,
        .swiper-manager-container.swiper-style6 .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Content Container Styles */
        .swiper-manager-container.swiper-style6 .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 4;
            color: white;
            padding: 2em 5%;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }
        
        /* Text Styles */
        .swiper-manager-container.swiper-style6 .slide-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            color:#fff;
        }
        
        .swiper-manager-container.swiper-style6 .slide-subtitle {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            color:#fff;
        }
        
        .swiper-manager-container.swiper-style6 .slide-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
            color:#fff;
        }
        
        /* Link Button Styles */
        .swiper-manager-container.swiper-style6 .slide-link {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: rgba(255,255,255,0.9);
            color: #333;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            align-self: center;
        }
        
        .swiper-manager-container.swiper-style6 .slide-link:hover {
            background-color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Overlay to make text clearer */
        .swiper-manager-container.swiper-style6 .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.3);
            z-index: 3;
        }
        
        /* Navigation Button Styles - 竖向滚动时调整为上下位置 */
        .swiper-manager-container.swiper-style6 .swiper-button-prev, 
        .swiper-manager-container.swiper-style6 .swiper-button-next {
            display: block;
            position: absolute;
            left: 50%;
            width: 32px;
            height: 32px;
            margin-left: -16px; /* 水平居中 */
            z-index: 10;
            cursor: pointer;
            background-color: rgba(0,0,0,0.5);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 24px;
            transition: all 0.3s ease;
        }

        .swiper-manager-container.swiper-style6 .swiper-button-next svg,
        .swiper-manager-container.swiper-style6 .swiper-button-prev svg{
            margin-top:20%;
            height: 60%;
            width: 60%;
            /* 竖向滚动时旋转图标 */
            transform: rotate(90deg);
        }
        
        .swiper-manager-container.swiper-style6 .swiper-button-prev {
            top: 15px; /* 顶部位置 */
        }
        
        .swiper-manager-container.swiper-style6 .swiper-button-next {
            bottom: 120px; /* 底部位置，避开缩略图 */
        }
        
        .swiper-manager-container.swiper-style6 .swiper-button-prev:hover, 
        .swiper-manager-container.swiper-style6 .swiper-button-next:hover {
            background-color: rgba(0,0,0,0.75);
            transform: scale(1);
        }
        
        /* Pagination Indicator Styles */
        .swiper-manager-container.swiper-style6 .swiper-pagination {
            display: block;
            position: absolute;
            right: 15px; /* 右侧位置 */
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
            z-index: 10;
        }

        .swiper-manager-container.swiper-style6 .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5);
            width: 10px;
            height: 10px;
            display: block;
            margin: 8px 0;
        }

        .swiper-manager-container.swiper-style6 .swiper-pagination-bullet-active {
            background: white;
            width: 12px;
            height: 12px;
        }
        
        /* Thumbnail Slider Styles - 竖向滚动 */
        .swiper-manager-container.swiper-style6 .swiper-thumbs-container {
            position: absolute;
            bottom: 15px;
            right: 15px; /* 右侧位置 */
            top: 15px;
            width: 100px;
            z-index: 5;
        }
        
        .swiper-manager-container.swiper-style6 .thumbs-swiper {
            padding: 10px;
            border-radius: 4px;
            width: 100%;
            height: 100%;
        }
        
        .swiper-manager-container.swiper-style6 .thumbs-swiper .swiper-wrapper {
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }
        
        .swiper-manager-container.swiper-style6 .thumbs-swiper .swiper-slide {
            width: 60px !important;
            height: 60px !important;
            margin: 5px 0;
            opacity: 0.6;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: auto;
            border-radius: 2px;
            overflow: hidden;
        }

        .swiper-manager-container.swiper-style6 .thumbs-swiper .swiper-slide img {
            aspect-ratio: 1/1;
        }
        
        .swiper-manager-container.swiper-style6 .thumbs-swiper .swiper-slide-thumb-active {
            opacity: 1;
            border: 2px solid #fff;
            transform: scale(1.05);
        }
        
        .swiper-manager-container.swiper-style6 .thumbs-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-manager-container.swiper-style6 .thumb-title {
            display: none;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .swiper-manager-container.swiper-style6 {
                height: 400px; /* 移动端高度调整 */
            }
            
            .swiper-manager-container.swiper-style6 .slide-title {
                font-size: 2rem;
            }
            
            /* Mobile 1:1 aspect ratio for background images and videos */
            
            .swiper-manager-container.swiper-style6 img.md-squre,
            .swiper-manager-container.swiper-style6 iframe.md-squre,
            .swiper-manager-container.swiper-style6 video.md-squre {
                width: 100%;
                height: 100%;
                object-fit: cover !important;
            }

            .swiper-manager-container.swiper-style6 iframe.md-squre {border: none;}
            
            
            .swiper-manager-container.swiper-style6 .slide-subtitle {
                font-size: 1.2rem;
            }
            
            .swiper-manager-container.swiper-style6 .swiper-button-prev, 
            .swiper-manager-container.swiper-style6 .swiper-button-next {
                width: 24px;
                height: 24px;
                margin-left: -12px;
                line-height: 24px;
            }
            
            .swiper-manager-container.swiper-style6 .swiper-button-next {
                bottom: 100px;
            }
            
            .swiper-manager-container.swiper-style6 .swiper-thumbs-container {
                width: 60px;
            }
            
            .swiper-manager-container.swiper-style6 .thumbs-swiper {
                padding: 8px;
            }
            
            .swiper-manager-container.swiper-style6 .thumbs-swiper .swiper-slide {
                width: 40px !important;
                height: 40px;
                margin: 3px 0;
            }
        }