

@font-face{
    font-family: 'COCOGOOSE';
    src: url('../fonts/cocogoose.eot');
    src: url('../fonts/cocogoose.eot#iefix') format('embedded-opentype'),
    url('../fonts/cocogoose.woff2') format('woff2'),
    url('../fonts/cocogoose.woff') format('woff'),
    url('../fonts/cocogoose.ttf') format('truetype'),
    url('../fonts/cocogoose.svg#neuesbauendemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'COCOGOOSE';}
@font-face{
    font-family: 'Roboto Medium';
    src: url('../fonts/roboto medium.eot');
    src: url('../fonts/roboto medium.eot#iefix') format('embedded-opentype'),
    url('../fonts/roboto medium.woff2') format('woff2'),
    url('../fonts/roboto medium.woff') format('woff'),
    url('../fonts/roboto medium.ttf') format('truetype'),
    url('../fonts/roboto medium.svg#neuesbauendemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font2{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{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: #898989; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #00a783; 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%; }
.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: #efefef;}
@media(min-width: 1300px){.container{width: 1300px;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:#888888;color:#fff;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.met_pager a:hover,.met_pager a.Ahover{background:#00a783;}
.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{
    position: relative;
}
#header.height .headerbj{
    background: #efefef;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}
#header .headerbj:before{
    content: '';
    width: 30%;
    height: 5px;
    background: #00a783;
    position: absolute;
    top: 0;
    left: 0;
}
#header .headerbj .headlogo{
    height: 100px;
    padding: 25px 0;
    transition-duration: 1s;
}
#header.height .headerbj .headlogo{
    height: 60px;
    padding: 10px 0;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headlogo p{
    color: #040000;
    font-size: 18px;
    line-height: 50px;
    padding-left: 15px;
    transition-duration: 1s;
}
#header.height .headerbj .headlogo p{
    line-height: 40px;
}
#header .headerbj .headright{
    padding: 35px 0;
    transition-duration: 1s;
}
#header.height .headerbj .headright{
    padding: 15px 0;
}
#header .headerbj .headright a{
    display: inline-block;
    width: 30px;
    line-height: 30px;
    color: #fff;
    background: #00a783;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
}
#header .headerbj .headright .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 24px;
    right: 50%;
    margin-right: -8px;
}
#header .headerbj .headright .pro2wm:after{
    height: 5px;
    top: 35px;
    right: 35%;
}
#header .headerbj .headright .pro2wm .wxewm{
    width: 100px;
    height: 0;
    padding: 0 5px;
    top: 40px;
    left: 50%;
    margin-left: -50px;
}
#header .headerbj .headright .pro2wm:hover .wxewm{
    height: 100px;
    padding: 5px;
}
#header .headerbj .container{
    position: relative;
}
#header .headerbj .headnav{
    padding: 35px 0;
    transition-duration: 1s;
}
#header.height .headerbj .headnav{
    padding: 15px 0;
}
#header .headerbj .headnav ul li{
    padding-right: 50px;
}
#header .headerbj .headnav ul li:before{
    content: '';
    width: 714px;
    height: 5px;
    background: #00a783;
    position: absolute;
    top: 0;
    left: 0;
    transition-duration: 1s;
}
#header .headerbj .headnav ul li:nth-child(2):hover:before{
    width: 828px;
}
#header .headerbj .headnav ul li:nth-child(3):hover:before{
    width: 942px;
}
#header .headerbj .headnav ul li:nth-child(4):hover:before{
    width: 1056px;
}
#header .headerbj .headnav ul li:nth-child(5):hover:before{
    width: 1170px;
}
#header .headerbj .headnav ul li .overflow{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}
#header .headerbj .headnav ul li .overflow a{
    display: block;
    color: #040000;
    font-size: 16px;
    position: relative;
    top: -30px;
}
#header .headerbj .headnav ul li:hover .overflow a,
#header .headerbj .headnav ul li.hover .overflow a{
    color: #00a783;
    top: 0;
}
/*banner*/
#mcbanner{
    overflow: hidden;
}
/*indexbanner*/
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 10px 20px;
    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%;
}
/*otherbanner*/
.otherbanner{
    padding-top: 100px;
}
.otherbanner img{
    width: 100%;
}
/*header*/

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

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

