@charset "utf-8";

/*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: #000; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #c80915; 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: #f3f3f3;}
::-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*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager ul{font-size: 0;}
.mc_pager ul li{background:#000;color:#fff;font-size:14px;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active{background:#c80915;}
.mc_pager ul li a{color:#fff;display:block;}
.mc_pager ul li .current{background:#c80915;display:block;}
.mc_pager ul li:nth-child(1),.mc_pager ul li:nth-last-child(1){width:50px;font-size: 0;}
.mc_pager ul li:nth-child(1) a:before,.mc_pager ul li:nth-child(1) .disabled:before{content:'◀';font-size:14px;}
.mc_pager ul li:nth-last-child(1) a:before,.mc_pager ul li:nth-last-child(1) .disabled:before{content:'▶';font-size:14px;}
/*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: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
#header .headerbj .container-fluid{
    padding: 0;
}
#header .headerbj .headlogo{
    height: 90px;
    padding: 25px 0 25px 35px;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headright{
    padding: 32px 22px;
    position: relative;
}
#header .headerbj .headright:before{
    content: '';
    width: 116px;
    height: 152px;
    background: url(../img/headright.png);
    position: absolute;
    top: 0;
    right: 0;
}
#header .headerbj .headright .headsearch,
#header .headerbj .headright .pro2wm{
    width: 26px;
    color: #fff;
    line-height: 26px;
    text-align: center;
    background: #9d000a;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
}
#header .headersearch{
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
}
#header .headersearch.show{
    display: block;
}
#header .headersearch .proclose{
    cursor: pointer;
    position: absolute;
    top: 10%;
    right: 5%;
}
#header .headersearch form{
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#header .headersearch form .input-text{
    width: 700px;
    height: 50px;
    padding: 0 20px;
    background: #fff;
    outline: 0;
    border: 0;
}
#header .headersearch form .input-submit{
    width: 100px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    background: #c80915;
    outline: 0;
    border: 0;
}
#header .headerbj .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 42px;
    right: 50%;
    margin-right: -8px;
}
#header .headerbj .pro2wm:after{
    height: 5px;
    top: 52px;
    right: 35%;
}
#header .headerbj .pro2wm .wxewm{
    width: 160px;
    height: 0;
    padding: 0 5px;
    top: 58px;
    left: 50%;
    margin-left: -125px;
}
#header .headerbj .pro2wm:hover .wxewm{
    height: 160px;
    padding: 5px;
}
#header .headerbj .headnav{
    display: block;
}
#header .headerbj .headnav > ul > li{
    margin-right: 40px;
}
#header .headerbj .headnav > ul > li .overflow{
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}
#header .headerbj .headnav > ul > li .overflow a{
    display: block;
    color: #252525;
    font-size: 16px;
    position: relative;
    top: -50px;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow a,
#header .headerbj .headnav > ul > li:hover .overflow a,
#header .headerbj .headnav > ul > li.active .overflow a{
    color: #c80915;
    top: 0;
}
/*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 #c80915;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #c80915;
    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;
}



#fp-nav ul li a span{
    width: 9px!important;
    height: 9px!important;
    background: #000!important;
    margin: 2px;
}
#fp-nav ul li a.active span{
    width: 13px!important;
    height: 13px!important;
    background: #c80915!important;
    border: 2px solid #fff!important;
    margin: 0;
}
.indexbanner,
.indexbanner .swiper-container,
.indexbanner img{
    width: 100%;
    height: 100%;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 10px 10px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet-active{
    background: transparent;
    border: 2px solid #fff;
}
.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%;
}
.inpro{
    height: 100%;
    overflow: hidden;
}
.inpro .inprotitle{
    width: 300px;
    height: 100%;
    background: #1d1b1c;
}
.inpro .inprolist{
    width: calc(100% - 300px);
    height: 100%;
    background: url(../img/inprolist.jpg) center / cover no-repeat;
}
.inpro .inprolist .swiper-container{
    width: 100%;
    height: 100%;
}
.inpro .inprolist .swiper-button-prev,
.inpro .inprolist .swiper-button-next{
    display: none;
}
.inpro .inprolist a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}
.inpro .inprolist a .list1{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.inpro .inprolist a .list1 .name{
    color: #fff;
    font-size: 30px;
    padding-bottom: 20px;
}
.inpro .inprolist a .list1 .namemark{
    color: rgba(255, 255, 255, .5);
}
.inpro .inprolist a .list2{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    padding: 10px;
    position: relative;
    z-index: 1;
    transition-duration: .5s;
}
.inpro .inprolist a:hover .list2{
    background: #fff;
}
.inpro .inprolist a .list2 .columnimg{
    overflow: hidden;
    position: relative;
    top: -100%;
    transition-duration: 1s;
}
.inpro .inprolist a:hover .list2 .columnimg{
    top: 0;
}
.inpro .inprolist a .list2 .columnimg img{
    width: 100%;
}
.inpro .inprolist a .list2 .listname{
    position: relative;
    top: 100%;
    transition-duration: 1s;
}
.inpro .inprolist a:hover .list2 .listname{
    top: 0;
}
.inpro .inprolist a .list2 .listname .name{
    color: #c80915;
    font-size: 30px;
    padding: 40px 0 20px;
}
.inpro .inprolist a .list2 .listname .namemark{
    color: #1d1b1b;
}
.inpro .inprolist a .list2 .listname img{
    margin: 70px auto;
}
.inpro .inprolist a .list2 .listname .other_info{
    color: rgba(29, 27, 27, .3);
    font-size: 36px;
}
.inabout{
    height: 100%;
    background: #fff;
    overflow: hidden;
}
.inabout .inaboutimg{
    width: 44%;
    height: 100%;
    position: relative;
}
.inabout .inaboutimg img{
    position: absolute;
    left: 0;
    bottom: 0;
}
.inabout .inaboutlist{
    width: calc(56% - 300px);
    height: 100%;
    position: relative;
}
.inabout .inaboutlist .inaboutbj{
    width: 100%;
    padding: 0 15%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.inabout .inaboutlist .inaboutbj .namemark{
    color: #c80915;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Arial';
}
.inabout .inaboutlist .inaboutbj .webname{
    color: #000;
    font-size: 30px;
    font-weight: bold;
    padding: 10px 0 50px;
}
.inabout .inaboutlist .inaboutbj .description{
    color: #000;
    font-size: 16px;
    line-height: 28px;
}
.inabout .inaboutlist .inaboutbj a{
    display: table;
    color: #000;
    font-size: 16px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin-top: 30px;
}
.inabout .inaboutlist .inaboutbj a:hover{
    color: #c80915;
    border-bottom: 2px solid #c80915;
}
.inabout .inabouttitle{
    width: 300px;
    height: 100%;
    background: #c80915;
}
.innews{
    height: 100%;
    background: #fff;
    overflow: hidden;
}
.innews .innewstitle{
    width: 300px;
    height: 100%;
    background: #c80915;
}
.innews .innewslist{
    width: calc(100% - 300px);
    height: 100%;
    position: relative;
}
.innews .innewslist ul{
    width: 100%;
    padding: 0 5%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.innews .innewslist ul li{
    width: 30%;
    margin-right: 5%;
}
.innews .innewslist ul li:nth-child(3){
    margin-right: 0;
}
.innews .innewslist ul li a{
    display: block;
}
.innews .innewslist ul li a .imgurl{
    overflow: hidden;
}
.innews .innewslist ul li a .imgurl img{
    width: 100%;
}
.innews .innewslist ul li a .title{
    color: #211a19;
    font-size: 16px;
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews .innewslist ul li a:hover .title{
    color: #c80915;
}
.innews .innewslist ul li a .description{
    color: #211a19;
    line-height: 28px;
    height: 84px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.innews .innewslist ul li a .updatetime{
    width: 0;
    height: 40px;
    border-top: 2px solid #c80915;
    padding-top: 20px;
    margin-top: 20px;
    overflow: hidden;
    transition-duration: 1s;
}
.innews .innewslist ul li a:hover .updatetime{
    width: 100%;
}
.innews .innewslist ul li a .updatetime .newstime{
    width: 80px;
    color: #211a19;
}
.innews .innewslist ul li a .updatetime .newsicon{
    width: 10px;
    color: #b9b9b9;
}
.incase{
    height: 100%;
    background: #fff;
    overflow: hidden;
}
.incase .incasetitle{
    width: 300px;
    height: 100%;
    background: #c80915;
}
.incase .incaselist{
    width: calc(100% - 300px);
    height: 100%;
}
.incase .incaselist .incase1{
    width: 48%;
    height: 100%;
    background: url(../img/incaseimg.jpg) center / cover no-repeat;
    position: relative;
    overflow: hidden;
}
.incase .incaselist .incase1 .incaseimg{
    max-width: 800px;
    position: relative;
    left: 50%;
    margin-left: -400px;
}
.incase .incaselist .incase1 a{
    width: 100%;
    background: rgba(0, 0, 0, .8);
    padding: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.incase .incaselist .incase1 a .title{
    width: 70%;
    color: #fff;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.incase .incaselist .incase1 a .other_info{
    width: 30%;
    color: #fff;
    text-align: right;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.incase .incaselist .incase1 a .description{
    color: #fff;
    margin-top: 30px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.incase .incaselist .incase2{
    width: 52%;
    height: 100%;
    padding: 5% 0;
}
.incase .incaselist .incase2 a{
    display: block;
    height: 33.33%;
    border-top: 1px solid #dddddd;
    padding: 50px;
    background: url(../img/incasebj.jpg) center / cover no-repeat;
    background-size: 0 0;
}
.incase .incaselist .incase2 a:hover{
    background-size: 100% 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
.incase .incaselist .incase2 a .title{
    width: 70%;
    color: #000;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.incase .incaselist .incase2 a .other_info{
    width: 30%;
    color: #000;
    text-align: right;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.incase .incaselist .incase2 a .description{
    color: #000;
    margin-top: 30px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.incon{
    height: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.incon .incontitle{
    width: 300px;
    height: 100%;
    background: #000;
}
.incon .inconlist{
    width: calc(100% - 300px);
    height: 100%;
    background: url(../img/inconbj.png) 100% calc(100% - 100px) no-repeat;
    position: relative;
}
.incon .inconlist .inconbj{
    width: 100%;
    padding: 0 8%;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.incon .inconlist .inconbj .content{
    width: 35%;
}
.incon .inconlist .inconbj .content h2{
    color: #c80915;
    font-size: 24px;
    padding-bottom: 30px;
}
.incon .inconlist .inconbj .content p{
    color: #000;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}
.incon .inconlist .inconbj .inconfeed{
    width: 65%;
}
.incon .inconlist .inconbj .inconfeed .ftype_input{
    overflow: hidden;
}
.incon .inconlist .inconbj .inconfeed .ftype_input input{
    width: 32%;
    margin-left: 2%;
    color: #000;
    height: 50px;
    background: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #000;
}
.incon .inconlist .inconbj .inconfeed .ftype_input input:nth-child(1){
    margin-left: 0;
}
.incon .inconlist .inconbj .inconfeed textarea{
    width: 100%;
    color: #000;
    height: 180px;
    line-height: 30px;
    margin: 20px 0 10px;
    background: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #000;
}
.incon .inconlist .inconbj .inconfeed .ftype_code{
    width: 32%;
    overflow: unset;
    position: relative;
}
.incon .inconlist .inconbj .inconfeed .ftype_code input{
    width: 100%;
}
.incon .inconlist .inconbj .inconfeed .ftype_code #codeimg{
    width: 80px;
    height: 30px;
    color: red;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    position: absolute;
    top: 10px;
    right: -100px;
    margin: 0;
    border: 0;
}
.incon .inconlist .inconbj .inconfeed .submit{
    color: #c80915;
    line-height: 16px;
    padding: 10px 30px;
    margin-top: 10px;
    background: 0;
    outline: 0;
    border: 2px solid #c80915;
}
.incon .inconlist .inconbj .inconfeed .submit img{
    padding-right: 10px;
}
.incon #footer{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.incon #footer .foottail{
    padding: 30px 0;
}
.incon #footer .foottail .footright{
    padding-left: 40px;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .foottail{
    border-top: 10px solid #c80915;
    background: #000;
    padding: 50px 0;
}
#footer .foottail .footright{
    color: #fff;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #fff;
}
#footer .foottail .footright a:hover{
    color: #c80915;
}
#footer .foottail .footright br{
    display: none;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
#footer .foottail .footother{
    color: #fff;
    line-height: 20px;
    margin-top: 10px;
}
#footer .foottail .footother a{
    color: #fff;
}
#footer .foottail .footother a:hover{
    color: #c80915;
}
/*foot*/

