@charset "utf-8";
.no_padding{
    padding: 0;
}
.h136{
    height: 136px;
    overflow: hidden;
}
.header {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 0;
    transition: all .3s;
}
.header.active{
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
    transition: all .3s;
}
.header.is_stuck{
    background: #ffffff;
    padding: 10px 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
    transition: all .3s;
}
.header .conBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo_box{
    overflow: hidden;
    display: flex;
    align-items: center;
}
.header .logo_box a{
    width: 71px;
    height: 86px;
    position: relative;
    display: inline-block;
    line-height: 0;
}
.header .logo_box a img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.header .logo_box a img.hide{
    opacity: 0;
    transition: all .3s;
}
.header.is_stuck .logo a img,
.header.active .logo a img{
    opacity: 0;
    transition: all .3s;
}
.header.is_stuck .logo_box a img.hide,
.header.active .logo_box a img.hide{
    opacity: 1;
    transition: all .3s;
}
.header .logo_box .t{
    width: 265px;
    margin-left: 15px;
}
.header .logo_box .t p{
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    transition: all .3s;
}
.header.is_stuck .logo_box .t p,
.header.active .logo_box .t p{
    color: #001111;
    transition: all .3s;
}

.header .navBox{
    position: relative;
    padding-right: 30px;
}
.header .nav_list {
    font-size: 0;
    line-height: 0;
    position: relative;
}
.header .nav_list > li {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: top;
    zoom: 1;
    text-align: center;
    transition: all .3s;
}
.header .nav_list > li > a {
    display: block;
}
.header .nav_list > li > a > span {
    display: inline-block;
    letter-spacing: 0;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    padding: 0 12px;
    position: relative;
    font-weight: 300;
    text-transform: uppercase;
    transition: all .3s;
}
.header.is_stuck .nav_list > li > a > span,
.header.active .nav_list > li > a > span{
    color: #001111;
    transition: all .3s;
}
.header.is_stuck .nav_list > li.active > a > span,
.header.is_stuck .nav_list > li.on > a > span,
.header.active .nav_list > li.active > a > span,
.header.active .nav_list > li.on > a > span{
    color: #008fde;
    transition: all .3s;
}
.header .nav_list > li > a > span:before{
    position: absolute;
    content: '';
    width: 15px;
    height: 4px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    background: #ffffff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    transition: all .3s;
}
.header.is_stuck .nav_list > li > a > span:before,
.header.active .nav_list > li > a > span:before{
    background: #008fde;
    transition: all .3s;
}
.header .nav_list > li.active > a > span:before,
.header .nav_list > li.on > a > span:before{
    opacity: 1;
    transition: all .3s;
}
.header .nav_list > li.on > a > span:before{
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: all .3s;
}
.nav_list > li > a > i {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 50px;
    line-height: 50px;
    margin-left: -12px;
    color: #ffffff;
    font-size: 14px;
    -moz-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -ms-transition: all linear .3s;
    transition: all .3s;
}
.header.is_stuck .nav_list > li > a > i,
.header.active .nav_list > li > a > i{
    color: #001111;
}
.nav_list > li:hover i {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.nav_normal > li {
    position: relative;
}
.nav_normal > li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    display: none;
    z-index: 1;
    padding: 10px 5px;
    background: #008fde;
}
.nav_normal .dropdown_menu li {
    width: 100%;
}
.nav_normal .dropdown_menu li a {
    display: block;
    letter-spacing: 0;
    line-height: 30px;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    padding: 0 20px;
    white-space: nowrap;
}
.nav_normal .dropdown_menu li a:hover{
    background: #ffffff;
    color: #000000;
}
.header_search_box {
    position: absolute;
    right: 0;
    top: 4px;
    width: 32px;
    height: 40px;
    overflow: hidden;
    background: 0 0;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s;
}
.header_search_box.active {
    width: 260px;
    background: #111;
    transition: all .3s;
}
.header_search_box a {
    line-height: 0;
    width: 32px;
    height: 40px;
    text-align: right;
    display: block;
    position: relative;
    float: right;
    z-index: 10;
}
.header_search_box a:before {
    position: absolute;
    content: '\e613';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 40px;
    text-align: center;
    font-family: iconfont,sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: all .3s;
}
.header.is_stuck .header_search_box a:before,
.header.active .header_search_box a:before{
    color: #001111;
    transition: all .3s;
}
.header_search_box a.active:before {
    content: '\e6ae';
    color: #fff;
    transition: all .3s;
}
.header.is_stuck .header_search_box a.active:before,
.header.active .header_search_box a.active:before{
    color: #ffffff;
    transition: all .3s;
}
.search_form {
    position: absolute;
    top: 0;
    right: 32px;
    width: 0;
    display: block;
    z-index: -1;
    transition: all .3s;
}
.header_search_box.active .search_form {
    width: 220px;
    z-index: 9;
    transition: all .3s;
}
.search_form .info {
    width: 100%;
    padding-right: 0;
    position: relative;
}
.header_search_box.active .search_form .info {
    padding-right: 32px;
}
.search_form .info:before {
    position: absolute;
    content: '\e613';
    top: 0;
    right: 0;
    width: 32px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: iconfont,sans-serif;
    font-size: 16px;
    color: #fff;
}
.search_form input[type=text] {
    width: 100%;
    height: 40px;
    background: 0 0;
    border: 0;
    text-indent: 10px;
    font-size: 16px;
    color: #fff;
}
.search_form input[type=text]::-webkit-input-placeholder {
    color: #fff;
}
.search_form input.btn_search {
    width: 32px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    font-size: 0;
    background: 0 0;
    cursor: pointer;
    z-index: 2;
}

.m_header {
    display: none;
}

.footer_box{
    padding-top: 7px;
    overflow: hidden;
    position: relative;
    background: #264155;
}
.footer_box:before,
.footer_box:after{
    position: absolute;
    content: '';
    width: 40%;
    height: 7px;
    top: 0;
    right: 0;
    background: #fbc60e;
}
.footer_box:after{
    width: 60%;
    left: 0;
    background: #008cd6;
}

.footer_box .fast_navigation{
    overflow: hidden;
    padding-top: 70px;
}
.footer_box .fast_navigation .itemBox{
    display: flex;
    justify-content: space-between;
}
.footer_box .fast_navigation .item:nth-of-type(1){
    width: 355px;
}
.footer_box .fast_navigation .item:nth-of-type(2){
    width: 190px;
}
.footer_box .fast_navigation .item:nth-of-type(3){
    width: 130px;
}
.footer_box .fast_navigation .item:nth-of-type(4){
    width: 380px;
}

.footer_box .fast_navigation .footerLogo{
    display: flex;
    align-items: center;
}
.footer_box .fast_navigation .footerLogo .img{
    line-height: 0;
    width: 71px;
}
.footer_box .fast_navigation .footerLogo .t{
    flex: 1;
}
.footer_box .fast_navigation .footerLogo .t p{
    color: #ffffff;
    font-weight: 600;
    padding-left: 15px;
    font-size: 16px;
    line-height: 1.5;
}
.footer_box .fast_navigation .footerShare{
    margin-top: 20px;
}
.footer_box .fast_navigation .footerShare a{
    margin-right: 5px;
    display: inline-block;
    line-height: 0;
    width: 40px;
    height: 40px;
}
.footer_box .fast_navigation .footerInfo{
    margin-top: 40px;
}
.footer_box .fast_navigation .footerInfo li{
    margin-bottom: 20px;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: left top;
}
.footer_box .fast_navigation .footerInfo li.footerTel{
    background-image: url("/public/static/images/home/en-us/footerTel.png");
}
.footer_box .fast_navigation .footerInfo li.footerEmail{
    background-image: url("/public/static/images/home/en-us/footerEmail.png");
}
.footer_box .fast_navigation .footerInfo li.footerAddress{
    background-image: url("/public/static/images/home/en-us/footerAddress.png");
}
.footer_box .fast_navigation .footerInfo li *{
    line-height: 28px;
    font-size: 16px;
    color: #ffffff;
}
.footer_box .fast_navigation .share{
    padding-top: 20px;
    padding-left: 40px;
}
.footer_box .fast_navigation .share a{
    margin-right: 20px;
}

