html,body,header,section,footer,div,ul,ol,li,img,a,span,em,del,legend,center,strong,var,fieldset,form,label,dl,dt,dd,cite,input,hr,time,mark,code,figcaption,figure,textarea,h1,h2,h3,h4,h5,h6,p{
    margin:0;
    border:0;
    padding:0;
    font-style:normal;
    font-size: 14px;
    color:#3a3a3a;
}
html,body {
    font-family: "Microsoft YaHei";
    min-width: 1200px;
    max-width: 2000px;
    -webkit-text-size-adjust:100%;
    background-color: #fff;
    margin: auto;
    font-size: 14px;
}
nav,article,aside,details,main,header,footer,section,fieldset,figcaption,figure{
    display: block;
}
img,a,button,em,del,strong,var,label,cite,small,time,mark,code,textarea{
    display:inline-block;
}
header,section,footer {
    position:relative;
}
ol,ul{
    list-style:none;
}
input,button,textarea {
    border:0;
    margin:0;
    padding:0;
    font-size:1em;
    line-height:1em;
    /*-webkit-appearance:none;*/
    background-color:rgba(0, 0, 0, 0);
}
span{
    display:inline-block;
}
a:active, a:hover, a:focus {
    outline: 0;
}
a, a:visited{
    text-decoration:none;
}

label, .wordWrap{
    word-wrap: break-word;
    word-break: break-all;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,th {
    padding: 0;
}
img{
    vertical-align: middle;
}
pre{
    white-space: pre-wrap;
    word-wrap: break-word;
}
/*  多行文本显示省略号基础样式 */
.text-ellipsis{
    display: -webkit-box; /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
    text-overflow: ellipsis; /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*  基础按钮样式 */
button:active{
    border: 0px;
    outline: none;
}
button:focus{
    outline: none;
}
button:hover{
    cursor: pointer;
}
/*  flex弹性布局的基础样式*/
.flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex-row{
    /* 09版 */
    -webkit-box-orient: horizontal;
    /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.flex-column{
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.header-top{
    position: fixed;
    top: 0;
    min-width: 1024px;
    max-width: 2000px;
    width: 100%;
    z-index: 99;
}
.header-top-height{
    margin-top: 80px;
}
.header-top .icon-phone{
    background-color: #1b1b1b;
    padding: 0 15%;
    text-align: right;
}
.header-top .icon-phone span{
    color: #ffc106;
    padding: 8px 0 8px 21px;
    background: url("../images/icon_phone.png") no-repeat;
    background-position: center left;
    background-size: 12px 12px;
}
.header-top .nav{
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 0 15%;
    background-color: #FFFFFF;
}
.header-top .nav .logo{
    width: 244px;
    height: 60px;
}
.header-top .nav .nav-a{
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}
.header-top .nav .nav-a a{
    padding: 31px 18px;
    font-size: 16px;
    color: #3a3a3a;
}
.header-top .nav .nav-a a:hover{
    background-color: #ffc30e;
}
.header-top .nav .nav-a .contact-us{
    margin-left: 18px;
}
/*-------------  二级下拉菜单 animation -------------------*/
.header-top .nav .nav-a .drop-cont{
    position: relative;
}
.header-top .nav .nav-a .drop-cont .drop-div{
    justify-content: space-between;
    align-items: center;
    display: none;
    position: fixed;
    box-sizing: border-box;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 0 15%;
    background-color: #f3f3f3;
}
.header-top .nav .nav-a .drop-cont .drop-div .left-cont{
    width: 244px;
}
.header-top .nav .nav-a .drop-cont .drop{
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    width: 300px;
    height: 50px;
    background-color: #f3f3f3;
}
.header-top .nav .nav-a .drop-cont .drop li{
    opacity: 1;
}
.header-top .nav .nav-a .drop-cont:hover .drop-div{
    display: flex;
    display: -webkit-flex;
}
.header-top .nav .nav-a .drop-cont .drop li .a {
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: 16px;
    color: #484848;
    height: 50px;
    padding: 0 18px;
}
.header-top .nav .nav-a .drop-cont .drop li .a:hover {
    color: #ffc20c;
    background-color: #fff;
}
/*  swiper轮播图  */
.column-1{
    margin-top: 80px;
}
.column-1 .swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.column-1 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.column-1 .swiper-slide .img{
    width: 100%;
    height: auto;
}
.column-1 .swiper-button-next,.column-1 .swiper-button-prev{
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 10;
    cursor: pointer;
    background-image: url("");
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.71);
}
.column-1 .swiper-button-next:hover,.column-1 .swiper-button-prev:hover{
    background-color: #ffc106;
}
.column-1 .swiper-button-next{
    right: 80px;
    left: auto;
}
.column-1 .swiper-button-next:before,.column-1 .swiper-button-next:after,.column-1 .swiper-button-prev:before,.column-1 .swiper-button-prev:after{
    background-color: #ffc106;
 }
.column-1 .swiper-button-next:hover:before,.column-1 .swiper-button-next:hover:after,.column-1 .swiper-button-prev:hover:before,.column-1 .swiper-button-prev:hover:after{
    background-color: #000000;
}
.column-1 .swiper-button-next:before{
    content: '';
    position: absolute;
    top:35px;
    left: 34px;
    width: 15px;
    height: 2px;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
}
.column-1 .swiper-button-next:after{
    content: '';
    position: absolute;
    top:45px;
    left: 34px;
    width: 15px;
    height: 2px;
    transform:rotate(-45deg);
    -ms-transform:rotate(-45deg); 	/* IE 9 */
    -moz-transform:rotate(-45deg); 	/* Firefox */
    -webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
    -o-transform:rotate(-45deg); 	/* Opera */
}
.column-1 .swiper-button-prev{
    left: 80px;
    right: auto;
}
.column-1 .swiper-button-prev:before{
    content: '';
    position: absolute;
    top:35px;
    left: 34px;
    width: 15px;
    height: 2px;
    transform:rotate(135deg);
    -ms-transform:rotate(135deg); 	/* IE 9 */
    -moz-transform:rotate(135deg); 	/* Firefox */
    -webkit-transform:rotate(135deg); /* Safari 和 Chrome */
    -o-transform:rotate(135deg); 	/* Opera */
}
.column-1 .swiper-button-prev:after{
    content: '';
    position: absolute;
    top:45px;
    left: 34px;
    width: 15px;
    height: 2px;
    transform:rotate(-135deg);
    -ms-transform:rotate(-135deg); 	/* IE 9 */
    -moz-transform:rotate(-135deg); 	/* Firefox */
    -webkit-transform:rotate(-135deg); /* Safari 和 Chrome */
    -o-transform:rotate(-135deg); 	/* Opera */
}
.column-1 .pagination-cont{
    position: absolute;
    right: 15%;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #f6f6f6;
}
.column-1 .pagination-cont span{
    font-size: 24px;
    font-weight: 600;
    color: #000106;
}
/*  每个栏目title的基础样式  */
.header-title{
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
}
.header-title .english-text{
    font-size: 36px;
    font-weight: 300;
    color: #cccccd;
}
.header-title .english-text2{
    color: #7f6803;
}
.header-title .chinese-text{
    font-size: 34px;
    color: #000106;
    font-weight: 600;
}
.header-title .img{
    width: 278px;
    height: 15px;
    margin-top: 6px;
}
.header-title .p{
    font-size: 16px;
    color: #868686;
    margin-top: 12px;
    text-align: center;
    line-height: 150%;
}
.header-title .p2{
    color: #000000;
}
.s_down {
    box-shadow: 0 0 5px #888;
}
/*  第二栏  */
.column-2{
    padding: 80px 0 50px 0;
}
.column-2 .content{
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 70px 0;
}
.column-2 .content .box{
    justify-content: center;
    align-content: center;
    align-items: center;
}
.column-2 .content .box .img{
    position: relative;
   width: 301px;
    height: 150px;
    background-color: #161a26;
}
.column-2 .content .box:nth-child(1) .img img{
    position: absolute;
    width: 301px;
    height: 186px;
}
.column-2 .content .box:nth-child(2) .img img{
    position: absolute;
    top: -24px;
    width: 301px;
    height: 174px;
}
.column-2 .content .box:nth-child(3) .img img{
    position: absolute;
    width: 301px;
    height: 195px;
}
.column-2 .content .box:nth-child(4) .img img{
    position: absolute;
    top: -24px;
    width: 301px;
    height: 168px;
}
.column-2 .content .box .text{
    justify-content: center;
    align-content: center;
    /*align-items: center;*/
    width: 211px;
    height: 70px;
    padding: 40px 45px;
    background-color: #f8f8f8;
}
.column-2 .content .box:hover .text{
    background-color: #ffc106;
}
.column-2 .content .box:hover img{
    /*animation:ghostUpdown 3s linear infinite normal;*/
    /*-webkit-animation:ghostUpdown 3s linear infinite normal;*/
}
/*  图片漂浮动画  */
@keyframes ghostUpdown{
    0%{margin-top:0;}
    25%{margin-top:15px;}
    50%{margin-top:0;}
    75%{margin-top:-15px;}
    100%{margin-top:0;}
}
@-webkit-keyframes ghostUpdown{
    0%{margin-top:0;}
    25%{margin-top:15px;}
    50%{margin-top:0;}
    75%{margin-top:-15px;}
    100%{margin-top:0;}
}
.column-2 .content .box .text h3{
    font-size: 20px;
    color: #000000;
}
.column-2 .content .box .text p{
    font-size: 14px;
    color: #696969;
    line-height: 150%;
    margin-top: 5px;
}
.column-2 .content .box:hover .text p{
    color: #000000;
}
.column-2 .content .six-add{
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -37.5px;
}
/*  第三栏  */
.column-3{
    width: 100%;
    padding: 40px 0;
    background: url("../images/column_3_bg.jpg") no-repeat;
    background-position: center center;
    background-size: 100% auto;
}
.column-3 .content{
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 70px 0;
}
.column-3 .content .box{
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 0 5px;
}
.column-3 .content .box .img{
    position: relative;
    width: 231px;
    height: 220px;
}
.column-3 .content .box .img .img-icon{
    position: absolute;
    z-index: 1;
    animation:ghostUpdown 3s linear infinite normal;
    -webkit-animation:ghostUpdown 3s linear infinite normal;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.column-3 .content .box .img .img-bg{
    position: absolute;
    bottom: 0px;
}
.column-3 .content .box:nth-child(1) .img .img-icon{
    top:0;
    left: 50%;
    margin-left: -70px;
}
.column-3 .content .box:nth-child(2) .img .img-icon{
    top:0;
    left: 50%;
    margin-left: -39.5px;
}
.column-3 .content .box:nth-child(3) .img .img-icon{
    top:0;
    left: 50%;
    margin-left: -78px;
}
.column-3 .content .box:nth-child(4) .img .img-icon{
    top:0;
    left: 50%;
    margin-left: -63.5px;
}
.column-3 .content .box:nth-child(5) .img .img-icon{
    top:0;
    left: 50%;
    margin-left: -65px;
}
.column-3 .content .box .text{
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 231px;
    height: 70px;
    padding-bottom: 20px;
    background-color: #f8f8f8;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.column-3 .content .box .text h3{
    font-size: 16px;
    color: #000000;
}
.column-3 .content .box .text .footer-icon{
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    border-radius: 50%;
    background-color: #ffc106;
}
.column-3 .content .box .box-hover{
    position: absolute;
    bottom: 0;
    display: none;
    width: 231px;
    height: 270px;
    border-radius: 5px;
    background-color: #ffc106;
    z-index: 1;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 4s ease 0s;
}
.column-3 .content .box .box-hover .title-img{
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -50px;
    border-radius: 50%;
    background-color: #ffc106;
}
.column-3 .content .box .box-hover .title-img img{

}
.column-3 .content .box .box-hover .cont-text{
    justify-content: center;
    align-items: center;
    width: 181px;
    height: 225px;
    padding: 0 25px;
    margin-top: 45px;
}
.column-3 .content .box .box-hover .cont-text h3{
    font-size: 22px;
}
.column-3 .content .box .box-hover .cont-text p{
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    padding: 0 8px;
    line-height: 150%;
    text-align: center;
}
.column-3 .content .box .box-hover .cont-text .btn{
    font-size: 13px;
    color: #fff;
    padding: 10px 20px;
    background-color: #000000;
    border-radius: 25px;
    margin-top: 35px;
}
.column-3 .content .box:nth-child(1):hover .img .img-icon,
.column-3 .content .box:nth-child(1):hover .text .footer-icon,
.column-3 .content .box:nth-child(2):hover .img .img-icon,
.column-3 .content .box:nth-child(2):hover .text .footer-icon,
.column-3 .content .box:nth-child(3):hover .img .img-icon,
.column-3 .content .box:nth-child(3):hover .text .footer-icon,
.column-3 .content .box:nth-child(4):hover .img .img-icon,
.column-3 .content .box:nth-child(4):hover .text .footer-icon,
.column-3 .content .box:nth-child(5):hover .img .img-icon,
.column-3 .content .box:nth-child(5):hover .text .footer-icon{
    display: none;
}
.column-3 .content .box:nth-child(1):hover .box-hover,
.column-3 .content .box:nth-child(2):hover .box-hover,
.column-3 .content .box:nth-child(3):hover .box-hover,
.column-3 .content .box:nth-child(4):hover .box-hover,
.column-3 .content .box:nth-child(5):hover .box-hover{
    display: block;
    margin-top: 0;
    cursor: pointer;
}
/*  第四栏  */
.column-4{
    position: relative;
    padding: 100px 0 50px 0;
    background-color: #fafafa;
}
.column-4 .six-add{
    position: absolute;
    top: -34px;
    left: 50%;
    margin-left: -38px;
}
.column-4 .cont-img{
    margin-top: -66px;
}
.column-4 .cont-img img{
    width: 100%;
}
.column-4 .cont-process{
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-bottom: 30px;
}
/*.column-4 .cont-process:nth-child(3){
    margin-top: 85px;
    margin-bottom: 58px;
}*/
.column-4 .cont-process:nth-child(2){
    margin-top: 85px;
    margin-bottom: 58px;
}
.column-4 .cont-process .li-cont{
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
}
.column-4 .cont-process .process-li{
    position: relative;
    width: 140px;
    padding: 10px 10px;
    z-index: 2;
    background-color: #fafafa;
}
.column-4 .cont-process .process-li .title{
    font-size: 16px;
    font-weight: 600;
    color: #565656;
}
.column-4 .cont-process .process-li .text{
    font-size: 14px;
    color: #868686;
    margin-top: 10px;
    line-height: 130%;
}
/*  流程指标  */
.column-4 .cont-process .icon-process{
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 50%;
    margin: 0 25px;
    background-color: #fafafa;
    z-index: 2;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.column-4 .cont-process .icon-process:before,.column-4 .cont-process .icon-process:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #000;
    z-index: 2;
    top: 50%;
    left: 50%;
}
.column-4 .cont-process .li-cont:hover{cursor: pointer;}
.column-4 .cont-process .li-cont:hover .icon-process{
    border: 2px solid #ffba04;
    background-color: #ffba04;
}
.column-4 .cont-process .li-cont:hover .process-li .title{
    color: #313131;
    font-weight:bold;
}
.column-4 .cont-process .li-cont:hover .process-li .text{
    color: #5b5b5b;
}
.column-4 .cont-process .li-cont:hover .icon-process:before,.column-4 .cont-process .li-cont:hover .icon-process:after{
    background-color: #fff;
}
.column-4 .cont-process .icon-process:before{
    margin: -4px 0 0 -4px;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
}
.column-4 .cont-process .icon-process:after{
    margin: 3px 0 0 -4px;
    transform:rotate(-45deg);
    -ms-transform:rotate(-45deg); 	/* IE 9 */
    -moz-transform:rotate(-45deg); 	/* Firefox */
    -webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
    -o-transform:rotate(-45deg); 	/* Opera */
}
.column-4 .cont-process .icon-process-right{
    transform:rotate(-45deg);
    -ms-transform:rotate(-45deg); 	/* IE 9 */
    -moz-transform:rotate(-45deg); 	/* Firefox */
    -webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
    -o-transform:rotate(-45deg); 	/* Opera */
}
.column-4 .cont-process .icon-process2{
    transform:rotate(-180deg);
    -ms-transform:rotate(-180deg); 	/* IE 9 */
    -moz-transform:rotate(-180deg); 	/* Firefox */
    -webkit-transform:rotate(-180deg); /* Safari 和 Chrome */
    -o-transform:rotate(-180deg); 	/* Opera */
}
/*  半圆虚线  */
.column-4 .cont-process .Dotted-line{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -650px;
    height: 150px;
    width: 150px;
    border-top: 1px dashed #92949a;
    border-left: 1px dashed #92949a;
    border-bottom: 1px dashed #92949a;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    z-index: 0;
}
.column-4 .cont-process .Dotted-line img{
    position: absolute;
    top: -46px;
    right: -230px;
}
.column-4 .cont-process .Dotted-line:before{
    content: '';
    position: absolute;
    top:-1px;
    right: -180px;
    width: 180px;
    border-top: 1px dashed #92949a;
}
.column-4 .cont-process .Dotted-line2{
    position: absolute;
    top: 50%;
    right: 50%;
    margin-right: -650px;
    height: 150px;
    width: 150px;
    border-top: 1px dashed #92949a;
    border-right: 1px dashed #92949a;
    border-bottom: 1px dashed #92949a;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    z-index: 0;
}
.column-4 .cont-process .process-li:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    height: 0px;
    width: 104px;
    border-top: 1px dashed #92949a;
    z-index: 0;
}
/*.column-4 .cont-process:nth-child(3) .li-cont:nth-child(6) .process-li:after{
    content: '';
    position: absolute;
    border-top: 0px dashed #92949a;
}
.column-4 .cont-process:nth-child(3) .li-cont:nth-child(6) .icon-process2{
    position: absolute;
    top: 177px;
    left: 45px;
    z-index: 3;
}*/
.column-4 .cont-process:nth-child(2) .li-cont:nth-child(6) .process-li:after{
    content: '';
    position: absolute;
    border-top: 0px dashed #92949a;
}
.column-4 .cont-process:nth-child(2) .li-cont:nth-child(6) .icon-process2{
    position: absolute;
    top: 177px;
    left: 45px;
    z-index: 3;
}
/*.column-4 .cont-process:nth-child(4) .process-li:nth-child(1):before{
    content: '';
    position: absolute;
    top: 50%;
    left: -304px;
    height: 0px;
    width: 304px;
    border-top: 1px dashed #92949a;
    z-index: 0;
}*/
.column-4 .cont-process:nth-child(3) .process-li:nth-child(1):before{
    content: '';
    position: absolute;
    top: 50%;
    left: -304px;
    height: 0px;
    width: 304px;
    border-top: 1px dashed #92949a;
    z-index: 0;
}
/*  第五栏  */
.column-5{
    position: relative;
    padding: 50px 0;
    background: url("../images/column_5_bg.png") no-repeat;
    background-position: center center;
    margin-bottom: 100px;
    background-size: 100% auto;
}
.column-5 .content{
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 50px 0 -100px 0;
    z-index: 2;
}
.column-5 .content:before{
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    margin-left: -617px;
    width: 1234px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.5);
}
.column-5 .content:after{
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -642px;
    width: 1284px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.5);
}
.column-5 .right-cont{
    width: 592px;
    height: 300px;
}
.column-5 .left-cont{
    width: 430px;
    height: 300px;
    padding: 0 81px;
    justify-content: center;
    align-content: flex-start;
    background-color: #f9faf9;
    z-index: 1;
}
.column-5 .left-cont .title-text{
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}
.column-5 .left-cont .title-text:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2.5px;
    width: 45px;
    height: 5px;
    background-color: #000;
}
.column-5 .left-cont .title-text span{
    font-size: 24px;
    color: #000106;
    font-weight: 600;
}
.column-5 .left-cont .title-text span:nth-child(2){
    color: #cbcccd;
    font-weight: 500;
}
.column-5 .left-cont .p{
    font-size: 16px;
    color: #000;
    padding: 25px 0;
    line-height: 150%;
}
.column-5 .left-cont .wechat-name{
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 85px;
    height: 37px;
    background: url("../images/icon_wechat_name.png") no-repeat;
    background-position: center center;
    background-size: 85px 37px;
}
.column-5 .left-cont .wechat-name span{
    font-size: 16px;
    color: #ffd904;
    margin-bottom: 5px;
}
.column-5 .swiper-container{
    height: 300px;
}
.column-5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.column-5 .swiper-pagination{
    text-align: right;
}
.column-5 .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    background: #767170;
    color: #fff;
    opacity: 1;
    text-align: center;
    border-radius: inherit;
}
.column-5 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffd904;
    color: #000;
}
/*  第六栏  */
.column-6{
    padding: 50px 0;
}
.column-6 .content .six-list{
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 60px;
}
.column-6 .content .six-list:nth-child(2){
    margin-top: 50px;
}
.column-6 .content .six-list .hexagon {
    width: 160px;
    height: 100px;
    background-color: #ededed;
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 0 5px;
}
.column-6 .content .six-list .hexagon:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 40px solid #ededed;
}
.column-6 .content .six-list .hexagon:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 40px solid #ededed;
}
.column-6 .content .six-list .hexagon2 {
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 93px;
    background-color: #fff;
    position: relative;
}
.column-6 .content .six-list .hexagon2:before {
    content: "";
    position: absolute;
    top: -37.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 37.5px solid #fff;
}
.column-6 .content .six-list .hexagon2:after {
    content: "";
    position: absolute;
    bottom: -37.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-top: 37.5px solid #fff;
    z-index: 2;
}
.column-6 .content .six-list .hexagon:hover{
    background-color: #000;
}
.column-6 .content .six-list .hexagon:hover:before {
    border-bottom: 40px solid #000;
}
.column-6 .content .six-list .hexagon:hover:after {
    border-top: 40px solid #000;
}
.column-6 .content .six-list .hexagon:hover .hexagon2{
    background-color: #ffc106;
}
.column-6 .content .six-list .hexagon:hover .hexagon2:before {
    border-bottom: 37.5px solid #ffc106;
}
.column-6 .content .six-list .hexagon:hover .hexagon2:after {
    border-top: 37.5px solid #ffc106;
}
.column-6 .idea-cont{
    position: relative;
    margin-top: 150px;
    justify-content: center;
    align-items: center;
}
.column-6 .idea-cont .content{
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 357px;
    /*padding: 0 250px;*/
    background: url("../images/coloumn_idea_bg.jpg") no-repeat;
    background-position: center center;
    background-size: 100% auto;
}
.column-6 .idea-cont .content img{
    width: 1807px;
    height: 357px;
}
.column-6 .idea-cont .content .tijiao-idea{
    position: absolute;
    justify-content: center;
    align-items: flex-start;
    width: 600px;
    height: 407px;
    top: -25px;
    left: 16%;
    background-color: #4b4b4b;
    padding: 0 50px;
}
.column-6 .idea-cont .content .tijiao-idea .title{
    font-size: 34px;
    color: #fff;
}
.column-6 .idea-cont .content .tijiao-idea .title span{
    font-size: 34px;
    color: #666666;
    font-weight: 300;
}
.column-6 .idea-cont .content .tijiao-idea .input{
    margin-top: 30px;
}
.column-6 .idea-cont .content .tijiao-idea .input input{
    width: 258px;
    padding: 10px 15px;
    border: 1px solid #6e6e6e;
    border-radius: 5px;
    color: #fff;
}
.column-6 .idea-cont .content .tijiao-idea  .input input:hover,.column-6 .idea-cont .content .tijiao-idea .textarea:hover{
    border:1px solid #e5c40c;
}
.column-6 .idea-cont .content .tijiao-idea .input input:nth-child(1){
    margin:0px 20px 0 0;
}
.column-6 .idea-cont .content .tijiao-idea .input:nth-child(3){
    margin-top: 10px;
}
.column-6 .idea-cont .content .tijiao-idea .textarea{
    margin-top: 10px;
    width: 570px;
    height: 50px;
    padding: 10px 15px;
    border: 1px solid #6e6e6e;
    border-radius: 5px;
    color: #fff;
}
.column-6 .idea-cont .content .tijiao-idea .subform{
    width: 150px;
    font-size: 14px;
    color: #fff;
    background-color: #ffc106;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}
.column-6 .idea-cont .content .right-cont{
    /*margin-right: 12%;*/
    margin-left: 36%;
}
.column-6 .idea-cont .content .right-cont .title{
    margin-bottom: 20px;
}
.column-6 .idea-cont .content .right-cont .title .left-text{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.column-6 .idea-cont .content .right-cont .title .left-text .maohao{
    font-size: 50px;
    font-weight: 600;
    color: #ffc106;
}
.column-6 .idea-cont .content .right-cont .title .left-text .shu{
    border-radius: 8px;
    padding: 5px;
    background-color: #2a2b2c;
    font-size: 60px;
    font-weight: 600;
    color: #ffc106;
    margin-right: 3px;
}
.column-6 .idea-cont .content .right-cont .title .right-text{
    justify-content: center;
    margin-left: 10px;
}
.column-6 .idea-cont .content .right-cont .title .right-text h3{
    font-size: 30px;
    font-weight: 600;
    color: #ffc106;
}
.column-6 .idea-cont .content .right-cont .title .right-text p{
    font-size: 20px;
    font-weight: 600;
    color: #ffc106;
}
.column-6 .idea-cont .content .right-cont .text-cont{
    justify-content: space-around;
    align-items: flex-end;
    border-top: 1px solid #5d5b5b;
}
.column-6 .idea-cont .content .right-cont .text-cont .lianxi h3{
    font-size: 20px;
    color: #fff;
    padding: 20px 0  17px 0;
}
.column-6 .idea-cont .content .right-cont .text-cont .lianxi h3 span{
    font-size: 20px;
    color: #5d5a5a;
    font-weight: 300;
}
.column-6 .idea-cont .content .right-cont .text-cont .lianxi p{
    font-size: 14px;
    color: #fff;
    padding: 3px 0;
}
.column-6 .idea-cont .content .right-cont .text-cont .btn{
    font-size: 14px;
    padding: 5px 10px;
    color: #fff;
    border-radius: 10px;
    background-color: #2e2f2f;
    margin:0 0 15px 15px;
}
/*  第七栏  */
.column-7{
    padding-bottom: 40px;
}
.column-7 .title-tab{
    justify-content: center;
    align-items: center;
    margin: 30px 0 15px 0;
}
.column-7 .title-tab .left-span,.column-7 .title-tab .right-span{
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: 600;
    padding: 0px 30px;
    height: 54px;
}
.column-7 .title-tab .left-span{
    color: #2d2d2d;
    background-color: #ffc106;
    margin-right: -20px;
}
.column-7 .title-tab .left-span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -13.5px;
    width: 0;
    height: 0;
    border-bottom: 27px solid transparent;
    border-right: 13.5px solid #ffc106;
    border-top: 27px solid transparent;
}
.column-7 .title-tab .right-span{
    color: #636363;
    background-color: #f3f3f3;
    margin-left: -20px;
}
.column-7 .title-tab .right-span:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -13.5px;
    width: 0;
    height: 0;
    border-bottom: 27px solid transparent;
    border-left: 13.5px solid #f3f3f3;
    border-top: 27px solid transparent;
}
.column-7 .title-tab img{
    z-index: 2;
}
.column-7 .content{
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.column-7 .content .left-cont{
    justify-content: center;
    align-items: flex-start;
    margin-right: 15px;
}
.column-7 .content .left-cont img{
    width: 211px;
    height: 142px;
}
.column-7 .content .left-cont .li-text{
    justify-content: center;
    align-items: center;
    height: 142px;
}
.column-7 .content .left-cont .li-text:nth-child(1){
    margin-bottom: 15px;
}
.column-7 .content .left-cont .li-text .text{
    justify-content: center;
    align-items: flex-start;
    width: 315px;
    height: 142px;
    padding: 0 40px;
    background-color: #f8f8f8;
}
.column-7 .content .left-cont .li-text .text:hover{
    background-color: #ffc106;
}
.column-7 .content .left-cont .li-text .text h3{
    font-size: 19px;
    color: #2d2d2d;
}
.column-7 .content .left-cont .li-text .text .time{
    font-size: 16px;
    color: #9b7c1f;
    margin: 10px 0;
}
.column-7 .content .left-cont .li-text .text .text-p{
    font-size: 16px;
    color: #373737;
    line-height: 120%;
}
.column-7 .content .right-cont{
    width: 606px;
    height: 299px;
}
/* 轮播图 */
.column-7 .content .right-cont .swiper-container {
    width: 100%;
    height: 100%;
}
.column-7 .content .right-cont .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.column-7 .content .right-cont .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #747273;
    opacity: .2
}
.column-7 .content .right-cont .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffd904
}
/*  第八栏  */
.column-8{
    position: relative;
    justify-content: center;
    align-items: center;
    height: 300px;
    padding: 87px 0 0px 0;
    /*margin: 80px 0 0 0;*/
    background-color: #ffc106;
    background: url(../images/foooter_bg.png) no-repeat;
    background-position: top center;
    /*background-size: 100% 100%;*/
    z-index: 2;
}
/*.column-8:before{*/
    /*position: absolute;*/
    /*top: -50px;*/
    /*left: 0;*/
    /*content: '';*/
    /*width: 100%;*/
    /*height: 100px;*/
    /*border-radius:0 0 100% 100% / 0 0 100% 100%;*/
    /*background-color: #ffffff;*/
