* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       .body1 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
            padding: 10px;
            color: #fff;
        }
        
        .container {
            width: 100%;
            max-width: 90%;
            margin: 0 auto;
            position: relative;
        }
        
        h1 {
            text-align: center;
            margin: 20px 0 30px;
            color: #4cc9f0;
            font-size: 2.5rem;
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
        }
        
        /* 轮播容器样式 - 自适应修改 */
        .carousel {
            position: relative;
            width: 100%;
            /* 使用动态宽高比 */
            padding-top: 30%; /* 16:9宽高比 */
            margin-bottom: 0px;
            perspective: 1200px;
        }
        
        .slides-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide {
            position: absolute;
            width: 65%; /* 使用百分比宽度 */
            height: 85%; /* 使用百分比高度 */
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                        opacity 0.6s ease,
                        z-index 0.01s 0.3s;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
            opacity: 0.7;
            cursor: pointer;
        }
        
        .slide:hover {
            opacity: 0.9;
        }
        
        .slide.active {
            width: 100%; /* 增加中间图片宽度 */
            height: 100%; /* 增加中间图片高度 */
            z-index: 3;
            opacity: 1;
            transform: translateX(0) scale(1);
            box-shadow: 0 5px 6px rgba(0,0,0,0.2);
            cursor: default;
        }
        
        .slide.prev {
            transform: translateX(-85%);
            z-index: 2;
        }
        
        .slide.next {
            transform: translateX(85%);
            z-index: 2;
        }
        
        .slide.hidden {
            opacity: 0;
            z-index: 0;
            transform: translateX(0) scale(0.9);
        }
        
        /* 图片标题样式 */
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
            color: white;
            z-index: 10;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h2 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: #ffffff;
        }
        
        .slide-content p {
            font-size: 1rem;
            opacity: 0.9;
            color: #e0e0e0;
        }
        
        /* 控制按钮样式 */
        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 20;
        }
        
        .control-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.15);
        }
        
        /* 指示器样式 */
        .indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 0px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .indicator.active {
            background: #4cc9f0;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(76, 201, 240, 0.8);
        }
        
        /* 播放控制 */
        .play-controls {
            display: flex;
            justify-content: center;
            margin-top: 0px;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .play-btn {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
        }
        
        .play-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }
        
       
        /* 特性说明 */
        .features {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 0px;
            flex-wrap: wrap;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.07);
            padding: 12px 20px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }
        
        .feature i {
            font-size: 1.5rem;
            color: #4cc9f0;
        }
        
        .feature span {
            font-size: 1rem;
            font-weight: 500;
        }