@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
html{
    font-size: 12px;
}
body{
    position: relative;
}
a{
    text-decoration: none;
}
.clear{
    clear: both;
    zoom: 1;
}
.clearfix:before {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    zoom: 1;
}
.transi {
    -webkit-transition: all 0.68s;
    -moz-transition: all 0.68s;
    -ms-transition: all 0.68s;
    -o-transition: all 0.68s;
    transition: all 0.68s;
}
.object-fit-contain{
    object-fit: contain !important;
}
.object-fit-cover{
    object-fit: cover !important;
}
.space-ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.transition-500{
    -webkit-transition: 500ms 0s all ease;
    -moz-transition: 500ms 0s all ease;
    -ms-transition: 500ms 0s all ease;
    -o-transition: 500ms 0s all ease;
    transition: 500ms 0s all ease;
}
.transition-800{
    -webkit-transition: 800ms 0s all ease;
    -moz-transition: 800ms 0s all ease;
    -ms-transition: 800ms 0s all ease;
    -o-transition: 800ms 0s all ease;
    transition: 800ms 0s all ease;
}
.transform-img{
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.web{
    position: relative;
}
.web-container{
    width: 80%;
    margin: 0 auto;
    clear: both;
}
.index-xf{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.index-xf-bg{
    width: 100%;
    height: 100vh;
}
.index-xf-bg-img{
    width:100%;
    height:auto;
    min-height:100%;
    object-fit: cover;
    animation: zoomBackground 6s infinite;
}
.index-bg{
    width: 100%;
    height: 100vh;
    background: url("../img/index/index-bg.jpg") no-repeat center;
    background-size: cover;
    /**/
}
@keyframes zoomBackground {
    0% {
        transform:scale(1.1,1.1);
    }
    100% {
        transform:scale(1,1);
    }
}
.index-xf-box{
    height: 38vh;
    position: absolute;
    width: 80%;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.index-box-xf-bg{
    display: inline-block;
}
.index-box-xf-bg img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.index-bd{position: absolute;top: 0;right: 0;bottom: 0;left: 0;margin: auto;}
.index-bd-title01{
    font-size: 48px;
    color: #fff;
}
.index-bd-title02{
    font-size: 58px;
    color: #fff;
    font-weight: bold;
    padding: 30px 0 30px 0;
}
.index-bd-title03{
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}
.index-bd-list{
    display: flex;
    gap: 3%;
    margin: 30px 0 0 0;
}
.index-bd-list-item{}
.index-bd-list-item-pic{width: 6vw;}
.index-bd-list-item-pic img{
    width: 100%;
    object-fit: contain;
}
.index-bd-list-item-desc{}
.index-bd-list-item-desc p{
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.small-img{
    width: 100%;
}
.big-img{
    width: 100%;
}
.index-box{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.index-nav-box{
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    border-bottom: 1px rgba(255, 255, 255, 0.4) solid;
}
.index-nav-01{
    width: 21%;
}
.index-nav-02{
    width: 58%;
}
.index-nav-03{
    width: 16%;
    margin-left: 5%;
}
.index-nav-04{
    width: 0%;
}
.index-nav-box-com{}
.index-nav-box .index-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-nav-box .index-nav .index-nav-logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
}
.index-nav-logo-pic{
    width: 20%;
}
.index-nav-logo-pic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.index-nav-logo-picture{
    width: 80%;
}
.index-nav-logo-picture img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.index-nav-box .index-nav .index-nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6%;
    font-size: 18px;
    position: relative;
}
.index-nav-box .index-nav .index-nav-bar a{
    display: block;
    padding: 5% 0 5% 0;
    white-space: nowrap;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.index-nav-box .index-nav .index-nav-bar a:after{
    display: none;
    content: '';
    width: 0;
    height: 3px;
    background-color: #c81504;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 800ms 0s all ease;
    -moz-transition: 800ms 0s all ease;
    -ms-transition: 800ms 0s all ease;
    -o-transition: 800ms 0s all ease;
    transition: 800ms 0s all ease;
}
.index-nav-box .index-nav .index-nav-bar a:hover:after{
    display: block;
    width: 100%;
}
.index-nav-box .index-nav .index-nav-link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-wx{
    display: flex;
    align-items: center;
    padding: 16% 10%;
    cursor: pointer;
    position: relative;
    border-left: 1px #ddd solid;
    border-right: 1px #ddd solid;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-wx img{}
.index-nav-box .index-nav .index-nav-link .index-nav-link-wx .index-nav-link-wx-fix{
    display: none;
    width: 110px;
    height: 120px;
    background-image: url("../img/wxcode-nav-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 1px 1px 1px;
    position: absolute;
    top: 100%;
    right: 0;
    left: -11px;
    margin: auto;
    background-color: #c81504;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-wx .index-nav-link-wx-fix img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-wx:hover .index-nav-link-wx-fix{
    display: block;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-tel{
    display: flex;
    align-items: center;
    margin: 0 0 0 6%;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-tel img{
    margin: 0 3% 0 0;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-tel .index-nav-link-tel-desc{}
.index-nav-box .index-nav .index-nav-link .index-nav-link-tel .index-nav-link-tel-desc p{
    font-size: 14px;
    color: #fff;
}
.index-nav-box .index-nav .index-nav-link .index-nav-link-tel .index-nav-link-tel-desc strong{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
#activeNav{
    background-color: rgba(0, 0, 0, 0.6);
}
.mobile-menu-icon{
    display: none;
}
.mobile-menu-icon img{}
.mobile-menu{
    display: none;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);
}
.mobile-menu-wapper{
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    position: absolute;
    height: 100%;
    right: 0;
}
.mobile-menu-box{
    background-color: rgba(0,0,0,0.6);
    width: 85%;
    height: 100%;
    position: absolute;
    left: 0;
    text-align: center;
    padding: 30px 0 0 0;
}
.mobile-menu-box a{
    display: block;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    padding: 15px 0 15px 0;
}
.mobile-menu-x{
    font-size: 33px;
    color: #fff;
    width: 15%;
    height: 100%;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    cursor: pointer;
}
.index-foot{
    width: 100%;
    position: fixed;
    bottom: 30px;
}
.index-foot .index-foot-box{
    display: flex;
    font-size: 18px;
    color: #fff;
}
.index-foot .index-foot-box p{}
.index-foot .index-foot-box a{
    color: #fff;
}
.fix-box{
    display: inline-block;
    position: fixed;
    top: 40%;
    right: 1%;
    z-index: 999;
}
.fix-box a{
    display: block;
    margin: 10% 0 0 0;
    position: relative;
}
.fix-box a .fix-box-block{
    width: 70px;
    background: transparent url("../images/fix-bg.png") no-repeat center center;
    background-size: cover;
    padding: 10px 3% 1px 3%;
    text-align: center;
    border-radius: 4px;
}
.fix-box a .fix-box-block img{}
.fix-box a .fix-box-block p{
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}
.fix-box a:nth-child(1){}
.fix-box a:nth-child(1) .fix-box-block img{}
.fix-box a:nth-child(1) .fix-box-block p{}
.fix-box a:nth-child(2){}
.fix-box a:nth-child(2) .fix-box-block img{}
.fix-box a:nth-child(2) .fix-box-block p{}
.fix-box a:nth-child(3){}
.fix-box a:nth-child(3) .fix-box-block img{}
.fix-box a:nth-child(3) .fix-box-block p{}
.fix-box a:nth-child(4){}
.fix-box a:nth-child(4) .fix-box-block img{}
.fix-box a:nth-child(4) .fix-box-block p{}
.fix-box-tel{
    display: none;
}
.fix-box a:hover:nth-child(1) .fix-box-tel{
    display: block;
    position: absolute;
    top: 0;
    right: 75px;
    bottom: 0;
    margin: auto;
    background-color: #cc1908;
    color: #fff;
    padding: 10%;
    font-size: 20px;
    font-weight: bold;
}
.fix-box-wx{
    display: none;
}
.fix-box-wx img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fix-box a:hover:nth-child(2) .fix-box-wx{
    display: block;
    position: absolute;
    top: 0;
    right: 75px;
    bottom: 0;
    margin: auto;
    background-color: #cc1908;
    color: #fff;
    padding: 10%;
    font-size: 20px;
    font-weight: bold;
    width: 125px;
    height: 125px;
}
.fix-box-wxcode{
    display: none;
}
.fix-box-wxcode img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fix-box a:hover:nth-child(3) .fix-box-wxcode{
    display: block;
    position: absolute;
    top: 0;
    right: 75px;
    bottom: 0;
    margin: auto;
    background-color: #cc1908;
    color: #fff;
    padding: 10%;
    font-size: 20px;
    font-weight: bold;
    width: 125px;
    height: 125px;
}
.fix-crumbs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    text-align: center;
    color: #fff;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.fix-crumbs h2{
    width: 100%;
    font-size: 36px;
    white-space: nowrap;
}
.fix-crumbs p{
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}
.fix-crumbs p a{
    color: #fff;
}
.link-nav{
    background-color: #f1f1f1;
}
.link-nav .link-nav-box{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3%;
}
.link-nav .link-nav-box a{
    display: block;
    height: 100%;
    font-size: 18px;
    color: #1d1d1d;
    padding: 30px 0;
    position: relative;
}
.link-nav .link-nav-box a:after{
    display: none;
    content: '';
    width: 0;
    height: 3px;
    background-color: #c81504;
    position: absolute;
    bottom: 0;
    -webkit-transition: 800ms 0s all ease;
    -moz-transition: 800ms 0s all ease;
    -ms-transition: 800ms 0s all ease;
    -o-transition: 800ms 0s all ease;
    transition: 800ms 0s all ease;
}
.link-nav .link-nav-box a:hover:after{
    display: block;
    width: 100%;
}
.company-item01{}
.company-item01 .company-item01-box{
    width: 90%;
    margin: 0 auto;
    padding: 5% 0;
}
.company-item01 .company-item01-box .company-item01-box02{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-wapper01{
    width: 50%;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-wapper01 img{
    width: 100%;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-wapper02{
    width: 47%;
}
.company-item01 .company-item01-box .company-item01-box02 h2{
    font-size: 34px;
    color: #c81504;
    font-weight: bold;
    text-align: center;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-smtext{
    font-size: 24px;
    color: #303030;
    padding: 20px 0 0 0;
    text-align: center;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-desc{
    font-size: 16px;
    color: #4f4f4f;
    text-align: justify;
    line-height: 25px;
    overflow: hidden;
    margin: 2% 0 3% 0;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num{display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;gap: 1vw;align-content: center;}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item{
    display: flex;
    align-items: center;
    gap: 0.5vw;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item:nth-child(1){}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item:nth-child(2){}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item:nth-child(3){}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item:nth-child(4){}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item .company-item01-box02-num-pic{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/com-num-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10%;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item .company-item01-box02-num-pic img{
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item .company-item01-box02-num-text{
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item .company-item01-box02-num-text strong{
    font-size: 32px;
    color: #2c2c2c;
    position: relative;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item:first-child .company-item01-box02-num-text strong:after{
    display: block;
    content: '+';
    font-size: 32px;
    color: #2c2c2c;
    position: absolute;
    right: 0;
    top: 0;
    left: 100%;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item:last-child .company-item01-box02-num-text strong:after{
    display: block;
    content: '+';
    font-size: 32px;
    color: #2c2c2c;
    position: absolute;
    right: 0;
    top: 0;
    left: 100%;
}
.company-item01 .company-item01-box .company-item01-box02 .company-item01-box02-num .company-item01-box02-num-item .company-item01-box02-num-text p{
    white-space: nowrap;
    font-size: 16px;
    color: #2c2c2c;
}
.company-case{
    background-image: url("../img/company-case-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0 60px 0;
}
.company-case .company-case-title{
    text-align: center;
}
.company-case .company-case-title .company-case-title-p01{
    font-size: 34px;
    color: #c81504;
    font-weight: bold;
}
.company-case .company-case-title .company-case-title-p02{
    font-size: 24px;
    color: #303030;
    margin: 5px 0 30px 0;
}
.company-case .company-case-list {display: flex;flex-wrap: wrap;justify-content: space-between;gap: 3px;}
.company-case .company-case-list .company-case-list-a{
    display: block;
    width: 32%;
    overflow: hidden;
}
.company-case .company-case-list .company-case-list-a:nth-child(3n){
    margin-right: 0;
}
.company-case .company-case-list .company-case-list-a .company-case-list-a-pic{
    position: relative;
    width: 100%;
    padding: 32%;
    overflow: hidden;
}
.company-case .company-case-list .company-case-list-a .company-case-list-a-pic img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.company-case .company-case-list .company-case-list-a .company-case-list-a-desc{
    background-color: #fff;
}
.company-case .company-case-list .company-case-list-a .company-case-list-a-desc p{
    font-size: 18px;
    color: #3c3c3c;
    text-align: center;
    padding: 5% 0;
}
.company-case .company-case-list .company-case-list-a:hover .company-case-list-a-pic img{
    width: 110%;
    height: 110%;
    transition: all 0.8s;
}
.company-case .company-case-list .company-case-list-a:hover .company-case-list-a-desc:hover{
    background-color: #cc1f08;
    transition: all 0.8s;
}
.company-case .company-case-list .company-case-list-a:hover .company-case-list-a-desc{
    background-color: #cc1f08;
    transition: all 0.8s;
}
.company-case .company-case-list .company-case-list-a:hover .company-case-list-a-desc p{
    color: #fff;
}
.company-msg{
    background-image: url("../img/company-msg-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3% 0;
}
.company-msg .company-msg-box{
    text-align: center;
}
.company-msg .company-msg-box .company-msg-box-desc01{
    font-size: 34px;
    color: #fff;
    margin: 1% 0;
}
.company-msg .company-msg-box .company-msg-box-desc02{
    display: block;
    font-size: 40px;
    color: #fff;
    margin: 1% 0;
}
.company-msg .company-msg-box .company-msg-box-desc03{
    font-size: 18px;
    color: #fff;
    margin: 2% 0;
}
.company-msg .company-msg-box .company-msg-box-btn-link{
    display: block;
    width: 143px;
    height: 50px;
    line-height: 50px;
    background-image: url("../img/company-msg-btn-bg.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 3% 0;
    font-size: 18px;
    color: #fff;
    font-weight: lighter;
    margin: 0 auto;
}
.company-msg .company-msg-box .company-msg-box-btn-link:hover{
    background-color: rgba(0,0,0,0.8);
}
.footer-box{
    display: block;
    background-image: url("../img/footer-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-box01{
    border-bottom: 0.1px #5b5f63 solid;
}
.footer-box .footer-header{
    display: flex;
    justify-content: space-between;
    padding: 3% 0;
}
.footer-box .footer-header .footer-header-nav{
    display: flex;
    white-space: nowrap;
    gap: 6%;
    flex-wrap: wrap;
    width: 83%;
}
.footer-box .footer-header .footer-header-nav a{
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    height: 30px;
    line-height: 30px;
}
.footer-box .footer-header .footer-wx{
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}
.footer-box .footer-header .footer-wx .footer-wx-icon{
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../img/icon-wx.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-box .footer-header .footer-wx span{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.footer-box .footer-contact {
    display: flex;
    justify-content: space-between;
    padding: 3% 0;
    flex-wrap: wrap;
}
.footer-box .footer-contact .footer-contact-item{
    display: flex;
    align-items: center;
}
.footer-box .footer-contact .footer-contact-item .footer-contact-item-pic{
    margin: 0 6px 0 0;
}
.footer-box .footer-contact .footer-contact-item .footer-contact-item-pic img{}
.footer-box .footer-contact .footer-contact-item .footer-contact-item-info{
    color: #fff;
    font-size: 18px;
}
.footer-box .footer-contact .footer-contact-item .footer-contact-item-info p{
    font-weight: lighter;
    margin: 0 0 6px 0;
}
.footer-box .footer-contact .footer-contact-item .footer-contact-item-info strong{
}
.footer-box .footer-copy {
    font-size: 16px;
    color: #fff;
    padding: 2% 0;
    font-weight: lighter;
}
.footer-box .footer-copy p{}
.link-nav{}
.contact-header{
}
.contact-title{
    text-align: center;
    padding: 6% 0 6% 0;
}
.contact-title h3{
    font-size: 34px;
    color: #1d1d1d;
}
.contact-title p{
    font-size: 16px;
    color: #464646;
    margin: 1% 0 0 0;
}
.gird-contact-link{
    display: grid;
    grid-template-columns: 19% 19% 19% 19% 20%;
    grid-gap: 1%;
    padding: 0 0 3% 0;
}
.gird-contact-link-item{
    background-color: #f1f1f1;
    padding: 15% 3% 10% 6%;
}
.gird-contact-link-item-pic{}
.gird-contact-link-item-pic img{
    width: 28px;
}
.gird-contact-link-item-title{
    font-size: 16px;
    color: #464646;
    font-weight: 600;
    padding: 5px 0px 8px;
    display: inline-block;
}
.gird-contact-link-item-info{
    font-size: 16px;
    color: #353535;
}
.contact-bai-map{
    width: 100%;
    height: 40vh;
}
.contact-msg{
    display: block;
    background-image: url("../img/contact-msg-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 4% 0 0 0;
    padding: 0 0 4% 0;
}
.contact-msg-box{}
.contact-msg-title{
    text-align: center;
    padding: 6% 0 6% 0;
}
.contact-msg-title h3{
    font-size: 34px;
    color: #1d1d1d;
}
.contact-msg-title p{
    font-size: 16px;
    color: #545454;
    margin: 1% 0 0 0;
}
.contact-msg-form{
    display: flex;
    justify-content: space-between;
}
.contact-msg-form .contact-msg-form-left{
    width: 49%;
}
.contact-msg-form .contact-msg-form-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-msg-form .contact-msg-form-right{
    width: 49%;
}
.contact-msg-form .contact-msg-form-right form{}
.contact-msg-form-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 3% 0;
}
.contact-msg-form-item .contact-msg-form-item-step{
    width: 48.5%;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 3% 1% 3% 3%;
    gap: 12px;
}
.contact-msg-form-item .contact-msg-form-item-step img{}
.contact-msg-form-item .contact-msg-form-item-step img:nth-child(1){
    object-fit: contain;
}
.contact-msg-form-item .contact-msg-form-item-step img:nth-child(2){
}
.contact-msg-form-item .contact-msg-form-item-step input{
    width: 60%;
    border: none;
    padding: 1% 0 1% 0;
    text-indent: 6px;
}
.contact-msg-form-item .contact-msg-form-item-step input:focus{
    outline: none;
}
.verify{
    width: 35%;
}
.verify img{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.contact-msg-form-item-step-area{
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    position: relative;
}
.contact-msg-form-item-step-area img{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
}
.contact-msg-form-item-step-area img:nth-child(1){
}
.contact-msg-form-item-step-area img:nth-child(2){
    left: 45px;
}
.contact-msg-form-item-step-area input{}
.contact-msg-form-item-step-area textarea{
    width: 100%;
    padding: 13px 0 0 57px;
    text-indent: 5px;
    height: 15vh;
    border: none;
}
.contact-msg-form-item-step-area textarea:focus{
    outline: none;
}
.contact-msg-form-item-btn{
    width: 100%;
}
.contact-msg-form-item-btn button[type="submit"]{
    display: block;
    color: #fff;
    font-size: 18px;
    border: 1px #c81504 solid;
    width: 100%;
    background-color: #c81504;
    padding: 3% 0 3% 0;
}
.contact-msg-form-item-btn button[type="button"]{
    display: block;
    color: #fff;
    font-size: 18px;
    border: 1px #c81504 solid;
    width: 100%;
    background-color: #c81504;
    padding: 3% 0 3% 0;
}
.contact-msg-form-item-btn button[type="reset"]{
    display: block;
    color: #fff;
    font-size: 18px;
    border: 1px #c81504 solid;
    width: 100%;
    background-color: #c81504;
    padding: 3% 0 3% 0;
}
.contact-msg-form-item:last-child{
    margin: 0;
}
.goods-nav{}
.fix-goods-crumbs p{}
.fix-goods-crumbs p a{
    font-size: 16px;
    color: #fff;
}

.menu{
    display: grid;
    grid-template-columns: 23.6% 23.6% 23.6% 23.6%;
    grid-gap: 30px;
    padding: 6% 0 6% 0;
}
.menu a{
    background-color: #f1f1f1;
    text-align: center;
    padding: 20px 10px 20px 10px;
    font-size: 14px;
    color: #272727;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0 0;
}
.menu a:hover,.menu a.active{
    background-image: url("../img/goods-nav.jpg");
    background-size: cover;
    color: #fff;
}
.gird-list{
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    row-gap: 2%;
    column-gap: 1%;
    padding: 0 0 6% 0;
}
.gird-list a{
    display: block;
    border: 1px #f1f1f1 solid;
}
.gird-list a:nth-child(4n){
    padding: 0;
}
.gird-list a .gird-list-pic{
    height: 15vw;
}
.gird-list a .gird-list-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: 800ms 0s all ease;
    -moz-transition: 800ms 0s all ease;
    -ms-transition: 800ms 0s all ease;
    -o-transition: 800ms 0s all ease;
    transition: 800ms 0s all ease;
}
.gird-list a p{
    display: block;
    background-color: #f1f1f1;
    font-size: 16px;
    color: #252525;
    padding: 6% 1% 6% 1%;
    text-align: center;
}
.gird-list a:hover{
    border: 1px #c91205 solid;
}
.gird-list a:hover .gird-list-pic{
    overflow: hidden;
}
.gird-list a:hover .gird-list-pic img{
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.gird-list a:hover  p{
    background-image: url("../img/goods-title-bg.png");
    background-size: cover;
    color: #fff;
    font-weight: lighter;
}
.goodsinfo{}
.goodsinfo-box{
    width: 100%;
    background-color: #f4f6f8;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 0;
    padding: 3% 0 3% 3%;
    margin: 6% 0 6% 0;
}
.goodsinfo-left{ max-height:500px;}
.goodsinfo-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.goodsinfo-right{
    padding: 0 6%0 6%;
}
.goodsinfo-top{
    display: flex;
    gap: 1%;
}
.goodsinfo-top-tags{
    color: #666;
    font-size: 18px;
    padding: 2% 3% 2% 3%;
    border: 1px #999 solid;
    font-weight: lighter;
}
.goodsinfo-title{
    font-size: 26px;
    font-weight: bold;
    color: #cf3b2e;
    margin: 6% 0 3% 0;
    padding: 0 0 3% 0;
    border-bottom: 3px #f7b342 solid;
}
.goodsinfo-desc{
    font-size: 16px;
    color: #fff;
    font-weight: lighter;
    text-align: justify;
    line-height: 22px;
    margin: 6% 0 3% 0;
    padding: 3% 3% 3% 3%;
    background-color: #747679;
}
.goodsinfo-tel{
    display: flex;
    align-items: center;
    gap: 1%;
    background-color: #fff;
    padding: 3% 3% 3% 3%;
    margin: 6% 0 0 0;
}
.goodsinfo-tel-pic{}
.goodsinfo-tel-pic img{}
.goodsinfo-tel-info{}
.goodsinfo-tel-title{
    font-size: 16px;
    color: #666;
    font-weight: lighter;
}
.goodsinfo-tel-num{
    font-size: 30px;
    font-weight: bold;
    color: #cf3b2e;
    font-family: fantasy;
}
.goodsinfo-link{
    display: flex;
    flex-wrap: wrap;
    margin: 6% 0 0 0;
    gap: 3%;
}
.goodsinfo-link a{
    display: flex;
    align-items: center;
    gap: 3%;
    color: #fff;
    padding: 3% 12% 3% 12%;
}
.goodsinfo-link a:first-child{
    background: #1f62a6;
}
.goodsinfo-link a:last-child{
    background: #cccccc;
}
.goodsinfo-link-pic{}
.goodsinfo-link-pic img{}
.goodsinfo-link-desc{
    white-space: nowrap;
    font-size: 16px;
}
.goodsinfo-nav{
    position: relative;
    font-size: 30px;
    color: #333;
}
.goodsinfo-nav:after{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: 'PRODUCT';
    font-size: 60px;
    color: rgba(51, 51, 51, 0.06);
    font-family: Impact;
    text-transform: uppercase;
}
.goodsinfo-content{
    font-size: 16px;
    padding: 2% 1% 2% 1%;
}
.goodsinfo-other{
    padding: 3% 0 3% 0;
}
.gird-list01{
    padding: 0;
}
.mobile-footer{
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 3%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    bottom: 0;
    width: 100%;
}
.mobile-footer a{
    padding: 6% 3% 6% 3%;
    color: #fff;
    font-size: 16px;
    width: 25%;
    white-space: nowrap;
    text-align: center;
    font-weight: lighter;
    border-right: 1px #fff solid;
}
.mobile-footer a:last-child{
    border-right:0;
}
.honor-list{
    margin: 3% 0 0 0;
}
.honorinfo{

}
.honorinfo-title{
    position: relative;
    font-size: 30px;
    color: #333;
    margin: 3% 0 0 0;
    text-align: center;
}
.honorinfo-title h3{}
.honorinfo-title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    content: 'DETAIL';
    font-size: 60px;
    color: rgba(51, 51, 51, 0.06);
    font-family: Impact;
    text-transform: uppercase;
}
.honorinfo-info{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3%;
    margin: 3% 0 3% 0;
}
.honorinfo-info span{
    padding: 6px 18px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 13px;
    color: #fff;
    font-weight: lighter;
}
.honorinfo-detail{}
.honorinfo-pic{}
.honorinfo-pic img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.honorinfo-desc{
    margin: 3% 0 3%;
    font-size: 16px;
}
.honorinfo-page{
    margin: 0 0 6% 0;
}
.honorinfo-page .page-a{
    font-size: 16px;
    color: #666;
    background-color: #f4f6f8;
    margin: 1% 0 0 0;
    padding: 15px 0 15px 15px;
}
.honorinfo-page .page-a a{
    font-size: 16px;
    color: #111;
}
.contact-msg01{
    margin: 1% 0 0 0;
}
.footer-wx-fix{
    display: none;
    position: absolute;
    top: 32px;
    left: 12px;
    z-index: 2;
    width: 116px;
    height: 116px;
    border: 3px #ddd solid;
}
.footer-wx-fix img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-box .footer-header .footer-wx:hover .footer-wx-fix{
    display:block;
}

.list3{}
.list3-item{
    float: left;
    width: 33.3%;
    padding: 0 1%;
    margin-bottom: 2%;
}
.list3-item-box{
    position: relative;
}
.list3-item-all{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.list3-item-all-pic{
    width: 100%;
    height: 355px;
    overflow: hidden;
    position: relative;
}
.list3-item-all-pic img{
    width: 100%;
    height: 100%;
}
.list3-item-all-desc{
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 16px;
    color: #282828;
    padding: 0 4%;
    background: #fff;
    line-height: 70px;
}
.list3-item-fix{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
    opacity: 0;
}
.list3-item-fix-box{
    width: 100%;
    text-align: center;
    padding: 0 10%;
}
.list3-item-fix-box span{
    width: 50%;
    display: block;
    font-weight: lighter;
    color: #fff;
    font-size: 16px;
    border: 1px #ddd solid;
    margin: 0 auto;
    padding: 3% 0;
}
.list3-item:hover .list3-item-fix{
    opacity: 1;
}
.list3-item:hover .list3-item-all-desc{
    background-color: #cc1f08;
    color: #fff;
}
.num-list-div{

}
.num-list{
    width: 25%;
    float: left;
    padding: 0 0 0 2%;
}
.num-list-item{}
.num-list-pic{
    background-image: url(../img/com-num-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}
.num-list-pic img{}
.num-list-desc{
    float: left;
}
.num-list-title{}
.num-list-content{}
.inner-news-list .text{
    padding: 6% 5% 0 5%;
    background: #fff;
}
.inner-news-list .text .wen {
    padding-bottom: 6%;
    border-bottom: 1px solid #ebebeb;
}
.inner-news-list .text .wen .title {
    font-weight: bold;
    font-size: 18px;
    color: #272727;
}
.inner-news-list .text .wen .con {
    font-size: 14px;
    color: #656565;
    margin-top: 4%;
    line-height: 24px;
}
.over-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.inner-news-list .text .time {
    height: 45px
}
.flexleft {
    display: flex;
    align-items: center;
    justify-content: left;
}
.inner-news-list .text .time .s2 {
    height: 16px;
    width: 16px;
    display: inline-block;
    background: url("../img/time.png") no-repeat center center;
}
.inner-news-list .text .time .s1 {
    display: inline-block;
    font-size: 14px;
    color: #1e1e1e;
    padding-left: 11px;
    line-height: 30px;
}
.textover {
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}