@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-family: '微软雅黑', '黑体';
  color: #333;
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  position: relative;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
input {
  outline: none;
  border: none;
}
img {
  max-height: 100%;
  max-width: 100%;
  display: block;
  border: none;
}
.clearfix::after {
  content: '';
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.nowrap {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}

.mob_show {
  display: none;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* header */
header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #000;
  background: #041b1d;
}
.logo {
  transition: all 0.3s ease;
}
.index-header {
  padding-top: 0;
}

.h-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
nav ul li {
  float: left;
  margin-left: 30px;
}
nav ul li a {
  position: relative;
  display: block;
  padding: 0 20px;
  line-height: 90px;
  font-size: 18px;
  color: #fff;
  transition: all .3s ease;
}
nav ul li.active a {
  background: rgba(54, 171, 156, 0.05);
  color: #36ab9c;
}
nav ul li.active a::after{
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  bottom: -1px;
  border-bottom: 4px solid #36ab9c;
}
nav ul li:hover a{
  color: #36ab9c;
}
.fixed-header{
  height: 70px;
  background: #333;
}
.fixed-header .logo{
  height: 40px;
}
.fixed-header nav ul li a {
  font-size: 16px;
  line-height: 70px;
}

.register-btn a{
  display: block;
  width: 100px;
  line-height: 40px;
  background: #36ab9c;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
}

/* banner */
.dl-banner {
  position: relative;
  padding-top: 180px;
  padding-bottom: 90px;
  background: #333;
}

.banner-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-video video{
  width: 100%;
  height: 100%;
  object-fit:cover
}

.dl-banner .fl {
  width: 48%;
  margin-top: 60px;
  /* animation: move 2.2s ease-in-out infinite; */
}
.dl-banner .fr {
  width: 42%;
}
@keyframes move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.dl-banner .fl h2 {
  display: block;
  font-size: 50px;
  color: #fff;
  letter-spacing: 4px;
}

.dl-banner .fl h3 {
  margin-top: 20px;
  font-size: 34px;
  color: #fff;
  opacity: .9;
  letter-spacing: 2px;
}
.dl-banner .fl ul li {
  opacity: .7;
  display: inline-block;
  margin-right: 10px;
  margin-top: 50px;
  padding: 5px 18px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
}
.dl-banner .fl a {
  display: inline-block;
  width: 160px;
  margin-top: 100px;
  height: 50px;
  margin-right: 20px;
  background: #36ab9c;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  line-height: 50px;
  opacity: .9;
  transition: all .2s ease-in;
}
.dl-banner .fl a:last-child{
  background: #f67401;
}
.dl-banner .fl a:hover{
  opacity: 1;
}
/* 产品类型 */
.dl-type {
  position: relative;
  margin-top: 60px;
}
.dl-type-bg {
  position: absolute;
  left: 0;
  top: -10vh;
  width: 40%;
  max-width: 700px;
  opacity: .7;
}
.dl-type .fl {
  width: 40%;
  animation: move 2.2s ease-in-out infinite;
}
.dl-type .fr {
  width: 54%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.dl-type .fr li {
  position: relative;
  width: 48%;
  padding: 25px;
  padding-left: 80px;
  margin-bottom: 30px;
  border: 1px solid #ececec;
  transition: all .2s ease;
  cursor: default;
}
.dl-type .fr li:hover{
  border-color: #fff;
  box-shadow: 0 0 10px rgba(54, 171, 156, 0.2);
}
.dl-type .fr li img{
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
}
.dl-type .fr li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.dl-type .fr li P{
  color: #888;
  font-size: 14px;
  line-height: 26px;
}
.dl-type .fr li:hover h4{
  color: #36ab9c;
}


/* 我们的优势 */
.positive{
  z-index: 22;
  position: relative;
  padding-top: 70px;
  padding-bottom: 90px;
  margin-top: 50px;
  background: url(../images/wp5.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.positive::before{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
}
.tit {
  position: relative;
  margin-bottom: 60px;
  font-size: 34px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
}
.tit em{
  font-style: normal;
  color: #36ab9c;
}
.tit b{
  display: block;
  color: #36ab9c;
}

.tit span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #888;
}
.positive .tit{
  color: #Fff;
}
.positive .tit span{
  color: #ddd;
}
.positive ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.positive ul li {
  position: relative;
  width: 19%;
  padding: 30px 20px;
  padding-top: 50px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.positive ul li strong {
  display: block;
  font-size: 18px;
  font-weight: normal;
  color: #000;
}
.positive ul li p {
  height: 80px;
  margin-top: 15px;
  font-size: 14px;
  color: #777;
  line-height: 26px;
  overflow: hidden;
}
.positive ul li i {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 44px;
  color: #666;
}
.positive ul li a {
  display: block;
  visibility: hidden;
  width: 140px;
  line-height: 36px;
  margin: 0 auto;
  text-align: center;
  background: #36ab9c;
  color: #fff;
  border-radius: 2px;
}
.positive ul li::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  border-top: 4px solid #36ab9c;
}
.positive ul li:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.positive ul li:hover::before {
  width: 100%;
}
.positive ul li:hover i {
  color: #36ab9c;
}
.positive ul li:hover a {
  visibility: visible;
}

/* 使用场景 */
.scence {
  position: relative;
  margin-top: 100px;
  margin-bottom: 90px;
}
.scence .tit {
  text-align: left;
}
.scence .tit::after{
  left: 0;
  margin-left: 0;
}
.scence-bg {
  position: absolute;
  right: 0;
  top: -180px;
  width: 45%;
  max-width: 820px;
  opacity: .4;
}
.scence-box .fl {
  width: 58%;
}
.scence-box .fl li {
  float: left;
  width: 45%;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 56px;
}
.scence-box .fl li i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-size: 56px;
  color: #36ab9c;
}
.scence-box .fr {
  width: 34%;
  animation: move 2.2s ease-in-out infinite;
}
/* data */
.dl-data{
  position: relative;
  padding-top: 120px;
  padding-bottom: 160px;
  margin-bottom: 70px;
  background: url(../images/data_bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.dl-data::before{
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
}
.dl-data-bot{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.dl-data-bot img{
  width: 100%;
}
.dl-data ul{
  z-index: 11;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.dl-data ul li div{
  font-size: 46px;
  color: #fff;
}
.dl-data ul li img{
  display: inline-block;
  margin-bottom: 20px;
}
.dl-data ul li strong{
  color: #fff;
}
.dl-data ul li span{
  margin-top: 15px;
  display: block;
  font-size: 18px;
  color: #ddd;
}
/* news */
.news-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.news-box {
  width: 31.5%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(54, 171, 156, 0.2);
}
.news-box .ntop {
  position: relative;
}
.news-box .ntop p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 20px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  background: rgba(54, 171, 156, 0.3);
}
.news-box .ntop p a {
  float: right;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0px;
}
.news-box ul {
  padding: 20px;
}
.news-box ul li {
  font-size: 14px;
}
.news-box ul li a {
  display: block;
  position: relative;
  padding-right: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 40px;
  transition: all 0.3s ease;
}
.news-box ul li span {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: #777;
}
.news-box ul li a:hover,
.news-box ul li a:hover span {
  color: #36ab9c;
}
/*  */
.register {
  margin-top: 80px;
  height: 250px;
  background: url(../images/bg_5.png) center no-repeat;
  background-size: 100% 100%;
}
.register .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.register img {
  width: 250px;
  margin-right: 50px;
}
.register p {
  flex: 1;
  font-size: 36px;
  color: #36ab9c;
  letter-spacing: 2px;
}
.register a {
  display: block;
  padding: 12px 25px;
  margin-left: 20px;
  background: #36ab9c;
  font-size: 16px;
  color: #fff;
  border-radius: 2px;
}
.register a.sy {
  background: #fff;
  color: #36ab9c;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* footer */
footer {
  margin-top: 80px;
  padding-top: 40px;
  background: #333;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #999;
}
.foot-top div i {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  color: #fff;
  font-style: normal;
}
.foot-top div span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 1px;
}
.foot-top div a {
  display: inline-block;
  margin-top: 20px;
  padding: 7px 15px;
  background: #fff;
  font-size: 14px;
  color: #36ab9c;
  border-radius: 2px;
}
.foot-top p {
  color: #fff;
}
.foot-top p img {
  width: 120px;
  margin-top: 20px;
}
.frink {
  margin-top: 30px;
  margin-bottom: 20px;
}
.frink span,
.frink a {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  color: #f5f5f4;
}
.foot-bot {
  padding-bottom: 20px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .mob_show {
    display: block;
  }
  .mob_none {
    display: none !important;
  }
  .container {
    padding: 0 20px;
  }

  .index-header{
    
    height: 70px;
  }
  .h-container{
    height: 70px;
  }
  .fixed-header .logo {
    height: 38px;
  }
  .logo {
    height: 45px;
  }
  .register-btn a{
    width: 80px;
    line-height: 36px;
  }
  
  header .icon-ego-menu {
    padding-left: 18%;
    margin-top: 4px;
    font-size: 34px;
    color: #36ab9c;
  }
  nav {
    z-index: 9999;
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100%;
    padding-top: 80px;
    padding-left: 30px;
    background: rgba(0, 0, 0, 0.9);
  }
  nav li {
    float: none;
  }
  nav .icon-guanbi {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 36px;
    color: #fff;
  }
  nav ul li a {
    color: #fff;
  }

  .login {
    margin-top: 5px;
    margin-left: 10px;
  }
  .login a {
    padding: 6px 12px;
    font-size: 12px;
  }

  /*  */
  .dl-banner {
    height: 420px;
    padding-top: 60px;
    text-align: center;
  }
  .dl-type .fr,
  .dl-banner .fl {
    width: 100%;
  }
  .dl-banner .fl h2{
    font-size: 32px;
  }
  .dl-banner .fl h3{
    margin-bottom: 20px;
    font-size: 24px;
  }
  .dl-banner .fl ul li {
    margin-top: 10px;
    margin-right: 0;
    padding: 3px 10px;
    font-size: 12px;
  }
  .dl-banner .fl a {
    width: 110px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    margin-top: 40px;
    font-size: 16px;
  }
  .tit{
    margin-bottom: 40px;
    font-size: 22px;
  }
  .tit span{
    font-size: 12px;
  }
  /*  */

  .dl-type .fr li{
    width: 100%;
    margin-bottom: 20px;
  }
  .dl-type .fr li h4{
    margin-bottom: 8px;
  }

  .positive{
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .positive ul li {
    width: 100%;
    padding: 15px;
    padding-left: 50px;
    background: none;
  }
  .positive ul li a{
    display: none;
  }
  .positive ul li strong {
    font-size: 18px;
    color: #Fff;
  }
  .positive ul li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #fff;
  }
  .positive ul li p{
    height: auto;
    margin-top: 5px;
    color: #aaa;
  }
  /*  */
  .scence {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .scence-box .fl {
    width: 100%;
  }
  .scence .tit {
    margin-bottom: 30px;
  }
  .scence-box .fl li {
    width: 50%;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .scence-box .fl li i {
    margin-right: 12px;
    font-size: 36px;
  }
  /*  */
  .dl-data{
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .dl-data ul{
    flex-wrap: wrap;
  }
  .dl-data ul li{
    width: 50%;
    margin-bottom: 40px;
  }
  .dl-data ul li div{
    font-size: 28px;
  }
  .dl-data ul li img{
    width: 80px;
  }
  .dl-data ul li span{
    margin-top: 8px;
    font-size: 16px;
  }
  /*  */
  .news-content{
    padding-bottom: 10px;
  }
  .news-wrap .tit {
    font-size: 28px;
  }
  .news-box {
    width: 100%;
  }
  .news-box ul li a {
    font-size: 14px;
  }
   .swiper{
  padding-bottom: 40px!important;
 }
  .swiper-pagination span{
    display: inline-block;
    width: 20px;
    height: 6px;
    border-radius: 2px;
  }
.swiper .swiper-pagination-bullet-active{
  width: 30px;
  background: #36ab9c;
}
  /*  */
  .foot-top {
    display: block;
  }
}

/* 内页 */
.curmbs {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 14px;
}
.curmbs a {
  color: #666;
}
.inner-banner {
  position: relative;
  height: 320px;
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/banner2.jpg) bottom no-repeat;
  background-size: cover;
}

.inner-banner h2 {
  z-index: 11;
  position: relative;
  font-size: 46px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 4px;
}
/* 新闻中心 */
.new-banner {
  height: 300px;
  margin-top: 90px;
  background: url(../images/inner_banner.jpg) center no-repeat;
  background-size: cover;
}
.list-page {
  padding-top: 40px;
  padding-bottom: 50px;
}
.zjd_tn3 {
  padding-bottom: 30px;
}
.zjd_tn3 a {
  display: inline-block;
  padding: 8px 16px;
  color: #666;
}
.zjd_tn3 a:hover,
.zjd_tn3 a.active {
  background: #36ab9c;
  color: #fff;
}
.newsbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.newsbox li {
  width: 48%;
  margin-bottom: 40px;
  overflow: hidden;
}
.newsbox li img {
  float: left;
  width: 200px;
  height: 150px;
}
.newsbox li time {
  position: relative;
  display: block;
  height: 45px;
  margin-bottom: 6px;
  font-family: Arial;
  font-size: 16px;
  color: #999;
  line-height: 45px;
}

.newsbox li div {
  padding-left: 230px;
}
.newsbox li span {
  display: inline-block;
  margin-left: 15px;
  padding-left: 15px;
  font-size: 16px;
  color: #ccc;
  border-left: 1px solid #ddd;
}
.newsbox li strong {
  display: block;
  padding: 8px 0;
  padding-bottom: 10px;
  font-size: 16px;
  color: #464646;
  border-bottom: 1px solid #efefef;
}
.newsbox li:hover strong {
  color: #36ab9c;
  text-decoration: underline;
}
.newsbox li p {
  height: 46px;
  margin-top: 10px;
  font-size: 13px;
  color: #777;
  line-height: 22px;
  overflow: hidden;
}

.zjd_page_3 {
  margin-top: 30px;
  text-align: center;
}
.zjd_page_3 li {
  display: inline-block;
  margin: 0 3px;
}
.zjd_page_3 li a {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
}
.zjd_page_3 li.active a {
  color: #fff;
  background: #36ab9c;
}

@media screen and (max-width: 768px) {
  .new-banner {
    margin-top: 0;
  }
  .zjd_list_box3 {
    padding: 20px 12px;
  }
  .newsbox {
    width: 100%;
    margin-top: 0;
  }
  .newsbox li {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .newsbox li img {
    width: 120px;
    height: 105px;
  }
  .newsbox li div {
    padding-left: 135px;
  }
  .newsbox li time,
  .newsbox li span {
    margin-bottom: 0;
    font-size: 14px;
    height: 18px;
    line-height: 18px;
  }
  .newsbox li strong {
    padding: 5px 0;
  }
  .newsbox li p {
    margin-top: 6px;
  }
  .zjd_page_3 {
    margin-top: 20px;
  }
  .zjd_page_3 li {
    margin: 0;
  }
  .zjd_page_3 li a {
    padding: 4px 8px;
    font-size: 12px;
  }
}
/*  */
.art-content .art-tit {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.8;
  font-weight: normal;
  text-align: center;
}
.viof {
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.viof span {
  display: inline-block;
  margin: 0 15px;
  color: #666;
}
.art-body p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}
.art-body img {
  margin: 0 auto;
}
.art-content .fl {
  width: calc(100% - 280px);
}
.art-content .fl ul {
  padding: 20px;
  margin-top: 40px;
  background: #f5f5f5;
}
.art-content .fl ul li {
  line-height: 36px;
  color: #666;
}
.ab-content {
  padding-top: 30px;
  overflow: hidden;
}
.ab-content .fr {
  width: 38%;
  margin-left: 50px;
  margin-bottom: 20px;
  animation: move 2.5s ease-in-out infinite;
}
.ab-content p {
  margin-bottom: 20px;
  line-height: 2;
  text-align: justify;
}
.ab-content strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}
.art-content .fr {
  width: 220px;
}
.art-content .fr span {
  display: block;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
}
.art-content .fr li {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}
.art-content .fr li time {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #777;
}
.art-content .fr li a {
  font-size: 14px;
}
/* 地区分站 */
.city-web dl {
  overflow: hidden;
}
.city-web dt {
  display: block;
  margin-top: 20px;
  line-height: 36px;
}
.city-web dt a {
  font-size: 16px;
  font-weight: bold;
}
.city-web dd {
  display: block;
  line-height: 36px;
  border-bottom: 1px dashed #eee;
}
.city-web dd a {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  color: #666;
}
.city-web dl a:hover {
  color: #4098ef;
}
@media screen and (max-width: 768px) {
  .inner-banner {
    height: 220px;
    padding-top: 30px;
    margin-top: 20px;
  }
  .inner-banner h2 {
    font-size: 30px;
  }
  .inforList li {
    width: 100%;
  }
  .infor-nav span {
    width: 100px;
    font-size: 14px;
  }

  .inforList li time {
    padding: 5px;
  }
  .inforList li div {
    padding: 10px;
  }
  .inforList li div a {
    font-size: 14px;
    padding-bottom: 6px;
  }
  .inforList li p {
    height: 42px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 20px;
  }
  /*  */
  .art-content .art-tit {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .viof span {
    font-size: 12px;
  }
  .art-body p {
    font-size: 14px;
  }
  .art-content ul {
    padding: 10px;
  }
  .art-content ul li {
    font-size: 14px;
  }
  .ab-content .fr {
    width: 60%;
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .art-content .fl {
    width: 100%;
  }
}