/*product*/
.navpro{
    background: #1d1b1b;
    padding: 22px 0;
    margin-top: 90px;
    text-align: center;
    overflow: hidden;
}
.navpro a{
    display: inline-block;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    line-height: 25px;
    border-bottom: 1px solid;
    margin: 0 50px;
}
.navpro a:hover,
.navpro a.hover{
    color: #fff;
}
.product{
    padding: 20px 0 0;
    overflow: hidden;
}
.product ul li{
    width: 23.5%;
    margin: 30px 2% 0 0;
}
.product ul li:nth-child(4n){
    margin-right: 0;
}
.product ul li a{
    display: block;
}
.product ul li a .imgurl{
    overflow: hidden;
}
.product ul li a .title{
    color: #000;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product ul li a:hover .title{
    color: #c80915;
}
/*showproduct*/
.showproduct{
    overflow: hidden;
}
/*<!--第一部分-->*/
.showproduct .proone{
    background: #fff;
    padding: 50px;
    margin: 50px 0;
}
.showproduct .proone .proimgurl{
    width: 580px;
    margin: auto;
}
.showproduct .proone .prodisplayimg{
    width: 100px;
    margin-left: 20px;
    position: relative;
}
.showproduct .proone .proonefr{
    width: calc(100% - 750px);
}
.showproduct .proone .proonefr .proonetitle{
    color: #c80915;
    font-size: 24px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.showproduct .proone .proonefr .proonecon{
    height: 351px;
    overflow: auto;
    margin: 20px 0;
}
.showproduct .proone .proonefr .proonecon .contenttitle{
    color: #c80915;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin-bottom: 20px;
}
.showproduct .proone .proonefr .proonecon .content{
    color: #1d1b1b;
    font-size: 15px;
    line-height: 30px;
}
.showproduct .proone .proonefr .proonecon .content p br{
    /*display: none;*/
}
.showproduct .proone .proonefr .prooneshare{  border-top: 1px solid #ccc;  border-bottom: 1px solid #ccc;  padding: 20px 0 15px;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #fff;  font-size: 15px;  background: #1d1b1b;  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;  background: #c80915;  }
.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 .proone .proonefr .proonethis{
    padding-top: 20px;
    overflow: hidden;
}
.showproduct .proone .proonefr .proonethis .this1{
    color: #000;
    font-size: 18px;
    line-height: 36px;
}
.showproduct .proone .proonefr .proonethis .this2 a{
    display: inline-block;
    width: 36px;
    color: #787878;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #2b2b2b;
    border-radius: 5px;
    margin-left: 15px;
}
.showproduct .proone .proonefr .proonethis .this2 a:hover{
    color: #fff;
    background: #c80915;
    border: 1px solid #c80915;
}
.showproduct .proone .proonebjq{
    width: 46%;
    padding-top: 50px;
}
.showproduct .proone .proonebjq .contenttitle{
    color: #c80915;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin-bottom: 20px;
}
.showproduct .proone .proonebjq .content{
    color: #1d1b1b;
    font-size: 15px;
    line-height: 30px;
}
.showproduct .proone .proonebjq .content p br{
    /*display: none;*/
}
/*<!--第二部分-->*/
.showproduct .protwo{
    padding: 50px 0;
    position: relative;
}
.showproduct .protwo:before{
    content: '';
    width: 50%;
    height: 100%;
    background: #c80915;
    position: absolute;
    top: 0;
    left: 0;
}
.showproduct .protwo:after{
    content: '';
    width: 50%;
    height: 100%;
    background: #1d1b1b;
    position: absolute;
    top: 0;
    right: 0;
}
.showproduct .protwo .propage{
    position: relative;
    z-index: 1;
}
.showproduct .protwo .propage .pagetitle{
    color: #fff;
    font-size: 24px;
    padding-bottom: 20px;
}
/*<!--第三部分-->*/
.showproduct .prothree{
    padding: 50px 0;
}
.showproduct .prothree .related{
    color: #c80915;
    font-size: 24px;
}
/*product*/

/*news*/
.news{
    padding: 20px 0 0;
    overflow: hidden;
}
.news ul li{
    width: 30%;
    margin: 30px 5% 0 0;
}
.news ul li:nth-child(3n){
    margin-right: 0;
}
.news ul li a{
    display: block;
}
.news ul li a .imgurl{
    overflow: hidden;
}
.news ul li a .imgurl img{
    width: 100%;
}
.news ul li a .title{
    color: #211a19;
    font-size: 16px;
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .title{
    color: #c80915;
}
.news ul li a .description{
    color: #211a19;
    line-height: 28px;
    height: 84px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news ul li a .updatetime{
    width: 0;
    height: 40px;
    border-top: 2px solid #c80915;
    padding-top: 20px;
    margin-top: 20px;
    overflow: hidden;
    transition-duration: 1s;
}
.news ul li a:hover .updatetime{
    width: 100%;
}
.news ul li a .updatetime .newstime{
    width: 80px;
    color: #211a19;
}
.news ul li a .updatetime .newsicon{
    width: 10px;
    color: #b9b9b9;
}
/*shownews*/
.shownews{
    padding-top: 50px;
    overflow: hidden;
}
.shownews .title{
    color: #c80915;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.shownews .updatetime{
    color: #616161;
    text-align: center;
    border-bottom: 1px solid #dcdbdb;
    padding: 20px 0;
}
.shownews .content{
    color: #1d1b1b;
    font-size: 16px;
    line-height: 30px;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #1d1b1b;
    font-size: 16px;
    padding: 30px 0 50px;
    border-top: 1px solid #dcdbdb;
}
.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: #1d1b1b;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #c80915;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #c80915;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*mcimg*/
.mcimg{
    padding-top: 110px;
    overflow: hidden;
}
.mcimg ul li{
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
    overflow: hidden;
}
.mcimg ul li .imgurl{
    width: 400px;
    position: relative;
    overflow: hidden;
}
.mcimg ul li .imgurl .incaseicon{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition-duration: 1s;
}
.mcimg ul li .imgurl:hover .incaseicon{
    transform: scale(1);
}
.mcimg ul li .imgurl .incaseicon img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.mcimg ul li .imgurl a:nth-child(3){
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mcimg ul li .imgtit{
    width: calc(100% - 400px);
    padding-left: 50px;
}
.mcimg ul li .imgtit .title{
    color: #c80915;
    font-size: 16px;
    line-height: 30px;
}
.mcimg ul li .imgtit .other_info{
    color: #666262;
    padding: 20px 0;
}
.mcimg ul li .imgtit .description{
    color: #1d1b1b;
    line-height: 24px;
}
/*mcimg*/

/*about*/
.about{
    padding: 140px 0 80px;
    overflow: hidden;
}
.about .content{
    color: #1d1b1b;
    font-size: 16px;
    line-height: 2;
}
.about .content h2{
    color: #c80915;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Arial';
    padding: 12px 0;
}
.about .content h3{
    color: #000;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 30px;
}
.about .content .img1{
    padding: 0 50px 50px 0;
}
.about .content .img2{
    padding: 0 0 50px 50px;
}
.about .content .aboutppdw1{
    color: #060606;
    font-size: 28px;
    text-align: center;
    padding: 30px 0 0;
}
.about .content .aboutppdw2{
    color: #060606;
    font-size: 18px;
    text-align: center;
}
.about .content .aboutppdw3 li{
    float: left;
    width: 25%;
    text-align: center;
    padding: 50px 0 0;
}
.about .content .aboutzs{
    border-top: 2px solid #dddddd;
    padding-top: 20px;
    margin-top: 20px;
}
.about .content .aboutzs li{
    float: left;
    width: 22.75%;
    margin: 40px 3% 0 0;
}
.about .content .aboutzs li:nth-child(4n){
    margin-right: 0;
}
.about .content .aboutzs li img{
    width: 100%;
}
.about .aboutwork{
    border-top: 2px solid #dddddd;
    padding-top: 20px;
    margin-top: 50px;
}
.about .aboutwork li{
    width: 22.75%;
    margin: 30px 3% 0 0;
}
.about .aboutwork li:nth-child(4n){
    margin-right: 0;
}
.about .aboutwork li a{
    display: block;
}
.about .aboutwork li a .imgurl{
    position: relative;
    overflow: hidden;
}
.about .aboutwork li a .imgurl > img{
    width: 100%;
}
.about .aboutwork li a .imgurl .incaseicon{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition-duration: 1s;
}
.about .aboutwork li a:hover .imgurl .incaseicon{
    transform: scale(1);
}
.about .aboutwork li a .imgurl .incaseicon img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
/*about*/
@media (max-width: 1400px){
    .inpro .inprotitle,
    .inabout .inabouttitle,
    .innews .innewstitle,
    .incase .incasetitle,
    .incon .incontitle{
        width: 20%;
    }
    .inpro .inprolist,
    .innews .innewslist,
    .incase .incaselist,
    .incon .inconlist{
        width: 80%;
    }
    .inabout .inaboutlist{
        width: 36%;
    }
    .about .content .img1{
        float: none;
        padding: 0 0 50px;
    }
}
@media (max-width: 1200px){
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .showproduct .proone .proonefr{
        width: 100%;
        padding-top: 50px;
    }
    .showproduct .proone .proonefr .proonecon{
        height: auto;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #c80915;  }
#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: #c80915;  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: #c80915;  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: 20px;  line-height: 20px;  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 #c80915;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #c80915;  }
#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: #c80915;  }
.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 #c80915;  }
.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: #c80915;  }
/*手机版*/
@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 .headerbj .headright,
    #header .headerbj .headnav{
        display: none;
    }
    #header .headerbj .headlogo{
    height: 50px;
    padding: 14px;
    }
    
        #header .headerbj .headtel{
    color: #c80915;
    line-height: 50px;
        }
    
    #header .headerbj .headtel i{
     padding: 0 5px;
    }
    
    
    
    
    
    
    
    
    #dowebok .section,
    #dowebok .section .fp-tableCell{
        height: auto!important;
    }
    #fp-nav{
        display: none;
    }
    .indexbanner{
        padding-top: 50px;
    }
    .indexbanner .swiper-button-prev,
    .indexbanner .swiper-button-next{
        display: none;
    }
    .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .inpro .inprotitle{
        display: none;
    }
    .inpro .inprolist{
        width: 100%;
        padding: 10px;
    }
    .inpro .inprolist a .list2{
        background: #fff;
    }
    .inpro .inprolist a .list2 .columnimg{
        top: 0;
    }
    .inpro .inprolist a .list2 .listname{
        top: 0;
        padding-bottom: 20px;
    }
    .inpro .inprolist a .list2 .listname img{
        margin: 30px auto;
    }
    .inpro .inprolist .swiper-button-prev,
    .inpro .inprolist .swiper-button-next{
        display: block;
        opacity: 1;
        margin-top: 25%;
        font-size: 0;
        background-size: 60%;
        outline: 0;
    }
    .inabout .inaboutimg{
        width: 100%;
        padding: 0 10px;
    }
    .inabout .inaboutimg img{
        position: unset;
    }
    .inabout .inaboutlist{
        width: 100%;
    }
    .inabout .inaboutlist .inaboutbj{
        position: unset;
        padding: 50px 10px;
        transform: none;
    }
    .inabout .inabouttitle{
        display: none;
    }
    .innews .innewstitle{
        display: none;
    }
    .innews .innewslist{
        width: 100%;
        border-top: 1px solid #ccc;
    }
    .innews .innewslist ul{
        position: unset;
        padding: 20px 10px 50px;
        transform: none;
    }
    .innews .innewslist ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .innews .innewslist ul li:nth-child(n+3){
        display: none;
    }
    .innews .innewslist ul li a .updatetime{
        width: 100%;
    }
    .incase .incasetitle{
        display: none;
    }
    .incase .incaselist{
        width: 100%;
    }
    .incase .incaselist .incase1{
        width: 100%;
    }
    .incase .incaselist .incase1 .incaseimg{
        max-width: 100%;
        left: 0;
        margin: 0;
    }
    .incase .incaselist .incase1 a{
        padding: 30px;
    }
    .incase .incaselist .incase1 a .title{
        width: 100%;
    }
    .incase .incaselist .incase1 a .other_info{
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }
    .incase .incaselist .incase2{
        display: none;
    }
    .incon .incontitle{
        display: none;
    }
    .incon .inconlist{
        width: 100%;
        background: url(../img/inconbj.png) 100% 100% / contain no-repeat;
    }
    .incon .inconlist .inconbj{
        position: unset;
        padding: 50px 10px;
        transform: none;
        overflow: hidden;
    }
    .incon .inconlist .inconbj .content{
        width: 100%;
    }
    .incon .inconlist .inconbj .inconfeed{
        width: 100%;
        padding: 50px 0;
    }
    .incon .inconlist .inconbj .inconfeed .ftype_input input{
        width: 100%;
        margin: 0;
    }
    .incon .inconlist .inconbj .inconfeed textarea{
        height: 90px;
    }
    .incon .inconlist .inconbj .inconfeed .ftype_code{
        width: 100%;
    }
    .incon .inconlist .inconbj .inconfeed .ftype_code #codeimg{
        right: 0;
    }
    .incon .inconlist .inconbj .inconfeed .submit{
        margin-top: 30px;
    }
    .incon #footer{
        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;  }

    .navpro{
        display: none;
    }
    #sortpro{
        margin-top: 50px;
    }
    .product{
        padding: 0;
    }
    .product ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct .proone{
        padding: 20px;
        margin: .9375rem 0 50px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #c80915;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .proone .proonefr .proonethis{
        display: none;
    }
    .showproduct .proone .proonebjq{
        width: 100%;
        padding-top: 20px;
    }
    .showproduct .protwo .propage .pagetitle{
        font-size: 20px;
    }
    .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;  }

    .about{
        padding: 65px 0 50px;
    }
    .about .content .img2{
        float: none;
        padding: 0 0 50px;
    }
    .about .content h3{
        font-size: 28px;
    }
    .about .content .aboutppdw1{
        font-size: 25px;
        padding: 30px 0 15px;
    }
    .about .content .aboutppdw3 li{
        width: 100%;
    }
    .about .content .aboutzs li{
        width: 100%;
        margin: 30px 0 0;
    }
    .about .aboutwork li{
        width: 100%;
        margin: 30px 0 0;
    }
    .news{
        padding: 0;
    }
    .news ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .news ul li a .updatetime{
        width: 100%;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .mcimg{
        padding-top: 50px;
    }
    .mcimg ul li{
        padding: 20px;
    }
    .mcimg ul li .imgurl{
        width: 100%;
    }
    .mcimg ul li .imgtit{
        width: 100%;
        padding: 30px 0 10px;
    }
}