@charset "utf-8";
.no_padding{
    padding: 0;
}
.h120{
    height: 120px;
    margin-top: 0;
    background: #000000;
    transition: all .3s;
}
.h120.is_stuck{
    margin-top: -36px;
    transition: all .3s;
}
.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: all .3s;
}
.header.is_stuck{
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    transition: all .3s;
}
.header .headerTop{
    height: 36px;
    display: flex;
    align-items: center;
    background: #000000;
    transition: all .3s;
}
.header.is_stuck .headerTop{
    margin-top: -36px;
    overflow: hidden;
    transition: all .3s;
}
.header .headerTop .headerShare{
    display: flex;
    align-items: center;
}
.header .headerTop .headerShare a{
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #262626;
}
.header .headerTop .headerShare a:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}
.header .headerTop .headerShare em{
    color: #9e9e9e;
    font-size: 20px;
    transition: all .3s;
}
.header .headerTop .headerShare a:hover em{
    color: #ffffff;
    transition: all .3s;
}
.header .headerTop .headerEmail{
    display: flex;
    align-items: center;
    color: #9e9e9e;
    font-size: 14px;
    line-height: 23px;
}
.header .headerTop .headerEmail em{
    margin-right: 5px;
}
.header .headerTop .headerEmail a:hover{
    color: #ffffff;
}


.header .headerBot{
    background: rgba(0,0,0,.8);
    transition: all .3s;
}
.header.is_stuck .headerBot{
    background: #000000;
    transition: all .3s;
}
.header .conBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo_box{
    overflow: hidden;
    text-align: center;
}

.header .headerBox{
    padding-right: 100px;
    position: relative;
}
.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;
    margin-left: 35px;
    transition: all .3s;
}
.header .nav_list > li:first-child{
    margin-left: 0;
}
.header .nav_list > li:last-child{
    position: relative;
    min-width: 135px;
}
.header .nav_list > li:last-child:before{
    position: absolute;
    content: '';
    width: 135px;
    height: 34px;
    top: 50%;
    left: 0;
    margin-top: -18px;
    background: #2c67ba;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.header .nav_list > li:last-child.active:before,
.header .nav_list > li:last-child.on:before{
    opacity: .85;
}
.header .nav_list > li > a {
    display: block;
}
.header .nav_list > li > a > span {
    display: inline-block;
    line-height: 83px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    transition: all .3s;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
}
.header .nav_list > li.on > a > span,
.header .nav_list > li.active > a > span{
    color: #2c67ba;
    border-bottom: 1px solid #2c67ba;
    transition: all .3s;
}
.header .nav_list > li:last-child.on > a > span,
.header .nav_list > li:last-child.active > a > span{
    color: #ffffff;
}
.nav_list > li > a > i {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 83px;
    line-height: 83px;
    color: #ffffff;
    -moz-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -ms-transition: all linear .3s;
    transition: all .3s;
}
.nav_list > li.on > a > i{
    color: #2c67ba;
}
.nav_list > li:hover i {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.nav_tile > li {
    position: relative;
}
.nav_tile > li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    display: none;
    z-index: 1;
    padding: 10px 0;
    background: #ffffff;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
}
.nav_tile .dropdown_menu li {
    width: 100%;
}
.nav_tile .dropdown_menu li a {
    display: block;
    line-height: 34px;
    font-size: 16px;
    color: #000000;
    text-align: left;
    padding: 0 20px;
    white-space: nowrap;
}
.nav_tile .dropdown_menu li a:hover{
    background: #2c67ba;
    color: #ffffff;
}

.langBox{
    position: absolute;
    top: 28px;
    right: 45px;
}
.langBox em{
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}
.langBox ul{
    position: absolute;
    right: -45px;
    top: 45px;
    display: none;
    padding: 5px 0;
    background: #2c67ba;
    width: 210px;
}
.langBox ul li{
    width: 50%;
    float: left;
}
.langBox ul li a{
    line-height: 34px;
    padding: 0 10px;
    color: #ffffff;
    display: block;
    white-space: nowrap;
}
.langBox ul li a:hover{
    background: #ffffff;
    color: #2c67ba;
}

.header_search_box {
    position: absolute;
    right: 0;
    top: 20px;
    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: #ffffff;
    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: 18px;
    color: #ffffff;
}
.header_search_box a.active:before{
    content: '\e6ae';
    color: #000000;
    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: #000000;
}
.search_form input[type="text"] {
    width: 100%;
    height: 40px;
    background: 0 0;
    border: 0;
    text-indent: 10px;
    font-size: 16px;
    color: #000000;
}
.search_form input[type=text]::-webkit-input-placeholder {
    color: #000000;
}
.search_form input.btn_search {
    width: 32px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    font-size: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
}

.productMenuBox{
    overflow: hidden;
    padding: 45px 0;
    max-width: 1200px;
    margin: auto;
}
.productMenuBox .headerProductMenu{
    width: 30%;
    float: left;
    height: 480px;
    overflow: hidden;
    overflow-y: auto;
    margin-right: 9%;
}
.productMenuBox .headerProductMenu::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}
            
.productMenuBox .headerProductMenu::-webkit-scrollbar-button {
    background-color: none;
    border-radius: 4px;
}
            
.productMenuBox .headerProductMenu::-webkit-scrollbar-track-piece {
    background: #fff;
    border-radius: 4px;
}
            
.productMenuBox .headerProductMenu::-webkit-scrollbar-thumb {
    background: #2c67ba;
    border-radius: 4px;
}
.productMenuBox .headerProductMenu li{
    width: 100%;
    float: left;
    padding-right: 10px;
}
.productMenuBox .headerProductMenu li a{
    font-size: 16px;
    color: #ffffff;
    line-height: 32px;
}
.productMenuBox .headerProductMenu li a.on,
.productMenuBox .headerProductMenu li a:hover{
    color: #2c67ba;
}
.productMenuBox .headerProductSwitchBox{
    width: 60%;
    float: left;
}
.productMenuBox .headerProductSwitchBox .box{
    display: none;
}
.productMenuBox .headerProductSwitchBox .box.on{
    display: block;
}
.productMenuBox .headerProductSwitchBox .headerProductBtn{
    display: flex;
    flex-wrap: wrap;
}
.productMenuBox .headerProductSwitchBox .headerProductBtn .btn{
/*     width: 25%; */
    padding-right: 30px;
}
.productMenuBox .headerProductSwitchBox .headerProductBtn .btn a{
    font-size: 14px;
    color: #ffffff;
    line-height: 2.5;
    display: block;
    border-bottom: 1px solid transparent;
}
.productMenuBox .headerProductSwitchBox .headerProductBtn .btn a.on,
.productMenuBox .headerProductSwitchBox .headerProductBtn .btn a:hover{
    color: #2c67ba;
    border-bottom-color: #2c67ba;
}
.productMenuBox .headerProductSwitchBox .headerProductSwitch .switch{
    display: none;
}
.productMenuBox .headerProductSwitchBox .headerProductSwitch .switch.on{
    display: block;
    padding: 15px 0;
}

.headerMenuBox{
    padding: 30px 0;
}
.headerMenuBox ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.headerMenuBox li{
    float: left;
    margin: 0 15px;
}
.headerMenuBox li a{
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 2.5;
    border-bottom: 1px solid transparent;
}
.headerMenuBox li a:hover,
.headerMenuBox li a.on{
    color: #2c67ba;
    border-bottom-color: #2c67ba;
}

.m_header {
    display: none;
}

.footer_box{
    overflow: hidden;
    position: relative;
}

.footer_box .fast_navigation{
    overflow: hidden;
    padding: 60px 0 20px;
    background: #1b1b1b;
}
.footer_box .fast_navigation .itemBox{
    display: flex;
    justify-content: space-between;
}
.footer_box .fast_navigation .items:nth-of-type(1){
    width: 260px;
}
.footer_box .fast_navigation .items:nth-of-type(2){
    width: 760px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_box .fast_navigation .items:nth-of-type(3){
    width: 380px;
}

.footer_box .fast_navigation .items .box{
    display: flex;
    justify-content: space-between;
    padding-right: 60px;
}

.footer_box .fast_navigation h3{
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.footer_box .fast_navigation ul{
    overflow: hidden;
}
.footer_box .fast_navigation li{
    font-size: 14px;
    color: #898989;
    line-height: 2;
    margin-bottom: 2px;
}
.footer_box .fast_navigation .footerInfo li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}
.footer_box .fast_navigation li em{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #e0e0e0;
}
.footer_box .fast_navigation li a:hover {
    color: #2c67ba;
    text-decoration: underline;
}

.footer_box .fast_navigation .footerForm .info{
    margin-bottom: 10px;
    line-height: 0;
    position: relative;
}
.footer_box .fast_navigation .footerForm .tips{
    display: block;
    color: #ff0000;
    font-size: 12px;
    line-height: 14px;
}
.footer_box .fast_navigation .footerForm input[type="text"],
.footer_box .fast_navigation .footerForm textarea{
    width: 100%;
    height: 42px;
    border: 1px solid #2c2c2c;
    background: transparent;
    padding: 0 10px;
    font-weight: 300;
    font-size: 16px;
    color: #898989;
}
.footer_box .fast_navigation .footerForm input[type="text"]::placeholder,
.footer_box .fast_navigation .footerForm textarea::placeholder{
    color: #8f8f8f;
}
.footer_box .fast_navigation .footerForm textarea{
    resize: none;
    height: 110px;
    padding: 6px;
}
.footer_box .fast_navigation .footerForm input[type="submit"]{
    width: 165px;
    height: 45px;
    border: 0;
    background: #2c67ba;
    color: #ffffff;
    margin-top: 5px;
    cursor: pointer;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s;
}
.footer_box .fast_navigation .footerForm input[type="submit"]:hover{
    opacity: .85;
    transition: all .3s;
}

.footer_box .footerShare{
    background: #1b1b1b;
    padding: 15px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_box .footerShare span{
    color: #ffffff;
    font-size: 18px;
}
.footer_box .footerShare a{
    display: inline-block;
    margin-left: 15px;
}
.footer_box .footerShare em{
    color: #ffffff;
    font-size: 20px;
    transition: all .3s;
}
.footer_box .footerShare a:hover em{
    color: #2c67ba;
    transition: all .3s;
}

.footer_box .footer_copyright{
    padding: 15px 0;
    background: #1b1b1b;
    border-top: 1px solid #2f2f2f;
    text-align: center;
}
.footer_box .footer_copyright .text *{
    display: inline-block;
    font-size: 16px;
    color: #898989;
    letter-spacing: 0;
    line-height: 1.5em;
    font-weight: 300;
}
.footer_box .footer_copyright .text a.sitemap{
    margin: 0 5px;
}
.footer_box .footer_copyright .text img{
    opacity: .4;
}
.footer_box .footer_copyright .text a:hover{
    color: #2c67ba;
    text-decoration: underline;
}

/*banner*/
.banner .slick_first img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all 8s;
	width: 100%;
	object-fit: cover;
	vertical-align: bottom;
}
.banner .slick_first.on img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    transition: all 8s;
}
.banner_slick .slick-prev,
.banner_slick .slick-next {
    width: 65px;
    height: 80px;
    margin-top: -40px;
    top: auto;
    bottom: 100px;
    background-image: url("/public/static/images/home/en-us/arrow.png");
    background-color: rgba(255,255,255,.2);
    background-repeat: no-repeat;
    z-index: 10;
}
.banner_slick .slick-prev{
    left: auto;
    right: 110px;
    background-position: left center;
}
.banner_slick .slick-next{
    right: 45px;
    background-position: right center;
}
.banner_slick .slick-prev:hover,
.banner_slick .slick-next:hover{
    background-color: rgba(41,106,204,.8);
}

