.container {
            width: 100%;
            height: 100%;
            margin: 0;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .slide2r-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
            margin: 0;
        }
        
        .slide2r-track {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
            width: 100%;
            /* 确保所有div紧密排列 */
            gap: 0;
            /* 确保所有子元素高度一致 */
            align-items: stretch;
        }
        
        .slide2 {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            /* 移除所有边距和圆角 */
            margin: 0;
            border-radius: 0;
            box-shadow: none;
            /* 确保所有div等高 - 关键设置 */
            height: 100% !important;
            /* 普通slide2宽度25% */
            width: 25%;
            opacity: 0.7;
            transform: scale(1);
            /* 确保border-box模式，内边距不影响尺寸 */
            border: none;
            /* 渐变背景填满整个div */
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
			border-right: 1px solid var(--30, rgba(255, 255, 255, 0.30));
        }
		
        
        /* 中间位置的slide2固定宽度50% */
        .slide2.center-position {
            width: 50% !important; /* 中间位置宽度为50% */
            opacity: 1 !important;
            transform: scale(1) !important;
            z-index: 2;
        }
		
		.slide2 .inmore{
			height:0;
			overflow:hidden;
		}
		.slide2.center-position .inmore{
			height:auto;
			margin-top:2.44rem;
			justify-content:center;
		}
		.slide2.center-position .slide2-content{
			padding: 13.0rem;
			padding-bottom:0px;
			padding-top:3rem;
		}
        
        .slide2-content {
            padding: 5.0rem;
            text-align: center;
            width: 100%;
            max-width: 100%;
            /* 确保内容不超出div */
            overflow: hidden;
            /* 等高div的关键：内容区域弹性布局 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
            min-height: 100%;
            /* 确保内容区域填满整个div */
            height: 100%;
        }
        
        .slide2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            z-index: 1;
        }
		.slide2.center-position h2{
			margin-bottom:1.25rem;
		}
        .slide2-content h2 {
			margin-bottom:1.88rem;
            color: var(---white, #FFF);
			text-align: center;
			font-family: "HarmonyOS Sans SC";
			font-size: 1rem;
			font-style: normal;
			font-weight: 400;
			line-height: normal;
            position: relative;
            z-index: 2;
            /* 防止文本溢出 */
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        
        .slide2-content p {
            color: var(--60, rgba(255, 255, 255, 0.60));
			text-align: center;
			font-size: 0.75rem;
			font-style: normal;
			font-weight: 400;
			line-height: 150%; /* 1.125rem */
            position: relative;
            z-index: 2;
            /* 防止文本溢出 */
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
		.slide2img{
			margin-top:2.65rem;
			
		}
		.slide2img img{
			max-width:100%;
		}
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 2.5rem;
            height: 2.5rem;
			padding-bottom:0.125rem;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #DC0011;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
        }
        
        .nav-btn:hover {
            background: var(--e-50012, #DC0011);
            color: white;
        }
        
        .prev-btn {
            left:calc(25% - 1.25rem);
        }
        
        .next-btn {
            right: calc(25% - 1.25rem);
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 15px;
            align-items: center;
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
			display:none;
        }
        
        .indicators {
            display: flex;
            gap: 8px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: #3498db;
            transform: scale(1.2);
        }
        
        .counter {
            background: white;
            padding: 8px 15px;
            border-radius: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-size: 1rem;
            color: #333;
        }
        
        .counter span {
            font-weight: bold;
            color: #e74c3c;
        }
        
        .info {
            background: rgba(52, 152, 219, 0.1);
            padding: 10px;
            margin-top: 15px;
            text-align: center;
            font-size: 0.9rem;
            color: #2c3e50;
            border-radius: 0;
            position: absolute;
            bottom: 80px;
            left: 0;
            right: 0;
        }
        
        /* 平板端适配 (768px - 1024px) */
        @media (max-width: 1024px) {
            .slide2r-container {
                height: 100%;
            }
            
            .slide2-content {
                padding: 25px;
            }
			.slide2.center-position .slide2-content{
				padding:7rem;
				padding-bottom:0;
				padding-top:1.0rem;
			}
			.slide2-content p{
				display: -webkit-box;
				overflow: hidden;
				text-overflow: ellipsis;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
			}
			.slide2.center-position .inmore{
				margin-top:1.5rem;
			}
	
        }
        
        /* 移动端适配 (小于768px) */
        @media (max-width: 768px) {
            .slide2r-track {
                flex-direction: row;
                height: 100%;
                transition: transform 0.5s ease;
                /* 移动端每个slide2宽度100% */
                width: 100%;
                /* 移动端也确保等高 */
                align-items: stretch;
            }
            
            .slide2 {
                /* 移动端：每个slide2宽度100%，一屏显示一个 */
                width: 100% !important;
                /* 移动端高度与容器相同 */
                height: 100% !important;
                opacity: 1 !important;
                transform: scale(1) !important;

                /* 移动端移除缩放效果 */
                /* 确保渐变颜色填满 */
                background-size: cover !important;
            }
            
            .slide2.active {
                /* 移动端所有slide2都正常显示 */
                height: 100% !important;
                opacity: 1 !important;
                transform: scale(1) !important;
                z-index: 2;
            }
            
            /* 移动端不显示center-position效果 */
            .slide2.center-position {
                width: 100% !important;
                opacity: 1 !important;
                transform: scale(1) !important;
            }
            
            .slide2-content {
                padding: 30px;
                /* 移动端也确保内容区域填满高度 */
                height: 100%;
                min-height: 100%;
            }
            
            
            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                background: rgba(255, 255, 255, 0.8);
            }
            
            .prev-btn {
                left: 15px;
            }
            
            .next-btn {
                right: 15px;
            }
            
            .controls {
                bottom: 20px;
                flex-direction: column;
                gap: 10px;
            }
            
            .info {
                font-size: 0.85rem;
                padding: 8px;
                bottom: 70px;
                background: rgba(52, 152, 219, 0.15);
            }
            
            .slide2r-container {
                height: 70vh;
                min-height: 500px;
            }
        }
        
        /* 小屏幕手机适配 (小于480px) */
        @media (max-width: 480px) {
            body {
                padding: 0;
            }
            
            .slide2 {
                height: 100% !important;
            }
            
            .slide2.active {
                height: 100% !important;
            }
            
            .slide2-content {
                padding: 20px;
            }
            
            .slide2-content h2 {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }
            
            .slide2-content p {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }
            
            .slide2-content h1 {
                font-size: 1.4rem;
                margin-bottom: 20px;
                top: 15px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                background: rgba(255, 255, 255, 0.9);
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
            
            .slide2-number {
                width: 25px;
                height: 25px;
                font-size: 0.9rem;
            }
            
            .counter {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
            }
            
            .slide2r-container {
                height: 65vh;
                min-height: 450px;
            }
        }
        
        /* 超大屏幕适配 (大于1600px) */
        @media (min-width: 1600px) {
            .container {
                max-width: 100%;
            }
            
        }
        
        /* 触摸设备优化 */
        @media (hover: none) {
            .nav-btn:hover {
                background: white;
                color: #333;
                transform: translateY(-50%);
            }
            
            .nav-btn:active {
                background: #3498db;
                color: white;
                transform: translateY(-50%) scale(0.95);
            }
        }
        
        /* 防止文本选中 */
        .slide2-content {
            user-select: none;
        }