

@font-face{
    font-family: 'Roboto Medium';
    src: url('../fonts/robotomedium.eot');
    src: url('../fonts/robotomedium.eot#iefix') format('embedded-opentype'),
    url('../fonts/robotomedium.woff2') format('woff2'),
    url('../fonts/robotomedium.woff') format('woff'),
    url('../fonts/robotomedium.ttf') format('truetype'),
    url('../fonts/roboto medium.svg#neuesbauendemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'Roboto Medium';}

/*Reset css*/
/* 清除内外边距 */
body,h1,h2,h3,h4,h5,h6,div,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,figure{margin:0;padding:0;}
/* 设置默认字体 */
body,h1,h2,h3,h4,h5,h6,button,input,select,textarea,code,kbd,pre,samp,tt,small,address,cite,dfn,em,var{font: normal 14px/1 '微软雅黑';}
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #fff; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #bda50d; text-decoration: none; transition-duration: 1s; }
q:before,q:after{ content: ''; }
sup{ vertical-align: super; }
sub{ vertical-align: sub; }
/* 重置图片元素 */
img{ display: block; max-width: 100%; border: 0; }
.content:after{ content: ''; clear: both; display: block; }
.content img{ display: inline-block; }
button{ cursor: pointer; }
/* 重置表格元素 */
table{border-collapse:collapse;border-spacing:0;margin:10px 0;display:table;width:100%!important;}
table td,table th{padding:10px;border:1px solid #ddd;color:#333;vertical-align:middle;word-break:normal!important;width:1%!important;}
/* 清除浮动 */
.cl,.clear{display:block;float:none;clear:both;overflow:hidden;visibility:hidden;width:0;height:0;background:0;border:0;font-size:0;}
/*end Reset css*/

/*web*/
html,body{width: 100%;height: 100%;font-family: '微软雅黑';font-size: 14px;background: #0f0f0f;}
::-webkit-input-placeholder{opacity: 1;}::-moz-placeholder{opacity: 1;}:-ms-input-placeholder{opacity: 1;}
@media(min-width: 1400px){.container{width: 1400px;padding: 0;}}
.fl{float: left;}
.fr{float: right;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
/*end web*/

/*分页*/
.met_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.met_pager a,.met_pager span{background:#333;color:#fff;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.met_pager a:hover,.met_pager a.Ahover{background:#bda50d;}
.met_pager a.firstPage,.met_pager a.lastPage{width:40px;font-weight:bold;}
.met_pager .PreSpan,.met_pager .NextSpan,.met_pager a.PreA,.met_pager a.NextA{width:50px;font-size: 0;}
.met_pager .PreSpan:before,.met_pager a.PreA:before{content:'◀';font-size:14px;}
.met_pager .NextSpan:before,.met_pager a.NextA:before{content:'▶';font-size:14px;}
.met_pager .PageText,.met_pager #metPageT,.met_pager #metPageB{display:none}
/*end 分页*/

/*二维码显示*/
.pro2wm{display:inline-block;position:relative;cursor:pointer;}
.pro2wm:before{opacity:0;content:'';border-top:8px solid transparent;border-right:8px solid #fff;border-bottom:8px solid transparent;position:absolute;top:7px;right:-14px;z-index:1001;transition-duration:1s;}
.pro2wm:after{opacity:0;content:'';width:5px;height:10px;box-shadow:-3px 0 10px rgba(0, 0, 0, .2);position:absolute;top:10px;right:-14px;z-index:1000;transition-duration:1s;}
.pro2wm:hover:before,.pro2wm:hover:after{opacity:1;}
.pro2wm .wxewm{opacity:0;width:0;max-width:none;height:120px;padding:5px 0;background:#fff;box-shadow:0 0 10px rgba(0, 0, 0, .2);border-radius:5px;position:absolute;left:60px;bottom:-45px;z-index:999;transition-duration:1s;}
.pro2wm:hover .wxewm{opacity:1;width:120px;padding:5px;}
/*end 二维码显示*/

/*css3*/
/* Grow */
.grow{
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition-property: transform;
    transition: all .8s ease;
}
a:hover .grow{
    transform: scale(1.08);
}
/* float-shadow */
.float-shadow{
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: .5s;
}
.float-shadow:before{
    content: '';
    width: 90%;
    height: 10px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 5%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .1) 0%,rgba(0, 0, 0, 0) 80%);
    transition-property: transform;
    transition-duration: .5s;
}
.float-shadow:hover{
    transform: translateY(-5px);
}
.float-shadow:hover:before{
    opacity: 1;
    transform: translateY(5px);
}
/*显示隐藏时间*/
.fadeIn{
    -webkit-animation-name: fadeIn; /*动画名称*/
    -webkit-animation-duration: 1.5s; /*动画持续时间*/
    -webkit-animation-iteration-count: 1; /*动画次数*/
    -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes fadeIn{
    0% {
        opacity: 0;
    }
    20% {
        opacity: .2;
    }
    50% {
        opacity: .5;
    }
    70% {
        opacity: .7;
    }
    100% {
        opacity: 1;
    }
}
/*end css3*/



/*header*/
#header{
    width: 100%;
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .headerbj{
    background: #bda50d;
}
#header .headerbj .headlogo{
    height: 70px;
    padding: 20px 0;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headnav{
    display: block;
}
#header .headerbj .headnav > ul > li{
    margin-left: 40px;
}
#header .headerbj .headnav > ul > li .overflow{
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}
#header .headerbj .headnav > ul > li .overflow a{
    display: block;
    color: #0f0f0f;
    font-size: 20px;
    position: relative;
    top: -40px;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow a,
#header .headerbj .headnav > ul > li:hover .overflow a{
    color: #fff;
    top: 0;
}
#header .headerbj .headnav > ul > li .headnavlist{
    width: 100%;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);
    max-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li:hover .headnavlist{
    max-height: 300px;
}
#header .headerbj .headnav > ul > li .headnavlist ul{
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    text-align: center;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li{
    display: inline-block;
    margin: 15px 50px 15px 0;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li:nth-last-child(1){
    margin-right: 0;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a{
    display: block;
    color: #0f0f0f;
    font-size: 18px;
    line-height: 38px;
    border-bottom: 2px solid transparent;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a.hover,
#header .headerbj .headnav > ul > li .headnavlist ul > li a:hover{
    color: #bda50d;
    border-bottom: 2px solid #bda50d;
}
#header .headerbj .headright{
    padding: 15px 0;
}
#header .headerbj .headright .headurl{
    color: #0f0f0f;
    font-size: 18px;
    line-height: 22px;
    padding: 9px 0;
}
#header .headerbj .pro2wm{
    border-right: 1px solid #0f0f0f;
    padding: 9px 15px;
}
#header .headerbj .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 40px;
    right: 50%;
    margin-right: -8px;
}
#header .headerbj .pro2wm:after{
    height: 5px;
    top: 50px;
    right: 35%;
}
#header .headerbj .pro2wm .wxewm{
    width: 160px;
    height: 0;
    padding: 0 5px;
    top: 55px;
    left: 50%;
    margin-left: -80px;
}
#header .headerbj .pro2wm:hover .wxewm{
    height: 160px;
    padding: 5px;
}
#header .headerbj .headlang{
    margin: 0 10px;
    cursor: pointer;
    position: relative;
}
#header .headerbj .headlang .langtitle{
    color: #0f0f0f;
    font-size: 16px;
    line-height: 40px;
}
#header .headerbj .headlang .langtitle i{
    padding: 0 10px;
}
#header .headerbj .headlang .langlist{
    display: none;
    width: 100%;
    background: #bda50d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: absolute;
    overflow: hidden;
}
#header .headerbj .headlang:hover .langlist{
    display: block;
}
#header .headerbj .headlang .langlist a{
    display: block;
    color: #0f0f0f;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px solid #a28e0a;
}
#header .headerbj .headlang .langlist a:hover{
    color: #fff;
}
/*banner*/
#mcbanner{
    padding-top: 70px;
    overflow: hidden;
}
/*indexbanner*/
.indexbanner .swiper-pagination{
    display: none;
    width: 600px;
    background: rgba(0, 0, 0, .8);
    border: 1px solid #000;
    left: 50%;
    bottom: 30px;
    margin-left: -300px;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    float: left;
    width: 33.33%;
    height: 80px;
    padding: 15px 0;
    background: 0;
    border-radius: 0;
    margin: 0;
    opacity: 1;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet-active{
    background: #bda50d;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet span{
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet p{
    color: #fff;
    line-height: 20px;
}
.indexbanner .swiper-button-prev,
.indexbanner .swiper-button-next{
    width: 50px;
    height: 50px;
    color: #fff;
    font: 25px/50px '宋体';
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 100%;
}
.indexbanner .swiper-button-prev{
    left: 5%;
}
.indexbanner .swiper-button-next{
    right: 5%;
}
/*otherbanner*/
.otherbanner img{
    width: 100%;
}
/*header*/

/*index*/
.more{
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    font-size: 16px;
    border: 1px solid #bbb;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    transition-duration: 1s;
}
.more:hover,
a:hover .more{
    color: #fff !important;
    border: 1px solid #bda50d;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #bda50d;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    left: -200%;
    transition-duration: 1s;
}
.more:hover:before,
a:hover .more:before{
    left: -40%;
}
.more p{
    position: relative;
    z-index: 1;
}

#main{
    position: relative;
    z-index: 2;
}

.injscx{
    overflow: hidden;
}
.injscx img{
    max-width: 1920px;
    position: relative;
    left: 50%;
    margin-left: -960px;
}
.inabout{
    padding: 50px 0 0;
    overflow: hidden;
}
.inabout .intitle1{
    color: #fff;
    font-size: 36px;
    text-align: center;
}
.inabout .intitle2{
    width: 660px;
    color: #8a8a8a;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    margin: 30px auto;
}
.inabout .intitle3{
    width: 70px;
    height: 5px;
    background: #fff;
    margin: 0 auto 50px;
}
.inabout .inaboutimg{
    width: 50%;
}
.inabout .inaboutimg img{
    max-width: 960px;
}
.inabout .inaboutfr{
    width: 50%;
}
.inabout .inaboutfr .inaboutbj{
    background: rgba(189, 165, 13, .75);
    padding: 50px;
    margin-right: 50px;
    position: relative;
    top: 50px;
    left: -50px;
}
.inabout .inaboutfr .inaboutbj .shuzi{
    color: #fff;
    font-size: 80px;
    transform: rotate(90deg);
    position: absolute;
    top: 50px;
    right: -160px;
}
.inabout .inaboutfr .inaboutbj .webname{
    color: #000;
    font-size: 30px;
}
.inabout .inaboutfr .inaboutbj .title{
    color: #000;
    font-size: 16px;
    padding: 10px 0 30px;
}
.inabout .inaboutfr .inaboutbj .description{
    color: #000;
    font-size: 16px;
    line-height: 30px;
    padding: 0 0 30px;
}
.inabout .inaboutfr .inaboutbj .more{
    padding: 12px 20px;
    color: #fff;
    background: #000;
    border: 0;
    border-radius: 0;
}
.inabout .inaboutfr .inaboutbj .more i{
    padding-left: 10px;
}
.incolumn{
    padding: 70px 0;
    overflow: hidden;
}
.incolumn .incolumnfl{
    color: #fff;
    font-size: 36px;
    padding-bottom: 30px;
}
.incolumn .incolumnfr{
    color: #8a8a8a;
    font-size: 16px;
    padding-top: 5px;
}
.incolumn .incolumnfr p.fr{
    width: 48px;
    height: 4px;
    background: #fff;
    margin-top: 10px;
}
.incolumn ul li{
    width: calc(50% - 10px);
    margin: 20px 20px 0 0;
}
.incolumn ul li:nth-child(2n){
    margin-right: 0;
}
.incolumn ul li a{
    display: block;
    overflow: hidden;
}
.incolumn ul li a img{
    width: 100%;
}
.indzhc{
    background: url(../images/indzhc.jpg) top center / cover no-repeat;
    overflow: hidden;
}
.indzhc .indzhcfr{
    width: 55%;
    color: #fff;
    padding: 100px 0 60px;
}
.indzhc .indzhcfr .shuzi p{
    font-size: 24px;
    padding: 5px 0 15px;
}
.indzhc .indzhcfr .shuzi span{
    font-size: 16px;
}
.indzhc .indzhcfr .more{
    padding: 20px 40px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 0;
    margin-left: 24%;
}
.indzhc .indzhcfr .more i{
    padding-left: 20px;
}
.inpro{
    padding: 70px 0;
    overflow: hidden;
}
.inpro .intitle{
    color: #fff;
    font-size: 36px;
    padding-bottom: 10px;
}
.inpro ul li{
    width: 31.33%;
    margin: 40px 3% 0 0;
}
.inpro ul li:nth-child(3n){
    margin-right: 0;
}
.inpro ul li a{
    display: block;
    background: #fff;
    overflow: hidden;
}
.inpro ul li a .imgurl{
    overflow: hidden;
}
.inpro ul li a .imgurl img{
    width: 100%;
}
.inpro ul li a .title,
.inpro ul li a .name{
    color: #000;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro ul li a .title{
    margin: 20px 20px 0;
}
.inpro ul li a .name{
    margin: 0 20px 20px;
}
.inpro ul li a:hover .title,
.inpro ul li a:hover .name{
    color: #bda50d;
}
.invideo{
    overflow: hidden;
}
.invideo .invideoimg{
    position: relative;
    margin-bottom: 10px;
}
.invideo .invideoimg p{
    color: #fff;
    font-size: 60px;
    position: absolute;
    left: 50px;
    bottom: 120px;
}
.invideo .invideoimg span{
    color: #fff;
    font-size: 24px;
    position: absolute;
    left: 60px;
    bottom: 90px;
}
.invideo ul li{
    width: 31.33%;
    margin: 40px 3% 0 0;
    position: relative;
    top: 0;
    transition-duration: 1s;
}
.invideo ul li:nth-child(3n){
    margin-right: 0;
}
.invideo ul li:hover{
    top: -10px;
}
.invideo ul li video{
    width: 100%;
    display: block;
    outline: 0;
    object-fit: cover;
    cursor: pointer;
}
.invideo ul li .title{
    padding: 0 20px;
    background: #bda50d;
    color: #0f0f0f;
    font-size: 16px;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews{
    padding: 80px 0;
    overflow: hidden;
}
.innews ul li{
    width: 46%;
    margin-right: 8%;
}
.innews ul li:nth-child(2n){
    margin-right: 0;
}
.innews ul li a{
    display: block;
    color: #fff;
    border-top: 4px solid #fff;
}
.innews ul li a .updatetime{
    font-size: 16px;
    padding-top: 20px;
}
.innews ul li a .title{
    font-size: 18px;
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a:hover .title{
    color: #bda50d;
}
.innews ul li a .description{
    font-size: 16px;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .foottop{
    background: #bda50d;
    padding: 30px 0;
    overflow: hidden;
}
#footer .foottop .footlogo{
    height: 36px;
    padding: 3px 0;
}
#footer .foottop .footlogo img{
    height: 100%;
}
#footer .foottop .footfx .fxtitle{
    color: #0f0f0f;
    font-size: 16px;
    line-height: 36px;
}
#footer .foottop .footfx a{
    width: 36px;
    color: #fff;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    background: #0f0f0f;
    border-radius: 5px;
    margin-left: 10px;
}
#footer .footcon{
    padding: 50px 0;
    overflow: hidden;
}
#footer .footcon .footnav{
    width: calc(20% - 60px);
}
#footer .footcon .footnav .namemark{
    color: #fff;
    font-size: 16px;
    padding-bottom: 20px;
}
#footer .footcon .footnav dl a{
    display: inline-block;
    color: #747474;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    transition-duration: .5s;
}
#footer .footcon .footnav dl a:hover{
    color: #bda50d;
}
#footer .footcon .footnav dl a:before{
    content: '';
    width: 10px;
    height: 1px;
    background: #bda50d;
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0;
    transition-duration: 1s;
}
#footer .footcon .footnav dl a:hover:before{
    opacity: 1;
}
#footer .footcon .footnav dl a p{
    position: relative;
    left: 0;
    transition-duration: 1s;
}
#footer .footcon .footnav dl a:hover p{
    left: 15px;
}
#footer .footcon .footadd{
    width: 300px;
    border-left: 1px solid #202020;
    padding-left: 30px;
}
#footer .footcon .footadd .title{
    color: #fff;
    font-size: 16px;
    padding-bottom: 20px;
}
#footer .footcon .footadd p{
    color: #747474;
    font-size: 16px;
}
#footer .footcon .footadd p a{
    color: #747474;
}
#footer .footcon .footadd p a:hover{
    color: #bda50d;
}
#footer .footcon .footadd .footaddmap{
    display: table;
    color: #050505;
    font-size: 16px;
    line-height: 24px;
    background: #bda50d;
    padding: 10px 25px;
    margin: 30px 0;
}
#footer .footcon .footadd .footaddmap img{
    padding-right: 10px;
}
#footer .foottail{
    border-top: 1px solid #202020;
    padding: 40px 0;
}
#footer .foottail .footright{
    color: #747474;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #747474;
}
#footer .foottail .footright a:hover{
    color: #bda50d;
}
#footer .foottail .footright br{
    display: none;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
