@charset "utf-8";
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, div, dl, dt, dd, ul, ol, li,
form, fieldset, legend, button, input, textarea, option, select, pre, tr, td, img {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, em {
  font-size: 12px;
  font-weight: normal
}

ul, ol {
  list-style: none;
}

img {
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, input {
  vertical-align: middle;
  outline: none
}

body {
  font-family: "\5FAE\8F6F\96C5\9ED1";
  font-size: 14px;
  color: #666;
}

a {
  transition: all 0.3s;
  text-decoration: none;
  outline: none;
  color: #666;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

.wrap {
  width: 1180px;
  margin: 0 auto;
}

.hide {
  visibility: hidden;
}

.clear {
  clear: both;
}


@-webkit-keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInRightShort {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort
}

@-webkit-keyframes fadeInRightShort {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRightShort {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.bounceInDownShort {
  -webkit-animation-name: bounceInDownShort;
  animation-name: bounceInDownShort
}

@-webkit-keyframes bounceInDownShort {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInDownShort {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.fadeInLeftShort {
  -webkit-animation-name: fadeInLeftShort;
  animation-name: fadeInLeftShort
}

@keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}


body {
  min-width: 1180px;
}

#header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  height: 64px;
  text-align: center;
  background: rgba(255, 255, 255, .95);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  box-shadow: 0 0 10px transparent;
  display: flex;
  justify-content: space-between;
}

#header.bot {
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

#header .wrap {
  display: flex;
  justify-content: space-between;
}

#header .logo {
  margin-left: 30px;
  font-size: 32px;
  line-height: 64px;
}

#header .menu > li {
  float: left;
  height: 64px;
  line-height: 64px;
  position: relative;
  font-size: 16px;
}

#header .menu > li > a {
  padding: 0 30px;
}

#header .menu > li.on > a {
  color: #00CAB7;
}

#header .menu > li.on:before {
  opacity: 1;
  width: 100%
}

#header .menu > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #00CAB7;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#header .menu > li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
  transition: all .3s cubic-bezier(.645, .045, .355, 1)
}

#header .sub_menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  position: absolute;
  left: 0;
  z-index: 99;
  text-align: left;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  padding: 18px 70px 18px 30px
}

#header .sub_menu.lst {
  right: 0;
  left: auto;
  padding: 18px 45px;
}

#header .sub_menu > li {
  line-height: normal;
  word-break: keep-all;
  white-space: nowrap
}

#header .sub_menu > li > a {
  display: block;
  color: #333;
  padding: 10px 0
}

#header .sub_menu > li:hover > a {
  color: #00CAB7
}

#topBanner {
  margin-top: 64px;
  width: auto;
}

#topBanner .bannerOne {
  height: 735px;
  background: url(../images/idx_banner.png) no-repeat 50% 50%;
  background-size: cover;
  text-indent: -9999px;
}

#topBanner .bannerAbout {
  height: 600px;
  background: url(../images/about_banner.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#topBanner .bannerProduct {
  height: 600px;
  background: url(../images/product_banner.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#topBanner .bannerContact {
  height: 350px;
  background: url(../images/contact_banner.png) no-repeat 50% 50%;
  background-size: cover;
}

#topBanner .bannerJobs {
  height: 350px;
  background: url(../images/jobs_banner.png) no-repeat 50% 50%;
  background-size: cover;
}

#topBanner .bannerNews {
  height: 350px;
  background: url(../images/news_banner.png) no-repeat 50% 50%;
  background-size: cover;
}

#topBanner .bannerKnow {
  height: 350px;
  background: url(../images/know_banner.png) no-repeat 50% 50%;
  background-size: cover;
}

#topBanner .bannerCoop {
  height: 350px;
  background: url(../images/coop_banner.png) no-repeat 50% 50%;
  background-size: cover;
}

#pageBody {
  background: #fff;
  position: relative;
  z-index: 1;
}

.titleBox {
  padding-top: 60px;
  text-align: center;
}

.titleBox .line {
  border-bottom: 2px solid #ededed;
  width: 100%;
  margin-bottom: -20px;
}

.titleBox h1 {
  background: #fff;
  padding: 0 30px;
  width: auto;
  margin: 0 auto;
  display: inline-block;
  font-weight: bold;
  font-size: 30px;
}

.titleBox h2 {
  padding: 15px 0 40px;
  font-size: 14px;
  text-transform: uppercase;
}

.homeAbout {
  height: 315px;
  background: url(../images/blank.png) no-repeat top right;
  margin-bottom: 30px;
}

.homeAbout .cont {
  padding: 50px 0 30px;
  width: 590px;
  line-height: 25px;
  color: #6a6a6a;
}

