.syds_wrapper{
    width: 100%;
    height: 100%;
}

/* common */
.common_title{
    width: 100%;
    text-align: center;
}
.common_title>h4{
    font-size: 35px;
    color: #333;
    line-height: 1;
}
.common_title>p{
    font-size: 20px;
    color: #999;
    line-height: 1;
    margin-top: 30px;
}

.common_btn{
    width: 180px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #3185ff;
    border-radius: 25px;
}
.common_btn>a{
    display: block;
    font-size: 16px;
    color: #3185ff;
    margin: 0 auto;
}
.common_btn:hover{
    background-color: #3185ff;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.common_btn:hover a{
    color: #fff;
}
/* common */

/* banner_wrapper */
.banner_wrapper{
    width: 100%;
    padding: 208px 0 170px;
    box-sizing: border-box;
    background: url(/templates/default/images/solution/syds/banner.png) no-repeat center/cover;
}
.banner_wrapper .banner_txt{
    width: 1200px;
    margin: 0 auto;
}
.banner_txt>h2{
    font-weight: bold;
    font-size: 46px;
    color: #fff;
    line-height: 1;
    margin-bottom: 22px;
}
.banner_txt>p{
    font-size: 24px;
    color: #fff;
    line-height: 36px;
}
.banner_txt>a{
    display: block;
    font-size: 16px;
    color: #2c86fa;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 32px;
    background-color: #fff;
    border-radius: 6px;
}
/* banner_wrapper */