/*}*/
/*.column-8:after{*/
    /*position: absolute;*/
    /*bottom: -50px;*/
    /*left: 0;*/
    /*content: '';*/
    /*width: 100%;*/
    /*height: 100px;*/
    /*border-radius:0 0 100% 100% / 0 0 100% 100%;*/
    /*background-color: #ffc106;*/
    /*z-index: 1;*/
/*}*/
.column-8 .left-cont{
    margin-right: 260px;
}
.column-8 .left-cont .cont-text{
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 30px;
}
.column-8 .left-cont .cont-text .text h3{
    font-size: 19px;
    color: #333333;
}
.column-8 .left-cont .cont-text img{
    margin: -8px 12px 0 0;
}
.column-8 .left-cont .cont-text .text{
    padding-left: 56px;
}
.column-8 .left-cont .cont-text .text img{
    margin-left: -56px;
}
.column-8 .left-cont .cont-text .text p{
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}
.column-8 .left-cont .cont-text .text .p1{
    margin: 5px 0;
}
.column-8 .left-cont .cont-text .text .p2{
    font-size: 13px;
    color: #332701;
    font-weight: inherit;
}
.column-8 .right-cont{
    justify-content: space-around;
    align-items: flex-start;
    width: 600px;
    height: 169px;
}
.column-8 .right-cont .shouye,.column-8 .right-cont .anli{
    justify-content: center;
    align-content: center;
    width: 200px;
}
.column-8 .right-cont .shouye h3,.column-8 .right-cont .anli h3{
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
}
.column-8 .right-cont .shouye a,.column-8 .right-cont .anli a{
    position: relative;
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}
.column-8 .right-cont .shouye a:before,.column-8 .right-cont .anli a:before{
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
}
.column-8 .right-cont .shouye a:hover,.column-8 .right-cont .anli a:hover{
    margin-left: 15px;
    font-weight: 600;
    cursor: pointer;
}
.column-8 .right-cont .shouye a:hover:before,.column-8 .right-cont .anli a:hover:before{
    border-left: 5px solid #000;
}
.column-8 .right-cont .cont-code{
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #000;
}
.column-8 .right-cont .cont-code img{
    margin-bottom: 10px;
}
/* 第九栏 */
/* add推荐列表 */
.column-9{
    position: relative;
    padding: 100px 0 50px 0;
    background-color: #fff;
}
.column-9 .six-add{
    position: absolute;
    top: -34px;
    left: 50%;
    margin-left: -38px;
}
.column-9 .content{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 16px 0 23px;
}
.column-9 .contents{
    position: relative;
    width: 1180px;
    margin: auto;
}
.column-9 .swiper-container{
    width: 1180px;
    height: 100%;
    margin-top: 10px;
    padding: 18px;
    margin-left: -18px;
}
.column-9 .swiper-slide{
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.column-9 .slide-li{
    position: relative;
    width: 350px;
    padding: 15px;
    text-align: left;
    transition: all 1s ease 0s;
    background:rgba(250,250,250,1);
    border:1px solid rgba(229,229,229,1)
}
.column-9 .slide-li:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0px;
    height: 5px;
    background-color: transparent;
    transition: all 1s ease 0s;
}
.column-9 .slide-li:hover:after{
    content: '';
    position:absolute;
    bottom: 0;
    left: 50%;
    margin-left: -190px;
    width: 380px;
    height: 5px;
    background-color: #ffc000;
}
.column-9 .slide-li:hover{
    cursor: pointer;
    box-shadow:0px 9px 22px 0px rgba(0, 0, 0, 0.19);
    z-index: 2;
}
.column-9 .li-img-box{
    width: 350px;
    height: 208px;
    overflow: hidden;
}
.column-9 .slide-li h3{
    font-size: 18px;
    color: #000106;
    margin-top: 25px;
}
.column-9 .slide-li p{
    font-size: 14px;
    color: #616163;
    margin-top: 8px;
    line-height: 150%;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.column-9 .contents .button-next,
.column-9 .contents .button-prev{
    position: absolute;
    top: 50%;
    margin-top: -45.5px;
    z-index: 10;
    cursor: pointer;
    outline: none;
}
.column-9 .contents .button-next{
    right: -55px;
}
.column-9 .contents .button-prev{
    left: -60px;
}
/*  底部  */
.html-footer{
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding-top: 60px;
    margin-top: -60px;
    background-color: #1e1e1e;
}
.html-footer span{
    font-size: 16px;
    color: #ffc106;
}
.html-footer:before{
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #ffc106;
}
/*  文字跳动动画  */
.font-animate > span {
    animation-name: fontanimate;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    cursor: pointer;
}
.font-animate > span:nth-child(1) { animation-delay: 0.0s }
.font-animate > span:nth-child(2) { animation-delay: 0.1s }
.font-animate > span:nth-child(3) { animation-delay: 0.2s }
.font-animate > span:nth-child(4) { animation-delay: 0.3s }

@keyframes fontanimate {
    from, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0.5,0.1);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0px, -10px, 0);
    }
}

