/*
首页模块命名规范：col-index-模块英文名称，如：col-index-news
内页页面外层容器命名规范：
1、通用样式：col-page，内页外层容器通用样式，使用方法<div class="col-page col-page-about"></div>
2、页面样式：col-page-模块英文名称，如：col-page-about（关于我们页面）
3、内页模块命名规范：col-模块英文名称，如：col-product（产品）、col-honor（荣誉）
其他命名规范：
1、使用swiper、owl.Carousel等插件时，插件外层容器可用模块名称-container,如product-container
2、使用英文名称为样式命名，不要出现拼音和首字母
3、模块最外层容器命名规范：col-自定义名称
4、样式命名中单词由符号“-”来连接，如：col-culture,col-hot-product
备注：上面所说的模块不是指系统后台模块，是网站前台页面中的组成模块，如：首页中包含网站头部、产品、新闻、荣誉、案例、网站底部，其中每个部分视为一个模块。
*/
@charset "utf-8";
@font-face {
  font-family: "DIN";
  font-weight: regular;
  src: url("../fonts/DIN-Regular.otf") format("opentype");
}
@font-face {
  font-family: "DIN";
  font-weight: 500;
  src: url("../fonts/DIN-Medium.otf") format("opentype");
}
@font-face {
  font-family: "DIN";
  font-weight: bold;
  src: url("../fonts/DIN-Bold.otf") format("opentype");
}
/* CDN 服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: 'iconfont';  /* Project id 1502878 */
  src: url('//at.alicdn.com/t/c/font_1502878_38nvkwvajfb.woff2?t=1663834543728') format('woff2'),
       url('//at.alicdn.com/t/c/font_1502878_38nvkwvajfb.woff?t=1663834543728') format('woff'),
       url('//at.alicdn.com/t/c/font_1502878_38nvkwvajfb.ttf?t=1663834543728') format('truetype');
}
html{overflow-x: hidden;font-size: 16px;}
html.active{overflow: hidden;}
body {min-width: 320px;color: #333;overflow: hidden;font-family:"PingFang SC", PingHei, STHeitiSC-Light, "Myriad Set Pro","Lucida Grande", "Helvetica Neue", Helvetica, "microsoft yahei", SimHei,tahoma, Arial, Verdana, sans-serif;}
@font-face {
  font-family: 'goomay';  /* project id 523133 */
  src: url('//at.alicdn.com/t/font_523133_ysem17f1v5nrk9.eot');
  src: url('//at.alicdn.com/t/font_523133_ysem17f1v5nrk9.eot?#iefix') format('embedded-opentype'),
  url('//at.alicdn.com/t/font_523133_ysem17f1v5nrk9.woff') format('woff'),
  url('//at.alicdn.com/t/font_523133_ysem17f1v5nrk9.ttf') format('truetype'),
  url('//at.alicdn.com/t/font_523133_ysem17f1v5nrk9.svg#goomay') format('svg');
}
.goomay a {
  font-family:"goomay" !important;
  font-size:12px!important;
  color: rgb(255,255,255,.6)!important;
  font-style:normal;
  font-weight: normal;
  text-decoration: none!important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  transition: .5s all;
}
.icon-goomay a:before { content: "\e602"; }
.goomay a:hover{color: rgb(255,255,255,1)!important;}
.icon-g:before { content: "\e603"; }
.iconfont {font-family: 'iconfont';}
*{word-break:normal !important}
li {list-style: none;}
i {font-style: normal;}
a {color: #333;}
a:focus{text-decoration: none;outline: none;color:#333;}
a:hover { color: #333;text-decoration: none;outline: none;}
p,h1,h2,h3,h4,h5,h6,ul,li {margin: 0;padding: 0;}
img {border: 0;  max-width: 100%;}
.relative {position: relative;}
.container {max-width: 1200px;  padding: 0 10px;}
.container2 {max-width: 100%; width:100%;  margin: 0 auto; padding: 0 10vw;}
.container3 {max-width: 1440px; width:100%;  margin: 0 auto; padding: 0 20px;}
#page{padding-top: 0px; overflow: hidden;}
nav.mm-menu_offcanvas{display: none;}
#header a.mm_btn{display: none; transition: .3s all;}
#BMapLib_transBox0 table td{box-sizing: content-box !important;}
.target-fix {position: relative;top:-100px;display: block;height: 0;overflow: hidden;}
img[src=""],img:not([src]){opacity:0 !important;}
.table{display: table;width: 100%;height: 100%;margin:0;}
.table>.middle{display: table-cell;vertical-align: middle;}
.iconfont{font-family: 'iconfont';}
.none{display: none;}
.flex{display: -webkit-flex;display: -ms-flexbox;display: flex;}

/* animates */
@-webkit-keyframes fadeUp {
  from {opacity: 0;-webkit-transform: translate3d(0, 40px, 0);transform: translate3d(0, 40px, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
@keyframes fadeUp {
  from {opacity: 0;-webkit-transform: translate3d(0, 40px, 0);transform: translate3d(0, 40px, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
.fadeUp {-webkit-animation-name: fadeUp;animation-name: fadeUp;}
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.fade {-webkit-animation-name: fadeIn;animation-name: fadeIn;}
@-webkit-keyframes fadeDown {
  from {opacity: 0;-webkit-transform: translate3d(0, -40px, 0);transform: translate3d(0, -40px, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
@keyframes fadeDown {
  from {opacity: 0;-webkit-transform: translate3d(0, -40px, 0);transform: translate3d(0, -40px, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
.fadeDown {-webkit-animation-name: fadeDown;animation-name: fadeDown;}
@-webkit-keyframes fadeLeft {
  from {opacity: 0;-webkit-transform: translate3d(-40px, 0, 0);transform: translate3d(-40px, 0, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
@keyframes fadeLeft {
  from {opacity: 0;-webkit-transform: translate3d(-40px, 0, 0);transform: translate3d(-40px, 0, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
.fadeLeft {-webkit-animation-name: fadeLeft;animation-name: fadeLeft;}
@-webkit-keyframes fadeRight {
  from {opacity: 0;-webkit-transform: translate3d(40px, 0, 0);transform: translate3d(40px, 0, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
@keyframes fadeRight {
  from {opacity: 0;-webkit-transform: translate3d(40px, 0, 0);transform: translate3d(40px, 0, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
.fadeRight {-webkit-animation-name: fadeRight;animation-name: fadeRight;}

/* header */
.header{width: 100%;z-index: 90;position: absolute;top:0;left: 0;transition: top 0.36s;}
.header .inner{transition: margin 0.36s;}
.header .inner .head-top{height: 45px;line-height: 45px;background: #006150;}
.header .inner .head-top .copyright{color:#fff;font-size: 14px;}
.header .inner .head-top .pull-right{margin-left: 3.5vw;font-size: 0;}
.header .inner .head-top .pull-right a{color:#fff;display: inline-block;vertical-align: middle;line-height: 1;transition: 0.3s;}
.header .inner .head-top .pull-right a i.iconfont{font-size: 16px;margin-right: 10px;vertical-align: middle;display: inline-block;}
.header .inner .head-top .pull-right a span{display: inline-block;vertical-align: middle;font-size: 16px;}
.header .inner .head-nav{background: #fff;transition: all 0.36s;box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12);position: relative;}
.header .inner .head-nav .flex{height: 75px;line-height: 75px;align-items: center;}
.header .inner .head-nav .logo{font-size: 0;transition: 0.36s;position: relative;z-index: 5;margin-right: auto;}
.header .inner .head-nav .index-search{position: relative;font-size: 0;margin-right: 1.5vw;}
.header .inner .head-nav .index-search>a{color:#000;}
.header .inner .head-nav .index-search i.iconfont{font-size: 18px;display: inline-block;vertical-align: middle;transition:color 0.36s;}
.header .inner .head-nav .index-search .content{position: fixed;width:100%;height: 100%;top:0;left: 0;background: rgba(0, 0, 0, 0.45);z-index: 999;display: none;}
.header .inner .head-nav .index-search .content .container{position: relative;height: 100%;}
.header .inner .head-nav .index-search .content .s-content{background: #fff;text-align: center;padding:6vh 0;position: absolute;top:30%;width: 100%;left: 0;transform: translateY(20px);opacity: 0;transition: 0.5s;}
.header .inner .head-nav .index-search .content a.close{position: absolute;font-size: 32px;top:10px;right: 20px;}
.header .inner .head-nav .index-search .content .title{font-size: 24px;color:#242424;margin-bottom: 10px;line-height: 1.5;}
.header .inner .head-nav .index-search .content .input{font-size: 0;line-height: 1;}
.header .inner .head-nav .index-search .content input{height: 60px;outline: none;vertical-align: middle}
.header .inner .head-nav .index-search .content .inpt3{padding-left: 20px;border:1px solid #d2d2d2;font-size: 16px;width: 45%;color:#292929;}
.header .inner .head-nav .index-search .content .inpt3::-webkit-input-placeholder {color: #b6b6b6;}
.header .inner .head-nav .index-search .content .inpt3:-moz-placeholder {color: #b6b6b6;}
.header .inner .head-nav .index-search .content .inpt3::-moz-placeholder {color: #b6b6b6;}
.header .inner .head-nav .index-search .content .inpt3:-ms-input-placeholder {color: #b6b6b6;}
.header .inner .head-nav .index-search .content .inpt4{width: 60px;background: #313131;border:none;font-size: 24px;color:#fff;font-family: 'iconfont';}
.header .inner .head-nav .index-search .content.active .s-content{transform: none;opacity: 1;transition-delay: 0.36s;}
.header .inner .head-nav .language a{color:rgba(51,51,51,.2);font-size: 16px;display: inline-block;line-height: 1;padding: 0 12px;position: relative;text-transform: uppercase;}
.header .inner .head-nav .language a:first-child{border-right: 1px solid #333333;}
.header .inner .head-nav .language a.active,.header .inner .head-nav .language a:hover{color:#333;}
.header .inner .head-nav nav ul{font-size: 0;}
.header .inner .head-nav nav ul li{float: left;font-size: 16px;margin-right: 2.1vw;position: relative;}
.header .inner .head-nav nav ul li::after{content:'';width: 0;height: 3px;background: #006150;position: absolute;bottom: 0;left: 0;transition: 0.25s;opacity: 0;}
.header .inner .head-nav nav ul li a{transition: color 0.3s;}
.header .inner .head-nav nav ul li.active::after,.header .inner .head-nav nav ul li:hover::after{width: 100%;opacity: 1;}
.header .inner .head-nav nav ul li.active a,.header .inner .head-nav nav ul li a:hover{color:#006150;}
.header .inner .head-nav nav ul li .child{white-space: nowrap;position: absolute;top:100%;margin-top:-10px;left:-1.6vw;display: none;padding: 10px 1.6vw 15px;background: #fff;box-shadow: 0 5px 5px 2px rgba(0,0,0,0.05);min-width: 180px;}
.header .inner .head-nav nav ul li .child a{font-size:16px;display: block;margin-top:5px;color:#000;text-transform: none;line-height: 1.6;font-weight: 400;padding:0;}
.header .inner .head-nav nav ul li .child a:hover{color: #006150;}
.header .inner .head-nav.active{position: fixed;top:0;left: 0;width: 100%;}
.header.active .inner {margin-top: -45px;}

.header.relative{position: relative;}
.header.relative .inner .head-nav.active{position: relative;}

/* banner */
.col-banner {transition: 0.5s all ease;position: relative;padding: 0 !important;}
.col-banner .swiper-slide{background-position: center !important;background-size: cover !important;position: relative;}
#col-index-banner .scroll{position: absolute;left: 50%;bottom: 40px;z-index: 10;cursor: pointer;text-transform: uppercase;margin-left: -11px;width: 22px;height: 38px;background: url(../images/scroll.png) no-repeat center/cover;}
#col-index-banner .swiper-container,#col-index-banner .swiper-slide{height: 100vh !important;position: relative;}
#col-index-banner .swiper-slide .ban_cont{position: absolute;top:calc(50% + 60px);transform: translateY(-50%);color:#fff;left: 0;width: 100%;z-index: 2;}
#col-index-banner .swiper-slide .ban_cont .content .s-content{font-size: 24px;line-height: 1.25;}
#col-index-banner .swiper-slide .ban_cont .content .s-content h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 12px;}
#col-index-banner .swiper-slide .ban_cont .content a.more{display: block;width: 170px;line-height: 55px;color:#fff;font-size: 16px;margin-bottom: 10vh;background: #006150;text-align: center;}
#col-index-banner .swiper-button{width: 60px;height: 60px;border-radius: 50%;border: 1px solid #f9f9f9;text-align: center;line-height: 58px;font-size: 24px;color:#f9f9f9;position: absolute;top:auto;bottom: 26vh;margin-top: auto;opacity: 1;outline: none;transition: 0.25s;}
#col-index-banner .swiper-button::after{display: none;}
#col-index-banner .swiper-button:hover{background: #006150;border-color: #006150;}
#col-index-banner .swiper-button-prev{left: auto;right: calc(10vw + 80px);}
#col-index-banner .swiper-button-next{right: 10vw;}
#col-banner{margin-top: 120px;}
#col-banner .swiper-slide .ban_cont{position: absolute;top:50%;transform: translateY(-50%);color:#fff;left: 0;width: 100%;z-index: 2;}
#col-banner .swiper-slide .ban_cont h1{font-size: 2.5rem;font-weight: bold;margin-bottom: 6px;}
#col-banner .swiper-slide .ban_cont .mbx,#col-banner .swiper-slide .ban_cont .mbx a{font-size: 16px;color:#fff;}
#col-banner .swiper-slide .ban_cont .mbx i.iconfont{margin-right: 6px;}


/* index */
#index-body .fadeinup{transform: translateY(40px);opacity: 0;transition: 0.2s;}
#index-body .fadeinleft{transform: translateX(-40px);opacity: 0;transition: 0.2s;}
#index-body .fadeinright{transform: translateX(40px);opacity: 0;transition: 0.2s;}
#index-body .section.active .fadeinup,#index-body .section.active .fadeinleft,#index-body .section.active .fadeinright{transform: none;opacity: 1;transition: 0.5s;transition-delay: 0.5s;}
#index-body .section.active .delay1{transition-delay: 0.5s;}
#index-body .section.active .delay2{transition-delay: 0.6s;}
#index-body .section.active .delay3{transition-delay: 0.7s;}
#index-body .section.active .delay4{transition-delay: 0.8s;}
#index-body .section.active .delay5{transition-delay: 0.9s;}
#index-body .section{height: 100vh;}
#index-body .init-1{position: relative;}
#index-body .init-1 .flex{justify-content: space-between;flex-wrap: wrap;padding-top: 60px;}
#index-body .init-1 .flex .slides{width: 45%;}
#index-body .init-1 .flex .slides .s-content{font-size: 16px;color:#666;margin-bottom: 4vh;}
#index-body .init-1 .flex .slides .s-content h2{font-size: 2.5rem;color:#333;margin-bottom: 6vh;font-weight: bold;}
#index-body .init-1 .flex .slides .s-content ul{display: flex;justify-content: space-between;}
#index-body .init-1 .flex .slides .s-content ul li{margin-bottom: 10px;}
#index-body .init-1 .flex .slides .s-content ul li p:nth-child(1){color:#333;}
#index-body .init-1 .flex .slides .s-content ul li .odometer,#index-body .init-1 .flex .slides .s-content ul li strong{font-family: 'DIN';font-weight: bold;color:#006150;font-size: 2.5rem;line-height: 1;vertical-align: baseline;}
#index-body .init-1 .flex .slides .swiper-button{width: 35px;line-height: 46px;background: #f4f4f4;font-size: 18px;border-radius: 5px;color:#006150;text-align: center;top: 50%;margin-top: auto;transform: translateY(-50%);opacity: 1;outline: none;transition: 0.25s;}
#index-body .init-1 .flex .slides .swiper-button::after{display: none;}
#index-body .init-1 .flex .slides .swiper-button:hover{background: #006150;color:#fff;}
#index-body .init-1 .flex .slides .swiper-button-prev{border-top-left-radius: 0;border-bottom-left-radius: 0;left: 0;}
#index-body .init-1 .flex .slides .swiper-button-next{border-top-right-radius: 0;border-bottom-right-radius: 0;right: 0;}
#index-body .init-1 .flex .content{width: 45%;}
#index-body .init-1 .flex .content .s-content{color:#666;font-size: 16px;line-height: 1.875;}
#index-body .init-1 .flex .content .s-content h3{font-size: 24px;font-weight: bold;color:#333;margin-bottom: 3.6vh;}
#index-body .init-1 .flex .content a.more{display: flex;align-items: center;justify-content: center;width: 200px;line-height: 55px;color:#fff;font-size: 16px;margin-top: 10vh;background: #006150;text-align: center;}
#index-body .init-1 .flex .content a.more i.fa{margin-left: 10px;font-size: 18px;}
#index-body .init-2 .wrap{padding-top: 60px;}
#index-body .init-2 .wrap .news-nav{text-align: center;margin-bottom: 3.5vh;}
#index-body .init-2 .wrap .news-nav a{display: inline-block;width: 180px;line-height: 50px;font-size: 18px;transition: 0.25s;margin: 0 1vw;}
#index-body .init-2 .wrap .news-nav a:hover{background: #006150;color:#fff;}
#index-body .init-2 .wrap .swiper-container{padding: 10px 10px 65px;}
#index-body .init-2 .wrap .swiper-container .swiper-slide{box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);}
#index-body .init-2 .wrap .swiper-container .swiper-slide .img{position: relative;overflow: hidden;min-height: 66px;}
#index-body .init-2 .wrap .swiper-container .swiper-slide .content{padding: 3.6vh 28px 6vh;}
#index-body .init-2 .wrap .swiper-container .swiper-slide .title{font-size: 20px;font-weight: bold;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
#index-body .init-2 .wrap .swiper-container .swiper-slide .date{font-size: 16px;margin: 10px 0 12px;}
#index-body .init-2 .wrap .swiper-container .swiper-slide .desc{color:#666;font-size: 16px;line-height: 1.875;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;height: 60px;text-indent: 2em;}
#index-body .init-2 .wrap .swiper-container .swiper-pagination{position: absolute;bottom: 0;}
#index-body .init-2 .wrap .swiper-container .swiper-pagination span{width: 40px;height: 40px;border-radius: 3px;background: #006150;color:#fff;font-size: 16px;line-height: 40px;transition: 0.2s;opacity: 1;}
#index-body .init-2 .wrap .swiper-container .swiper-pagination span.swiper-pagination-bullet-active{background: #dddddd;}

/* page */
.page {text-align: center;}
.page ul li a{border:1px solid #e5e5e5 !important;background: #fff;color:#006150;margin:0 3.5px;width: 40px;height:40px;padding: 0;line-height: 38px;font-size: 14px;border-radius: 0 !important;}
.page ul li.disabled a{border:none;background: #fff;}
.page ul li.active a{border:none;background: #006150;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color:#fff;}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {border:none;background: #fff;color:#006150}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {border:none;background: #006150;color:#fff;}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {background: #fff;color:#006150;}
/* 内页 */
.overflow{overflow: hidden;}
.overflow img,.smallImg img{width: 100%;transition: 1.5s cubic-bezier(.165,.84,.44,1);}
.overflow:hover img{-webkit-transform:scale(1.05);transform:scale(1.05)}
.smallImg:hover img{-webkit-transform:scale(0.92);transform:scale(0.95);box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);}
.videoPop{width: 100%;height: 100%;background: rgba(0,0,0,0.6);position: fixed;left: 0;top:0;z-index: 9999;display: none;text-align: center;padding:5vh 1vw;}
.videoPop .col-video2{position: relative;width: 100%;height: 100%;}
#Video{max-width: 100%;max-height: 100%;position: absolute;max-width: 970px;top:50%;left: 50%;transform: translate(-50%,-50%);width: 100%;}
#videoClose{position: absolute;right:10px;top:5px;color: #fff;cursor: pointer;font-size: 36px;transition: 0.5s;z-index: 99;}
#videoClose:hover{color: #eee;}

/* about */
.col-page-about h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 3vh;padding-bottom: 3vh;position: relative;}
.col-page-about h2::after{content:'';width: 60px;height: 5px;position: absolute;left: 0;bottom: 0;background: #006150;}
.col-page-about .col-1 .wrap{padding: 13vh 0;display: flex;flex-wrap: wrap;justify-content: space-between;}
.col-page-about .col-1 .wrap .content{width: 50%;padding-left: 10vw;}
.col-page-about .col-1 .wrap .content .namemark{color:transparent;-webkit-text-stroke: 1px rgba(0,0,0,.15);font-size: 7.5vw;font-weight: bolder;margin-bottom: -6vh;line-height: 0.8;position: relative;z-index: -1;white-space: nowrap;}
.col-page-about .col-1 .wrap .content h2{margin-bottom: 6vh;padding-bottom: 6vh;}
.col-page-about .col-1 .wrap .content .s-content{color:#808080;font-size: 16px;line-height: 1.875;}
.col-page-about .col-1 .wrap .content .s-content p{margin-bottom: 8px;}
.col-page-about .col-1 .wrap .img{width: 45%;}
.col-page-about .col-2 .container2{padding: 9vh 10vw;}
.col-page-about .col-2 .flex{margin-bottom: 7vh;justify-content: space-between;align-items: flex-start;flex-wrap: wrap;}
.col-page-about .col-2 .flex h2{width: 40%;}
.col-page-about .col-2 .flex .content{width: 60%;font-size: 24px;line-height: 2;text-indent: 2em;}
.col-page-about .col-2 .swiper-container{text-align: center;}
.col-page-about .col-2 .swiper-slide .img{position: relative;min-height: 66px;overflow: hidden;}
.col-page-about .col-2 .swiper-slide .title{text-align: center;margin-top: 12px;font-size: 18px;}
.col-page-about .col-2 .swiper-slide .title span{display: inline-block;position: relative;}
.col-page-about .col-2 .swiper-slide .title span::before,.col-page-about .col-2 .swiper-slide .title span::after{content:'';width: 20px;height: 1px;background: #333;position: absolute;top: 50%;left: calc(100% + 8px);}
.col-page-about .col-2 .swiper-slide .title span::before{left: auto;right: calc(100% + 8px);}
.col-page-about .col-2 .swiper-pagination{position: static;margin-top: 60px;display: inline-block;width: auto;}
.col-page-about .col-2 .swiper-pagination span{width: 40px;height: 40px;border-radius: 3px;background: #006150;color:#fff;font-size: 16px;line-height: 40px;transition: 0.2s;opacity: 1;}
.col-page-about .col-2 .swiper-pagination span.swiper-pagination-bullet-active{background: #dddddd;}
.col-page-about .col-2 .swiper-button{display: inline-block;width: 40px;height: 40px;border-radius: 3px;background: #006150;color:#fff;font-size: 16px;line-height: 40px;transition: 0.2s;opacity: 1;outline: none;position: static;margin: 0 4px;}
.col-page-about .col-2 .swiper-button::after{display: none;}
.col-page-about .col-3 .container2{padding: 12vh 10vw;color:#fff;}
.col-page-about .col-3 h2::after{background: #fff;}
.col-page-about .col-3 .content{padding-right: calc(148px + 25vw);font-size: 16px;line-height: 1.875;position: relative;text-indent: 2em;}
.col-page-about .col-3 .content .swiper-button{width: 60px;height: 60px;border-radius: 50%;border: 1px solid #f9f9f9;text-align: center;line-height: 58px;font-size: 24px;color:#f9f9f9;position: absolute;top:auto;bottom: 0;margin-top: auto;opacity: 1;outline: none;transition: 0.25s;text-indent: 0;}
.col-page-about .col-3 .content .swiper-button::after{display: none;}
.col-page-about .col-3 .content .swiper-button:hover{background: #006150;border-color: #006150;}
.col-page-about .col-3 .content .swiper-button-prev{left: auto;right: 108px;}
.col-page-about .col-3 .content .swiper-button-next{right: 0;}
.col-page-about .col-3 .slide{padding: 0 0 18vh;color:#fff;padding-left: 10vw;position: relative;z-index: 1;}
.col-page-about .col-3 .slide::after{content:'';width: 100%;height: 1px;background: rgba(255,255,255,.3);position: absolute;left: calc(11.7vw + 10px);top: 11px;z-index: -1;}
.col-page-about .col-3 .slide .swiper-container .swiper-slide i.dot{display: block;margin-left: 1.7vw;width: 22px;height: 22px;border-radius: 50%;background: transparent;border: 1px solid #fff;position: relative;}
.col-page-about .col-3 .slide .swiper-container .swiper-slide i.dot::after{content:'';width: 11px;height: 11px;border-radius: 50%;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.col-page-about .col-3 .slide .swiper-container .swiper-slide h3{margin: 8px 0 16px;font-family: 'DIN';font-size: 16px;font-weight: 400;}
.col-page-about .col-3 .slide .swiper-container .swiper-slide h3 .y{font-size: 2.25rem;font-weight: bold;}
.col-page-about .col-3 .slide .swiper-container .swiper-slide .s-content{padding-left: 25px;position: relative;font-size: 16px;line-height: 1.875;}
.col-page-about .col-3 .slide .swiper-container .swiper-slide .s-content::before{content:'';width: 15px;height: 15px;border-radius: 50%;border:4px solid #006150;position: absolute;left: 0;top: 6px;}
.col-page-about .col-4 .container2{padding: 20vh 10vw 12vh;}
.col-page-about .col-4 .flex{justify-content: space-between;flex-wrap: wrap;}
.col-page-about .col-4 .left{width: 30%;position: relative;z-index: 3;padding-bottom: calc(60px + 8vh);}
.col-page-about .col-4 .left h2{margin-bottom: 6.6vh;padding-bottom: 4vh;}
.col-page-about .col-4 .left ul{border-top:1px solid rgba(0, 0, 0, 0.1);max-width: 260px;margin-bottom: 30px;}
.col-page-about .col-4 .left ul li{border-bottom: 1px solid rgba(0, 0, 0, 0.1);cursor: pointer;padding: 20px 0;font-size: 0;transition: 0.3s;}
.col-page-about .col-4 .left ul li span.name{font-size: 24px;display: inline-block;vertical-align: middle;width: calc(100% - 15px);}
.col-page-about .col-4 .left ul li i.fa{font-size: 24px;vertical-align: middle;width: 15px;}
.col-page-about .col-4 .left ul li:hover,.col-page-about .col-4 .left ul li.active{color:#006150;}
.col-page-about .col-4 .left .swiper-button{width: 60px;height: 60px;border: 1px solid #333;text-align: center;line-height: 58px;font-size: 24px;outline: none;top: auto;margin-top: auto;bottom: 0;opacity: 1;transition: 0.36s;color:#333;border-radius: 50%;}
.col-page-about .col-4 .left .swiper-button::after{display: none;}
.col-page-about .col-4 .left .swiper-button:hover{background: #006150;color:#fff;border-color: #006150;}
.col-page-about .col-4 .left .swiper-button-prev{left: 0;}
.col-page-about .col-4 .left .swiper-button-next{right: auto;left: calc(55px + 1.5vw);}
.col-page-about .col-4 .slide{width: 70%;position: relative;z-index: 1;}
.col-page-about .col-4 .slide::before{content:'';width: 10000px;height: 100%;background: #fff;position: absolute;right: 100%;top: 0;z-index: 2;}
.col-page-about .col-4 .slide .swiper-container{overflow: visible;display: none;padding-right: 12.5vw;}
.col-page-about .col-4 .slide .swiper-container.active{display: block;}
.col-page-about .col-4 .slide .swiper-container .swiper-slide .img{min-height: 150px;position: relative;}
.col-page-about .col-4 .slide .swiper-container .swiper-slide h3{text-align: center;margin-top: 12px;font-size: 16px;transition: 0.36s;}
.col-page-about .col-4 .slide .swiper-container .swiper-slide:hover h3 {color:#006150}

.vicenav{border-bottom: 1px solid rgba(0,0,0,.1);margin-bottom: 9vh;}
.vicenav ul{display: flex;}
.vicenav ul li{border-right: 1px solid rgba(0,0,0,.1);width: 240px;}
.vicenav ul li:first-child{border-left: 1px solid rgba(0,0,0,.1);}
.vicenav ul li a{display: block;padding: 2.5vh 10px;width: 100%;height: 100%;transition: 0.25s;font-size: 16px;text-align: center;}
.vicenav ul li a:hover,.vicenav ul li.active a{color:#fff;background: #006150;}
.col-page-news {padding: 0 0 10vh;}
.col-page-news ul.list{display: flex;flex-wrap: wrap;}
.col-page-news ul.list li{width: 32%;margin-right: 2%;margin-bottom: 3%;}
.col-page-news ul.list li:nth-child(3n){margin-right: 0;}
.col-page-news ul.list li .img{overflow: hidden;}
.col-page-news ul.list li .content{border: 1px solid rgba(0,0,0,.1);padding: 3.6vh 28px 6vh;}
.col-page-news ul.list li .title{font-size: 20px;font-weight: bold;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.col-page-news ul.list li .date{font-size: 16px;margin: 10px 0 12px;}
.col-page-news ul.list li .desc{color:#666;font-size: 16px;line-height: 1.875;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;height: 60px;text-indent: 2em;}

/* 新闻详情页 */
.col-news { position: relative; margin: 0 auto;background: #f4f4f4;padding: 12vh 10vw;}
.col-news-detail{background: #f2f5f8;}
.col-news article {width: 100%;padding: 9vh 9vw;background: #fff;}
.col-news .met_clear {clear: both;}
.col-news .met_module2 h1.met_title {font-size: 24px;font-weight: normal;padding: 5px 0;color:#000;}
.col-news .met_module2 .met_infos {color: #818181;font-size: 12px;margin-bottom: 30px;padding-bottom: 10px;border-bottom: 1px solid #ddd;}
.col-news .met_module2 .met_time { padding-right: 6px;}
.col-news .met_module2 .met_source {padding-right: 6px;}
.col-news .met_module2 .met_source a {color: #607fa6;}
.col-news .met_module2 .met_editor { padding: 0 10px;color:#000;}
.col-news .met_editor {line-height: 2;}
.col-news .met_tools {border-top: 1px solid #ddd;margin-top: 30px;position: relative;padding: 10px 10px 0;}
.col-news .met_tools .met_page {clear: both;color: #818181;}
.col-news .met_tools .met_page li {display: inline-block;list-style: none;margin-right: 30px;}
.col-news .met_tools .met_page li:last-child{margin-right: 0}
.col-news .met_tools .met_page li span {padding-right: 5px;}
.col-news .met_tools .met_page a {color: #607fa6;}

.col-page-factory{padding: 10vh 0;}
.col-page-factory .content{font-size: 16px;line-height: 1.875;}
.col-page-factory .content h2{font-size: 2.375rem;font-weight: bold;margin-bottom: 6.2vh;}
.col-page-factory .content>ul{display: flex;justify-content: space-between;flex-wrap: wrap;}
.col-page-factory .content>ul>li{width: 50%;}
.col-page-factory .content>ul>li:nth-child(1){width: 38%;}
.col-page-factory .content>ul>li ul{display: flex;justify-content: space-between;}
.col-page-factory .content>ul>li ul li .odometer,.col-page-factory .content>ul>li ul li strong{font-family: 'DIN';font-weight: bold;color:#006150;font-size: 3.125rem;line-height: 1;vertical-align: baseline;}
.col-page-factory .content video{width: 100%;height: auto;}

.col-page-product{background: #eff2f4;padding:  0 0 10vh;}
.col-page-product .product-nav{background: #fff;box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);display: flex;}
.col-page-product .product-nav .item{text-align: center;padding: 4vh 20px 3.1vh;width: 25%;position: relative;}
.col-page-product .product-nav .item:not(:last-child):after{content:'';width: 1px;height: 80%;position: absolute;top: 10%;right: 0;background: rgba(0,0,0,.15);}
.col-page-product .product-nav .item .title{margin-top: 20px;font-size: 18px;transition: 0.3s;}
.col-page-product .product-nav .item a:hover .title,.col-page-product .product-nav .item.active .title{color:#006150;}
.col-page-product .child{padding: 30px 0 0;font-size: 0;}
.col-page-product .child a{display: inline-block;margin: 0 2.2vw 10px;font-size: 16px;color:#666;}
.col-page-product .child a:hover,.col-page-product .child a.active{color:#006150;}
.col-page-product ul.list{padding: 10vh 0 6vh;display: flex;flex-wrap: wrap;}
.col-page-product ul.list li{width: 31%;margin-right: 3.5%;background: #fff;margin-bottom: 3.5%;}
.col-page-product ul.list li:nth-child(3n){margin-right: 0;}
.col-page-product ul.list li .img{overflow: hidden;}
.col-page-product ul.list li .title{font-size: 18px;text-align: center;padding: 15px 0 5vh;}

/* 产品详情页 */
.col-page-detail{background: #f4f4f4;}
.col-page-detail .pro_show{position: relative;padding: 10vh 0 15vh;}
.col-page-detail .pro_show .wrap .caseleft{width: 44%;float: left;}
.col-page-detail .pro_show .wrap .caseleft .gallery-top{overflow: hidden;border: 1px solid #dddddd;}
.col-page-detail .pro_show .wrap .caseleft .gallery-top .bimg{background: #f4f4f4;}
.col-page-detail .pro_show .wrap .caseleft .gallery-top img{mix-blend-mode: multiply;}
.col-page-detail .pro_show .wrap .caseleft .col-thumb{position: relative;margin-top: 28px;}
.col-page-detail .pro_show .wrap .caseleft .col-thumb .swiper-slide{border: 1px solid #dddddd;background: #f4f4f4;}
.col-page-detail .pro_show .wrap .caseleft .col-thumb .swiper-slide-thumb-active{border-color: #006150;}
.col-page-detail .pro_show .wrap .caseleft .col-thumb .swiper-slide img{mix-blend-mode: multiply;}
.col-page-detail .pro_show .wrap .caseright{width: 46%;position: relative;}
.col-page-detail .pro_show .wrap .caseright h1{font-size: 2.25rem;font-weight: bold;margin-bottom: 7vh;}
.col-page-detail .pro_show .wrap .caseright .content {background: #fff;padding: 5vh 3.5vw 4vh;font-size: 18px;}
.col-page-detail .pro_show .wrap .caseright .content h2{font-size: 24px;font-weight: bold;margin-bottom: 3.5vh;}
.col-page-detail .pro_show .wrap .caseright .content table{width: 100%;}
.col-page-detail .pro_show .wrap .caseright .content table tr:not(:last-child){border-bottom:1px solid rgba(0,0,0,.1);}
.col-page-detail .pro_show .wrap .caseright .content table td{padding: 18px 0;}
.col-page-detail .pro_show .wrap .caseright .content table td:nth-child(1){font-size: 20px;font-weight: bold;}
.col-page-detail .col-detail{padding: 8vh 0;}
.col-page-detail .col-detail h2{text-align: center;font-weight: bold;margin-bottom: 8vh;font-size: 2.25rem;}
.col-page-detail .col-detail .content{font-size: 16px;line-height: 1.875;}
.col-page-detail .related{padding: 8vh 0;background: url(../images/product_bg.jpg) no-repeat center/cover;}
.col-page-detail .related h2{text-align: center;color:#fff;margin-bottom: 8vh;font-size: 2.25rem;font-weight: bold;}
.col-page-detail .related .swiper-slide{background: #fff;}
.col-page-detail .related .swiper-slide .img{overflow: hidden;min-height: 66px;position: relative;}
.col-page-detail .related .swiper-slide .title{font-size: 18px;text-align: center;padding: 15px 0 5vh;}

.col-page-service h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 7vh;padding-bottom: 3vh;position: relative;}
.col-page-service h2::after{content:'';width: 59px;height: 4px;background: #006150;position: absolute;left: 0;bottom: 0;}
.col-page-service .wrap{padding: 12vh 0;display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;}
.col-page-service .wrap .content{width: 39%;}
.col-page-service .wrap .content .s-content{color:#808080;font-size: 16px;line-height: 1.875;}
.col-page-service .wrap .content .s-content strong{font-size: 18px;font-weight: bold;color:#006150;}
.col-page-service .wrap .img{width: 58%;}
.after_sale{background: #f7f7f7;padding: 19vh 0 0;}
.after_sale .flex{align-items: center;justify-content: space-between;}
.after_sale .flex .title{padding: 20px 0;}
.after_sale .flex .title a.contact{display: block;margin: 12vh 0 0;width: 161px;height: 51px;background: #006150;text-align: center;line-height: 51px;color:#fff;font-size: 16px;}
.after_sale .flex .content{width: 31%;padding: 20px 0;color:#808080;font-size: 16px;line-height: 1.875;}
.after_sale .flex .content h3{font-size: 24px;color:#333;}
.after_sale .flex .content strong{font-family: 'DIN';font-weight: bold;font-size: 2.5rem;color:#333;line-height: 1.5;}

.col-page-problem .wrap{padding: 8vh 0;}
.col-page-problem h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 7vh;padding-bottom: 3vh;position: relative;text-align: center;}
.col-page-problem h2::after{content:'';width: 59px;height: 4px;background: #006150;position: absolute;left: 50%;bottom: 0;transform: translateX(-50%);}
.col-page-problem ul.list{display: flex;flex-wrap: wrap;}
.col-page-problem ul.list li{width: 47%;margin-right: 6%;margin-bottom: 18px;}
.col-page-problem ul.list li:nth-child(2n){margin-right: 0;}
.col-page-problem ul.list li .title{display: flex;align-items: center;justify-content: space-between;padding: 20px 30px;box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);border-radius: 8px;cursor: pointer;transition: 0.2s;}
.col-page-problem ul.list li .title span{font-size: 18px;}
.col-page-problem ul.list li .title i.fa{font-size: 24px;transition:transform 0.2s;}
.col-page-problem ul.list li.active .title{color:#fff;background: #006150;}
.col-page-problem ul.list li.active .title i.fa{transform: rotate(90deg);}
.col-page-problem ul.list li .content{color:#666666;font-size: 16px;line-height: 1.875;padding: 20px 0 0 30px;display: none;}

.col-page-download .wrap{padding: 8vh 0 12vh;}
.col-page-download h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 7vh;padding-bottom: 3vh;position: relative;text-align: center;}
.col-page-download h2::after{content:'';width: 59px;height: 4px;background: #006150;position: absolute;left: 50%;bottom: 0;transform: translateX(-50%);}
.col-page-download ul.list{display: flex;flex-wrap: wrap;}
.col-page-download ul.list li{width: 47%;margin-right: 6%;margin-bottom: 18px;}
.col-page-download ul.list li:nth-child(2n){margin-right: 0;}
.col-page-download ul.list li .title{display: flex;align-items: center;justify-content: space-between;padding: 20px 30px;box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);border-radius: 8px;cursor: pointer;transition: 0.2s;}
.col-page-download ul.list li .title span{font-size: 18px;}
.col-page-download ul.list li .title i.iconfont{font-size: 24px;}
.col-page-download ul.list li:hover .title{color:#fff;background: #006150;}

.col-page-recruit h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 7vh;padding-bottom: 3vh;position: relative;}
.col-page-recruit h2::after{content:'';width: 59px;height: 4px;background: #006150;position: absolute;left: 0;bottom: 0;;}
.col-page-recruit .col-1{background: url(../images/idea_bg.jpg) no-repeat center/cover;}
.col-page-recruit .col-1 .container2{padding: 12vh 10vw;}
.col-page-recruit .col-1 .flex{flex-wrap: wrap;align-items: center;justify-content: space-between;}
.col-page-recruit .col-1 .img{width: 44%;}
.col-page-recruit .col-1 .content{width:50%}
.col-page-recruit .col-1 .content .s-content{color:#969696;font-size: 16px;line-height: 1.875;}
.col-page-recruit .col-1 .content .s-content strong{color:#333;font-size: 18px;font-weight: bold;}
.col-page-recruit .col-2 .container2{padding: 10vh 10vw;}
.col-page-recruit .col-2 h2::after{left: 50%;transform: translateX(-50%);}
.col-page-recruit .col-2 .job ul li{transition: 0.3s;position: relative;z-index: 1;margin-bottom: 9px;background: #f6f7f9;}
.col-page-recruit .col-2 .job ul li table {width:100%;}
.col-page-recruit .col-2 .job ul li table tr th{padding: 15px 0;font-size: 18px;font-weight: bold;width:20%;background: #006150;text-align: center;color:#fff;}
.col-page-recruit .col-2 .job ul li table tr th:first-child{text-align: left;padding-left: 2.5vw;}
.col-page-recruit .col-2 .job ul li .jobtit {color: #000;position: relative;transition: 0.36s;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td{width:20%;padding:15px 0;font-size: 16px;text-align: center;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td:first-child{text-align: left;padding-left: 2.5vw;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td h3{font-size: 18px;font-weight: bold;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td a{transition: .3s;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td a span{display: inline-block;vertical-align: middle;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td a i.iconfont{display: inline-block;vertical-align: middle;width: 18px;height: 18px;border-radius: 50%;border: 1px solid #333333;text-align: center;line-height: 16px;font-size: 12px;margin-left: 8px;}
.col-page-recruit .col-2 .job ul li .jobtit table tr td a:hover{color:#006150;}

.col-page-jobdetail{padding:6vh 0 20vh}
.col-page-jobdetail h1{font-size: 24px;padding: 15px 5px;border-bottom: 1px solid #ddd;margin-bottom: 30px;font-weight: bold;}
.col-page-jobdetail ul{background: #8c989f;padding: 5px 10px;color: #fff;margin-top: 30px;}
.col-page-jobdetail ul li{list-style: none;padding: 8px 5px 8px 120px;min-height: 20px;position: relative;border-bottom: 1px solid #ddd;}
.col-page-jobdetail ul li:last-child{border:none;}
.col-page-jobdetail ul li span{position: absolute;left: 0;top: 0;width: 120px;padding: 8px 3px;overflow: hidden;}
.col-page-jobdetail h3{margin: 30px 0 10px;padding: 0 10px;font-size: 16px;font-weight: normal;height: 40px;line-height: 40px;border-bottom: 1px solid #ddd;}
.col-page-jobdetail .content{padding: 0 10px;line-height: 2;}
.col-page-jobdetail .sub{margin-top: 30px;margin-left: 10px;}
.col-page-jobdetail .sub a{display: inline-block;background: #006150;height: 35px;line-height: 35px;padding: 0 35px;color: #fff;border-radius: 2px;}
.col-page-jobdetail .met_tools {border-top: 1px solid #ddd;margin-top: 30px;position: relative;padding: 10px 10px 0;height: 50px;line-height: 50px;}
.col-page-jobdetail .met_tools .bdshare-button-style1-16 .bds_more {color: #333;float: left;}

#cvlist {padding: 6vh 0 20vh;}
#cvlist .v52fmbx {border: 1px solid #ddd;border-top: 0;overflow: hidden;text-align: left;}
#cvlist .v52fmbx h3{border-top: 1px solid #ddd;margin: 0;padding: 0 5px 0 15px;font-weight: bold;font-size: 16px;background: #ddd;height: 60px;line-height: 60px;}
#cvlist .v52fmbx dl{border-top: 1px solid #ddd;margin: 0;display: -webkit-box;display: -moz-box;display: box;display: -ms-flexbox;position: relative;padding: 5px 0;}
#cvlist .v52fmbx dl dt{padding: 15px 15px 10px 15px;width: 105px;text-align: left;font-weight: normal;overflow: hidden;line-height: 1.2;}
#cvlist .v52fmbx dl dd{-moz-box-flex: 1.0;-webkit-box-flex: 1.0;box-flex: 1.0;-ms-flex: 1;padding: 2px 15px;margin: 10px 0;}
#cvlist .v52fmbx dl dd input{width: 350px;height: 28px;line-height: 28px\9;padding: 2px 5px;border: 1px solid #dcdfe0;background-color: #fff;color: #333;outline: 0;border-radius: 2px;}
#cvlist .v52fmbx dl dd input[type="radio"]{border-radius: 100%;bottom: 3px;height: 15px;position: relative;vertical-align: middle;width: 15px;margin: 0;position: relative;top: -1px;margin-right: 6px;}
#cvlist .v52fmbx dl dd textarea{width: 350px;line-height: 1.5;height: 100px;padding: 7px 5px;border: 1px solid #dcdfe0;background-color: #fff;color: #333;outline: 0;}
#cvlist .v52fmbx dl dd input[type="submit"]{display: block;width: 120px;height: 40px;background: #006150;color:#fff;line-height: 40px;text-align: center;transition: 0.3s;padding:0;border:none;}
#cvlist .v52fmbx dl dd input[type="submit"]:hover{box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.03);transform: translateY(-5px);}


.col-page-contact {padding: 12vh 0;}
.col-page-contact .map {height: 600px;}
.col-page-contact .map #allmap {width:100%;height:100%;}
.col-page-contact .map #allmap img { max-width: 1070px; max-height: 500px;}
.col-page-contact .map #allmap label {max-width: 1070px;background: #fff !important;border:none !important;box-shadow: 0 2px 3px rgba(0,0,0,.1);padding: 10px !important;top: auto !important;bottom: 10px;left: 50% !important;transform: translateX(-45%)}
.col-page-contact .map #allmap label::before{content: "";width: 0px;height: 0px;border-top: 10px solid #fff;border-left: 10px solid transparent;border-right: 10px solid transparent;position: absolute;bottom: -10px;left: 50%;margin-left: -10px;}
.col-page-contact .map #allmap .BMapLib_SearchInfoWindow .BMapLib_bubble_content{overflow-y: auto !important;}
.col-page-contact .flex{flex-direction: row-reverse;justify-content: space-between;flex-wrap: wrap;padding: 13vh 0 0;}
.col-page-contact .flex h2{font-size: 2.5rem;font-weight: bold;margin-bottom: 7vh;padding-bottom: 3vh;position: relative;}
.col-page-contact .flex h2::after{content:'';width: 59px;height: 4px;background: #006150;position: absolute;left: 0;bottom: 0;;}
.col-page-contact .flex .col-1{width: 35%;}
.col-page-contact .flex .col-1 .content{color:#666;font-size: 16px;}
.col-page-contact .flex .col-1 .content strong{font-size: 2.25rem;font-weight: bold;color:#333;display: block;margin-bottom: 15px;font-family: 'DIN';}
.col-page-contact .flex .col-1 .content ul{display: flex;flex-wrap: wrap;}
.col-page-contact .flex .col-1 .content ul li{width: 49%;margin-right: 2%;margin-bottom: 12px;}
.col-page-contact .flex .col-1 .content ul li:nth-child(2n){margin-right: 0;}
.col-page-contact .flex .col-1 .content ul li:last-child{width: 100%;margin-right: 0;}
.col-page-contact .flex .col-2{width: 50%;}
.col-page-contact .flex .col-2 .content{color:#666;font-size: 18px;margin-bottom: 3vh;}
.col-page-contact .flex .col-2 form ul{display: flex;flex-wrap: wrap;}
.col-page-contact .flex .col-2 form ul li{width: 49%;margin-right: 2%;margin-bottom: 2%;}
.col-page-contact .flex .col-2 form ul li:nth-child(2){margin-right: 0;}
.col-page-contact .flex .col-2 form ul li:last-child{width: 100%;margin-right: 0;}
.col-page-contact .flex .col-2 form ul li input,.col-page-contact .flex .col-2 form ul li textarea{width: 100%;height: 60px;border-radius: 5px;border: 1px solid rgba(0,0,0,.15);padding-left: 25px;font-size: 16px;outline: none;}
.col-page-contact .flex .col-2 form ul li textarea{height: auto;min-height: 200px;padding-top: 15px;}
.col-page-contact .flex .col-2 form .sub{width: 100%;height: 60px;background: #006150;border-radius: 5px;outline: none;border: none;color:#fff;font-size: 18px;}




/* search */
#search{padding: 8vh 0 6vh;overflow:hidden}
#search .goomay-keywords-light{background: #006150 !important;color:#ffffff !important;}
#search .search_left{border: 1px solid #d6d6d6;padding-top:5px;padding-bottom:5px;}
#search .s_head{border-bottom: 1px solid #d6d6d6;height: 50px;}
#search .s_head h2{line-height: 50px;text-align: center;font-size: 24px;font-weight: bold;color:#333;}
#search .s_body ul{margin-top: 10px;}
#search .s_body ul span{display: block;color: #333;line-height: 40px;}
#search .s_body ul input,.s_body ul select{height: 35px;width: 100%;line-height: 35px;border: 1px solid #e6e6e6;padding-left: 10px;margin-bottom: 10px;}
#search .s_body .sub input{height: 45px;line-height: 45px;background: #006150;border: 0;color: #fff;transition: 0.3s;text-align: center;padding-left: 0px;font-size: 16px;}
#search .search_right .no-result{text-align: center;font-size: 30px;color:#006150;margin-top:50px;}
#search .search-result-title{font-size: 20px;color: #333;line-height: 30px;height: 30px;overflow: hidden;}
#search .entry-image {float: left;width: 120px;margin: 0 20px 0 0;}
#search .entry-c{position: relative;overflow: hidden;}
#search .search-result-info{padding:5px 0;}
#search .search-result-info li{display: inline-block;}
#search .entry-content p{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
#search .search_right em{color: #006150;}
#search .search_right .search-result{margin-left:25px;}
#search .search_right .search-li{border-bottom: 1px solid #d6d6d6;margin-bottom: 30px;padding-bottom: 10px;}
#search .search_right li{overflow: hidden;}
#search .search-result-info li:before{content: '/';display: inline-block;margin-left: 10px;margin-right: 10px;opacity: 0.5}
#search .search-result-info li:first-child:before { display: none; }
#search .product_list{padding-bottom: 15px;border-bottom: 1px solid #d6d6d6; margin-bottom: 15px;}
#search .product_img{float: left;}
#search .product_img img{border-radius: 50%;}
#search .product_img img:hover{width: 90px;height: 90px;}
#search .product_body{float: left;margin-left: 20px;margin-top: 10px;}
#search .se_news{float: right;width: 79%;}
#search .news ul li .se_news a {color:#006150;text-decoration: underline;display: inline-block;height: 22px;overflow: hidden;transition: 0.3s;}
#search .search_right .news .date em{color: #fff;}




/* 底部 */
#gotoTop{position: fixed;z-index: 999;;bottom: 12vh;right: 60px;width: 50px;height: 50px;border-radius: 50%;text-align: center;line-height: 50px;background: #006150;color:#fff;font-size: 24px;display: none;cursor: pointer;}
.footer{background: #333;}
.footer .fp-tableCell{vertical-align:bottom;}
.footer .flex{justify-content: space-between;flex-wrap: wrap;padding: 12vh 0 0;}
.footer .flex .footer-info{width: 33%;}
.footer .flex .footer-info .logo{margin-bottom: 6vh;}
.footer .flex .footer-info p{font-size: 16px;color:rgba(255,255,255,.5);}
.footer .flex .footer-info p a{color:#fff;font-family: 'DIN';font-size: 2.375rem;font-weight: bold;}
.footer .flex .footer-info .share{margin-top: 20px;display: flex;align-items: center;font-size: 16px;color:rgba(255,255,255,.5);}
.footer .flex .footer-info .share a{margin-left: 25px;font-size: 18px;transition: 0.25s;position: relative;color:rgba(255,255,255,.5);}
.footer .flex .footer-info .share a:hover{color:#fff;}
.footer .flex .footer-info .share a.wechat .code{position: absolute;bottom: 100%;margin-bottom: 10px;left: 50%;transform: translateX(-50%);display: none;padding:5px;background: #fff;z-index: 90;}
.footer .flex .footer-info .share a.wechat .code::after{content:'';border-top:8px solid #fff;border-left: 6px solid transparent;border-right: 6px solid transparent;position: absolute;top:100%;left: 50%;transform: translateX(-50%);}
.footer .flex .footer-info .share a.wechat .code img{max-width: 120px;}
.footer .flex .footer-nav{width: 67%;}
.footer .flex .footer-nav ul.list{display: flex;justify-content: space-between;}
.footer .flex .footer-nav ul.list li a{font-size: 20px;font-weight: bold;color:#fff;}
.footer .flex .footer-nav ul.list li .child{margin-top: 4.2vh;}
.footer .flex .footer-nav ul.list li .child p{margin-bottom: 2vh;}
.footer .flex .footer-nav ul.list li .child p a{font-size: 16px;color:rgba(255,255,255,.4);transition: 0.2s;font-weight: normal;}
.footer .flex .footer-nav ul.list li .child p a:hover{color:#fff;}
.footer .info{margin: 8vh 0;max-width: 1000px;}
.footer .info h2{margin-bottom: 2.6vh;padding-bottom: 2.6vh;position: relative;color:#fff;font-size: 20px;font-weight: bold;}
.footer .info h2::after{content:'';width: 46px;height: 3px;background: #006150;position: absolute;left: 0;bottom: 0;}
.footer .info ul{display: flex;flex-wrap: wrap;}
.footer .info ul li{margin: 0 2.5vw 10px 0;font-size: 16px;color:rgba(255,255,255,.5);}
.footer .bottom{display: flex;justify-content: space-between;border-top: 2px solid rgba(255,255,255,.1);padding: 30px 0;}
.footer .bottom .copyright,.footer .bottom .copyright a{font-size: 16px;color:rgba(255,255,255,.6);}
.footer .bottom .contact a{font-size: 16px;color:rgba(255,255,255,.6);transition: 0.2s;}
.footer .bottom .contact a:hover{color:#fff;}



/* media */

@media (max-width: 1800px) {

}
@media (max-width: 1600px) {
  .container2{padding: 0 8vw;}
  html{font-size: 15px;}
}
@media (max-width: 1460px) {
  .col-page-factory .content>ul>li ul li .odometer, .col-page-factory .content>ul>li ul li strong{font-size: 2.5rem;}
  .col-page-product .product-nav .item .img img{max-width: 40px;max-height: 40px;}
  #col-banner .swiper-slide{height: 450px !important;}
  .container2{padding: 0 5.2vw;}
  .header .inner .head-nav nav ul li{margin-right: 1.66vw;}
  .header .inner .head-nav .logo img{width: 240px;}

  
  html{font-size: 14px;}

}
@media (max-width: 1200px) {
  #col-index-banner .swiper-slide .ban_cont .content .s-content h2,#index-body .init-1 .flex .slides .s-content h2,#index-body .init-1 .flex .slides .s-content ul li .odometer, #index-body .init-1 .flex .slides .s-content ul li strong,.col-page-about h2,#col-banner .swiper-slide .ban_cont h1,.col-page-factory .content h2,.col-page-detail .pro_show .wrap .caseright h1,.col-page-service h2,.after_sale .flex .content strong,.col-page-recruit h2,.col-page-contact .flex h2,.col-page-contact .flex .col-1 .content strong{font-size: 2.125rem;}
  #col-index-banner .swiper-slide .ban_cont .content .s-content,#index-body .init-1 .flex .content .s-content h3,#index-body .init-2 .wrap .swiper-container .swiper-slide .title,.footer .flex .footer-nav ul.list li a,.col-page-about .col-2 .flex .content,.col-page-about .col-4 .left ul li span.name,.col-page-news ul.list li .title,.col-page-detail .pro_show .wrap .caseright .content h2,.after_sale .flex .content h3{font-size: 18px;}
  .col-page-detail .pro_show .wrap .caseright .content table td:nth-child(1),.col-page-problem ul.list li .title span,.col-page-download ul.list li .title span,.col-page-recruit .col-2 .job ul li table tr th,.col-page-recruit .col-2 .job ul li .jobtit table tr td h3{font-size: 16px;}

  #col-banner .swiper-slide{height: 400px !important;}
  .header .inner .head-nav .logo img{width: 150px;}

  html{font-size: 13px;}
  
}
@media (max-width: 992px) {
  #col-index-banner .swiper-slide .ban_cont .content a.more{margin-bottom: 3vh;}
  .col-page-news ul.list li,.col-page-product ul.list li{width: 49%;margin-right: 2%;}
  .col-page-news ul.list li:nth-child(3n),.col-page-product ul.list li:nth-child(3n){margin-right: 2%;}
  .col-page-news ul.list li:nth-child(2n),.col-page-product ul.list li:nth-child(2n){margin-right: 0;}
  .vicenav .container2{padding: 0;}
  #col-banner .swiper-slide{height: 350px !important;}
  .footer .flex .footer-info,.footer .info,.footer .info ul li{width: 100%;text-align: center;max-width: none;}
  #col-banner{margin-top: 105px;}
  .footer .flex .footer-info .share{justify-content: center;}
  .footer .info h2::after{left: 50%;transform: translateX(-50%);}
  .footer .bottom{display: block;text-align: center;}
  .after_sale .flex{display: block;padding: 0 0 1px;}
  #index-body .init-1 .flex .slides,#index-body .init-1 .flex .content,.col-page-about .col-1 .wrap .content,.col-page-about .col-1 .wrap .img,.col-page-about .col-2 .flex h2,.col-page-about .col-2 .flex .content,.col-page-about .col-4 .left,.col-page-about .col-4 .slide,.col-page-factory .content>ul>li:nth-child(1),.col-page-factory .content>ul>li:nth-child(2),.col-page-detail .pro_show .wrap .caseleft,.col-page-detail .pro_show .wrap .caseright,.col-page-service .wrap .content,.col-page-service .wrap .img,.after_sale .flex .title,.after_sale .flex .content,.col-page-problem ul.list li,.col-page-download ul.list li,.col-page-recruit .col-1 .img,.col-page-recruit .col-1 .content,.col-page-contact .flex .col-1,.col-page-contact .flex .col-2{width: 100%;max-width: none;margin-bottom: 25px;margin-right: 0;}
  .col-page-about .col-1 .wrap .content{padding: 0 5.2vw;}
  .header .inner .head-nav nav,.header .inner .head-nav .language,.footer .flex .footer-nav,.after_sale .flex .img{display: none;}
  .header .inner .head-nav .flex{height: 60px;line-height: 60px;}
  .header .inner .head-nav .index-search{margin-right: 50px;}

  html{font-size: 12px;}
  
}
@media (max-width: 768px) {
  .col-page-about .col-2 .swiper-slide .title,.col-page-product .product-nav .item .title,.col-page-product ul.list li .title,.col-page-detail .related .swiper-slide .title{font-size: 16px;}
  #col-banner .swiper-slide .ban_cont .mbx, #col-banner .swiper-slide .ban_cont .mbx a{font-size: 14px;}
  
  .col-page-contact .map{height: 330px;}
  #cvlist .v52fmbx dl dd input,#cvlist .v52fmbx dl dd textarea{width: 100%;}
  .col-page-product ul.list li .title,.col-page-detail .related .swiper-slide .title{padding: 5px 5px 10px;}
  .col-page-product .product-nav{flex-wrap: wrap;}
  .col-page-product .product-nav .item{width: 50%;}
  .col-page-product .product-nav .item .title{margin-top: 10px;}
  .col-page-news ul.list li{margin-right: 0;width: 100%;}
  .col-page-about .col-4 .left .swiper-button{width: 45px;height: 45px;line-height: 43px;}
  .col-page-about .col-3 .content{padding-right: 0;}
  #col-banner .swiper-slide{height: 300px !important;}
  #index-body .init-2 .wrap .swiper-container,.col-page-about .col-3 .slide .swiper-container{padding-right: 16vw;}
  .header .inner .head-top .copyright,.col-page-about .col-3 .content .swiper-button,.col-page-recruit .col-2 .job ul li table tr th:not(:first-child):not(:last-child),.col-page-recruit .col-2 .job ul li .jobtit table tr td:not(:first-child):not(:last-child){display: none;}
  #col-index-banner .swiper-slide .ban_cont .content a.more,#index-body .init-2 .wrap .news-nav a{width: 150px;height: 45px;line-height: 45px;}
  #index-body .init-2 .wrap .swiper-container .swiper-pagination span,.col-page-about .col-2 .swiper-pagination span{width: 25px;height: 25px;line-height: 25px;font-size: 12px;}
  html{font-size: 11px;}

  
}
@media (max-width: 468px) {
  #col-banner .swiper-slide{height: 200px !important;}

  html{font-size: 10px;}

  
}
@media (max-height: 700px) {

}


/*手机版菜单*/
.mm-slideout{z-index: auto!important;}
@media screen and (max-width: 992px)  {
  #header a.mm_btn {background: center center no-repeat transparent;display: block;width: 60px;height:60px;position: absolute;top: 0;right:5px; padding: 15px;z-index: 12; }
  #header .mm_btn .menu_bar {width: 30px;height: 30px; position: relative;transform: translateZ(0) rotate(0);transition: transform .4s cubic-bezier(.4,.01,.165,.99);}
  #header .mm_btn .menu_bar_item { position: absolute;left: 0;top: 0; transform: translateZ(0) rotate(0); transition: transform .25s cubic-bezier(.4,.01,.165,.99) 0s; -webkit-transform: translateZ(0) rotate(0); -webkit-transition: -webkit-transform .25s cubic-bezier(.4,.01,.165,.99) 0s; width: 30px;height: 30px;}
  #header .mm_btn .menu_bar_item .rect{ width: 30px; height: 2px; background: #333; position: absolute; left: 0; top: 14px;/*transition: transform .2s ease .2s;-webkit-transition: -webkit-transform .2s ease .2s;*/-webkit-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}
  #header .mm_btn .menu_bar_item .rect.top {transform: translate3d(0,-8px,0); -webkit-transform: translate3d(0,-8px,0);}
  #header .mm_btn .menu_bar_item .rect.mid {transform: translate3d(0,0px,0); -webkit-transform: translate3d(0,0px,0); transition: 0.5s;}
  #header .mm_btn .menu_bar_item .rect.bottom {transform: translate3d(0,8px,0); -webkit-transform: translate3d(0,8px,0);}
  #header .mm_btn.is_active .menu_bar_item.mid{opacity: 0;}
  #header .mm_btn.is_active .menu_bar_item .rect {transition: transform 0s ease 0s; transform: translate3d(0,0,0); -webkit-transition: -webkit-transform 0s ease 0s; -webkit-transform: translate3d(0,0,0);}
  #header .mm_btn.is_active .menu_bar_item.bottom { transform: translateZ(0) rotate(-45deg); -webkit-transform: translateZ(0) rotate(-45deg);}
  #header .mm_btn.is_active .menu_bar_item {transform: translateZ(0) rotate(45deg);transition: transform .25s cubic-bezier(.4,.01,.165,.99) 0s;-webkit-transform: translateZ(0) rotate(45deg);-webkit-transition: -webkit-transform .25s cubic-bezier(.4,.01,.165,.99) 0s;}
  /*菜单弹出方向*/
  .mm-menu_offcanvas{left: auto!important;}
  .mm-menu{right: 0!important;}
  .mm-menu_offcanvas.mm-menu_opened{z-index: 9!important;}
  .mm-slideout{z-index: 10!important;}
  .mm-menu.mm-menu_pageshadow:after{content: ""; display: block; width: 20px; height: 120%; position: absolute; right: 100%; top: -10%; z-index: 99; box-shadow: 0 0 10px rgba(0,0,0,.3);}/*弹出菜单边阴影*/
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform: translate(-80vw,0)!important;-ms-transform: translate(-80vw,0)!important;transform: translate(-80vw,0)!important;-webkit-transform: translate3d(-80vw,0,0)!important;transform: translate3d(-80vw,0,0)!important;/*transform: translate3d(80vw,0,0)!important;*/}
  .mm-wrapper_opened .mm-menu_fx-menu-slide {-webkit-transform: translate(0,0)!important;-ms-transform: translate(0,0)!important;transform: translate(0,0)!important;-webkit-transform: translate3d(0,0,0)!important;transform: translate3d(0,0,0)!important;}
  /**/
  #menu{ color:rgba(0,0,0,.8);}
  #menu .mm-listview .mm-btn_next:after{border-color: rgba(189,189,189,1);}
  #menu .mm-btn:after, #menu .mm-btn:before{border-color: rgba(189,189,189,1);}
  #menu .mm-navbar a, #menu .mm-navbar>*{color:rgba(0,0,0,.8); font-size: 16px;}
  #menu.mm-menu_theme-white .mm-counter{color:rgba(0,0,0,.6);}
  /* #menu .mm-searchfield input{background: rgba(0,0,0,.3);color: rgba(0,0,0,.2);} */
  #menu .mm-listitem, #menu .mm-listitem #menu .mm-btn_next, #menu .mm-listitem #menu .mm-btn_next:before, #menu .mm-listitem:after, #menu .mm-listview{ border-color: rgba(0,0,0,.1); }
  #menu .mm-navbars_bottom, #menu .mm-navbars_top{border-color: rgba(0,0,0,.1);}
  #menu .mm-listitem a{font-size: 16px;}
}
@media (min-width: 550px){
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {-webkit-transform: translate(-440px,0)!important;-ms-transform: translate(-440px,0)!important;transform: translate(-440px,0)!important;-webkit-transform: translate3d(-440px,0,0)!important;transform: translate3d(-440px,0,0)!important;}
}