.bigBtn {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background: #00CAB7;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
}

#footer {
  height: 400px;
  background: #0C2034;
}

#footer .cont {
  padding: 60px;
  height: 180px;
  border-bottom: 2px solid #2E3E4F;
}

#footer .copy {
  padding: 20px 0 30px;
  line-height: 30px;
  text-align: center;
  color: #ccc;
}

#footer .copy a {
  color: #ccc;
  margin-left: 20px;
}

#footer .cont {
  table-layout: fixed;
  display: table;
  width: 100%;
}

#footer .cell {
  display: table-cell;
}

#footer .cell h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}

#footer .cell li a, #footer .cell .tel {
  text-decoration: none;
  color: #7d869b;
  font-size: 16px;
  line-height: 32px;
}

#footer .cell .tel {
  padding-bottom: 10px;
}

#footer .cell li a:hover {
  color: #fff;
}

.aboutWrap {
  padding-top: 120px;
  color: #fff;
}

.aboutWrap h1 {
  font-size: 50px;
  font-weight: 400;
  line-height: 70px;
  text-align: center;
  margin-bottom: 40px;
}

.aboutWrap p {
  font-size: 20px;
  line-height: 40px;
  text-indent: 42px;
}

.aboutAdv {
  padding-left: 100px;
}

.aboutAdv li {
  width: 520px;
  height: 120px;
  margin-bottom: 80px;
  float: left;
}

.aboutAdv img {
  width: 120px;
  height: 120px;
  float: left;
  margin-right: 40px;
}

.aboutAdv div {
  width: 263px;
  float: left;
}

.aboutAdv h2 {
  padding: 10px 0;
  font-size: 20px;
}

.aboutAdv p {
  line-height: 28px;
}

.aboutAdv p, .newsInfo p {
  text-indent: 0 !important;
}

#topBanner .txtCn {
  padding-top: 130px;
  font-size: 50px;
  color: #fff;
  line-height: 70px;
  text-align: center;
  font-weight: 400;
}

#topBanner .txtEn {
  padding-top: 10px;
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-weight: 400;
}

.page {
  text-align: center;
  margin-bottom: 40px;
}

.page li {
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  display: inline-block !important;
}

.page a, .page span {
  display: inline-block;
  width: 25px !important;
  height: 25px !important;
  border: 1px solid #e8e8e8 !important;
  background: #fff !important;
  margin: 0 2px !important;
  text-align: center !important;
  line-height: 25px !important;
  color: #666 !important;
  font-size: 13px !important;
}

.page a:hover, .page li.active a {
  color: #fff !important;
  border: 1px solid #00CAB7 !important;
  background: #00CAB7 !important
}

.none {
  display: none;
}

#header .menu > li.reg {
  background: #00CAB7;
}

#header .menu > li.reg > a, #header .menu > li.reg:hover > a {
  color: #fff;
}

.mFooter {
  border-top: 1px solid #efefef;
  padding: 30px 0;
  text-align: center;
}

.errPage {
  min-height: 250px;
  padding: 100px;
}

.errPage .errBox {
  background: url(../images/icon/err_404.jpg) no-repeat;
  height: 250px;
}

.errPage .e403 {
  background-image: url(../images/icon/err_403.jpg);
}

.errPage .e500 {
  background-image: url(../images/icon/err_500.jpg);
}

.errPage h2 {
  font-size: 24px;
  color: #373d41;
  letter-spacing: 1px;
  line-height: 36px;
  margin: 30px 0 15px;
}

.errPage .des {
  width: 410px;
  height: 48px;
  font-size: 14px;
  color: #373d41;
  letter-spacing: .47px;
  line-height: 24px;
  margin-bottom: 20px;
}

.errPage ul {
  width: 100%;
  height: 24px;
  list-style: none;
}

.errPage ul li {
  float: left;
  margin-right: 50px;
  line-height: 24px;
}

.errDebug {
  padding: 10px;
  color: #666;
  background: #FCFCFC;
  border: 1px solid #E0E0E0;
  margin: 80px 30px 20px;
}

.errDebug h2 {
  border-bottom: 1px solid #DDD;
  padding: 8px 0;
  font-size: 22px;
  margin-bottom: 20px;
}

.errDebug .title {
  margin: 10px 0;
  color: #F60;
  font-weight: bold;
  font-size: 18px;
}

.errDebug .box {
  box-sizing: border-box;
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  padding: 15px;
  word-wrap: break-word;
  border-radius: 4px;
}

.errDebug .info {
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
}

.errDebug .message {
  background-color: #fff1f0;
  border: 1px solid #ffa39e;
}

.errDebug .trace {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
}

.errDebug .red {
  color: red;
  font-weight: bold;
}