/* app_Development.css  */

/*  app_Development的标题  */
.app-header-title{
    justify-content: center;
    align-items: center;
    height: 35px;
}
.app-header-title .h3{
    position: relative;
    font-size: 31px;
    color: #373737;
    font-weight: bold;
    padding-right: 10px;
    margin-right: 11px;
    line-height: 33px;
    height: 35px;
}
.app-header-title .h3:after{
    content: '';
    position: absolute;
    top: 4px;
    right: 0px;
    width: 1px;
    height: 30px;
    background-color: #d6d6d6;
}
.app-header-title .english-text{
    justify-content: space-between;
    align-items: flex-start;
    height: 35px;
}
.app-header-title .english-text .span{
    font-size: 14px;
    color: #7f8082;
    padding: 0;
    line-height: 19px;
}
.app-column-1 img{
    width: 100%;
    height: auto;
}
.app-column-2{
    justify-content: flex-end;
    align-items: center;
    background: url("../images/column_2_bg.jpg") no-repeat;
    background-position: center left;
    background-size: auto 100%;
}
.app-column-2 .content{
    width: 63%;
    padding:0 0 65px 10%;
    background-color: #fff;
}
.app-column-2 .content .column-2-title{
    justify-content: flex-start;
    padding: 60px 0;
}
.app-column-2 .content .li-text{
    position: relative;
    justify-content: center;
    padding-left: 70px;
    height: 120px;
    border-left: 1px dashed #dddddd;
    border-bottom: 1px dashed #dddddd;
    background-color: #fefefe;
    transition: all 1s ease 0s;
}
.app-column-2 .content .li-text .hexagon {
    width: 80px;
    height: 45px;
    background-color: #fbd70f;
    position: absolute;
    left: -40px;
    font-size: 40px;
    color: #0b0b0b;
    font-weight: bold;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: all 1s ease 0s;
}
.app-column-2 .content .li-text .hexagon:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 24px solid #fbd70f;
    transition: all 1s ease 0s;
}
.app-column-2 .content .li-text .hexagon:after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 24px solid #fbd70f;
    transition: all 1s ease 0s;
}
.app-column-2 .content .li-text:nth-child(2){
    border-top: 1px dashed #dddddd;
}
.app-column-2 .content .li-text:nth-child(3),
.app-column-2 .content .li-text:nth-child(5),
.app-column-2 .content .li-text:nth-child(7){
    background-color: #f5f5f5;
}
.app-column-2 .content .li-text .p1{
    font-size: 16px;
    font-weight: bold;
    color: #373737;
    transition: all 1s ease 0s;
}

.app-column-2 .content .li-text .p2{
    font-size: 14px;
    color: #959595;
    margin-top: 10px;
    transition: all 1s ease 0s;
}
/*  li-text的伪类效果  */
.app-column-2 .content .li-text:hover{
    cursor: pointer;
    z-index: 2;
    box-shadow: 0px 21px 31px #d2d2d2;
}
.app-column-2 .content .li-text:hover .hexagon,
.app-column-2 .content .li-text:hover .p1,
.app-column-2 .content .li-text:hover .p2{
    margin-left: -20px;
}
.app-column-2 .content .li-text:hover .hexagon{
    color: #fbd70f;
    background-color: #0b0b0b;
}
.app-column-2 .content .li-text:hover .hexagon:before{
    border-bottom: 24px solid #0b0b0b;
}
.app-column-2 .content .li-text:hover .hexagon:after{
    border-top: 24px solid #0b0b0b;
}
.app-column-3{
    justify-content: center;
    align-items: center;
    background-color: #faf7e7;
    padding: 60px 0 80px 0;
    overflow: hidden;
}
.app-column-3 .left-content{
     position: relative;
 }