/* syds_sec1 */
.syds_sec1{
    width: 100%;
    padding: 82px 0 60px;
    box-sizing: border-box;
    background-color: #f4f4f4;
}
.syds_sec1 .sec1_box{
    position: relative;
    width: 100%;
    margin-bottom: 82px;
    padding: 0 90px;
    box-sizing: border-box;
}
.sec1_box .sec1_swiper{
    padding-top: 138px;
}
.sec1_swiper .swiper-slide{
    position: relative;
    width: 32.4%!important;
    text-align: left;
    margin-right: 1.4%;
    padding: 64px 36px 46px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
}
.swiper-slide .slide_num{
    position: absolute;
    left: 50%;
    top: -74px;
    font-weight: bold;
    font-size: 50px;
    color: #ddd;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.swiper-slide .slide_img{
    position: absolute;
    left: 50%;
    top: -42px;
    width: 90px;
    height: 90px;
    padding: 23px;
    box-sizing: border-box;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slide_img>img{
    display: inline-block;
    width: 44px;
    height: 44px;
}
.swiper-slide.blue .slide_img{
    background: -webkit-linear-gradient(#1c6dff, #00b5e2); 
    background: -o-linear-gradient(#1c6dff, #00b5e2); 
    background: -moz-linear-gradient(#1c6dff, #00b5e2); 
    background: linear-gradient(#1c6dff, #00b5e2);
    box-shadow: 6px 10px 38px rgba(0, 97, 171, .3);
}
.swiper-slide.purple .slide_img{
    background: -webkit-linear-gradient(#911cff, #477fff); 
    background: -o-linear-gradient(#911cff, #477fff); 
    background: -moz-linear-gradient(#911cff, #477fff); 
    background: linear-gradient(#911cff, #477fff);
    box-shadow: 6px 10px 38px rgba(20, 0, 217, .3);
}
.swiper-slide .slide_txt>h6{
    font-weight: bold;
    font-size: 20px;
    color: #333;
    line-height: 1;
    text-align: center;
    margin-bottom: 28px;
}
.swiper-slide .slide_txt>p{
    font-size: 14px;
    color: #666;
    line-height: 1;
    margin-top: 12px;
}

.sec1_box .sec1_prev,
.sec1_box .sec1_next{
    cursor: pointer;
    position: absolute;
    top: 72%;
    width: 60px;
    height: 60px;
    background-image: url(/templates/default/images/solution/arrow_left.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.sec1_box .sec1_prev{
    left: 0;
}
.sec1_box .sec1_next{
    right: 0;
    background-image: url(/templates/default/images/solution/arrow_right.png);
}
.sec1_box .sec1_prev:hover{
    background-image: url(/templates/default/images/solution/arrow_left_hover.png);   
}
.sec1_box .sec1_next:hover{
    background-image: url(/templates/default/images/solution/arrow_right_hover.png);   
}
/* syds_sec1 */

/* syds_sec2 */
.syds_sec2{
    width: 100%;
    padding: 86px 0 66px;
    box-sizing: border-box;
}
.syds_sec2 .sec2_box{
    margin-top: 82px;
}
.sec2_box .sec2_L>li{
    line-height: 90px;
    padding-bottom: 45px;
    overflow: hidden;
}
.sec2_box .sec2_L>li .sec2_L_img{
    width: 90px;
    height: 90px;
    padding: 16px;
    box-sizing: border-box;
    background: -webkit-linear-gradient(#1c6dff, #00b5e2); 
    background: -o-linear-gradient(#1c6dff, #00b5e2); 
    background: -moz-linear-gradient(#1c6dff, #00b5e2); 
    background: linear-gradient(#1c6dff, #00b5e2); 
    box-shadow: 6px 10px 38px rgba(0, 97, 171, .3);
    border-radius: 50%;
}
.sec2_box .sec2_L>li .sec2_L_txt{
    font-weight: bold;
    font-size: 20px;
    color: #333;
    margin: 0 30px;
}
.sec2_box .sec2_img{
    width: 260px;
    margin: 39.5px 104px;
}
.sec2_box .sec2_img>img{
    max-width: 100%;
    width: 100%;
}
.sec2_box .sec2_img>p{
    font-weight: bold;
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-top: 20px;
}
.sec2_box .sec2_arrow{
    width: 33px;
    height: 28px;
    margin: 188.5px 0 188.5px 122px;
    background: url(/templates/default/images/solution/syds/sec2_arrow.png) no-repeat center/cover;
    animation: move 2s infinite ease-in-out;
    -moz-animation: move 2s infinite ease-in-out;
    -webkit-animation: move 2s infinite ease-in-out;
    -o-animation: move 2s infinite ease-in-out;
}
@keyframes move {
    0% {
     -webkit-transform: translateX(0);
     -ms-transform: translateX(0);
     -o-transform: translateX(0);
     transform: translateX(0);
    }
    50% {
     -webkit-transform: translateX(20px);
     -ms-transform: translateX(20px);
     -o-transform: translateX(20px);
     transform: translateX(20px);
    }
    100% {
     -webkit-transform: translateX(0);
     -ms-transform: translateX(0);
     -o-transform: translateX(0);
     transform: translateX(0);
    }
}
.sec2_box .sec2_arrow.arrow2{
    margin: 188.5px 122px 188.5px 0;
}
/* syds_sec2 */

/* syds_sec3 */
.syds_sec3{
    width: 100%;
    height: 600px;
    padding-top: 82px;
    box-sizing: border-box;
    background: url(/templates/default/images/solution/syds/sec3_bg.png) no-repeat center/cover;
}
.syds_sec3 .common_title>h4{
    color: #fff;
    line-height: 50px;
}
.syds_sec3 .common_title>p{
    color: #fff;
}
/* syds_sec3 */

/* syds_sec4 */
.syds_sec4{
    width: 100%;
    padding: 88px 0 80px;
    box-sizing: border-box;
}
.syds_sec4 .sec4_box{
    margin: 50px 0 100px;
}
.sec4_box .sec4_box_top{
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-bottom: 1px solid #ddd;
}
.sec4_box_top>ul{
    width: 384px;
    margin: 0 auto;
}
.sec4_box_top>ul>li{
    cursor: pointer;
    float: left;
    font-size: 20px;
    color: #333;
    width: 26.6%;
    text-align: center;
    margin-right: 10.1%;
}
.sec4_box_top>ul>li.active{
    font-weight: bold;
    font-size: 20px;
    color: #1580f8;
    border-bottom: 4px solid #1580f8;
}
.sec4_box_top>ul>li:last-child{
    margin-right: 0;
}

.sec4_box .sec4_box_bottom{
    min-height: 274px;
    margin-top: 32px;
}
.sec4_box_bottom>p{
    font-size: 20px;
    color: #333;
}
.sec4_box_bottom .bottom_part{
    display: none;
}
.sec4_box_bottom .bottom_part.show{
    display: block;
}
.bottom_part .bottom_part_swiper{
    padding-top: 58px;
}
.bottom_part_swiper .swiper-slide{
    width: 13%!important;
    margin-right: 7.25%;
}
.bottom_part_swiper .slideB_num{
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0 auto 22px;
    background: -webkit-linear-gradient(#1c6dff, #00b5e2); 
    background: -o-linear-gradient(#1c6dff, #00b5e2); 
    background: -moz-linear-gradient(#1c6dff, #00b5e2); 
    background: linear-gradient(#1c6dff, #00b5e2);
    box-shadow: 6px 10px 38px rgba(0, 97, 171, .3);
    border-radius: 50%;
}
.bottom_part_swiper .slideB_txt>h6{
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}
.bottom_part_swiper .slideB_txt>p{
    font-size: 12px;
    color: #666;
    line-height: 20px;
}
.bottom_part_swiper.swiper2 .slideB_txt>p{
    text-align: center;
}
/* syds_sec4 */