.box3 {
    margin-top: 75px;
}

.box3 {
    position: relative;
    display: flex;
}

.box3 .imgBox {
    padding-bottom: 15px;
    position: relative;
    width: 50%;
}

.box3 .imgBox img {
    width: 100%;
    display: none;
}

.box3 .imgBox img.cur {
    display: block;
}

.box3 .rightBox {
    width: calc(50% - 90px);
    height: 100%;
    position: absolute;
    right: 0;
}

.box3Swiper {
    padding-bottom: 15px;
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.box3Swiper .swiper-scrollbar {
    position: relative;
}

.box3Swiper .swiper-scrollbar-drag {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: url(/assets/images/27.png);
    background-size: 100% 100%;
    top: -13px;
}

.box3Swiper .swiper-scrollbar-drag::after {
    content: "";
    display: block;
    width: 800px;
    height: 5px;
    background: #034390;
    position: relative;
    top: 12px;
    left: -798px;
}

.box3Slide {
    height: calc((100% - 30px) / 3) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box3Slide .iconBox {
    position: relative;
    height: 90px;
}

.box3Slide .iconBox .img1 {
    position: relative;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 1;
    transition: 1s;
}

.box3Slide .iconBox .img2 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    transition: 1s;
}

.box3Slide h1 {
    color: #505050;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    margin-top: 15px;
}

.box3Slide .iconBox img {
    max-width: 100%;
    max-height: 100%;
}

.box3Slide:hover .iconBox .img1 {
    opacity: 0;
}

.box3Slide:hover .iconBox .img2 {
    opacity: 1;
}



@media screen and (max-width: 1440px) and (min-width: 0px) {
    .box3 .rightBox {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 1200px) and (min-width: 0px) {
    .box3Slide .iconBox {
        height: 45px;
    }
}

@media screen and (max-width: 992px) and (min-width: 0px) {
    .box3 {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
    }

    .box3 .imgBox {
        width: 100%;
    }

    .box3 .rightBox {
        position: relative;
        width: 100%;
        height: 400px;
    }
}