.footer_box .fast_navigation h3{
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.footer_box .fast_navigation h3:before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: #ffffff;
}
.footer_box .fast_navigation ul{
    overflow: hidden;
}
.footer_box .fast_navigation .footerMenu li{
    padding-bottom: 3px;
}
.footer_box .fast_navigation .footerMenu li,
.footer_box .fast_navigation .footerMenu p,
.footer_box .fast_navigation .footerMenu li a{
    font-size: 16px;
    color: #969ea6;
    line-height: 1.5;
    font-family: "Myriad Pro", sans-serif;
}
.footer_box .fast_navigation a:hover {
    text-decoration: underline;
}

.footer_box .footerForm .info{
    margin-bottom: 15px;
    position: relative;
}
.footer_box .footerForm .info.w100{
    width: 100%;
}
.footer_box .footerForm .info .tips{
    display: block;
    line-height: 14px;
    color: #ff0000;
    width: 100%;
    font-size: 12px;
}
.footer_box .footerForm .info input[type="text"]{
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 0;
    font-size: 16px;
    padding: 0 10px;
    color: #000000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.footer_box .footerForm .info textarea{
    width: 100%;
    height: 100px;
    background: #ffffff;
    border: 0;
    padding: 10px;
    font-size: 16px;
    color: #000000;
    resize: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.footer_box .footerForm .info input[type="submit"]{
    width: 100%;
    height: 50px;
    background: #fbc60e;
    font-size: 16px;
    color: #111111;
    border: 0;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s;
}
.footer_box .footerForm .info input[type="submit"]:hover{
    background: #008cd6;
    color: #ffffff;
    transition: all .3s;
}

.footer_box .footer_copyright{
    overflow: hidden;
    padding: 25px 0;
    text-align: center;
}
.footer_box .footer_copyright .text p,
.footer_box .footer_copyright .text span,
.footer_box .footer_copyright .text a{
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 1.5em;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
}
.footer_box .footer_copyright .text a.sitemap{
    margin: 0 5px;
}
.footer_box .footer_copyright .text a:hover{
    text-decoration: underline;
}

.rightFlexConBox{
    position: fixed;
    top: 0;
    right: -325px;
    bottom: 0;
    width: 325px;
    padding: 0 40px 0 47px;
    background: #ffffff;
    z-index: 100001;
    transition: all .5s;
}
.rightFlexConBox.on{
    right: 0;
    transition: all .5s;
}
.rightFlexConBox:before{
    position: absolute;
    content: '';
    width: 7px;
    height: 60%;
    top: 0;
    left: 0;
    background: #008cd6;
}
.rightFlexConBox:after{
    position: absolute;
    content: '';
    width: 7px;
    height: 40%;
    bottom: 0;
    left: 0;
    background: #fbc60e;
}

.rightFlexConBox .rightFlexBtn{
    position: absolute;
    left: -48px;
    top: 200px;
    width: 48px;
    height: 48px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #008cd6;
    cursor: pointer;
}
.rightFlexConBox .rightFlexBtn:before{
    position: absolute;
    content: '\e624';
    color: #ffffff;
    width: 48px;
    height: 48px;
    left: 0;
    font-size: 24px;
    line-height: 48px;
    font-family: "iconfont", sans-serif;
}
.rightFlexConBox .rightFlexBtn.on:before{
    content: '\e6ae';
}
.rightFlexConBox .logoBox{
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.rightFlexConBox .logoBox .img{
    margin-bottom: 20px;
}
.rightFlexConBox .logoBox .t p{
    font-weight: 700;
    font-size: 16px;
    color: #001111;
}
.rightFlexConBox .rightFlexCon{
    position: absolute;
    top: 220px;
    bottom: 160px;
    left: 47px;
    right: 38px;
    overflow-y: auto;
}
.rightFlexConBox .rightFlexCon::-webkit-scrollbar{width:2px;}
.rightFlexConBox .rightFlexCon::-webkit-scrollbar-track{background-color:#cccccc;}
.rightFlexConBox .rightFlexCon::-webkit-scrollbar-thumb{background-color:#000000;}
.rightFlexConBox .rightFlexCon::-webkit-scrollbar-thumb:hover {background-color:#000000}
.rightFlexConBox .rightFlexCon::-webkit-scrollbar-thumb:active {background-color:#000000;}

.rightFlexConBox .rightFlexCon li{
    position: relative;
}
.rightFlexConBox .rightFlexCon li i{
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    right: 0;
    z-index: 2;
    cursor: pointer;
}
.rightFlexConBox .rightFlexCon > ul > li{
    margin-bottom: 15px;
}
.rightFlexConBox .rightFlexCon > ul > li > a{
    font-size: 16px;
    font-weight: 600;
    color: #999999;
    line-height: 30px;
    display: block;
    padding-right: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rightFlexConBox .rightFlexCon > ul > li.on > a,
.rightFlexConBox .rightFlexCon > ul > li > a:hover,
.rightFlexConBox .rightFlexCon li i:hover{
    color: #008cd6;
}
.rightFlexConBox .rightFlexCon li .productMenu{
    display: none;
}
.rightFlexConBox .rightFlexCon li:nth-of-type(1) .productMenu{
    display: block;
}
.rightFlexConBox .rightFlexCon li .productMenu li a{
    font-size: 14px;
    color: #999999;
    display: block;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rightFlexConBox .rightFlexCon li .productMenu li a:hover{
    color: #008cd6;
    text-decoration: underline;
}

.rightFlexConBox .rightFlexInfo{
    position: absolute;
    bottom: 0;
    height: 140px;
    left: 47px;
    right: 40px;
    display: flex;
    align-items: center;
    border-top: 1px solid #999999;
}
.rightFlexConBox .rightFlexInfo li{
    padding-left: 40px;
    margin: 10px 0;
    background-repeat: no-repeat;
    background-position: left top;
}
.rightFlexConBox .rightFlexInfo li.rightFlexTel{
    background-image: url("/public/static/images/home/en-us/rightFlexTel.png");
}
.rightFlexConBox .rightFlexInfo li.rightFlexEmail{
    background-image: url("/public/static/images/home/en-us/rightFlexEmail.png");
}
.rightFlexConBox .rightFlexInfo li a{
    line-height: 28px;
    color: #999999;
    font-size: 16px;
}


.rightFlexBj{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 100000;
    display: none;
}

/*banner*/
.banner{
    border-bottom: 7px solid #fbc60e;
}
.banner_slick .slick-prev,
.banner_slick .slick-next {
    width: 40px;
    height: 50px;
    margin-top: -25px;
    z-index: 1000;
    background-image: url("/public/static/images/home/en-us/reset/skin.png");
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0);
}
.banner_slick .slick-prev {
    background-position: 0 0;
    left: 80px;
}
.banner_slick .slick-next {
    background-position: -150px 0;
    right: 80px;
}
.banner_slick .slick-dots li{
    width: 10px;
    height: 10px;
    border: 1px solid #b5b5b5;
    background: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.banner_slick .slick-dots li.slick-active{
    border: 1px solid #fbc60e;
    background: #fbc60e;
}

.indexBox1{
    padding: 90px 0;
}
.indexBox1 .title h2{
    text-align: center;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 30px;
    font-size: 30px;
}
.indexBox1 .form{
    width: 620px;
    margin: auto;
    padding-bottom: 30px;
}
.indexBox1 .form .info{
    width: 100%;
    overflow: hidden;
    border: 2px solid #dddddd;
    padding-right: 120px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.indexBox1 .form .info input[type="text"]{
    width: 100%;
    height: 42px;
    border: 0;
    padding: 10px;
    font-size: 16px;
}
.indexBox1 .form .info input[type="submit"]{
    width: 120px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0;
    background: #008cd6;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}
.indexBox1 .tip{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.indexBox1 .tip span{
    font-size: 16px;
    color: #111111;
    margin: 0 15px 5px;
}
.indexBox1 .itemBox{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding-top: 40px;
}
.indexBox1 .item{
    width: 25%;
    float: left;
    text-align: center;
    margin-bottom: 40px;
}
.indexBox1 .item .img{
    line-height: 0;
    padding-bottom: 20px;
    overflow: hidden;
}
.indexBox1 .item .img img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.indexBox1 .item:hover .img img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .3s;
}
.indexBox1 .item .text h3{
    font-size: 20px;
    color: #111111;
    padding-bottom: 15px;
}
.indexBox1 .item .text a{
    font-size: 16px;
    color: #008cd6;
}
.indexBox1 .item .text a:hover{
    text-decoration: underline;
}

.indexBox2{
    padding: 55px 0;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.indexBox2 .title h2{
    text-align: center;
    padding-bottom: 50px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.indexBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
}
.indexBox2 .item{
    width: 33.33%;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}
.indexBox2 .item .ico{
    line-height: 0;
    width: 65px;
}
.indexBox2 .item .t{
    flex: 1;
    padding: 0 10px;
}
.indexBox2 .item .t p{
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.indexBox3{
    overflow: hidden;
    padding: 120px 0;
}
.indexBox3 .img{
    width: 52.7%;
    padding-top: 680px;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-background-size: cover;
    background-size: cover;
    float: left;
}
.indexBox3 .textBox{
    width: 420px;
    float: left;
    margin-left: 6%;
}
.indexBox3 .textBox .text h2{
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 40px;
}
.indexBox3 .textBox .text p{
    font-size: 16px;
    color: #111111;
    line-height: 1.8;
}
.indexBox3 .textBox .text a{
    display: inline-block;
    margin-top: 30px;
    font-size: 14px;
    color: #008cd6;
}
.indexBox3 .textBox .info{
    margin-top: 80px;
    display: flex;
    justify-content: center;
}
.indexBox3 .textBox .info .t{
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #008cd6;
}
.indexBox3 .textBox .info .t:last-child{
    border-right: 0;
}
.indexBox3 .textBox .info .t span{
    font-size: 36px;
    font-weight: bold;
    color: #008cd6;
}
.indexBox3 .textBox .info .t p{
    font-size: 16px;
    color: #008cd6;
}

.indexBox4{
    padding: 20px 0 120px;
    overflow: hidden;
}
.indexBox4 .indexProject{
    width: 50%;
    float: left;
    padding-right: 10px;
}
.indexBox4 .indexProject h2{
    text-transform: uppercase;
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    margin-bottom: 30px;
}
.indexBox4 .indexProject h2 a{
    display: inline-block;
    float: right;
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    padding: 10px 0;
}
.indexBox4 .indexProject .img{
    line-height: 0;
}
.indexBox4 .indexProject .img img{
    width: 100%;
}
.indexBox4 .indexProject .text h3 a{
    display: block;
    margin: 15px 0 10px;
    font-size: 16px;
    color: #111111;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.indexBox4 .indexProject .text h3 a:hover{
    color: #008cd6;
    text-decoration: underline;
}
.indexBox4 .indexProject .text p{
    font-size: 16px;
    color: #999999;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.indexBox4 .indexNews{
    width: 50%;
    float: left;
    padding-left: 10px;
}
.indexBox4 .indexNews h2{
    text-transform: uppercase;
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    margin-bottom: 30px;
}
.indexBox4 .indexNews h2 a{
    display: inline-block;
    float: right;
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    padding: 10px 0;
}
.indexBox4 .list{
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}
.indexBox4 .list:last-child{
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.indexBox4 .list .img{
    width: 210px;
    float: left;
}
.indexBox4 .list .text{
    margin-left: 210px;
    padding-left: 15px;
}
.indexBox4 .list .text h3 a{
    display: block;
    margin: 10px 0 10px;
    font-size: 16px;
    color: #111111;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.indexBox4 .list .text h3 a:hover{
    color: #008cd6;
    text-decoration: underline;
}
.indexBox4 .list .text p{
    font-size: 16px;
    color: #999999;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.pageBanner{
    position: relative;
    padding-top: 445px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.pageBanner:before,
.pageBanner:after {
    position: absolute;
    content: '';
    width: 40%;
    height: 7px;
    bottom: 0;
    right: 0;
    background: #fbc60e;
}
.pageBanner:after{
    width: 60%;
    left: 0;
    background: #008cd6;
}
.pageBanner .text{
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}
.pageBanner .text h1{
    text-align: right;
    color: #ffffff;
    font-weight: 600;
    font-size: 30px;
    padding-right: 15px;
    position: relative;
    text-transform: uppercase;
}
.pageBanner .text h1:before{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    right: 0;
    top: 50%;
    margin-top: -12px;
    border-top: 12px solid transparent;
    border-right: 10px solid #ffffff;
    border-bottom: 12px solid transparent;
}

.downloadBox{
    padding: 55px 0;
}
.downloadBox .text p{
    font-size: 16px;
    color: #111111;
    line-height: 1.6;
}
.downloadBox .itemBox{
    padding-top: 70px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.downloadBox .item{
    width: 25%;
    padding: 0 10px;
    text-align: center;
    margin-bottom: 40px;
}
.downloadBox .item .imgBox{
    position: relative;
    margin-bottom: 15px;
}
.downloadBox .item .imgBox .img{
    line-height: 0;
}
.downloadBox .item .imgBox .text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s;
}
.downloadBox .item:hover .imgBox .text{
    opacity: 1;
    transition: all .3s;
}
.downloadBox .item .imgBox .text a{
    display: inline-block;
    width: 160px;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    font-size: 16px;
    background: #008cd6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.downloadBox .item .t p{
    font-size: 20px;
    color: #111111;
}

.productBox .text{
    padding-top: 55px;
}
.productBox .text p{
    font-size: 16px;
    color: #111111;
    line-height: 1.6;
}
.productBox .form{
    width: 620px;
    margin: auto;
    padding: 60px 0;
}
.productBox .form .info{
    width: 100%;
    overflow: hidden;
    border: 2px solid #dddddd;
    padding-right: 120px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.productBox .form .info input[type="text"]{
    width: 100%;
    height: 42px;
    border: 0;
    padding: 10px;
    font-size: 16px;
}
.productBox .form .info input[type="submit"]{
    width: 120px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0;
    background: #008cd6;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}
.productBox .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
    padding-bottom: 40px;
}
.productBox .item{
    width: 50%;
    float: left;
    padding: 0 30px;
    margin-bottom: 60px;
}
.productBox .item .conBox{
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
    transition: all .3s;
}
.productBox .item .conBox:hover{
    -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.3);
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.3);
    transition: all .3s;
}
.productBox .item .conBox .img{
    float: right;
    overflow: hidden;
}
.productBox .item .conBox .img img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.productBox .item .conBox:hover .img img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .3s;
}
.productBox .item .conBox .t{
    position: absolute;
    left: 40px;
    bottom: 40px;
}
.productBox .item .conBox .t h3{
    color: #111111;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
    padding-top: 10px;
    position: relative;
}
.productBox .item .conBox .t h3:before{
    position: absolute;
    content: '';
    width: 15px;
    height: 3px;
    background: #111111;
    top: 0;
    left: 0;
}
.productBox .item .conBox .t a{
    font-size: 16px;
    color: #008cd6;
    display: inline-block;
}
.productBox .item .conBox .t a:hover{
    text-decoration: underline;
}

.productDetailContentBox .title {
    margin-top: 50px;
}
.productDetailContentBox .title h2 {
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #0028be;
}
.productDetailContentBox{
    padding: 60px 0;
}
.productDetailContentBox .tabClick{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #eeeeee;
    display: flex;
    flex-wrap: wrap;
}
.productDetailContentBox .tabClick .item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.productDetailContentBox .tabClick.justtideTabClick .item{
    width: 16.6666%;
}
.productDetailContentBox .tabClick .item a{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    padding: 0 50px;
    height: 100%;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    position: relative;
}
.productDetailContentBox .tabClick.justtideTabClick .item a{
    display: block;
    width: 100%;
    padding: 0;
}
.productDetailContentBox .tabClick .item a:before{
    position: absolute;
    content: '';
    width: 40px;
    height: 4px;
    background: #0028be;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
}
.productDetailContentBox .tabClick .item a:after{
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    right: 0;
    top: 50%;
    margin-top: -7px;
    background: #333333;
}
.productDetailContentBox .tabClick .item:last-child a:after{
    display: none;
}
.productDetailContentBox .tabClick .item:hover a,
.productDetailContentBox .tabClick .item.on a{
    color: #0028be;
}
.productDetailContentBox .tabClick .item:hover a:before,
.productDetailContentBox .tabClick .item.on a:before{
    opacity: 1;
}
.productDetailContentBox .productDetailImgBox{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 0;
}
.productDetailContentBox .productDetailImgBox .img{
    width: 25%;
    padding: 5px;
}
.productDetailContentBox .productDetailImgBox .img img{
    border: 1px solid #dddddd;
}

.productDetailContentBox .imgConBox{
    overflow: hidden;
}
.productDetailContentBox .imgCon{
    width: 33.33%;
    padding: 0 15px;
    float: left;
    margin-bottom: 40px;
    text-align: center;
}
.productDetailContentBox .imgCon .img{
    line-height: 0;
}
.productDetailContentBox .imgCon .img img{
    width: 100%;
}
.productDetailContentBox .imgCon .t{
    padding-top: 15px;
}
.productDetailContentBox .contentBox table{
    border: 0;
    width: 100% !important;
}
.productDetailContentBox .contentBox table tr{
    background: #f0f0f0;
}
.productDetailContentBox .contentBox table tr:nth-of-type(2n){
    background: #ffffff;
}
.productDetailContentBox .contentBox table td{
    border-top: 0;
    border-bottom: 0;
    border-left: 5px solid #ffffff;
    border-right: 0;
    height: 50px;
    color: #333333;
    width: auto !important;
}
.productDetailContentBox .contentBox table tr td:nth-of-type(1){
    border-left: 0;
}
.productDetailContentBox .contentBox table td img{
    clear: both;
    display: block;
    margin: auto;
}
.pro_form h3,
.related_pro h2{
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #0028be;
    text-transform: uppercase;
    border-bottom: 2px solid #dddddd;
}

.pro_form form .input{
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}
.pro_form form .input label.tip{
    display: inline-block;
    float: left;
    padding-top: 5px;
    text-align: right;
    width: 160px;
    line-height: 20px;
    font-size: 14px;
    color: #545454;
}
.pro_form form .input label.tip em{
    color: red;
    margin-right: 5px;
}
.pro_form form .input input[type=text],
.pro_form form .input textarea{
    margin-left: 10px;
    width: 70%;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    text-indent: 10px;
}
.pro_form form .input textarea{
    resize: none;
    height: 90px;
}
.pro_form form .input .tips{
    color: red;
    display: block;
    margin-left: 170px;
}
.pro_form form .input input.code{
    width: 100px;
}
.pro_form form .input .verify{
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 300px;
    height: 30px;
}
.pro_form .input .btn{
    background: #337ab7;
    color: #fff;
    font-size: 14px;
    height: 32px;
    padding: 0 30px;
    border: 0;
    display: block;
    margin-left: 170px;
    border-radius: 4px;
    cursor: pointer;
}

.related_pro{
    margin-top: 50px;
}

.videoBox{
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
}
.videoBox .videoMenu{
    position: sticky;
    top: 145px;
    left: 0;
    width: 300px;
    float: left;
}
.videoBox .videoMenu li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
}
.videoBox .videoMenu li:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 0;
    height: 0;
    opacity: 0;
    border-top: 9px solid transparent;
    border-left: 10px solid #008cd6;
    border-bottom: 9px solid transparent;
    transition: all .3s;
}
.videoBox .videoMenu li.active:before{
    opacity: 1;
    transition: all .3s;
}
.videoBox .videoMenu li a{
    display: block;
    font-size: 16px;
    color: #999999;
    font-weight: 600;
}
.videoBox .videoMenu li:hover a,
.videoBox .videoMenu li.active a{
    color: #008cd6;
}
.videoBox .videoListConBox{
    margin-left: 300px;
}
.videoBox .videoListConBox .title h2{
    font-size: 30px;
    color: #111111;
    font-weight: bold;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f4f4f4;
}
.videoBox .videoListConBox .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding-bottom: 30px;
}
.videoBox .videoListConBox .item{
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 30px;
}
.videoBox .videoListConBox .item .video{
    position: relative;
    padding-top: 56%;
    margin-bottom: 10px;
}
.videoBox .videoListConBox .item .video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.videoBox .videoListConBox .item .t p{
    font-size: 16px;
    color: #111111;
    line-height: 1.6;
}

.aboutBox1{
    padding-top: 90px;
}
.aboutBox1 .conBox{
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.aboutBox1 .conBox .img{
    width: 50%;
    float: left;
    padding-left: 40px;
    padding-bottom: 40px;
    position: relative;
    line-height: 0;
}
.aboutBox1 .conBox .img:before{
    position: absolute;
    content: '';
    width: 360px;
    height: 545px;
    left: 0;
    bottom: 0;
    background: url("/public/static/images/home/en-us/aboutBj1.png");
}
.aboutBox1 .conBox .img img{
    position: relative;
    z-index: 2;
}
.aboutBox1 .conBox .text{
    width: 50%;
    float: left;
}
.aboutBox1 .conBox .text h2{
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.aboutBox1 .conBox .text span{
    display: block;
    color: #111111;
    font-size: 20px;
    font-weight: 600;
}
.aboutBox1 .conBox .text .t{
    padding: 50px 0 135px;
    margin-right: 50px;
    background: url("/public/static/images/home/en-us/aboutIco.png") no-repeat bottom right;
}
.aboutBox1 .conBox .text .t p{
    font-size: 16px;
    color: #111111;
    line-height: 1.6;
}

.aboutBox2{
    overflow: hidden;
    padding-top: 70px;
}
.aboutBox2 .textBox{
    width: 50%;
    float: left;
}
.aboutBox2 .textBox .text{
    width: 600px;
    float: right;
    padding-right: 60px;
}
.aboutBox2 .textBox .text h2{
    font-size: 30px;
    color: #001111;
    font-weight: 600;
    padding-right: 50px;
    padding-bottom: 35px;
    text-transform: uppercase;
}
.aboutBox2 .textBox .text p{
    font-size: 16px;
    color: #111111;
    line-height: 1.6;
}
.aboutBox2 .textBox .text a{
    display: inline-block;
    line-height: 31px;
    padding-left: 44px;
    font-size: 16px;
    color: #008cd6;
    font-weight: 600;
    margin-top: 30px;
    background: url("/public/static/images/home/en-us/aboutVideoIco.png") no-repeat left center;
}
.aboutBox2 .textBox .text a.video_click:after{
    display: none;
}
.aboutBox2 .img{
    width: 50%;
    float: left;
    line-height: 0;
    background: url("/public/static/images/home/en-us/aboutBj1.png");
}

.aboutBox3{
    padding-top: 90px;
}
.aboutBox3 .itemBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.aboutBox3 .item{
    width: 24%;
    background: #f0f0f0;
    padding: 50px 35px;
    margin-bottom: 20px;
    position: relative;
    top: 0;
    transition: all .3s;
}
.aboutBox3 .item:hover{
    top: -10px;
    transition: all .3s;
}
.aboutBox3 .item .ico{
    line-height: 0;
    text-align: center;
    padding-bottom: 30px;
}
.aboutBox3 .item .text p{
    font-size: 16px;
    color: #000011;
    line-height: 1.6;
}

.aboutBox4 .title h2{
    padding: 60px 0;
    text-align: center;
    font-size: 30px;
    color: #001111;
    font-weight: 600;
    text-transform: uppercase;
}
.aboutBox4 .imgBox{
    display: flex;
    margin: 0 -5px;
}
.aboutBox4 .img{
    line-height: 0;
    margin-bottom: 10px;
    padding: 0 5px;
}

.aboutBox5{
    background: #f0f0f0;
    padding: 80px 0;
}
.aboutBox5 .itemBox{
    display: flex;
    flex-wrap: wrap;
}
.aboutBox5 .item{
    width: 33.33%;
    position: relative;
    padding: 0 40px;
    margin-bottom: 20px;
    border-right: 1px solid #ffffff;
}
.aboutBox5 .item:before{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    background: #c3c3c3;
}
.aboutBox5 .item:nth-of-type(1){
    padding-left: 0;
}
.aboutBox5 .item:nth-of-type(3){
    padding-right: 0;
    border-right: 0;
}
.aboutBox5 .item:nth-of-type(3):before{
    display: none;
}
.aboutBox5 .item h3{
    font-size: 30px;
    color: #001111;
    font-weight: 600;
    padding-bottom: 15px;
}
.aboutBox5 .item .t{
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}
.aboutBox5 .item .t:before{
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    left: 0;
    top: 9px;
    background: #111111;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.aboutBox5 .item .t p{
    font-size: 16px;
    color: #001111;
    line-height: 1.5;
}

.aboutBox6{
    padding: 100px 0;
    overflow: hidden;
}
.aboutBox6 .textBox{
    width: 41%;
    float: left;
}
.aboutBox6 .textBox .conBox{
    width: 430px;
    float: right;
    padding-top: 40px;
}
.aboutBox6 .textBox h2{
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 100px;
    padding-bottom: 25px;
    margin-bottom: 65px;
    border-bottom: 3px solid #eaeaea;
}
.aboutBox6 .aboutProcessNumSlick{
    padding: 0 35px;
    margin-right: 50px;
}
.aboutBox6 .aboutProcessNumSlick:before{
    position: absolute;
    content: '';
    height: 3px;
    left: 35px;
    right: 35px;
    top: 18px;
    background: #e6e6e6;
}
.aboutBox6 .aboutProcessNumSlick .slick-prev,
.aboutBox6 .aboutProcessNumSlick .slick-next{
    width: 21px;
    height: 42px;
    margin-top: -21px;
    background: url("/public/static/images/home/en-us/reset/buttonstyle.png") no-repeat;
}
.aboutBox6 .aboutProcessNumSlick .slick-prev{
    left: 0;
    background-position: left center;
}
.aboutBox6 .aboutProcessNumSlick .slick-next{
    right: 0;
    background-position: right center;
}
.aboutBox6 .aboutProcessNumSlick .slick_first{
    max-width: 180px;
    min-width: 180px;
    text-align: center;
    padding: 0 5px;
    position: relative;
    z-index: 2;
}
.aboutBox6 .aboutProcessNumSlick .slick_first span{
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 20px;
    font-weight: 600;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e6e6e6;
    margin-bottom: 10px;
    transition: all .3s;
}
.aboutBox6 .aboutProcessNumSlick .slick_first.slick-current span{
    background: #008cd6;
    color: #ffffff;
    transition: all .3s;
}
.aboutBox6 .aboutProcessNumSlick .slick_first p{
    font-size: 16px;
    color: #008cd6;
    opacity: 0;
    transition: all .3s;
}
.aboutBox6 .aboutProcessNumSlick .slick_first.slick-current p{
    opacity: 1;
    transition: all .3s;
}
.aboutBox6 .aboutProcessSlickBox{
    width: 59%;
    float: left;
}
.aboutBox6 .aboutProcessSlick .slick_first{
    max-width: 600px;
    min-width: 600px;
    margin-right: 30px;
}
.aboutBox6 .aboutProcessSlick .slick_first .img{
    border: 10px solid #f0f0f0;
    margin-bottom: 10px;
    line-height: 0;
}
.aboutBox6 .aboutProcessSlick .slick_first p{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}
.aboutBox6 .aboutProcessSlick .slick_first.slick-current p{
    color: #008cd6;
}

.aboutBox7{
    padding: 55px 0;
    background: url("/public/static/images/home/en-us/aboutBj2.jpg") no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.aboutBox7 .text{
    text-align: center;
}
.aboutBox7 .text p{
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.5;
}
.aboutBox7 .text a{
    margin-top: 25px;
    display: inline-block;
    width: 130px;
    height: 44px;
    line-height: 40px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.aboutBox7 .text a:hover{
    background: #ffffff;
    color: #008cd6;
}

.aboutBox8{
    padding: 80px 0;
}
.aboutBox8 .title h2{
    text-align: center;
    padding-bottom: 45px;
    font-size: 30px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
}
.aboutBox8 .itemBox{
    position: relative;
}
.aboutBox8 .itemBox:before{
    position: absolute;
    content: '';
    width: 3px;
    top: 10px;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    background: #eaeaea;
}
.aboutBox8 .item{
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}
.aboutBox8 .item .year{
    width: 50%;
    float: left;
    text-align: right;
    padding-right: 30px;
    position: relative;
}
.aboutBox8 .item:nth-of-type(2n) .year{
    float: right;
    text-align: left;
    padding-right: 0;
    padding-left: 30px;
}
.aboutBox8 .item .year:before{
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    right: -6px;
    top: 50%;
    margin-top: -6px;
    background: #eaeaea;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.aboutBox8 .item:nth-of-type(2n) .year:before{
    right: 0;
    left: -7px;
}
.aboutBox8 .item:hover .year:before{
    background: #008cd6;
}
.aboutBox8 .item .year p{
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    line-height: 1.5;
}
.aboutBox8 .item .text{
    width: 50%;
    float: left;
    padding-left: 30px;
    text-align: left;
}
.aboutBox8 .item:nth-of-type(2n) .text{
    float: right;
    padding-left: 0;
    padding-right: 30px;
    text-align: right;
}
.aboutBox8 .item .text p{
    font-size: 20px;
    color: #111111;
    line-height: 1.5;
}

.aboutBox9{
    padding: 70px 0;
    background: #e7e7e7;
}
.aboutBox9 .title h2{
    text-align: center;
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    padding-bottom: 45px;
    text-transform: uppercase;
}
.aboutBox9 .imgBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.aboutBox9 .img{
    width: 14.285%;
    float: left;
    padding: 0 5px;
    line-height: 0;
}
.aboutBox9 .img img{
    width: 100%;
}

.aboutBox10{
    padding: 80px 0;
    overflow: hidden;
}
.aboutBox10 .text{
    width: 300px;
    padding-right: 50px;
    padding-top: 50px;
    float: left;
}
.aboutBox10 .text h2{
    font-size: 30px;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.aboutBox10 .text p{
    font-size: 16px;
    color: #001111;
    line-height: 1.5;
}
.aboutBox10 .aboutExhibitionSlick{
    margin-left: 300px;
    padding: 0 60px;
}
.aboutBox10 .aboutExhibitionSlick .slick-prev,
.aboutBox10 .aboutExhibitionSlick .slick-next{
    width: 21px;
    height: 42px;
    margin-top: -21px;
    background: url("/public/static/images/home/en-us/reset/buttonstyle.png") no-repeat;
}
.aboutBox10 .aboutExhibitionSlick .slick-prev{
    left: 0;
    background-position: left center;
}
.aboutBox10 .aboutExhibitionSlick .slick-next{
    right: 0;
    background-position: right center;
}
.aboutBox10 .aboutExhibitionSlick .slick_first{
    margin: 0 5px;
}
.aboutBox10 .aboutExhibitionSlick .slick_first img{
    clear: both;
    display: block;
    margin: auto;
}

.Fast_contact{
    top: 252px;
    margin-top: 0;
}

.contactBox202006131516{
    padding: 50px 0;
}
.contactBox202006131516 .contactForm{
    width: 65%;
    float: left;
}
.contactBox202006131516 .contactForm h2{
    margin-bottom: 30px;
    color: #000000;
    font-size: 34px;
    line-height: 1.2;
}
.contactBox202006131516 .contactForm form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contactBox202006131516 .contactForm .info{
    width: 48%;
    margin-bottom: 20px;
    position: relative;
}
.contactBox202006131516 .contactForm .info.w100{
    width: 100%;
}
.contactBox202006131516 .contactForm .label_control{
    position: absolute;
    top: 0;
    left: 10px;
    line-height: 42px;
    font-size: 16px;
    color: #151515;
}
.contactBox202006131516 .contactForm .tips{
    position: absolute;
    top: 0;
    right: 10px;
    line-height: 42px;
    color: #ff000f;
}
.contactBox202006131516 .contactForm input[type="text"]{
    width: 100%;
    height: 42px;
    padding: 0 10px;
    font-size: 16px;
    color: #151515;
    border: 1px solid #999999;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.contactBox202006131516 .contactForm textarea{
    width: 100%;
    height: 120px;
    font-size: 16px;
    color: #151515;
    padding: 5px 10px;
    resize: none;
    border: 1px solid #999999;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.contactBox202006131516 .contactForm input[type="submit"]{
    width: 180px;
    height: 42px;
    border: 2px solid #008fde;
    background: #008fde;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.contactBox202006131516 .contactForm input[type="submit"]:hover{
    background: #ffffff;
    color: #008fde;
}
.contactBox202006131516 .contactInfo{
    width: 35%;
    float: left;
    padding-left: 70px;
}
.contactBox202006131516 .contactInfo .itemBox{
    border-left: 1px solid #999999;
    padding-left: 35px;
}
.contactBox202006131516 .contactInfo .item{
    border-top: 1px solid #ebebeb;
    padding: 30px 0;
}
.contactBox202006131516 .contactInfo .item:nth-of-type(1){
    border-top: 0;
    padding-top: 0;
}
.contactBox202006131516 .contactInfo .item h3{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #151515;
    margin-bottom: 15px;
}
.contactBox202006131516 .contactInfo .item .contactShare{
    overflow: hidden;
}
.contactBox202006131516 .contactInfo .item .contactShare img{
    width: 30px;
    height: 30px;
}
.contactBox202006131516 .contactInfo .item .text{
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left 8px;
}
.contactBox202006131516 .contactInfo .item .contactTel{
    background-image: url("/public/static/images/home/en-us/contactTel.png");
}
.contactBox202006131516 .contactInfo .item .contactEmail{
    background-image: url("/public/static/images/home/en-us/contactEmail.png");
}
.contactBox202006131516 .contactInfo .item .contactAddress{
    background-image: url("/public/static/images/home/en-us/contactAddress.png");
}
.contactBox202006131516 .contactInfo .item .text a,
.contactBox202006131516 .contactInfo .item .text p{
    font-size: 16px;
    color: #151515;
    line-height: 30px;
}
.contactBox202006131516 .contactInfo .item .text a:hover{
    color: #008fde;
}

@media (max-width: 1620px){

}
@media (max-width: 1450px){
}
@media (max-width: 1220px){
    .header .logo_box a{
        width: 60px;
        height: 73px;
    }
    .header .logo_box .t{
        width: 185px;
    }
    .header .logo_box .t p{
        font-size: 12px;
    }
    .header .nav_list > li > a > span{
        font-size: 14px;
        padding-left: 5px;
    }
    .indexBox1{
        padding: 50px 0;
    }
    .indexBox1 .tip span{
        font-size: 14px;
        text-align: center;
        margin-left: 5px;
        margin-right: 5px;
    }
    .indexBox1 .itemBox{
        padding-top: 20px;
    }
    .indexBox1 .item{
        margin-bottom: 30px;
    }
    .indexBox1 .item .text h3{
        font-size: 18px;
        padding-bottom: 10px;
    }
    .indexBox2{
        padding-bottom: 20px;
    }
    .indexBox2 .title h2{
        padding-bottom: 30px;
    }
    .indexBox3{
        padding: 50px 0;
    }
    .indexBox3 .textBox .text h2{
        padding-bottom: 20px;
    }
    .indexBox4{
        padding: 0 0 50px;
    }
    .indexBox4 .indexProject h2,
    .indexBox4 .indexNews h2{
        margin-bottom: 20px;
    }
    .footer_box .fast_navigation{
        padding-top: 50px;
    }
    .footer_box .fast_navigation .footerLogo .t p{
        font-size: 14px;
    }
    .footer_box .fast_navigation .footerInfo li *{
        font-size: 14px;
    }
    .footer_box .fast_navigation .share{
        padding-top: 0;
    }
    .footer_box .fast_navigation .share a{
        margin-right: 10px;
    }
    .footer_box .fast_navigation .item:nth-of-type(4){
        width: 300px;
    }
    .footer_box .footerForm .info input[type="text"],
    .footer_box .footerForm .info input[type="submit"]{
        height: 40px;
        font-size: 14px;
    }
    .footer_box .footerForm .info textarea{
        font-size: 14px;
    }

    .pageBanner{
        padding-top: 400px;
    }
    .productBox .text{
        padding-top: 50px;
    }
    .productBox .form{
        padding: 50px 0 30px;
    }
    .productBox .item .conBox .t h3{
        font-size: 18px;
    }

    .aboutBox1{
        padding-top: 50px;
    }
    .aboutBox2{
        padding-top: 50px;
    }
    .aboutBox2 .textBox .text{
        width: 496px;
        padding-right: 30px;
    }
    .aboutBox2 .textBox .text h2{
        padding-right: 0;
        padding-bottom: 20px;
    }
    .aboutBox2 .textBox .text a{
        margin-top: 15px;
    }
    .aboutBox3{
        padding-top: 50px;
    }
    .aboutBox3 .item{
        padding: 30px 15px;
    }
    .aboutBox3 .item .ico{
        padding-bottom: 10px;
    }
    .aboutBox3 .item .ico img{
        width: 60px;
    }
    .aboutBox3 .item .text p{
        font-size: 14px;
    }
    .aboutBox4 .title h2{
        padding: 30px 0 20px;
    }
    .aboutBox5{
        padding: 50px 0;
    }
    .aboutBox5 .item{
        padding: 0 20px;
    }
    .aboutBox5 .item h3{
        font-size: 24px;
    }
    .aboutBox6{
        padding: 50px 0;
    }
    .aboutBox7 .text p{
        font-size: 24px;
    }
    .aboutBox8{
        padding: 50px 0;
    }
    .aboutBox8 .title h2{
        padding-bottom: 20px;
    }
    .aboutBox8 .item{
        padding-bottom: 20px;
    }
    .aboutBox8 .item .year p,
    .aboutBox8 .item .text p{
        font-size: 18px;
    }
    .aboutBox9{
        padding: 50px 0;
    }
    .aboutBox9 .title h2{
        padding-bottom: 20px;
    }
    .aboutBox10{
        padding: 50px 0;
    }
    .aboutBox10 .text{
        padding-top: 0;
    }
    .downloadBox{
        padding: 50px 0 30px;
    }
    .downloadBox .itemBox{
        padding-top: 50px;
    }
    .downloadBox .item .t p{
        font-size: 18px;
    }
}
@media (max-width: 992px){
    .h136{
        height: 0;
    }

    .Crumbs ul li a,
    .Crumbs ul li,
    .Crumbs ul li a span,
    .Crumbs ul i{
        font-size: 14px;
        line-height: 1.2;
    }
    .Crumbs span.youAreHere{
        display: none;
    }
    body{
        padding-top: 60px;
    }
    /*移动端隐藏模块*/
    .header {
        display: none;
    }

    /*移动端头部*/
    .m_header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 100002;
        -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
        -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    }
    .rightFlexConBox.on{
        z-index: 100004;
    }
    .rightFlexBj.on{
        z-index: 100002;
    }

    .m_header {
        height: 60px;
    }

    .logo_box {
        width: 100%;
        text-align: center;
        height: 60px;
        padding: 5px 0;
        line-height: 0;
        font-size: 0;
        zoom: 1;
    }

    .logo_box img {
        height: 100%;
    }

    .lang{
        position: absolute;
        top: 13px;
        right: 10px;
    }
    .langBtn{
        margin-top: 0;
    }

    .nav_toggle {
        color: #fff;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        transform-origin: 50% 50%;
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -13px;
        z-index: 999;
    }

    .nav_toggle {
        cursor: pointer;
        padding: 10px 35px 16px 0;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        cursor: pointer;
        height: 3px;
        width: 40px;
        background: #000000;
        position: absolute;
        display: block;
        content: '';
    }

    .nav_toggle span:before {
        top: -10px;
    }

    .nav_toggle span:after {
        bottom: -10px;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        transition: all 500ms ease-in-out;
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        -o-transition: all 500ms ease-in-out;
    }

    .nav_toggle.active span {
        background-color: transparent;
    }

    .nav_toggle.active span:before,
    .nav_toggle.active span:after {
        top: 0;
    }

    .nav_toggle.active span:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

    .nav_toggle.active span:after {
        transform: translateY(-10px) rotate(-45deg);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        top: 10px;
    }

    /*移动端导航*/
    .m_header .m_nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #ffffff;
        z-index: 2;
        overflow: auto;
        border-top: 1px solid #f0f0f0;
        margin-top: -1px;
    }

    .m_header .m_nav_list a {
        display: block;
        width: 100%;
        padding: 0 15px;
        line-height: 35px;
        text-align: left;
        font-size: 14px;
        color: #000000;
    }

    .m_header .m_nav_list > li {
        position: relative;
        border-bottom: 1px solid #f0f0f0;
        transition: transform .5s ease;
        transform: matrix(1, -1, 0, 1, 200, 100);
    }

    .m_header .m_nav_list > li > i {
        position: absolute;
        width: 20px;
        height: 20px;
        background: #000;
        top: 8px;
        right: 10px;
        cursor: pointer;
        z-index: 2;
        background: url("/public/static/images/home/en-us/reset/li_click.png") no-repeat top center;
    }

    .m_header .m_nav_list > li > a {
        opacity: 0;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu {
        height: 0;
        overflow: hidden;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu.on {
        height: auto;
    }

    .m_header .m_nav_list .dropdown_menu > li {
        border-top: 1px solid #f0f0f0;
        background: #f5f5f5;
    }

    .indexBox1 .item .text h3{
        font-size: 16px;
    }
    .indexBox3 .img{
        width: 100%;
        padding-top: 67%;
        margin-bottom: 30px;
        background-position: center center;
    }
    .indexBox3 .textBox{
        width: 767px;
        float: none;
        margin: auto;
    }
    .indexBox3 .textBox .text p{
        line-height: 1.6;
    }
    .indexBox3 .textBox .info{
        margin-top: 30px;
    }
    .indexBox3 .textBox .info .t span{
        font-size: 30px;
    }
    .indexBox4 .indexProject{
        width: 100%;
        padding-right: 0;
    }
    .indexBox4 .indexNews{
        width: 100%;
        padding-left: 0;
        padding-top: 40px;
    }
    .footer_box .fast_navigation .item:nth-of-type(2),
    .footer_box .fast_navigation .item:nth-of-type(3){
        display: none;
    }

    .pageBanner{
        padding-top: 320px;
    }
    .productBox .itemBox{
        margin: 0 -10px;
    }
    .productBox .item{
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .productBox .item .conBox .t{
        left: 20px;
        bottom: 20px;
    }
    .productBox .item .conBox .t h3{
        font-size: 16px;
    }

    .aboutBox1 .conBox .text{
        padding-left: 20px;
    }
    .aboutBox1 .conBox .text .t{
        margin-right: 0;
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .aboutBox2 .textBox{
        width: 100%;
    }
    .aboutBox2 .textBox .text{
        width: 767px;
        margin: auto;
        float: none;
        padding-right: 0;
    }
    .aboutBox2 .img{
        width: 100%;
        margin-top: 30px;
    }
    .aboutBox3 .item{
        width: 49%;
    }
    .aboutBox5 .item{
        width: 100%;
        padding: 0;
        border-right: 0;
    }
    .aboutBox5 .item:before{
        display: none;
    }
    .aboutBox5 .item .t{
        margin-bottom: 5px;
        padding-left: 15px;
    }
    .aboutBox6 .textBox{
        width: 100%;
    }
    .aboutBox6 .textBox .conBox{
        padding-top: 0;
        width: 100%;
    }
    .aboutBox6 .textBox h2{
        text-align: center;
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: 0;
        margin-bottom: 30px;
    }
    .aboutBox6 .aboutProcessNumSlick{
        margin-right: 0;
    }
    .aboutBox6 .aboutProcessNumSlick .slick-prev,
    .aboutBox6 .aboutProcessNumSlick .slick-next{
        margin-top: -42px;
    }
    .aboutBox6 .aboutProcessNumSlick .slick_first,
    .aboutBox6 .aboutProcessSlick .slick_first{
        max-width: none;
        min-width: inherit;
    }
    .aboutBox6 .aboutProcessSlickBox{
        width: 100%;
    }
    .aboutBox6 .aboutProcessSlick .slick_first{
        margin: 0 5px;
    }
    .aboutBox8 .item .year p,
    .aboutBox8 .item .text p{
        font-size: 16px;
    }
    .aboutBox9 .img{
        width: 33.33%;
        margin-bottom: 10px;
    }
    .aboutBox10 .text{
        width: 100%;
        float: left;
        padding-right: 0;
        padding-bottom: 30px;
    }
    .aboutBox10 .aboutExhibitionSlick{
        float: left;
        margin-left: 0;
        width: 100%;
        padding: 0 40px;
    }
    .downloadBox .item .t p{
        font-size: 16px;
    }

    .downloadBox .item{
        width: 33.33%;
    }

    .videoBox .videoMenu{
        display: none;
    }
    .videoBox .videoListConBox{
        margin-left: 0;
    }
    .videoBox .videoListConBox .title h2{
        padding-bottom: 15px;
    }
    .videoBox .videoListConBox .itemBox{
        margin: 0 -5px;
    }
    .videoBox .videoListConBox .item{
        padding: 0 5px;
    }



    .contactBox202006131516 .contactForm{
        width: 100%;
    }
    .contactBox202006131516 .contactInfo{
        width: 100%;
        padding-left: 0;
    }
    .contactBox202006131516 .contactInfo .itemBox{
        border-left: 0;
        padding-left: 0;
        padding-top: 35px;
        margin-top: 35px;
        border-top: 1px solid #999999;
    }
    .contactBox202006131516 .contactInfo .item{
        width: 50%;
        float: left;
    }
    .contactBox202006131516 .contactInfo .item:nth-of-type(1){
        padding-top: 30px;
    }
    .contactBox202006131516 .contactInfo .item:nth-of-type(2){
        border-top-width: 0;
    }

    .productDetailContentBox .tabClick{
        display: none;
    }
    .productDetailContentBox .title h2{
        font-size: 24px;
    }
}
@media (max-width: 767px){

    .Fast_contact{
        top: auto;
    }
    #back_top{
        width: 0;
        height: 0;
        overflow: hidden;
    }
    .banner_slick .slick-prev{
        left: 15px;
    }
    .banner_slick .slick-next{
        right: 15px;
    }
    .footer_box .fast_navigation .itemBox{
        flex-wrap: wrap;
    }
    .footer_box .fast_navigation .item:nth-of-type(1),
    .footer_box .fast_navigation .item:nth-of-type(4){
        width: 50%;
    }
    .rightFlexConBox{
        display: none;
    }
    .indexBox1 .title h2{
        padding-bottom: 20px;
    }
    .indexBox1 .form{
        width: 100%;
    }
    .indexBox1 .item{
        width: 50%;
    }
    .indexBox1 .tip{
        flex-wrap: wrap;
    }
    .indexBox1 .tip span{
        width: 50%;
        margin-left: 0;
        margin-right: 0;
    }
    .indexBox2 .item{
        width: 50%;
    }
    .indexBox3 .textBox{
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        float: left;
    }

    .pageBanner{
        padding-top: 240px;
    }

    .productBox .form{
        width: 100%;
    }

    .aboutBox1 .conBox .img{
        width: 100%;
    }
    .aboutBox1 .conBox .text{
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .aboutBox2 .textBox{
        padding-left: 10px;
        padding-right: 10px;
    }
    .aboutBox2 .textBox .text{
        width: 100%;
    }
    .aboutBox4 .imgBox{
        flex-wrap: wrap;
        padding: 0 10px;
        margin: 0;
    }
    .aboutBox4 .img{
        width: 100%;
        padding: 0;
    }
    .aboutBox7 .text p{
        font-size: 20px;
    }

    .videoBox .videoListConBox .item{
        width: 50%;
    }
}
@media (max-width: 640px){
    .footer_box .fast_navigation .item:nth-of-type(1),
    .footer_box .fast_navigation .item:nth-of-type(4){
        width: 100%;
    }
    .footer_box .fast_navigation .item:nth-of-type(4){
        padding-top: 30px;
    }
    .indexBox2 .item{
        width: 100%;
        margin-bottom: 20px;
    }
    .indexBox4 .list .img{
        width: 160px;
    }
    .indexBox4 .list .text{
        margin-left: 160px;
        padding-left: 10px;
    }
    .indexBox4 .list .text h3 a{
        margin: 5px 0;
    }

    .pageBanner{
        padding-top: 200px;
    }
    .pageBanner .text{
        bottom: 20px;
    }

    .productBox .item{
        width: 100%;
    }
    .aboutBox1 .conBox .img{
        padding-left: 0;
        padding-bottom: 0;
    }
    .aboutBox1 .conBox .img:before{
        display: none;
    }
    .downloadBox .itemBox{
        margin: 0 -5px;
    }
    .downloadBox .item{
        width: 50%;
        padding: 0 5px;
        margin-bottom: 20px;
    }

    .contactBox202006131516 .contactInfo .item{
        width: 100%;
    }
    .contactBox202006131516 .contactInfo .item:nth-of-type(2){
        border-top-width: 1px;
    }

    .pro_form form .input label.tip{
        text-align: left;
        width: 100%;
    }
    .pro_form form .input input[type=text], .pro_form form .input textarea{
        width: 100%;
        margin-left: 0;
    }
    .pro_form .input .btn{
        margin-left: 0;
    }
}
@media (max-width: 540px){
    .pageBanner{
        padding-top: 180px;
    }
    .aboutBox3 .item{
        width: 100%;
    }
    .aboutBox8 .itemBox:before{
        display: none;
    }
    .aboutBox8 .item .year{
        padding: 0 !important;
        width: 100% !important;
        float: left !important;
        text-align: left !important;
    }
    .aboutBox8 .item .year:before{
        display: none;
    }
    .aboutBox8 .item .text{
        width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }
    .aboutBox9 .img{
        width: 50%;
    }
    .downloadBox .item{
        width: 100%;
    }
    .videoBox .videoListConBox .item{
        width: 100%;
    }
}
@media (max-width: 480px){
}