/* 轮播图样式 */
.banner-swiper {
    width: 100%;
    overflow: hidden;
}

.banner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 6s ease-in-out infinite;
}


.banner-swiper .swiper-pagination {
    bottom: 100px;
    z-index: 100;
}

.banner-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: url('../images/banner_dian.png') no-repeat center;
    background-size: contain;
    opacity: 1;
    margin: 0 5px;
}

.banner-swiper .swiper-pagination-bullet-active {
    width: 25px;
    height: 26px;
    background: url('../images/banner_dian_select.png') no-repeat center;
    background-size: contain;
    transform: translateY(3px);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


@media screen and (max-width: 768px) {
.banner-swiper .swiper-pagination {
    bottom: 10px;
}

}