/* 轮播组件样式 */
.swiper-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slide-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.slide-caption h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.slide-caption p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.swiper-pagination-bullet {
    background: #999;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #00a86d;
    opacity: 1;
}

.swiper-button-next, 
.swiper-button-prev {
    color: #00a86d;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .slide-content {
        width: 95%;
    }
    
    .slide-caption {
        padding: 10px;
    }
    
    .slide-caption h3 {
        font-size: 1rem;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
}