/* 轮播图 */
.swiper {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper img {
    width: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: px !important;
    /* 箭头大小（默认是14px） */
    color: #fff;
    /* 箭头颜色（默认白色），改成#FEBD69就是橙色 */
    font-weight: 1000 !important;
    /* 加粗箭头 */
}

@media screen and (max-width: 720px) {
    .swiper {
        width: 100%;
    }
}
