@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  font-family: "lucida Grande",Verdana,"Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif;
}

a {
  color: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: inherit;
}

a:hover, a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

b, dt {
  font-weight: normal;
}

p {
  margin: 0;
}

h3, h4 {
  margin: 0;
  font-weight: normal;
}

video {
  max-width: 100%;
}

@supports (display: flex) {
  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  .allcontent-wrap {
    flex: 1;
  }
}
.container-fluid {
  max-width: 1230px;
}
.container-fluid img ,.article img{
  max-width: 100%;
}

.row-mat {
  margin-top: -20px;
}

.col-mat {
  margin-top: 20px;
}

.img-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.nowrapline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-p {
  color: #42ccb2;
}

/*顶部*/
.top-head-wrap {
  background: #fff;
}

.top-head {
  display: table;
  width: 100%;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .top-head {
    padding: 15px 0;
  }
}

.top-logo,
.top-btnwrap {
  display: table-cell;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .top-logo {
    float: left;
  }
}

.top-btnwrap {
  padding-left: 20px;
  text-align: right;
}
@media (min-width: 768px) {
  .top-btnwrap {
    display: none;
  }
}

/*小屏  折叠按钮*/
.top-btn-collapse {
  top: 0;
  cursor: pointer;
  color: #42ccb2;
  font-size: 24px;
}
@media (min-width: 480px) {
  .top-btn-collapse {
    font-size: 26px;
  }
}

.top-line {
  float: right;
  text-align: right;
}
.top-line .text {
  height: 30px;
  line-height: 30px;
}
.top-line .number {
  color: #42ccb2;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial;
  height: 30px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .top-line {
    display: none;
  }
}

/*导航*/
.top-nav-wrap {
  color: #fff;
  background: #42ccb2;
}

.top-nav li {
  text-align: center;
}

