@charset "utf-8";

/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
img,
figure,
figcaption {
  border: medium none;
  margin: 0;
  padding: 0;
}

/** 设置默认字体 **/
html,
body {
  -webkit-text-size-adjust: none;
  font-family: "Microsoft YaHei", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 14px;
  color: #666;
  height: 100%;
}

/** 设置表单元素**/
button,
input,
select,
textarea {
  font-family: "Microsoft YaHei", Arial;
  vertical-align: middle;
  outline: none;
}

/** 重置图片元素 **/
img {
  border: 0px;
  max-width: 100%;
}

/** 重置表格元素 **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/** 清除浮动 **/
.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}


/** 重置超链接元素 **/
a {
  text-decoration: none;
  color: #303030;
  transition: 0.2s;
}

a:hover {
  text-decoration: none;
  color: #00B096;
  will-change: transform;
}

a:hover,
a:active {
  outline: none;
}

.blue {
  color: #00B096;
}

.toper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
}

.tips {
  height: 40px;
  background: #011d19;
  text-align: center;
  color: #fff;
  line-height: 40px;
}

.iheader {
  height: 40px;
  background: #01342d;
  text-align: center;
  position: relative;
  line-break: 40px;
  padding: 20px 0;
}

.iheader .logo {
  vertical-align: middle;
  display: inline-block;
}

.iheader .menu {
  position: absolute;
  left: 20px;
  height: 40px;
  width: 30px;
  line-height: 30px;
  color: #1c8b7b;
  cursor: pointer;
  transition: 0.1s
}

.iheader .menu:after {
  content: 'MENU';
  display: block;
  position: relative;
  right: -44px;
  transition: 0.3s;
  top: 5px;
}

.iheader .menu span {
  display: block;
  width: 100%;
  height: 1px;
  background: #00B096;
  position: absolute;
  transition: 0.3s;
}

.iheader .menu span.line1 {
  top: 28%;
}

.iheader .menu span.line2 {
  top: 50%;
}

.iheader .menu span.line3 {
  top: 72%;
}

.iheader .menu:hover {
  color: #16b49d;
}

.iheader .menu:hover span.line1 {
  top: 20%;
}

.iheader .menu:hover span.line3 {
  top: 80%;
}

.iheader .menu img {
  float: left;
  margin-right: 10px;
}

.aside {
  width: 25%;
  max-width: 320px;
  min-width: 240px;
  position: fixed;
  left: 0;
  background: #034f45;
  z-index: 20;
  top: 0px;
  left: 0;
  bottom: 0;
  overflow: auto;
  font-size: 18px;
  color: #fff;
  margin-left: -100%;
  transition: 0.5s;
}

.aside.open {
  margin-left: 0;
}

.aside .close {
  height: 28px;
  padding: 35px;
  text-align: right;
}

.aside .close img {
  transition: 0.3s;
  cursor: pointer;
}

.aside .close span {
  display: inline-block;
}

.aside.open .close img {
  transform: rotate(45deg);
}

.aside li {
  border-bottom: 1px solid #066e5f;
  line-height: 60px;
  /*position: relative;*/
  left: -100%;
}

.aside li p.name {
  padding: 0 20px;
  transition: 0.3s;
  cursor: pointer;
}

.aside li p.name i {
  float: right;
  line-height: 60px;
  font-size: 35px;
  transition: 0.3s;
}

.aside li p.name.act i {
  transform: rotate(180deg);
}

.aside li p.name:hover,
.aside li a:hover {
  background: #fff;
  color: #16B49D;
}

.aside li a {
  display: block;
  color: #fff;
}

.aside .hide {
  background: #01342d;
  display: none;
}

.aside .hide a {
  padding-left: 15%;
}

.aside .infos {
  text-align: center;
  padding-top: 20px;
  position: relative;
  left: -100%;
}

.aside .infos a {
  color: #fff;
}

.aside .infos p {
  padding: 20px 0;
}

.zoombj {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  position: fixed;
  display: none;
  z-index: 5;
}

