@charset "utf-8";

@font-face{
    font-family: 'RobotoBoldCondensed';
    src: url('../fonts/RobotoBoldCondensed.eot');
    src: url('../fonts/RobotoBoldCondensed.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RobotoBoldCondensed.woff2') format('woff2'),
    url('../fonts/RobotoBoldCondensed.woff') format('woff'),
    url('../fonts/RobotoBoldCondensed.ttf') format('truetype'),
    url('../fonts/RobotoBoldCondensed.svg#NeuesBauenDemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'RobotoBoldCondensed';}

/*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: #000000; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #e30230; 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: #fff;}
::-webkit-input-placeholder{opacity: 1;}::-moz-placeholder{opacity: 1;}:-ms-input-placeholder{opacity: 1;}
@media(min-width: 1200px){.container{width: 1200px;padding: 0;}}
.fl{float: left;}
.fr{float: right;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
/*end web*/

/*滚动条*/
::-webkit-scrollbar{width:6px; height:6px; border-radius:50px;}
::-webkit-scrollbar-track{background-color:#dbdbdb; border-radius:50px;}
::-webkit-scrollbar-thumb{background-color:#979797; border-radius:50px; border: 2px solid #dbdbdb;}
::-webkit-scrollbar-thumb:hover{background-color:#979797; border-radius:50px; border: 2px solid #dbdbdb;}
::-webkit-scrollbar-thumb:active{background-color:#979797; border-radius:50px; border: 2px solid #dbdbdb;}
/*end 滚动条*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager a{background:#333;color:#fff;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager a.curpage{background:#e30230;}
.mc_pager a:nth-child(3),.mc_pager a:nth-last-child(2){width:50px;font-size: 0;}
.mc_pager a:nth-child(3):before{content:'◀';font-size:14px;}
.mc_pager a:nth-last-child(2):before{content:'▶';font-size:14px;}
.mc_pager .pageinfo,.mc_pager .homepage,.mc_pager .endpage{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: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    overflow: auto;
    position: fixed;
    z-index: 1000;
    top: 0;
}
#header .headlogo{
    display: block;
    padding: 30px 0;
}
#header .headlogo img{
    margin: auto;
}
#header .headnav ul li{
    padding: 10px 0;
}
#header .headnav ul li a{
    display: block;
    color: #282828;
    font-size: 17px;
    line-height: 44px;
    text-align: center;
}
#header .headnav ul li.hover a{
    color: #fff;
    background: url(../img/headnav.jpg) top left no-repeat;
}
#header .headmap{
    width: 50px;
    display: table;
    margin: 40px auto 0;
}
#header .headlang{
    padding: 50px 0 50px 90px;
}
#header .headlang .pro2wm{
    margin: 0 15px;
}
#header .headlang .pro2wm .wxewm{
    height: 100px;
    left: 42px;
    bottom: -35px;
}
#header .headlang .pro2wm:hover .wxewm{
    width: 100px;
}
#header .headlang .bdsharebuttonbox .bds_more{
    display: block;
    width: 28px;
    height: 28px;
    background: url(../img/headlang3.jpg);
    padding: 0;
    margin: 0;
}
#header .headfoot .footright{
    color: #353535;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
}
#header .headfoot .footbanquan{
    display: block;
}
#header .headfoot .footbanquan img{
    height: 50px;
    padding: 10px 0 20px;
    margin: auto;
}
#main{
    width: calc(100% - 300px);
    height: 100%;
    margin-left: 300px;
    position: relative;
    overflow: hidden;
}
/*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 #e30230;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #e30230;
    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;
}



.indexbanner{
    width: 100%;
}
.indexbanner img{
    max-width: none;
}
.indexbanner .info_slide{
    display: block!important;
    position: absolute;
    z-index: 25;
    left: 7%;
    bottom: 70px;
}
.indexbanner .info_slide .image_number{
    float: left;
    width: 23px;
    height: 23px;
    margin-right: 7px;
    background: url(../img/tubiao1.png)!important;
    font-size: 0;
    cursor: pointer;
}
.indexbanner .info_slide .image_number.image_number_select{
    background: url(../img/tubiao2.png)!important;
}
/*index*/

/*foot*/
#footer{
    background: #333;
    position: relative;
    z-index: 2;
}
#footer .foottail .footright{
    color: #fff;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #fff;
}
/*foot*/

/*product*/
.productnav{
    padding: 70px 20px 0;
    overflow: hidden;
}
@media(min-width: 1400px){.productnav .container{width: 1400px;}}
.productnav .navtitfl{
    padding-bottom: 50px;
}
.productnav .navtitfl .navtit1{
    color: #b6b6b6;
    font-size: 20px;
    padding-bottom: 20px;
    position: relative;
}
.productnav .navtitfl .navtit1:before{
    content: '';
    width: 100px;
    height: 1px;
    background: #dfe0e3;
    position: absolute;
    top: 10px;
    left: 100px;
}
.productnav .navtitfl .navtit2{
    color: #dfe0e3;
    font-size: 65px;
}
.productnav .navtitfr{
    margin-top: 40px;
    position: relative;
    z-index: 10;
}
.productnav .navtitfr .navtitle{
    border: 1px solid #edeeef;
    padding: 3px 6px 3px 30px;
}
.productnav .navtitfr .navtitle span{
    color: #969696;
    font-size: 15px;
    line-height: 24px;
    padding-right: 50px;
}
.productnav .navtitfr .navtitle i{
    width: 28px;
    color: #fff;
    line-height: 24px;
    text-align: center;
    background: #afafaf;
}
.productnav .navtitfr .navlist{
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    display: none;
}
.productnav .navtitfr:hover .navlist{
    display: block;
}
.productnav .navtitfr .navlist a{
    display: block;
    color: #969696;
    line-height: 40px;
    padding-left: 30px;
    border-bottom: 1px solid #f2f2f2;
}
.productnav .navtitfr .navlist a:hover{
    color: #e30230;
}
.productnav .pronavlist .swiper-container{
    padding: 10px 1px 100px;
}
.productnav .pronavlist .swiper-container .swiper-pagination-bullet{
    width: 23px;
    height: 23px;
    background: url(../img/tubiao1.png);
    margin: 0 7px;
    opacity: 1;
}
.productnav .pronavlist .swiper-container .swiper-pagination-bullet-active{
    background: url(../img/tubiao2.png);
}
.productnav .pronavlist a{
    display: block;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 5px;
    border-radius: 10px;
}
.productnav .pronavlist a .catimg{
    overflow: hidden;
}
.productnav .pronavlist a .catimg img{
    width: 100%;
}
.productnav .pronavlist a .catname{
    display: table;
    color: #1c1c1c;
    font-size: 15px;
    border-bottom: 1px solid;
    margin: 30px auto 20px;
}
.productnav .pronavlist a .pinpai{
    display: table;
    color: #1c1c1c;
    font-size: 15px;
    border-bottom: 1px solid;
    margin: 0 auto 30px;
}
.product{
    padding: 70px 20px 0;
    overflow: hidden;
}
@media(min-width: 1400px){.product .container{width: 1400px;}}
.product .protitle1{
    color: #b6b6b6;
    font-size: 20px;
    padding-bottom: 20px;
    position: relative;
}
.product .protitle1:before{
    content: '';
    width: 100px;
    height: 1px;
    background: #dfe0e3;
    position: absolute;
    top: 10px;
    left: 100px;
}
.product .protitle2{
    color: #dfe0e3;
    font-size: 65px;
    padding-bottom: 40px;
}
.product .prolist{
    height: 650px;
    overflow: auto;
}
.product .prolist ul li{
    width: 19%;
    margin-right: 1%;
}
.product .prolist ul li a{
    display: block;
}
.product .prolist ul li a .imgurl{
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: 1px solid #f3f3f3;
    overflow: hidden;
}
.product .prolist ul li a .title{
    color: #a5a5a5;
    font-size: 15px;
    text-align: center;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product .prolist ul li a:hover .title{
    color: #e30230;
}
/*showproduct*/
.showproduct{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    right: 0;
}
.showproduct .proone{
    width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.showproduct .proone .mobprodisplayimg .swiper-container .swiper-pagination{
    bottom: 30px;
}
.showproduct .proone .mobprodisplayimg .swiper-container .swiper-pagination-bullet{
    width: 23px;
    height: 23px;
    background: url(../img/tubiao1.png);
    margin: 0 5px;
    opacity: 1;
}
.showproduct .proone .mobprodisplayimg .swiper-container .swiper-pagination-bullet-active{
    background: url(../img/tubiao2.png);
}
.showproduct .proonename{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}
.showproduct .proonename .name{
    color: #484848;
    font-size: 22px;
    font-weight: 100;
    line-height: 35px;
}
.showproduct .proonename .title{
    color: #484848;
    font-size: 20px;
    font-weight: 100;
    line-height: 35px;
}
.showproduct .proclose{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}
/*product*/

/*news*/
.news{
    height: 100%;
    background: #f7f7f7;
    padding: 100px 20px 0;
    overflow: hidden;
}
@media(min-width: 1500px){.news .container{width: 1500px;}}
.news .newstitle1{
    color: #b6b6b6;
    font-size: 20px;
    padding-bottom: 20px;
    position: relative;
}
.news .newstitle1:before{
    content: '';
    width: 100px;
    height: 1px;
    background: #dfe0e3;
    position: absolute;
    top: 10px;
    left: 100px;
}
.news .newstitle2{
    color: #dfe0e3;
    font-size: 65px;
    padding-bottom: 40px;
}
.news .newslist{
    height: 600px;
    overflow: auto;
}
.news .newslist ul li{
    width: 23.5%;
    margin: 0 1.5% 1.5% 0;
}
.news .newslist ul li a{
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.news .newslist ul li a .imgurl{
    overflow: hidden;
}
.news .newslist ul li a .imgurl img{
    width: 100%;
}
.news .newslist ul li a .title{
    color: #292929;
    font-size: 16px;
    font-weight: bold;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news .newslist ul li a:hover .title{
    color: #e30230;
}
.news .newslist ul li a .description{
    color: #535355;
    line-height: 25px;
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
/*shownews*/
.shownews{
    height: 100%;
    padding: 100px 20px;
    overflow: auto;
}
.shownews .title{
    color: #333;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.shownews .updatetime{
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.shownews .content{
    color: #333;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #333;
    padding: 30px 0 50px;
    border-top: 1px solid #ccc;
}
.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: #333;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #e30230;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #333;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*workshop*/
.workshop{
    padding: 160px 20px 0;
    overflow: hidden;
}
@media(min-width: 1500px){.workshop .container{width: 1500px;}}
.workshop ul li{
    width: 23%;
    margin: 0 1% 2% 1%;
}
.workshop ul li a{
    display: block;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.workshop ul li a img{
    width: 100%;
}
.workshop ul li a .title{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition-duration: 1s;
}
.workshop ul li a:hover .title{
    transform: scale(1);
}
.workshop ul li a .title p{
    color: #fff;
    font-size: 22px;
    font-weight: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.workshop .mc_pager{
    padding: 30px 0 0;
}
.workshop .mc_pager a:nth-child(3),
.workshop .mc_pager a:nth-last-child(2){
    display: none;
}
.workshop .mc_pager a{
    width: 23px;
    height: 23px;
    background: url(../img/tubiao1.png);
    margin: 0 5px;
    font-size: 0;
}
.workshop .mc_pager a.curpage{
    background: url(../img/tubiao2.png);
}
/*workshop*/

/*about*/
.about{
    height: 100%;
    overflow: hidden;
}
.about .aboutbj{
    width: 50%;
    height: 100%;
    background: url(../img/aboutbj.jpg);
    background-size: cover;
}
.about .aboutcon{
    width: 50%;
    height: 100%;
    overflow: auto;
    padding: 100px 50px 50px 100px;
}
.about .aboutcon .content{
    color: #565656;
    font-size: 15px;
    line-height: 35px;
}
.about .aboutcon .content h3{
    color: #b6b6b6;
    font-size: 20px;
    padding-left: 40px;
    position: relative;
}
.about .aboutcon .content h3:before{
    content: '';
    width: 100px;
    height: 1px;
    background: #dfe0e3;
    position: absolute;
    top: 10px;
    left: 140px;
}
.about .aboutcon .content h2{
    color: #f7f7f7;
    font-size: 180px;
    padding: 0 0 20px;
}
/*about*/

/*contact*/
.contact{
    padding: 380px 20px 0;
    background: url(../img/contactbj.jpg) no-repeat;
    background-size: contain;
}
@media(min-width: 1400px){.contact .container{width: 1400px;}}
.contact ul li{
    width: 30.66%;
    margin-right: 4%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
    min-height: 240px;
}
.contact ul li:nth-child(3n){
    margin-right: 0;
}
.contact ul li .title{
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    font-size: 18px;
    line-height: 30px;
    padding: 30px 30px 20px;
    margin-bottom: 30px;
}
.contact ul li .title img{
    padding-right: 20px;
}
.contact ul li p{
    color: #494949;
    font-size: 15px;
    line-height: 30px;
    padding: 0 30px;
}
.contact ul li .con2wm{
    width: 100px;
    position: absolute;
    top: 100px;
    right: 20px;
}
.contact .conmap{
    display: table;
    color: #e0e2e6;
    font-size: 60px;
    margin: 100px auto 0;
}
/*contact*/
@media (max-width: 1600px){
    #header{
        width: 200px;
    }
    #header .headlang{
        padding: 50px 0 50px 40px;
    }
    #main{
        width: calc(100% - 200px);
        margin-left: 200px;
    }
    .indexbanner .FrontPublic_slideShow01-d3_c1 .fn-clear{
        width: 1400px;
        margin-left: -700px;
    }
}
.indexbanner.pcweb2{
    display: none;
}
@media (max-width: 1440px){
    .indexbanner.pcweb{
        display: none;
    }
    .indexbanner.pcweb2{
        display: block;
        width: 130%;
        position: relative;
        left: 50%;
        margin-left: -65%;
    }
    .indexbanner.pcweb2 .swiper-pagination .swiper-pagination-bullet{
        width: 23px;
        height: 23px;
        background: url(../img/tubiao1.png);
        margin: 0 7px 30px;
        opacity: 1;
    }
    .indexbanner.pcweb2 .swiper-pagination .swiper-pagination-bullet-active{
        background: url(../img/tubiao2.png);
    }
    .indexbanner .FrontPublic_slideShow01-d3_c1 .fn-clear{
        width: 1240px;
        margin-left: -620px;
    }
    .indexbanner .info_slide{
        left: 8%;
        bottom: 150px;
    }
    .about .aboutcon .content h2{
        font-size: 150px;
    }
}
@media (max-width: 1280px){
    #header .headnav ul li{
        padding: 0 0 10px;
    }
    #header .headmap{
        margin: 20px auto 0;
    }
    #header .headlang{
        padding: 30px 0 30px 40px;
    }
    .indexbanner .FrontPublic_slideShow01-d3_c1 .fn-clear{
        width: 1080px;
        margin-left: -540px;
    }
    .about .aboutcon{
        padding: 50px;
    }
    .about .aboutcon .content h2{
        font-size: 120px;
    }
    .contact{
        padding: 200px 20px 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: #e30230;  }
#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: #333;  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, .5);  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: #333;  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(/michuanimg/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 #e30230;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #e30230;  }
#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: #e30230;  }
.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(../showproduct/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 #e30230;  }
.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: #e30230;  }
/*手机版*/
@media (max-width: 992px){
    #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{
        width: 100%;
        height: auto;
        z-index: 10000;
    }
    #header .headnav,
    #header .headmap,
    #header .headlang,
    #header .headfoot{
        display: none;
    }
    #header .headlogo{
        float: left;
        height: 50px;
        padding: 5px 10px;
    }
    #header .headlogo img{
        height: 100%;
    }
    #main{
        width: 100%;
        height: auto;
        margin: 0;
        overflow: unset;
        padding: 50px 0 0;
    }
    .indexbanner.pcweb2{
        display: none;
    }
    .indexbanner .swiper-pagination .swiper-pagination-bullet-active{
        background: #e30230;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail .footright{  width: 100%;  }
    #footer .foottail .footright a:nth-last-child(1){  display: block;  }
    #footer .foottail .footbanquan{  width: 100%;  }
    #footer .foottail .footbanquan img{  margin: 15px auto 0;  }

    .productnav{
        padding: 50px 0;
    }
    .productnav .navtitfr{
        display: none;
    }
    .product{
        padding: 50px 0 0;
    }
    .product .prolist{
        height: auto;
        overflow: unset;
    }
    .product .prolist ul li{
        width: 100%;
        margin: 0;
    }
    .showproduct .proone{
        width: 90%;
    }
    .showproduct .proone .mobprodisplayimg .swiper-container{
        padding: 70px 0 40px;
    }
    .showproduct .proone .mobprodisplayimg .swiper-container .swiper-pagination{
        bottom: 10px;
    }
    .showproduct .proone .mobprodisplayimg .swiper-container .swiper-pagination-bullet{
        width: 15px;
        height: 15px;
        background-size: cover;
        margin: 0 2px;
    }
    .showproduct .proonename{
        top: 10px;
        left: 10px;
    }
    .showproduct .proonename .name,
    .showproduct .proonename .title{
        font-size: 16px;
        line-height: 25px;
    }
    .showproduct .proclose{
        top: 10px;
        right: 10px;
    }
    .showproduct .proclose img{
        width: 40px;
    }
    #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;  }

    .about .aboutcon{
        width: 100%;
        height: auto;
        overflow: unset;
        padding: 50px 20px;
    }
    .about .aboutcon .content h2{
        font-size: 100px;
        padding: 20px 0;
    }
    .about .aboutbj{
        display: none;
    }
    .workshop{
        padding: 50px 0;
    }
    .workshop ul li{
        width: 100%;
        margin: 0 0 30px;
    }
    .news{
        padding: 50px 0;
    }
    .news .newstitle2{
        font-size: 50px;
    }
    .news .newslist{
        height: auto;
        overflow: unset;
    }
    .news .newslist ul li{
        width: 100%;
        margin: 0 0 30px;
    }
    .shownews{
        padding: 50px 0 0;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .contact{
        padding: 100px 0;
    }
    .contact ul li{
        width: 100%;
        margin: 0 0 50px;
        padding: 0 0 50px;
        min-height: unset;
    }
    .contact ul li .con2wm{
        display: none;
    }
    .contact .conmap{
        font-size: 40px;
        margin: 50px auto 0;
    }
}