  .comp_swiper_video {
    height: 100%;
}
            .Label-container.flex-start {
                display: flex;
                align-items: center;
                flex-direction: row;
                justify-content: flex-start;
            }

                /* 基础样式 */
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                    font-family: "Microsoft YaHei", sans-serif;
                }
                a { 
                    text-decoration: none; 
                    color: inherit; 
                }
                ul, li { 
                    list-style: none; 
                }
                .animated { 
                    animation-duration: 0.8s; 
                    animation-fill-mode: both; 
                }
                @keyframes bounce { 
                    0%, 100% { transform: translateY(0); } 
                    50% { transform: translateY(-10px); } 
                }

                /* 外层容器 */
                .carousel-outer-container {
                    position: relative;
                    width: 100%;
                    margin: 0 auto;
                }

                /* 核心容器 */
                .Rotation-layoutcontainer {
                    width: 100%;
                    position: relative;
                    height: 540px;
                    overflow: hidden;
                }
                .swiper-wrapper-wrapper-container, 
                .home-swiper { 
                    height: 100%;
                    width: 100%;
                    position: relative; 
                }

                /* 左右布局容器 */
                .swiper-leftAndRightLayout {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 0 20px;
                    height: 630px;
                    margin: 0 auto;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: 2;
                    width: 92%;
                }

                /* 左侧标题栏 */
                .swipervertical-container {
                    width: 220px;
                    flex-shrink: 0;
                    position: relative;
                    padding: 20px 0;
                    display: flex;
                    justify-content: flex-end;
                }

                /* 标题列表 */
                .swipervertical-titles {
                    display: flex;
                    flex-direction: column;
                
                }

                /* 单个标题样式 - 选中状态：淡蓝背景+蓝色文字+蓝条 */
                .swipervertical-title {
                    font-size: 17px;
                    color: #000;
                    cursor: pointer;
                    padding: 20px;
                   
                    width: 100%;
                    line-height: 1.4;
                    border-radius: 4px;
                    transition: all 0.3s ease;
                    position: relative; /* 为蓝条定位做准备 */
                }
                .swipervertical-title.active {
                    font-weight: 600;
                       background: linear-gradient(89deg, hsla(0, 0%, 100%, 0), rgba(59, 130, 246, 0.2));
                    color: #0052d9; /* 蓝色文字 */
                    text-shadow: none;
                }

                /* 连续白条（右侧竖线） */
                .title-bar {
                    position: absolute;
                    right: 0;
                    top: 20px;
                    bottom: 20px;
                    width: 4px;
                    background: #fff;
                    opacity: 0.6;
                    border-radius: 2px;
                    z-index: 1;
                }

                /* 选中蓝条（恢复显示，右侧定位） */
                .active-bar {
                    position: absolute;
                    right: 0; /* 与白条对齐，在白条内侧 */
                    width: 4px;
                    height: 32px;
                    background: #0052d9; /* 蓝色与文字颜色一致 */
                    border-radius: 2px;
                    transition: top 0.3s ease;
                    z-index: 2; /* 覆盖白条 */
                }

                /* 右侧内容区 */
                .swipervertical-textcontainer {
                    flex: 1;
                    padding: 20px 0 20px 60px;
                    max-width: 800px;
                }

                /* 右侧内容块 - 选中时文字蓝色 */
                .swiper-text {
                    display: none;
                    width: 100%;
                }
                .swiper-text.active {
                    display: block;
                    animation: bounce 0.8s;
                }
                .Title {
                    font-size: 32px;
                    color: #fff;
                    margin-bottom: 15px;
                    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
                    transition: color 0.3s ease;
                }
                .swiper-text.active .Title {
                       text-shadow: none;
    font-size: 40px;
    color: rgb(24, 24, 24);
    font-weight: bold;
                }
                .Describe {
                    font-size: 16px;
                    color: #f0f0f0;
                    line-height: 1.8;
                    margin: 15px 0 30px;
                    max-width: 600px;
                    transition: color 0.3s ease;
                }
                .swiper-text.active .Describe {
                    color: #181818;
                }
                .Label {
                    color: #fff;
                    background: rgb(235 47 47 / 80%);
                    padding: 5px 12px;
                    border-radius: 4px;
                    font-size: 14px;
                }

                /* 按钮样式 */
                .Button {
                    display: inline-block;
                    padding: 14px 36px;
                    background: linear-gradient(90deg, #2f54eb, #1d3ba8);
                    color: #fff;
                    font-size: 16px;
                    border-radius: 4px;
                    transition: all 0.3s;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
                }
                .Button:hover {
                    opacity: 0.9;
                    transform: translateY(-2px);
                }

                /* 背景轮播区 */
                .swiper-wrapper {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100% !important;
                    height: 100% !important;
                    z-index: 1;
                }
                .swiper-slide {
                    width: 100%;
                    height: 100%;
                    display: none;
                }
                .swiper-slide.active { 
                    display: block; 
                }
                .video-placeholder, 
                .video-slide {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .video-slide { 
                    display: none; 
                }
                .swiper-slide.active .video-slide { 
                    display: block; 
                }

                /* 分页（底部居中） */
                .home-pagination-container {
                    position: absolute;
                    bottom: 78px;
                    left: 40.7%;
                    transform: translateX(-50%);
                    z-index: 3;
                }
                .home-pagination { 
                    display: flex; 
                    gap: 8px; 
                }
                /* 修改分页为长条状并添加时间轴效果 */
                .home-pagination-bullet {
                    width: 40px;
                    height: 3px;
                    border-radius: 3px;
                    background: rgba(255,255,255,0.3);
                    cursor: pointer;
                    transition: all 0.3s;
                    position: relative;
                    overflow: hidden;
                    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
                }
                .home-pagination-bullet::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    height: 100%;
                    width: 0;
                    background: #0052d9;
                    transition: width 0s linear;
                    border-radius: 3px;
                }
                .home-pagination-bullet.active {
                    background: rgba(255,255,255,0.3);
                }
                .home-pagination-bullet.active::after {
                    width: 100%;
                    transition: width calc(var(--duration, 5s) - 0.1s) linear; /* 时间轴动画时长 */
                }

                /* 箭头按钮（居中） */
                .home-button-prev, 
                .home-button-next {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 68px;
                    height: 44px;
                    background: rgb(175 175 175 / 40%);
                    border-radius: 22px;
                    cursor: pointer;
                    transition: all 0.3s;
                    border: none;
                    z-index: 3;
                }
                .home-button-prev:hover,
                .home-button-next:hover {
                    background: rgba(0, 82, 217, 0.7);
                }
                .home-button-prev { 
                    left: 20px; 
                }
                .home-button-next { 
                    right: 20px; 
                }
                .home-button-prev::before, 
                .home-button-next::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    width: 0;
                    height: 0;
                    border-top: 10px solid transparent;
                    border-bottom: 10px solid transparent;
                }
                .home-button-prev::before {
                    left: 50%;
                    transform: translate(-60%, -50%);
                    border-right: 14px solid #fff;
                }
                .home-button-next::before {
                    left: 50%;
                    transform: translate(-40%, -50%);
                    border-left: 14px solid #fff;
                }

                /* 响应式适配 */
                @media (max-width: 1200px) {
                    .Title { 
                        font-size: 28px; 
                    }
                    .swipervertical-textcontainer { 
                        padding-left: 40px; 
                    }
                }
                @media (max-width: 992px) {
                    .Rotation-layoutcontainer { 
                        height: 450px; 
                    }
                    .Title { 
                        font-size: 24px; 
                    }
                    .Describe { 
                        font-size: 14px; 
                    }
                    .swipervertical-container { 
                        width: 200px; 
                    }
                    .swipervertical-titles { 
                        gap: 22px; 
                    }
                    .swipervertical-textcontainer { 
                        padding-left: 30px; 
                    }
                }