/* common */
.common_title{
    text-align: center;
}
.common_title>h4{
    font-size: 35px;
    color: #333;
    line-height: 1;
}
.common_title>p{
    font-size: 20px;
    color: #666;
    line-height: 32px;
    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;
}
.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: 202px 0 148px;
    box-sizing: border-box;
    background: url(../../images/solution/content/banner.png) no-repeat center/cover;
}
.banner_wrapper .banner_txt{
    width: 1200px;
    margin: 0 auto;
}
.banner_txt>h4{
    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: #7226f7;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 64px;
    background-color: #fff;
    border-radius: 6px;
}
/* banner_wrapper */

/* content_sec1 */
.content_sec1{
    width: 100%;
    padding: 82px 0 66px;
    box-sizing: border-box;
    background-color: #f4f4f4;
}
.content_sec1 .sec1_box{
    width: 100%;
    text-align: center;
    margin: 80px 0 60px;
}
.sec1_box>img{
    max-width: 100%;
    width: 100%;
}
/* content_sec1 */

/* content_sec2 */
.content_sec2{
    width: 100%;
    padding: 88px 0 68px;
    box-sizing: border-box;
}
.content_sec2 .sec2_box{
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0 115px;
    box-sizing: border-box;
}
.sec2_box .sec2_swiper{
    padding: 70px 0;
}
.sec2_swiper .swiper-slide{
    padding: 56px 0;
    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);
    border-radius: 20px;
    box-shadow: 6px 10px 38px rgba(0, 97, 171, .3);
}
.swiper-slide .sec2_slide_img{
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}
.sec2_slide_img>img{
    max-width: 100%;
    width: 100%;
}
.swiper-slide .sec2_slide_txt{
    min-height: 52px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    line-height: 26px;
}

.sec2_box .sec2_prev,
.sec2_box .sec2_next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    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;
}
.sec2_box .sec2_prev{
    left: 0;
    background-image: url(../../images/prev.png);
}
.sec2_box .sec2_prev:hover{
    background-image: url(../../images/prev_sel.png);
}
.sec2_box .sec2_next{
    right: 0;
    background-image: url(../../images/next.png);
}
.sec2_box .sec2_next:hover{
    background-image: url(../../images/next_sel.png);
}
/* content_sec2 */

/* content_sec3 */
.content_sec3{
    width: 100%;
    padding: 94px 0 88px;
    box-sizing: border-box;
    background-color: #f4f4f4;
}
.content_sec3 .sec3_box{
    margin: 56px 0 0;
}
.sec3_box .sec3_navs{
    width: 528px;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
}
.sec3_navs>li{
    cursor: pointer;
    float: left;
    font-size: 20px;
    color: #333;
    width: 102px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    margin-right: 40px;
}
.sec3_navs>li:last-child{
    margin-right: 0;
}
.sec3_navs>li.active{
    color: #1580f8;
    height: 52px;
    border-bottom: 4px solid #1580f8;
}

.sec3_box .sec3_main{
    margin-top: 46px;
}
.sec3_main .sec3_main_part{
    display: none;
}
.sec3_main .sec3_main_part.show{
    display: block;
}
.sec3_main_part .sec3_tit{
    font-size: 20px;
    color: #333;
    line-height: 1;
    text-align: center;
    margin-bottom: 76px;
}
.sec3_main_part ul{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    justify-content: space-around;
	align-items: center;
}
.sec3_main_part ul>li .sec3_img{
    width: 190px;
    height: 360px;
    margin-bottom: 30px;
    padding: 10px 6px;
    box-sizing: border-box;
    background-color: #333;
    border-radius: 26px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .17);
}
.sec3_main_part ul>li .sec3_img>img{
    width: 176px;
    height: 340px;
}
.sec3_main_part ul>li .sec3_txt{
    font-weight: bold;
    font-size: 16px;
    color: #666;
    line-height: 26px;
    text-align: center;
}
/* content_sec3 */