/* 自定义轮播修复样式 */
.highlight-slider {
    overflow: show;
    width: 100%;
}

.highlight-slider .swiper-slide {
    width: 100% !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.highlightSwiper .swiper-wrapper {
    display: flex;
}

.highlightSwiper .swiper-slide-active {
    transform: none;
    opacity: 1;
}

.highlightSwiper .swiper-slide-prev,
.highlightSwiper .swiper-slide-next {
    opacity: 0.5;
    visibility: visible;
}

.highlight-slider .item {
    width: 100%;
    margin-bottom: 0;
}

.highlight-slider .gallery-picture {
    width: 100%;
    height: auto;
}

.highlight-slider .gallery-picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 修复移动端的样式 */
@media (max-width: 466px) {
    .highlight-slider .swiper-slide {
        padding: 0;
    }
    
    .highlightSwiper .swiper-slide-prev,
    .highlightSwiper .swiper-slide-next {
        display: none;
    }
    
    .highlightSwiper .swiper-wrapper {
        align-items: center;
    }
} 