.zoomFoter {
  width: 250px;
  height: 320px;
  position: fixed;
  display: none;
  z-index: 6;
  background: #fff;
  top: 50%;
  left: 50%;
  margin: -170px 0 0 -135px;
  padding: 10px;
  border-radius: 10px;
}

.zoomFoter p {
  display: none;
}

.zoomFoter .close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  line-height: 24px;
  text-align: center;
  background: #000;
  color: #fff;
  position: absolute;
  display: block;
  right: 5px;
  top: 10px;
  border-radius: 100%;
}

.aside.open li:nth-child(1) {
  animation: mymove 0.2s forwards;
}

.aside.open li:nth-child(2) {
  animation: mymove 0.2s forwards;
  animation-delay: 0.2s;
}

.aside.open li:nth-child(3) {
  animation: mymove 0.2s forwards;
  animation-delay: 0.3s;
}

.aside.open li:nth-child(4) {
  animation: mymove 0.2s forwards;
  animation-delay: 0.4s;
}

.aside.open li:nth-child(5) {
  animation: mymove 0.2s forwards;
  animation-delay: 0.5s;
}
.aside.open li:nth-child(6) {
  animation: mymove 0.2s forwards;
  animation-delay: 0.5s;
}

.aside.open .infos {
  animation: mymove 0.2s forwards;
  animation-delay: 0.6s;
}

@keyframes mymove {
  from {
    left: -100%;
  }

  to {
    left: 0%;
  }
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  width: 6px;
  background-color: #01342d;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: #066e5f;
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

.iMain,
.iMain section {
  height: 100%;
}

.iMain section .box {
  height: 100%;
  width: 100%;
  position: relative;
  transition: 0.1s;
}


.iMain .info {
  width: 30%;
  position: absolute;
  bottom: 35%;
  right: 16%;
  color: #fff;
  text-align: center;
  font-size: 16px;
}

.iMain .info h1 {
  font-size: 66px;
  font-family: 'Times New Roman';
}

.iMain .info h2 {
  font-size: 26px;
  font-weight: normal;
}

.iMain .info .ins {
  padding: 30px 0;
}

.iMain .info a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  width: 70%;
  margin: 0 auto;
  padding: 12px 0;
}

.iMain .info a:hover {
  background: #01342d;
  border: 1px solid #01342d;
}



.iMain .two .info h1 {
  color: #fff;
}

.iMain .two .info h2 {
  color: #fff;
}

.iMain .two .info .ins {
  color: #fff;
}

.iMain .two .info a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  width: 70%;
  margin: 0 auto;
  padding: 12px 0;
}

.iMain .two .info a:hover {
  background: #01342d;
  border: 1px solid #01342d;
  color: #fff;
}


.iMain .one .box {
  background: #040308;
}

.iMain .show800 {
  max-width: 100%;
  position: absolute;
  top: 26%;
  left: 15%;
  width: 40%;
  text-align: center;
}

.iMain .four .show800 {
  max-width: 100%;
  position: absolute;
  top: 22%;
  left: 8%;
  width: 40%;
  text-align: center;
}


.iMain .two .box {
  background: url(../images/ibaner2.jpg) no-repeat;
  background-size: cover;
}

.iMain .three .box {
  background: url(../images/ibaner3.jpg) no-repeat;
  background-size: cover;
}

.iMain .three .detail {
  position: absolute;
  left: 14%;
  top: 40%;
  right: 48%;
  color: #fff;
  font-size: 16px;
  line-height: 34px;
}

.iMain .three .detail p {
  padding: 10px 0;
  text-indent: 2em;
}

.iMain .four .box {
  background: url(../images/ibaner4.jpg) no-repeat;
  background-size: cover;
}

.iMain .act .box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.five {
  position: relative;
  background: #242729;
  text-align: center;
}

.five .box h1 {
  padding: 80px 0 50px 0;
  font-size: 34px;
  font-weight: normal;
  color: #b5b5b5;
}