.top-nav a {
  display: block;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .top-nav-wrap {
    display: none;
    position: absolute;
    z-index: 3;
    right: 15px;
    width: 160px;
    max-width: 100%;
    color: #fff;
    background: #42ccb2;
  }

  .top-nav {
    margin-left: -15px;
    margin-right: -15px;
    padding: 5px 0;
  }

  .top-nav-link {
    line-height: 30px;
  }
  .top-nav-link:hover {
    background: #2fac95;
  }
}
@media (min-width: 768px) {
  .top-nav-wrap {
    display: block !important;
    border-top: 2px solid #109d82;
    background: linear-gradient(#42ccb3, #0f9b80);
  }

  .top-nav-li {
    position: relative;
    float: left;
    width: 12.5%;
  }
  .top-nav-li:first-child:before, .top-nav-li:after {
    content: "";
    position: absolute;
    top: 12px;
    right: -1px;
    width: 2px;
    height: 20px;
    background: linear-gradient(90deg, #7edccb, #299883);
  }
  .top-nav-li:first-child:before {
    right: auto;
    left: -1px;
  }

  .top-nav-link {
    position: relative;
    z-index: 1;
    line-height: 20px;
    padding: 12px 5px;
    margin: 0 1px;
  }
  .top-nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(#04bd9a 50%, #0fdfb7 0);
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .top-nav-link:hover, .top-nav-link.hover, .top-nav-link.act {
    color: #fff;
  }
  .top-nav-link:hover:before, .top-nav-link.hover:before, .top-nav-link.act:before {
    opacity: 1;
  }
}
/*二级导航*/
.top-subnav {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 3;
  font-size: 12px;
  padding-top: 1px;
  padding-bottom: 5px;
  background: #42ccb2;
}
@media (max-width: 767px) {
  .top-subnav {
    display: none !important;
  }
}

.top-subnav-link {
  line-height: 35px;
  color: #fff;
}
.top-subnav-link:hover {
  color: #fff;
  background: #2fac95;
}

/*轮播图*/
.swiper-banner-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-banner-img:before {
  content: '';
  display: block;
  padding-top: 45%;
}
@media (min-width: 640px) {
  .swiper-banner-img:before {
    padding-top: 35%;
  }
}
@media (min-width: 992px) {
  .swiper-banner-img:before {
    padding-top: 31.25%;
  }
}

.wrapper {
  margin: 20px 0;
}
@media (min-width: 768px) {
  .wrapper {
    margin: 30px 0;
  }
}

/*主要标题*/
.main-title-wrap {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .main-title-wrap {
    margin-bottom: 30px;
  }
}

.main-title {
  position: relative;
  text-align: center;
  line-height: 1;
  font-size: 1.6em;
}
@media (min-width: 768px) {
  .main-title {
    font-size: 2em;
  }
}

.main-title-link {
  position: relative;
  display: inline-block;
}
.main-title-link .zh {
  position: relative;
  color: #42ccb2;
  font-size: 0.8em;
}
.main-title-link .zh:before, .main-title-link .zh:after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(50% + 2.5em);
  width: 3em;
  height: 1px;
  background: #ebebeb;
}
.main-title-link .zh:after {
  left: calc(50% + 2.5em);
  right: 0;
}
.main-title-link .en {
  color: #666;
  font-size: 1em;
  font-family: Arial;
  font-weight: bold;
  text-transform: uppercase;
}
.main-title-link .zh, .main-title-link .en {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.main-title-link:hover .zh {
  color: #666;
}
.main-title-link:hover .en {
  color: #42ccb2;
}

/*首页 产品中心*/
.imglink {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 320px;
  overflow: hidden;
}
.imglink .imglink-imgbox {
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin: 0 auto;
  overflow: hidden;
}
.imglink .imglink-imgbox:before {
  content: '';
  display: block;
  padding-top: 80%;
}
.imglink .imglink-img_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.imglink .imglink-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.imglink .imglink-title {
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imglink .imglink-text {
  color: #999;
  font-size: 12px;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
}
.imglink .imglink-btn {
  display: inline-block;
  color: #fff;
  background: #666;
  font-size: 12px;
  padding: 0.5em 1.5em;
  border-radius: 0.3em;
  text-transform: uppercase;
  margin-top: 10px;
}
.imglink .imglink-imgbox, .imglink .imglink-img, .imglink .imglink-title,
.imglink .imglink-img_bg, .imglink .imglink-btn {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.imglink.imglink_pro {
  max-width: 280px;
  padding: 1px;
  background: rgba(238, 238, 238, 0.7);
}
.imglink.imglink_pro .imglink-imgbox {
  border: 1px solid #fff;
}
.imglink.imglink_pro .imglink-title {
  font-size: 13px;
  padding: 0.5em 5px;
}
@media (min-width: 480px) {
  .imglink.imglink_pro .imglink-title {
    font-size: 14px;
  }
}
.imglink.imglink_pro:hover {
  background: #42ccb2;
}
.imglink.imglink_pro:hover .imglink-title {
  color: #fff;
}
.imglink.imglink_circle {
  max-width: 200px;
}
.imglink.imglink_circle .imglink-imgbox {
  max-width: 140px;
  border: 1px solid #c6c6c6;
  background: #f5f5f5;
  border-radius: 50%;
}
.imglink.imglink_circle .imglink-imgbox:before {
  padding-top: 100%;
}
.imglink.imglink_circle .imglink-img_bg {
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
}
.imglink.imglink_circle .imglink-title {
  font-size: 15px;
  margin: 0.5em 0;
}
@media (min-width: 480px) {
  .imglink.imglink_circle .imglink-title {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .imglink.imglink_circle .imglink-title {
    font-size: 18px;
  }
}
.imglink.imglink_circle:hover .imglink-imgbox {
  background: #42ccb2;
}
.imglink:hover .imglink-img_bg {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.imglink:hover .imglink-btn {
  background: #42ccb2;
}

/*查看更多按钮*/
.btn-more-wrap {
  margin-top: 20px;
  text-align: center;
}
.btn-more-wrap .btn-more {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0.8em 2em;
  color: #666;
  border: 2px solid #b0afaf;
  background: #f1f1f1;
}
.btn-more-wrap .btn-more:hover {
  color: #42ccb2;
  border-color: #42ccb2;
}

.content-chwidth .row {
  margin-left: -10px;
  margin-right: -10px;
}
.content-chwidth .col-xs-6 {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 640px) and (max-width: 767px) {
  .content-chwidth .col-xs-6 {
    width: 33.33333333%;
  }
}

@media (max-width: 991px) {
  .content-hidden .col-xs-6:nth-child(n+7) {
    display: none;
  }
}

.i-text {
  text-indent: 2em;
  line-height: 1.75;
  word-break: break-all;
  word-wrap: break-word;
}

/*首页 产品展示*/
.pro-wrapper {
  padding: 20px 0;
  background: url(../img/pro-wrapper-bg.jpg) no-repeat center/cover fixed;
}

/*分栏标题*/
.sub-title {
  margin-bottom: 15px;
}
.sub-title .text {
  position: relative;
  display: inline-block;
  font-size: 22px;
  padding-bottom: 5px;
}
.sub-title .text:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4em;
  height: 1px;
  background: #42ccb2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sub-title .text .zh, .sub-title .text .en {
  display: inline-block;
  vertical-align: bottom;
}
.sub-title .text .zh {
  font-size: 1em;
}
.sub-title .text .en {
  color: #555;
  font-size: 0.7em;
  text-transform: capitalize;
  margin-left: 5px;
}
.sub-title .text:hover {
  color: #42ccb2;
}
.sub-title .text:hover:after {
  width: 100%;
}

/*首页 新闻中心*/
.imgnewslink {
  position: relative;
  display: block;
  background: #fff;
  height: 100px;
}
.imgnewslink + .imgnewslink {
  margin-top: 15px;
}
.imgnewslink .imgnews-imgbox {
  position: relative;
  z-index: 1;
  float: left;
  width: 100px;
  height: 100%;
  padding: 1px;
  border: 1px solid #c3c3c3;
  overflow: hidden;
}
.imgnewslink .imgnews-img_bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.imgnewslink .imgnews-textbox {
  position: relative;
  float: left;
  overflow: hidden;
  width: calc(100% - 100px);
  height: 100%;
  padding: 2px 10px;
}
.imgnewslink .imgnews-title {
  font-size: 13px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imgnewslink .imgnews-time {
  font-size: 12px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imgnewslink .imgnews-text {
  font-size: 12px;
  line-height: 1.75;
  overflow: hidden;
}
@media (max-width: 479px) {
  .imgnewslink .imgnews-text {
    height: 3.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 480px) {
  .imgnewslink {
    height: 120px;
  }
  .imgnewslink .imgnews-imgbox {
    width: 160px;
  }
  .imgnewslink .imgnews-textbox {
    padding: 2px 15px;
    width: calc(100% - 160px);
  }
  .imgnewslink .imgnews-title {
    font-size: 15px;
  }
  .imgnewslink .imgnews-text {
    height: 5.25em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .imgnewslink:hover .imgnews-img_bg {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.imgnewslink:hover {
  color: #42ccb2;
}

@media (min-width: 992px) {
  .sub-item .imgnewslink {
    height: 100px;
  }
  .sub-item .imgnewslink .imgnews-imgbox {
    width: 100px;
  }
  .sub-item .imgnewslink .imgnews-textbox {
    width: calc(100% - 100px);
  }
  .sub-item .imgnewslink .imgnews-title {
    font-size: 13px;
  }
  .sub-item .imgnewslink .imgnews-text {
    height: 3.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/*首页 案例展示*/
.case-title-wrap {
  padding: 40px 0;
  background: url(../img/case-title-bg.jpg) no-repeat center/cover fixed;
}
.case-title-wrap .main-title-link .zh, .case-title-wrap .main-title-link .en {
  color: #fff;
}

/*首页 联系我们*/
.main-contact-title {
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 15px;
}
.main-contact-title .text {
  position: relative;
  float: left;
}
.main-contact-title .text .zh {
  font-size: 18px;
}
.main-contact-title .text .en {
  color: #777;
  text-transform: capitalize;
}
.main-contact-title .text:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 5em;
  height: 2px;
  background: #42ccb2;
}
.main-contact-title .more {
  float: right;
  font-size: 12px;
  font-family: simsun;
  text-transform: uppercase;
  line-height: 20px;
  padding: 0 0.5em;
  border-radius: 0.25em;
  margin-top: 5px;
  color: #fff;
  background: #dbdada;
}
.main-contact-title .more:hover {
  background: #42ccb2;
}

.main-contact-way .m-con-item {
  margin-top: 15px;
}
@media (min-width: 480px) and (max-width: 767px), (min-width: 992px) {
  .main-contact-way .m-con-item {
    float: left;
    width: 50%;
  }
}
.main-contact-way .m-con-item .title {
  color: #42ccb2;
  text-align: center;
  padding: 0.5em 5px;
  border: 1px solid #42ccb2;
}
.main-contact-way .m-con-item .title.bg-p {
  color: #fff;
  background: #42ccb2;
}

.main-contact-list {
  margin-top: 10px;
  font-size: 13px;
}
@media (min-width: 480px) and (max-width: 767px), (min-width: 992px) {
  .main-contact-list {
    padding: 0 10px;
  }
}
.main-contact-list li {
  margin-top: 5px;
}

.contact-form {
  max-width: 550px;
  margin: 0 auto;
}
.contact-form label {
  color: #6d6d6d;
  font-weight: normal;
}
.contact-form .form-control {
  border: 1px dashed #aaa;
  border-radius: 0;
}
.contact-form .form-control:focus {
  border-color: #42ccb2;
}
.contact-form textarea {
  width: 100%;
  resize: vertical;
}
.contact-form input[type=submit] {
  color: #fff;
  background: #42ccb2;
  width: 120px;
  border-radius: 0;
  padding: 4px 12px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.contact-form input[type=submit]:hover {
  background: #34c1a6;
}

/*非主页页面*/
@media (min-width: 768px) {
  .main-page {
    margin: 20px 0;
  }
}

@media (min-width: 768px) {
  .page-aside-wrap {
    width: 265px;
  }

  .page-section-wrap {
    width: calc(100% - 265px);
  }
}
.aside-item {
  margin-bottom: 15px;
}

/*侧栏*/
/*aside标题*/
.aside-title {
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  padding: 0 15px;
  text-transform: uppercase;
  background-color: #42ccb2;
  border-top: 5px solid #007dd6;
  margin-bottom: 8px;
}

/*侧栏列表*/
.aside-list a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aside-list > li {
  margin-top: 4px;
}
.aside-list > li > a {
  position: relative;
  line-height: 35px;
  padding: 0 20px;
  color: #333;
  background: #dcdcdc;
  text-transform: uppercase;
}
.aside-list > li > a[href]:hover, .aside-list > li > a.act {
  color: #fff;
  background: #42ccb2;
}

.aside-contact-content {
  padding: 5px;
  background: #dcdcdc;
}

.aside-contact-list {
  padding: 5px;
  line-height: 1.75;
}

/*section标题*/
.section-title {
  border-bottom: 1px solid #cdcdcd;
}
.section-title .title-text {
  float: left;
  line-height: 40px;
}
.section-title .pos {
  float: right;
  line-height: 40px;
}
.section-title .pos a.act, .section-title .pos a[href]:hover {
  color: #42ccb2;
}

/*section内容部分*/
.section-content {
  margin: 20px 0;
}

.section-chwidth .row {
  margin-left: -10px;
  margin-right: -10px;
}
.section-chwidth .col-xs-6 {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 640px) and (max-width: 767px) {
  .section-chwidth .col-xs-6 {
    width: 33.33333333%;
  }
}

.pagex-titlebox {
  text-align: center;
  margin-bottom: 20px;
}

.pagex-title {
  font-size: 16px;
}

.pagex-time {
  font-size: 12px;
  color: #a4a4a4;
  padding-top: 5px;
  border-top: 1px dashed #9a9a9a;
  max-width: 600px;
  margin: 10px auto 0;
}

.pagex-imgbox {
  text-align: center;
  margin-bottom: 10px;
}
.pagex-imgbox img {
  display: block;
  max-width: 100%;
  margin: 0 auto 10px;
}

.pagex-text {
  text-indent: 2em;
  line-height: 1.75;
  margin-bottom: 15px;
}

/*新闻资讯页*/
.section-content .imgnewslink {
  margin-bottom: 20px;
}

/*联系我们页*/
.page-contact-list {
  color: #353535;
  margin-bottom: 20px;
}
.page-contact-list li {
  margin-bottom: 5px;
}

.contact-map > img {
  display: block;
  margin: 0 auto;
}

/*小屏产品分类下拉按钮*/
.s-drop-wrap {
  margin: 15px 15px 0;
}

.s-drop-btn {
  cursor: pointer;
  color: #fff;
  background: #42ccb2;
  line-height: 40px;
  padding: 0 15px;
}
.s-drop-btn span.glyphicon {
  float: right;
  top: 0;
  line-height: 40px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.s-drop-btn.nodrop {
  cursor: auto;
  text-align: center;
}
.s-drop-btn.nodrop span.glyphicon {
  display: none;
}
.s-drop-btn.act {
  background: #34c1a6;
}
.s-drop-btn.act span.glyphicon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*小屏下拉列表*/
.s-drop-list {
  display: none;
}
.s-drop-list > li {
  margin-top: 3px;
}
.s-drop-list > li > a {
  font-size: 13px;
  line-height: 32px;
}

/* 大屏底部  */
.foot {
  color: #fff;
  background: #42ccb2;
  font-size: 12px;
  text-align: center;
  padding: 15px 0;
}
@media (min-width: 640px) {
  .foot {
    font-size: 14px;
    padding: 20px 0;
  }
}
.foot a:hover {
  text-decoration: underline;
}

.foot-content {
  line-height: 1.75;
}

/*小屏底部*/
.foot-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  background: #42ccb2;
  border-top: 1px solid #fff;
}

.ffixedlink {
  width: 25%;
  float: left;
  padding: 2px 0;
  text-align: center;
}
.ffixedlink:hover {
  background: #299883;
}

.foot-icon {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 20px;
  overflow: hidden;
  background-image: url(../img/foot-icon.png);
  background-repeat: no-repeat;
}

.ffixedlink:nth-child(1) .foot-icon {
  background-position: 0px 0;
}

.ffixedlink:nth-child(2) .foot-icon {
  background-position: -30px 0;
}

.ffixedlink:nth-child(3) .foot-icon {
  background-position: -60px 0;
}

.ffixedlink:nth-child(4) .foot-icon {
  background-position: -90px 0;
}

@media screen and (max-width: 767px) {
  /*小屏底部fixed导航距离*/
  body {
    padding-bottom: 45px;
  }
}
