  .section {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.section .swiper {
    width: 100%;
    height: 100%;
}

.section .swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
}

.section .swiper .swiper-slide .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.section .control {
    position: absolute;
    right: 260px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 378px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 11px 12px 15px;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 0;
}

.section .control .item {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
}

.section .control .item .block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 31px;
    height: 78px;
    cursor: pointer;
}

.section .control .item .block p {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    transition: 0.6s;
}

.section .control .item .block .iconfont {
    transform: rotate(90deg);
    font-size: 16px;
    color: #333333;
    transition: 0.6s;
}

.section .control .item .block:hover p {
    color: #2461AD;
}

.section .control .item .none {
    padding: 0 31px 30px;
    display: none;
}

.section .control .item .none .text p {
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 28px;
}

.section .control .item .none .btns {
    display: flex;
    gap: 0 10px;
    margin: 25px 0 0;
}

.section .control .item .none .btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #D2D2D2;
    transition: 0.6s;
}

.section .control .item .none .btns a p {
    font-weight: 400;
    font-size: 14px;
    color: #868686;
    transition: 0.6s;
}

.section .control .item .none .btns a:nth-child(1) {
    border: 1px solid #2461AD;
    background: #2461AD;
}

.section .control .item .none .btns a:nth-child(1) p {
    color: #FFFFFF;
}

.section .control .item .none .btns a:hover {
    border: 1px solid #2461AD;
    background: #2461AD;
}

.section .control .item .none .btns a:hover p {
    color: #FFFFFF;
}

.section .control .item.item_active .block p {
    font-size: 20px;
    color: #2461AD;
}

.section .control .item.item_active .block .iconfont {
    transform: rotate(-90deg);
}

.section .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 55px;
}

.section .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 450px;
    height: 2px;
    background: #E7E7E7;
    margin: 0 12px;
    opacity: 1;
    position: relative;
}

.section .swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #2461AD;
    transform-origin: left;
    transform: scaleX(0);
    position: absolute;
    left: 0;
    top: 0;
}

.section .swiper-pagination .swiper-pagination-bullet.on:after {
    animation: afterAnimate 5s linear forwards;
}

@keyframes afterAnimate {
    100% {
        transform: scaleX(1);
    }
}

/*# sourceMappingURL=product.css.map */
@media screen and (max-width: 1919px) {
    .section .control{
        right: 13.5416666667vw;
        width: 19.6875vw;
        border-radius: 1.0416666667vw;
        padding: 0.5729166667vw 0.625vw 0.78125vw;
        backdrop-filter: blur(1.0416666667vw);
        gap: 0.5208333333vw 0px;
    }
    .section .control .item{
        border-radius: 0.5208333333vw;
    }
    .section .control .item .block{
        padding: 0px 1.6145833333vw;
        height: 4.0625vw;
    }
    .section .control .item .block p{
        font-size: 0.9375vw;
    }
    .section .control .item .block .iconfont{
        font-size: 0.8333333333vw;
    }
    .section .control .item .none{
        padding: 0px 1.6145833333vw 1.5625vw;
    }
    .section .control .item .none .text p{
        font-size: 0.78125vw;
        line-height: 1.4583333333vw;
    }
    .section .control .item .none .btns{
        gap: 0px 0.5208333333vw;
        margin: 1.3020833333vw 0px 0px;
    }
    .section .control .item .none .btns a{
        width: 5.7291666667vw;
        height: 2.0833333333vw;
        border-radius: 0.2604166667vw;
    }
    .section .control .item .none .btns a p{
        font-size: 0.7291666667vw;
    }
    .section .control .item.item_active .block p{
        font-size: 1.0416666667vw;
    }
    .section .swiper-pagination{
        bottom: 2.8645833333vw;
    }
    .section .swiper-pagination .swiper-pagination-bullet{
        width: 23.4375vw;
        height: 0.1041666667vw;
        margin: 0px 0.625vw;
    }
    .section .swiper-pagination .swiper-pagination-bullet::after{
        height: 0.1041666667vw;
    }
}
@media screen and (max-width: 768px) {
    .section {
        padding: 100px 5vw 30px;
        width: unset;
        height: unset;
    }
    .section .control {
        display: none;
    }
    .section .swiper .swiper-slide {
        background: #FFFFFF;
        height: auto;
        border-bottom: 1px solid #ccc;
    }
    .section .swiper .swiper-slide .img {
        height: unset;
    }
    .section .swiper .swiper-slide .item_text {
        display: block !important;
        padding: 20px 0 ;
    }
    .section .swiper .swiper-slide .item_text .item_title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .section .swiper .swiper-slide .item_text .item_txt {
        font-size: 15px;
        line-height: 1.8;
        color: #666666;
        margin-bottom: 25px;
    }
    .section .swiper .swiper-slide .item_text .btns {
        display: flex;
        gap: 15px;
    }
    .section .swiper .swiper-slide .item_text .btns a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        height: 38px;
        border-radius: 4px;
        border: 1px solid #2461AD;
        background: #2461AD;
    }
    .section .swiper .swiper-slide .item_text .btns a p {
        font-size: 14px;
        color: #FFFFFF;
    }
    .section .swiper .swiper-slide .item_text .btns a:nth-child(2) {
        background: unset;
    }
    .section .swiper .swiper-slide .item_text .btns a:nth-child(2) p {
        color: #2461AD;
    }
    .section .swiper .swiper-wrapper {
        flex-direction: column;
        gap: 60px;
    }
}
