.carousel-section {
            width: 100%;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px; /* 增加最大宽度 */
            height: 540px; /* 增加高度 */
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
        }

        .carousel-slide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            display: none;
        }

        .carousel-item.active {
            opacity: 1;
            display: block;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px 40px; /* 增加内边距 */
            text-align: left;
        }

        .carousel-caption h3 {
            margin: 0 0 10px 0;
            font-family: "微软雅黑", sans-serif;
            font-weight: 700;
            font-size: 32px; /* 加大字体 */
            color: #fff;
        }

        .carousel-caption p {
            margin: 0;
            font-family: "微软雅黑", sans-serif;
            font-weight: 400;
            font-size: 20px; /* 加大字体 */
            color: #f0f0f0;
            opacity: 0.9;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            width: 60px; /* 加大按钮 */
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 28px; /* 加大图标 */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 50;
        }

        .carousel-btn:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.2);
        }

        .prev-btn {
            left: 25px;
        }

        .next-btn {
            right: 25px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 25px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 50;
        }

        .indicator {
            width: 14px; /* 加大指示器 */
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: #3a63f3;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(58, 99, 243, 0.8);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .carousel-container {
                width: 95%;
                height: 450px;
            }
        }

        @media (max-width: 992px) {
            .carousel-container {
                height: 400px;
                max-width: 100%;
            }
            
            .carousel-caption {
                padding: 25px 30px;
            }
            
            .carousel-caption h3 {
                font-size: 28px;
            }
            
            .carousel-caption p {
                font-size: 18px;
            }
            
            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .carousel-section {
                margin: 30px 0;
            }
            
            .carousel-container {
                height: 350px;
            }
            
            .carousel-caption {
                padding: 20px 25px;
            }
            
            .carousel-caption h3 {
                font-size: 24px;
            }
            
            .carousel-caption p {
                font-size: 16px;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .carousel-indicators {
                bottom: 20px;
            }
            
            .indicator {
                width: 12px;
                height: 12px;
            }
        }

        @media (max-width: 576px) {
            .carousel-container {
                height: 300px;
                border-radius: 10px;
            }
            
            .carousel-caption {
                padding: 15px 20px;
            }
            
            .carousel-caption h3 {
                font-size: 20px;
                margin-bottom: 8px;
            }
            
            .carousel-caption p {
                font-size: 14px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .prev-btn {
                left: 15px;
            }
            
            .next-btn {
                right: 15px;
            }
            
            .carousel-indicators {
                bottom: 15px;
                gap: 10px;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 450px) {
    /* ... 其他现有样式 ... */
    
    /* 轮播图样式调整 */
    .carousel-section {
        margin: 20px 0;
            padding: 37px 0 0 0;
    }
    
    .carousel-container {
        width: 100%;
        height: 220px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-caption {
        padding: 10px 12px;
    }
    
    .carousel-caption h3 {
        font-size: 16px;
        margin-bottom: 3px;
        line-height: 1.2;
    }
    
    .carousel-caption p {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        opacity: 0.8;
        z-index: 1;
        
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
    
    .carousel-indicators {
        bottom: 8px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    /* 调整主内容区域以适应轮播图 */
    .page_content {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    .page_type_area {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* 确保轮播图容器不超出屏幕 */
    .carousel-container,
    .carousel-slide,
    .carousel-item,
    .carousel-item img {
        max-width: 100%;
    }
}

/* 针对更小的屏幕 */
@media (max-width: 375px) {
    .carousel-container {
        height: 200px;
    }
    
    .carousel-caption h3 {
        font-size: 15px;
    }
    
    .carousel-caption p {
        font-size: 10px;
    }
}

/* 针对超小屏幕 */
@media (max-width: 320px) {
    .carousel-container {
        height: 180px;
    }
    
    .carousel-section {
        padding: 0 10px;
    }
    
    .carousel-caption {
        padding: 8px 10px;
    }
    
    .carousel-caption h3 {
        font-size: 14px;
    }
    
    .carousel-caption p {
        font-size: 9px;
    }

        }