#footer .foottail .footother{
    color: #747474;
    line-height: 20px;
    margin-top: 10px;
}
#footer .foottail .footother a{
    color: #747474;
}
#footer .foottail .footother a:hover{
    color: #bda50d;
}
/*foot*/

/*search*/
.proform{
    position: relative;
}
.prosearch{
    padding: 9px;
    border: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255,255,255,.3);
    border-radius: 5px;
    position: absolute;
    right: 0;
    margin-top: -200px;
}
.prosearch form .input-lg{
    float: left;
    width: 470px;
    height: 60px;
    padding: 0 20px;
    color: #000;
    background: #fff;
    border-radius: 5px 0 0 5px;
    border: 0;
    outline: 0;
}
.prosearch form .input-search-btn{
    float: right;
    width: 110px;
    height: 60px;
    color: #fff;
    font-size: 20px;
    background: #bda50d;
    border-radius: 0 5px 5px 0;
    border: 0;
    outline: 0;
    position: unset;
}
/*search*/

/*product*/
.navpro{
    background: #fff;
    position: relative;
    z-index: 10;
}
.navpro ul li{
    padding: 17px 0;
    position: relative;
}
.navpro ul li > a{
    display: block;
    color: #0f0f0f;
    font-size: 16px;
    border-left: 1px solid #0f0f0f;
    padding: 0 30px 0 15px;
}
.navpro ul li:nth-child(1) > a{
    border-left: 0;
}
.navpro ul li:nth-last-child(1) > a{
    padding-right: 0;
}
.navpro ul li > a:hover,
.navpro ul li > a.hover{
    color: #bda50d;
}
.navpro ul li > a i{
    padding-left: 10px;
}
.navpro ul li .navdown{
    display: none;
    width: 100%;
    background: #bda50d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 5px;
    position: absolute;
    z-index: 2;
    top: 50px;
    overflow: hidden;
}
.navpro ul li:hover .navdown{
    display: block;
}
.navpro ul li .navdown a{
    display: block;
    color: #0f0f0f;
    line-height: 30px;
    padding-left: 15px;
    border-bottom: 1px solid #a28e0a;
}
.navpro ul li .navdown a:hover,
.navpro ul li .navdown a.hover{
    color: #fff;
}
.product.inpro{
    padding: 10px 0 0;
}
/*showproduct*/
.showproduct{  padding: 50px 0;  }
/*<!--第一部分-->*/
.showproduct .proone{  background: #fff;  padding: 50px;  }
.showproduct .proone .proimgurl{  width: 600px;  margin: auto;  }
.showproduct .proone .prodisplayimg{  width: 130px;  margin-right: 10px;  position: relative;  }
.showproduct .proone .proonefr{  width: calc(100% - 800px)  }
.showproduct .proone .proonefr .proonetitle{  color: #202020;  font-size: 24px;  line-height: 30px;  }
.showproduct .proone .proonefr .proonename{  color: #202020;  font-size: 24px;  line-height: 30px;  border-bottom: 1px solid #d2d2d2;  padding: 5px 0 15px;  }
.showproduct .proone .proonefr .content{  color: #202020;  font-size: 16px;  line-height: 30px;  height: 390px;  overflow: auto;  margin: 20px 0;  }
.showproduct .proone .proonefr .content p br{  display: none;  }
.showproduct .proone .proonefr .prooneshare{  border-top: 1px solid #d2d2d2;  border-bottom: 1px solid #d2d2d2;  padding: 20px 0 15px;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #fff;  font-size: 15px;  background: #0f0f0f;  width: 44px;  line-height: 44px;  text-align: center;  border-radius: 5px;  overflow: hidden;  margin: 0 5px 5px 0;  }
.showproduct .proone .proonefr .prooneshare a.procon{  width: 130px;  color: #000;  background: #bda50d;  }
.showproduct .proone .proonefr .prooneshare a.procon i{  padding-right: 10px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm:before{  border-left: 8px solid #fff;  border-right: 0;  top: 15px;  left: -5px;  right: auto;  }
.showproduct .proone .proonefr .prooneshare .pro2wm:after{  box-shadow: 3px 0 10px rgba(0, 0, 0, .2);  top: 18px;  left: -5px;  right: auto;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm{  left: auto;  right: 54px;  bottom: -30px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm img{  width: 100%;  height: 100%;  }
/*<!--第二部分-->*/
.showproduct .protwo{  padding-bottom: 50px;  }
.showproduct .protwo .page_left{  width: 50%;  background: #bda50d;  }
.showproduct .protwo .page_right{  width: 50%;  background: #000;  }
.showproduct .protwo a{  display: block;  padding: 50px;  }
.showproduct .protwo a .page1{  color: #fff;  font-size: 18px;  padding-bottom: 20px;  }
.showproduct .protwo .page_left a .page1{  color: #0f0f0f;  }
/*<!--第三部分-->*/
.showproduct .prothree .related{  color: #bda50d;  font-size: 30px;  border-bottom: 1px solid #272727;  padding-bottom: 20px;  }
.showproduct .prothree .prolist{  padding: 0;  }
/*product*/

/*download*/
.indexnav{
    background: #fff;
}
.indexnav ul li{
    padding: 17px 0;
}
.indexnav ul li > a{
    display: block;
    color: #0f0f0f;
    font-size: 16px;
    border-left: 1px solid #0f0f0f;
    padding: 0 15px;
}
.indexnav ul li:nth-child(1) > a{
    color: #bda50d;
    border-left: 0;
}
.indexnav ul li > a:hover,
.indexnav ul li > a.hover{
    color: #bda50d;
}
#download1{
    padding: 70px 0 0;
    overflow: hidden;
}
#download1 .downtitle{
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
}
#download2{
    padding: 70px 0 0;
    overflow: hidden;
}
#download2 .downtitle{
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#download2 ul li{
    width: 48%;
    border: 1px solid #272727;
    margin: 20px 4% 0 0;
}
#download2 ul li:nth-child(2n){
    margin-right: 0;
}
#download2 ul li .title{
    width: calc(100% - 170px);
    color: #fff;
    line-height: 30px;
    padding: 10px 30px;
}
#download2 ul li .title img{
    margin-right: 10px;
}
#download2 ul li .downloadurl{
    color: #fff;
    line-height: 30px;
    border-left: 1px solid #272727;
    padding: 10px 30px;
}
#download2 ul li .downloadurl img{
    margin-right: 10px;
}
#download3{
    padding: 70px 0 100px;
    overflow: hidden;
}
#download3 .downtitle{
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
}
#download3 .innews{
    padding: 0;
}
#download3 .innews ul li{
    margin-top: 80px;
}
/*download*/

/*news*/
.news{
    padding: 0;
}
.news ul li{
    margin-top: 80px;
}
/*shownews*/
.shownews{
    padding-top: 50px;
    overflow: hidden;
}
.shownews .title{
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.shownews .updatetime{
    color: #ccc;
    text-align: center;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}
.shownews .content{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #fff;
    padding: 30px 0 50px;
    border-top: 1px solid #333;
}
.shownews .detailpage p{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.shownews .detailpage p a{
    color: #fff;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #bda50d;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    display: none;
    color: #fff;
    background: #bda50d;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*about*/
.about1{
    padding: 100px 0 0;
    overflow: hidden;
}
.about1 .about1fl{
    width: 360px;
}
.about1 .about1fl .webname{
    color: #bda50d;
    font-size: 30px;
}
.about1 .about1fl .title{
    color: #fff;
    font-size: 16px;
    padding: 15px 0 40px;
}
.about1 .about1fl .title2{
    width: 80px;
    height: 4px;
    background: #bda50d;
}
.about1 .content{
    width: calc(100% - 360px);
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    padding-left: 5%;
}
.about1 .countup{
    border-top: 1px solid #272727;
    border-bottom: 1px solid #272727;
    padding: 50px 0;
    margin: 50px 0 0;
}
.about1 .countup ul li{
    width: 33%;
    text-align: center;
    border-left: 1px solid #272727;
}
.about1 .countup ul li:nth-child(1){
    border-left: 1px solid transparent;
}
.about1 .countup ul li .shuzi{
    color: #fff;
    font-size: 60px;
    position: relative;
}
.about1 .countup ul li .shuzi sup{
    width: 30px;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    margin-left: 10px;
}
.about1 .countup ul li .countupname{
    color: #fff;
    font-size: 18px;
    padding-top: 10px;
}
.about2{
    padding:  0;
    overflow: hidden;
}
.about2 .abouttit{
    text-align: center;
    color: #bda50d;
    font-size: 30px;
    padding-bottom: 50px;
}
.about2 .about2img1{
    width: 36%;
}
.about2 .about2tit{
    width: 37%;
}
.about2 .about2tit p{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    padding: 30px 0;
}
.about2 .about2tit p span{
    color: #bda50d;
}
.span2 {
    text-align: center;
    display: block;
}

.about2 hr{
    border-top: 1px solid #272727;
    margin-top: 30px;
}
.about2 .about2text{
    padding-top: 20px;
}
.about2 .about2text p{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    padding-top: 30px;
    overflow: hidden;
}
.about2 .about2text p span{
    float: left;
    color: #bda50d;
    padding: 0 0 1px;
}
.about3{
    padding: 45px 0 0;
    overflow: hidden;
}
.about3 .abouttit{
    color: #bda50d;
    font-size: 30px;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    
}
.about3 .about3tit{
    width: 50%;
}
.about3 .about3tit p{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 30px;
}
.about3 .about3tit p span{
    color: #bda50d;
}
.about3 .about3tit ul li{
    color: #fff;
    font-size: 16px;
    line-height: 36px;
    overflow: hidden;
}
.about3 .about3tit ul li .shuzi{
    width: 140px;
}
.about4{
    padding: 0;
    overflow: hidden;
}
.about4 .abouttit{
    text-align: center;
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
}
.about4 ul li{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    overflow: hidden;
    margin-top: 50px;
}
.about4 ul li .shuzi{
    width: 150px;
    color: #bda50d;
    font-size: 48px;
    line-height: 50px;
}
.about5{
    padding: 100px 0;
    overflow: hidden;
}
.about5 .abouttit{
    text-align: center;
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
}
.about5 .about5img{
    width: 320px;
    margin: 150px auto 0;
    position: relative;
}
.about5 .about5img p{
    color: #bda50d;
    font-size: 18px;
    padding-bottom: 15px;
}
.about5 .about5img span{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
.about5 .about5img .about5img1{
    width: 100%;
    text-align: center;
    position: absolute;
    top: -100px;
}
.about5 .about5img .about5img2{
    text-align: right;
    position: absolute;
    top: 180px;
    left: -270px;
}
.about5 .about5img .about5img3{
    position: absolute;
    top: 180px;
    right: -340px;
}
.about6{
    padding:50px 0 0 0;
    overflow: hidden;
}
.about6 p{
color: #fff;
    font-size: 16px;
    line-height: 30px;
}
.about6 .abouttit{
    color: #bda50d;
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
}
.about6 .about6img img{
    margin: auto;
}
/*about*/

/*contact*/
.contact{
    padding: 50px 0;
    overflow: hidden;
}
.contact .contitle{
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.contact .conadd{
    width: 520px;
}
.contact .conadd .context{
    color: #fff;
    font-size: 16px;
    padding-bottom: 60px;
}
.contact .conadd .content p{
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    border-bottom: 1px solid #272727;
    margin: 0;
}
.contact .conadd .confx{
    padding-top: 30px;
    position: relative;
    left: -20px;
}
.contact .conadd .confx a{
    display: inline-block;
    margin-left: 22px;
}
.contact .conmap{
    width: calc(100% - 570px);
    margin-left: 50px;
    position: relative;
    overflow: hidden;
}
.contact .conmap .conmapimg{
    max-width: 830px;
    position: relative;
    left: 50%;
    margin-left: -415px;
}
.contact .conmap .footaddmap{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    background: #bda50d;
    padding: 10px 25px;
    position: absolute;
    left: 20px;
    bottom: 30px;
}
.contact .conmap .footaddmap img{
    padding-right: 10px;
}
.confeed{
    background: #171717;
    padding: 50px 0;
    overflow: hidden;
}
.confeed .contitle{
    color: #bda50d;
    font-size: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.confeed .ftype_input{
    overflow: hidden;
}
.confeed .ftype_input input{
    width: 48%;
    height: 60px;
    color: #fff;
    font-size: 16px;
    background: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #fff;
}
.confeed textarea{
    margin-top: 20px;
    width: 100%;
    height: 120px;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    background: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #fff;
}
.confeed .submit{
    width: 180px;
    height: 50px;
    color: #171717;
    font-size: 16px;
    margin-top: 30px;
    background: #bda50d;
    outline: 0;
    border: 0;
}
/*contact*/
@media (max-width: 1400px){
    .prosearch{
        margin-top: -150px;
    }
    .navpro ul li > a{
        padding: 0 25px 0 15px;
    }
    .showproduct .proone .proonefr .content{
        height: unset;
    }
    .about2 .about2text ul li{
        width: 100%;
    }
    .about3 .about3tit{
        width: 40%;
    }
}
@media (max-width: 1200px){
    #header .headerbj .headright{
        display: none;
    }
    .inabout .inaboutfr .inaboutbj{
        top: 8px;
    }
    .inabout .inaboutfr .inaboutbj .webname{
        font-size: 24px;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .showproduct .proone .proonefr{
        width: 100%;
        padding-top: 30px;
    }
    .about3 .about3img{
        width: 60%;
    }
    .about4 ul li .title{
        width: calc(100% - 150px);
    }
}
/*手机版*/
#header .menubutton2{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #fff;  }
#header .menubutton .menuicon.top{ animation:icon01 linear infinite 2s; }
#header .menubutton .menuicon.middle{ animation:icon02 linear infinite 2s; }
#header .menubutton .menuicon.bottom{ animation:icon03 linear infinite 2s; }
@keyframes icon01{ 0%{ width:100%;} 25%{ width:25%;} 100%{ width:100%;} }
@keyframes icon02{ 0%{ width:100%;} 50%{ width:25%;} 100%{ width:100%;} }
@keyframes icon03{ 0%{ width:100%;} 75%{ width:25%;} 100%{ width:100%;} }
/*导航*/
.menumain{  display: none;  background: #bda50d;  width: 100%!important;  height: 100%;  overflow: auto!important;  position: fixed;  top: 0;  left: 0;  z-index: 1000;  opacity: 1!important;  }
.menumain .menubox{  margin: 50px 5% 80px;  padding: 1px 0;  }
.menumain .menubox .menunav{  overflow: hidden;  }
.menumain .menubox .menunav .menuone a{  display: block;  color: #fff;  font-size: 16px;  line-height: 20px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid rgba(255, 255, 255, .2);  }
.menumain .menubox .menunav .menuone .menutwo{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo.bai{  width: 100%;  }
.menumain .menubox .menunav .menuone .menutwo:before{  content: '';  width: 3px;  height: 3px;  background: rgba(255, 255, 255, .5);  border-radius: 50%;  position: absolute;  left: -8px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: rgba(255, 255, 255, .8);  font-size: 15px;  margin: 30px 20px 0 5px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree:before{  content: '';  width: 3px;  height: 3px;  background: rgba(255, 255, 255, .5);  border-radius: 50%;  position: absolute;  left: -6px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: rgba(255, 255, 255, .5);  font-size: 14px;  margin: 20px 20px 0 10px;  }
.menumain .menubox .menunav a.hover{  color: #fff !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  overflow: hidden;  }
.menumain .menubox .lang a{  float: left;  width: 48%;  height: 40px;  line-height: 40px;  border: 1px solid rgba(255, 255, 255, .2);  margin: 2% 1%;  border-radius: 5px;  box-sizing: border-box;  }
.menumain .menubox .lang a img{  display: inline-block;  width: 25px;  margin-right: 10px;  position: relative;  top: -2px;  }
.menumain .menubox .lang a span{  display: inline-block;  color: #fff;  font-size: 15px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #bda50d;  border-top: 1px solid rgba(255, 255, 255, .2);  position: fixed;  left: 0;  bottom: 0;  z-index: 1001;  }
#mobtool ul li{  float: left;  width: 20%;  text-align: center;  border-left: 1px solid rgba(255, 255, 255, .2);  box-sizing: border-box;  }
#mobtool ul li:nth-child(1){  border: none;  }
#mobtool ul li a.menubutton{  background: rgba(255, 255, 255, .2);  }
#mobtool ul li a{  display: block;  width: 100%;  height: 50px;  color: #fff;  padding-top: 10px;  }
#mobtool ul li a p{  height: 25px;  line-height: 25px;  overflow: hidden;  font-size: 12px;  text-transform: uppercase;  }
/*ios下载到桌面*/
.u-layer-ath{display: none;background:url(../images/ath.png) no-repeat;z-index:99999999;width:200px;height:75px;position:fixed;bottom:0;left:50%;margin-left:-100px;background-size:contain;transform:translate3D(0,0,0);transition:2s all;perspective:400px;}
.u-layer-ath.u-ani-ath{transform:rotateY(360deg) translateZ(100px);}
.u-layer-ath .ath_addhome{position:absolute;left:0;top:0;width:140px;height:60px;}
.u-layer-ath .ath_close{position:absolute;right:0;top:0;width:30px;height:30px;}
/*list分类*/
#sortpro{  height: 40px;  line-height: 40px;  text-align: center;  background: #fff;  border-bottom: 1px solid #bda50d;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #bda50d;  }
#sortpro .sortpro_right{  float: right;  width: 35%;  color: #000;  font-size: 14px;  }
#sort_content{  width: 100%;  height: 100%;  overflow: hidden;  background: #eee;  position: fixed;  top: 0;  left: 0;  z-index: 10001;  -webkit-transform: translate3d(0px, 100%, 0px);  -moz-transform: translate3d(0px, 100%, 0px);  transform: translate3d(0px, 100%, 0px);  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);  -moz-transition: -moz-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);  -o-transition: -o-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);  transition: transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19)  }
#sort_content.show{  -webkit-transform: translate3d(0px, 0%, 0px);  -moz-transform: translate3d(0px, 0%, 0px);  transform: translate3d(0px, 0%, 0px);  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);  -moz-transition: -moz-transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);  -o-transition: -o-transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);  transition: transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000)  }
#sort_content .asort{  height: 100%;  }
.asort .hd{  height: 60px;  background: #bda50d;  }
.asort .hd .fl{  color: #fff;  font-size: 18px;  line-height: 60px;  padding: 0 20px;  }
.asort .hd .fr{  width: 30px;  height: 30px;  margin: 15px;  background: url(../images/proclose.jpg);  background-size: cover;  }
.asort .ct{  height: calc(100% - 60px);  padding: 2%;  overflow: auto;  }
.asort .ct ul{  background: #fff;  border-top: 1px solid #eee;  }
.asort .ct ul li{  padding: 0 15px;  border-bottom: 1px solid #eee;  }
.asort .ct ul li a{  display: block;  }
.asort .ct ul li a p{  display: inline-block;  width: calc(100% - 30px);  height: 58px;  line-height: 58px;  overflow: hidden;  color: #333;  font-size: 14px;  text-align: left;  }
.asort .ct ul li a i{  float: right;  width: 15px;  height: 15px;  border: 3px solid #ddd;  background: #fff;  border-radius: 50%;  margin-top: 22px;  }
.asort .ct ul li a.hover i{  border: 3px solid #bda50d;  }
.asort .ct ul .navdown li{  padding: 0 20px;  border-bottom: 1px dotted #eee;  }
.asort .ct ul .navdown li a p{  display: block;  width: 100%;  height: 50px;  line-height: 50px;  color: #aaa;  }
.asort .ct ul li a.hover p{  color: #bda50d;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton2{  display: block;   width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0; }
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .mfp-zoom-out-cur, .mfp-wrap{  width: 100% !important;  height: 100% !important;  overflow: hidden;  }
    .mfp-wrap .mfp-arrow-left{  margin-left: -47%;  }
    .mfp-wrap .mfp-arrow-right{  margin-right: -47%;  }
    .pcweb{  display: none;  }
    .mobileweb{  display: block;  }
    /*index*/
    #header .headerbj .headlogo{
        height: 50px;
        padding: 12px 0;
    }
    #header .headerbj .headnav{
        display: none;
    }
    #mcbanner{
        padding-top: 50px;
    }
    #mcbanner .indexbanner .swiper-button-prev,
    #mcbanner .indexbanner .swiper-button-next,
    #mcbanner .indexbanner .swiper-pagination{
        display: none;
    }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .menumain .menubox .menunav .menuone:nth-child(3) .menuone_two,
    .menumain .menubox .menunav .menuone:nth-child(4) .menuone_two{
        display: none;
    }
    .injscx img{
        max-width: 1300px;
        margin-left: -650px;
    }
    .inabout .intitle1{
        font-size: 30px;
    }
    .inabout .intitle2{
        width: auto;
    }
    .inabout .inaboutimg{
        width: 100%;
    }
    .inabout .inaboutimg img{
        max-width: 100%;
    }
    .inabout .inaboutfr{
        width: 100%;
    }
    .inabout .inaboutfr .inaboutbj{
        padding: 30px;
        margin: 0;
        top: 0;
        left: 0;
    }
    .inabout .inaboutfr .inaboutbj .shuzi{
        display: none;
    }
    .incolumn{
        padding: 50px 0;
    }
    .incolumn .incolumnfl{
        font-size: 30px;
        padding-bottom: 0;
    }
    .incolumn .incolumnfr{
        display: none;
    }
    .incolumn ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .indzhc{
        background-position: -500px 0;
    }
    .indzhc .indzhcfr{
        width: 100%;
    }
    .indzhc .indzhcfr .more{
        padding: 20px 30px;
        margin-left: 15%;
    }
    .inpro{
        padding: 50px 0;
    }
    .inpro .intitle{
        font-size: 30px;
        padding-bottom: 0;
    }
    .inpro ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .invideo .invideoimg{
        margin: 0;
    }
    .invideo .invideoimg p{
        font-size: 30px;
        left: 20px;
        bottom: 60px;
    }
    .invideo .invideoimg span{
        font-size: 20px;
        left: 20px;
        bottom: 30px;
    }
    .invideo ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .innews{
        padding: 20px 0 50px;
    }
    .innews ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    #footer .foottop,
    #footer .footcon{
        display: none;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail .footright{  width: 100%;  }
    #footer .foottail .footright br{  display: block;  }
    #footer .foottail .footright a:nth-last-child(1){  display: block;  }
    #footer .foottail .tailimg{  width: 100%;  }
    #footer .foottail .tailimg img{  margin: 15px auto 0;  }
    #footer .foottail .footother{  display: none;  }

    .prosearch{
        left: 50%;
        right: auto;
        margin: -120px 0 0 -150px;
    }
    .prosearch form .input-lg{
        width: 200px;
        height: 50px;
    }
    .prosearch form .input-search-btn{
        width: 80px;
        height: 50px;
        font-size: 20px;
    }
    .navpro{
        display: none;
    }
    .product.inpro{
        padding: 0;
    }
    .showproduct{
        padding: 30px 0 50px;
    }
    .showproduct .proone{
        padding: 20px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #bda50d;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .protwo a{
        padding: 30px;
    }
    .showproduct .prothree .prolist ul li:nth-child(n+2){
        display: none;
    }
    #message.show #center{  width: 90%;  top: 50px;  transform: translate(-50%, 0);  }
    #message #center #feedback{  padding: 20px 0 20px 20px;  margin-bottom: 50px;  }
    #message #center #feedback .pro{  width: calc(100% - 30px);  margin-bottom: 15px;  }
    #message #center #feedback dl{  width: 100%;  padding: 0 30px 15px 0;  }

    .indexnav{
        display: none;
    }
    #download1{
        padding: 50px 0 0;
    }
    #download2{
        padding: 50px 0 0;
    }
    #download2 ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    #download3{
        padding: 50px 0;
    }
    #download3 .innews ul li{
        margin-top: 50px;
    }
    .about1{
        padding: 50px 0 0;
    }
    .about1 .about1fl{
        width: 100%;
    }
    .about1 .about1fl .webname{
        font-size: 24px;
    }
    .about1 .content{
        width: 100%;
        padding: 30px 0 0;
    }
    .about1 .countup{
        padding: 50px 0 0;
    }
    .about1 .countup ul li{
        width: 50%;
        border-left: 1px solid transparent;
        padding-bottom: 50px;
    }
    .about1 .countup ul li .shuzi{
        font-size: 30px;
    }
    .about2{
        padding: 50px 0 0;
    }
    .about2 .about2img1{
        width: 100%;
    }
    .about2 .about2tit{
        width: 100%;
    }
    .about2 hr{
        padding: 30px 0 0;
        margin: 0;
    }
    .about2 .about2text p span{
        padding: 0;
    }
    .about3{
        padding:  0;
    }
    .about3 .about3img{
        width: 100%;
        padding: 30px 0 0;
    }
    .about3 .about3tit{
        width: 100%;
        padding: 30px 0 0;
    }
    .about4{
        padding: 50px 0 0;
    }
    .about4 ul li{
        margin-top: 30px;
    }
    .about4 ul li .shuzi{
        width: 90px;
        font-size: 30px;
    }
    .about4 ul li .title{
        width: calc(100% - 90px);
    }
    .about5{
        padding: 50px 0 0;
    }
    .about5 .about5img{
        width: auto;
        margin: 0;
    }
    .about5 .about5img > img{
        display: none;
    }
    .about5 .about5img .about5img1,
    .about5 .about5img .about5img2,
    .about5 .about5img .about5img3{
        text-align: left;
        position: unset;
        padding: 30px 0 0;
    }
    .about6{
        padding: 0;
    }
    .about6 .abouttit{
        margin-bottom: 20px;
    }
    .contact .conadd{
        width: 100%;
    }
    .contact .conadd .confx{
        display: none;
    }
    .contact .conmap{
        width: 100%;
        margin: 50px 0 0;
    }
    .contact .conmap .conmapimg{
        max-width: 100%;
        left: 0;
        margin: 0;
    }
    .confeed .contitle{
        margin-bottom: 20px;
    }
    .confeed .ftype_input input{
        width: 100%;
    }
}