.intel{
    background: url(../images/intelbj.jpg) bottom center / cover no-repeat;
    padding: 50px 0;
    overflow: hidden;
}
.intel .intellogo .title1{
    color: #fff;
    font-size: 18px;
    margin: 90px 0 10px;
}
.intel .intellogo .title2{
    width: 210px;
    color: #fff;
    line-height: 15px;
}
.intel .inteldhhm{
    color: #fff;
    font-size: 48px;
    margin: 55px 135px 0 0;
}
.intel .inteldhhm i{
    width: 26px;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    border: 3px solid #fff;
    border-radius: 50%;
    position: relative;
    top: -8px;
}
.inabout{
    padding: 100px 0 50px;
    overflow: hidden;
}
.inabout .columnimg{
    width: 40%;
    padding: 0 2%;
}
.inabout .columnimg img{
    margin: auto;
}
.inabout .inaboutfr{
    width: 60%;
}
.inabout .inaboutfr .namemark{
    color: #00a783;
    font-size: 36px;
    margin: 25px 0 10px;
}
.inabout .inaboutfr .webname{
    color: #888888;
    font-size: 18px;
}
.inabout .inaboutfr .description{
    color: #888888;
    font-size: 14px;
    line-height: 24px;
    margin: 30px 0 40px;
}
.inabout .inaboutfr .more{
    color: #898989;
    font-size: 14px;
    background: #d7d7d7;
    border-radius: 5px;
    padding: 18px 38px;
    border: 0 !important;
}
.incolumn{
    padding: 50px 0;
    overflow: hidden;
}
.incolumn .incolumntitle .title1{
    color: #00a783;
    font-size: 36px;
    padding-bottom: 10px;
}
.incolumn .incolumntitle .title2{
    color: #6f6f6f;
    font-size: 18px;
}
.incolumn .incolumnmore{
    color: #898989;
    font-size: 14px;
    background: #d7d7d7;
    border-radius: 5px;
    padding: 18px 38px;
    border: 0 !important;
}
.incolumn .incolumnlist{
    padding-top: 50px;
    position: relative;
}
.incolumn .incolumnlist:before{
    content: '';
    width: 500px;
    height: 520px;
    background: #efefef;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -500px;
}
.incolumn .incolumnlist a{
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.incolumn .incolumnlist a .columnimg img{
    width: 100%;
}
.incolumn .incolumnlist a .name{
    width: 100%;
    color: #fff;
    line-height: 55px;
    padding: 0 25px;
    background: rgba(0, 167, 131, .9);
    position: absolute;
    left: 0;
    bottom: -60px;
    transition-duration: 1s;
}
.incolumn .incolumnlist a:hover .name,
.incolumn .incolumnlist .swiper-slide-active a .name{
    bottom: 0;
}
.incolumn .incolumnlist .swiper-container{
    width: 1240px;
    overflow: unset;
    margin: 0;
    padding-bottom: 150px;
}
.incolumn .incolumnlist .swiper-container .swiper-scrollbar{
    width: 130%;
    height: 1px;
    background: #d7d7d7;
    left: 0;
    bottom: 75px;
}
.incolumn .incolumnlist .swiper-container .swiper-scrollbar .swiper-scrollbar-drag{
    width: 11px !important;
    height: 11px;
    background: #00a783;
    border-radius: 50%;
    position: relative;
    top: -5px;
}
.incolumn .incolumnlist .swiper-container .swiper-scrollbar .swiper-scrollbar-drag:before{
    content: '';
    width: 31px;
    height: 31px;
    border: 5px solid rgba(0, 167, 131, .3);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination{
    width: auto;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet{
    display: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #00a783;
    text-align: center;
    margin: 0;
    background: 0;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet-active{
    display: block;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:before{
    content: '';
    width: 10px;
    height: 3px;
    background: #00a783;
    position: absolute;
    top: 9px;
    left: 25px;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(2):before{  width: 20px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(3):before{  width: 30px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(4):before{  width: 40px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(5):before{  width: 50px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(6):before{  width: 60px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(7):before{  width: 70px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(8):before{  width: 80px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(9):before{  width: 90px;  }
.incolumn .incolumnlist .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-child(10):before{  width: 100px;  }
.incolumn .incolumnlist .swiper-container .incolumnshuzi{
    width: 20px;
    line-height: 20px;
    color: #979797;
    text-align: center;
    position: absolute;
    left: 130px;
    bottom: 10px;
}
.incolumn .incolumnlist .swiper-container .incolumnshuzi:before{
    content: '';
    width: 100px;
    height: 1px;
    background: #979797;
    position: absolute;
    top: 10px;
    right: 25px;
}
.incolumn .incolumnlist .swiper-container .swiper-button-prev,
.incolumn .incolumnlist .swiper-container .swiper-button-next{
    width: 28px;
    height: 28px;
    color: #898989;
    font: 18px/28px '宋体';
    text-align: center;
    background: #d7d7d7;
    border-radius: 100%;
}
.incolumn .incolumnlist .swiper-container .swiper-button-prev{
    top: auto;
    left: auto;
    right: 38px;
    bottom: 0;
}
.incolumn .incolumnlist .swiper-container .swiper-button-next{
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
}
.incolumn .incolumnlist .swiper-container .swiper-button-prev:hover,
.incolumn .incolumnlist .swiper-container .swiper-button-next:hover{
    color: #fff;
    background: #00a783;
}
.innews{
    padding: 50px 0 100px;
    position: relative;
    overflow: hidden;
}
.innews:before{
    content: '';
    width: 100%;
    height: 1px;
    background: #d7d7d7;
    position: absolute;
    top: 325px;
    left: 0;
}
.innews .namemark1{
    color: #00a783;
    font-size: 36px;
}
.innews .namemark2{
    color: #6f6f6f;
    font-size: 18px;
    margin: 10px 0 30px;
}
.innews ul li{
    width: 26%;
    margin-right: 11%;
}
.innews ul li:nth-child(3){
    margin-right: 0;
}
.innews ul li a{
    display: block;
}
.innews ul li a .innews1{
    min-height: 180px;
    padding-top: 20px;
}
.innews ul li a .innews1 .title{
    color: #878787;
    font-size: 16px;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a:hover .innews1 .title{
    color: #00a783;
}
.innews ul li a .innews1 .description{
    color: #878787;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.innews ul li a .innews2{
    min-height: 180px;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}
.innews ul li a .innews2 .updatetime{
    color: #a5a5a5;
    line-height: 20px;
    position: relative;
    top: 0;
    opacity: 1;
    transition-duration: 1s;
}
.innews ul li a:hover .innews2 .updatetime{
    top: 100px;
    opacity: 0;
}
.innews ul li a .innews2 .updatetime i{
    padding-right: 10px;
}
.innews ul li a .innews2 .imgurl{
    width: 100%;
    position: absolute;
    top: 200px;
    transition-duration: 1s;
}
.innews ul li a:hover .innews2 .imgurl{
    top: 25px;
}
.innews ul li a .innews2 .imgurl img{
    width: 100%;
}
.innews ul li a .innews22{
    padding-top: 120px;
}
.innews ul li a:hover .innews22 .updatetime{
    top: -100px;
}
.innews ul li a .innews22 .imgurl{
    top: -180px;
}
.innews ul li a:hover .innews22 .imgurl{
    top: 0;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .footcon{
    background: url(../images/footconbj.jpg) center / cover no-repeat;
    padding: 80px 0;
}
#footer .footcon .footconlogo img{
    margin: auto;
}
#footer .footshare{
    padding-top: 70px;
    text-align: center;
}
#footer .footshare a{
    display: inline-block;
    width: 32px;
    line-height: 30px;
    color: #fff;
    border: 1px solid #11caa2;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
}
#footer .footshare .pro2wm img{
    left: 55px;
}
#footer .foottail{
    padding: 60px 0;
    background: #040000;
}
#footer .foottail .footright,
#footer .foottail .footother{
    color: #fff;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #fff;
}
#footer .foottail .footother a{
    display: inline-block;
    color: #fff;
    margin-top: 10px;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
/*foot*/

/*about*/
.about{
    padding: 100px 0;
}
.about .inaboutfr .namemark{
    margin-top: 0;
}
.about .content{
    color: #888888;
    line-height: 24px;
    margin-top: 30px;
}
.about .countup{
    background: #fff;
    border-radius: 5px;
    padding: 50px 0;
    margin-top: 80px;
}
.about .countup ul li{
    width: 25%;
    padding: 10px 0 0 110px;
    border-left: 1px solid #ededed;
}
.about .countup ul li:nth-child(2){
    padding-left: 70px;
}
.about .countup ul li .shuzi{
    color: #a7a7a7;
    font-size: 72px;
}
.about .countup ul li .shuzi sup{
    display: inline-block;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #00a783;
    border-radius: 50%;
    position: relative;
    top: -15px;
    left: 5px;
}
.about .countup ul li .countupname{
    color: #a7a7a7;
    font-size: 16px;
    padding: 5px 0 20px;
}
/*about*/

/*search*/
.prosearch{
    padding: 9px;
    border: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255,255,255,.3);
    border-radius: 5px;
    position: absolute;
    left: 50%;
    margin: -210px 0 0 -303px;
}
.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: #00a783;
    border-radius: 0 5px 5px 0;
    border: 0;
    outline: 0;
    position: unset;
}
/*search*/

/*product*/
.product{
    overflow: hidden;
}
.product .pronav{
    width: 250px;
    margin: 40px 0;
}
.product .pronav .pronavtitle{
    background: #00a783 url(../images/pronavbj.jpg) right bottom no-repeat;
    border-radius: 5px 5px 0 0;
    padding: 35px 15px;
}
.product .pronav .pronavtitle .title1{
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}
.product .pronav .pronavtitle .title2{
    color: #fff;
    font-size: 18px;
}
.product .pronav ul li{
    background: #fff;
    margin-top: 2px;
}
.product .pronav ul li > a{
    display: block;
    color: #888888;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 15px;
}
.product .pronav ul li > a:hover,
.product .pronav ul li.hover > a{
    color: #00a783;
}
.product .pronav ul li .navdown{
    width: 100%!important;
    display: none;
}
.product .pronav ul li.hover .navdown{
    display: block;
}
.product .pronav ul li .navdown a{
    display: block;
    color: #888888;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 25px;
    border-top: 1px solid #efefef;
}
.product .pronav ul li .navdown a:hover,
.product .pronav ul li .navdown a.hover{
    color: #00a783;
}
.product .prolist{
    width: calc(100% - 270px);
    padding-top: 20px;
}
.product .prolist ul li{
    width: 32%;
    margin: 2% 2% 0 0;
}
.product .prolist ul li:nth-child(3n){
    margin-right: 0;
}
.product .prolist ul li a{
    display: block;
    padding: 4px;
    background: #fff;
    border-radius: 5px;
}
.product .prolist ul li a:hover{
    background: #00a783;
    box-shadow: 0 0 38px rgba(54, 88, 81, .3);
}
.product .prolist ul li a .imgurl{
    border-bottom: 1px solid #e6e6e6;
    overflow: hidden;
}
.product .prolist ul li a i{
    width: 25px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    background: #e1e1e1;
    border-radius: 50%;
    margin: 40px 20px 0 0;
    transition-duration: 1s;
}
.product .prolist ul li a:hover i{
    color: #00a783;
    background: #2eccaa;
}
.product .prolist ul li a .title{
    margin: 20px 20px 0;
    color: #888888;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition-duration: 1s;
}
.product .prolist ul li a:hover .title{
    color: #fff;
}
.product .prolist ul li a .name{
    margin: 0 20px 20px;
    color: #888888;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition-duration: 1s;
}
.product .prolist ul li a:hover .name{
    color: #fff;
}
/*showproduct*/
.showproduct{  width: calc(100% - 270px);  padding-top: 40px;  }
/*<!--第一部分-->*/
.showproduct .proone{  background: #fff;  border-radius: 5px;  padding: 30px 30px 50px;  }
.showproduct .proone .proimgurl{  width: 440px;  }
.showproduct .proone .prodisplayimg{  width: 90px;  margin-left: 20px;  position: relative;  }
.showproduct .proone .proonefr{  width: calc(100% - 600px);  }
.showproduct .proone .proonefr .proonetitle{  color: #888888;  line-height: 24px;  padding-top: 20px;  }
.showproduct .proone .proonefr .proonename{  color: #888888;  line-height: 24px;  border-bottom: 1px solid #e7e7e7;  padding-bottom: 20px;  }
.showproduct .proone .proonefr .content{  color: #888888;  line-height: 30px;  border-bottom: 1px solid #e7e7e7;  padding: 20px 0;  }
.showproduct .proone .proonefr .content p br{  display: none;  }
.showproduct .proone .proonefr .prooneshare{  margin: 30px 0;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #7e7e7e;  font-size: 18px;  background: #dadada;  width: 50px;  line-height: 50px;  text-align: center;  border-radius: 5px;  overflow: hidden;  margin: 0 5px 5px 0;  }
.showproduct .proone .proonefr .prooneshare a.procon{  width: 155px;  color: #fff;  font-size: 15px;  background: #00a783;  }
.showproduct .proone .proonefr .prooneshare a.procon i{  width: 60px;  line-height: 50px;  font-size: 18px;  border-right: 1px solid #5ed2b9;  }
.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: 60px;  bottom: -25px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm img{  width: 100%;  height: 100%;  }
.showproduct .proone .proonefr .proonecon{  background: #f2f2f2 url(../images/proonecon.png) top right no-repeat;  border: 1px solid #dfdfdf;  border-radius: 5px;  text-align: right;  padding: 28px 138px 28px 0;  }
.showproduct .proone .proonefr .proonecon a{  color: #7e7e7e;  font-size: 30px;  }
.showproduct .proone .proonefr .proonecon p{  color: #7e7e7e;  padding-top: 5px;  }
.showproduct .proone .content1{  width: 100%;  color: #888888;  line-height: 30px;  padding-top: 20px;  }
.showproduct .proone .content1 p br{  display: none;  }
.showproduct .proone .content1 table{  margin: 30px 0 0;  }
.showproduct .proone .content1 table tr td{  border: 1px solid #ededed;  }
/*<!--第二部分-->*/
.showproduct .protwo{  font-family: 'Arial';  margin-top: 50px;  padding: 10px 0;  position: relative;  border-top: 1px dotted #cacaca;  border-bottom: 1px dotted #cacaca;  }
.showproduct .protwo:before{  content: '';  width: 1px;  height: 60px;  background: #c7c7c7;  position: absolute;  top: 50%;  left: 50%;  margin-top: -30px;  }
.showproduct .protwo .page_left,
.showproduct .protwo .page_right{  width: 50%;  }
.showproduct .protwo .page_left a,
.showproduct .protwo .page_right a{  display: block;  padding: 20px;  border-radius: 5px;  }
.showproduct .protwo .page_left a{  margin-right: 30px;  text-align: left;  }
.showproduct .protwo .page_right a{  margin-left: 30px;  text-align: right;  }
.showproduct .protwo .page_left a:hover,
.showproduct .protwo .page_right a:hover{  background: #00a783;  }
.showproduct .protwo .page_left a .page1,
.showproduct .protwo .page_right a .page1{  color: #7e7e7e;  border: 1px solid #7e7e7e;  width: 40px;  height: 40px;  line-height: 40px;  text-align: center;  font-size: 20px;  }
.showproduct .protwo .page_left a .page1{  margin-right: 20px;  }
.showproduct .protwo .page_right a .page1{  margin-left: 20px;  }
.showproduct .protwo .page_left a:hover .page1,
.showproduct .protwo .page_right a:hover .page1{  color: #fff;  border: 1px solid #fff;  }
.showproduct .protwo .page_left a .page2,
.showproduct .protwo .page_right a .page2{  font-size: 16px;  color: #7e7e7e;  padding: 3px;  }
.showproduct .protwo .page_left a:hover .page2,
.showproduct .protwo .page_right a:hover .page2{  color: #fff;  }
.showproduct .protwo .page_left a .page3,
.showproduct .protwo .page_right a .page3{  font-size: 14px;  color: #7e7e7e;  padding: 3px;  }
.showproduct .protwo .page_left a:hover .page3,
.showproduct .protwo .page_right a:hover .page3{  color: #fff;  }
/*<!--第三部分-->*/
.showproduct .prothree .related .title1{  color: #00a783;  font-size: 36px;  margin: 50px 0 10px;  }
.showproduct .prothree .related .title2{  color: #6f6f6f;  font-size: 18px;  }
.showproduct .prothree .prolist{  width: 100%;  padding: 20px 0 50px;  }
/*product*/

/*news*/
.newsnav{
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #dbdbdb;
    overflow: hidden;
}
.newsnav a{
    margin: 0 5px;
}
.newsnav a.hover{
    color: #fff;
    background: #00a783;
    border: 1px solid #00a783;
}
.news{
    overflow: hidden;
}
.news .container{
    position: relative;
}
.news .container:before{
    content: '';
    width: 1px;
    height: 100%;
    background: #dbdbdb;
    position: absolute;
    top: 0;
    left: 900px;
}
.news .newslist{
    width: 62%;
}
.news ul.newsall li a{
    display: block;
    padding: 40px 0 30px;
    border-bottom: 1px solid #dbdbdb;
    position: relative;
    top: 0;
}
.news ul.newsall li a:hover{
    top: -5px;
}
.news ul.newsall li a .title{
    color: #898989;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul.newsall li a:hover .title{
    color: #00a783;
}
.news ul.newsall li a .updatetime{
    color: #898989;
    font-size: 14px;
    padding: 5px 0 25px;
}
.news ul.newsall li a .description{
    color: #898989;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .newsbar{
    width: 28%;
    padding: 50px 0;
}
.news .newsbar .newshot .title1{
    color: #00a783;
    font-size: 24px;
    padding-bottom: 5px;
}
.news .newsbar .newshot .title2{
    color: #898989;
    font-size: 18px;
}
/*shownews*/
.shownews{
    padding-top: 40px;
}
.shownews .title{
    color: #898989;
    font-size: 16px;
    line-height: 30px;
}
.shownews .updatetime{
    color: #898989;
    font-size: 14px;
    padding: 5px 0 25px;
    border-bottom: 1px solid #dbdbdb;
}
.shownews .content{
    color: #898989;
    font-size: 14px;
    line-height: 24px;
    padding: 30px 0;
}
.shownews .detailpage{
    color: #898989;
    padding: 30px 0 50px;
    border-top: 1px solid #dbdbdb;
}
.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: #898989;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #00a783;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #00a783;
    border-radius: 5px;
    padding: 15px 25px;
}
/*news*/

/*contact*/
.contact .conshare{
    width: 230px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    margin: auto;
    position: relative;
    top: -20px;
}
.contact .conshare a{
    display: inline-block;
    width: 35px;
    color: #02a884!important;
    font-size: 16px;
}
.contact .conshare .pro2wm img{
    left: 48px;
    bottom: -35px;
}
.contact .contactadd{
    border-bottom: 1px solid #cfd0d2;
    padding: 50px 0 80px;
}
.contact .contactadd ul li{
    width: 33.33%;
}
.contact .contactadd ul li i{
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #d2d2d2;
    border-radius: 50%;
    margin: 4px 20px 4px 0;
}
.contact .contactadd ul li p{
    color: #898989;
    line-height: 24px;
}
.contact .contactadd ul li p span{
    padding-bottom: 20px;
}
.contact .contactadd ul li p .addmap{
    color: #01a783;
}
.contact .contactfeed{
    padding: 80px 5% 80px 8%;
}
/*contact*/
@media (max-width: 1600px){
    .incolumn .incolumnlist .swiper-container{
        width: 100%;
        overflow: hidden;
    }
    .incolumn .incolumnlist .swiper-container .swiper-scrollbar{
        width: 100%;
    }
    .prosearch{
        margin: -150px 0 0 -350px;
    }
}
@media (max-width: 1300px){
    #header .headerbj .headnav ul li:before{  width: 571px;  }
    #header .headerbj .headnav ul li:nth-child(2):hover:before{  width: 685px;  }
    #header .headerbj .headnav ul li:nth-child(3):hover:before{  width: 799px;  }
    #header .headerbj .headnav ul li:nth-child(4):hover:before{  width: 913px;  }
    #header .headerbj .headnav ul li:nth-child(5):hover:before{  width: 1027px;  }
    .showproduct .proone .proimgurl{
        width: calc(100% - 150px);
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .showproduct .proone .proonefr{
        width: 100%;
    }
    .news .container:before{
        display: none;
    }
}
@media (max-width: 1200px){
    #header .headerbj .headnav ul li:before{  width: 371px;  }
    #header .headerbj .headnav ul li:nth-child(2):hover:before{  width: 485px;  }
    #header .headerbj .headnav ul li:nth-child(3):hover:before{  width: 599px;  }
    #header .headerbj .headnav ul li:nth-child(4):hover:before{  width: 713px;  }
    #header .headerbj .headnav ul li:nth-child(5):hover:before{  width: 827px;  }
  	#header .headerbj .headlogo p{
        display: none;
  	}
    .intel .inteldhhm{
        margin: 50px 50px 0 0;
    }
    .about .countup ul li{
        padding-left: 60px;
    }
    .about .countup ul li:nth-child(2){
        padding-left: 20px;
    }
    .prosearch{
        margin: -120px 0 0 -400px;
    }
    .contact .contactadd ul li p .addmap{
        display: block;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #00a783;  }
#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: #efefef;  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-top: 1px;  }
.menumain .menubox .menunav{  overflow: hidden;  }
.menumain .menubox .menunav .menuone a{  display: block;  color: #333;  font-size: 14px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid #ddd;  }
.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(0, 0, 0, .2);  border-radius: 50%;  position: absolute;  left: -8px;  bottom: 5px;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: #888;  font-size: 13px;  margin: 30px 20px 0 5px;  height: 15px;  line-height: 15px;  overflow: hidden;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree:before{  content: '';  width: 3px;  height: 3px;  background: rgba(0, 0, 0, .2);  border-radius: 50%;  position: absolute;  left: -6px;  bottom: 5px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: #bbb;  font-size: 12px;  margin: 20px 20px 0 10px;  }
.menumain .menubox .menunav a.hover{  color: #00a783 !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  overflow: hidden;  }
.menumain .menubox .lang a{  float: left;  width: 98%;  height: 40px;  line-height: 40px;  border: 1px solid #ddd;  margin: 2% 1%;  border-radius: 5px;  box-sizing: border-box;  }
.menumain .menubox .lang a img{  display: inline-block;  width: 30px;  padding-right: 10px;  position: relative;  top: -3px;  }
.menumain .menubox .lang a span{  display: inline-block;  color: #333;  font-size: 14px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #00a783;  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 #00a783;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #00a783;  }
#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: #00a783;  }
.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 #00a783;  }
.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: #00a783;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .onlineservice ul li{  width: 30px!important;  height: 31px!important;  }
    .onlineservice ul li i{  width: 30px!important;  line-height: 30px!important;  font-size: 14px!important;  }
    .onlineservice ul li i.fa-mobile{  font-size: 20px!important;  }
    .onlineservice ul li span{  display: none;  }
    .onlineservice ul li.morelist .list a{  line-height: 30px!important;  }
    .popup-wechat img{  width: 200px;  }
    .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{
        background: #efefef;
        box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    }
    #header .headerbj:before,
    #header .headerbj .headright,
    #header .headerbj .headnav{
        display: none;
    }
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        height: 50px;
        padding: 5px 0;
    }
    #mcbanner{
        padding-top: 50px;
    }
    #mcbanner .indexbanner .swiper-button-prev,
    #mcbanner .indexbanner .swiper-button-next{
        display: none;
    }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .intel .intellogo .title1{
        margin-top: 30px;
    }
    .intel .inteldhhm{
        width: 100%;
        margin: 50px 0 0;
        font-size: 35px;
    }
    .inabout{
        padding: 50px 0 20px;
    }
    .inabout .columnimg{
        display: none;
    }
    .inabout .inaboutfr{
        width: 100%;
    }
    .incolumn .incolumnmore{
        display: none;
    }
    .innews{
        padding: 20px 0 0;
    }
    .innews:before{
        display: none;
    }
    .innews ul li{
        width: 100%;
        margin: 0 0 50px;
        position: relative;
    }
    .innews ul li a .innews1{
        min-height: unset;
        padding: 0;
    }
    .innews ul li a .innews2{
        min-height: unset;
        padding-top: 20px;
    }
    .innews ul li a .innews2 .imgurl{
        position: unset;
        padding-top: 20px;
    }
    .innews ul li a .innews11{
        padding-bottom: 220px;
    }
    .innews ul li a .innews22{
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    #footer .footcon{
        display: none;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail a{  display: block;  }
    #footer .foottail .footright,
    #footer .foottail .tailimg{  width: 100%;  }
    #footer .foottail .tailimg img{  margin: 15px auto 0;  }
    #footer .foottail .footother{  display: none;  }

    .otherbanner{
        padding: 0;
    }
    .about{
        padding: 50px 0;
    }
    .about .columnimg{
        padding: 0 0 40px;
    }
    .about .countup{
        margin-top: 30px;
        padding: 20px 0;
    }
    .about .countup ul li{
        width: 100%;
        text-align: center;
        padding: 40px 0 20px !important;
        border: 0;
        border-top: 1px solid #ededed;
    }
    .about .countup ul li:nth-child(1){
      	border: 0;
    }
    .about .countup ul li .shuzi{
        font-size: 60px;
    }
    .prosearch{
        margin: -125px 0 0 -150px;
    }
    .prosearch form .input-lg{
        width: 200px;
        height: 50px;
    }
    .prosearch form .input-search-btn{
        width: 80px;
        height: 50px;
        font-size: 20px;
    }
    .product .container{
        padding: 0;
    }
    .product .pronav{
        display: none;
    }
    .product .prolist{
        width: 100%;
        padding: 0;
    }
    .product .prolist ul li{
        width: 90%;
        margin: 30px 5% 0;
    }
    .showproduct{
        width: 100%;
        padding: 30px 5% 0;
    }
    .showproduct .proone{
        padding: 20px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #00a783;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .proone .proonefr .proonecon{
        padding: 30px;
    }
    .showproduct .proone .content1, .showproduct .proone .content2{
        width: 100%;
        padding-top: 0;
    }
    .showproduct .prothree .related .title1{
        font-size: 30px;
    }
    .showproduct .prothree .prolist ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct .protwo .page_left a .page1,
    .showproduct .protwo .page_left a .page3,
    .showproduct .protwo .page_right a .page1,
    .showproduct .protwo .page_right a .page3{
        display: none;
    }
    #message #center{  width: 90%!important;  margin-top: 15%;  }
    #message #center #feedback{  padding: 20px 0 20px 20px;  margin-bottom: 15%;  }
    #message #center #feedback .pro{  width: calc(100% - 10%);  }
    #message #center #feedback dl{  width: 100%;  padding-right: 10%;  }

    .newsnav{
        display: none;
    }
    .news .newslist{
        width: 100%;
    }
    .news .newsbar{
        display: none;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .contact .conshare{
        display: none;
    }
    .contact .contactadd{
        padding: 50px 0 20px;
    }
    .contact .contactadd ul li{
        width: 100%;
        padding-bottom: 30px;
    }
    .contact .contactfeed{
        padding: 50px 0 40px 20px;
    }
    .contact .contactfeed#feedback dl{
        width: 100%;
        padding-bottom: 10px;
    }
}