.banner-box {
    height: 760px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    overflow: hidden;
}

.banner-box.ourBusinesses {
    background-image: url(../img/our_businesses_bg.jpg);
}


.banner-box h1 {
    font-size: 75px;
    font-family: SourceHanSansSC-Heavy, SourceHanSansSC;
    font-weight: 700;
    color: #fff;
    line-height: 109px;
    margin-top: 509px;
    text-align: center;
}

.wrap {
    width: 1300px;
    margin: auto;
}

.our-businesses-box .product-box {
    position: relative;
    padding-top: 117px;
}

.title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 116px;
}

.title-box h2 {
    font-size: 36px;
    font-family: SourceHanSansSC-Bold, SourceHanSansSC;
    font-weight: 700;
    color: #333;
    line-height: 52px;
    margin: 0 14px;
}


.our-businesses-box .product-box .product-item .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.our-businesses-box .product-box .product-item .item .left {
    width: 500px;
}

.our-businesses-box .product-box .product-item .item .productImg1 {
    width: 510px;
    height: 417px;
}


.our-businesses-box .product-box .product-item .item .left .title {
    font-size: 28px;
    font-family: SourceHanSansSC-Bold, SourceHanSansSC;
    font-weight: 700;
    color: #222;
    line-height: 50px;
}

.our-businesses-box .product-box .product-item .item .left img {
    display: none;
}


.our-businesses-box .product-box .product-item .item .left .line {
    width: 70px;
    height: 3px;
    background: #007BFF;
    margin: 42px 0 0;
}

.our-businesses-box .product-box .product-item .item .left .text {
    font-size: 18px;
    font-family: SourceHanSansSC-Regular, SourceHanSansSC;
    font-weight: 450;
    color: #222;
    line-height: 34px;
    margin-top: 42px;
    display: flex;
}

.our-businesses-box .product-box .product-item .item .left .text.content{
    margin-top: 20px;
    margin-left: 25px;
}

.our-businesses-box .product-box .product-item .item .left .text .dot {
    width: 4px;
    min-width: 4px;
    height: 4px;
    background: #007BFF;
    border-radius: 50%;
    margin: 15px 7px 0 0;
}



.our-businesses-box .product-box .product-item .item:nth-child(2n) {
    flex-direction: row-reverse;
    margin: 228px 0 279px;
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.item img {
    border: 0 none;
    vertical-align: middle;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;
}

.fadeInUp {
    animation-name: fadeInUp;
}


.partner-box {
    padding-top: 100px;
}