
.banner-container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: auto !important;
    overflow: hidden;
}

.swiper-wrapper {
    height: auto !important;
}

.swiper-slide {
    width: 100%;
    height: auto !important;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 分页器样式 */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: -webkit-linear-gradient(left, #ff6b8a, #e84a7a);
    background: linear-gradient(to right, #ff6b8a, #e84a7a);
    width: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* 文字叠加层 */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    background: -webkit-linear-gradient(right, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    background: linear-gradient(to left, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.banner-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 8px;
}

.banner-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-subtitle-en {
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* 响应式适配 */
@media screen and (min-width: 768px) {
    .banner-title {
        font-size: 32px;
    }
    .banner-subtitle {
        font-size: 18px;
    }
    .banner-subtitle-en {
        font-size: 12px;
    }
    .banner-overlay {
        padding: 40px;
    }
}

@media screen and (max-width: 380px) {
    .banner-title {
        font-size: 18px;
    }
    .banner-subtitle {
        font-size: 12px;
    }
    .banner-subtitle-en {
        font-size: 9px;
    }
    .banner-overlay {
        padding: 15px;
    }
}
.swiper-pagination-bullet-active {
    background: #ff69b4;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {right:10px;text-align:right;}