.app-column-3 .Triangle-bg{
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid #ffca14;
}
.app-column-3 .deformation{
    top: 0px;
    left: -145px;
    transform:rotate(15deg) scale(0.2);
    -ms-transform:rotate(15deg) scale(0.2); 	/* IE 9 */
    -moz-transform:rotate(15deg) scale(0.2); 	/* Firefox */
    -webkit-transform:rotate(15deg) scale(0.2); /* Safari 和 Chrome */
    -o-transform:rotate(15deg) scale(0.2); 	/* Opera */
}
.app-column-3 .deformation2{
    top: 424px;
    left: -193px;
    transform:rotate(15deg);
    -ms-transform:rotate(15deg); 	/* IE 9 */
    -moz-transform:rotate(15deg); 	/* Firefox */
    -webkit-transform:rotate(15deg); /* Safari 和 Chrome */
    -o-transform:rotate(15deg); 	/* Opera */
}
.app-column-3 .deformation3{
    top: 518px;
    left: 600px;
    transform:rotate(15deg) scale(0.5);
    -ms-transform:rotate(15deg) scale(0.5); 	/* IE 9 */
    -moz-transform:rotate(15deg) scale(0.5); 	/* Firefox */
    -webkit-transform:rotate(15deg) scale(0.5); /* Safari 和 Chrome */
    -o-transform:rotate(15deg) scale(0.5); 	/* Opera */
}
.app-column-3 .deformation4{
    top: 600px;
    left: 700px;
    transform:rotate(-15deg) scale(0.2);
    -ms-transform:rotate(-15deg) scale(0.2); 	/* IE 9 */
    -moz-transform:rotate(-15deg) scale(0.2); 	/* Firefox */
    -webkit-transform:rotate(-15deg) scale(0.2); /* Safari 和 Chrome */
    -o-transform:rotate(-15deg) scale(0.2); 	/* Opera */
}
.app-column-3 .deformation5{
    top: -45px;
    right: -145px;
    transform:rotate(-54deg) scale(0.2);
    -ms-transform:rotate(-54deg) scale(0.2); 	/* IE 9 */
    -moz-transform:rotate(-54deg) scale(0.2); 	/* Firefox */
    -webkit-transform:rotate(-54deg) scale(0.2); /* Safari 和 Chrome */
    -o-transform:rotate(-54deg) scale(0.2); 	/* Opera */
}
.app-column-3 .left-content .cont-up{
    /*position: relative;*/
}
.app-column-3 .left-content .cont-down{
    /*position: relative;*/
    margin: 38px 32px 32px 32px;
    transform:rotate(180deg);
    -ms-transform:rotate(180deg); 	/* IE 9 */
    -moz-transform:rotate(180deg); 	/* Firefox */
    -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
    -o-transform:rotate(180deg); 	/* Opera */
}
.app-column-3 .left-content .triangle-up,
.app-column-3 .left-content .triangle-up2,
.app-column-3 .left-content .triangle-up3,
.app-column-3 .left-content .triangle-up4{
    justify-content: center;
    align-items: center;
    position: absolute;
    top:0;
    width: 160px;
    height: 160px;
    z-index: 1;
}
.app-column-3 .left-content .triangle-up span,
.app-column-3 .left-content .triangle-up2 span,
.app-column-3 .left-content .triangle-up3 span,
.app-column-3 .left-content .triangle-up4 span,
.app-column-3 .left-content .trapezoid span{
    font-size: 21px;
    color: #fff;
    margin-top: 5px;
}
/*  三角形  */
.app-column-3 .left-content .triangle-up:before{
    position: absolute;
    content: '';
    /*top: -11px;*/
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-bottom: 147px solid #ffb400;
    z-index: -2;
}
.app-column-3 .left-content .triangle-up:after{
    position: absolute;
    content: '';
    top: 12px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid #ffb400;
    z-index: -1;
}
.app-column-3 .left-content .triangle-up2:before{
    position: absolute;
    content: '';
    top: 22px;
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-top: 147px solid #ff9c00;
    z-index: -2;
}
.app-column-3 .left-content .triangle-up2:after{
    position: absolute;
    content: '';
    top: 25px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 140px solid #ff9c00;
    z-index: -1;
}
.app-column-3 .left-content .triangle-up3:before{
    position: absolute;
    content: '';
    /*top: -11px;*/
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-bottom: 147px solid #ff9c00;
    z-index: -2;
}
.app-column-3 .left-content .triangle-up3:after{
    position: absolute;
    content: '';
    top: 12px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid #ff9c00;
    z-index: -1;
}
.app-column-3 .left-content .triangle-up4:before{
    position: absolute;
    content: '';
    top: 22px;
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-top: 147px solid #ffb400;
    z-index: -2;
}
.app-column-3 .left-content .triangle-up4:after{
    position: absolute;
    content: '';
    top: 25px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 140px solid #ffb400;
    z-index: -1;
}
.app-column-3 .left-content .triangle-move1{top: 175px;left:176px;}
.app-column-3 .left-content .triangle-move2{top: 160px;left:260px;}
.app-column-3 .left-content .triangle-move3{top: 175px;left:343px;}
.app-column-3 .left-content .triangle-move1 label,.app-column-3 .left-content .triangle-move3 label{margin-top: 35px}
.app-column-3 .left-content .cont-down .triangle-up label,
.app-column-3 .left-content .cont-down .triangle-up2 label,
.app-column-3 .left-content .cont-down .triangle-up3 label,
.app-column-3 .left-content .cont-down .triangle-up4 label{
    transform:rotate(180deg);
    -ms-transform:rotate(180deg); 	/* IE 9 */
    -moz-transform:rotate(180deg); 	/* Firefox */
    -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
    -o-transform:rotate(180deg); 	/* Opera */
}
.app-column-3 .left-content .triangle-up:hover,
.app-column-3 .left-content .triangle-up2:hover,
.app-column-3 .left-content .triangle-up3:hover,
.app-column-3 .left-content .triangle-up4:hover{
    z-index: 2;
    cursor: pointer;
}
.app-column-3 .left-content .triangle-up:hover:before,
.app-column-3 .left-content .triangle-up3:hover:before{
    border-bottom: 147px solid #fff;
}
.app-column-3 .left-content .triangle-up2:hover:before,
.app-column-3 .left-content .triangle-up4:hover:before{
    border-top: 147px solid #fff;
}
.app-column-3 .left-content .triangle-up:hover:after,
.app-column-3 .left-content .triangle-up3:hover:after{
    border-bottom: 140px solid #434343;
}
.app-column-3 .left-content .triangle-up2:hover:after,
.app-column-3 .left-content .triangle-up4:hover:after{
    border-top: 140px solid #434343;
}
/*  梯形  */
.app-column-3 .left-content .trapezoid {
    justify-content: center;
    align-items: center;
    position: absolute;
    top:0;
    width: 160px;
    height: 160px;
    z-index: 1;
}
.app-column-3 .left-content .trapezoid:before{
    content: '';
    position: absolute;
    top:-2.5px;
    left: -90px;
    border-bottom: 147px solid #ffb400;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    height: 0;
    width: 170px;
    z-index: -2;
}
.app-column-3 .left-content .cont-up .trapezoid:nth-child(4):before,
.app-column-3 .left-content .cont-up .trapezoid:nth-child(6):before,
.app-column-3 .left-content .cont-down .trapezoid:nth-child(5):before{
    border-bottom: 147px solid #ff9c00;
}
.app-column-3 .left-content .trapezoid:after{
    content: '';
    position: absolute;
    top:0;
    border-bottom: 145px solid #ffb400;
    border-left: 82.5px solid transparent;
    border-right: 82.5px solid transparent;
    height: 0;
    width: 165px;
    z-index:-1;
}
.app-column-3 .left-content .cont-up .trapezoid:nth-child(4):after,
.app-column-3 .left-content .cont-up .trapezoid:nth-child(6):after,
.app-column-3 .left-content .cont-down .trapezoid:nth-child(5):after {
    border-bottom: 140px solid #ff9c00;
}
.app-column-3 .left-content .trapezoid:hover{
    z-index: 2;
    cursor: pointer;
}
.app-column-3 .left-content .trapezoid:hover:before{
    border-bottom: 147px solid #fff;
}
.app-column-3 .left-content .cont-up .trapezoid:nth-child(4):hover:before,
.app-column-3 .left-content .cont-up .trapezoid:nth-child(6):hover:before,
.app-column-3 .left-content .cont-down .trapezoid:nth-child(5):hover:before{
    border-bottom: 147px solid #fff;
}
.app-column-3 .left-content .trapezoid:hover:after{
    border-bottom: 145px solid #434343;
}
.app-column-3 .left-content .cont-up .trapezoid:nth-child(4):hover:after,
.app-column-3 .left-content .cont-up .trapezoid:nth-child(6):hover:after,
.app-column-3 .left-content .cont-down .trapezoid:nth-child(5):hover:after{
    border-bottom: 145px solid #434343;
}
.app-column-3 .left-content .trapezoid-move1{
    top: 134px;left:63px;
    transform:rotate(120deg);
    -ms-transform:rotate(120deg); 	/* IE 9 */
    -moz-transform:rotate(120deg); 	/* Firefox */
    -webkit-transform:rotate(120deg); /* Safari 和 Chrome */
    -o-transform:rotate(120deg); 	/* Opera */
}
.app-column-3 .left-content .cont-up .trapezoid-move1 label{
    transform:rotate(-120deg);
    -ms-transform:rotate(-120deg); 	/* IE 9 */
    -moz-transform:rotate(-120deg); 	/* Firefox */
    -webkit-transform:rotate(-120deg); /* Safari 和 Chrome */
    -o-transform:rotate(-120deg); 	/* Opera */
}
.app-column-3 .left-content .cont-down .trapezoid-move1 label{
    transform:rotate(60deg);
    -ms-transform:rotate(60deg); 	/* IE 9 */
    -moz-transform:rotate(60deg); 	/* Firefox */
    -webkit-transform:rotate(60deg); /* Safari 和 Chrome */
    -o-transform:rotate(60deg); 	/* Opera */
}
.app-column-3 .left-content .trapezoid-move2{
    top: 21px;left:259px;
    transform:rotate(180deg);
    -ms-transform:rotate(180deg); 	/* IE 9 */
    -moz-transform:rotate(180deg); 	/* Firefox */
    -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
    -o-transform:rotate(180deg); 	/* Opera */
}
.app-column-3 .left-content .cont-up .trapezoid-move2 label{
    transform:rotate(-180deg);
    -ms-transform:rotate(-180deg); 	/* IE 9 */
    -moz-transform:rotate(-180deg); 	/* Firefox */
    -webkit-transform:rotate(-180deg); /* Safari 和 Chrome */
    -o-transform:rotate(-180deg); 	/* Opera */
}
.app-column-3 .left-content .cont-down .trapezoid-move12 label{
    transform:rotate(-90deg);
    -ms-transform:rotate(-90deg); 	/* IE 9 */
    -moz-transform:rotate(-90deg); 	/* Firefox */
    -webkit-transform:rotate(-90deg); /* Safari 和 Chrome */
    -o-transform:rotate(-90deg); 	/* Opera */
}
.app-column-3 .left-content .trapezoid-move3{
    top: 134px;left:455px;
    transform:rotate(240deg);
    -ms-transform:rotate(240deg); 	/* IE 9 */
    -moz-transform:rotate(240deg); 	/* Firefox */
    -webkit-transform:rotate(240deg); /* Safari 和 Chrome */
    -o-transform:rotate(240deg); 	/* Opera */
}
.app-column-3 .left-content .cont-up .trapezoid-move3 label{
    transform:rotate(-240deg);
    -ms-transform:rotate(-240deg); 	/* IE 9 */
    -moz-transform:rotate(-240deg); 	/* Firefox */
    -webkit-transform:rotate(-240deg); /* Safari 和 Chrome */
    -o-transform:rotate(-240deg); 	/* Opera */
}
.app-column-3 .left-content .cont-down .trapezoid-move3 label{
    transform:rotate(-60deg);
    -ms-transform:rotate(-60deg); 	/* IE 9 */
    -moz-transform:rotate(-60deg); 	/* Firefox */
    -webkit-transform:rotate(-60deg); /* Safari 和 Chrome */
    -o-transform:rotate(-60deg); 	/* Opera */
}
.app-column-3 .right-content{
    position: relative;
    margin-left: 90px;
}
.app-column-3 .right-content .img-cont{
    position: absolute;
    top: 0;
    left: 31px;
}
.app-column-3 .right-content .text-cont{
    justify-content: center;
    align-items: center;
    width: 531px;
    margin-top: 40px;
}
.app-column-3 .right-content .text-cont .text-left{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 76px;
    padding-right: 50px;
}
.app-column-3 .right-content .text-cont .text-left:after{
    content: '';
    position: absolute;
    top: 5px;
    right: 25px;
    width: 1px;
    height: 53px;
    background-color: #d0cec6;
}
.app-column-3 .right-content .text-cont .text-left h3{
    font-size: 37px;
    color: #ffb400;
}
.app-column-3 .right-content .text-cont .text-left span{
    font-size: 12px;
    color: #8c8c8c;
    margin-top: 8px;
}
.app-column-3 .right-content .text-cont .text-right{
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #535351;
    line-height: 150%;
}
.app-column-4{
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.app-column-4 .cont-li{
    justify-content: center;
    align-items: center;
    position:relative;
    width: 25%;
    /* 旧语法，带前缀并且已经废弃，以支持老版本的浏览器 */
    background: -prefix-linear-zgradient(top, #2e2f2f, #484848);
    /* 新语法，不带前缀，以支持标准兼容的浏览器（Opera 12.1， IE 10， Firefox 16， Chrome 26， Safari 6.1） */
    background: linear-gradient(to bottom, #2e2f2f, #484848);
    padding-bottom: 100px;
    overflow: hidden;
}
.app-column-4 .cont-li:nth-child(2),
.app-column-4 .cont-li:nth-child(4){
    /* 旧语法，带前缀并且已经废弃，以支持老版本的浏览器 */
    background: -prefix-linear-zgradient(top, #484848, #2e2f2f);
    /* 新语法，不带前缀，以支持标准兼容的浏览器（Opera 12.1， IE 10， Firefox 16， Chrome 26， Safari 6.1） */
    background: linear-gradient(to bottom, #484848, #2e2f2f);
}
.app-column-4 .cont-li .title-cont{
    justify-content: center;
    align-items: center;
    padding: 50px 0 20px 0;
}
.app-column-4 .cont-li .title-cont h1{
    font-size: 50px;
    color: #fff;
    font-weight: inherit;
}
.app-column-4 .cont-li .title-cont h3{
    font-size: 27px;
    color: #fff;
    font-weight: inherit;
    margin-top: 15px;
}
.app-column-4 .cont-li .title-cont span{
    font-size: 12px;
    color: #fff;
}
.app-column-4 .cont-li .img {
    justify-content: center;
    align-items: center;
    -webkit-box-reflect: below 0px -webkit-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 100%);
}
.app-column-4 .cont-li:hover{
    cursor: pointer;
}
.app-column-4 .cont-li:hover .title-cont h1,
.app-column-4 .cont-li:hover .title-cont h3,
.app-column-4 .cont-li:hover .title-cont span{
    color: #ffc000;
}
.app-column-5{
    padding: 100px 0;
    background-color: #f9f9f9;
}
.app-column-5 .swiper-container {
    width: 1180px;
    height: 100%;
    margin-top: 50px;
    padding: 20px;
    margin-left: -20px;
}
.app-column-5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.app-column-5 .content{
    position: relative;
    width: 1180px;
    margin: auto;
}
.app-column-5 .slide-li{
    position: relative;
    width: 350px;
    padding: 15px;
    background-color: #fff;
    text-align: left;
    transition: all 1s ease 0s;
}
.app-column-5 .slide-li:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0px;
    height: 3px;
    background-color: transparent;
    transition: all 1s ease 0s;
}
.app-column-5 .slide-li:hover{
    cursor: pointer;
    box-shadow: 0px 0px 30px 0px #00000057;
    z-index: 2;
}
.app-column-5 .slide-li:hover:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 380px;
    height: 3px;
    margin-left: -190px;
    background-color: #ffc000;
}
.app-column-5 .slide-li h3{
    font-size: 18px;
    color: #000106;
    margin-top: 25px;
}
.app-column-5 .slide-li p{
    font-size: 14px;
    color: #616163;
    margin-top: 8px;
    line-height: 150%;
    display: -webkit-box; /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
    text-overflow: ellipsis; /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.app-column-5 .content .button-next,
.app-column-5 .content .button-prev{
    position: absolute;
    top: 50%;
    margin-top: -45.5px;
    z-index: 10;
    cursor: pointer;
}
.app-column-5 .content .button-next{
    right: -55px;
}
.app-column-5 .content .button-prev{
    left: -60px;
}
.app-column-6{
    background: url("../images/column_6_bg.jpg") no-repeat;
    background-position: top center;
    /*background-size: 100% auto;*/
}
.app-column-6 .list-content{
    justify-content: center;
    margin-top: 50px;
}
.app-column-6 .list-content .li-cont{
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    width: 230px;
    height: 420px;
    margin: 0 1px;
    padding-top: 50px;
    transition: all 1s ease 0s;
}
.app-column-6 .list-content .li-cont:hover{
    cursor: pointer;
    box-shadow: 0px 0px 71px 0px #00000057;
    z-index: 2;
}
.app-column-6 .list-content .li-cont h3{
    font-size: 24px;
    color: #000106;
    margin-top: 15px;
}
.app-column-6 .list-content .li-cont .english-text{
    font-size: 12px;
    color: #bfbfbf;
    margin-top: 8px;
}
.app-column-6 .list-content .li-cont .span-cont{
    margin-top: 30px;
}
.app-column-6 .list-content .li-cont .span-cont span{
    position: relative;
    font-size: 15px;
    color: #9d9d9d;
    margin-top: 15px;
}
.app-column-6 .list-content .li-cont .span-cont span:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    border-radius: 50%;
    background-color: #ffc000;
}

/*  web_Development。css  */

/*  column标题css  */
.web-column-title{
    position: absolute;
    justify-content: center;
}
.web-column-title .title{
    font-size: 34px;
    color: #fff;
    font-weight: 500;
}
.web-column-title .mudi-text{
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
    line-height: 150%;
}
.web-column-title .anli-text{
    font-size: 14px;
    color: #fff;
    margin-top: 8px;
}
.web-column-title .btn{
    position: relative;
    width: 138px;
    height: 40px;
    margin: 25px 0 0 10px;
    background-color: #fff;
}
.web-column-title .btn:before{
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 15px solid #fff;
    border-bottom: 20px solid transparent;
}
.web-column-title .btn:after{
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 20px solid transparent;
}
.web-column-title .btn span{
    font-size: 15px;
    color: #000;
    background: url("../images/icon_btn_right.png") no-repeat;
    background-position: center right;
    background-size: 4px 8px;
    padding-right: 15px;
}
.web-column-title2 .title{
    color: #393939;
}
.web-column-title2 .mudi-text,
.web-column-title2 .anli-text{
    color: #242424;
}
.web-column-title2 .btn{
    background-color: #ffba00;
}
.web-column-title2 .btn:before{
    border-right: 15px solid #ffba00;
}
.web-column-title2 .btn:after{
    border-left: 15px solid #ffba00;
}
.web-column-title2 .btn span{
    color: #454545;
}
.web-column-1{
    position: relative;
    margin-top: 80px;
}
.web-column-1 .web-column-title{
    top: 20%;
    left: 15%;
}
.web-column-2{
    position: relative;
}
.web-column-2 .web-column-title:nth-child(2){
    top: 9%;
    right: 21%;
}
.web-column-2 .web-column-title:nth-child(3){
    top: 66%;
    left: 15%;
}
.web-column-3{
    position: relative;
}
.web-column-3 .web-column-title:nth-child(2){
    top: 16%;
    right: 34%;
}
.web-column-3 .web-column-title:nth-child(3){
    top: 71%;
    left: 15%;
}
.web-column-4{
    position: relative;
}
.web-column-4 .web-column-title{
    top: 30%;
    right: 25%;
}
.web-column-1 .img-bg,
.web-column-2 .img-bg,
.web-column-3 .img-bg,
.web-column-4 .img-bg{
    width: 100%;
    height: auto;
}

/*  wechat_Development.css  */

.wechat-header-title{
    justify-content: center;
    align-items: center;
}
.wechat-header-title .title{
    font-size: 40px;
    color: #fff;
}
.wechat-header-title .text{
    font-size: 18px;
    color: #a4a4a4;
    margin-top: 15px;
}
.wechat-column-1{position: relative;margin-top: 80px;}
.wechat-column-1 .img{width: 100%;height: auto;}
.wechat-column-1 .wechat-column-title{
    top: 32%;
    left: 15%;
}
.wechat-column-1 .wechat-column-title{
}
.wechat-column-1 .wechat-column-title .mudi-text{
    position: relative;
    margin-top: 0;
    margin-left: 10px;
    font-size: 17px;
}
.wechat-column-1 .wechat-column-title .mudi-text:before{
    content: '';
    position: absolute;
    top:50%;
    left: -10px;
    width: 5px;
    height:5px;
    margin-top: -2.5px;
    border-radius: 50%;
    background-color: #fff;
}
.wechat-column-1 .wechat-column-title .mudi-text:nth-child(2){
    margin-top: 8px;
}
.wechat-column-1 .wechat-column-title .btn{
    margin-top: 50px;
}
.wechat-column-1 .wechat-column-title .btn span{
    color: #5aa0f7;
    background: url("../images/icon_btn_right.png") no-repeat;
    background-position: center right;
    background-size: 4px 8px;
}
.wechat-column-2{
    padding: 80px 0;
    background: url("../images/wechat_column_2_bg.jpg") no-repeat;
    background-position: top center;
    /*background-size: 100% auto;*/
}
.wechat-column-2 .content{
    justify-content: center;
    align-content: center;
    align-items: center;
    
}
.wechat-column-2 .content .cont-li{
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 296px;
    height: 500px;
    margin: 0 5px;
    background-color: #fff;
    transition: all 1s ease 0s;
}
.wechat-column-2 .content .cont-li .title{
    position: relative;
    font-size: 24px;
    color: #575757;
    padding: 20px 0 25px 0;
    margin-top: 40px;
}
.wechat-column-2 .content .cont-li .title:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 3px;
    margin-left: -25px;
    background-color: #a9a9a9;
}
.wechat-column-2 .content .cont-li .text{
    font-size: 14px;
    color: #7c7c7c;
    margin-top: 25px;
    padding: 0 8%;
    line-height: 150%;
}
.wechat-column-2 .content .cont-li:hover{
    cursor: pointer;
    box-shadow: 0px 0px 71px 0px #00000057;
    z-index: 2;
}
.wechat-column-2 .content .cont-li:hover .title:after{
    background-color: #ffc106;
}
.wechat-column-3{
    padding: 100px 0;
    background: url("../images/wechat_column_3_bg.jpg") no-repeat;
    background-position: top center;
    /*background-size: 100% auto;*/
    height: 643px;
}
.wechat-column-3 .list-cont{
    justify-content: center;
    align-items: center;
    
}
.wechat-column-3 .list-cont:nth-child(3){
    margin-top: 20px;
}
.wechat-column-3 .list-cont .li{
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: #fff;
    margin: 0 10px;
}
.wechat-column-3 .list-cont .li .header-img{
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f1f1f1;
}
.wechat-column-3 .list-cont .li .text{
    font-size: 14px;
    color: #363636;
    font-weight: 600;
    margin-top: 10px;
}
.wechat-column-4{
    padding: 80px 0;
    background: url("../images/wechat_column_4_bg.jpg") no-repeat;
    background-position: top center;
    /*background-size: 100% auto;*/
    height: 734px;
}
.wechat-column-4 .content{
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.wechat-column-4 .content .li{
    margin: 0 10px;
}
.wechat-column-4 .btn-cont{
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.wechat-column-4 .btn-cont .btn{
    position: relative;
    width: 131px;
    height: 54px;
    text-align: center;
    font-size: 14px;
    color: #262626;
    background-color: #ffc106;
}
.wechat-column-4 .btn-cont .btn:before{
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 27px solid transparent;
    border-right: 15px solid #ffc106;
    border-bottom: 27px solid transparent;
}
.wechat-column-4 .btn-cont .btn:after{
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 27px solid transparent;
    border-left: 15px solid #ffc106;
    border-bottom: 27px solid transparent;
}
.wechat-column-5{
    margin-top: -90px;
}

/*  wechat_Development2.css  */
.wechat2-column-title{
    position: absolute;
    top: 50%;
    left: 15%;
    margin-top: -121px;
}
.wechat2-column-title2{
    left: inherit;
    right: 15%;
}
.wechat2-column-title .mudi-text{
    margin-top: 0;
}
.wechat2-column-title .mudi-text:nth-child(2){
    margin-top: 15px;
 }
.wechat2-column-title3 .mudi-text{
    position: relative;
    margin-left: 15px;
}
.wechat2-column-title3 .mudi-text:before {
    content: '';
    position: absolute;
    top: 8px;
    left: -10px;
    border-top:5px solid transparent;
    border-left: 5px solid #fff;
    border-bottom: 5px solid transparent;
}
.wechat2-column-title .btn{
    margin: 85px 0 0 10px;
}
.wechat2-column-title .btn span{
    color: #6652ff;
    background: url(../images/icon_right.png) no-repeat;
    background-position: center right;
    background-size: 4px 8px;
}
.wechat2-column-1{
    position: relative;;
    margin-top: 80px;
}
.wechat2-column-1 .wechat2-link{
    display: block;
    width: 100%;
    height: 100%;
}
.wechat2-column-1 .img-bg{
    width: 100%;
}
.wechat2-column-2{
    position: relative;;
}
.wechat2-column-2 .img-bg{
    width: 100%;
}
.wechat2-column-3{
    position: relative;;
}
.wechat2-column-3 .img-bg{
    width: 100%;
}
.wechat2-column-4{
    padding: 150px 0;
}

/*  wechat_Development3.css  */
.wechat3-column-2{
    padding: 100px 0;
    background-color: #f8f8f8;
}
.wechat3-column-2 .box-cont{
    justify-content: center;
    align-items: center;
    width: 1200px;
    margin: 50px auto 0 auto;
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 1;
}
.wechat3-column-2 .box-cont:before {
    -webkit-transform: skew(-15deg) rotate(-6deg);
    -moz-transform: skew(-15deg) rotate(-6deg);
    transform: skew(-15deg) rotate(-6deg);
    left: 20px;
}
.wechat3-column-2 .box-cont:after {
    -webkit-transform: skew(15deg) rotate(6deg);
    -moz-transform: skew(15deg) rotate(6deg);
    transform: skew(15deg) rotate(6deg);
    right: 20px;
}

.wechat3-column-2 .box-cont:before, .wechat3-column-2 .box-cont:after {
    width: 70%;
    height: 55%;
    content: ' ';
    -webkit-box-shadow: 0 0px 24px 20px #5e5e5e;
    -moz-box-shadow: 0 0px 24px 20px #5e5e5e;
    box-shadow: 0 0px 24px 20px #5e5e5e;
    background-color: #5e5e5e;
    position: absolute;
    bottom: 20px;
    z-index: 0;
}
.wechat3-column-2 .box-cont .list-cont{
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 1;
}
.wechat3-column-2 .box-cont .list-cont:nth-child(1){
    border-bottom: 1px solid #e5e5e5;
}
.wechat3-column-2 .box-cont .list-cont .li-cont{
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 200px;
    flex: 1;
}
.wechat3-column-2 .box-cont .list-cont .li-cont:nth-child(1){
    border-right: 1px solid #e5e5e5;
}
.wechat3-column-2 .box-cont .list-cont .li-cont .text-cont{
    margin-left: 30px;
}
.wechat3-column-2 .box-cont .list-cont .li-cont .text-cont .title{
    font-size: 24px;
    color: #262626;
}
.wechat3-column-2 .box-cont .list-cont .li-cont .text-cont .p{
    font-size: 16px;
    color: #5b5b5b;
    line-height: 150%;
    margin-top: 20px;
}
.wechat3-column-3{
    box-sizing: border-box;
    padding: 80px 0;
    height: 843px;
    background: url('../images/wechat3-column-3-bg.jpg') no-repeat;
    background-position: top center;
}
.wechat3-column-3 .content{
    width: 1200px;
    margin: 50px auto 0 auto;
    border-radius: 35px;
    overflow: hidden;
    background-color: #fff;
}
.wechat3-column-3 .content .list-cont{
    justify-content: center;
    align-items: baseline;
    width: 1200px;
    height: 150px;
}
.wechat3-column-3 .content .list-cont .li-cont{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    transition: all 0.5s ease 0s;
}
.wechat3-column-3 .content .list-cont .li-cont:before{
     content: '';
     position: absolute;
     bottom: -30px;
     right: 0;
     width: 1px;
     height: 60px;
     background-color: #f1f1f1;
}
.wechat3-column-3 .content .list-cont .li-cont:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 60px;
    height: 1px;
    background-color: #f1f1f1;
}
.wechat3-column-3 .content .list-cont .li-cont:last-child:before,
.wechat3-column-3 .content .list-cont .li-cont:last-child:after{
    width: 0;
    height: 0;
}
.wechat3-column-3 .content .list-cont:last-child .li-cont:before,
.wechat3-column-3 .content .list-cont:last-child .li-cont:after{
    width: 0;
    height: 0;
}
.wechat3-column-3 .content .list-cont .li-cont:hover{
    background-color: #ffc106;
}
.wechat3-column-3 .content .list-cont .li-cont .span{
    font-size: 15px;
    color: #646464;
    margin-top: 12px;
}
.wechat3-column-4{
    padding-top: 80px;
}
.wechat3-column-4 .content{
    width: 70%;
    margin:50px auto;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    z-index: 1;
}
.wechat3-column-4 .slide-li{
    position: relative;
    width: 382px;
    margin: 0.8%;
    background-color: #fafafa;
    text-align: left;
    transition: all 1s ease 0s;
}
.wechat3-column-4 .slide-li:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0px;
    height: 3px;
    background-color: transparent;
    transition: all 1s ease 0s;
}
.wechat3-column-4 .slide-li:hover{
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px #00000057;
}
.wechat3-column-4 .slide-li:hover:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 380px;
    height: 3px;
    margin-left: -190px;
    background-color: #ffc000;
}
.wechat3-column-4 .slide-li .text-cont{
    box-sizing: border-box;
    padding: 50px 5% 80px 5%;
}
.wechat3-column-4 .slide-li .text-cont h3{
    font-size: 18px;
    color: #2d2d2d;
}
.wechat3-column-4 .slide-li .text-cont p{
    font-size: 14px;
    color: #7c7c7c;
    margin-top: 8px;
    line-height: 150%;
    display: -webkit-box; /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
    text-overflow: ellipsis; /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*  Development_case.css  */
.Development_case_column_1{
    margin-top: 80px;
}
.Development_case_column_1 img{
    width: 100%;
    height: auto;
}
.Development_case_column_2{background-color: #f6f7f8;}
.Development_case_column_2 .header-classification{
    justify-content: center;
    align-items: flex-start;
    padding: 50px 15%;
    background-color: #fff;
}
.Development_case_column_2 .header-classification .title{
    font-size: 24px;
    color: #2b2b2b;
}
.Development_case_column_2 .header-classification .classification{
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 50px;
}
.Development_case_column_2 .header-classification .classification:nth-child(3){
    margin-top: 20px;
}
.Development_case_column_2 .header-classification .classification .class-li{
    font-size: 16px;
    color: #2b2b2b;
    padding: 3px 0;
}
.Development_case_column_2 .header-classification .classification .li-a{
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 26px;
    height: auto;
    width: 1000px;
     flex: 2;
    flex-flow: wrap;
}
.Development_case_column_2 .header-classification .classification .li-a .li{
    position: relative;
    text-align: center;
    font-size: 14px;
    color: #2b2b2b;
    padding: 5px 10px;
    margin: 0 20px;
    border-radius: 5px;
    transition: all 0.5s ease 0s;
}
.Development_case_column_2 .header-classification .classification .li-a .li:after{
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 1px;
    height: 14px;
    margin-top: -7px;
    background-color: #dedede;
}
.Development_case_column_2 .header-classification .classification .li-a .li:focus{
    background-color: #ffc106;
}
.Development_case_column_2 .header-classification .classification .li-a .li:last-child:after{
    background-color: transparent;
}
.Development_case_column_2 .header-classification .classification .show-btn{
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #828282;
    background-color: #fff;
    padding: 5px 8px;
    border: 1px solid #828282;
    border-radius: 5px;
}
.Development_case_column_2 .content{
    /*width: 70%;*/
    margin: 0 15%;
}
.Development_case_column_2 .swiper-container {
    width: 100%;
    height: 100%;
}
.Development_case_column_2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.Development_case_column_2 .swiper-slide img{
    width: 100%;
}
.Development_case_column_2 .content .swiper-cont{
    position: relative;
    margin: 50px 0;
}
.Development_case_column_2 .content .swiper-cont .number-text{
    position: absolute;
    right: 50px;
    bottom: 10px;
    font-size: 30px;
    color: #ffc106;
    z-index: 1;
}
.Development_case_column_2 .content .swiper-cont .number-text span{
    font-size: 30px;
    color: #ffc106;
}
.Development_case_column_2 .content .swiper-cont .button-next,
.Development_case_column_2 .content .swiper-cont .button-prev{
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(116, 115, 119, 0.71);
    z-index: 1;
}
.Development_case_column_2 .content .swiper-cont .button-next:hover,
.Development_case_column_2 .content .swiper-cont .button-prev:hover{
    cursor: pointer;
    background-color: #ffc106;
}
.Development_case_column_2 .content .swiper-cont .button-next{
    right: 50%;
    margin-right: -60px;
}
.Development_case_column_2 .content .swiper-cont .button-prev{
    left: 50%;
    margin-left: -60px;
}
.Development_case_column_2 .content .list-cont{
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: wrap;
    width: 100%;
}
.Development_case_column_2 .content .list-cont .li{
    justify-content: flex-start;
    align-items: center;
    width: 23.5%;
    /*height: 400px;*/
    padding: 0.5%;
    margin-bottom: 40px;
    background-color: #fff;
}
.Development_case_column_2 .content .list-cont .li img{
    width: 100%;
}
.Development_case_column_2 .content .list-cont .li .title{
    justify-content: space-between;
    align-items: baseline;
    width: 80%;
    margin: 15px 10%;
}
.Development_case_column_2 .content .list-cont .li .title span:nth-child(1){
    font-size: 18px;
    color: #3a3a39;
    font-weight: bold;
}
.Development_case_column_2 .content .list-cont .li .title span:nth-child(2){
    font-size: 14px;
    color: #9c9c9c;
}
.Development_case_column_2 .content .list-cont .li .p{
    font-size: 14px;
    color: #757574;
    width: 80%;
    min-height: 32px;
    margin: 0 10% 15px 10%;
}
.Development_case_column_2 .content .get-more{
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.Development_case_column_2 .content .get-more span{
    font-size: 14px;
    color: #838484;
    margin-top: 10px;
}
.Development_case_column_8{
    margin-top: -80px;
}

/*  Development_case_details.css  */
.Development_case_details_body{
    background-color: #f6f7f8;
}
.Development_case_details_1 .content{
    width: 70%;
    padding: 0 15%;
    position: relative;
    /*margin-top: -50px;*/
    margin-top: 10px;
}
@media (min-width: 0px) {
    .Development_case_details_1 .content {
        margin-top: 85px;
    }
}
@media (min-width: 1060px) {
    .Development_case_details_1 .content {
        margin-top: 30px;
    }
}
@media (min-width: 1300px) {
    .Development_case_details_1 .content {
        margin-top: 10px;
    }
}
.Development_case_details_1 .details-title{
    justify-content: center;
    /*align-items: center;*/
    background-color: #fff;
    padding: 3%;
    margin:0px 0 20px 0;
}
.Development_case_details_1 .details-title .left-cont{
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 6%;
}
.Development_case_details_1 .details-title .left-cont h1{
    position: relative;
    font-size: 30px;
    color: #2b2b2b;
    padding-bottom: 35px;
}
.Development_case_details_1 .details-title .left-cont h1:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ffc106;
}
.Development_case_details_1 .details-title .left-cont h3{
    font-size: 20px;
    color: #2b2b2b;
    padding-top: 35px;
}
.Development_case_details_1 .details-title .left-cont p{
    font-size: 14px;
    color: #707070;
    line-height: 150%;
    margin-top: 10px;
}
.Development_case_details_1 .details-title .right-cont{
    padding:  3% 3% 3% 6%;
    border-left: 1px solid #efefef;
}
.Development_case_details_1 .details-cont{
    justify-content: center;
    align-items: center;
    width: 86%;
    padding: 7%;
    background-color: #fff;
}
.Development_case_details_1 .details-cont img{
    width: 100%;
}
.Development_case_details_1 .details-list{
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 40px auto 40px auto;
}
.Development_case_details_1 .details-list img{
    width: 24%;
    height: auto;
}

/*  News_information.css  */
.news-information-body{background-color: #f5f6f7;}
.news-information-1{margin-top: 80px;}
.news-information-1 img{
    width: 100%;
    height: auto;
}
.news-information-2{
    padding-bottom: 50px;
}
.news-information-2 .nav-tab{
    justify-content: center;
    align-items: center;
}
.news-information-2 .nav-tab .left-cont,
.news-information-2 .nav-tab .right-cont{
    justify-content: center;
    align-items: center;
    width: 35%;
    height: 140px;
}
.news-information-2 .nav-tab .left-cont .text,
.news-information-2 .nav-tab .right-cont .text{
    margin-left: 15px;
}
.news-information-2 .nav-tab .left-cont .text h3,
.news-information-2 .nav-tab .right-cont .text h3{
    font-size: 24px;
    color: #5d5d5d;
    font-weight: 500;
}
.news-information-2 .nav-tab .left-cont .text span,
.news-information-2 .nav-tab .right-cont .text span{
    font-size: 14px;
    color: #979797;
    margin-top: 8px;
}
.news-information-2 .nav-tab .left-cont{
    padding-left: 15%;
    background-color: #f7f7f7;
}
.news-information-2 .nav-tab .left-cont .left-img{
    width: 60px;
    height: 60px;
    background: url("../images/icon_information_2.png") no-repeat;
    background-position: center center;
    background-size: 60px 60px;
}
.news-information-2 .nav-tab .right-cont{
    padding-right: 15%;
    background-color: #f7f7f7;
}
.news-information-2 .nav-tab .right-cont .right-img{
    width: 53px;
    height: 60px;
    background: url("../images/icon_dynamic.png") no-repeat;
    background-position: center center;
    background-size: 53px 60px;
}
.news-information-2 .nav-tab .active-cont{
    background-color: #424242;
}
.news-information-2 .nav-tab .active-cont .text h3,
.news-information-2 .nav-tab .active-cont .text span{
    color: #ffc412;
}
.news-information-2 .nav-tab .active-cont .left-img{
    background: url("../images/icon_information.png") no-repeat;
    background-position: center center;
    background-size: 60px 60px;
}
.news-information-2 .nav-tab .active-cont .right-img{
    background: url("../images/icon_dynamic_2.png") no-repeat;
    background-position: center center;
    background-size: 53px 60px;
}
.news-information-2 .header-cont{
    justify-content:center;
    align-items: center;
    width: 100%;
    background-color: #fff;
}
/* 轮播图 */
.news-information-2 .header-cont .left-cont{
    width: 50%;
    justify-content: flex-end;
    align-items: center;
    background: url("../images/news_information_slide_bg.jpg") no-repeat;
    background-position: center top;
    height: 632px;
}
.news-information-2 .header-cont .left-cont .swiper-container {
    width: 594px;
    height: 397px;
    margin: 0;
    box-shadow: -10px 10px 0px 0px #ffc30c;
}
.news-information-2 .header-cont .left-cont .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.news-information-2 .header-cont .left-cont .swiper-container-horizontal>.swiper-pagination-bullets{
    text-align: right;
    padding-right: 10%;
    width: 90%;
}
.news-information-2 .header-cont .left-cont .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: #808080;
    opacity: 1
}
.news-information-2 .header-cont .left-cont .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffc106;
}
.news-information-2 .header-cont .right-cont{
    justify-content: space-around;
    align-items: flex-start;
    height: 397px;
    width: 35%;
    padding: 0 12% 0 3%;
}
.news-information-2 .header-cont .right-cont h3{
    font-size: 34px;
    color: #2e2e2e;
    font-weight: 600;
}
.news-information-2 .header-cont .right-cont h3 span{
    font-size: 28px;
    color: #9b9b9b;
    font-weight: 500;
}
.news-information-2 .header-cont .right-cont p{
    font-size: 19px;
    color: #373737;
    line-height: 150%;
}
.news-information-2 .header-cont .right-cont .a-btn{
    font-size: 16px;
    color: #373737;
    background: url("../images/a_btn_right.jpg") no-repeat;
    background-position: center right;
    padding-right: 15px;
}
.news-information-2 .news-list-cont{
    width: 70%;
    margin: auto;
    padding-top: 50px;
}
.news-information-2 .news-list-cont .news-li{
    justify-content: center;
    align-items: center;
    width: 98%;
    padding: 1%;
    margin: 20px 0;
    background-color: #fff;
    transition: all 1s ease 0s;
}
.news-information-2 .news-list-cont .news-li:hover{
    cursor: pointer;
    box-shadow: 0px 10px 30px 0px #00000057;
    z-index: 2;
}
.news-information-2 .news-list-cont .news-li .left-cont{
    width: 232px;
    height: 155px;
}
.news-information-2 .news-list-cont .news-li .right-cont{
    justify-content: space-around;
    align-items: flex-start;
    width: 94%;
    padding: 0 3%;
    height: 155px;
}
.news-information-2 .news-list-cont .news-li .right-cont .title{
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.news-information-2 .news-list-cont .news-li .right-cont .title h3{
    font-size: 30px;
    color: #2f2f2f;
    -webkit-line-clamp: 1;
    flex: 1;
}
.news-information-2 .news-list-cont .news-li .right-cont .title span{
    font-size: 16px;
    color: #b4b4b4;
}
.news-information-2 .news-list-cont .news-li .right-cont p{
    width: 88%;
    font-size: 16px;
    color: #373737;
    line-height: 150%;
    -webkit-line-clamp: 3;
}
.news-information-2 .get-more{
    justify-content: center;
    align-items: center;
    padding: 30px 0 0 0;
}
.news-information-2 .get-more span{
    font-size: 14px;
    color: #838484;
    margin-top: 10px;
}
/*  news_information_details.css  */
.news-information-2 .news-information-details{
     width: 70%;
     margin: auto;
 }
.news-information-2 .news-information-details .left-cont{
    width: 70%;
    margin: auto;
}
.news-information-2 .news-information-details .left-cont .text-cont .title{
    font-size: 40px;
    color: #2f2f2f;
}
.news-information-2 .news-information-details .left-cont .text-cont .time-text{
    font-size: 18px;
    color: #a1a1a1;
    margin: -20px 0 50px 0;
}
.news-information-2 .news-information-details .left-cont .text-cont .p{
    font-size: 20px;
    color: #373737;
    line-height: 150%;
    text-indent: 2em;
}
.news-information-2 .news-information-details .left-cont .text-cont .title{
    font-size: 40px;
    color: #2f2f2f;
}
.news-information-2 .news-information-details .left-cont .nav-tab{
    justify-content: center;
    align-items: center;
    width: 100%;
}
.news-information-2 .news-information-details .left-cont .nav-tab .icon-fanxiang{
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 50px;
    height: 70px;
}
.news-information-2 .news-information-details .left-cont .nav-tab .nav-left .icon-fanxiang{
    left: 0;
    background-color: #ffb606;
}
.news-information-2 .news-information-details .left-cont .nav-tab .nav-right .icon-fanxiang{
    right: 0;
    background-color: #e5e5e5;
}
.news-information-2 .news-information-details .left-cont .nav-tab .nav-left,.news-information-2 .news-information-details .left-cont .nav-tab .nav-right{
    align-items: center;
    position: relative;
    width: 50%;
    height: 70px;
    padding: 0 70px;
}
.news-information-2 .news-information-details .left-cont .nav-tab .nav-left span,.news-information-2 .news-information-details .left-cont .nav-tab .nav-right span{
    font-size: 16px;
    color: #2f2f2f;
    line-height: 150%;
}
.news-information-2 .news-information-details .left-cont .nav-tab .nav-left{
    justify-content: flex-start;
    background-color: #ffc106;
}
.news-information-2 .news-information-details .left-cont .nav-tab .nav-right{
    justify-content: flex-end;
    text-align: right;
    background-color: #eeeeee;
}
.news-information-2 .news-information-details .right-cont{
    width: 28%;
    margin-left: 2%;
}
.news-information-2 .news-information-details .right-cont .list-li{
    margin-top: 50px;
}
.news-information-2 .news-information-details .right-cont .list-li:nth-child(1){
    margin-top: 34px;
}
.news-information-2 .news-information-details .right-cont .list-li .title{
    position: relative;
    justify-content: flex-start;
    align-items: center;
    font-size: 21px;
    color: #2f2f2f;
    padding: 0 20px;
    height: 40px;
}
.news-information-2 .news-information-details .right-cont .list-li .title:before{
    content: '';
    position: absolute;
    width: 5px;
    height: 40px;
    top: 0;
    left: 0;
    background-color: #ffc106;
}
.news-information-2 .news-information-details .right-cont .list-li .li{
    justify-content: flex-start;
    margin: 20px 0;
}
.news-information-2 .news-information-details .right-cont .list-li .li .text-cont{
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 20px;
}
.news-information-2 .news-information-details .right-cont .list-li .li .text-cont .text-title{
    font-size: 14px;
    color: #222222;
    line-height: 130%;
}
.news-information-2 .news-information-details .right-cont .list-li .li .text-cont .text-p{
    font-size: 14px;
    color: #373737;
    line-height: 130%;
}
.news-information-2 .news-information-details .right-cont .list-li .go-more{
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 14px;
    color: #686868;
    background-color: #eeeeee;
}
.news-information-2 .news-information-details .right-cont .list-li .go-more img{
    margin-left: 5px;
}

/*  mobile-APP.css  */
.mobile-app-title{
    justify-content: center;
    align-items: center;
}
.mobile-app-title .title{
    font-size: 34px;
    color: #fff;
}
.mobile-app-title .title2{
    color: #3a3a3a;
}
.mobile-app-title .text{
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
    line-height: 150%;
    text-align: center;
}
.mobile-app-title .text2{
     color: #757575;
 }
.mobile-app-title .text3{
    color: #adadad;
}
.mobile-app-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/mobile_app_4_bg.jpg") no-repeat;
    background-position: center center;
    z-index: 0;
}
.mobile-app-1{
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    background: url("../images/mobile_app_1_bg.jpg") no-repeat;
    background-position: top center;
    width: 70%;
    height: 926px;
    padding:0 15%;
    z-index: 1;
}
.mobile-app-1 .right-cont{
    justify-content: center;
    align-items: flex-end;
}
.mobile-app-1 .right-cont h1{
    font-size: 51px;
    color: #fff;
    
}
.mobile-app-1 .right-cont h3{
    font-size: 34px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}
.mobile-app-1 .right-cont p{
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.2);
}
.mobile-app-1 .right-cont span{
    font-size: 14px;
    color: #fff;
    text-align: right;
    margin-top: 10px;
}
.mobile-app-1 .right-cont .a-btn{
    font-size: 16px;
    color: #353434;
    text-align: center;
    margin: 160px -18px 0 0;
    padding-top: 19px;
    background: url("../images/mobile_app_1_btn.png") no-repeat;
    background-position: top center;
    width: 216px;
    height: 93px;
}
.mobile-app-2{
    background: url("../images/mobile_app_2_bg.jpg") no-repeat;
    background-position: top center;
    height: 777px;
    padding: 100px 0;
    z-index: 1;
}
.mobile-app-2 .content{
    justify-content: center;
    align-items: center;
}
.mobile-app-2 .content .img-cont{
    position: relative;
    width: 806px;
    height: 592px;
    margin:100px 0 0 -80px;
}
.mobile-app-2 .content .img-cont .text-li{
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    font-size: 34px;
    color: #fff;
    border-radius: 50%;
    background-color: #ff9e06;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(2){
    top: 48px;
    left: 20px;
    width: 140px;
    height: 140px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(3){
    top: 280px;
    left: -100px;
    width: 120px;
    height: 120px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(4){
    top: 468px;
    left: 105px;
    width: 120px;
    height: 120px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(5){
    top: 36px;
    right: 20px;
    width: 120px;
    height: 120px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(6){
    top: 195px;
    right: -190px;
    width: 140px;
    height: 140px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(7){
    top: 402px;
    right: -63px;
    width: 140px;
    height: 140px;
}
.mobile-app-3{
    padding: 100px 0;
    background-color: #fff;
    z-index: 1;
}
.mobile-app-3 .content{
    justify-content: center;
    align-items: baseline;
    flex-flow: wrap;
    width: 70%;
    margin: 80px auto;
}
.mobile-app-3 .content .li-cont{
    justify-content: center;
    align-items: center;
    width: 19%;
    height: 130px;
    background-color: #f9f9f9;
    margin: 0 0.5% 15px 0.5%;
    transition: all 1s ease 0s;
}
.mobile-app-3 .content .li-cont:hover{
    background-color: #ffc106;
    box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.6);
}
.mobile-app-3 .content .li-cont:nth-child(1) .icon-img{
     width: 37px;
     /*height: 37px;*/
    background-image: url("../images/mobile_app_3_li.png");
 }
.mobile-app-3 .content .li-cont:nth-child(2) .icon-img{
    width: 41px;
    /*height: 37px;*/
    background-image: url("../images/mobile_app_3_li2.png");
}
.mobile-app-3 .content .li-cont:nth-child(3) .icon-img{
     width: 34px;
     /*height: 49px;*/
    background-image: url("../images/mobile_app_3_li3.png");
 }
.mobile-app-3 .content .li-cont:nth-child(4) .icon-img{
    width: 37px;
    /*height: 41px;*/
    background-image: url("../images/mobile_app_3_li4.png");
}
.mobile-app-3 .content .li-cont:nth-child(5) .icon-img{
    width: 32px;
    /*height: 52px;*/
    background-image: url("../images/mobile_app_3_li5.png");
}
.mobile-app-3 .content .li-cont:nth-child(6) .icon-img{
    width: 28px;
    /*height: 36px;*/
    background-image: url("../images/mobile_app_3_li6.png");
}
.mobile-app-3 .content .li-cont:nth-child(7) .icon-img{
    width: 40px;
    /*height: 37px;*/
    background-image: url("../images/mobile_app_3_li7.png");
}
.mobile-app-3 .content .li-cont:nth-child(8) .icon-img{
    width: 39px;
    /*height: 41px;*/
    background-image: url("../images/mobile_app_3_li8.png");
}
.mobile-app-3 .content .li-cont:nth-child(9) .icon-img{
    width: 40px;
    /*height: 31px;*/
    background-image: url("../images/mobile_app_3_li9.png");
}
.mobile-app-3 .content .li-cont:nth-child(10) .icon-img{
    width: 43px;
    /*height: 32px;*/
    background-image: url("../images/mobile_app_3_li10.png");
}
.mobile-app-3 .content .li-cont:nth-child(11) .icon-img{
    width: 37px;
    /*height: 37px;*/
    background-image: url("../images/mobile_app_3_li11.png");
}
.mobile-app-3 .content .li-cont:nth-child(12) .icon-img{
    width: 41px;
    /*height: 32px;*/
    background-image: url("../images/mobile_app_3_li12.png");
}
.mobile-app-3 .content .li-cont:nth-child(13) .icon-img{
    width: 41px;
    /*height: 41px;*/
    background-image: url("../images/mobile_app_3_li13.png");
}
.mobile-app-3 .content .li-cont:nth-child(14) .icon-img{
    width: 39px;
    /*height: 39px;*/
    background-image: url("../images/mobile_app_3_li14.png");
}
.mobile-app-3 .content .li-cont:nth-child(15) .icon-img{
    width: 50px;
    /*height: 33px;*/
    background-image: url("../images/mobile_app_3_li15.png");
}
.mobile-app-3 .content .li-cont:nth-child(16) .icon-img{
    width: 50px;
    /*height: 33px;*/
    background-image: url("../images/mobile_app_3_li16.png");
}
.mobile-app-3 .content .li-cont:nth-child(17) .icon-img{
    width: 50px;
    /*height: 33px;*/
    background-image: url("../images/mobile_app_3_li17.png");
}
.mobile-app-3 .content .li-cont:nth-child(18) .icon-img{
    width: 50px;
    /*height: 33px;*/
    background-image: url("../images/mobile_app_3_li18.png");
}
.mobile-app-3 .content .li-cont:nth-child(19) .icon-img{
    width: 50px;
    /*height: 33px;*/
    background-image: url("../images/mobile_app_3_li19.png");
}
.mobile-app-3 .content .li-cont:nth-child(20) .icon-img{
    width: 38px;
    /*height: 33px;*/
    background-image: url("../images/mobile_app_3_li20.png");
}
.mobile-app-3 .content .li-cont .icon-img{
    height: 50px;
    background-repeat: no-repeat;
    background-position: center left;
}
.mobile-app-3 .content .li-cont:hover .icon-img{
    background-position: center right;
}
.mobile-app-3 .content .li-cont span{
    font-size: 14px;
    color: #7c7c7c;
}
.mobile-app-3 .content .li-cont:hover span{
    color: #000;
}
.mobile-app-4{
    padding: 100px 0;
    position: relative;
    height: auto;
    background-color: transparent;
    z-index: 1;
}
.mobile-app-4 .content{
    width: 70%;
    margin:50px auto;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    z-index: 1;
}
.mobile-app-4 .slide-li{
    position: relative;
    width: 350px;
    padding: 15px;
    margin: 0.5%;
    background-color: #fff;
    text-align: left;
    transition: all 1s ease 0s;
}
.mobile-app-4 .slide-li:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0px;
    height: 3px;
    background-color: transparent;
    transition: all 1s ease 0s;
}
.mobile-app-4 .slide-li:hover:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 380px;
    height: 3px;
    margin-left: -190px;
    background-color: #ffc000;
}
.mobile-app-4 .slide-li h3{
    font-size: 18px;
    color: #000106;
    margin-top: 25px;
}
.mobile-app-4 .slide-li p{
    font-size: 14px;
    color: #616163;
    margin-top: 8px;
    line-height: 150%;
    display: -webkit-box; /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
    text-overflow: ellipsis; /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.mobile-app-4 .bottom-img{
    justify-content: center;
    align-items: center;
}
.mobile-app-5{
    margin-top: -250px;
}

/*  online-retailers.css  */

.online-retailers-title .yanse{
    font-size: 34px;
    color: #ffc106;
}
.online-retailers-title .yanse2{
    font-size: 34px;
    color: #adadad;
    font-weight: 300;
}
.online-retailers-1{
    justify-content: flex-start;
    align-items: center;
    margin-top: 80px;
    background: url("../images/online_retailers_1_bg.jpg") no-repeat;
    background-position: top center;
    height: 965px;
}
.online-retailers-1 .cont{
    justify-content: flex-start;
    align-items: flex-start;
    width: 70%;
    margin: auto;
}
.online-retailers-1 .cont p{
    font-size: 18px;
    color: #fff;
    line-height: 150%;
    margin: 50px 0;
}
.online-retailers-1 .cont .a-btn{
    font-size: 16px;
    color: #353434;
    text-align: center;
    margin-left: -31px;
    padding-top: 19px;
    background: url("../images/mobile_app_1_btn.png") no-repeat;
    background-position: top center;
    width: 216px;
    height: 93px;
}
.online-retailers-2{
    padding: 80px 0;
}
.online-retailers-2 .content{
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.online-retailers-2 .content .li-cont{
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 550px;
    margin: 0 10px;
    padding: 0 50px;
    border-radius: 15px;
    filter:alpha(opacity=100 finishopacity=50 style=1 startx=0,starty=0,finishx=0,finishy=150) progid:DXImageTransform.Microsoft.gradient(startcolorstr=#fdfdfd,endcolorstr=#f5f5f5,gradientType=0);
    -ms-filter:alpha(opacity=100 finishopacity=50 style=1 startx=0,starty=0,finishx=0,finishy=150) progid:DXImageTransform.Microsoft.gradient(startcolorstr=#fdfdfd,endcolorstr=#f5f5f5,gradientType=0);/*IE8*/
    background:#f5f5f5; /* 一些不支持背景渐变的浏览器 */
    background:-moz-linear-gradient(top, #fdfdfd, #f5f5f5);
    background:-webkit-gradient(linear, 0 0, 0 bottom, from(#fdfdfd), to(#f5f5f5));
    background:-o-linear-gradient(top, #fdfdfd, #f5f5f5);
    transition: all 1s ease 0s;
}
.online-retailers-2 .content .li-cont:hover{
    box-shadow: 0px 15px 25px 5px #e0e0e0;
}
.online-retailers-2 .content .li-cont .title-img{
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 15px 15px 0px #cecece;
}
.online-retailers-2 .content .li-cont .title{
    position: relative;
    font-size: 24px;
    color: #2b2b2b;
    padding: 50px 0 40px 0;
}
.online-retailers-2 .content .li-cont .title:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 4px;
    margin-left: -20px;
    background-color: #ffc706;
}
.online-retailers-2 .content .li-cont .text{
    font-size: 14px;
    color: #545454;
    line-height: 150%;
    text-align: center;
    margin-top: 20px;
}
.online-retailers-3{
    padding: 80px 0;
    background: url("../images/online_retailers_3_bg.jpg") no-repeat;
    background-position: top center;
    height: 1030px;
}
.online-retailers-4{
    padding: 100px 0;
    background: url("../images/online_retailers_4_bg.jpg") no-repeat;
    background-position: top center;
    height: 889px;
}
.online-retailers-4 .text2{
    text-align: left;
}
.online-retailers-4 .content{
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.online-retailers-5 .pagination-cont{
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    padding: 0 15%;
}
.online-retailers-5 .pagination-cont .text span{
    font-size: 30px;
    color: #000000;
}
.online-retailers-5 .pagination-cont .btn-cont{
    justify-content: center;
    align-items: center;
    margin-left: 23%;
}
.online-retailers-5 .pagination-cont .btn-cont .prve-btn,
.online-retailers-5 .pagination-cont .btn-cont .next-btn{
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}
.online-retailers-5 .pagination-cont .btn-cont .prve-btn{
    background-color: #e8e8e8;
}
.online-retailers-5 .pagination-cont .btn-cont .next-btn{
    background-color: #333333;
}

/*  system-development.css  */
.system-development-1{
    margin-top: 80px;
}
.system-development-1 img{
    width: 100%;
}
.system-development-2{
    padding: 50px;
}
.system-development-2 .content{
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    width: 70%;
    margin: 80px auto 0 auto;
}
.system-development-2 .content .li-cont{
    justify-content: center;
    align-items: center;
    width: 44%;
    height: 160px;
    padding: 0 2%;
    margin: 0 1% 2% 1%;
    background-color: #f6f6f6;
    border-radius: 160px;
}
.system-development-2 .content .li-cont .right-text{
    justify-content: space-around;
    align-items: flex-start;
    margin: 0 8%;
    flex: 1;
}
.system-development-2 .content .li-cont .right-text .title{
    font-size: 24px;
    color: #434343;
}
.system-development-2 .content .li-cont .right-text .text{
    font-size: 14px;
    color: #8b8b8b;
    line-height: 150%;
    margin-top: 10px;
}
.system-development-3{
    padding: 100px 0;
    background: url("../images/system_development_3_bg.jpg") no-repeat;
    background-position: top center;
    height: 660px;
}
.system-development-3 .content{
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    width: 70%;
    margin: 100px auto 0 auto;
    border-radius: 15px;
    overflow: hidden;
}
.system-development-3 .content .li-cont{
    justify-content: center;
    align-items: center;
    width: 25%;
    padding: 20px 0;
    height: 150px;
    /* 旧语法，带前缀并且已经废弃，以支持老版本的浏览器 */
    background: -prefix-linear-gradient(left bottom, #ffffff 60%, #f4f3f3);
    /* 新语法，不带前缀，以支持标准兼容的浏览器（Opera 12.1， IE 10， Firefox 16， Chrome 26， Safari 6.1） */
    background: linear-gradient(to top right, #ffffff 60%, #f4f3f3);
}
.system-development-3 .content .li-cont span{
    font-size: 24px;
    color: #454545;
    font-weight: 600;
    margin-top: 15px;
}
.system-development-4{
    padding: 80px 0;
}
.system-development-4 .content{
    justify-content: center;
    align-items: center;
}
.system-development-4 .content .li-cont{
    justify-content: center;
    align-items: center;
    width: 70%;
    padding: 50px 15%;
}
.system-development-4 .content .li-cont2{
    background-color: #f6f6f6;
}
.system-development-4 .content .li-cont .li-img{
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 0 5%;
}
.system-development-4 .content .li-cont .li-text{
    width: 70%;
    /*padding: 0 5%;*/
}
.system-development-4 .content .li-cont .li-text .title{
    font-size: 34px;
    color: #272727;
}
.system-development-4 .content .li-cont .li-text .text{
    position: relative;
    font-size: 18px;
    color: #525252;
    line-height: 150%;
    margin-top: 30px;
    padding-left: 20px;
}
.system-development-4 .content .li-cont .li-text .text:nth-child(2){
    margin-top: 50px;
}
.system-development-4 .content .li-cont .li-text .text:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    border-top: 7px solid transparent;
    border-left: 12px solid #ffc106;
    border-bottom: 7px solid transparent;
}
.system-development-4 .content .li-cont .li-text .title{
    font-size: 30px;
    color: #272727;
}
.system-development-5{
    margin-top: -100px;
}

/*  system-development2.css*/
.system-development2-title{
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 0;
    width: 50%;
    padding-left: 10%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.51);
}
.system-development2-title .title{
    line-height: 150%;
}
.system-development2-title .mudi-text{
    margin-top: 3px;
}
.system-development2-title .mudi-text:nth-child(2){
    margin-top: 15px;
}
.system-development2-title .btn{
    background-color: #ffc106;
}
.system-development2-title .btn:before{
    border-right: 15px solid #ffc106;
}
.system-development2-title .btn:after{
    border-left: 15px solid #ffc106;
}
.system-development2-2{
    padding-top: 50px;
    margin-bottom: 40px;
}
.system-development2-2 .content .li-cont{
    position: relative;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    /*padding: 0 15%;*/
    margin-top: 100px;
    z-index: 1;
}
.system-development2-2 .content .li-cont .bg-cont{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    /*margin-left: -15%;*/
    background: -webkit-linear-gradient(top, #f5f5f5 , #e8e8e8); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(bottom, #f5f5f5, #e8e8e8); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(bottom, #f5f5f5, #e8e8e8); /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom, #f5f5f5 , #e8e8e8); /* 标准的语法 */
    z-index: -1;
}
.system-development2-2 .content .li-cont .bg-cont2{
    background: -webkit-linear-gradient(left, #ffd65d , #ffc106); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #ffd65d, #ffc106); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #ffd65d, #ffc106); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #ffd65d , #ffc106); /* 标准的语法 */
}
.system-development2-2 .content .li-cont .bg-cont3{
    height: 400px;
    bottom: -100px;
}
.system-development2-2 .content .li-cont .text-cont{
    height: 422px;
    margin-right: 20px;
}
.system-development2-2 .content .li-cont .text-cont .title{
    padding-bottom: 80px;
    margin-bottom: 30px;
}
.system-development2-2 .content .li-cont .text-cont .title h3{
    font-size: 30px;
    color: #ffc106;
}
.system-development2-2 .content .li-cont .text-cont .title p{
    font-size: 24px;
    color: #cccccc;
}
.system-development2-2 .content .li-cont .text-cont .text-middle h3{
    font-size: 20px;
    color: #18191d;
}
.system-development2-2 .content .li-cont .text-cont .text-middle p{
    font-size: 14px;
    color: #000106;
    line-height: 150%;
    margin-top: 20px;
}
.system-development2-2 .content .li-cont .text-cont .text-middle p:nth-child(2){
    margin-top: 15px;
}
.system-development2-2 .content .li-cont .text-cont .a-btn{
    font-size: 14px;
    color: #000106;
    margin-top: 20px;
    padding:5px 10px;
    border-radius: 20px;
    background-color: #fff;
}
.system-development2-2 .content .li-cont .text-cont .a-btn img{
    margin-left: 10px;
}

/*  system-development-ERP.css  */
.system-development-ERP-1{
    margin-top: 80px;
}
.system-development-ERP-1 img{
    width: 100%;
}
.system-development-ERP-2{
    justify-content: center;
    align-items: center;
    height: 947px;
    background: url("../images/system_development_erp_2.jpg") no-repeat;
    background-position: top left;
}
.system-development-ERP-2 .content{
    justify-content: center;
    align-items: center;
    
}
.system-development-ERP-2 .content .cont-li{
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 500px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px #d1d1d1;
    transition: all 1s ease 0s;
}
.system-development-ERP-2 .content .cont-li:hover{
    box-shadow: 0px 0px 50px 0px #d1d1d1;
}
.system-development-ERP-2 .content .cont-li:nth-child(2){
    margin: 0 50px;
}
.system-development-ERP-2 .content .cont-li h3{
    position: relative;
    font-size: 30px;
    color: #434343;
    padding: 30px 0 20px 0;
    margin-bottom: 20px;
}
.system-development-ERP-2 .content .cont-li h3:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 3px;
    background-color: #ffc706;
}
.system-development-ERP-2 .content .cont-li p{
    font-size: 14px;
    color: #696969;
    line-height: 150%;
    text-align: center;
}
.system-development-ERP-3{
    justify-content: center;
    align-items: center;
    height: 845px;
    background: url("../images/system_development_erp_3.jpg") no-repeat;
    background-position: top left;
}
.system-development-ERP-3 .content{
    margin-top: 50px;
}
.system-development-ERP-3 .content .li-cont{
    justify-content: center;
    align-items: center;
}
.system-development-ERP-3 .content .li-cont:nth-child(1){
    margin-bottom: 5px;
}
.system-development-ERP-3 .content .li-cont .li{
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    width: 400px;
    height: 250px;
    box-sizing: border-box;
    padding:  70px 50px 0 50px;
    background-color: #fff;
    overflow: hidden;
}
.system-development-ERP-3 .content .li-cont .li .img{
    position: absolute;
    transition: all 0.5s ease 0s;
}
.system-development-ERP-3 .content .li-cont:nth-child(1) .li:nth-child(1) .img{
    width: 144px;
    height: 144px;
    top: -22px;
    right: -35px;
    background: url("../images/system_development_erp_li4.png") no-repeat;
    background-position: center center;
}
.system-development-ERP-3 .content .li-cont:nth-child(1) .li:nth-child(1):hover .img{
    background: url("../images/system_development_erp_li4_2.png") no-repeat;
}
.system-development-ERP-3 .content .li-cont:nth-child(1) .li:nth-child(2) .img{
    width: 127px;
    height: 124px;
    top: -4px;
    right: -14px;
    background: url("../images/system_development_erp_li5.png") no-repeat;
    background-position: center center;
}
.system-development-ERP-3 .content .li-cont:nth-child(1) .li:nth-child(2):hover .img{
    background: url("../images/system_development_erp_li5_2.png") no-repeat;
}
.system-development-ERP-3 .content .li-cont:nth-child(1) .li:nth-child(3) .img{
    width: 142px;
    height: 129px;
    top: -4px;
    right: -12px;
    background: url("../images/system_development_erp_li6.png") no-repeat;
    background-position: center center;
}
.system-development-ERP-3 .content .li-cont:nth-child(1) .li:nth-child(3):hover .img{
    background: url("../images/system_development_erp_li6_2.png") no-repeat;
}
.system-development-ERP-3 .content .li-cont:nth-child(2) .li:nth-child(1) .img{
    width: 118px;
    height: 148px;
    top: -27px;
    right: -15px;
    background: url("../images/system_development_erp_li7.png") no-repeat;
    background-position: center center;
}
.system-development-ERP-3 .content .li-cont:nth-child(2) .li:nth-child(1):hover .img{
    background: url("../images/system_development_erp_li7_2.png") no-repeat;
}
.system-development-ERP-3 .content .li-cont:nth-child(2) .li:nth-child(2) .img{
    width: 144px;
    height: 156px;
    top: -36px;
    right: -36px;
    background: url("../images/system_development_erp_li8.png") no-repeat;
    background-position: center center;
}
.system-development-ERP-3 .content .li-cont:nth-child(2) .li:nth-child(2):hover .img{
    background: url("../images/system_development_erp_li8_2.png") no-repeat;
}
.system-development-ERP-3 .content .li-cont:nth-child(2) .li:nth-child(3) .img{
    width: 155px;
    height: 159px;
    top: -50px;
    right: -35px;
    background: url("../images/system_development_erp_li9.png") no-repeat;
    background-position: center center;
}
.system-development-ERP-3 .content .li-cont:nth-child(2) .li:nth-child(3):hover .img{
    background: url("../images/system_development_erp_li9_2.png") no-repeat;
}
.system-development-ERP-3 .content .li-cont .li:hover{
    background: -webkit-linear-gradient(left top, #ffc706 40%, #ffd238 60%); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(bottom right, #ffc706 40%, #ffd238 60%); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(bottom right, #ffc706 40%, #ffd238 60%); /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom right, #ffc706 40%, #ffd238 60%); /* 标准的语法 */
}
.system-development-ERP-3 .content .li-cont .li:nth-child(2){
    margin: 0 8px;
}
.system-development-ERP-3 .content .li-cont .li .line{
    width: 50px;
    height: 3px;
    background-color: #e5e5e5;
}
.system-development-ERP-3 .content .li-cont .li:hover .line{
    background-color: #404040;
}
.system-development-ERP-3 .content .li-cont .li h3{
    font-size: 24px;
    color: #484848;
    margin-top: 50px;
}
.system-development-ERP-3 .content .li-cont .li:hover h3{
    color: #484848;
}
.system-development-ERP-3 .content .li-cont .li p{
    font-size: 14px;
    color: #8b8b8b;
    margin-top: 10px;
    line-height: 150%;
}
.system-development-ERP-3 .content .li-cont .li:hover p{
    color: #5a5a5a;
}

/*  system-development-OA.css  */
.system-development-OA-2{
    justify-content: center;
    align-items: center;
    height: 900px;
    background: url("../images/system_development_oa_2.jpg") no-repeat;
    background-position: top left;
}
.system-development-OA-2 .content{
    position: relative;
    width: 1266px;
    height: 660px;
    margin: 50px auto 0 auto;
    border-radius: 20px;
    background-color: #fafafa;
}
.system-development-OA-2 .content .cont-li{
    position: absolute;
    justify-content: center;;
    align-items: center;
    width: 450px;
    height: 200px;
    border-radius: 5px;
    border:1px solid #efefef;
    background-color: #fefefe;
    box-shadow: 0 5px 5px 0 #cfcfcf;
}
.system-development-OA-2 .content .cont-li2{
    width: 300px;
    height: 410px;
}
.system-development-OA-2 .content .cont-li3{
    width: 600px;
    height: 200px;
}
.system-development-OA-2 .content .cont-li:nth-child(1){
    top: 20px;
    left: 20px;
}
.system-development-OA-2 .content .cont-li:nth-child(2){
    top: 20px;
    left: 480px;
}
.system-development-OA-2 .content .cont-li:nth-child(3){
    top: 20px;
    left: 940px;
}
.system-development-OA-2 .content .cont-li:nth-child(4){
    top: 230px;
    left: 20px;
}
.system-development-OA-2 .content .cont-li:nth-child(5){
    top: 230px;
    left: 330px;
}
.system-development-OA-2 .content .cont-li:nth-child(6){
    top: 440px;
    left: 330px;
}
.system-development-OA-2 .content .cont-li:nth-child(7){
    top: 440px;
    left: 790px;
}
.system-development-OA-2 .content .cont-li .text-cont{
    margin-left: 20px;
}
.system-development-OA-2 .content .cont-li .text-cont h3{
    font-size: 31px;
    color: #434343;
}
.system-development-OA-2 .content .cont-li2 .text-cont h3{
    margin-top: 30px;
}
.system-development-OA-2 .content .cont-li .text-cont p{
    font-size: 22px;
    color: #a0a0a0;
    margin-top: 8px;
}
.system-development-OA-2 .content .cont-li .text-cont p:nth-child(2){
    margin-top: 10px;
}
.system-development-OA-3{
    justify-content: center;
    align-items: center;
    height: 845px;
    background: url("../images/system_development_oa_3.jpg") no-repeat;
    background-position: top left;
    background-size: 100% 845px;
}
.system-development-OA-3 .content{
    justify-content: space-around;
    align-items: center;
    width: 1200px;
    margin-top: 150px;
}
.system-development-OA-3 .content .cont-li{
    justify-content: center;
    align-items: center;
}
.system-development-OA-3 .content .cont-li h3{
    font-size: 18px;
    color: #fff;
    margin-top: 25px;
}
.system-development-OA-3 .content .cont-li p{
    font-size: 16px;
    color: #d8d8d8;
    margin-top: 10px;
}

/*  About-us.css  */
.about-us-title{
    justify-content: center;
    align-items: center;
}
.about-us-title .title-h1{
    font-size: 40px;
    color: #353434;
}
.about-us-title .title-h3{
    font-size: 24px;
    color: #111111;
}
.about-us-1{margin-top: 80px;}
.about-us-1 img{width: 100%;}
.about-us-2{
    justify-content: center;
    align-items: center;
    padding: 100px 0px 100px 0;
    margin-right: 100px;
    /* 旧语法，带前缀并且已经废弃，以支持老版本的浏览器 */
    background: -prefix-linear-gradient(left, #f6f6f6 50%, #ffffff 50%);
    /* 新语法，不带前缀，以支持标准兼容的浏览器（Opera 12.1， IE 10， Firefox 16， Chrome 26， Safari 6.1） */
    background: linear-gradient(to right, #f6f6f6 50%, #ffffff 50%);
}
.about-us-2 .left-cont{
    justify-content: center;
    align-items: center;
    width: 616px;
    height: 540px;
    background: url("../images/about_us_2_bg.jpg") no-repeat;
    background-position: top center;
    margin: 0 -170px 0 100px;
    z-index: 1;
}
.about-us-2 .right-cont{
    justify-content: center;
    align-items: flex-start;
    width: 440px;
    height: 640px;
    margin-left: 50px;
    padding: 0 80px 0 160px;
    border: 20px solid #e8e8e8;
}
.about-us-2 .right-cont .title-english{
    font-size: 44px;
    color: #353434;
}
.about-us-2 .right-cont .title-china{
    position: relative;
    font-size: 25px;
    color: #111111;
    margin: 10px 0 40px 0;
    padding-bottom: 30px;
}
.about-us-2 .right-cont .title-china:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 5px;
    background-color: #ff9e06;
}
.about-us-2 .right-cont .title-china span{
     font-size: 25px;
     color: #989898;
    font-weight: 500;
 }
.about-us-2 .right-cont .text{
    font-size: 16px;
    color: #282828;
    line-height: 150%;
    margin-top: 30px;
}
.about-us-2 .right-cont .text:nth-child(1){
    margin-top: 0;
}
.about-us-3{
    width: 100%;
    height: 600px;
}
.about-us-4{margin-top: -150px;z-index: 1}
.about-us-4 .information-text{
    position: relative;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 150px;
    /* 旧语法，带前缀并且已经废弃，以支持老版本的浏览器 */
    background: -prefix-linear-gradient(12deg, rgba(38, 38, 37, 0.7) 70%, rgba(255, 255, 255, 0.6));
    /* 新语法，不带前缀，以支持标准兼容的浏览器（Opera 12.1， IE 10， Firefox 16， Chrome 26， Safari 6.1） */
    background: linear-gradient(12deg, rgba(38, 38, 37, 0.7) 70%, rgba(219, 219, 219, 0.6));
}
.about-us-4 .information-text:before{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 15%;
    width: 3px;
    height: 40px;
    background-color: #ff9e06;
}
.about-us-4 .information-text .left-cont{
    position: relative;
    justify-content: center;
    align-content: flex-start;
    width: 20%;
    padding:0 5% 0 15%;
    border-right: 1px solid #595958;
}
.about-us-4 .information-text .left-cont h3{
    font-size: 34px;
    color: #fff;
}
.about-us-4 .information-text .left-cont span{
    font-size: 18px;
    color: #ff9e06;
    margin-top: 8px;
}
.about-us-4 .information-text .right-cont{
    width: 50%;
    padding:0 0 0 10%;

}
.about-us-4 .information-text .right-cont .text-right{
    margin-top: 20px;
}
.about-us-4 .information-text .right-cont .text-left p:nth-child(1),
.about-us-4 .information-text .right-cont .text-right p:nth-child(1){
    width: 50%;
    padding-right: 5%;
}
.about-us-4 .information-text .right-cont .text-left p:nth-child(2),
.about-us-4 .information-text .right-cont .text-right p:nth-child(2){
    width: 50%;
}
.about-us-4 .information-text .right-cont p{
    font-size: 18px;
    color: #fff;
    text-align: left;
}
.about-us-4 .information-text .right-cont .p-address{
    padding-left: 82px;
}
.about-us-4 .information-text .right-cont p span{
    font-size: 18px;
    color: #ff9e06;
    margin-right: 10px;
}
.about-us-4 .information-text .right-cont .span-address{
    margin-left: -82px;
}
.about-us-4 .liuyan-cont{
    width: 100%;
    height: 250px;
    align-items: center;
    border-bottom: 3px solid #ff9e06;
}
.about-us-4 .liuyan-cont .left-cont{
    justify-content: center;
    width: 20%;
    height: 250px;
    padding: 0 5% 0 15%;
    background-color: #1a1a1a;
}
.about-us-4 .liuyan-cont .left-cont h3{
    font-size: 34px;
    color: #fff;
}
.about-us-4 .liuyan-cont .left-cont span:nth-child(2){
    font-size: 18px;
    color: #ff9e06;
    margin-top: 8px;
}
.about-us-4 .liuyan-cont .left-cont span:nth-child(3){
    font-size: 14px;
    color: #535353;
    line-height: 150%;
}
.about-us-4 .liuyan-cont .right-cont{
    justify-content: center;
    width: 35%;
    height: 250px;
    padding: 0 15% 0 10%;
    background-color: #202020;
}
.about-us-4 .liuyan-cont .right-cont .input{
    margin-bottom: 20px;
}
.about-us-4 .liuyan-cont .right-cont .input input{
    width: 47%;
    font-size: 16px;
    color: #fff;
    padding: 1%;
    border: 1px solid #4d4d4d;
}
.about-us-4 .liuyan-cont .right-cont .input input:nth-child(1){
    margin-right: 1%;
}
.about-us-4 .liuyan-cont .right-cont .textarea{
    width: 97.5%;
    font-size: 16px;
    color: #fff;
    padding: 1%;
    border: 1px solid #4d4d4d;
}
.about-us-4 .liuyan-cont .right-cont .subform{
    width: 150px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 193, 6);
    margin-top: 20px;
    padding: 1% 20px;
    border-radius: 5px;
}
.about-us-5{
    justify-content: center;
    align-items: center;
    background: url("../images/about_us_5_bg.jpg") no-repeat;
    background-position: top center;
    height: 833px;
}
.about-us-5 .content{
    position: relative;
    width: 1200px;
    height: 293px;
    margin: 80px auto 0 auto;
}
.about-us-5 .content .swiper-container{
    width: 1202px;
    height: 293px;
}
.about-us-5 .content .swiper-container .swiper-slide{
    position: relative;
}
.about-us-5 .content .button-next{
    position: absolute;
    top:50%;
    right: -55px;
    margin-top: -45.5px;
}
.about-us-5 .content .button-prev{
    position: absolute;
    top:50%;
    left: -55px;
    margin-top: -45.5px;
}
.about-us-5 .content .swiper-container .swiper-slide .item-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-out;
    opacity: 0;
    background: #ffc000;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    filter: alpha(opacity=0);
}
.about-us-5 .content .swiper-container .swiper-slide:hover .item-mask {
    opacity: .5;
    background: #ffc000;
    filter: alpha(opacity=50);
}
.about-us-5 .content .swiper-container .swiper-slide .btn-link__hover_i {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 94px;
    height: 94px;
    margin: -47px 0 0 -47px;
    background: url("../images/about_us_eye.png") no-repeat;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all ease-out 250ms;
}
.about-us-5 .content .swiper-container .swiper-slide:hover .btn-link__hover_i {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.about-us-6{
    margin-top: -80px;
}
.about-us-6_2{
    margin-top: -40px;
}


/*  屏幕尺寸适应  */
@media only screen and (min-width: 1024px) and (max-width: 1100px){
    .header-top .nav{
        padding: 0 6%;
    }
    .header-top .nav .nav-a .drop-cont .drop-div{
        padding: 0 6%;
    }
    .column-3{
        background-size: auto 100%;
    }
    .column-5{
        background-size: auto 100%;
    }
    .column-6 .idea-cont .content{
        background-size: auto 100%;
        padding: 0;
    }
    .column-6 .idea-cont .content .tijiao-idea{
        left: 0%;
    }
    .column-6 .idea-cont .content .right-cont{
        margin-left: 50%;
    }
    .Development_case_column_2 .content{
        margin: 0 6%;
    }
    .system-development-2 .content{
        width: 100%;
    }
}
@media only screen and (min-width: 1100px) and (max-width: 1280px){
    .header-top .nav{
        padding: 0 6%;
    }
    .header-top .nav .nav-a .drop-cont .drop-div{
        padding: 0 6%;
    }
    .column-3{
        background-size: auto 100%;
    }
    .column-5{
        background-size: auto 100%;
    }
    .column-6 .idea-cont .content{
        background-size: auto 100%;
        padding: 0;
    }
    .column-6 .idea-cont .content .tijiao-idea{
        left: 0%;
    }
    .column-6 .idea-cont .content .right-cont{
        margin-left: 50%;
    }
    .Development_case_column_2 .content{
        margin: 0 6%;
    }
    .system-development-2 .content{
        width: 100%;
    }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px){
    .header-top .nav{
        padding: 0 6%;
    }
    .header-top .nav .nav-a .drop-cont .drop-div{
        padding: 0 6%;
    }
    .column-3{
        background-size: auto 100%;
    }
    .column-5{
        background-size: auto 100%;
    }
    .column-6 .idea-cont .content{
        background-size: auto 100%;
        padding: 0;
    }
    .column-6 .idea-cont .content .tijiao-idea{
        left: 0;
    }
    .column-6 .idea-cont .content .right-cont{
        margin-left: 50%;
    }
    .Development_case_column_2 .content{
        margin: 0 6%;
    }
    .system-development-2 .content{
        width: 100%;
    }
}
@media only screen and (min-width: 1366px) and (max-width: 1440px){
    .header-top .nav{
        padding: 0 6%;
    }
    .header-top .nav .nav-a .drop-cont .drop-div{
        padding: 0 6%;
    }
    .column-3{
        background-size: auto 100%;
    }
    .column-5{
        background-size: auto 100%;
    }
    .column-6 .idea-cont .content{
        background-size: auto 100%;
        padding: 0;
    }
    .column-6 .idea-cont .content .tijiao-idea{
        left: 0;
    }
    .column-6 .idea-cont .content .right-cont{
        margin-left: 50%;
    }
    .Development_case_column_2 .content{
        margin: 0 6%;
    }
    .system-development-2 .content{
        width: 100%;
    }
}
@media only screen and (min-width: 1440px) and (max-width: 1680px){
    .header-top .nav{
        padding: 0 6%;
    }
    .header-top .nav .nav-a .drop-cont .drop-div{
        padding: 0 6%;
    }
    .column-3{
        background-size: auto 100%;
    }
    .column-5{
        background-size: auto 100%;
    }
    .column-6 .idea-cont .content{
        background-size: auto 100%;
        padding: 0;
    }
    .column-6 .idea-cont .content .tijiao-idea{
        left: 0;
    }
    .column-6 .idea-cont .content .right-cont{
        margin-left: 50%;
    }
    .Development_case_column_2 .content{
        margin: 0 6%;
    }
    .system-development-2 .content{
        width: 100%;
    }
}
@media only screen and (min-width: 1680px) and (max-width: 1920px){
    .header-top .nav{
        padding: 0 15%;
    }
    .header-top .nav .nav-a .drop-cont .drop-div{
        padding: 0 15%;
    }
    .column-3{
        background-size: 100% auto;
    }
    .column-5{
        background-size: 100% auto;
    }
    .column-6 .idea-cont .content{
        background-size: 100% auto;
    }
    .Development_case_column_2 .content{
        margin: 0 15%;
    }
    .system-development-2 .content{
        width: 70%;
    }
}