.banner_slick .conBox{
    position: relative;
}
.banner_slick .conBox .text{
    position: absolute;
    width: 800px;
    left: 50%;
    top: 40%;
    margin-left: -400px;
    z-index: 2;
    text-align: center;
}
.banner_slick .conBox .text h2{
    color: #ffffff;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.banner_slick .conBox .text p{
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
}
.banner_slick .conBox .tips{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}
.banner_slick .conBox .tips span{
    color: #ffffff;
    font-size: 18px;
    position: relative;
    padding-bottom: 30px;
    display: block;
}
.banner_slick .conBox .tips span:before{
    position: absolute;
    content: "\e644";
    color: #ffffff;
    font-family: "iconfont", sans-serif;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.indexBox1{
    padding-bottom: 80px;
}
.indexBox1 .title{
    text-align: center;
    padding: 70px 0 35px;
}
.indexBox1 .title h2{
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.indexBox1 .title p{
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}
.indexBox1 .indexProductBox{
    padding-bottom: 30px;
}
.indexBox1 .indexProductBox .slick-dots{
    bottom: 0;
}
.indexBox1 .indexProductBox .slick-dots li.slick-active{
    background: #2c67ba;
}
.indexBox1 .indexProductBox .itemBox{
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}
.indexBox1 .indexProductBox .item{
    width: 50%;
    float: left;
    padding: 0 5px;
    margin-bottom: 10px;
}
.indexBox1 .indexProductBox .conBox{
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.indexBox1 .indexProductBox .img{
    line-height: 0;
    position: relative;
}
.indexBox1 .indexProductBox .img img{
    clear: both;
    display: block;
    margin: auto;
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.indexBox1 .indexProductBox .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;
}
.indexBox1 .indexProductBox .img span{
    position: absolute;
    bottom: 30px;
    left: 10px;
    right: 10px;
    line-height: 1;
    text-align: center;
    display: block;
    font-size: 18px;
    padding: 10px 0;
    color: #212121;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all .3s;
}
.indexBox1 .indexProductBox .conBox:hover .img span{
    opacity: 0;
    transition: all .3s;
}
.indexBox1 .indexProductBox .text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
}
.indexBox1 .indexProductBox .conBox:hover .text{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.indexBox1 .indexProductBox .text h3{
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 10px;
}
.indexBox1 .indexProductBox .text p{
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}
.indexBox1 .indexProductBox .text a{
    display: inline-block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    color: #ffffff;
    font-size: 16px;
    background: #2c67ba;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox1 .indexProductBox .text a:hover{
    background: #ffffff;
    color: #2c67ba;
}
.indexBox1 .indexProductSlick .slick-prev{
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}
.indexBox1 .indexProductSlick .slick-next{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    background: none;
}
.indexBox1 .indexProductSlick .itemBox{
    margin: 0 -5px;
}
.indexBox1 .indexProductSlick .item{
    width: 25%;
    padding: 0 5px;
    float: left;
}
.indexBox1 .indexProductSlick .conBox{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.indexBox1 .indexProductSlick .img img{
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.indexBox1 .indexProductSlick: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 .indexProductSlick .img span{
    display: none;
}
.indexBox1 .indexProductSlick .text{
    display: none;
}

.indexBox2{
    background: #191919;
}

.indexBox2 ,
.indexBox4,
.productListBox,
.Crumbs,
.indexBox5{
	max-width: 1920px;
	margin: 0 auto;
}
.indexBox2 .title{
    text-align: center;
    padding: 60px 0 40px;
}
.indexBox2 .title h2{
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 48px;
}
.indexBox2 .title p{
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}
.indexBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 2px;
}
.indexBox2 .item{
    width: 33.33%;
    padding: 0 2px;
    margin-top: 4px;
}
.indexBox2 .item .conBox{
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox2 .item .conBox .img{
    line-height: 0;
    text-align: center;
}
.indexBox2 .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;
}
.indexBox2 .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;
}
.indexBox2 .item .conBox .text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 80px;
    background: rgba(0,0,0,0.7);
    transition: all .3s;
}
.indexBox2 .item .conBox:hover .text{
    margin-top: 0;
    transition: all .3s;
}
.indexBox2 .item .conBox .text h3{
    color: #f0f0f0;
    font-size: 30px;
    line-height: 1.4;
}
.indexBox2 .item .conBox .text a{
    width: 230px;
    height: 50px;
    line-height: 48px;
    margin-top: 20px;
    color: #ffffff;
    font-size: 18px;
    border: 1px solid #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox2 .item .conBox .text a:hover{
    background: #ffffff;
    color: #2c67ba;
}

.indexBox3{
    padding: 80px 0;
}
.indexBox3 .title h2{
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #1b1b1b;
    text-transform: uppercase;
}
.indexCustomerSlick{
    padding: 45px 0;
}
.indexCustomerSlick .slick-prev,
.indexCustomerSlick .slick-next{
    width: 21px;
    height: 42px;
    margin-top: -21px;
    background: url("/public/static/images/home/en-us/reset/buttonstyle.png") no-repeat;
}
.indexCustomerSlick .slick-prev{
    background-position: left center;
}
.indexCustomerSlick .slick-next{
    background-position: right center;
}
.indexCustomerSlick .slick-dots{
    bottom: 0;
}
.indexCustomerSlick .slick-dots li{
    border: 1px solid #dddddd;
    background: none;
}
.indexCustomerSlick .slick-dots li.slick-active{
    border-color: #2c67ba;
    background: #2c67ba;
}
.indexCustomerSlick .conBox{
    max-width: 920px;
    margin: auto;
    text-align: center;
}
.indexCustomerSlick .ico{
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.indexCustomerSlick .tit{
    padding-bottom: 20px;
    margin-bottom: 15px;
    position: relative;
}
.indexCustomerSlick .tit:before{
    position: absolute;
    content: '';
    width: 435px;
    height: 1px;
    border: 1px dashed #dddddd;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.indexCustomerSlick .tit h3{
    font-size: 24px;
    font-weight: bold;
    color: #1b1b1b;
    padding-bottom: 5px;
}
.indexCustomerSlick .tit p,
.indexCustomerSlick .text p{
    font-size: 18px;
    color: #1b1b1b;
    line-height: 1.6;
}

.indexBox4{
    overflow: hidden;
}
.indexBox4 .indexVideo{
    width: 52%;
    float: left;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.indexBox4 .indexVideo .video_click{
    height: 805px;
}
.indexBox4 .textBox{
    width: 48%;
    float: left;
    height: 805px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: flex;
    align-items: center;
}
.indexBox4 .text{
    width: 665px;
    float: left;
    padding-left: 75px;
}
.indexBox4 .text p{
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
}
.indexBox4 .text .a{
    overflow: hidden;
    margin-top: 80px;
}
.indexBox4 .text .a a{
    display: flex;
    align-self: center;
    justify-content: center;
    width: 250px;
    height: 50px;
    line-height: 50px;
    float: left;
    font-size: 16px;
    color: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #2c67ba;
}
.indexBox4 .text .a a:nth-of-type(1){
    margin-right: 30px;
}
.indexBox4 .text .a a em{
    font-size: 20px;
    margin-right: 15px;
}
.indexBox4 .text .a a:hover{
    color: #2c67ba;
    background: #ffffff;
}

.indexBox5{
    background: #2c67ba;
    padding: 85px 0;
}
.indexBox5 .itemBox{
    display: flex;
    justify-content: space-between;
    margin: 0 -5px;
}
.indexBox5 .itemBox .item{
    padding: 0 5px;
}
.indexBox5 .itemBox h3{
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
}
.indexBox5 .itemBox h3 em{
    font-size: 34px;
    margin-right: 10px;
}
.indexBox5 .itemBox p{
    font-size: 18px;
    color: #ffffff;
}

.indexBox6{
    padding-bottom: 100px;
    border-bottom: 1px solid #e3e3e3;
}
.indexBox6 .title{
    text-align: center;
    padding: 70px 0 50px;
}
.indexBox6 .title h2{
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.indexBox6 .title p{
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}
.indexBox6 .conBox{
    overflow: hidden;
}
.indexBox6 .leftBox{
    width: 50%;
    float: left;
    padding-right: 10px;
}
.indexBox6 .leftBox .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.indexBox6 .leftBox .img img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.indexBox6 .leftBox .img:hover 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;
}
.indexBox6 .leftBox .text{
    background: #f6f6f6;
    padding: 15px 35px;
    overflow: hidden;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.indexBox6 .leftBox .text h3 a{
    display: block;
    color: #212121;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px;
}
.indexBox6 .leftBox .text h3 a:hover{
    color: #2c67ba;
}
.indexBox6 .leftBox .text span{
    font-size: 18px;
    color: #383838;
    display: block;
    padding: 5px 0;
}
.indexBox6 .leftBox .text p{
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.indexBox6 .itemBox{
    width: 50%;
    float: left;
    padding-left: 10px;
}
.indexBox6 .itemBox .item{
    overflow: hidden;
    padding: 25px 0;
    align-items: center;
    border-bottom: 1px dashed #e5e5e5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s;
    grid-template-columns: 30% 70%;
    display: grid;
}
.indexBox6 .itemBox .item:hover{
    background: #f6f6f6;
    transition: all .3s;
    border-bottom-color: #f6f6f6;
}
.indexBox6 .itemBox .item span{
    width: 140px;
    text-align: center;
    font-size: 16px;
    color: #383838;
}
.indexBox6 .itemBox .item h3 a{
    display: block;
    color: #212121;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.indexBox6 .itemBox .item h3 {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.indexBox6 .itemBox .item:hover span,
.indexBox6 .itemBox .item:hover h3 a{
    color: #2c67ba;
}
.indexBox6 .itemBox .a{
    display: block;
    margin-top: 60px;
}
.indexBox6 .itemBox .a a{
    display: inline-block;
    text-align: center;
    width: 230px;
    height: 50px;
    line-height: 48px;
    color: #4a4a4a;
    font-size: 18px;
    border: 1px solid #dcdcdc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox6 .itemBox .a a:hover{
    background: #2c67ba;
    color: #ffffff;
    border-color: #2c67ba;
}

.indexBox7{
    padding: 70px 0;
}
.indexBox7 .title{
    text-align: center;
}
.indexBox7 .title h2{
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    padding-bottom: 10px;
}
.indexBox7 .title p{
    font-size: 18px;
    color: #000000;
}
.indexBox7 .indexNews{
    padding: 60px 0;
    margin: 0 -25px;
}
.indexBox7 .indexNews .slick-dots{
    bottom: 0;
}
.indexBox7 .indexNews .slick-dots li{
    background: #ffffff;
    border: 1px solid #dddddd;
}
.indexBox7 .indexNews .slick-dots li.slick-active{
    background: #2c67ba;
    border: 1px solid #2c67ba;
}
.indexBox7 .indexNews .slick_first{
    padding: 0 25px;
    border-right: 1px solid #ececec;
}
.indexBox7 .indexNews .slick_first:nth-of-type(3n){
    border-right-color: transparent;
}
.indexBox7 .indexNews .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox7 .indexNews .img img{
    width: 100%;
}
.indexBox7 .indexNews .text span{
    display: block;
    padding: 20px 0 15px;
    font-size: 16px;
    color: #383838;
}
.indexBox7 .indexNews .text h3 a{
    display: block;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.indexBox7 .indexNews .text p{
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.productBanner{
    position: relative;
}
.productBanner .img{
    line-height: 0;
    text-align: center;
}
.productBanner h1{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 1;
    margin-top: -30px;
    text-align: center;
}
.productBanner .tips{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.productBanner .tips ul{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.productBanner .tips ul li{
    width: 33.33%;
    float: left;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    line-height: 34px;
    transition: all .3s;
}
.productBanner .tips ul li:hover{
    font-size: 30px;
    font-weight: bold;
    transition: all .3s;
}
.productListBox{
    overflow: hidden;
}
.productListBox .listBox{
    padding: 100px 0;
    border-bottom: 1px solid #e5e5e5;
}
.productListBox .listBox:nth-of-type(2n){
    background: #f5f5f5;
}
.productListBox .listBox .container_1400{
    display: flex;
    align-items: center;
}
.productListBox .listBox .img{
    width: 50%;
    text-align: center;
    line-height: 0;
}
.productListBox .listBox .text{
    width: 50%;
    float: left;
    padding-left: 65px;
}
.productListBox .listBox .text h3{
    color: #0a0a0a;
    font-size: 36px;
    padding-bottom: 20px;
}
.productListBox .listBox .text p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}
.productListBox .listBox .text a{
    display: inline-block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    margin-top: 30px;
    color: #ffffff;
    font-size: 16px;
    background: #2c67ba;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.productListBox .listBox .text a:hover{
    opacity: .85;
}
.productListBox .page_box{
    padding: 50px 0 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageBanner{
    position: relative;
}
.pageBanner .Crumbs{
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border-bottom: 0;
    padding: 25px 0;
    z-index: 3;
}
.pageBanner .Crumbs *{
    color: #ffffff !important;
}
.pageBanner .Crumbs ul li span:hover{
    text-decoration: underline !important;
}
.pageBanner .img{
    line-height: 0;
    text-align: center;
}
.pageBanner h1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 48px;
    text-transform: uppercase;
}

.productCategoryDetailBox1{
    padding: 150px 0 40px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.productCategoryDetailBox1 h1{
    position: relative;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    padding-bottom: 30px;
    text-transform: uppercase;
}
.productCategoryDetailBox1 .img{
    line-height: 0;
    text-align: center;
}

.productCategoryDetailBox2{
    background: #2c67ba;
    padding: 60px 0;
    margin-bottom: 145px;
}
.productCategoryDetailBox2 .text{
    display: flex;
    align-items: center;
    justify-content: center;
}
.productCategoryDetailBox2 p{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-right: 30px;
}
.productCategoryDetailBox2 a{
    display: flex;
    float: left;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 48px;
    height: 50px;
    width: 230px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-left: 10px;
}
.productCategoryDetailBox2 a em{
    margin-right: 10px;
    font-size: 20px;
}
.productCategoryDetailBox2 a:hover{
    background: #ffffff;
    color: #2c67ba;
}

.productCategoryDetailBox3{
    border-top: 1px solid #e5e5e5;
}
.productCategoryDetailBox3 .item{
    border-bottom: 1px solid #e5e5e5;
}
.productCategoryDetailBox3 .item:nth-of-type(2n){
    background: #f5f5f5;
}
.productCategoryDetailBox3 .item .conBox{
    padding: 50px 0;
    display: flex;
    align-items: center;
}
.productCategoryDetailBox3 .item .img{
    line-height: 0;
    width: 50%;
    float: left;
    text-align: center;
}
.productCategoryDetailBox3 .item .text{
    width: 50%;
    float: left;
    padding-left: 75px;
}
.productCategoryDetailBox3 .item .text h3{
    font-size: 36px;
    color: #0a0a0a;
    padding-bottom: 15px;
}
.productCategoryDetailBox3 .item .text .t span{
    font-size: 30px;
    color: #0a0a0a;
    display: block;
    padding-bottom: 10px;
}
.productCategoryDetailBox3 .item .text .t li{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}
.productCategoryDetailBox3 .item .text a{
    display: inline-block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    margin-top: 30px;
    color: #ffffff;
    font-size: 16px;
    background: #2c67ba;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.productCategoryDetailBox3 .item .text a:hover{
    opacity: .85;
}

.productCategoryDetailBox4{
    padding-bottom: 50px;
}
.productCategoryDetailBox4 .title{
    text-align: center;
    padding: 65px 0 30px;
}
.productCategoryDetailBox4 .title h2{
    font-size: 36px;
    color: #000000;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-weight: bold;
}
.productCategoryDetailBox4 .title p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}
.productCategoryDetailBox4 .imgBox{
    display: flex;
    flex-wrap: wrap;
}
.productCategoryDetailBox4 .img{
    width: 50%;
    float: left;
    margin-bottom: 10px;
    line-height: 0;
    text-align: center;
}

.productCategoryDetailBox5{
    overflow: hidden;
    background: #161616;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.productCategoryDetailBox5 .img{
    line-height: 0;
    text-align: center;
    width: 50%;
    float: left;
}
.productCategoryDetailBox5 .textBox{
    width: 50%;
    float: left;
}
.productCategoryDetailBox5 .text{
    width: 700px;
    padding-left: 20px;
}
.productCategoryDetailBox5 .text h2{
    color: #f5f5f5;
    font-size: 36px;
    font-weight: bold;
    padding-right: 100px;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.productCategoryDetailBox5 .text p{
    font-size: 16px;
    color: #f5f5f5;
    line-height: 1.8;
}

.productCategoryDetailBox6 .title{
    padding: 65px 0 30px;
    text-align: center;
}
.productCategoryDetailBox6 .title h2{
    font-size: 36px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
}
.productCategoryDetailBox6 .title span{
    display: block;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 20px;
    line-height: 1.6;
}
.productCategoryDetailBox6 .title p{
    font-size: 16px;
    color: #0a0a0a;
    line-height: 1.6;
}
.productCategoryDetailBox6 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px;
    padding-bottom: 65px;
}
.productCategoryDetailBox6 .item{
    width: 33.33%;
    float: left;
    padding: 0 3px;
    margin-bottom: 5px;
}
.productCategoryDetailBox6 .conBox{
    background: #f5f5f5;
    text-align: center;
    padding: 40px 0;
    height: 100%;
}
.productCategoryDetailBox6 .conBox .img{
    line-height: 0;
}
.productCategoryDetailBox6 .conBox .text p{
    font-size: 18px;
    font-weight: bold;
    color: #0a0a0a;
}

.productCategoryDetailBox7 .title h2{
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 36px;
    color: #000000;
    font-weight: bold;
    padding: 60px 0 50px;
}
.productCategoryDetailBox7 .img{
    line-height: 0;
    padding-bottom: 70px;
    text-align: center;
}

.productCategoryDetailBox8{
    background: url("/public/static/images/home/en-us/productCategoryDetailsBj3.jpg") no-repeat top center;
}
.productCategoryDetailBox8 .title h2{
    padding: 150px 0 30px;
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: bold;
}
.productCategoryDetailBox8 .itemBox{
    display: flex;
    flex-wrap: wrap;
}
.productCategoryDetailBox8 .item{
    width: 25%;
    float: left;
    background: #ffffff;
    border: 1px solid #eeeeee;
    text-align: center;
    padding: 30px;
}
.productCategoryDetailBox8 .item .img{
    line-height: 0;
    text-align: center;
    padding-bottom: 20px;
    overflow: hidden;
}
.productCategoryDetailBox8 .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;
}
.productCategoryDetailBox8 .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;
}
.productCategoryDetailBox8 .item .text a{
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #0a0a0a;
}

.productCategoryDetailBox9 .title h2{
    padding: 40px 0 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    color: #000000;
}
.productCategoryDetailBox9 .relatedCaseSlickBox{
    position: relative;
    padding-bottom: 100px;
}
.productCategoryDetailBox9 .relatedCaseSlickBox .pagingInfo{
    position: absolute;
    left: 75%;
    bottom: 140px;
    font-size: 18px;
    color: #1d1d1d;
    display: none;
}
.productCategoryDetailBox9 .relatedCaseSlick{
    margin: 0 -3px;
}
.productCategoryDetailBox9 .relatedCaseSlick .slick-prev,
.productCategoryDetailBox9 .relatedCaseSlick .slick-next{
    width: 21px;
    height: 42px;
    margin-top: -21px;
    top: 37%;
    background: url("/public/static/images/home/en-us/reset/buttonstyle.png") no-repeat;
}
.productCategoryDetailBox9 .relatedCaseSlick .slick-prev{
    background-position: left center;
    left: -30px;
}
.productCategoryDetailBox9 .relatedCaseSlick .slick-next{
    background-position: right center;
    right: -30px;
}
.productCategoryDetailBox9 .relatedCaseSlick .slick_first{
    padding: 0 3px;
}
.productCategoryDetailBox9 .relatedCaseSlick .img{
    line-height: 0;
    overflow: hidden;
}
.productCategoryDetailBox9 .relatedCaseSlick .img img{
    width: 100%;
}
.productCategoryDetailBox9 .relatedCaseSlick .slick-current .text{
    display: block;
}
.productCategoryDetailBox9 .relatedCaseSlick .text{
    display: none;
    padding-top: 50px;
    position: relative;
    text-align: center;
}
.productCategoryDetailBox9 .relatedCaseSlick .text:before{
    position: absolute;
    content: '';
    top: 10px;
    left: 50%;
    margin-left: -10px;
    border-bottom: 10px solid #2c67ba;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.productCategoryDetailBox9 .relatedCaseSlick .text h3{
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    padding-bottom: 15px;
}
.productCategoryDetailBox9 .relatedCaseSlick .text p{
    font-size: 18px;
    color: #1d1d1d;
    line-height: 1.7;
}

.productDetailBox1{
    padding: 70px 0;
    background: #f6f6f6;
}
.productDetailBox1 .conBox{
    overflow: hidden;
}
.productDetailBox1 .conBox .img{
    line-height: 0;
    text-align: center;
    width: 50%;
    float: left;
}
.productDetailBox1 .conBox .textBox{
    width: 50%;
    float: left;
    padding-left: 50px;
    padding-top: 30px;
}
.productDetailBox1 .conBox .textBox h3{
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    padding-bottom: 20px;
}
.productDetailBox1 .conBox .textBox p{
    font-size: 30px;
    color: #0a0a0a;
    line-height: 1.5;
}
.productDetailBox1 .conBox .textBox .a a{
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    margin: 25px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #2c67ba;
}
.productDetailBox1 .conBox .textBox .a a:hover{
    opacity: .85;
}
.productDetailBox1 .conBox .textBox .download{
    display: flex;
    align-items: center;
}
.productDetailBox1 .conBox .textBox .download span{
    display: inline-block;
    padding-left: 40px;
    line-height: 34px;
    height: 34px;
    font-size: 18px;
    color: #2c67ba;
    background: url("/public/static/images/home/en-us/productPdf.png") no-repeat left center;
}
.productDetailBox1 .conBox .textBox .download a{
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 34px;
    background: #2c67ba;
    color: #ffffff;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.productDetailBox1 .conBox .textBox .download a:hover{
    opacity: .85;
}
.productDetailBox1 .conBox .textBox .download a em{
    margin-right: 5px;
    font-size: 18px;
}

.productDetailBox2{
    background: #2c67ba;
    padding: 20px 0;
    margin-bottom: 50px;
}
.productDetailBox2 .itemBox,
.productDetailBox2 .itemBox1{
    display: flex;
    flex-wrap: wrap;
}
.productDetailBox2 .itemBox .item{
    width: 25%;
    float: left;
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.productDetailBox2 .itemBox1 .item{
    width: 33.33%;
    float: left;
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.productDetailBox2 .itemBox .item .ico,
.productDetailBox2 .itemBox1 .item .ico{
    width: 54px;
    height: 54px;
    line-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
}
.productDetailBox2 .itemBox .item .text,
.productDetailBox2 .itemBox1 .item .text{
    flex: 1;
    padding: 0 10px;
}
.productDetailBox2 .itemBox .item .text p,
.productDetailBox2 .itemBox1 .item .text p{
    font-size: 18px;
    color: #ffffff;
}

.productDetailContentBox .tit h2{
    text-align: center;
    color: #0a0a0a;
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 20px;
}
.productContentBox1{
    padding-bottom: 90px;
}
.productContentBox1 .conBox{
    background: #ffffff;
    padding: 55px 0;
    text-align: center;
}
.productContentBox1 .conBox:nth-of-type(2n){
    background: #f5f5f5;
}
.productContentBox1 .conBox .text{
    padding-bottom: 30px;
}
.productContentBox1 .conBox .text h3{
    font-size: 36px;
    font-weight: bold;
    color: #0a0a0a;
    padding-bottom: 15px;
}
.productContentBox1 .conBox .text p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}

.productContentBox2{
    padding-bottom: 60px;
}
.productContentBox2 .text{
    padding: 0 0 10px;
    text-align: center;
}
.productContentBox2 .text p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}
.productContentBox2 .imgBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
}
.productContentBox2 .img{
    width: 50%;
    float: left;
    padding: 0 2px;
    line-height: 0;
    margin-bottom: 4px;
}

.productContentBox3{
    padding-bottom: 60px;
}
.productContentBox3 .tableBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.productContentBox3 .tableBtn a{
    display: inline-block;
    padding: 8px 15px;
    background: #d0d0d0;
    margin: 0 5px;
    font-size: 16px;
}
.productContentBox3 .tableBtn a:hover,
.productContentBox3 .tableBtn a.on{
    color: #ffffff;
    background: #2c67ba;
}
.productContentBox3 .tableSwitchBox .switch{
    display: none;
}
.productContentBox3 .tableSwitchBox .switch.on{
    display: block;
}
.productContentBox3 table{
    padding-top: 10px;
    border: 1px solid #e5e5e5;
}
.productContentBox3 table tr:hover{
    background: #d5e1f1;
}
.productContentBox3 table th{
    text-align: left;
    background: #2c67ba;
    color: #ffffff;
    border: 0;
    height: 55px;
    font-size: 18px;
}
.productContentBox3 table td{
    color: #0a0a0a;
    font-size: 16px;
    height: 55px;
    border-bottom: 1px solid #e5e5e5;
    border-left: 0;
    border-right: 0;
}

.productContentBox4{
    padding-bottom: 50px;
}
.productContentBox98{
    padding-bottom: 50px;
}
.productContentBox98 .itemBox{
    display: flex;
    flex-wrap: wrap;
}
.productContentBox98 .item{
    width: 25%;
    float: left;
    background: #ffffff;
    border: 1px solid #eeeeee;
    text-align: center;
    padding: 30px;
}
.productContentBox98 .item .img{
    line-height: 0;
    text-align: center;
    padding-bottom: 20px;
    overflow: hidden;
}
.productContentBox98 .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;
}
.productContentBox98 .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;
}
.productContentBox98 .item .text a{
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #0a0a0a;
}

.productContentBox99{
    padding-bottom: 50px;
}
.productContentBox99 .imgBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
}
.productContentBox99 .img{
    width: 33.33%;
    padding: 0 2px;
    margin-bottom: 4px;
    line-height: 0;
    text-align: center;
}

.productContentBox100{
    padding-bottom: 50px;
}
.productContentBox100 .productForm form{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}
.productContentBox100 .productForm .info{
    width: 50%;
    float: left;
    padding: 0 4px;
    margin-bottom: 10px;
    line-height: 0;
}
.productContentBox100 .productForm .info.w100{
    width: 100%;
}
.productContentBox100 .productForm .info:last-child{
    text-align: center;
}
.productContentBox100 .productForm .tips{
    line-height: 16px;
    font-size: 14px;
    color: #ff0000;
    display: block;
}
.productContentBox100 .productForm .info input[type="text"],
.productContentBox100 .productForm .info textarea{
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    color: #8f8f8f;
    padding: 10px;
}
.productContentBox100 .productForm .info textarea{
    resize: none;
    height: 115px;
}
.productContentBox100 .productForm .info input[type="submit"]{
    width: 165px;
    height: 45px;
    background: #2c67ba;
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
}
.productContentBox100 .productForm .info input[type="submit"]:hover{
    opacity: .85;
}

.profileBox1{
    padding: 85px 0;
    overflow: hidden;
}
.profileBox1 .profileVideo{
    width: 50%;
    float: left;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.profileBox1 .profileVideo .video_click{
    height: 555px;
    font-size: 0;
    line-height: 0;
}
.profileBox1 .textBox{
    width: 50%;
    float: left;
}
.profileBox1 .textBox .text{
    width: 700px;
    padding-left: 50px;
}
.profileBox1 .textBox .text h2{
    font-size: 36px;
    font-weight: bold;
    color: #0a0a0a;
    text-transform: uppercase;
    padding: 20px 0;
}
.profileBox1 .textBox .text p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}

.profileBox2{
    padding: 70px 0 130px;
    background: url("/public/static/images/home/en-us/profileHistoryBj.jpg") no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
}
.profileBox2 .title h2{
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-bottom: 25px;
}
.profileBox2 .historyTextSlick{
    max-width: 520px;
    margin: auto;
    padding: 0 10px;
}
.profileBox2 .historyTextSlick .textBox{
    padding-top: 90px;
    height: 300px;
    position: relative;
    margin-bottom: 35px;
}
.profileBox2 .historyTextSlick .textBox span{
    position: absolute;
    top: 0;
    line-height: 1;
    text-align: center;
    width: 100%;
    font-size: 216px;
    font-weight: bold;
    color: rgba(255,255,255,.1);
}
.profileBox2 .historyTextSlick .textBox .text{
    text-align: center;
}
.profileBox2 .historyTextSlick .textBox .text h3{
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.profileBox2 .historyTextSlick .textBox .text p{
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
}
.profileBox2 .historyYearSlickBox{
    position: relative;
}
.profileBox2 .historyYearSlickBox:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.7);
    bottom: 20px;
}
.profileBox2 .historyYearSlick{
    max-width: 1400px;
    margin: auto;
}
.profileBox2 .historyYearSlick .slick-prev,
.profileBox2 .historyYearSlick .slick-next{
    bottom: 5px;
    top: auto;
    margin-top: 0;
    width: 32px;
    height: 32px;
    background: #9ea6b7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.profileBox2 .historyYearSlick .slick-prev:hover,
.profileBox2 .historyYearSlick .slick-next:hover{
    background: #ffffff;
}
.profileBox2 .historyYearSlick .slick-prev:before{
    position: absolute;
    content: '\e688';
    width: 32px;
    height: 32px;
    top: 0;
    left: 0;
    font-family: "iconfont", sans-serif;
    color: #000000;
    font-size: 24px;
    line-height: 32px;
}
.profileBox2 .historyYearSlick .slick-next:before{
    position: absolute;
    content: '\e746';
    width: 32px;
    height: 32px;
    top: 0;
    left: 0;
    font-family: "iconfont", sans-serif;
    color: #000000;
    font-size: 24px;
    line-height: 32px;
}
.profileBox2 .historyYearSlick .slick-prev:hover:before,
.profileBox2 .historyYearSlick .slick-next:hover:before{
    color: #2c67ba;
}
.profileBox2 .historyYearSlick a{
    display: block;
    padding-bottom: 40px;
    position: relative;
}
.profileBox2 .historyYearSlick a:before{
    position: absolute;
    content: '';
    width: 27px;
    height: 27px;
    background: rgba(255,255,255,.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 7px;
    left: 50%;
    margin-left: -13px;
    display: none;
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.profileBox2 .historyYearSlick a:after{
    position: absolute;
    content: '';
    width: 39px;
    height: 39px;
    background: rgba(255,255,255,.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 1px;
    left: 50%;
    margin-left: -19px;
    display: none;
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.option select{
    width: 100%;
    height: 50px;
    padding: 0 12px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    color: #8f8f8f;
}
@keyframes example {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }
}
.profileBox2 .historyYearSlick .slick-current a:before,
.profileBox2 .historyYearSlick .slick-current a:after{
    display: block;
}
.profileBox2 .historyYearSlick span{
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    display: block;
    height: 60px;
    padding-top: 45px;
    margin-bottom: 10px;
    position: relative;
}
.profileBox2 .historyYearSlick span:before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    margin-left: -6px;
    display: none;
    border-bottom: 12px solid #ffffff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.profileBox2 .historyYearSlick span:after{
    position: absolute;
    content: '';
    width: 11px;
    height: 11px;
    background: #ffffff;
    bottom: -35px;
    left: 50%;
    margin-left: -5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.profileBox2 .historyYearSlick .slick-current span{
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 25px;
    padding-top: 0;
}
.profileBox2 .historyYearSlick .slick-current span:before{
    display: block;
}

.profileBox3{
    padding: 80px 0;
}
.profileBox3 .title{
    text-align: center;
    padding-bottom: 35px;
}
.profileBox3 .title h2{
    font-size: 36px;
    font-weight: bold;
    color: #0a0a0a;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.profileBox3 .title p{
    font-size: 18px;
    color: #040404;
    line-height: 1.6;
}
.profileBox3 .profileBtnBox{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}
.profileBox3 .profileBtnBox .btn{
    cursor: pointer;
}
.profileBox3 .profileBtnBox .btn .box{
    width: 156px;
    height: 177px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 10px;
    position: relative;
    background: url("/public/static/images/home/en-us/profileBtnBj1.png") no-repeat top center;
}
.profileBox3 .profileBtnBox .btn:hover .box,
.profileBox3 .profileBtnBox .btn.on .box{
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
    background: url("/public/static/images/home/en-us/profileBtnBj2.png") no-repeat top center;
    transition: all 1s;
}
.profileBox3 .profileBtnBox .btn .box:before{
    position: absolute;
    content: '';
    bottom: -20px;
    left: 50%;
    margin-left: -7px;
    border-top: 8px solid #2c67ba;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    display: none;
}
.profileBox3 .profileBtnBox .btn:hover .box:before,
.profileBox3 .profileBtnBox .btn.on .box:before{
    display: block;
}
.profileBox3 .profileBtnBox .btn em{
    font-size: 0;
    margin-bottom: 5px;
}
.profileBox3 .profileBtnBox .btn em:before{
    font-size: 60px;
    color: #000000;
}
.profileBox3 .profileBtnBox .btn p{
    font-size: 18px;
    color: #2d2d2d;
}
.profileBox3 .profileBtnBox .btn.on em:before,
.profileBox3 .profileBtnBox .btn.on p,
.profileBox3 .profileBtnBox .btn:hover em:before,
.profileBox3 .profileBtnBox .btn:hover p{
    color: #ffffff;
}
.profileBox3 .profileSwitchBox{
    background: #ffffff;
    padding: 70px 100px;
    text-align: center;
    -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);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.profileBox3 .profileSwitchBox .switch{
    display: none;
}
.profileBox3 .profileSwitchBox .switch.on{
    display: block;
}
.profileBox3 .profileSwitchBox h3{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 30px;
    color: #2c67ba;
    margin-bottom: 10px;
    font-weight: bold;
}
.profileBox3 .profileSwitchBox h3 em{
    font-size: 0;
    margin-bottom: 5px;
}
.profileBox3 .profileSwitchBox h3 em:before{
    font-size: 70px;
    color: #2c67ba;
    font-weight: 400;
}
.profileBox3 .profileSwitchBox p{
    color: #323232;
    font-size: 18px;
    line-height: 2;
}

.profileBox4{
    padding-bottom: 50px;
    background: #f1f2f5;
}
.profileBox4 .title h2{
    text-align: center;
    padding: 70px 0;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}
.profileBox4 .conBox{
    display: none;
}
.profileBox4 .conBox.on{
    display: flex;
    align-items: center;
    background: #ffffff;
}
.profileBox4 .conBox .img{
    width: 32%;
    float: left;
    line-height: 0;
    text-align: center;
}
.profileBox4 .conBox .img img{
    width: 100%;
}
.profileBox4 .conBox .text{
    width: 68%;
    float: left;
    padding: 30px 110px;
}
.profileBox4 .conBox .text h3{
    font-size: 24px;
    color: #0a0a0a;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.profileBox4 .conBox .text span{
    display: block;
    font-size: 18px;
    color: #0a0a0a;
    font-weight: bold;
    padding-bottom: 10px;
}
.profileBox4 .conBox .text p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}

.profileBox5{
    padding: 70px 0;
}
.profileBox5 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -36px;
}
.profileBox5 .item{
    width: 25%;
    float: left;
    margin-bottom: 50px;
    padding: 0 36px;
}
.profileBox5 .item.btn{
    cursor: pointer;
    position: relative;
}
.profileBox5 .item.btn:before{
    position: absolute;
    content: "\e61b";
    top: -40px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 40px;
    color: #000000;
    font-family: "iconfont", sans-serif;
    display: none;
}
.profileBox5 .item.btn.on:before{
    display: block;
}
.profileBox5 .item .img{
    border: 2px solid #e3e5eb;
    line-height: 0;
    text-align: center;
    margin-bottom: 15px;
}
.profileBox5 .item .text p{
    text-align: center;
    font-size: 22px;
}

.aboutBox1{
    padding-top: 80px;
}
.aboutBox1 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.aboutBox1 .item{
    width: 33.33%;
    float: left;
    padding: 0 20px;
    margin-bottom: 45px;
}
.aboutBox1 .item .conBox{
    height: 100%;
    position: relative;
    background: #eeeeee;
    overflow: hidden;
    transition: all .3s;
}
.aboutBox1 .item .conBox:hover{
    -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);
    transition: all .5s;
}
.aboutBox1 .item .conBox .icoBox{
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.aboutBox1 .item .conBox .icoBox .ico{
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
.aboutBox1 .item .conBox .icoBox .ico:before{
    position: absolute;
    content: '';
    width: 18px;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #2c67ba;
}
.aboutBox1 .item .conBox .icoBox p{
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}
.aboutBox1 .item .conBox .text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #2c67ba;
    padding: 30px;
    opacity: 0;
    transition: all .5s;
}
.aboutBox1 .item .conBox:hover .text{
    margin-top: 0;
    opacity: 1;
    transition: all .5s;
}
.aboutBox1 .item .conBox .text p{
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

.aboutBox2{
    padding-bottom: 60px;
    border-bottom: 1px solid #d6d6d6;
}
.aboutBox2 .title{
    padding-top: 30px;
    text-align: center;
}
.aboutBox2 .title h2{
    font-size: 36px;
    color: #0a0a0a;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.aboutBox2 .title p{
    font-size: 18px;
    color: #0a0a0a;
}

.aboutBox3{
    padding-bottom: 100px;
}
.aboutBox3 .title{
    padding: 45px 0 30px;
    text-align: center;
}
.aboutBox3 .title h2{
    font-size: 36px;
    color: #0a0a0a;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.aboutBox3 .title p{
    font-size: 18px;
    color: #0a0a0a;
}
.aboutBox3 .aboutCertificateSlick{
    padding: 0 22px;
}
.aboutBox3 .aboutCertificateSlick .slick-prev,
.aboutBox3 .aboutCertificateSlick .slick-next{
    width: 21px;
    height: 42px;
    margin-top: -21px;
    background: url("/public/static/images/home/en-us/reset/buttonstyle.png") no-repeat;
}
.aboutBox3 .aboutCertificateSlick .slick-prev{
    background-position: left center;
}
.aboutBox3 .aboutCertificateSlick .slick-next{
    background-position: right center;
}
.aboutBox3 .aboutCertificateSlick .slick_first{
    margin: 0 10px;
    text-align: center;
}
.aboutBox3 .aboutCertificateSlick .img{
    line-height: 0;
    text-align: center;
}
.aboutBox3 .aboutCertificateSlick .img img{
    width: 100%;
}
.aboutBox3 .aboutCertificateSlick .text{
    padding: 15px 0;
}
.aboutBox3 .aboutCertificateSlick .text p{
    font-size: 18px;
    color: #0a0a0a;
}

.newsConBox{
    padding: 80px 0;
}
.newsConBox .title h2{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #020202;
    padding-bottom: 20px;
    margin-bottom: 60px;
    position: relative;
}
.newsConBox .title h2:before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 325px;
    height: 1px;
    background: #030303;
}
.newsConBox .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.newsConBox .item{
    width: 33.33%;
    float: left;
    padding: 0 25px;
    margin-bottom: 80px;
    border-right: 1px solid #ececec;
}
.newsConBox .item:nth-of-type(3n){
    border-right: 0;
}
.newsConBox .item .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.newsConBox .item .img img{
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.newsConBox .item .img:hover 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;
}
.newsConBox .item .text span{
    display: block;
    padding: 20px 0 15px;
    font-size: 16px;
    color: #383838;
}
.newsConBox .item .text h3 a{
    display: block;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.newsConBox .item .text h3 a:hover{
    color: #2c67ba;
}
.newsConBox .item .text p{
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.newsConBox .page{
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0;
}
.newsConBox .page li{
    border: 0;
    height: 60px;
    line-height: 60px;
    background: none;
}
.newsConBox .page li:first-child,
.newsConBox .page li:last-child{
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #cccccc;
    font-size: 0;
    position: relative;
    cursor: pointer;
}
.newsConBox .page li:first-child:hover,
.newsConBox .page li:last-child:hover{
    background: #2c67ba;
    border-color: #2c67ba;
}
.newsConBox .page li.disabled,
.newsConBox .page li.disabled:hover{
    cursor: no-drop;
    background: none;
    border-color: #cccccc;
}
.newsConBox .page li:first-child:before{
    position: absolute;
    content: '\e688';
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 60px;
    font-family: "iconfont", sans-serif;
    font-size: 40px;
    color: #cccccc;
    transition: all .3s
}
.newsConBox .page li:last-child:before{
    position: absolute;
    content: '\e746';
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 60px;
    font-family: "iconfont", sans-serif;
    font-size: 40px;
    color: #cccccc;
    transition: all .3s
}
.newsConBox .page li:first-child:hover:before,
.newsConBox .page li:last-child:hover:before{
    color: #ffffff;
    transition: all .3s
}
.newsConBox .page li.disabled:hover:before{
    color: #cccccc;
}
.newsConBox .page li span,
.newsConBox .page li a{
    font-size: 16px;
    font-weight: bold;
    color: #6b6b6b;
    line-height: 60px;
}
.newsConBox .page li:first-child a,
.newsConBox .page li:last-child a,
.newsConBox .page li:first-child span,
.newsConBox .page li:last-child span{
    font-size: 0;
    position: relative;
    z-index: 2;
}
.newsConBox .page li.active,
.newsConBox .page li.active a,
.newsConBox .page li:hover a,
.newsConBox .page li.active span{
    background: none;
    color: #2c67ba;
}

.workBox1{
    padding: 35px 0;
}
.workBox1 .itemBox{
    overflow: hidden;
}
.workBox1 .item{
    display: flex;
    margin: 5px 0;
}
.workBox1 .item span{
    font-size: 20px;
    color: #020202;
    width: 110px;
    line-height: 28px;
}
.workBox1 .item li{
    float: left;
    margin-right: 20px;
    margin-bottom: 5px;
}
.workBox1 .item li:last-child{
    margin-right: 0;
}
.workBox1 .item li a{
    display: block;
    font-size: 20px;
    color: #020202;
    line-height: 28px;
    padding: 0 5px;
}
.workBox1 .item li a:hover,
.workBox1 .item li a.on{
    color: #ffffff;
    background: #2c67ba;
}

.workBox2{
    padding-bottom: 100px;
}
.workBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
}
.workBox2 .item{
    width: 25%;
    padding: 0 2px;
    margin-bottom: 4px;
}
.workBox2 .item .conBox{
    position: relative;
}
.workBox2 .item .conBox .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
}
.workBox2 .item .conBox .img img{
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.workBox2 .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;
}
.workBox2 .item .conBox .text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 30px;
    background: rgba(0,0,0,0.3);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
}
.workBox2 .item .conBox:hover .text{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.workBox2 .item .conBox .text a{
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
}

.workDetailTitle h1{
    font-size: 36px;
    margin: auto;
    padding-top: 35px;
    text-align: center;
}

.workDetailBox1{
    padding-top: 35px;
}
.workDetailBox1 .img{
    line-height: 0;
    text-align: center;
}
.workDetailBox1 .itemBox{
    margin-top: 20px;
    margin-left: -2px;
    margin-right: -2px;
    display: flex;
}
.workDetailBox1 .item{
    width: 33.33%;
    float: left;
    padding: 0 2px;
}
.workDetailBox1 .item .conBox{
    height: 100%;
    padding: 35px 30px 35px 60px;
    background: #f8f8f8;
}
.workDetailBox1 .item .conBox h3{
    font-size: 22px;
    color: #0a0a0a;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}
.workDetailBox1 .item .conBox h3:before{
    position: absolute;
    content: '';
    width: 32px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #373737;
}
.workDetailBox1 .item .conBox p{
    font-size: 22px;
    color: #2c67ba;
    font-weight: bold;
}
.workDetailBox1 .textBox{
    padding: 95px 0 40px;
}
.workDetailBox1 .textBox .return{
    display: inline-block;
    background: #2c67ba;
    color: #ffffff;
    width: 85px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}
.workDetailBox1 .textBox h3{
    color: #0a0a0a;
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 15px;
}
.workDetailBox1 .textBox p{
    font-size: 18px;
    color: #323232;
    line-height: 1.7;
}
.workDetailBox1 .pageBox{
    padding-bottom: 50px;
}
.workDetailBox1 .pageBox a{
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 33px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #dddddd
}
.workDetailBox1 .pageBox a:hover{
    background: #2c67ba;
    border-color: #2c67ba;
    color: #ffffff;
}
.workDetailBox1 .pageBox a em{
    font-size: 24px;
}

.workDetailBox2{
    background: #f8f8f8;
    padding-bottom: 100px;
}
.workDetailBox2 .title h2{
    text-align: center;
    padding: 50px 0;
    color: #040404;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}
.workDetailBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
}
.workDetailBox2 .item{
    width: 25%;
    background: #ffffff;
    border: 1px solid #eeeeee;
}
.workDetailBox2 .item .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
}
.workDetailBox2 .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;
}
.workDetailBox2 .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;
}
.workDetailBox2 .item .text a{
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    color: #0a0a0a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.contactBox1{
    padding: 65px 0;
}
.contactBox1 .itemBox{
    overflow: hidden;
}

.contactBox1 .itemBox:nth-child(2) {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}
.contactBox1 .item{
    width: 33.33%;
    float: left;
    text-align: center;
}
.contactBox1 .item .ico{
    line-height: 0;
    padding-bottom: 30px;
}
.contactBox1 .item .text p{
    color: #151515;
    font-size: 18px;
    line-height: 1.6;
}
.contactBox1 .item .text a:hover{
    color: #2c67ba;
    text-decoration: underline;
}

.contactBox2{
    line-height: 0;
}
.contactBox2 iframe{
    width: 100%;
    height: 380px;
}

.contactBox3{
    padding: 80px 0;
}
.contactBox3 .title h2{
    text-align: center;
    padding-bottom: 45px;
    color: #0a0a0a;
    font-size: 36px;
    font-weight: bold;
}
.contactBox3 .contactForm form{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}
.contactBox3 .contactForm .info{
    width: 50%;
    float: left;
    padding: 0 4px;
    margin-bottom: 10px;
    line-height: 0;
}
.contactBox3 .contactForm .info.w100{
    width: 100%;
}
.contactBox3 .contactForm .info:last-child{
    text-align: center;
}
.contactBox3 .contactForm .tips{
    line-height: 16px;
    font-size: 14px;
    color: #ff0000;
    display: block;
}
.contactBox3 .contactForm .info input[type="text"],
.contactBox3 .contactForm .info textarea{
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    color: #8f8f8f;
    padding: 10px;
}
.contactBox3 .contactForm .info textarea{
    resize: none;
    height: 115px;
}
.contactBox3 .contactForm .info input[type="submit"]{
    width: 165px;
    height: 45px;
    background: #2c67ba;
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
}
.contactBox3 .contactForm .info input[type="submit"]:hover{
    opacity: .85;
}

.supportMenu{
    padding-top: 70px;
    margin-bottom: 70px;
}
.supportMenu .itemBox{
    display: flex;
    border-bottom: 1px solid #2c67ba;
}
.supportMenu .item{
    width: 33.33%;
    float: left;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s;
}
.supportMenu .item:hover,
.supportMenu .item.on{
    background: #2c67ba;
    transition: all .3s;
}
.supportMenu .item:before{
    position: absolute;
    content: '';
    top: 10px;
    bottom: 10px;
    width: 1px;
    right: 0;
    background: #2c67ba;
}
.supportMenu .item:last-child:before{
    display: none;
}
.supportMenu .item:after{
    position: absolute;
    content: '';
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
    display: none;
    border-top: 15px solid #2c67ba;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.supportMenu .item:hover:after,
.supportMenu .item.on:after{
    display: block;
}
.supportMenu .item a{
    font-size: 24px;
    color: #2e2e2e;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.supportMenu .item a em{
    font-size: 40px;
    font-weight: 400;
    margin-right: 10px;
    transition: all .3s;
}
.supportMenu .item.on em,
.supportMenu .item.on a,
.supportMenu .item:hover em,
.supportMenu .item:hover a{
    color: #ffffff;
    transition: all .3s;
}

.warrantyBox1 h2{
    color: #0a0a0a;
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 20px;
}
.warrantyBox1 p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}
.warrantyBox2{
    padding: 65px 0;
}
.warrantyBox2 h2{
    color: #0a0a0a;
    font-weight: bold;
    font-size: 24px;
}
.warrantyBox2 .item{
    margin-top: 20px;
}
.warrantyBox2 .item h3{
    background: #e5e5e5;
    color: #252525;
    font-size: 20px;
    padding: 10px 0 10px 50px;
    min-height: 44px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}
.warrantyBox2 .item h3:before{
    position: absolute;
    content: '';
    left: 18px;
    top: 21px;
    width: 15px;
    height: 3px;
    background: #707070;
    transition: all .3s;
}
.warrantyBox2 .item h3:after{
    position: absolute;
    content: '';
    left: 24px;
    top: 16px;
    width: 3px;
    height: 14px;
    background: #707070;
    transition: all .3s;
}
.warrantyBox2 .item:hover h3,
.warrantyBox2 .item.on h3{
    color: #ffffff;
    background: #2c67ba;
    transition: all .3s;
}
.warrantyBox2 .item.on h3:before,
.warrantyBox2 .item:hover h3:before,
.warrantyBox2 .item:hover h3:after{
    background: #ffffff;
    transition: all .3s;
}
.warrantyBox2 .item.on h3:after{
    display: none;
}
.warrantyBox2 .item .text{
    padding-top: 20px;
    display: none;
}
.warrantyBox2 .item:nth-of-type(1) .text{
    display: block;
}
.warrantyBox2 .item .text p{
    font-size: 18px;
    color: #0a0a0a;
    line-height: 1.6;
}

.academyBox1 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.academyBox1 .item{
    width: 33.33%;
    float: left;
    margin-bottom: 80px;
    padding: 0 10px;
}
.academyBox1 .item .conBox{
    background: #f6f6f6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s;
}
.academyBox1 .item .conBox:hover{
    background: #ffffff;
    -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);
    transition: all .3s;
}
.academyBox1 .item .conBox .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
}
.academyBox1 .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;
}
.academyBox1 .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;
}
.academyBox1 .item .conBox .text{
    padding: 20px;
}
.academyBox1 .item .conBox .text h3 a{
    font-size: 18px;
    color: #212121;
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;
}
.academyBox1 .item .conBox .text h3 a:hover{
    color: #2c67ba;
    transition: all .3s;
}
.academyBox1 .item .conBox .text span{
    display: flex;
    align-items: center;
    padding: 5px 0;
    width: 100%;
    font-size: 16px;
    color: #383838;
    margin-bottom: 10px;
    border-bottom: 1px solid #787878;
}
.academyBox1 .item .conBox .text span em{
    margin-right: 5px;
}
.academyBox1 .item .conBox .text p{
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.downloadBox{
    padding-bottom: 40px;
}
.downloadBox .item{
    margin-bottom: 25px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 55px;
    transition: all .3s;
}
.downloadBox .item:hover{
    background: #2c67ba;
    transition: all .3s;
}
.downloadBox .item .title{
    flex: 1;
    padding: 0 50px;
    font-size: 18px;
    color: #000000;
    transition: all .3s;
}
.downloadBox .item .box{
    display: flex;
    align-items: center;
    width: 135px;
}
.downloadBox .item .size{
    font-size: 18px;
    color: #000000;
    line-height: 26px;
    transition: all .3s;
}
.downloadBox .item .down{
    width: 80px;
    text-align: center;
    float: right;
}
.downloadBox .item .down em{
    color: #636363;
    font-size: 24px;
    font-weight: bold;
    line-height: 26px;
    transition: all .3s;
}
.downloadBox .item:hover .title,
.downloadBox .item:hover .size,
.downloadBox .item:hover .down em{
    color: #ffffff;
    transition: all .3s;
}

.productMenuBox {
    position: relative;
}

.productMenuBox::after {
    position: absolute;
/*     width: 120px; */
    content: "Slide Down For More Products";
    color: #2c67ba;
    font-family: "iconfont", sans-serif;
    bottom: 3%;
    left: -8.45%;
    font-size: 14px;
    animation: bounce-in 2s infinite;
    transition: all .5s ease 0s;
/*     text-shadow: 0px 0px 4px #fff; */
}

.productMenuBox::before {
    position: absolute;
    width: 20px;
    content: "\e644";
    color: #ffffff;
    font-family: "iconfont", sans-serif;
    top: 5%;
    left: 5%;
    font-size: 14px;
    animation: bounce-in1 1.5s infinite;
    transition: all .5s ease 0s;
    text-shadow: 0px 0px 4px #fff;
    z-index: 10;
    display: none;
}


@keyframes bounce-in {
    0%, 20%, 50%, 80%, 100% {
      transform: translate(50%, 0);
    }
    40% {
      transform: translate(50%,-5px);
    }
    60% {
      transform: translate(50%, 5%);
    }
  }

@keyframes bounce-in1 {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(50%, 0) rotate(180deg);
    }
    40% {
        transform: translate(50%,-5px) rotate(180deg);
    }
    60% {
        transform: translate(50%, 5%) rotate(180deg);
    }
}