.five .box .swiper-container {
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.five .swiper-container a {
  display: block;
  color: #fff;
  font-size: 16px;
  border-right: 1px solid #444;
   padding-right: 25px;
}

.five .swiper-container a p {
  padding: 5px 0;
}

.five .swiper-container a .ml {
  color: #8e8e8e;
  padding: 20px 0;
}

.five .swiper-container a span {
  display: block;
  background: #65686a;
  color: #eee;
  width: 60%;
  margin: 0 auto;
  padding: 10px 0;
  transition: 0.3s;
}

.five .swiper-container a:hover span {
  background: #00B096;
  color: #fff;
}

.five .swiper-container .swiper-slide {
  padding-left: 25px;
  box-sizing: border-box;
}

.ifooter {
  background: #fff;
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
}

.ifooter p {
  padding: 10px 0;
}

.ifooter .links a {
  display: inline-block;
  margin: 0 5px;
}

.ifooter .focus {
  line-height: 40px;
}

.ifooter .focus i {
  width: 22px;
  height: 22px;
  background: #333;
  border-radius: 50%;
  padding: 10px;
  color: #eee;
  cursor: pointer;
  margin: 0 5px;
  display: inline-block;
}

.ifooter .focus i img {
  position: relative;
  top: -1px;
}

.ifooter .focus span {
  font-size: 18px;
  color: #333;
  position: relative;
  top: 5px;
}

.proMain {
  padding-top: 120px;
}

.proMain .one {
  background: #040308;
}

.proMain .two {
  background: #393939;
}

.proMain .box {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}

.proMain .info {
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 10% 0 0 5%;
}

.proMain .info h1 {
  font-size: 66px;
  font-family: 'Times New Roman';
}

.proMain .info h2 {
  font-size: 26px;
  font-weight: normal;
}

.proMain .info .ins {
  padding: 30px 0;
}

.proMain .info a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  width: 70%;
  margin: 0 auto;
  padding: 12px 0;
}

.proMain .info a:hover {
  background: #01342d;
  border: 1px solid #01342d;
}


.proMain .left {
  width: 50%;
  float: left;
  text-align: center;
}

.proMain .right {
  width: 45%;
  float: right;
  text-align: center;
  color: #fff;
}

.proMain .two .info h1 {
  color: #4cafa2;
}

.proMain .two .info h2 {
  color: #2c9b8c;
}

.proMain .two .info .ins {
  color: #9ad7d8;
}

.proMain .two .info a {
  display: block;
  color: #4cafa2;
  border: 1px solid #9ad7d8;
  width: 70%;
  margin: 0 auto;
  padding: 12px 0;
}

.proMain .two .info a:hover {
  background: #01342d;
  border: 1px solid #01342d;
}


