.g-bd{
    margin: 10px 0;
}
.swiper{
    width: 100%;
    height: auto;
    position: relative;
}
.swiper-wrapper{
    height: 92%;
}
.swiper-slide{
    width: 20%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
.swiper-slide img{
    width: 100%;
    height: auto;
}
.swiper-slide-active{
    transform: scale(1.05);
    transition: transform 0.5s;
}

.swiper-title{
    margin-top: 30px;
    display: none;
}
.swiper-slide-active .swiper-title{
    display: block;
    line-height: 1.5;
    color: #1E388F;
}
/* 分页样式 */
.swiper-pagination{
    position: static;
}
.swiper-pagination-bullet {
    opacity: 0.8;
    background: #FFFFFF;
    margin:0 10px!important;

}
.swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    height: 20px;
    background: #F9802D;
    border-radius: 30%;
    line-height: 20px;
    color: #FFFFFD;
    transition: background 0.5s;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    width:auto;
}
/* 箭头样式 */
.swiper-navigation {
    display: flex;
    justify-content:center;
    align-items: center;

}

.swiper-button-next, .swiper-button-prev{
    position: static;
    margin-top: 0;
}

.swiper-button-next::after, .swiper-button-prev::after{
    font-size: 18px;
}

@media screen and (max-width: 1200px){

}
@media screen and (max-width: 768px){
    .swiper-slide{
        width: 90%;
    }
    .swiper-slide img {
        width: 95%;
    }
    .swiper-pagination-bullet-active {
        width: 40px;
        height: 32px;
        line-height: 40px;

    }
}