.rs-slider-container {
    width: 100%;
    height: 800px; /* 默认高度（电脑版） */
    position: relative;
    overflow: hidden;
    
}

.l-section.height_large {
    padding-top: 10rem!important;
    padding-bottom: 6rem;
}

/* 手机版样式 */
@media (max-width: 768px) {
    .rs-slider-container {
        height: 480px; /* 手机版高度 */
    }
}

.rs-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.rs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-slide.active {
    opacity: 1;
}

.rs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    user-select: none;
}

.rs-arrow:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-50%) scale(1.1);
}

.rs-prev {
    left: 20px;
}

.rs-next {
    right: 20px;
}

.rs-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.rs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rs-dot.active {
    background: rgba(255,255,255,0.9);
    transform: scale(1.2);
}