@media (max-width: 1620px){
}
@media (max-width: 1450px){
    .header .nav_list > li{
        margin-left: 15px;
    }
    .banner_slick .conBox .text h2,
    .productBanner h1{
        font-size: 50px;
    }
    .banner_slick .conBox .text p{
        font-size: 16px;
    }
    .indexBox1 .indexProductBox .text h3,
    .indexBox2 .item .conBox .text h3{
        font-size: 24px;
    }
    .indexBox1 .indexProductBox .text a,
    .indexBox2 .item .conBox .text a,
    .indexBox4 .text .a a,
    .indexBox6 .itemBox .a a,
    .productListBox .listBox .text a,
    .productCategoryDetailBox3 .item .text a,
    .productDetailBox1 .conBox .textBox .a a{
        width: 190px;
    }
    .indexBox4 .text{
        width: 600px;
        padding-left: 50px;
    }
    .indexBox5 .itemBox h3{
        font-size: 34px;
    }

    .profileBox1 .textBox .text{
        width: 600px;
    }


    .productCategoryDetailBox5 .text{
        width: 600px;
    }
}
@media (max-width: 1220px){
    .banner_slick .conBox .text h2,
    .indexBox1 .title h2,
    .indexBox2 .title h2,
    .indexBox3 .title h2,
    .indexBox6 .title h2,
    .indexBox7 .title h2,
    .productBanner h1,
    .productCategoryDetailBox1 h1,
    .pageBanner h1{
        font-size: 40px;
    }
    .indexBox1 .title p,
    .indexBox1 .indexProductBox .img span,
    .indexBox1 .indexProductBox .text p,
    .indexBox2 .title p,
    .indexBox2 .item .conBox .text a,
    .indexCustomerSlick .tit p,
    .indexCustomerSlick .text p,
    .indexBox5 .itemBox p,
    .indexBox6 .title p,
    .indexBox6 .leftBox .text span,
    .indexBox6 .leftBox .text p,
    .indexBox6 .itemBox .item h3 a,
    .indexBox6 .itemBox .a a,
    .indexBox7 .title p,
    .productListBox .listBox .text p,
    .productCategoryDetailBox3 .item .text .t li,
    .productCategoryDetailBox4 .title p,
    .productCategoryDetailBox6 .conBox .text p,
    .productCategoryDetailBox8 .item .text a,
    .productCategoryDetailBox9 .relatedCaseSlick .text p,
    .productDetailBox2 .item .text p,
    .productDetailBox1 .conBox .textBox .download span,
    .productContentBox1 .conBox .text p,
    .productContentBox2 .text p,
    .productContentBox98 .item .text a,
    .profileBox1 .textBox .text p,
    .profileBox2 .historyTextSlick .textBox .text p,
    .profileBox3 .title p,
    .profileBox3 .profileSwitchBox p,
    .profileBox4 .conBox .text span,
    .profileBox4 .conBox .text p,
    .profileBox5 .item .text p,
    .aboutBox1 .item .conBox .text p,
    .aboutBox2 .title p,
    .aboutBox3 .title p,
    .aboutBox3 .aboutCertificateSlick .text p,
    .workBox1 .item li a,
    .workBox1 .item span,
    .workBox2 .item .conBox .text a,
    .workDetailBox1 .item .conBox h3,
    .workDetailBox1 .item .conBox p,
    .workDetailBox1 .textBox p,
    .workDetailBox2 .item .text a,
    .warrantyBox1 p,
    .warrantyBox2 .item .text p,
    .downloadBox .item .title,
    .downloadBox .item .size,
    .contactBox1 .item .text p{
        font-size: 16px;
    }
    .header .headerBox{
        padding-right: 80px;
    }
    .header .nav_list > li > a > span{
        font-size: 16px;
    }
    .header .nav_list > li{
        margin-left: 10px;
    }
    .header .nav_list > li:last-child{
        min-width: 110px;
    }
    .header .nav_list > li:last-child:before{
        width: 110px;
    }
    .footer_box .fast_navigation .items .box{
        padding-left: 20px;
        padding-right: 20px;
    }

    .indexBox1{
        padding-bottom: 50px;
    }
    .indexBox1 .title{
        padding-top: 50px;
    }
    .indexBox1 .indexProductBox .img span{
        bottom: 15px;
    }
    .indexBox1 .indexProductBox .text h3,
    .indexBox2 .item .conBox .text h3,
    .indexCustomerSlick .tit h3{
        font-size: 20px;
    }
    .indexBox2 .title{
        padding: 50px 0 35px;
    }
    .indexBox2 .item .conBox .text{
        padding: 20px;
    }

    .indexBox3{
        padding: 50px 0;
    }

    .indexBox4 .text{
        width: 496px;
        padding-left: 20px;
    }
    .indexBox4 .text .a{
        margin-top: 30px;
    }

    .indexBox5{
        padding: 50px 0;
    }
    .indexBox5 .itemBox h3{
        font-size: 30px;
    }

    .indexBox6{
        padding-bottom: 50px;
    }
    .indexBox6 .title{
        padding: 50px 0 35px;
    }
    .indexBox6 .leftBox .text{
        padding: 20px 15px;
    }
    .indexBox6 .itemBox .item{
        padding: 15px 0;
    }
    .indexBox6 .itemBox .item span{
        width: 115px;
    }
    .indexBox6 .itemBox .a{
        margin-top: 30px;
    }
    .indexBox7{
        padding: 50px 0;
    }
    .indexBox7 .indexNews{
        padding: 35px 0;
    }

    .productBanner .tips ul li{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .productBanner .tips ul li:hover{
        font-size: 20px;
    }
    .productListBox .listBox{
        padding: 50px 0;
    }
    .productListBox .listBox .text h3{
        padding-bottom: 10px;
    }
    .productListBox .listBox .text a{
        margin-top: 15px;
    }
    .productListBox .page_box{
        padding: 50px 0;
    }

    .productCategoryDetailBox1{
        padding-top: 100px;
    }
    .productCategoryDetailBox2{
        padding: 30px 0;
        margin-bottom: 50px;
    }

    .productCategoryDetailBox3 .item .text .t span{
        font-size: 20px;
    }

    .productCategoryDetailBox4{
        padding-bottom: 30px;
    }
    .productCategoryDetailBox4 .title{
        padding: 50px 0 30px;
    }

    .productCategoryDetailBox5 .text{
        width: 496px;
    }
    .productCategoryDetailBox5 .text h2{
        padding-right: 0;
    }

    .productCategoryDetailBox6 .title{
        padding-top: 50px;
    }
    .productCategoryDetailBox6 .itemBox{
        padding-bottom: 50px;
    }
    .productCategoryDetailBox7 .title h2{
        padding: 50px 0 30px;
    }
    .productCategoryDetailBox7 .img{
        padding-bottom: 50px;
    }
    .productCategoryDetailBox8 .item{
        padding: 15px;
    }
    .productCategoryDetailBox9 .relatedCaseSlick .text{
        padding-left: 20px;
    }
    .productCategoryDetailBox9 .relatedCaseSlickBox{
        padding-bottom: 50px;
    }
    .productCategoryDetailBox9 .relatedCaseSlick .slick-prev,
    .productCategoryDetailBox9 .relatedCaseSlick .slick-next{
        top: 30%;
    }

    .productDetailBox1{
        padding: 50px 0;
    }

    .productContentBox1{
        padding-bottom: 50px;
    }
    .productContentBox1 .conBox{
        padding: 50px 0;
    }
    .productDetailBox1 .conBox .textBox .download{
        flex-wrap: wrap;
    }
    .productDetailBox1 .conBox .textBox .download span{
        display: block;
        width: 100%;
    }
    .productDetailBox1 .conBox .textBox .download a{
        margin-left: 0;
        margin-top: 15px;
    }

    .productDetailBox1 .conBox .textBox p{
        font-size: 24px;
    }
    .productContentBox2,
    .productContentBox3{
        padding-bottom: 50px;
    }
    .productContentBox98 .item{
        padding: 10px;
    }

    .profileBox1{
        padding: 50px 0;
    }
    .profileBox1 .textBox .text{
        width: 496px;
        padding-left: 20px;
    }
    .profileBox1 .textBox .text h2{
        padding-top: 0;
        padding-bottom: 15px;
    }
    .profileBox2{
        padding: 50px 0;
    }
    .profileBox2 .historyTextSlick .textBox span{
        font-size: 180px;
    }
    .profileBox3{
        padding: 50px 0;
    }
    .profileBox4 .title h2{
        padding: 50px 0 30px;
    }
    .profileBox4 .conBox .text{
        padding: 20px 50px;
    }
    .profileBox5{
        padding-bottom: 30px;
    }
    .profileBox5 .itemBox{
        margin: 0 -15px;
    }
    .profileBox5 .item{
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .aboutBox1{
        padding-top: 50px;
    }
    .aboutBox1 .itemBox{
        margin: 0 -10px;
    }
    .aboutBox1 .item{
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .aboutBox1 .item .conBox .icoBox p{
        font-size: 20px;
    }

    .aboutBox2{
        padding-bottom: 50px;
    }
    .aboutBox3{
        padding-bottom: 40px;
    }
    .aboutBox3 .aboutCertificateSlick .slick_first{
        margin: 0 5px;
    }

    .workBox2{
        padding-bottom: 50px;
    }

    .workDetailBox1 .item .conBox{
        padding: 20px;
    }
    .workDetailBox1 .item .conBox h3{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .workDetailBox1 .textBox{
        padding: 50px 0 30px;
    }
    .workDetailBox1 .pageBox{
        padding-bottom: 30px;
    }
    .workDetailBox2{
        padding-bottom: 50px;
    }
    .workDetailBox2 .title h2{
        padding: 50px 0 30px;
    }

    .supportMenu{
        padding-top: 50px;
        margin-bottom: 50px;
    }
    .supportMenu .item{
        height: 80px;
    }
    .supportMenu .item a{
        font-size: 20px;
    }
    .warrantyBox1 h2,
    .warrantyBox2 h2,
    .warrantyBox2 .item h3{
        font-size: 20px;
    }
    .warrantyBox2{
        padding: 50px 0;
    }

    .contactBox1{
        padding: 50px 0;
    }
    .contactBox1 .item .ico{
        padding-bottom: 20px;
    }
    .contactBox3{
        padding: 50px 0;
    }
    .contactBox3 .title h2{
        padding-bottom: 20px;
    }

    .productCategoryDetailBox5 .text p{
        line-height: 1.6;
    }
}
@media (max-width: 992px){
    .banner_slick .conBox .text h2,
    .indexBox1 .title h2,
    .indexBox2 .title h2,
    .indexBox3 .title h2,
    .indexBox6 .title h2,
    .indexBox7 .title h2,
    .productBanner h1,
    .productListBox .listBox .text h3,
    .productCategoryDetailBox1 h1,
    .productCategoryDetailBox2 p,
    .productCategoryDetailBox3 .item .text h3,
    .productCategoryDetailBox4 .title h2,
    .productCategoryDetailBox5 .text h2,
    .productCategoryDetailBox6 .title h2,
    .productCategoryDetailBox7 .title h2,
    .productCategoryDetailBox8 .title h2,
    .productCategoryDetailBox9 .title h2,
    .productDetailBox1 .conBox .textBox h3,
    .productDetailContentBox .tit h2,
    .productContentBox1 .conBox .text h3,
    .productDetailContentBox .tit h2,
    .profileBox1 .textBox .text h2,
    .profileBox2 .title h2,
    .profileBox3 .title h2,
    .profileBox4 .title h2,
    .pageBanner h1,
    .aboutBox2 .title h2,
    .aboutBox3 .title h2,
    .workDetailBox2 .title h2,
    .contactBox3 .title h2{
        font-size: 34px;
    }

    .h120{
        display: none;
    }
    .pageBanner .Crumbs{
        padding: 0
    }
    .Three_menu_box{
        padding-left: 10px;
    }
    .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);
    }

    .m_header {
        height: 60px;
    }

    .logo_box {
        width: 100%;
        height: 60px;
        text-align: center;
        padding: 15px 0;
        line-height: 0;
        font-size: 0;
        zoom: 1;
    }

    .logo_box img {
        height: 100%;
    }

    .langBox{
        top: 10px;
        right: 10px;
    }
    .langBox em{
        height: 40px;
        line-height: 40px;
        width: auto;
        color: #000000;
    }
    .langBox ul{
        left: auto;
        right: 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;
    }

    .footer_box .fast_navigation .items:nth-of-type(1){
        display: none;
    }
    .footer_box .fast_navigation .footerForm input[type="text"],
    .footer_box .fast_navigation .footerForm textarea{
        font-size: 14px;
    }

    .indexBox1 .indexProductBox .text h3,
    .indexBox2 .item .conBox .text h3,
    .indexCustomerSlick .tit h3 {
        font-size: 18px;
    }

    .indexBox1 .indexProductBox .text a,
    .indexBox2 .item .conBox .text a,
    .indexBox4 .text .a a,
    .indexBox6 .itemBox .a a,
    .footer_box .fast_navigation .footerForm input[type="submit"],
    .productListBox .listBox .text a,
    .productCategoryDetailBox3 .item .text a,
    .productDetailBox1 .conBox .textBox .a a{
        width: 145px;
        height: 40px;
        line-height: 40px;
    }

    .banner_slick .slick-prev, .banner_slick .slick-next{
        bottom: 50px;
    }
    .banner_slick .conBox .text{
        top: 30%;
    }

    .indexCustomerSlick .conBox{
        padding: 0 30px;
    }

    .indexBox4 .indexVideo{
        width: 100%;
    }
    .indexBox4 .indexVideo .video_click{
        height: auto;
        padding-top: 65%;
    }
    .indexBox4 .textBox{
        width: 100%;
        height: auto;
        padding: 50px 10px;
    }
    .indexBox4 .text{
        max-width: 767px;
        width: auto;
        margin: auto;
        padding: 0;
    }
    .indexBox5 .itemBox h3{
        font-size: 24px;
    }
    .indexBox5 .itemBox h3 em{
        font-size: 30px;
    }
    .indexBox6 .leftBox{
        width: 100%;
        padding-right: 0;
    }
    .indexBox6 .leftBox .img img{
        width: 100%;
    }
    .indexBox6 .itemBox{
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .indexBox7 .indexNews{
        margin: 0 -10px;
    }
    .indexBox7 .indexNews .slick_first{
        padding: 0 10px;
    }
    .productBanner h1{
        margin-top: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .productBanner .tips{
        position: relative;
        background: #1b1b1b;
        padding: 10px 0;
        display: none;
    }
    .productBanner .tips ul{
        padding-bottom: 0;
    }
    .productBanner .tips ul li{
        width: 50%;
        font-size: 16px;
        margin-bottom: 0;
    }
    .productBanner .tips ul li:hover{
        font-size: 16px;
    }

    .productListBox .listBox .text{
        padding-left: 20px;
    }

    .productCategoryDetailBox2 .text{
        flex-wrap: wrap;
    }
    .productCategoryDetailBox2 p{
        width: 100%;
        margin-right: 0;
        padding-bottom: 15px;
    }
    .productCategoryDetailBox2 a{
        width: 195px;
    }

    .productCategoryDetailBox3 .item .text{
        padding-left: 40px;
    }
    .productCategoryDetailBox3 .item .text a{
        margin-top: 15px;
    }

    .productCategoryDetailBox5 .img{
        width: 100%;
    }
    .productCategoryDetailBox5 .img img{
        width: 100%;
    }
    .productCategoryDetailBox5 .textBox{
        width: 100%;
        padding: 30px 10px;
    }
    .productCategoryDetailBox5 .text{
        max-width: 767px;
        padding-left: 0;
        width: auto;
        margin: auto;
    }

    .productCategoryDetailBox6 .conBox{
        padding: 20px 0;
    }
    .productCategoryDetailBox6 .conBox .img{
        padding-bottom: 10px;
    }
    .productCategoryDetailBox8 .item{
        width: 50%;
    }
    .productCategoryDetailBox9 .relatedCaseSlickBox .pagingInfo{
        display: none;
    }
    .productCategoryDetailBox9 .relatedCaseSlick{
        margin-bottom: 50px;
    }
    .productCategoryDetailBox9 .relatedCaseSlick .text{
        padding-left: 0;
        padding-top: 20px;
        display: block;
    }
    .productCategoryDetailBox9 .relatedCaseSlick .slick-prev{
        top: auto;
        left: 50%;
        bottom: -50px;
        margin-left: -31px;
    }
    .productCategoryDetailBox9 .relatedCaseSlick .slick-next{
        top: auto;
        right: 50%;
        bottom: -50px;
        margin-right: -31px;
    }

    .productDetailBox1 .conBox .textBox{
        padding-top: 0;
        padding-left: 20px;
    }
    .productDetailBox1 .conBox .textBox h3{
        padding-bottom: 10px;
    }
    .productDetailBox1 .conBox .textBox p{
        font-size: 20px;
    }
    .productDetailBox2 .item{
        width: 33.33%;
    }
    .productContentBox98 .item{
        width: 50%;
    }
    .productContentBox99 .img{
        width: 50%;
    }

    .profileBox1 .profileVideo{
        width: 100%;
    }
    .profileBox1 .profileVideo .video_click{
        height: auto;
        padding-top: 50%;
    }
    .profileBox1 .textBox{
        width: 100%;
        padding-top: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .profileBox1 .textBox .text{
        width: auto;
        max-width: 767px;
        margin: auto;
        padding-left: 0;
    }
    .profileBox2 .historyTextSlick .textBox span{
        font-size: 150px;
    }

    .aboutBox1 .itemBox{
        margin: 0 -5px;
    }
    .aboutBox1 .item{
        width: 50%;
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .workBox2 .item{
        width: 33.33%;
    }
    .workBox2 .item .conBox .text{
        position: initial;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        background: #1b1b1b;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    .workDetailBox2 .item{
        width: 50%;
    }

    .supportMenu{
        display: none;
    }
    .warrantyBox1,
    .academyBox1,
    .downloadBox{
        padding-top: 50px;
    }
    .academyBox1 .itemBox{
        margin: 0 -5px;
    }
    .academyBox1 .item{
        padding: 0 5px;
        margin-bottom: 50px;
    }
    .downloadBox .item .title{
        padding: 10px 20px;
    }

    .contactBox1{
        padding-bottom: 30px;
    }
    .contactBox1 .item{
        width: 100%;
        margin-bottom: 20px;
    }
    .contactBox2 iframe{
        height: 300px;
    }

    .contactBox1 .itemBox:nth-child(2) {
        flex-direction: column;
    }
}
@media (max-width: 767px){
    .banner_slick .conBox .text h2,
    .indexBox1 .title h2,
    .indexBox2 .title h2,
    .indexBox3 .title h2,
    .indexBox6 .title h2,
    .indexBox7 .title h2,
    .productBanner h1,
    .productListBox .listBox .text h3,
    .productCategoryDetailBox1 h1,
    .productCategoryDetailBox2 p,
    .productCategoryDetailBox3 .item .text h3,
    .productCategoryDetailBox4 .title h2,
    .productCategoryDetailBox5 .text h2,
    .productCategoryDetailBox6 .title h2,
    .productCategoryDetailBox7 .title h2,
    .productCategoryDetailBox8 .title h2,
    .productCategoryDetailBox9 .title h2,
    .productDetailBox1 .conBox .textBox h3,
    .productDetailContentBox .tit h2,
    .productContentBox1 .conBox .text h3,
    .productDetailContentBox .tit h2,
    .profileBox1 .textBox .text h2,
    .profileBox2 .title h2,
    .profileBox3 .title h2,
    .profileBox4 .title h2,
    .pageBanner h1,
    .aboutBox2 .title h2,
    .aboutBox3 .title h2,
    .workDetailBox2 .title h2,
    .contactBox3 .title h2{
        font-size: 28px;
    }
    #back_top{
        width: 0;
        height: 0;
        overflow: hidden;
    }
    .footer_box .fast_navigation .items{
        width: 50% !important;
    }
    .footer_box .fast_navigation .items .box:nth-of-type(1){
        display: none;
    }
    .footer_box .fast_navigation .items .box{
        padding-left: 0;
    }
    .banner_slick .slick-prev{
        left: 10px;
        bottom: auto;
        top: 50%;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
    }
    .banner_slick .slick-next{
        right: 10px;
        bottom: auto;
        top: 50%;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
    }
    .banner_slick .conBox .text{
        width: 80%;
        left: 10%;
        margin: 0;
    }
    .banner_slick .conBox .tips{
        display: none;
    }

    .indexProductSlick{
        display: none;
    }
    .indexBox1 .indexProductBox .img span{
        display: none;
    }
    .indexBox1 .indexProductBox .text{
        position: initial;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        background: #1b1b1b;
    }
    .indexBox2 .item{
        width: 50%;
    }
    .indexBox5 .itemBox{
        flex-wrap: wrap;
        justify-content: center;
    }
    .indexBox5 .itemBox .item{
        width: 33.33%;
        margin: 15px 0;
        text-align: center;
    }
    .indexBox5 .itemBox h3{
        justify-content: center;
    }
    .indexBox7 .indexNews .slick_first:nth-of-type(3n){
        border-right: 1px solid #ececec;
    }

    .productCategoryDetailBox1 .img img{
        width: 50%;
    }

    .productDetailBox1 .conBox .img{
        width: 100%;
    }
    .productDetailBox1 .conBox .textBox{
        width: 100%;
        padding-left: 0;
    }
    .productDetailBox1 .conBox .textBox p{
        font-size: 16px;
    }
    .productContentBox1 .conBox{
        padding: 50px 0;
    }
    .productDetailBox2 .item{
        width: 50% !important;
    }

    .profileBox2 .historyTextSlick .textBox{
        padding-top: 50px;
    }
    .profileBox2 .historyTextSlick .textBox span{
        font-size: 100px;
    }

    .profileBox3 .profileBtnBox{
        display: none;
    }
    .profileBox3 .profileSwitchBox{
        padding: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .profileBox3 .profileSwitchBox .switch{
        display: block;
        margin-bottom: 15px;
        background: #ffffff;
        padding: 20px;
        -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);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }
    .profileBox4 .conBox{
        display: block !important;
        background: #ffffff;
        overflow: hidden;
        margin-bottom: 10px;
    }
    .profileBox4 .conBox .img{
        width: 40%;
    }
    .profileBox4 .conBox .text{
        width: 60%;
        padding: 20px;
    }
    .profileBox4 .conBox .text h3{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .profileBox5{
        padding-top: 50px;
    }
    .profileBox5 .item.btn:before{
        display: none !important;
    }
    .profileBox5 .itemBox{
        margin: 0 -5px;
    }
    .profileBox5 .item{
        padding: 0 5px;
    }
    .profileBox5 .item .img{
        margin-bottom: 10px;
    }

    .workBox2 .item{
        width: 50%;
    }

    .workDetailBox1 .itemBox{
        flex-wrap: wrap;
    }
    .workDetailBox1 .item{
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }


    .academyBox1 .item{
        width: 50%;
    }
    .academyBox1 .item .conBox .text{
        padding: 20px 10px;
    }
}
@media (max-width: 640px){
    .footer_box .fast_navigation .itemBox{
        flex-wrap: wrap;
    }
    .footer_box .fast_navigation .items{
        width: 100% !important;
    }
    .footer_box .fast_navigation .items .box{
        padding-right: 0;
        padding-bottom: 30px;
    }
    .banner_slick .conBox .text h2{
        font-size: 24px;
    }
    .banner_slick .conBox .text p{
        line-height: 1.4;
        font-size: 14px;
    }
    .indexBox1 .indexProductBox .text{
        padding: 15px 10px;
    }
    .indexBox1 .indexProductBox .text h3{
        padding-bottom: 5px;
    }
    .indexBox6 .itemBox .item{
        flex-wrap: wrap;
    }
    .indexBox6 .itemBox .item span{
        display: block;
        width: 100%;
        text-align: left;
        font-size: 14px;
    }
    .indexBox6 .itemBox .item h3{
        width: 100%;
        margin-top: 5px;
    }

    .productListBox .listBox .container_1400{
        flex-wrap: wrap;
    }
    .productListBox .listBox .img{
        width: 100%;
        text-align: center;
    }
    .productListBox .listBox .text{
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .productCategoryDetailBox1 .img img{
        width: 80%;
    }
    .productCategoryDetailBox3 .item .conBox{
        flex-wrap: wrap;
    }
    .productCategoryDetailBox3 .item .img{
        width: 100%;
        text-align: center;
    }
    .productCategoryDetailBox3 .item .text{
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .productCategoryDetailBox6 .item{
        width: 100%;
    }

    .productContentBox100 .productForm .info{
        width: 100%;
    }

    .profileBox5 .item{
        width: 33.33%;
    }

    .aboutBox1 .item{
        width: 100%;
    }

    .contactBox3 .contactForm .info{
        width: 100%;
    }
}
@media (max-width: 540px){
    .indexBox1 .indexProductBox .item,
    .indexBox2 .item{
        width: 100%;
    }
    .indexBox4 .text .a a:nth-of-type(1){
        margin-right: 15px;
    }
    .indexBox5 .itemBox .item{
        width: 50%;
    }
    .indexCustomerSlick .tit:before{
        width: 60%;
    }

    .profileBox4 .conBox .img{
        width: 100%;
    }
    .profileBox4 .conBox .img img{
        width: auto;
    }
    .profileBox4 .conBox .text{
        width: 100%;
    }
    .profileBox5 .item{
        width: 50%;
    }
}
@media (max-width: 480px){
}
.footer_box .fast_navigation .footerForm .info p{
  font-size: 14px;
  color: #898989;
  line-height: 1.4;
}
.footer_box .fast_navigation .footerForm .info p a{
  text-decoration: underline;
}
.footer_box .fast_navigation .footerForm .info p a:hover {
  color: #2c67ba;
}

.contact_info_New_box{width: 100%;height: auto;padding-top: 100px;padding-bottom: 65px;}
.contact_info_New_box .title h2{
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    padding-bottom: 5px;
    text-align: center;
}
.contact_info_New_ul{width: 100%;height: auto;display: flex;justify-content: flex-start;flex-wrap: wrap;transition: all 0.6s;}
.contact_info_New_ul li{width: 32%;height: auto;padding: 35px;border-radius: 10px;background: #f1f5f8;margin-top: 30px;transition: all 0.6s;margin-left: 2%;}
.contact_info_New_ul li:nth-of-type(3n+1){margin-left: 0;}
.contact_info_New_ul li h3{font-size: 30px;color: #000;font-weight: bold;transition: all 0.6s;}
.contact_info_New_ul li h4{font-size: 20px;color: #000;font-weight: bold;margin-top: 8px;}
.contact_info_New_ul_txt{width: 100%;height: auto;margin-top: 40px;}
.contact_info_New_ul_txt p{font-size: 16px;color: #000;line-height: 2;transition: all 0.3s;}
.contact_info_New_ul_txt p a:hover{text-decoration: underline;}
.contact_info_New_ul li:hover{background: #2c67ba;}
.contact_info_New_ul li:hover h3,
.contact_info_New_ul li:hover h4,
.contact_info_New_ul li:hover .contact_info_New_ul_txt p{color: #fff;}
.contactPartners_box{width: 100%;height: auto;padding: 65px 0;background: #f7f7f7;}
.contactPartners_title{width: 100%;height: auto;}
.contactPartners_title h2{font-size: 48px;color: #000;font-weight: bold;text-align: center;}
.contactPartners_title p{font-size: 16px;color:#000;text-align: center;margin-top: 10px;}
.contactPartners_btn{width: 50%;height: auto;margin: 0px auto;margin-top: 50px;display: flex;justify-content: space-between;border-bottom: 1px solid #e5e5e5;}
.contactPartners_btn li{font-size: 18px;color: #000;cursor: pointer;padding-bottom: 18px;position: relative;}
.contactPartners_btn li:hover,.contactPartners_btn li.on{color: #296acc;}
.contactPartners_btn li:hover:after,.contactPartners_btn li.on:after{content: "";display: block;width: 100%; height: 1px;background: #296acc;position: absolute;left: 0;bottom: -1px;}
.contactPartners_content{width: 100%;height: auto;}
.contactPartners_content_list{width: 100%;height: auto;display: none;}
.contactPartners_content_list_ul{width: 100%;height: auto;display: flex;justify-content: flex-start;flex-wrap: wrap;}
.contactPartners_content_list_ul li{width: 15.6%;height: auto;padding: 32px;aspect-ratio: 1/1;overflow: hidden;background: #fff;border-radius: 10px;transition: all 0.3s;display: flex;justify-content: center;align-items: center;margin-top: 30px;margin-left: 1.2%;}
.contactPartners_content_list_ul li:nth-of-type(6n+1){margin-left: 0;}
.contactPartners_content_list_ul li img{max-width: 100%;height: auto;display: block;}
.contactPartners_content_list_ul li:hover{box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 30px;}
.sls_banner_box{width: 100%;height: auto;}
.sls_banner_slick{width: 100%;}
.sls_banner_box img{width: 100%;height: auto;display: block;}
.sls_products_box{width: 100%;height: auto;padding: 80px 0;}
.sls_products_box img{max-width: 100%;height: auto;display: block;}
.sls_expanding_box{width: 100%;height: auto;padding: 80px 0px;background: #fafafa;}
.sls_expanding_box img{width: 100%;height: auto;display: block;}
.sls_arabia_box{width: 100%;height: auto;}
.sls_arabia_box img{width: 100%;height: auto;display: block;}
.sls_case_box{width: 100%;height: auto;}
.sls_case_box img{max-width: 100%;height: auto;display: block;margin: 0px auto;}
.sls_brand_box{width: 100%;height: auto;}
.sls_brand_box img{width: 100%;height: auto;display: block;}
.sls_values_box{width: 100%;height: auto;padding-top: 20px;}
.sls_values_box img{max-width: 100%;height: auto;display: block;margin: 0px auto;}
.sls_form_box{width: 100%;height: auto;padding: 80px 0;}
.sls_form_content_box{width: 100%;height: auto;display: flex;justify-content: space-between;box-shadow: 1px 15px 54px 0px rgba(108, 108, 108, 0.28);}
.sls_form_content_left{width: 45.223%;height: auto;padding: 90px 24px;box-shadow: 0px 0px 27px 0px rgba(108, 108, 108, 0.13);}
.sls_form_content_left_txt{width: 100%;height: auto;}
.sls_form_content_left_txt h2{font-size: 36px;color: #000000;font-weight: 700;}
.sls_form_content_left_txt p{font-size: 24px;color: #000000;line-height: 1.4;}
.sls_form_content_left_txt p em{font-size: 16px;margin-top: 20px;display: inline-block;letter-spacing: 0px;}
.sls_form_content_left_ul{width: 100%;height: auto;margin-top: 39px;}
.sls_form_content_left_ul li{width: 100%;height: auto;display: flex;justify-content: flex-start;align-items: center;margin-top: 16px;}
.sls_form_content_left_ul_ico{width: 38px;height: auto;margin-right: 18px;}
.sls_form_content_left_ul_ico img{width: 100%;height: auto;display: block;}
.sls_form_content_left_ul li p{font-size: 24px;color: #274ea9;}
.sls_form_content_left_ul li:nth-of-type(1) p a{font-size: 36px;font-weight: 700;}
.sls_form_content_left_ul li a:hover{text-decoration: underline;}
.sls_form_content_right{flex: 1;padding: 90px 47px;}
.sls_form_content_right_ul{width: 100%;height: auto;display: flex;justify-content: space-between;flex-wrap: wrap;}
.sls_form_content_right_ul li{width: 49.2%;height: auto;margin-bottom: 10px;position: relative;}
.sls_form_content_right_ul li input{display: block;width: 100%;height: 48px;border: 1px solid #d9d9d9;padding-left: 10px;background: none;font-size: 14px;outline: none;}
.sls_form_content_right_ul li input::placeholder{color: #7a7a7a;}
.sls_form_content_right_ul li .tips{position: absolute;right: 10px;top: 18px;color: red;}
.sls_form_content_right_ul li.sls_wh{width: 100%;}
.sls_form_content_right_ul li p{font-size: 16px;line-height: 1.6;}
.sls_form_content_right_ul li p a{font-style: italic;text-decoration: underline;}
.sls_form_btn{width: 150px;height: 48px;background: #274ea9;border-radius: 5px;margin-top: 34px;border: none;font-size: 16px;color: #FFFFFF;font-weight: 700;outline: none;cursor: pointer;}
@media (max-width: 1400px) {
    .contactPartners_content_list_ul li{width: 18.5%;margin-left: 1.8%;}
    .contactPartners_content_list_ul li:nth-of-type(6n+1){margin-left: 1.8%;}
    .contactPartners_content_list_ul li:nth-of-type(5n+1){margin-left: 0;}
    .sls_form_content_left_ul li:nth-of-type(1) p a{font-size: 30px;}
}
@media(max-width: 1200px){
    .contactPartners_content_list_ul li{width: 23.5%;margin-left: 2%;}
    .contactPartners_content_list_ul li:nth-of-type(5n+1){margin-left: 2%;}
    .contactPartners_content_list_ul li:nth-of-type(4n+1){margin-left: 0;}
    .sls_form_content_box{flex-direction: column;}
    .sls_form_content_left{width: 100%;padding: 5% 4%;}
    .sls_form_content_right{padding: 5% 4%;}
}
@media(max-width: 990px){
    .contactPartners_content_list_ul li{width: 32%;margin-left: 2%;}
    .contactPartners_content_list_ul li:nth-of-type(4n+1){margin-left: 2%;}
    .contactPartners_content_list_ul li:nth-of-type(3n+1){margin-left: 0;}
}
@media (max-width: 768px) {
    .contact_info_New_box .title h2{font-size: 4.8vw;}
    .contact_info_New_ul li{width: 100%;margin-top: 3.8vw;padding: 5% 4%;}
    .contact_info_New_ul li h3{font-size: 4.2vw}
    .contact_info_New_ul li h4{font-size: 3.8vw}
    .contact_info_New_box{padding-top: 8vw;padding-bottom: 8vw;}
    .contact_info_New_ul_txt{margin-top: 5.8vw;}
    .contact_info_New_ul_txt p{font-size: 3.6vw}
    .contactPartners_box{padding: 8vw 0;}
    .contactPartners_title h2{font-size: 4.8vw;}
    .contactPartners_title p{font-size: 3.2vw;}
    .contactPartners_btn{width: 100%;margin-top: 5.8vw;}
    .contactPartners_btn li{font-size: 3.6vw;padding-bottom: 1.8vw;}
    .contactPartners_content_list_ul{justify-content: space-between;}
    .contactPartners_content_list_ul li{width: 48.5%;padding: 4%;margin-left: 0 !important;}
    .sls_products_box{padding: 8vw 0;}
    .sls_expanding_box{padding: 8vw 0;}
    .sls_form_box{padding: 8vw 0;}
    .sls_form_content_left_txt h2{font-size: 4.8vw;}
    .sls_form_content_left_txt p{font-size: 3.6vw;}
    .sls_form_content_left_txt p em{font-size: 3.2vw;margin-top: 2.8vw;}
    .sls_form_content_left_ul{margin-top: 3.2vw;}
    .sls_form_content_left_ul li{margin-top: 1.8vw;}
    .sls_form_content_left_ul li:nth-of-type(1) p a{font-size: 3.8vw;}
    .sls_form_content_left_ul li p{font-size: 3.6vw;}
    .sls_form_content_left_ul_ico{width: 6.8vw;margin-right: 3.2vw;}
    .sls_form_content_right_ul li{width: 100%;}
    .sls_form_content_right_ul li input{height: 8.8vw;}
    .sls_form_content_right_ul li p{font-size: 3.6vw;}
    .sls_form_btn{width: 38vw;height: 8.8vw;font-size: 3.6vw;margin-top: 3.8vw;}
}









