@charset "utf-8";
.no_padding{
    padding: 0;
}
.header {
    display: flex;
    position: relative;
    z-index: 99;
    padding: 35px 0;
}

.header .logoBox{
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 15px 0;
}
.header .logoBox a{
    display: inline-block;
    line-height: 0;
    float: left;
    padding-right: 20px;
}
.header .logoBox .t{
    float: left;
    width: 288px;
}
.header .logoBox .t p{
    float: left;
    font-size: 24px;
    color: #010066;
    font-style: italic;
    font-weight: bold;
}

.header .headerInfoBox{
    overflow: hidden;
}
.header .headerInfoBox li{
    float: left;
    margin-left: 40px;
}
.header .headerInfoBox li a{
    font-size: 16px;
    color: #000066;
    font-weight: bold;
    line-height: 44px;
    display: inline-block;
}

.header .headerNav{
    padding-right: 70px;
    position: relative;
}
.header .nav_list{
    padding-top: 28px;
}
.header .nav_list > li {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: top;
    zoom: 1;
    text-align: center;
    transition: all .3s;
}
.header .nav_list > li > a {
    display: block;
    position: relative;
}
.header .nav_list > li > a > span {
    display: inline-block;
    letter-spacing: 0;
    line-height: 34px;
    text-align: center;
    font-size: 18px;
    color: #010066;
    padding: 0 18px;
    font-weight: bold;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    transition: all .3s;
}
.header .nav_list > li.active > a > span,
.header .nav_list > li.on > a > span{
    color: #ffffff;
    background: #010066;
    transition: all .3s;
}
.nav_list > li > a > i {
    position: absolute;
    right: 15px;
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 34px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/reset/dropdown_menu.png") no-repeat center;
    -moz-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -ms-transition: all linear .3s;
    transition: all .3s;
}
.nav_list > li:hover i {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.nav_normal > li {
    position: relative;
}
.nav_normal > li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    display: none;
    z-index: 1;
    padding: 10px 0;
    background: #010066;
}
.nav_normal .dropdown_menu li {
    width: 100%;
}
.nav_normal .dropdown_menu li a {
    display: block;
    letter-spacing: 0;
    line-height: 34px;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    padding: 0 20px;
    white-space: nowrap;
}
.nav_normal .dropdown_menu li a:hover{
    background: #ffffff;
    color: #000000;
}

.nav_normal .dropdown_menu li.Three_menu{
    position: relative;
}
.nav_normal .dropdown_menu li.Three_menu > ul{
    position: absolute;
    top: 0;
    left: 100%;
    background: #010066;
    padding: 10px 0;
    min-width: 160px;
    z-index: 3;
    display: none;
}
.nav_normal .dropdown_menu li.Three_menu.on > a{
    background: #ffffff;
    color: #000000;
}

.header_search_box {
    position: absolute;
    float: right;
    right: 35px;
    top: 24px;
    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_language_box {
    position: absolute;
    float: right;
    right: 0;
    top: 24px;
    width: 32px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: 0 0;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s;
}
.header_language_ico{
    width: 75%;
    height: auto;
    cursor: pointer;
}
.header_language_list{
    width: 180px;
    max-height: 0px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #fff;
    z-index: 999;
    transition: all 0.6s;
}
.header_language_box:hover .header_language_list{
    max-height: 800px;
}
.header_language_list a{
    display: block;
    width: 100%;
    padding-left: 10px;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    border-bottom: 1px solid #ccc;

}
.header_language_list a:hover{
    background: #010066;
    color: #fff;
}
.header_language_ico img{
    width: 100%;
    height: auto;
    display: block;
}

.header_search_box.active {
    width: 260px;
    background: #010066;
    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: #000000;
}
.header_search_box a.active:before{
    content: '\e6ae';
    color: #ffffff;
}
.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: #ffffff;
}
.search_form input[type=text] {
    width: 100%;
    height: 40px;
    background: 0 0;
    border: 0;
    text-indent: 10px;
    font-size: 14px;
    color: #fff;
}
.search_form input[type=text]::-webkit-input-placeholder {
    color: #fff;
}
.search_form input.btn_search {
    width: 32px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    font-size: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
}

.m_header {
    display: none;
}


