/* Swiper */
.swiper {
    overflow: hidden;
}
.swiper_btn {
    transform: translateY(-50%);
    margin: 0;
    width: 40px;
    height: 40px;
    background-image: none;
}
.swiper_btn img {
    width: 100%;
}
.swiper-button-next {
    right: -20px;
}
.swiper-button-prev {
    left: -20px;
}

.swiper_btn_wrap {
    display: none;
}

.section_banner {
    margin: var(--space-64) 0 0 ;
}
.section_banner .container {
    position: relative;
}
.banner_swiper {
    overflow: hidden;
}
.banner_slide {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.banner_slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper_ctrl_wrap {
    margin-top: var(--space-16)
}
.swiper_ctrl_wrap .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    position: relative;
}
.swiper_ctrl_wrap .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #d9d9d9;
    opacity: 1;
}
.swiper_ctrl_wrap .swiper-pagination-bullet-active {
    width: 30px;
    height: 7px;
    opacity: 1;
    background: #969696;
    border-radius: 7px;
}
#moBannerList {
    display: none;
}

@media screen and (max-width: 1024px) {
    #pcBannerList {
        display: none;
    }
    #moBannerList {
        display: block;
    }
    .section_banner {
        margin-top: var(--space-20);
        padding: 0 var(--space-20);
    }
    .banner_slide {
        height: auto;
    }
}