.business {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mod-business {
    width: 100%;
    height: 100%;
    background: url(../images/bg@2x.png) no-repeat center/cover;
    padding: 100px 0;
}

.business-title {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}

.business-title--hide {
    color: #3A416F;
}

.business-dec {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-weight: 200;
    margin-bottom: 169px;
}

.business-dec--hide {
    color: #3A416F;
}

.swiper-container {
    position: relative;
    margin-bottom: 154px;
}



.swiper-wrap {
    position: relative;
    width: 980px;
    height: 392px;
    margin: 0 auto;
    /* overflow: hidden; */
}

.swiper-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 1660px;
    height: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.swiper-item__list {
    width: 300px;
    height: 100%;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(6, 58, 145, 0.18);
            box-shadow: 0px 10px 20px 0px rgba(6, 58, 145, 0.18);
}

.swiper-item__list img {
    width: 100%;
    height: 100%;
}

.control-left {
    position: absolute;
    top: 50%;
    left: -109px;
    width: 56px;
    height: 56px;
    background: url(../images/left.png) no-repeat center/cover;
 
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.control-right {
    position: absolute;
    top: 50%;
    right: -109px;
    width: 56px;
    height: 56px;
    background: url(../images/right.png) no-repeat center/cover;

    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.control-left:hover{
   background: url(../images/arrowLeft@2x.png) no-repeat center/cover;
}
.control-right:hover {
  background: url(../images/arrowRight@2x.png) no-repeat center/cover;
}

.bussiness-switch {
    position: absolute;
    right: 359px;
    top: 800px;
    width: 80px;
    height: 80px;
    background: url(../images/next@2x.png) no-repeat center/cover;
    cursor: pointer;
    z-index: 99;
    /* transition: 0.5s all; */
}

.bussiness-switch--close {
    background: url(../images/close@2x.png) no-repeat center/cover;
}

.mod-business-hide {
    position: absolute;
    right:0;
    bottom: 0;
    background: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    transform: scale(0);
    transform-origin: 100% 100%;
}

.business-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1000px;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #3A416F;
}

.business-link {
    width: 300px;
    margin-bottom: 88px;
    cursor: pointer;
}

.business-link:nth-child(4n) {
    width: 100px;
}

.business-link img {
    margin-bottom: 25px;
}

.business-link__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
}

.business-link p {
    font-size: 18px;
    color: rgba(58, 65, 111, 0.5);
    font-weight: 400;
    line-height: 24px;
}

.business-border {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 315px;
    left: 10%;
    width: 52px;
    height: 52px;
    background: url(../images/border.png) no-repeat center/cover;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media screen and (max-height: 968px) {
    .mod-business  {
        padding: 50px 0;
    }
    .business-title   {
        margin-bottom: 10px;
    }
    .business-dec{
        margin-bottom: 85px;
    }
    .business-link {
        margin-bottom: 44px;
    }
    .business-link img {
        margin-bottom: 13px;
    }
    .bussiness-switch {
        top: 700px
    }
}
@media screen and (max-height: 768px) {
    .mod-business  {
        padding: 50px 0;
    }
    .business-title   {
        margin-bottom: 5px;
    }
    .business-dec{
        margin-bottom: 43px;
    }
    .business-link {
        margin-bottom: 22px;
    }
    .business-link img {
        margin-bottom: 7px;
    }
    .bussiness-switch {
        top: 600px;
    }
}