.prodMain{ background:#040308 ; background-size: cover; padding-top: 120px; color: #fff;}

.prodMain .tit{ text-align: center;  padding: 80px 0 40px 0; font-size: 50px;}

.prodMain .tit p{ font-size: 30px;}

.prodMain .box{ max-width: 1300px; padding: 50px 0; margin: 0 auto; overflow: hidden;line-height: 2;}


.askMain {
  background: url(../images/askBj.jpg) no-repeat;
  background-size: cover;
  padding-top: 120px;
  color: #fff;
}

.askMain .tit {
  text-align: center;
  padding: 80px 0 40px 0;
  font-size: 50px;
}

.askMain .tit h1 {
  font-family: 'Times New Roman';
  font-size: 66px;
}

.askMain .tit p {
  font-size: 28px;
}

.askMain .box {
  max-width: 1300px;
  padding: 50px 0;
  margin: 0 auto;
  overflow: hidden;
}

.askMain .box ul {
  width: 50%;
  float: left;
}

.askMain .box ul li {
  padding-bottom: 30px;
  line-height: 24px;
      padding-left:0 30px;
}

.askMain .box ul li .qustion {
  color: #2bc2c5;
  padding: 8px 0;
}

.askMain .box .imgs {
  width: 30%;
  float: right;
}

.askMain .box .imgs p {
  padding: 20px 0;
}

.contactMain {
  background: url(../images/askBj.jpg) no-repeat;
  background-size: cover;
  padding-top: 120px;
  color: #fff;
}

.contactMain .tit {
  text-align: center;
  padding: 80px 0 40px 0;
  font-size: 50px;
}

.contactMain .tit h1 {
  font-family: 'Times New Roman';
  font-size: 66px;
}

.contactMain .tit p {
  font-size: 28px;
}

.contactMain .box {
  max-width: 1300px;
  padding: 80px 0;
  margin: 0 auto;
  overflow: hidden;
}

.contactMain .box .left {
  width: 50%;
  text-align: center;
  float: left;
}

.contactMain .box .left li {
  width: 50%;
  float: right;
}

.contactMain .box .right {
  width: 44%;
  float: right;
}

.contactMain .box .right h4 {
  font-size: 24px;
  padding: 15px 0;
}

.contactMain .box .right p {
  padding: 8px 0;
}

.storyMain {
  padding-top: 120px;
}

.storyMain .one {
  background: url(../images/askBj.jpg) no-repeat;
  background-size: cover;
  color: #fff;
}

.storyMain .list {
  overflow: hidden;
}

.storyMain .list img {
  float: left;
}

.storyMain .list .tit {
  text-align: center;
  padding: 20px 0;
}

.storyMain .list .tit h1 {
  font-size: 66px;
  font-family: 'Times New Roman';
}

.storyMain .list .tit h2 {
  font-size: 28px;
  font-weight: normal;
}

.storyMain .list .tit .ins {
  padding: 30px 0;
}

.storyMain .list .tit .piont {
  padding: 15px 0;
  font-size: 40px;
  color: #16B49D;
}

.storyMain .list .content p {
  padding: 8px;
  line-height: 36px;
  text-indent: 2em;
  font-size: 16px;
}

.storyMain .list .left {
  width: 38%;
  float: left;
}

.storyMain .list .right {
  width: 50%;
  padding: 4%;
  float: right;
}
.content a{
	    display: block;
    color: #fff;
    border: 1px solid #fff;
    width: 70%;
    margin: 0 auto;
    padding: 5px 0;
	text-align: center;
	}
.content a:hover{
	  background: #01342d;
  border: 1px solid #01342d;
	}
.storyMain .two {
  background: #000;
  color: #fff;
}

.storyMain .two .left {
  width: 50%;
  padding: 5%;
  float: left;
}

.storyMain .two .right {
  width: 38%;
  float: right;
  padding: 0;
}


.jionusMain {
  padding-top: 120px;
}

.jionusMain .one {
  background: #393939;
}

.jionusMain .two {
  background: #040308;
}

.jionusMain .box {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}

.jionusMain .info {
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 3% 0 0 2%;
}

.jionusMain .info h1 {
  font-size: 66px;
  font-family: 'Times New Roman';
}


.jionusMain .info h2 {
  font-size: 28px;
  font-weight: normal;
  padding-bottom: 25px;
}

.jionusMain .info .content {
  text-align: left;
  line-height: 30px;
}

.jionusMain .info .content p {
  padding: 5px 0;
}


.jionusMain .left {
  width: 48%;
  float: left;
  text-align: center;
}

.jionusMain .right {
  width: 50%;
  float: right;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}


.videoMain {
  padding-top: 120px;
}

.videoMain .one {
  background: url(../images/videobj1.jpg) no-repeat center;
  height: 1140px;
  background-size: cover;
}

.videoMain .two {
  background: url(../images/videobj2.jpg) no-repeat center;
  height: 940px;
  background-size: cover;
}

.videoMain .tit {
  text-align: center;
  padding: 50px 0;
  color: #fff;
}

.videoMain .tit h1 {
  font-size: 66px;
  font-family: 'Times New Roman';
}

.videoMain .tit h2 {
  font-size: 28px;
  font-weight: normal;
}

.videoMain .list .content {
  text-align: center;
  color: #fff;
}

.videoMain .list .content p {
  padding: 5px 0;
}

.videoMain .list .content .big {
  font-size: 35px;
  padding: 300px 0 40px 0;
}

.videoMain .list .content .small {
  font-size: 24px;
  padding-bottom: 40px;
}

.videoMain .list .content span {
  border: 1px solid #FFF;
  padding: 10px 30px;
  cursor: pointer;
}

.videoPlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 15;
  padding: 50px 20px;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: 0.5s;
}