.footer_box{
    overflow: hidden;
    background: #000066 url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/footerBj.webp") no-repeat top center;
}
.footer_box .fast_navigation .conBox{
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}
.footer_box .fast_navigation .footerTextBox{
    width: 525px;
}
.footer_box .fast_navigation .footerTextBox .footerInfo li{
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
}
.footer_box .fast_navigation .footerTextBox .footerInfo li:nth-of-type(1){
    margin-bottom: 20px;
    font-weight: bold;
}
.footer_box .fast_navigation .footerTextBox .footerInfo li em{
    position: absolute;
    left: 0;
    font-size: 20px;
    top: 0;
}
.footer_box .fast_navigation .footerTextBox .footerInfo li,
.footer_box .fast_navigation .footerTextBox .footerInfo a{
    color: #ffffff;
    font-size: 16px;
}
.footer_box .fast_navigation .footerTextBox .footerInfo a.email_click{
    display: block;
}
.footer_box .fast_navigation .footerTextBox .text{
    background: #ffffff;
    margin-top: 30px;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.footer_box .fast_navigation .footerTextBox .text p{
    font-size: 16px;
    color: #000066;
    line-height: 34px;
    font-weight: bold;
}
.footer_box .fast_navigation .footerTextBox .text a{
    display: inline-block;
    margin-left: 15px;
    background: #000066;
    color: #ffffff;
    width: 85px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.footer_box .fast_navigation .footerTextBox .text a:hover{
    opacity: .85;
}

.footer_box .fast_navigation .itemBox{
    display: flex;
}
.footer_box .fast_navigation .item{
    margin-right: 100px;
    max-width: 260px;
    min-width: 150px;
}
.footer_box .fast_navigation .item:last-child{
    margin-right: 0;
}
.footer_box .fast_navigation h3{
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.footer_box .fast_navigation .item li{
    position: relative;
}
.footer_box .fast_navigation .item li:before{
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    left: -10px;
    top: 10px;
    background: rgba(255,255,255,.6);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.footer_box .fast_navigation .item li,
.footer_box .fast_navigation .item li a{
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}
.footer_box .fast_navigation li a:hover{
    color: #ffffff;
    text-decoration: underline;
}

.footer_box .fast_navigation .footerShare{
    margin-top: 20px;
}
.footer_box .fast_navigation .footerShare a{
    display: inline-block;
    margin-right: 10px;
    float: left;
}
.footer_box .fast_navigation .footerShare a em{
    font-size: 32px;
    color: #ffffff;
}
.footer_box .fast_navigation .footerShare a:hover{
    opacity: .85;
}


.footer_box .footer_copyright{
    overflow: hidden;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #333385;
}
.footer_box .footer_copyright .text p,
.footer_box .footer_copyright .text span,
.footer_box .footer_copyright .text a{
    display: inline-block;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    letter-spacing: 0;
    line-height: 1.5em;
}
.footer_box .footer_copyright .text a.sitemap{
    margin: 0 5px;
}
.footer_box .footer_copyright .text a:hover{
    color: #ffffff;
    text-decoration: underline;
}


/*banner*/
.banner{
    position: relative;
}
.banner .iframe_box{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    background: #000000;
}
.banner .iframe_box .colse_click{
    top: 10px;
    right: 10px;
}
.banner .iframe_box iframe{
    width: 100%;
    height: 100%;
}
.banner_slick .slick-prev,
.banner_slick .slick-next {
    width: 40px;
    height: 50px;
    margin-top: -25px;
    background-image: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/reset/skin.png");
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0);
}
.banner_slick .slick-prev {
    background-position: 0 0;
    left: 80px;
}
.banner_slick .slick-next {
    background-position: -150px 0;
    right: 80px;
}
.banner_slick .slick-dots li{
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    background: rgba(255,255,255,.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.banner_slick .slick-dots li.slick-active{
    background: rgba(0,0,0,0.5);
}
.banner_slick img{
    width: 100%;
}

.indexBox1
{
    padding: 95px 0;
}

.index1 {
    padding-top: 95px;
}

.indexBox1 .title,
.index1 .title{
    width: 540px;
    margin: auto;
    text-align: center;
}

.index1 .title {
    width: 80%;
}

.index1 .title a {
    color: #000066;
    font-weight: 600;
}

.indexBox1 .title h2,
.index1 .title h1{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    padding-bottom: 10px;
}
.indexBox1 .title p,
.index1 .title p{
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}
.indexBox1 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin-top: 55px;
    margin-left: -5px;
    margin-right: -5px;
}
.indexBox1 .item{
    width: 25%;
    float: left;
    padding: 0 5px;
    text-align: center;
}
.indexBox1 .item .img{
    border: 1px solid #666666;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}
.indexBox1 .item .img img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .2s;
}
.indexBox1 .item:hover .img img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .2s;
}
.indexBox1 .item .text{
    margin-top: 20px;
}
.indexBox1 .item .text a{
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}
.indexBox1 .item .text a:hover{
    color: #000066;
}

.indexBox2{
    padding: 125px 0;
    overflow: hidden;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/indexBj1.webp") no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.indexBox2 .indexCustomizationVideo{
    width: 50%;
    float: left;
    line-height: 0;
}
.indexBox2 .indexCustomizationVideo .video_click:after{
    display: none;
}
.indexBox2 .textBox{
    width: 50%;
    float: left;
}
.indexBox2 .textBox h2{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    padding-bottom: 20px;
}
.indexBox2 .textBox p{
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.indexBox3{
    padding-top: 90px;
}
.indexBox3 .title h2{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 30px;
}
.indexBox3 .itemBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.indexBox3 .item{
    width: 49%;
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.indexBox3 .item .img{
    width: 50%;
    float: left;
    line-height: 0;
    padding-right: 20px;
}
.indexBox3 .item .img img{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.indexBox3 .item .text{
    width: 50%;
    float: left;
}
.indexBox3 .item .text h3{
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px;
}
.indexBox3 .item .text p{
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.indexBox4{
    padding: 90px 0 60px;
}
.indexBox4 .title h2{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 50px;
}
.indexBox4 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.indexBox4 .item{
    width: 25%;
    padding: 0 10px;
    text-align: center;
    float: left;
    margin-bottom: 20px;
}
.indexBox4 .item .img{
    line-height: 0;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.indexBox4 .item .text a{
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

.indexBox5{
    padding: 135px 0 115px;
    overflow: hidden;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/indexBj2.webp") no-repeat top center;
}
.indexBox5 .textBox{
    width: 50%;
    float: left;
    padding-left: 100px;
    padding-top: 65px;
    padding-right: 190px;
}
.indexBox5 .textBox .text h2{
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 20px;
}
.indexBox5 .textBox .text p{
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}
.indexBox5 .textBox .text a{
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255,255,255,.6);
}
.indexBox5 .textBox .text a:hover{
    color: #ffffff;
    text-decoration: underline;
}
.indexBox5 .textBox .tpBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.indexBox5 .textBox .tp{
    padding: 0 10px;
    margin-top: 20px;
}
.indexBox5 .indexAboutVideo{
    width: 50%;
    float: left;
    line-height: 0;
    padding-left: 15px;
}
.indexBox5 .indexAboutVideo a.video_click:after{
    display: none;
}

.indexBox6{
    padding: 80px 0;
    overflow: hidden;
}
.indexBox6 .textBox{
    width: 50%;
    float: left;
    padding-right: 145px;
}
.indexBox6 .textBox h2{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    padding-bottom: 20px;
}
.indexBox6 .textBox .tpBox{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 20px;
}
.indexBox6 .textBox .tp{
    width: 33.33%;
    text-align: center;
    padding: 0 10px;
    margin-top: 20px;
}
.indexBox6 .indexFormBox{
    width: 50%;
    float: left;
    padding-right: 100px;
}
.indexBox6 .indexFormBox h2{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    padding-bottom: 20px;
}
.indexBox6 .indexFormBox form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.indexBox6 .indexFormBox .info{
    margin-bottom: 15px;
    position: relative;
    line-height: 0;
}
.indexBox6 .indexFormBox .info.w160{
    width: 160px;
}
.indexBox6 .indexFormBox .info.w190{
    width: 190px;
}
.indexBox6 .indexFormBox .info.w210{
    width: 210px;
}
.indexBox6 .indexFormBox .info.w200{
    width: 200px;
}
.indexBox6 .indexFormBox .info.w100{
    width: 100%;
}
.indexBox6 .indexFormBox .codeImg{
    position: absolute;
    top: 6px;
    right: 5px;
    width: 80px;
    height: 32px;
    cursor: pointer;
}
.indexBox6 .indexFormBox .info .tips{
    display: block;
    color: #ffffff;
    line-height: 14px;
    font-size: 12px;
    background: #cc0000;
    text-align: center;
}
.indexBox6 .indexFormBox .info input[type="text"]{
    width: 100%;
    height: 45px;
    border: 1px solid #333333;
    padding: 0 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox6 .indexFormBox .info textarea{
    width: 100%;
    height: 80px;
    border: 1px solid #333333;
    padding: 10px 5px;
    resize: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox6 .indexFormBox .info input[type="submit"]{
    width: 100px;
    height: 36px;
    border: 0;
    background: #000066;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s;
}
.indexBox6 .indexFormBox .info input[type="submit"]:hover{
    opacity: .85;
    transition: all .3s;
}

.indexBox7{
    padding: 65px 0;
    background: #f5f5f5;
    overflow: hidden;
}
.indexBox7 .title h2{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    padding-bottom: 45px;
}
.indexBox7 .itemBox{
    overflow: hidden;
}
.indexBox7 .item{
    width: 33.33%;
    float: left;
    margin-bottom: 20px;
}
.indexBox7 .item .img{
    width: 50%;
    float: left;
    line-height: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.indexBox7 .item .img img{
    width: 100%;
}
.indexBox7 .item .text{
    width: 50%;
    float: left;
    padding: 20px 20px 0;
}
.indexBox7 .item .text h3 a{
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.indexBox7 .item .text h3 a:hover{
    color: #000066;
}
.indexBox7 .item .text p{
    font-size: 16px;
    color: #818181;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.indexBox7 .item .text span{
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #818181;
}

.solutionBox .title h1{
    text-align: center;
    color: #ffffff;
    line-height: 78px;
    background: #010066;
    font-weight: bold;
    font-size: 40px;
}
.solutionBox .imgBox{
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
.solutionBox .imgBox:last-child{
    margin-bottom: 0;
}
.solutionBox .imgBox .img{
    line-height: 0;
    text-align: center;
}
.solutionBox .imgBox .textBox{
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: -115px;
    background: rgba(0,0,0,0.5);
    padding: 20px 0;
    transition: all .3s;
}
.solutionBox .imgBox:hover .textBox{
    top: 0;
    margin-top: 0;
    background: rgba(1,0,102,.8);
    transition: all .3s;
}
.solutionBox .imgBox .text{
    overflow: hidden;
}
.solutionBox .imgBox:hover .conBox{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solutionBox .imgBox .text h2{
    width: 30%;
    float: left;
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1;
}
.solutionBox .imgBox:hover .text h2{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding-left: 0;
}
.solutionBox .imgBox .text .t{
    width: 70%;
    float: left;
}
.solutionBox .imgBox:hover .text .t{
    width: 100%;
    text-align: center;
}
.solutionBox .imgBox .text .t p{
    font-size: 16px;
    color: #ffffff;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.solutionBox .imgBox .text .t a{
    display: none;
    margin-top: 30px;
    color: #ffffff;
    font-size: 16px;
}
.solutionBox .imgBox:hover .text .t a{
    display: inline-block;
}
.solutionBox .imgBox .text .t a:hover{
    text-decoration: underline;
}
.solutionBox .imgConBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.solutionBox .imgConBox .imgBox{
    width: 49.2%;
}
.solutionBox .imgConBox .imgBox:last-child{
    margin-bottom: 30px;
}
.solutionBox .imgConBox .imgBox .text h2{
    width: 375px;
    float: left;
    padding-left: 20px;
}
.solutionBox .imgConBox .imgBox .text .t{
    margin-left: 375px;
    width: auto;
    float: none;
}
.solutionBox .imgConBox .imgBox:hover .text h2,
.solutionBox .imgConBox .imgBox:hover .text .t{
    width: 100%;
    float: left;
}
.solutionBox .imgConBox .imgBox:hover .text .t{
    margin: 0;
    padding: 0 50px;
}

.caseBox1 .title h1{
    text-align: center;
    color: #ffffff;
    line-height: 78px;
    background: #010066;
    font-weight: bold;
    font-size: 40px;
}
.caseBox2{
    padding: 90px 0;
}
.caseBox2 .text{
    padding-bottom: 20px;
}
.caseBox2 .text p{
    font-size: 20px;
    color: #333333;
}
.caseBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.caseBox2 .item{
    width: 25%;
    float: left;
    padding: 0 10px;
    margin-top: 30px;
}
.caseBox2 .item .conBox{
    height: 100%;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #f2f2f2;
    transition: all .3s;
}
.caseBox2 .item .conBox:hover{
    background: #000066;
    transition: all .3s;
}
.caseBox2 .item .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
}
.caseBox2 .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;
}
.caseBox2 .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;
}
.caseBox2 .item .t{
    text-align: center;
    padding: 20px 15px;
}
.caseBox2 .item .t a{
    display: block;
    color: #333333;
    font-size: 30px;
    font-weight: bold;
    padding: 10px 0;
    transition: all .3s;
}
.caseBox2 .item .t p{
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: all .3s;
}
.caseBox2 .item .conBox:hover .t h2 a,
.caseBox2 .item .conBox:hover .t p{
    color: #ffffff;
    transition: all .3s;
}

.caseDetailBox{
    padding: 80px 0;
}
.caseDetailBox h3{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    padding-bottom: 10px;
    padding-right: 270px;
    line-height: 1.3;
}
.caseDetailBox p{
    font-size: 20px;
    color: #6e6e6e;
    line-height: 1.5;
}
.caseDetailBox table,
.caseDetailBox table tr,
.caseDetailBox table td{
    border: 0;
    padding: 0;
    text-align: center;
}
.caseDetailBox table td{
    padding-bottom: 10px;
}

.caseDetailBox2{
    padding-bottom: 65px;
}
.caseDetailBox2 a.more{
    display: inline-block;
    font-size: 24px;
    color: #010066;
    margin-bottom: 25px;
}
.caseDetailBox2 a.more:hover{
    text-decoration: underline;
}
.caseDetailBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.caseDetailBox2 .item{
    width: 25%;
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
}
.caseDetailBox2 .item .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.caseDetailBox2 .item .text a{
    font-size: 20px;
    color: #333333;
    padding-top: 10px;
    display: inline-block;
}
.video_box1 .title{
    text-align: center;
    padding: 40px 0 0;
}
.video_box1 .title h1 {
    font-size: 32px;
    color: #111111;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.video_box2{
    margin-bottom: 40px;
}
.video_box2 .title h2{
    font-size: 26px;
    color: #333;
    font-weight: bold;
    padding: 10px 115px 10px 0;
    margin-bottom: 30px;
    border-bottom: 10px solid #010066;
}
.video_box2 .title h2 a{
    position: absolute;
    top: 0;
    right: 10px;
    display: block;
    width: 115px;
    height: 45px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    line-height: 45px;
    background: #010066;
}
.video_box2 .title h2 a.video_click:after{
    display: none;
}
.video_box2 .title h2 a:hover{
    opacity: .85;
}
.aboutBanner{
    line-height: 0;
    text-align: center;
    position: relative;
}
.aboutBanner h1{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 100px;
    margin-top: -50px;
    line-height: 1;
    color: #FFFFFF;
}

.aboutConBox{
    padding-top: 55px;
}
.aboutBox1{
    padding: 25px 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
}
.aboutBox1.is_stuck{
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}
.aboutBox1 .aboutTab{
    text-align: center;
}
.aboutBox1 .aboutTab .btn{
    width: 16.66666%;
    float: left;
    text-align: center;
    position: relative;
}
.aboutBox1 .aboutTab .btn:before{
    position: absolute;
    content: '';
    width: 50%;
    height: 1px;
    background: #BBBBBB;
    left: 0;
    bottom: 0;
}
.aboutBox1 .aboutTab .btn:after{
    position: absolute;
    content: '';
    width: 50%;
    height: 1px;
    background: #BBBBBB;
    right: 0;
    bottom: 0;
}
.aboutBox1 .aboutTab .btn:first-child:before{
    display: none;
}
.aboutBox1 .aboutTab .btn:last-child:after{
    display: none;
}
.aboutBox1 .aboutTab .btn a{
    font-size: 20px;
    line-height: 28px;
    color: #666666;
    display: block;
    padding-bottom: 15px;
    position: relative;
}
.aboutBox1 .aboutTab .btn a:before{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    background: #BBBBBB;
    border-radius: 50%;
    z-index: 2;
}
.aboutBox1 .aboutTab .btn a.on,
.aboutBox1 .aboutTab .btn a:hover{
    color: #010066;
}
.aboutBox1 .aboutTab .btn a.on:before,
.aboutBox1 .aboutTab .btn a:hover:before{
    background: #010066;
}

.aboutBox2{
    padding-top: 55px;
}
.aboutBox2{
    position: relative;
    z-index: 2;
}
.aboutBox2 .text h2{
    font-size: 36px;
    color: #333333;
    padding: 0 220px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 30px;
}
.aboutBox2 .text p{
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}
.aboutBox2 .aboutVideo{
    text-align: center;
    padding: 40px 0;
}
.aboutBox2 .aboutVideo a{
    font-size: 18px;
    color: #010066;
    padding-top: 45px;
    display: inline-block;
    line-height: 1;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/aboutVideo.png") no-repeat top center;
}
.aboutBox2 .aboutVideo a.video_click:after{
    display: none;
}
.aboutBox2 .imgBox{
    display: flex;
    justify-content: space-between;
}
.aboutBox2 .imgBox .img{
    line-height: 0;
}

.aboutBox3{
    position: relative;
}
.aboutBox3:before{
    position: absolute;
    content: '';
    top: -30%;
    right: -70%;
    width: 1741px;
    height: 1741px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/aboutBj.png") no-repeat center center;
}
.aboutBox3 .title{
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}
.aboutBox3 .title h2{
    font-size: 36px;
    color: #333333;
    padding-bottom: 20px;
}
.aboutBox3 .title p{
    font-size: 16px;
    color: #666666;
}
.aboutBox3 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    position: relative;
    z-index: 1;
}
.aboutBox3 .item{
    width: 20%;
    height: 100%;
    float: left;
    padding: 0 10px;
    position: relative;
    top: 0;
    transition: all .3s;
}
.aboutBox3 .item:hover{
    top: -10px;
    transition: all .3s;
}
.aboutBox3 .item .conBox{
    padding: 40px 20px;
    min-height: 350px;
    text-align: center;
    background: #ffffff;
    -webkit-box-shadow: 0 0 6px rgba(1, 11, 102, 0.1);
    -moz-box-shadow: 0 0 6px rgba(1, 11, 102, 0.1);
    box-shadow: 0 0 6px rgba(1, 11, 102, 0.1);
}
.aboutBox3 .item .img{
    line-height: 0;
    margin-bottom: 30px;
}
.aboutBox3 .item .text h3{
    font-size: 20px;
    color: #333333;
    padding-bottom: 15px;
}
.aboutBox3 .item .text p{
    font-size: 14px;
    color: #808080;
    line-height: 1.7;
    padding: 0 15px;
}

.aboutBox4{
    position: relative;
    z-index: 2;
}
.aboutBox4 .title{
    text-align: center;
    padding: 80px 0 40px;
}
.aboutBox4 .title h2{
    font-size: 36px;
    color: #333333;
    padding-bottom: 20px;
}
.aboutBox4 .title p{
    font-size: 16px;
    color: #666666;
}
.aboutBox4 .aboutCertificateSlick .slick-prev,
.aboutBox4 .aboutCertificateSlick .slick-next{
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/aboutArrow1.png") no-repeat center center;
}
.aboutBox4 .aboutCertificateSlick .slick-prev{
    left: -20px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.aboutBox4 .aboutCertificateSlick .slick-next{
    right: -20px;
}
.aboutBox4 .aboutCertificateSlick .slick_first{
    text-align: center;
    padding: 0 10px;
}
.aboutBox4 .aboutCertificateSlick .slick_first img{
    clear: both;
    display: block;
    margin: auto;
    border: 1px dashed #333333;
}
.aboutBox4 .aboutCertificateSlick .slick_first p{
    margin-top: 10px;
    color: #333333;
}

.aboutBox5{
    position: relative;
}
.aboutBox5:before{
    position: absolute;
    content: '';
    top: -30%;
    left: -70%;
    width: 1741px;
    height: 1741px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/aboutBj.png") no-repeat center center;
}
.aboutBox5 .title h2{
    font-size: 36px;
    color: #333333;
    text-align: center;
    padding: 80px 0 10px;
    position: relative;
    z-index: 2;
}
.aboutBox5 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    position: relative;
    z-index: 2;
}
.aboutBox5 .item{
    width: 33.33%;
    padding: 0 20px;
    margin-top: 40px;
}
.aboutBox5 .item .text{
    text-align: center;
    min-height: 240px;
    padding: 40px 20px 20px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 6px rgba(1, 11, 102, 0.1);
    -moz-box-shadow: 0 0 6px rgba(1, 11, 102, 0.1);
    box-shadow: 0 0 6px rgba(1, 11, 102, 0.1);
}
.aboutBox5 .item .text h3{
    font-size: 20px;
    color: #333333;
    padding-bottom: 20px;
}
.aboutBox5 .item .text p{
    font-size: 14px;
    color: #808080;
    line-height: 1.7;
}

.aboutBox6{
    position: relative;
    z-index: 2;
}
.aboutBox6 .title h2{
    font-size: 36px;
    color: #333333;
    text-align: center;
    padding: 80px 0 50px;
}
.aboutBox6 .con1 .text{
    width: 55%;
}
.aboutBox6 .con1 .text h3{
    font-size: 20px;
    color: #333333;
    padding-bottom: 15px;
}
.aboutBox6 .con1 .text p{
    line-height: 2;
    font-size: 14px;
    color: #666666;
}
.aboutBox6 .con1 .imgBox{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.aboutBox6 .con1 .img{
    line-height: 0;
}
.aboutBox6 .con2{
    padding-top: 80px;
    overflow: hidden;
}
.aboutBox6 .con2 .text{
    width: 55%;
    text-align: right;
    float: right;
}
.aboutBox6 .con2 .text h3{
    font-size: 20px;
    color: #333333;
    padding-bottom: 15px;
}
.aboutBox6 .con2 .text p{
    line-height: 2;
    font-size: 14px;
    color: #666666;
}
.aboutBox6 .con2 .imgBox{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.aboutBox6 .con2 .img{
    line-height: 0;
}
.aboutBox6 .con3{
    padding-top: 80px;
    overflow: hidden;
}
.aboutBox6 .con3 .imgBox{
    width: 55%;
    float: left;
}
.aboutBox6 .con3 .imgBox .slick-prev,
.aboutBox6 .con3 .imgBox .slick-next{
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/aboutArrow2.png") no-repeat center center;
}
.aboutBox6 .con3 .imgBox .slick-prev{
    left: 30px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.aboutBox6 .con3 .imgBox .slick-next{
    right: 30px;
}
.aboutBox6 .con3 .img{
    line-height: 0;
}
.aboutBox6 .con3 .text{
    width: 45%;
    float: left;
    padding-left: 30px;
}
.aboutBox6 .con3 .text h3{
    font-size: 20px;
    color: #333333;
    padding-bottom: 15px;
}
.aboutBox6 .con3 .text p{
    line-height: 2;
    font-size: 14px;
    color: #666666;
}
.aboutBox6 .con4{
    padding-top: 80px;
}
.aboutBox6 .con4 .text{
    width: 55%;
}
.aboutBox6 .con4 .text h3{
    font-size: 20px;
    color: #333333;
    padding-bottom: 15px;
}
.aboutBox6 .con4 .text p{
    line-height: 2;
    font-size: 14px;
    color: #666666;
}
.aboutBox6 .con4 .imgBox{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.aboutBox6 .con4 .img{
    line-height: 0;
}

.aboutBox7{
    padding-bottom: 50px;
    position: relative;
}
.aboutBox7:before{
    position: absolute;
    content: '';
    top: -30%;
    right: -70%;
    width: 1741px;
    height: 1741px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/aboutBj.png") no-repeat center center;
}
.aboutBox7 .title{
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}
.aboutBox7 .title h2{
    font-size: 36px;
    color: #333333;
    padding-bottom: 20px;
}
.aboutBox7 .title p{
    font-size: 16px;
    color: #666666;
}
.aboutBox7 .itemBox{
    position: relative;
    padding-top: 120px;
    position: relative;
    z-index: 2;
}
.aboutBox7 .itemBox:before{
    position: absolute;
    content: '';
    width: 5px;
    top: 0;
    bottom: 150px;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(1,0,102,0.2);
}
.aboutBox7 .item{
    overflow: hidden;
}
.aboutBox7 .item .text{
    width: 50%;
    min-height: 150px;
    float: left;
    text-align: right;
    padding-right: 160px;
    padding-top: 13px;
    position: relative;
}
.aboutBox7 .item:nth-of-type(2n) .text{
    float: right;
    text-align: left;
    padding-right: 0;
    padding-left: 160px;
}
.aboutBox7 .item .text:before{
    position: absolute;
    content: '';
    width: 150px;
    height: 5px;
    right: 2px;
    top: 20px;
    background: rgba(1,0,102,0.2);
}
.aboutBox7 .item:nth-of-type(2n) .text:before{
    right: auto;
    left: 3px;
}
.aboutBox7 .item .text:after{
    position: absolute;
    content: '';
    width: 45px;
    height: 45px;
    top: 0;
    right: -23px;
    border: 5px solid #ffffff;
    background: #000066;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.aboutBox7 .item:nth-of-type(2n) .text:after{
    right: auto;
    left: -23px;
}
.aboutBox7 .item .text h3{
    font-size: 18px;
    color: #010066;
    padding-bottom: 10px;
}

.aboutBox7 .item .text p{
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.contactBanner {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-background-size: cover;
    background-size: cover
}

.contactBanner h1{
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    line-height: 1
}

.contactBox1 .conBox {
    display: inline-block;
    width: 100%;
    padding: 60px 0
}

.contactBox1 .infoBox {
    width: 50%;
    float: left;
    padding-right: 90px
}

.contactBox1 .infoBox h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000066;
    width: 100%;
    padding-left: 120px;
    padding-top: 40px;
    padding-bottom: 8px;
    margin-bottom: 45px;
    background: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/contactIco.png") no-repeat left bottom
}

.contactBox1 .infoBox li {
    padding-left: 55px;
    background-repeat: no-repeat;
    background-position: left 2px;
    font-size: 16px;
    color: #807f7d;
    font-weight: 300;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 20px
}

.contactBox1 .infoBox li.contactTel {
    background-image: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/contactTel.png")
}

.contactBox1 .infoBox li.contactEmail {
    background-image: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/contactEmail.png")
}

.contactBox1 .infoBox li.contactAddress {
    background-image: url("https://sinokaydeli.usa18.wondercdn.com/public/static/images/home/en-us/contactAddress.png")
}

.contactBox1 .infoBox li a {
    display: inline-block;
    font-size: 16px;
    color: #807f7d;
    font-weight: 300
}
.contactBox1 .infoBox li a:hover{
    color: #000066;
    text-decoration: underline;
}

.contactBox1 .infoBox .googlemap {
    padding-top: 30px;
    line-height: 0
}

.contactBox1 .infoBox iframe {
    width: 100%;
    height: 280px
}

.contactBox1 .contactFormBox {
    width: 50%;
    float: left;
    padding: 35px 50px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.5)
}

.contactBox1 .contactFormBox .text h2 {
    font-size: 30px;
    color: #393a3b;
    font-weight: 700;
    padding-bottom: 15px
}

.contactBox1 .contactFormBox .text p {
    font-size: 16px;
    color: #807f7d;
    font-weight: 300
}

.contactBox1 .contactFormBox .info {
    margin-top: 20px;
    position: relative
}

.contactBox1 .contactFormBox .info.textarea {
    line-height: 0
}

.contactBox1 .contactFormBox .contactForm {
    padding-right: 140px
}

.contactBox1 .contactFormBox .label_control {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 48px;
    font-size: 14px;
    color: #67686b
}

.contactBox1 .contactFormBox .info.textarea .label_control {
    left: 10px
}

.contactBox1 .contactFormBox .tips {
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    font-size: 12px;
    line-height: 14px;
    background: #e00;
    color: #fff;
    text-align: center
}

.contactBox1 .contactFormBox input[type=text] {
    width: 100%;
    height: 48px;
    border: 0;
    border-bottom: 1px solid #ccc
}

.contactBox1 .contactFormBox textarea {
    width: 100%;
    height: 115px;
    padding: 12px 10px;
    resize: none;
    border: 1px solid #ccc
}

.contactBox1 .contactFormBox input[type=submit] {
    width: 115px;
    height: 30px;
    background: #000066;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all .3s
}

.contactBox1 .contactFormBox input[type=submit]:hover {
    opacity: .85;
    transition: all .3s
}

.contactBox2 {
    background: #fafafa;
    overflow: hidden;
}

.contactBox2 .title h2 {
    padding: 60px 0;
    color: #000066;
    font-size: 30px;
    text-align: center;
    font-weight: 700
}

.contactBox2 .itemBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
    position: relative;
    z-index: 2
}

.contactBox2 .item {
    width: 24%;
    background: #fff;
    margin-bottom: 40px;
    padding: 32px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.3)
}

.contactBox2 .item h3 {
    font-size: 20px;
    color: #222;
    padding-bottom: 20px
}

.contactBox2 .item p {
    font-size: 16px;
    color: #807f7d;
}
.productForm    .inquire_form{
	width: 100%;
	margin: 30px 0 0 ;
}
.productForm h2{
	    background: #212121;
	    padding-left: 20px;
	    position: relative;
	    font-size: 18px;
	    color: #fff;
	    letter-spacing: 0;
	    line-height: 2.4em;
}
.productForm    .inquire_form .info{
	width: 100%;
}
@media (max-width: 1768px) {
    .header .logoBox .t{
        width: 240px;
    }
    .header .logoBox .t p{
        font-size: 18px;
    }
}

@media (max-width: 1620px){
    .aboutBanner h1{
        font-size: 60px;
    }
}
@media (max-width: 1450px){
    .header .nav_list > li > a > span{
        padding: 0 10px;
    }
    .footer_box .fast_navigation .itemBox{
        padding-left: 50px;
    }
    .footer_box .fast_navigation .item{
        margin-right: 20px;
    }
    .footer_box .fast_navigation .item li, .footer_box .fast_navigation .item li a{
        font-size: 14px;
    }
    .indexBox2 .textBox{
        padding-left: 40px;
    }
    .indexBox5 .textBox{
        padding-left: 0;
    }
    .indexBox6 .indexFormBox .info.w160,
    .indexBox6 .indexFormBox .info.w190,
    .indexBox6 .indexFormBox .info.w210{
        width: 31%;
    }
    .aboutBanner h1{
        font-size: 50px;
        margin-top: -25px;
    }
    .contactBanner h1{
        font-size: 50px;
    }
}
@media (max-width: 1220px){
    .header{
        padding: 15px 0;
    }
    .header .logoBox{
        padding: 0;
    }
    .header .logoBox .t{
        display: none;
    }
    .header .headerInfoBox li a{
        line-height: 30px;
    }
    .header .nav_list{
        padding-top: 14px;
    }
    .header_language_box,
    .header_search_box{
        top: 11px;
    }

    .footer_box .fast_navigation .footerTextBox .text a{
        margin-left: 0;
    }

    .indexBox1,
    .index1
    {
        padding: 50px 0;
    }
    .indexBox1 .itemBox{
        margin-top: 30px;
    }
    .indexBox2{
        padding: 50px 0;
    }
    .indexBox3{
        padding-top: 50px;
    }
    .indexBox3 .item{
        margin-top: 20px;
    }
    .indexBox3 .item .text h3{
        margin-bottom: 10px;
    }
    .indexBox4{
        padding: 50px 0 30px;
    }
    .indexBox4 .title h2{
        padding-bottom: 30px;
    }
    .indexBox4 .item .text a{
        font-size: 16px;
    }
    .indexBox5{
        padding: 50px 0;
        -webkit-background-size: cover;
        background-size: cover;
    }
    .indexBox5 .textBox{
        padding-top: 0;
        padding-right: 100px;
    }

    .indexBox6{
        padding: 50px 0;
    }
    .indexBox6 .textBox{
        padding-right: 50px;
    }
    .indexBox6 .indexFormBox{
        padding-right: 0;
    }
    .indexBox7{
        padding: 50px 0;
    }
    .indexBox7 .title h2{
        padding-bottom: 30px;
    }
    .indexBox7 .item{
        width: 100%;
    }
    .indexBox7 .item .img{
        width: 180px;
    }
    .indexBox7 .item .text{
        width: auto;
        margin-left: 180px;
        float: none;
        padding-top: 5px;
    }

    .aboutBanner h1{
        font-size: 40px;
        margin-top: -20px;
    }

    .aboutBox2 .text h2,
    .aboutBox3 .title h2,
    .aboutBox4 .title h2,
    .aboutBox5 .title h2,
    .aboutBox6 .title h2,
    .aboutBox7 .title h2{
        font-size: 30px;
        padding-bottom: 10px;
    }

    .aboutBox3:before,
    .aboutBox7:before{
        right: -115%;
        top: -60%;
    }

    .aboutBox5:before{
        left: -115%;
        top: 0;
    }

    .aboutBox1{
        padding: 50px 0;
    }
    .aboutBox2 .text h2{
        padding: 0;
    }
    .aboutBox2 .imgBox .img{
        padding: 0 5px;
    }
    .aboutBox3 .title{
        padding: 50px 0 30px;
    }
    .aboutBox3 .item{
        width: 33.33%;
        margin-bottom: 15px;
    }
    .aboutBox3 .item:nth-of-type(4),
    .aboutBox3 .item:nth-of-type(5){
        width: 50%;
    }

    .aboutBox4 .title{
        padding: 50px 0 30px;
    }
    .aboutBox4 .aboutCertificateSlick .slick_first{
        padding: 0 5px;
    }
    .aboutBox5 .title h2{
        padding-top: 50px;
    }
    .aboutBox5 .itemBox{
        margin: 0 -10px;
    }
    .aboutBox5 .item{
        margin-top: 20px;
        padding: 0 10px;
    }
    .aboutBox6 .title h2{
        padding-top: 50px;
    }
    .aboutBox6 .con2,
    .aboutBox6 .con3,
    .aboutBox6 .con4{
        padding-top: 50px;
    }
    .aboutBox6 .con1 .text,
    .aboutBox6 .con2 .text,
    .aboutBox6 .con4 .text{
        width: 100%;
    }
    .aboutBox6 .con1 .img,
    .aboutBox6 .con2 .img,
    .aboutBox6 .con4 .img{
        padding: 0 5px;
    }
    .aboutBox7 .title{
        padding: 50px 0 30px;
    }
    .aboutBox7 .itemBox{
        padding-top: 50px;
    }
    .aboutBox7 .item .text{
        padding-right: 30px;
    }
    .aboutBox7 .item:nth-of-type(2n) .text{
        padding-left: 30px;
    }
    .aboutBox7 .item .text:before{
        display: none;
    }

    .solutionBox .title h1,
    .solutionBox .imgBox .text h2{
        font-size: 30px;
    }
    .solutionBox .imgBox .img img{
        width: 100%;
    }
    .solutionBox .imgConBox .imgBox{
        width: 100%;
    }

    .caseBox1 .title h1{
        font-size: 30px;
    }
    .caseBox2{
        padding: 50px 0;
    }
    .caseBox2 .item .t{
        padding: 15px 10px;
    }
    .caseBox2 .text p{
        font-size: 16px;
    }
    .caseBox2 .item .t a{
        font-size: 20px;
        padding-top: 0;
    }

    .caseDetailBox{
        padding: 50px 0;
    }
    .caseDetailBox h3{
        font-size: 20px;
        padding-right: 0;
    }
    .caseDetailBox p{
        font-size: 16px;
    }
    .caseDetailBox table td{
        padding: 0 5px 10px;
    }
    .caseDetailBox2 a.more{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .caseDetailBox2 .item .text a{
        font-size: 16px;
    }

    .contactBanner{
        height: 340px;
    }
    .contactBanner h1{
        font-size: 30px;
    }
    .contactBox1 .conBox{
        padding: 50px 0;
    }
    .contactBox1 .infoBox{
        padding-right: 40px;
    }
    .contactBox1 .contactFormBox .contactForm{
        padding-right: 0;
    }
    .contactBox2 .title h2{
        padding: 50px 0 30px;
    }
    .contactBox2 .item{
        margin-bottom: 20px;
        width: 49%;
    }
}
@media (max-width: 992px){

    .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: 99999;
        -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%;
        text-align: center;
        height: 60px;
        line-height: 0;
        font-size: 0;
        zoom: 1;
    }

    .logo_box img {
        padding: 5px 0;
        height: 100%;
    }

    .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: #212121;
        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("https://sinokaydeli.usa18.wondercdn.com/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;
    }
    .m_header_language_box{
        right: 10px;
    }
    .header_language_box:hover .header_language_list{
        left: auto;
        transform: none;
        right: 0;
    }
    .Three_menu_box{
        padding-left: 15px;
    }

    .footer_box .fast_navigation .footerTextBox{
        width: 100%;
    }
    .footer_box .fast_navigation .footerNav{
        display: none;
    }

    .indexBox2 .indexCustomizationVideo{
        width: 100%;
        text-align: center;
    }
    .indexBox2 .textBox{
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
    .indexBox3 .item{
        width: 100%;
    }
    .indexBox3 .item .img{
        width: 40%;
    }
    .indexBox3 .item .text{
        width: 60%;
    }
    .indexBox4 .item{
        width: 33.33%;
    }
    .indexBox5 .textBox{
        width: 100%;
        padding-right: 0;
    }
    .indexBox5 .indexAboutVideo{
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
    }
    .indexBox6 .textBox{
        width: 100%;
        padding-right: 0;
    }
    .indexBox6 .textBox .tpBox{
        padding-top: 0;
    }
    .indexBox6 .indexFormBox{
        width: 100%;
        padding-top: 50px;
    }

    .aboutBanner h1{
        font-size: 30px;
        margin-top: -15px;
    }

    .aboutBox3:before,
    .aboutBox5:before,
    .aboutBox7:before{
        display: none;
    }

    .aboutBox1{
        display: none;
    }
    .aboutBox2{
        padding-top: 50px;
    }
    .aboutBox5 .item{
        width: 50%;
    }
    .aboutBox6 .con3 .imgBox{
        width: 100%;
    }
    .aboutBox6 .con3 .text{
        width: 100%;
        padding-left: 0;
        padding-top: 40px;
    }
    .aboutBox7 .itemBox{
        padding-top: 0;
    }
    .aboutBox7 .itemBox:before{
        display: none;
    }
    .aboutBox7 .item .text{
        width: 100%;
        min-height: 0;
        padding-top: 0;
        padding-bottom: 20px;
        padding-right: 0 !important;
        padding-left: 20px !important;
        text-align: left !important;
    }
    .aboutBox7 .item .text:after{
        width: 10px !important;
        height: 10px !important;
        left: 0 !important;
        border: 0 !important;
        top: 6px !important;
    }

    .solutionBox .imgBox .textBox{
        margin-top: -150px;
    }
    .solutionBox .imgBox .text{
        width: 767px;
        margin: auto;
    }
    .solutionBox .imgBox .text h2{
        width: 100% !important;
        text-align: center;
        padding-bottom: 10px;
    }
    .solutionBox .imgBox .text .t{
        width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
        float: left !important;
    }

    .caseBox2 .itemBox{
        margin: 0 -5px;
    }
    .caseBox2 .item{
        width: 33.33%;
        padding: 0 5px;
    }

    .caseDetailBox2 .itemBox{
        margin: 0 -5px;
    }
    .caseDetailBox2 .item{
        width: 33.3%;
        padding: 0 5px;
    }

    .contactBanner{
        height: 280px;
    }
    .contactBox1 .infoBox h2{
        padding-top: 4px;
        margin-bottom: 20px;
    }
    .contactBox1 .infoBox{
        width: 100%;
        padding-right: 0;
    }
    .contactBox1 .infoBox li{
        margin-bottom: 5px;
    }
    .contactBox1 .contactFormBox{
        width: 100%;
        margin-top: 50px;
        padding: 30px 20px;
    }
}
@media (max-width: 767px){
    .header_language_list a{
        line-height: 8.8vw;
        font-size: 3.6vw;
    }
    #back_top{
        width: 0;
        height: 0;
        overflow: hidden;
    }
    .banner_slick .slick-prev{
        left: 15px;
    }
    .banner_slick .slick-next{
        right: 15px;
    }

    .indexBox1 .title,
    .index1 .title{
        width: 100%;
    }
    .indexBox1 .item{
        width: 50%;
        margin-bottom: 30px;
    }
    .indexBox4 .itemBox{
        margin: 0 -5px;
    }
    .indexBox4 .item{
        padding: 0 5px;
    }

    .aboutBox2 .aboutVideo{
        padding: 20px 0;
    }
    .aboutBox3 .item{
        width: 50%;
    }
    .aboutBox3 .item:last-child{
        width: 100%;
    }
    .aboutBox3 .item:last-child .conBox{
        min-height: 0;
    }
    .aboutCertificateSlick{
        padding: 0 30px;
    }
    .aboutBox4 .aboutCertificateSlick .slick-prev{
        left: 0;
    }
    .aboutBox4 .aboutCertificateSlick .slick-next{
        right: 0;
    }


    .solutionBox .imgBox .text{
        width: 100%;
        padding: 0 10px;
    }


    .caseBox2 .item{
        width: 50%;
    }

    .caseDetailBox2 .item{
        width: 50%;
    }

    .contactBanner{
        height: 240px;
    }
    .contactBox2 .item{
        width: 100%;
        padding: 20px 15px;
    }
}
@media (max-width: 640px){
    .indexBox4 .item{
        width: 50%;
    }
    .solutionBox .imgBox .textBox{
        position: initial;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 0 !important;
    }
    .solutionBox .imgBox .text .t a{
        display: block;
        margin-top: 15px;
    }
    .solutionBox .imgBox:hover .text h2{
        margin-bottom: 0;
    }
    .contactBanner{
        height: 200px;
    }
}
@media (max-width: 540px){
    .indexBox3 .item{
        flex-wrap: wrap;
    }
    .indexBox3 .item .img{
        width: 100%;
        padding: 0;
    }
    .indexBox3 .item .img img{
        width: 100%;
    }
    .indexBox3 .item .text{
        width: 100%;
        padding-top: 20px;
    }
    .indexBox6 .indexFormBox .info.w160,
    .indexBox6 .indexFormBox .info.w190,
    .indexBox6 .indexFormBox .info.w210{
        width: 100%;
    }
    .indexBox7 .item .text{
        padding-right: 0;
        padding-left: 10px;
    }

    .aboutBox3 .item{
        width: 100% !important;
    }
    .aboutBox3 .item .conBox{
        min-height: 0;
        padding: 30px 15px;
    }
    .aboutBox3 .item .img{
        margin-bottom: 15px;
    }

    .aboutBox5 .item{
        width: 100%
    }
    .aboutBox5 .item .text{
        min-height: 0;
        padding: 30px 20px;
    }
    .aboutBox5 .item .text h3{
        padding-bottom: 10px;
    }
    .aboutBox6 .title h2{
        padding-bottom: 20px;
    }
    .aboutBox6 .con1 .imgBox, .aboutBox6 .con2 .imgBox, .aboutBox6 .con4 .imgBox{
        flex-wrap: wrap;
    }
    .aboutBox6 .con1 .img, .aboutBox6 .con2 .img, .aboutBox6 .con4 .img{
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }


    .caseBox2 .item{
        width: 100%;
    }
    .caseBox2 .item img{
        width: 100%;
    }

    .caseDetailBox2 .item{
        width: 100%;
    }
    .caseDetailBox2 .item img{
        width: 100%;
    }
}
@media (max-width: 480px){
    .video_box2 .title h2{
        padding-right: 0;
    }
    .video_box2 .title h2 a{
        position: inherit;
        margin-top: 10px;
    }
    .indexBox7 .item .img{
        width: 100%;
    }
    .indexBox7 .item .text{
        width: 100%;
        float: left;
        margin-left: 0;
        padding-left: 0;
        padding-top: 10px;
    }
}
.contactBox1 .contactFormBox .info p{
    font-size: 14px;
    color: #807f7d;
    line-height: 1.4;
    font-weight: 300;
}
.contactBox1 .contactFormBox .info p a{
    color: #807f7d;
    text-decoration: underline;
}
.contactBox1 .contactFormBox .info p a:hover{
    color: #000066;
}
/*展会*/
.gz_zhanhui_content{
    width: 100%;
    height: auto;
    padding: 55px 0;
}
.gz_zhanhui_content_btn{
    display: flex;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #000;
    justify-content: center;
}
.gz_zhanhui_content_btn li{
    width: 124px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    font-weight: 800;
}
.gz_zhanhui_content_btn li:hover,.gz_zhanhui_content_btn li.on{
    background: #1B1B1B;
    color: #FFFFFF;
}
.gz_zhanhui_content_box{
    width: 100%;
    height: auto;
}
.gz_zhanhui_content_list{
    width: 100%;
    height: auto;
    display: none;
}
.gz_zhanhui_content_list_ul{
    width: 100%;
    height: auto;
}
.gz_zhanhui_content_list_ul li{
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gz_zhanhui_content_list_ul_left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.gz_zhanhui_content_list_ul_left_time{
    width: 146px;
    height: auto;
}
.gz_zhanhui_content_list_ul_left_time span{
    font-size: 20px;
    color: #2e2e2e;
    display: block;
}
.gz_zhanhui_content_list_ul_left_time h4{
    font-size: 36px;
    color: #2E2E2E;
}
.gz_zhanhui_content_list_ul_left_time a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    border: 1px solid #000000;
    font-size: 16px;
    color: #2E2E2E;
    margin-top: 88px;
}
.gz_zhanhui_content_list_ul_left_time a:hover{
    background: #d51626;
    color: #FFFFFF;
    border-color: #d51626;
}
.gz_zhanhui_content_list_ul_left_content{
    margin-left: 35px;
    padding-left: 53px;
    border-left: 1px solid rgba(27,27,27,0.1);
}
.gz_zhanhui_content_list_ul_left_content_top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 32px;
}
.gz_zhanhui_content_list_ul_left_content_top img{
    display: block;
}
.gz_zhanhui_content_list_ul_left_content_top h4{
    display: block;
    width: 143px;
    font-weight: 800;
    color: #010066;
    font-size: 24px;
    margin-left: 15px;
}
.gz_zhanhui_content_list_ul_left_content p{
    font-size: 20px;
    color: #2E2E2E;
    line-height: 36px;
}
.gz_zhanhui_content_list_ul_right{
    width: 352px;
    height: auto;
    overflow: hidden;
}
.gz_zhanhui_content_list_ul_right img{
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s;
}
.gz_zhanhui_content_list_ul_right:hover img{
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gz_zhanhui_content{padding: 8vw 0;}
    .gz_zhanhui_content_btn li{font-size: 3.6vw;height: 8.8vw;}
    .gz_zhanhui_content_list_ul li{margin-top: 5.8vw;flex-wrap: wrap;}
    .gz_zhanhui_content_list_ul_left{flex-wrap: wrap;}
    .gz_zhanhui_content_list_ul_left_time span{font-size: 3.6vw;}
    .gz_zhanhui_content_list_ul_left_time h4{font-size: 4.8vw;}
    .gz_zhanhui_content_list_ul_left_time{width: 100%;}
    .gz_zhanhui_content_list_ul_left_time a{width: 38vw;height: 8.8vw;font-size: 3.6vw;margin-top: 5.8vw;}
    .gz_zhanhui_content_list_ul_left_content{margin-left: 0;padding-left: 0;border: none;margin-top: 5.8vw;}
    .gz_zhanhui_content_list_ul_left_content_top img{width: 16vw;}
    .gz_zhanhui_content_list_ul_left_content_top h4{font-size: 3.6vw;}
    .gz_zhanhui_content_list_ul_left_content_top{margin-bottom: 3.8vw;}
    .gz_zhanhui_content_list_ul_left_content p{font-size: 3.6vw;line-height: 5.8vw;}
    .gz_zhanhui_content_list_ul_right{width: 100%;margin-top: 5.8vw;}
}