 .carousel-wrapper {
            position: relative;
            overflow: hidden;
            background: #1d2951; /* 深蓝色背景，与图片描述一致 */
        }
        
        /* 轮播图核心容器 */
        .carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        /* 轮播图项 */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            pointer-events: none; /* 防止非活动状态时影响点击 */
        }
        
        .slide.active {
            position: relative; /* 关键：相对定位以使容器高度正确 */
            opacity: 1;
            pointer-events: auto; /* 允许与活动状态交互 */
        }
        
        /* 图片样式 - 100%宽度，高度自适应 */
        .slide-img {
            display: block;
            width: 100%; /* 充满容器 */
            height: auto; /* 高度自适应 */
            object-fit: cover; /* 保持比例并填充空间 */
        }
        
        /* 导航箭头 - 根据图片描述在左上角和右上角 */
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: rgba(255, 0, 0, 0.42); /* 红色箭头 */
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
        }
        
        .arrow:hover {
            background: #ff3333;
            transform: translateY(-50%) scale(1.15);
        }
        
        .arrow.left {
            left: 15px;
        }
        
        .arrow.right {
            right: 15px;
        }
        
        .arrow::after {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border: 2px solid white;
            border-top: none;
            border-right: none;
        }
        
        .arrow.left::after {
            transform: rotate(45deg) translate(1px, -1px);
        }
        
        .arrow.right::after {
            transform: rotate(-135deg) translate(1px, -1px);
        }
        
        /* 分页指示器 - 根据图片描述的绿色和红色点 */
        .pagination {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 14px;
            z-index: 10;
        }
        
        .dot {
            width: 18px;
            height: 5px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .dot.active {
            background: #ff3333; /* 红点 */
            width: 22px;
            transform: scale(1.15);
            box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
        }
        
        
        .dot:hover:not(.active) {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.1);
        }