.videoPlay.open {
  transform: translateX(0);
}

.videoPlay video {
  width: 100%;
  height: 100%;
  outline: none;
  background: rgba(0, 0, 0, 1);
}

.videoPlay .close {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 50px;
  top: 10px;
  transform: rotate(45deg);
  cursor: pointer;
}

.back_top {
  width: 36px;
  height: 36px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 50;
  transition: 0.5s;
  cursor: pointer;
  opacity: 0.4;
}

.back_top:hover {
  transform: rotate(360deg);
  opacity: 0.8;
}

@media screen and (max-width:800px) {
  .aside .close {
    padding: 20px;
  }

  .aside {
    font-size: 14px;
  }

  .aside li {
    border-bottom: 1px solid #066e5f;
    line-height: 44px;
  }

  .aside li p.name i {
    line-height: 44px;
  }

  .iMain section .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .iMain .show800 {
    width: 100%;
    position: static;
  }

  .iMain .show800 img {
    width: 70%;
    max-width: 400px;
  }

  .iMain .info {
    width: 100%;
    position: static;
    font-size: 14px;
  }

  .iMain .info h1,
  .proMain .info h1 {
    font-size: 22px;
    padding-bottom: 10px;
  }

  .iMain .info h2,
  .proMain .info h2 {
    font-size: 16px;
  }

  .iMain .info .ins,
  .proMain .info .ins {
    padding: 10px 0;
  }

  .iMain .info a,
  .proMain .info a {
    padding: 10px;
  }

  .iMain .two .show800 {
    width: 100%;
  }

  .iMain .two .info a {
    padding: 10px;
    color: #fff;
    border: 1px solid #fff;
  }

  .iMain .three .detail {
    position: static;
    padding: 60px 10px 30px 10px;
    font-size: 14px;
    line-height: 26px;
  }

  .iMain .three .detail p {
    padding: 8px 0;
  }

  .iMain .four .show800 {
    width: 100%;
    position: static;
    padding: 80px 0 40px 0;
  }

  .five .box h1 {
    padding: 40px 0;
    font-size: 24px;
  }

  .five .swiper-container a {
    border-right: none;
  }

  .five .swiper-container .swiper-slide {
    padding: 0;
  }

  .proMain,
  .prodMain,
  .contactMain,
  .askMain,
  .storyMain,
  .jionusMain,
  .videoMain {
    padding-top: 100px;
  }

  .proMain .left,
  .proMain .right,
  .contactMain .box .left,
  .contactMain .box .right {
    width: 100%;
    float: none;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .contactMain .box .left li {
    padding: 2px;
    box-sizing: border-box;
  }

  .askMain .box ul,
  .askMain .box .imgs {
    width: 100%;
    float: none;
    padding: 10px;
    box-sizing: border-box;
  }
  .prodMain .box ul,
  .prodMain .box .imgs {
    width: 100%;
    float: none;
    padding: 10px;
    box-sizing: border-box;
  }

  .askMain .box .imgs p {
    padding: 0;
    padding-bottom: 18px;
  }

  .askMain .tit,.prodMain .tit,
  .contactMain .tit {
    padding: 40px 0;
  }

  .contactMain .box,
  .prodMain .box,
  .askMain .box,
  .jionusMain .box {
    padding: 20px 0;
  }

  .storyMain .list .left,
  .storyMain .list .right,
  .jionusMain .left,
  .jionusMain .right {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    float: none;
    overflow: hidden;
  }

  .storyMain .list .content p {
    font-size: 14px;
  }
}

@media screen and (max-width:640px) {
  .iheader {
    height: 35px;
    padding: 15px 0;
  }

  .iheader .menu {
    left: 10px;
    top: 10px;
  }

  .iheader .menu:after {
    display: none;
  }

  .iheader .logo {
    width: 154px;
  }


}