@charset "UTF-8";
/*全局初始化样式*/

@font-face {font-family: "SourceHanSansCNBold"; src: url("../fonts/SourceHanSansCNRegular.otf"); font-weight: normal;}
@font-face {font-family: "SourceHanSansCNBold"; src: url("../fonts/SourceHanSansCNMedium.otf"); font-weight: 500;}
@font-face {font-family: "SourceHanSansCNBold"; src: url("../fonts/SourceHanSansCNBold.otf"); font-weight: 700;}

body {
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
  font-family: 'SourceHanSansCNBold';
  color: #000;
  min-width: 320px;
  width: 100%;
  zoom: 1;
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*控制文本可选性*/
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
}
* {
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.fleximportant {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}
.inlineflex {
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
}
.d_flex > * {
  display: block;
}
/*伸缩流方向*/
.f_direction_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_direction_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/*主轴对齐*/
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/*侧轴对齐*/
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/*伸缩性*/
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/*显示顺序*/
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/*单行溢出*/
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.text3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.text4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.donghua {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.fangda {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.xuanzhuan {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -moz-transform: rotate(45deg);
  /* Firefox */
  -webkit-transform: rotate(45deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(45deg);
}
/* 鼠标跟随 --> */
#c-followDot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 999;
  pointer-events: none;
}
#c-followDot .c-default {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 40px;
  height: 40px;
  /* border: 1px solid #b38f5b; */
  background: rgba(179, 143, 91, 0.8);
  border-radius: 50%;
  opacity: 0.2;
  box-sizing: border-box;
  z-index: 99;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#c-followDot .c-hover {
  position: absolute;
  top: -38px;
  left: -38px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0.12;
  z-index: 98;
  box-sizing: border-box;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#c-followDot.c-active .c-default {
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}
#c-followDot.c-active .c-hover {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
img {
  max-width: 100%;
}
.wrap {
  max-width: 1600px;
  margin: 0 auto;
}
.wrap2 {
  max-width: 1400px;
  margin: 0 auto;
}
.pc {
  display: block;
}
.wap {
  display: none;
}
h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
  
}
h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
}
.info {
  font-size: 16px;
  color: #a1a1a1;
  line-height: 24px;
  text-align: center;
  margin: 0 auto;
}
.scroll_x {
  overflow-x: scroll;
}
.scroll_x::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.scroll_x::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.ab {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header.scroll {
  overflow: hidden;
}
header:hover,header.scroll {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}
header:hover .wrap .right .nav li a,
header.scroll .wrap .right .nav li a {
  color: #666;
}
header:hover .wrap .right .search .search_a,
header.scroll .wrap .right .search .search_a {
  background: url(../images/s2.png) no-repeat center;
}
header:hover .wrap .right .search .searchbox.on input,
header.scroll .wrap .right .search .searchbox.on input {
  color: #666;
  border-color: #666;
}
header:hover .wrap .right .search .searchbox.on .btn_a,
header.scroll .wrap .right .search .searchbox.on .btn_a {
  background: url(../images/s2.png) no-repeat center;
}
header:hover .wrap .right .search .searchbox.on .close_a,
header.scroll .wrap .right .search .searchbox.on .close_a {
  background: url(../images/c2.png) no-repeat center;
}
header:hover .wrap .right .lan > a,
header.scroll .wrap .right .lan > a {
  background: rgba(0, 0, 0, 0.1);
}
header:hover .wrap .right .lan span,
header.scroll .wrap .right .lan span {
  color: #666;
}
header:hover .wrap .right .lan i,
header.scroll .wrap .right .lan i {
  background: url(../images/b2.png) no-repeat center;
}
header:hover .wrap .right .lan .sub a,
header.scroll .wrap .right .lan .sub a {
  color: #666;
}
header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 120px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .wrap .logo {
  max-height: 100px;
}
header .wrap .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .wrap .right .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .wrap .right .nav li {
  margin-left: 60px;
}
header .wrap .right .nav li:hover .sub {
  opacity: 1;
  z-index: 1;
  height: 80px;
}
header .wrap .right .nav li:hover .sub.sub2 {
  height: auto;
}
header .wrap .right .nav li:hover .sub.sub2 .wrap {
  padding: 60px 0;
}
header .wrap .right .nav li .sub {
  position: fixed;
  width: 100%;
  height: 0px;
  top: 120px;
  left: 0;
  background: #f3f6f8;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .wrap .right .nav li .sub.sub2 {
  background: transparent;
}
header .wrap .right .nav li .sub.sub2 .wrap {
  background: url(../images/c3.png) no-repeat right bottom #f3f6f8;
  background-size: auto 80%;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle {
  width: 30.625%;
  position: relative;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle:before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  background: #e0e6e9;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 60px;
  margin-left: 30%;
  padding-left: 30px;
  color: #00263b;
  font-size: 26px;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a:before {
  display: none;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a.on,
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a:hover {
  color: #14aaaf;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a.on .imgbox img,
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a:hover .imgbox img {
  display: none;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a.on .imgbox img.hover,
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a:hover .imgbox img.hover {
  display: block;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a .imgbox {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 20px;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a .imgbox img {
  display: block;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a .imgbox img.hover {
  display: none;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox {
  width: 69%;
  height: 100%;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item {
  display: none;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item.on {
  display: block;
  width: 100%;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul {
  width: auto;
  height: 180px;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 340px;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li {
  width: 170px;
  margin-left: 60px;
  height: 36px;
  line-height: 36px;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a {
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  color: #666;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a:hover {
  color: #14aaaf;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a:hover:after {
  background: #14aaaf;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a:before {
  display: none;
}
header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a:after {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  margin-top: -3px;
}
header .wrap .right .nav li .sub .wrap {
  height: 100%;
  overflow: hidden;
}
header .wrap .right .nav li .sub .wrap i {
  display: block;
  font-weight: 700;
  font-size: 88px;
  color: #e3e7ea;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 10px;
}
header .wrap .right .nav li .sub .wrap .list a {
  margin-right: 50px;
}
header .wrap .right .nav li .sub .wrap .list a:before {
  display: none;
}
header .wrap .right .nav li .sub .wrap .list a:last-child {
  margin-right: 140px;
}
header .wrap .right .nav li .sub .wrap .list a:hover {
  color: #14aaaf;
}
header .wrap .right .nav li > a {
  font-size: 16px;
  color: #fff;
  position: relative;
  height: 120px;
  line-height: 120px;
  white-space: nowrap;
}
header .wrap .right .nav li > a:before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: -50px;
  background: #14aaaf;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

header.scroll .wrap .right .nav li > a:before{
  bottom: -30px;
}

header .wrap .right .nav li > a:hover,
header .wrap .right .nav li > a.on {
  color: #14aaaf;
}
header .wrap .right .nav li > a:hover:before,
header .wrap .right .nav li > a.on:before {
  width: 100%;
  left: 0;
}
header .wrap .right .nav li:first-child {
  margin-left: 0;
}
header .wrap .right .search {
  margin-left: 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .wrap .right .search .search_a {
  display: block;
  width: 19px;
  height: 19px;
  background: url(../images/s1.png) no-repeat center;
}
header .wrap .right .search .searchbox {
  width: 0;
  height: 50px;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .wrap .right .search .searchbox .btn_a {
  width: 50px;
  height: 50px;
  background: url(../images/s1.png) no-repeat center;
}
header .wrap .right .search .searchbox input {
  width: 350px;
  height: 50px;
  color: #fff;
  font-size: 16px;
}
header .wrap .right .search .searchbox .close_a {
  width: 50px;
  height: 50px;
  display: block;
  background: url(../images/c1.png) no-repeat center;
}
header .wrap .right .search .searchbox.on {
  width: 500px;
  height: 50px;
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  border-radius: 25px;
}
header .wrap .right .search .searchbox.on input {
  border-bottom: 1px solid #fff;
}
header .wrap .right .lan {
  margin-left: 70px;
  position: relative;
}
header .wrap .right .lan:hover .sub {
  z-index: 1;
  opacity: 1;
}
header .wrap .right .lan .sub {
  position: absolute;
  left: 0;
  top: 28px;
  width: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .wrap .right .lan .sub a {
  text-align: center;
  display: block;
  border-radius: 0px;
  line-height: 28px;
  color: #fff;
}
header .wrap .right .lan .sub a:hover {
  color: #14aaaf;
}
header .wrap .right .lan > a {
  width: 68px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .wrap .right .lan > a:hover span {
  color: #14aaaf;
}
header .wrap .right .lan span {
  color: #fff;
}
header .wrap .right .lan i {
  display: block;
  width: 16px;
  height: 10px;
  background: url(../images/b.png) no-repeat center;
  margin-left: 5px;
}
header .wrap .menu {
  display: none;
}
header .wrap .menu i {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #14aaaf;
  opacity: 1;
}
header .wrap .menu i:nth-child(2) {
  margin: 5px 0;
}
header .wrap .menu.on i:first-child {
  -webkit-transform: translate(0, 7px) rotate(45deg);
  -ms-transform: translate(0, 7px) rotate(45deg);
  transform: translate(0, 7px) rotate(45deg);
}
header .wrap .menu.on i:nth-child(2) {
  opacity: 0;
}
header .wrap .menu.on i:nth-child(3) {
  -webkit-transform: translate(0, -7px) rotate(-45deg);
  -ms-transform: translate(0, -7px) rotate(-45deg);
  transform: translate(0, -7px) rotate(-45deg);
}
.header_div {
  width: 100%;
  height: 160px;
}
.header_d{
  width: 100%;
  height: 0;
  display: none;
}

header.scroll .wrap{
  height: 80px;
}
header.scroll .wrap .right .nav li > a{
  height: 80px;
  line-height: 80px;
}
header.scroll .wrap .right .nav li .sub{
  top: 80px;
}

@media (max-width: 1720px) {
  .wrap {
    width: calc(100% - 120px);
  }
}
@media (max-width: 1520px) {
  .wrap2 {
    width: calc(100% - 120px);
  }
  header .wrap .right .nav li .sub .wrap i {
    font-size: 77px;
  }
  header .wrap .right .nav li .sub .wrap .list a:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1366px) {
  h1 {
    font-size: 33px;
  }
  h2 {
    font-size: 30px;
  }
  header .wrap .right .nav li {
    margin-left: 30px;
  }
  header .wrap .right .search {
    margin-left: 30px;
  }
  header .wrap .right .lan {
    margin-left: 30px;
  }
  header .wrap .right .nav li .sub .wrap .list a {
    margin-right: 20px;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a {
    font-size: 20px;
  }
  header .wrap .right .nav li .sub .wrap i {
    font-size: 66px;
  }
}
@media (max-width: 1200px) {
  header .wrap .right .nav li .sub .wrap i {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .wrap2 {
    width: calc(100% - 60px);
  }
}
@media (max-width: 990px) {
  .header_d{
    width: 100%;
    height: 60px;
    display: block;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .wrap2 {
    width: calc(100% - 40px);
  }
  header .wrap {
    height: 80px;
  }
  header .wrap .logo img {
    max-height: 60px;
  }
  header .wrap .menu {
    display: block;
  }
  header .wrap .right {
    position: fixed;
    width: 100%;
    height: 0;
    left: 0;
    top: 80px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    background: #fff;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .wrap .right.on {
    height: calc(100vh - 80px);
  }
  header .wrap .right .nav {
    width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  header .wrap .right .nav li {
    width: 100%;
    margin: 0;
    position: relative;
  }
  header .wrap .right .nav li i {
    position: absolute;
    right: 0;
    top: 25px;
    width: 20px;
    height: 20px;
  }
  header .wrap .right .nav li i:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    right: 0;
    margin-top: -1px;
    background: #333;
  }
  header .wrap .right .nav li i:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 16px;
    margin-top: -8px;
    right: 7px;
    background: #333;
  }
  header .wrap .right .nav li > a {
    height: 50px;
    line-height: 50px;
  }
  header .wrap .right .nav li > a:before {
    display: none;
  }
  header .wrap .right .nav li .sub {
    position: relative;
    left: 0;
    top: auto;
  }
  header .wrap .right .nav li .sub.sub2 .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabtitle {
    width: 100%;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a {
    padding-left: 0;
    margin-left: 0;
    width: 30%;
    display: inline-block;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabtitle a .imgbox {
    display: none;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabbox {
    width: 100%;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul {
    width: 100%;
    padding-left: 0;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li {
    width: 50%;
    margin-left: 0;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a {
    padding-left: 20px;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabbox .item ul li a:after {
    left: 5px;
  }
  header .wrap .right .nav li:hover .sub {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  header .wrap .right .nav li:hover .sub.sub2 {
    height: 0;
  }
  header .wrap .right .nav li.on .sub {
    height: auto;
    opacity: 1;
  }
  header .wrap .right .nav li.on .sub .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  header .wrap .right .nav li.on .sub .wrap i {
    display: none;
  }
  header .wrap .right .nav li.on .sub .wrap .list {
    width: 100%;
  }
  header .wrap .right .nav li.on .sub .wrap .list a {
    color: #666;
    display: block;
    margin: 0;
    line-height: 36px;
  }
  header .wrap .right .nav li.on .sub .wrap .list a:last-child {
    margin-right: 0;
  }
  header .wrap .right .nav li.on .sub.sub2 {
    height: auto;
  }
  header .wrap .right .nav li.on .sub.sub2 .wrap {
    padding: 20px 10px;
    width: 100%;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabtitle {
    width: 100%;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabtitle a {
    padding-left: 0;
    margin-left: 0;
    width: 30%;
    display: inline-block;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabtitle a .imgbox {
    display: none;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabbox {
    width: 100%;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabbox .item ul {
    width: 100%;
    padding-left: 0;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabbox .item ul li {
    width: 50%;
    margin-left: 0;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabbox .item ul li a {
    padding-left: 20px;
  }
  header .wrap .right .nav li.on .sub.sub2 .tabbox .item ul li a:after {
    left: 5px;
  }
  header .wrap .right .search {
    width: 100%;
    padding: 0 20px;
    margin: 10px 0;
  }
  header .wrap .right .search .search_a {
    display: none;
  }
  header .wrap .right .search .searchbox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px solid #333;
    padding: 0 10px;
  }
  header .wrap .right .search .searchbox .close_a {
    display: none;
  }
  header .wrap .right .search .searchbox .btn_a {
    width: 50px;
    display: block;
  }
  header .wrap .right .search .searchbox input {
    width: calc(100% - 50px);
  }
  header .wrap .right .lan {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0;
  }
  header .wrap .right .lan > a {
    background: none;
    width: auto;
    margin: 0 5px;
  }
  header .wrap .right .lan i {
    display: none;
  }
  header .wrap .right .nav li .sub{background: none;}
  header .wrap .right .lan .sub {
    position: relative;
    width: auto;
    left: auto;
    opacity: 1;
    z-index: 1;
    top: 0;
  }
  header .wrap .right .search .searchbox .btn_a{
    background: url(../images/s2.png) no-repeat center;
  }
  header .wrap .right .lan .sub a {
    margin: 0 5px;
  }
  header:hover .wrap .right .nav li a {
    color: #333;
  }
  header.scroll .wrap .right .nav li > a{
    height: 50px;
    line-height: 50px;
  }
  header.scroll .wrap .right .nav li .sub{
    top: 0;
  }
  header:hover .wrap .right .lan > a {
    color: #333;
    background: none;
  }
  header:hover .wrap .right .lan span {
    color: #333;
  }
  header:hover .wrap .right .lan .sub a {
    color: #333;
  }
  header .wrap .right .nav li .sub.sub2 .wrap {
    background-size: contain;
  }
  header .wrap .right .nav li .sub.sub2 .wrap .tabtitle:before {
    display: none;
  }
  .header_div {
    width: 100%;
    height: 80px;
  }
  .pc {
    display: none;
  }
  .wap {
    display: block;
  }
  header.wap_on {
    background: #fff;
    box-shadow: none;
  }
  header.scroll {
    top: 0;
    background: #fff;
  }
}
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner .banner_sp {
  width: auto;
  height: 26px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  margin: 0 auto;
  bottom: 60px;
  padding: 0 10px;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.banner .banner_sp span {
  width: 20px;
  height: 20px;
  position: relative;
  background: transparent;
  opacity: 1;
}
.banner .banner_sp span:before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -3px;
  background: #fff;
  border-radius: 50%;
}
.banner .banner_sp span.swiper-pagination-bullet-active:before {
  background: #14aaaf;
}
.banner .banner_sp span svg circle {
  border: 2px solid #fff;
}
.banner .swiper-slide {
  line-height: 0;
}

.banner .swiper-slide i{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 40, 101, 0.4);
}
.banner .swiper-slide video{
  width: 100%;
  position: relative;
}

.banner .swiper-slide .art {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.banner .swiper-slide .art p {
  font-size: 22px;
}
.banner .swiper-slide .art h1 {
  line-height: 56px;
  margin: 40px 0 50px;
}
.banner .swiper-slide .art a.play_a {
  position: relative;
}
.banner .swiper-slide .art a.play_a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/play2.png) no-repeat center;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    transition: all 10s;
  }
}
#progress {
  animation: circleProgress 40s infinite;
}
@keyframes circleProgress {
  0% {
    stroke-dashoffset: 314;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.videobox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.6);
}
.videobox .close_video {
  display: inline-block;
  font-size: 20px;
  position: absolute;
  right: 24px;
  top: 24px;
  color: #fff;
  z-index: 200;
}
.videobox .video {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  max-width: 90%;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 120;
}
.videobox .video video {
  max-width: 100%;
  outline: none;
  max-height: 650px;
}
@media (max-width: 1366px) {
  .banner .swiper-slide .art h1 {
    font-size: 33px;
    line-height: 40px;
    margin: 20px 0;
  }
}
@media (max-width: 990px) {
  .banner .swiper-slide video{
    min-height: 350px;
    object-fit: cover;
  }
  .banner .swiper-slide .art p {
    font-size: 20px;
  }
  .banner .swiper-slide .art h1 {
    font-size: 24px;
    line-height: 30px;
    margin: 20px 0;
  }
  .banner .swiper-slide img.wap {
    min-height: 50vh;
  }
  .banner .banner_sp {
    bottom: 20px;
  }
}
.yyly {
  width: 100%;
  overflow: hidden;
  padding: 110px 0;
}
.yyly h1 {
  text-align: center;
}
.yyly .info {
  max-width: 470px;
  margin-top: 30px;
}
.yyly .yyly_s {
  position: relative;
}
.yyly .yyly_s .yyly_s_p,
.yyly .yyly_s .yyly_s_n {
  width: 72px;
  height: 72px;
  background-color: #f1f3f5;
  border-radius: 50%;
}
.yyly .yyly_s .yyly_s_p:hover,
.yyly .yyly_s .yyly_s_n:hover {
  background-color: #00aeaf;
}
.yyly .yyly_s .yyly_s_p {
  background-image: url(../images/l.png);
  background-size: 11px 18px;
  background-position: center;
}
.yyly .yyly_s .yyly_s_p:hover {
  background-image: url(../images/l2.png);
}
.yyly .yyly_s .yyly_s_n {
  background-image: url(../images/r.png);
  background-size: 11px 18px;
  background-position: center;
}
.yyly .yyly_s .yyly_s_n:hover {
  background-image: url(../images/r2.png);
}
.yyly .swiper-slide {
  text-align: center;
}
.yyly .swiper-slide h1 {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50px;
  font-size: 220px;
  color: #e8edf2;
  font-weight: bold;
}
.yyly .swiper-slide .imgbox {
  width: 100%;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.yyly .swiper-slide .art {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
  text-align: center;
  max-width: 660px;
  margin: -70px auto 0;
}
.yyly .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 60px;
}
.yyly .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #e8edf2;
  width: 23.75%;
  height: 95px;
  padding: 0 3.5%;
  border-radius: 6px;
  cursor: pointer;
}
.yyly .list li.on {
  background: url(../images/bg.png) no-repeat left center;
}
.yyly .list li.on .imgbox img {
  display: none;
}
.yyly .list li.on .imgbox img.on {
  display: block;
}
.yyly .list li.on p {
  color: #fff;
}
.yyly .list li .imgbox img {
  display: block;
}
.yyly .list li .imgbox img.on {
  display: none;
}
.yyly .list li p {
  color: #666;
  font-size: 18px;
}
@media (max-width: 1366px) {
  .yyly {
    padding: 60px 0;
  }
  .yyly h1 {
    font-size: 33px;
  }
  .yyly .swiper-slide h1 {
    font-size: 120px;
  }
}
@media (max-width: 990px) {
  .yyly h1{font-size: 24px;}
  .yyly .list li p{font-size: 16px;    width: calc(100% - 50px);}
  .yyly .list li .imgbox{width: 25px; margin-left: 10px;}
  .yyly {
    padding: 40px 0;
  }
  .yyly .swiper-slide h1 {
    font-size: 40px;
    top: 30px;
  }
  .yyly .swiper-slide .art {
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
  }
  .yyly .yyly_s .yyly_s_p,
  .yyly .yyly_s .yyly_s_n {
    width: 25px;
    height: 25px;
    top: 90px;
  }
  .yyly .yyly_s .yyly_s_p,
  .yyly .yyly_s .yyly_s_n{
    background-size: 5.5px 9px;
  }
  .yyly .yyly_s {
    overflow: hidden;
  }
  .yyly .list {
    margin-top: 40px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .yyly .list li {
    width: 49%;
    height: 60px;
    margin-bottom: 10px;
  }
  .yyly .swiper-slide .imgbox {
    height: 200px;
    justify-content: center;
  }
  .yyly .swiper-slide .imgbox img{
    max-width: 180%;
    width: 180%;
  }
}
.video_ban {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  overflow-y: scroll;
  line-height: 0;
}
.video_ban::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0px;
}
.video_ban::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0px;
}
.video_ban.on:before {
  height: 0;
}
.video_ban:before {
  content: '';
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg2.png) no-repeat center top;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.video_ban img,
.video_ban video {
  width: 100%;
  height: auto;
}
.video_ban .video_s {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  height: 350px;
  transform: translateY(-50%);
  text-align: center;
  overflow: hidden;
}
.video_ban .video_s .swiper-slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.video_ban .video_s .swiper-slide.swiper-slide-active h1,
.video_ban .video_s .swiper-slide.swiper-slide-active p {
  transform: scale(1);
  opacity: 1;
}
.video_ban .video_s .swiper-slide h1 {
  color: #fff;
  font-weight: 600;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  transform: scale(0.5);
  opacity: 0;
}
.video_ban .video_s .swiper-slide h1 span {
  font-size: 200px;
  font-weight: 700;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.video_ban .video_s .swiper-slide p {
  font-size: 32px;
  color: #fff;
  margin-top: 10px;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  transform: scale(0.5);
  opacity: 0;
}
@media (max-width: 990px) {
  .video_ban .video_s .swiper-slide h1 {
    font-size: 24px;
  }
  .video_ban .video_s .swiper-slide h1 span {
    font-size: 40px;
  }
  .video_ban .video_s .swiper-slide p {
    font-size: 16px;
  }
  .video_ban .video_s {
    height: 100%;
  }
  .video_ban img,
  .video_ban video {
    height: 100vh;
    object-fit: cover;
  }
}
.about_index {
  padding: 160px 0;
  overflow: hidden;
  background: url(../images/bg4.jpg) no-repeat center top #f5f7f8;
}
.about_index .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about_index .wrap .art {
  width: 40%;
  max-width: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.about_index .wrap .art .info {
  font-size: 20px;
  line-height: 40px;
  color: #666666;
  margin: 55px 0 125px;
  text-align: left;
  /*max-height: 160px;*/
  /*overflow-y: scroll;*/
}

.about_index .wrap .art .info::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.about_index .wrap .art .info::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.about_index .wrap .imgbox {
  width: 55%;
  height: 0;
  padding-bottom: 35%;
  position: relative;
  overflow: hidden;
}
.about_index .wrap .imgbox:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.about_index .wrap .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1366px) {
  .about_index {
    padding: 80px 0;
  }
  .about_index .wrap .art .info {
    margin: 40px 0 50px;
  }
}
@media (max-width: 990px) {
  .about_index {
    padding: 40px 0;
    background-size: cover;
  }
  .about_index .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .about_index .wrap .art {
    width: 100%;
    max-width: 100%;
  }
  .about_index .wrap .art h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .about_index .wrap .art .info {
    margin: 20px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .about_index .wrap .art a {
    margin-bottom: 20px;
  }
  .about_index .wrap .imgbox {
    width: 100%;
    padding-bottom: 64%;
  }
}
.more_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 180px;
  height: 48px;
  background: transparent;
  border: 1px solid #e3e7eb;
  border-radius: 24px;
  color: #999999;
}
.more_a:hover {
  background: #00aeaf;
  color: #fff;
  border-color: transparent;
}
.more_a:hover i {
  background: url(../images/r2.png) no-repeat center;
  background-size: 100% 100%;
}
.more_a span {
  margin-right: 35px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.more_a i {
  display: block;
  width: 7px;
  height: 12px;
  background: url(../images/r.png) no-repeat center;
  background-size: 100% 100%;
}
.news_index {
  padding: 120px 0;
  overflow: hidden;
}
.news_index .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.news_index .wrap .left {
  width: 320px;
  height: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news_index .wrap .left .tabtitle {
  margin-bottom: 100px;
}
.news_index .wrap .left .tabtitle a {
  display: block;
  color: #999999;
  font-size: 24px;
  line-height: 48px;
  position: relative;
  font-weight: 600;
}
.news_index .wrap .left .tabtitle a.on {
  padding-left: 30px;
  color: #00aeaf;
}
.news_index .wrap .left .tabtitle a.on:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #00aeaf;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
}
.news_index .wrap .right {
  width: 90%;
  position: absolute;
  left: 320px;
}
.news_index .wrap .right .item {
  width: 100%;
  height: 0;
  overflow: hidden;
}
.news_index .wrap .right .item.on {
  height: auto;
}
.news_index .wrap .right .item .news_s {
  height: 580px;
  position: relative;
  overflow: visible;
}
.news_index .wrap .right .item .news_sp {
  width: 100%;
  top: auto;
  bottom: 0;
  height: 2px;
}
.news_index .wrap .right .item .news_sp span {
  color: #e3e7eb;
}
.news_index .wrap .right .item .news_sp span.swiper-pagination-progressbar-fill {
  background: #00aeaf;
}
.news_index .wrap .right .item .swiper-slide a {
  display: block;
  width: 100%;
}
.news_index .wrap .right .item .swiper-slide a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news_index .wrap .right .item .swiper-slide a:hover .art span {
  color: #00aeaf;
  background: url(../images/r3_1.png) no-repeat center right;
}
.news_index .wrap .right .item .swiper-slide a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 54%;
  position: relative;
  overflow: hidden;
}
.news_index .wrap .right .item .swiper-slide a .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.news_index .wrap .right .item .swiper-slide a .art {
  margin-top: 25px;
}
.news_index .wrap .right .item .swiper-slide a .art .time {
  font-size: 16px;
  color: #00aeaf;
  font-family: "din";
}
.news_index .wrap .right .item .swiper-slide a .art h3 {
  font-size: 26px;
  line-height: 40px;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 80px;
  margin: 25px 0 40px;
  font-weight: 500;
}
.news_index .wrap .right .item .swiper-slide a .art span {
  display: inline-block;
  font-size: 18px;
  color: #999999;
  padding-right: 55px;
  background: url(../images/r3.png) no-repeat center right;
}
@media (max-width: 1366px) {
  .news_index .wrap .left {
    height: 480px;
  }
  .news_index .wrap .right .item .news_s {
    height: 480px;
  }
  .news_index .wrap .right .item .swiper-slide a .art h3 {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .news_index {
    padding: 40px 0;
  }
  .news_index .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .news_index .wrap .left {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .news_index .wrap .left .tabtitle {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .news_index .wrap .left .tabtitle a {
    font-size: 18px;
    line-height: 30px;
    margin-right: 30px;
  }
  .news_index .wrap .left .tabtitle a:last-child {
    margin-right: 0;
  }
  .news_index .wrap .right {
    width: 100%;
    position: relative;
    left: 0;
    top: auto;
  }
  .news_index .wrap .right .item .swiper-slide a .art h3 {
    font-size: 18px;
    line-height: 26px;
    height: 52px;
    margin: 15px 0 20px;
  }
  .news_index .wrap .right .item .news_s {
    height: auto;
    padding-bottom: 20px;
  }
}
footer {
  background: #00263b;
  padding-top: 80px;
  border-top: 8px solid #00aeaf;
}
footer .foot1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
footer .foot1 li p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 500;
}
footer .foot1 li a {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 36px;
}
footer .foot2 {
  padding: 90px 0 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
footer .foot2 .gotop {
  width: 90px;
  height: 50px;
  border-radius: 25px;
  background: url(../images/t.png) no-repeat center #00aeaf;
  position: fixed;
  right: 50px;
  bottom: 100px;

}
footer .foot2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-right: 110px;
}
footer .foot2 .item img {
  margin-right: 15px;
}
footer .foot2 .item span {
  font-size: 14px;
  color: #7a7c81;
}
footer .foot2 .item p {
  font-size: 22px;
  color: #fff;
}
footer .foot2 .item p.p2 {
  font-size: 14px;
  max-width: 185px;
}
footer .foot3 {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.15);
}
footer .foot3 a {
  color: rgba(255, 255, 255, 0.15);
}
footer .foot3 a:hover {
  color: #fff;
}
@media (max-width: 990px) {
  footer .foot2 .gotop {
    right: 20px;
    bottom: 20px;
  }
  footer {
    padding-top: 0;
  }
  footer .wrap {
    position: relative;
  }
  footer .foot1 {
    display: none;
  }
  footer .foot2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 40px 0 0;
    position: unset;
  }
  footer .foot2 .item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  footer .foot2 .gotop {
    width: 60px;
    height: 30px;
    bottom: 25px;
  }
  footer .foot3 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    text-align: center;
  }
  footer .foot3 .copyright {
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
  }
  footer .foot3 .copyright a{display: block;}
  footer .foot3 .jszc {
    width: 100%;
    font-size: 14px;
  }
}
.banner_info {
  position: relative;
  line-height: 0;
}
.banner_info img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}
.banner_info .art {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
}
.banner_info .art h1 {
  color: #fff;
  line-height: 1;
}
.menu_info {
  position: relative;
  /* -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; */
}
.menu_info.show {
  display: block;
}
.menu_info.hide {
  display: none;
}
.menu_info.scroll {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9;
}
.menu_info.scroll .wrap2 {
  margin-top: 0;
  background: transparent;
}
.menu_info .wrap2 {
  position: relative;
  height: 80px;
  margin-top: -80px;
  background: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  /* -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; */
}
.menu_info .wrap2.a2 a {
  width: 50%;
}
.menu_info .wrap2.a3 a {
  width: 33.33%;
}
.menu_info .wrap2 a {
  display: block;
  color: #333333;
  font-size: 16px;
  line-height: 80px;
  text-align: center;
  width: 14.28%;
}
.menu_info .wrap2 a:hover,
.menu_info .wrap2 a.on {
  background: #00aeaf;
  color: #fff;
}
@media (max-width: 990px) {
  .menu_info.scroll {
    top: 60px;
    height: 60px;
  }
  .menu_info .wrap2 {
    height: 60px;
    margin-top: 0px;
    width: 100%;
    overflow-x: scroll;
    background: #f5f7f8;
  }
  .menu_info .wrap2 a {
    width: 100px;
    line-height: 60px;
    white-space: nowrap;
    padding: 0 20px;
  }
}
.about_info {
  padding: 120px 0 0;
}
.gsjs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 190px;
}
.gsjs .img {
  width: 39.3%;
  height: auto;
}
.gsjs .art {
  width: 55%;
}
.gsjs .art h1 {
  font-size: 80px;
  color: #00aeaf;
  text-transform: uppercase;
}
.gsjs .art h2 {
  line-height: 1;
  padding: 30px 0;
  border-bottom: 1px solid #e5e9eb;
}
.gsjs .art .info {
  margin-top: 35px;
  text-align: left;
  line-height: 32px;
}
.gsjs .art .info P {
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .about_info {
    padding: 80px 0 0;
  }
  .gsjs .art h1 {
    font-size: 60px;
  }
  .gsjs .art .info {
    line-height: 26px;
  }
}
@media (max-width: 1366px) {
  .gsjs .art h1 {
    font-size: 40px;
  }
  .gsjs .art h2 {
    padding: 25px 0;
  }
  .gsjs .art .info {
    max-height: 300px;
    overflow-x: scroll;
  }
  .gsjs .art .info::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 2px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
  }
  .gsjs .art .info::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #fff;
  }
}
@media (max-width: 990px) {
  .about_info {
    padding: 40px 0 0;
  }
  .gsjs {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-bottom: 120px;
  }
  .gsjs .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .gsjs .art {
    width: 100%;
  }
  .gsjs .art h1 {
    font-size: 30px;
  }
  .gsjs .art h2 {
    padding: 15px 0;
  }
  .gsjs .art .info {
    line-height: 24px;
    margin-top: 15px;
  }
  .gsjs .art .info p {
    margin-bottom: 20px;
  }
}
.gsjs_sz {
  position: relative;
  width: 100%;
  height: 0;
}
.list_sj {
  background: #f5f7f8;
  padding: 50px 0;
  top: 50%;
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.list_sj li {
  position: relative;
  text-align: center;
}
.list_sj li:first-child {
  width: 25%;
}
.list_sj li:nth-child(2) {
  width: 23%;
}
.list_sj li:nth-child(3) {
  width: 24%;
}
.list_sj li:nth-child(4) {
  width: 28%;
}
.list_sj li:after {
  content: '';
  width: 1px;
  height: 80px;
  background: #dce2e5;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  right: 0px;
}
.list_sj li:last-child:after {
  display: none;
}
.list_sj li h1 {
  font-size: 24px;
  font-weight: 700;
  color: #00aeaf;
  margin-bottom: 15px;
}
.list_sj li h1 span {
  font-size: 80px;
  margin-right: 15px;
}
.list_sj li p {
  font-size: 18px;
  color: #666666;
}
@media (max-width: 1366px) {
  .list_sj li h1 {
    font-size: 20px;
  }
  .list_sj li h1 span {
    font-size: 60px;
  }
  .list_sj li p {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .list_sj {
    padding: 15px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .list_sj li {
    width: 50%!important;
    margin: 10px 0;
  }
  .list_sj li:after {
    display: none;
  }
  .list_sj li h1 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .list_sj li h1 span {
    font-size: 30px;
  }
  .list_sj li p {
    font-size: 12px;
    height: 42px;
  }
}
.gsyj {
  position: relative;
  line-height: 0;
}
.gsyj img {
  min-height: 840px;
  object-fit: cover;
}
.gsyj .art {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
}
.gsyj .art h1 {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
  text-transform: uppercase;
}
.gsyj .art h1:after {
  content: '';
  width: 64px;
  height: 6px;
  position: absolute;
  left: 50%;
  margin-left: -32px;
  bottom: 0;
  background: #00aeaf;
}
.gsyj .art h2 {
  margin-bottom: 45px;
}
.gsyj .art .info {
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  width: 850px;
  max-width: 100%;
}
@media (max-width: 1366px) {
  .gsyj .art h1 {
    font-size: 46px;
  }
  .gsyj .art .info {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 990px) {
  .gsyj img {
    min-height: 600px;
  }
  .gsyj .art h1 {
    font-size: 24px;
  }
  .gsyj .art h2 {
    margin-bottom: 35px;
  }
  .gsyj .art .info {
    font-size: 16px;
    line-height: 24px;
    padding: 0 20px;
  }
}
.qywh_bg {
  background: url(../images/bg6.jpg) no-repeat right bottom;
  padding: 130px 0 145px;
}
.qywh .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 100px;
}
.qywh .top .left {
  width: 38%;
  font-size: 40px;
  line-height: 56px;
  color: #00263b;
}
.qywh .top .left span {
  color: #00b2b2;
}
.qywh .top .right {
  width: 49%;
  font-size: 18px;
  line-height: 36px;
  color: #666666;
  margin-top: 10px;
}
.qywh .list_wh li {
  padding: 35px;
  border-top: 1px solid #cbd3d7;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.qywh .list_wh li:last-child {
  border-bottom: 1px solid #cbd3d7;
}
.qywh .list_wh li.on {
  border-top: 5px solid #00b2b2;
}
.qywh .list_wh li.on .info {
  height: auto;
  margin: 40px 0 15px;
}
.qywh .list_wh li.on a i {
  background: url(../images/i11_1.png) no-repeat center;
}
.qywh .list_wh li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.qywh .list_wh li a h3 {
  width: calc(100% - 100px);
  font-size: 32px;
  color: #00aeaf;
}
.qywh .list_wh li a h3 p {
  margin-top: 16px;
  font-size: 24px;
  color: #333333;
}
.qywh .list_wh li a i {
  display: block;
  width: 100px;
  height: 26px;
  background: url(../images/i11.png) no-repeat center;
}
.qywh .list_wh li .info {
  width: calc(100% - 200px);
  height: 0;
  overflow: hidden;
  text-align: left;
  margin-left: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1366px) {
  .qywh_bg {
    padding: 100px 0 120px;
  }
  .qywh .top {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .qywh .top .left {
    width: 40%;
    font-size: 30px;
    line-height: 45px;
  }
  .qywh .top .right {
    width: 50%;
  }
  .qywh .list_wh li a h3 {
    font-size: 24px;
  }
  .qywh .list_wh li a h3 p {
    font-size: 20px;
  }
}
@media (max-width: 990px) {
  .qywh_bg {
    padding: 40px 0 50px;
  }
  .qywh .top {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .qywh .top .left {
    width: 100%;
    font-size: 27px;
    line-height: 40px;
  }
  .qywh .top .right {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .qywh .list_wh li {
    padding: 20px 0;
  }
  .qywh .list_wh li a h3 {
    width: calc(100% - 25px);
    font-size: 22px;
  }
  .qywh .list_wh li a h3 p {
    font-size: 18px;
  }
  .qywh .list_wh li a i {
    width: 25px;
  }
  .qywh .list_wh li .info {
    width: 100%;
  }
  .qywh .list_wh li.on .info {
    margin-top: 20px;
  }
}
.hxyw {
  padding: 110px 0 120px;
  text-align: center;
}
.hxyw h2 {
  margin-bottom: 40px;
}
.hxyw .info {
  font-size: 16px;
  line-height: 32px;
  width: 880px;
  max-width: 100%;
  margin-bottom: 85px;
}
.hxyw .cs_title {
  width: auto;
  display: inline-block;
  margin: 0 auto;
  padding: 4px;
  background: #ecf0f4;
  border-radius: 32px;
  margin-bottom: 60px;
}
.hxyw .cs_title a {
  display: inline-block;
  padding: 14px 64px;
  font-size: 16px;
  color: #666666;
  border-radius: 28px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.hxyw .cs_title a.on {
  background: #00aeaf;
  color: #fff;
}
.hxyw .cs_box .item {
  display: none;
}
.hxyw .cs_box .item.on {
  display: block;
}
.hxyw .cs_box .item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 16px);
  margin-left: -8px;
}
.hxyw .cs_box .item ul li {
  width: 16.6%;
  padding: 0 8px;
  margin-bottom: 16px;
}
.hxyw .cs_box .item ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #f5f7f8;
}
.hxyw .cs_box .item ul li a img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1366px) {
  .hxyw {
    padding: 55px 0 60px;
  }
  .hxyw .cs_title a {
    padding: 14px 50px;
  }
  .hxyw .cs_box .item ul li {
    width: 20%;
  }
}
@media (max-width: 1200px) {
  .hxyw .cs_title a {
    padding: 14px 40px;
  }
  .hxyw .cs_box .item ul li {
    width: 25%;
  }
}
@media (max-width: 990px) {
  .hxyw {
    padding: 40px 0 50px;
  }
  .hxyw h2 {
    margin-bottom: 20px;
  }
  .hxyw .info {
    margin-bottom: 30px;
  }
  .hxyw .cs_title {
    width: 100%;
    margin-bottom: 20px;
    background: none;
    display: flex;
    flex-wrap: wrap;
  }
  .hxyw .cs_title a {
    padding: 10px 20px;
    width: 49%;
    margin-bottom: 10px;
    margin-right: 2%;
    font-size: 14px;
    background: #ecf0f4;
  }
  .hxyw .cs_title a:nth-child(2n){
    margin-right: 0%;
  }
  .hxyw .cs_box .item ul li {
    width: 50%;
  }
  .hxyw .info {
    margin-bottom: 40px;
    line-height: 24px;
  }
}
.cngm {
  background: #f5f7f8;
  padding: 110px 0 120px;
  display: none;
}
.cngm h2 {
  text-align: center;
}
.cngm .info {
  margin: 40px auto;
  width: 880px;
  max-width: 100%;
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  text-align: center;
}
.cngm .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cngm .list li {
  width: 23.5%;
  background: #fff;
  padding: 40px 20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  top: 0;
  border-bottom: 8px solid transparent;
}
.cngm .list li:hover {
  border-bottom: 8px solid #00aeaf;
  top: -30px;
}
.cngm .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cngm .list li h3 {
  width: 150px;
 font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #00263b;
  text-align: center;
}
.cngm .list li .imgbox {
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cngm .list li .art {
  font-size: 16px;
  line-height: 32px;
  padding: 0 15px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #00aeaf;
  color: #fff;
  text-align: center;
}
@media (max-width: 1366px) {
  .cngm {
    padding: 60px 0 65px;
  }
  .cngm .list li h3 {
    font-size: 22px;
  }
  .cngm .list li .art {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    overflow-y: scroll;
  }
  .cngm .list li .art::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 2px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
  }
  .cngm .list li .art::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #fff;
  }
}
@media (max-width: 990px) {
  .cngm {
    padding: 40px 0 50px;
  }
  .cngm .info {
    margin: 30px 0;
    line-height: 24px;
  }
  .cngm .list {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .cngm .list li {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 10px;
  }
  .cngm .list li .imgbox{
    position: absolute;
    width: 35px;
    height: 35px;
    left: 15px;
    top: 15px;
  }
  .cngm .list li h3 {
    font-size: 20px;
    width: 100%;
    min-height: 45px;
    padding-left: 50px;
    text-align: left;
    font-size: 18px;
  }
  .cngm .list li .art {
    line-height: 24px;
    padding: 10px;
    height: auto;
    max-height: 96px;
    font-size: 14px;
    line-height: 24px;
  }
}
.fzlc {
  padding: 120px 0;
  overflow: hidden;
}
.fzlc .wrap2 {
  overflow: hidden;
}
.fzlc h2 {
  text-align: center;
}
.fzlc .info {
  width: 800px;
  max-width: 100%;
  margin: 40px auto 0;
  line-height: 32px;
  color: #666666;
}
.fzlc_s1 {
  position: relative;
}
.fzlc_s1 .swiper-slide.swiper-slide-active .time {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.fzlc_s1 .swiper-slide .time {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 450px;
  line-height: 1;
  color: #ecf0f4;
  text-align: center;
  font-family: 'din';
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.fzlc_s1 .swiper-slide .art {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  max-width: 70%;
  height: 190px;
  padding: 30px 35px;
  background: url(../images/bg7.png) no-repeat left top #00263b;
  margin-top: 6.5px;
}
.fzlc_s1 .swiper-slide .art:after {
  content: '';
  width: 23px;
  height: 13px;
  position: absolute;
  left: 50%;
  margin-left: -12.5px;
  bottom: -12px;
  background: url(../images/bg8.png) no-repeat center;
}
.fzlc_s1 .swiper-slide .art h3 {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  text-align: left;
}
.fzlc_s1 .swiper-slide .art h3 span {
  font-weight: 700;
  font-size: 50px;
  display: inline-block;
  margin-right: 10px;
}
.fzlc_s1 .swiper-slide .art .txt {
  font-size: 18px;
  line-height: 30px;
  height: 60px;
  color: #fff;
  margin-top: 10px;
  overflow-y: scroll;
}
.fzlc_s1 .swiper-slide .art .txt::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.fzlc_s1 .swiper-slide .art .txt::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.fzlc_s1 .fzlc_s1_p,
.fzlc_s1 .fzlc_s1_n {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ecf0f4;
  background-size: 11px 18px;
  background-position: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.fzlc_s1 .fzlc_s1_p:hover,
.fzlc_s1 .fzlc_s1_n:hover {
  background-color: #00aeaf;
}
.fzlc_s1 .fzlc_s1_p {
  background-image: url(../images/l.png);
}
.fzlc_s1 .fzlc_s1_p:hover {
  background-image: url(../images/l2.png);
}
.fzlc_s1 .fzlc_s1_n {
  background-image: url(../images/r.png);
}
.fzlc_s1 .fzlc_s1_n:hover {
  background-image: url(../images/r2.png);
}
.fzlc_s2 {
  margin: 0 auto;
  position: relative;
}
.fzlc_s2:before {
  content: '';
  width: 100%;
  left: 0%;
  bottom: 60px;
  position: absolute;
  height: 2px;
  background: rgba(0, 174, 175, 0.25);
}
.fzlc_s2 .swiper-slide {
  text-align: center;
  padding: 50px 0;
}
.fzlc_s2 .swiper-slide.swiper-slide-active p {
  bottom: 75px;
  font-size: 32px;
  color: #00263b;
}
.fzlc_s2 .swiper-slide.swiper-slide-active i:before {
  background: #00aeaf;
}
.fzlc_s2 .swiper-slide:before {
  content: '';
  width: 100%;
  height: 2px;
  background: rgba(0, 174, 175, 0.25);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  display: none;
}
.fzlc_s2 .swiper-slide i {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  border: 2px solid #d7dde4;
  background: #fff;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.fzlc_s2 .swiper-slide i:before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -3px;
  margin-left: -3px;
  background: transparent;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.fzlc_s2 .swiper-slide p {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 15px;
  font-weight: 600;
  color: #999999;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1366px) {
  .fzlc {
    padding: 60px 0;
  }
  .fzlc_s1 .swiper-slide .time {
    font-size: 400px;
  }
  .fzlc_s1 .fzlc_s1_p,
  .fzlc_s1 .fzlc_s1_n {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1200px) {
  .fzlc_s1 .swiper-slide .time {
    font-size: 350px;
  }
}
@media (max-width: 990px) {
  .fzlc {
    padding: 40px 0;
  }
  .fzlc .info {
    margin-top: 30px;
    line-height: 24px;
  }
  .fzlc_s1 .swiper-slide .time {
    font-size: 200px;
  }
  .fzlc_s1 .fzlc_s1_p,
  .fzlc_s1 .fzlc_s1_n {
    width: 40px;
    height: 40px;
  }
  .fzlc_s1 .swiper-slide .art {
    padding: 10px ;
    height: 124px;
  }
  .fzlc_s1 .swiper-slide .art h3 {
    font-size: 20px;
  }
  .fzlc_s1 .swiper-slide .art h3 span {
    font-size: 24px;
  }
  .fzlc_s1 .swiper-slide .art .txt {
    font-size: 14px;
    line-height: 24px;
    height: 72px;
  }
  .fzlc_s2 .swiper-slide.swiper-slide-active p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .fzlc_s1 .swiper-slide .time {
    font-size: 150px;
    line-height: 200px;
  }
}
.ryzz {
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.ryzz h1 {
  text-align: center;
  color: #fff;
}
.ryzz .info {
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  margin: 40px auto 35px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 108px;
  width: 880px;
  max-width: 100%;
}
.ryzz_s {
  overflow: hidden;
  position: relative;
  padding-bottom: 145px;
}
.ryzz_s .swiper-slide a {
  display: block;
  width: 100%;
  background: #ecf0f4;
}
.ryzz_s .swiper-slide a:hover .imgbox .hover {
  height: 100%;
  background: rgba(0, 38, 59, 0.6);
}
.ryzz_s .swiper-slide a:hover .imgbox .hover p,
.ryzz_s .swiper-slide a:hover .imgbox .hover i {
  opacity: 1;
}
.ryzz_s .swiper-slide a:hover p.p1 {
  background: url(../images/bg7.png) no-repeat left center #00263b;
  border-bottom: 4px solid #00b2b2;
  color: #fff;
}
.ryzz_s .swiper-slide a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 72.6%;
  position: relative;
}
.ryzz_s .swiper-slide a .imgbox .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ryzz_s .swiper-slide a .imgbox .hover {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #d4dbe1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.ryzz_s .swiper-slide a .imgbox .hover p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  opacity: 0;
}
.ryzz_s .swiper-slide a .imgbox .hover i {
  width: 28px;
  height: 28px;
  background: url(../images/fdj.png) no-repeat center;
  display: block;
  opacity: 0;
}
.ryzz_s .swiper-slide a p.p1 {
  height: 70px;
  line-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  color: #666666;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.ryzz_s .ryzz_s_p,
.ryzz_s .ryzz_s_n {
  width: 72px;
  height: 72px;
  background-color: #f1f3f5;
  border-radius: 50%;
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
}
.ryzz_s .ryzz_s_p:hover,
.ryzz_s .ryzz_s_n:hover {
  background-color: #00aeaf;
}
.ryzz_s .ryzz_s_p {
  background-image: url(../images/l.png);
  background-size: 11px 18px;
  background-position: center;
  right: calc(50% + 16px);
}
.ryzz_s .ryzz_s_p:hover {
  background-image: url(../images/l2.png);
}
.ryzz_s .ryzz_s_n {
  background-image: url(../images/r.png);
  background-size: 11px 18px;
  background-position: center;
  left: calc(50% + 16px);
}
.ryzz_s .ryzz_s_n:hover {
  background-image: url(../images/r2.png);
}
@media (max-width: 1366px) {
  .ryzz {
    padding: 60px 0;
  }
  .ryzz .info {
    font-size: 16px;
    line-height: 30px;
    height: 90px;
    margin: 30px auto;
  }
  .ryzz_s {
    padding-bottom: 80px;
  }
  .ryzz_s .ryzz_s_p,
  .ryzz_s .ryzz_s_n {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 990px) {
  .ryzz {
    padding: 40px 0;
    background-size: 100% 300px;
  }
  .ryzz_s .swiper-slide a .imgbox .img img {
    max-width: 90%;
    max-height: 90%;
  }
  .ryzz_s {
    padding-bottom: 60px;
  }
  .ryzz_s .ryzz_s_p,
  .ryzz_s .ryzz_s_n {
    width: 40px;
    height: 40px;
  }
  .ryzz_s .swiper-slide a p.p1 {
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
  }
  .ryzz_s .swiper-slide a .imgbox .hover {
    border: none;
  }
}
.ryzz2 {
  background: #f5f7f8;
  padding: 120px 0;
}
.ryzz2 .wrap2 {
  position: relative;
}
.ryzz2 .ryzz2_s {
  padding-bottom: 80px;
  position: relative;
  width: 1220px;
  max-width: 100%;
}
.ryzz2 .swiper-slide {
  width: 390px;
  height: 510px;
}
.ryzz2 .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
.ryzz2 .swiper-slide a {
  display: block;
  width: 100%;
  background: #ffffff;
}
.ryzz2 .swiper-slide a:hover .imgbox {
  border-bottom: 4px solid #00b2b2;
}
.ryzz2 .swiper-slide a:hover .imgbox .hover {
  height: 100%;
  background: rgba(0, 38, 59, 0.6);
  border: 20px solid rgba(255, 255, 255, 0.6);
}
.ryzz2 .swiper-slide a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 130%;
  position: relative;
}
.ryzz2 .swiper-slide a .imgbox .img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ryzz2 .swiper-slide a .imgbox .img img {
  max-width: 90%;
  max-height: 90%;
}
.ryzz2 .swiper-slide a .imgbox .hover {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #d4dbe1;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.ryzz2 .swiper-slide a .imgbox .hover p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  opacity: 1;
}
.ryzz2 .swiper-slide a .imgbox .hover i {
  width: 28px;
  height: 28px;
  background: url(../images/fdj.png) no-repeat center;
  display: block;
}
.ryzz2 .swiper-slide p {
  font-size: 18px;
  color: #666666;
  font-weight: normal;
  opacity: 0;
  text-align: center;
  margin-top: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ryzz2 .ryzz2_s_p,
.ryzz2 .ryzz2_s_n {
  width: 72px;
  height: 72px;
  background-color: #00aeaf;
  border-radius: 50%;
  margin-top: -70px;
}
.ryzz2 .ryzz2_s_p:hover,
.ryzz2 .ryzz2_s_n:hover {
  background-color: #00aeaf;
}
.ryzz2 .ryzz2_s_p {
  background-image: url(../images/l2.png);
  background-size: 11px 18px;
  background-position: center;
  left: 0;
}
.ryzz2 .ryzz2_s_p:hover {
  background-image: url(../images/l2.png);
}
.ryzz2 .ryzz2_s_n {
  background-image: url(../images/r2.png);
  background-size: 11px 18px;
  background-position: center;
  right: 0;
}
.ryzz2 .ryzz2_s_n:hover {
  background-image: url(../images/r2.png);
}
@media (max-width: 1366px) {
  .ryzz2 {
    padding: 60px 0;
  }
  .ryzz2 .ryzz2_s_p,
  .ryzz2 .ryzz2_s_n {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 990px) {
  .ryzz2 {
    padding: 40px 0;
  }
  .ryzz2 .swiper-slide p {
    font-size: 16px;
    margin-top: 15px;
  }
  .ryzz2 .ryzz2_s_p,
  .ryzz2 .ryzz2_s_n {
    width: 40px;
    height: 40px;
    margin-top: -80px;
  }
  .ryzz2 .swiper-slide {
    width: 50%;
    height: auto;
  }
  .ryzz2 .ryzz2_s {
    padding-bottom: 0;
  }
  .ryzz .info {
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .ryzz2 .ryzz2_s_p,
  .ryzz2 .ryzz2_s_n {
    margin-top: -70px;
  }
  .ryzz2 .swiper-slide {
    width: 80%;
  }
}
.pro_info {
  padding: 120px 0;
}
.pro_info .pro_list li {
  padding: 28px;
  background: #f5f7f8;
  margin-bottom: 30px;
}
.pro_info .pro_list li:nth-child(2n) a .art {
  left: auto;
  right: 0;
}
.pro_info .pro_list li:nth-child(2n) a .imgbox {
  left: 0;
  right: auto;
}
.pro_info .pro_list li a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 34.57%;
  position: relative;
}
.pro_info .pro_list li a .art {
  width: 49%;
  padding: 0 3%;
  position: absolute;
  height: 100%;
  overflow-x: scroll;
  left: 0;
  top: 0;
}
.pro_info .pro_list li a .art::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.pro_info .pro_list li a .art::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.pro_info .pro_list li a .art i {
  margin-top: 50px;
  display: inline-block;
  font-size: 20px;
  font-family: 'din';
  background: #00263b;
  height: 32px;
  border-radius: 16px;
  line-height: 32px;
  color: #fff;
  padding: 0 25px;
}
.pro_info .pro_list li a .art h3 {
  font-size: 32px;
  color: #00263b;
  line-height: 1;
  margin: 20px 0 35px;
  font-weight: bold;
}
.pro_info .pro_list li a .art h4 {
  font-size: 20px;
  line-height: 24px;
  color: #00aeaf;
}
.pro_info .pro_list li a .art .info {
  text-align: left;
  height: 90px;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin: 10px 0;
  overflow-x: scroll;
}
.pro_info .pro_list li a .art .info::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.pro_info .pro_list li a .art .info::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.pro_info .pro_list li a .art .item span {
  color: #00aeaf;
  font-size: 18px;
  line-height: 36px;
  display: block;
  padding-left: 15px;
  position: relative;
}
.pro_info .pro_list li a .art .item span:before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  background: #00b2b2;
  border-radius: 50%;
}
.pro_info .pro_list li a .imgbox {
  width: 49%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.pro_info .pro_list li a .imgbox .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pro_info .pro_list li a .imgbox img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1366px) {
  .pro_info {
    padding: 60px 0;
  }
  .pro_info .pro_list li a .art h3 {
    font-size: 24px;
  }
  .pro_info .pro_list li a .art i {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  .pro_info {
    padding: 40px 0;
  }
  .pro_info .pro_list li {
    padding: 20px 15px;
  }
  .pro_info .pro_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    height: auto;
    padding-bottom: 0;
  }
  .pro_info .pro_list li a .art {
    width: 100%;
    position: relative;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    top: auto;
    left: auto;
  }
  .pro_info .pro_list li a .art i {
    margin-top: 0;
    font-size: 16px;
  }
  .pro_info .pro_list li a .art h3 {
    margin: 15px 0;
    font-size: 20px;
  }
  .pro_info .pro_list li a .art h4 {
    font-size: 18px;
  }
  .pro_info .pro_list li a .imgbox {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 73.56%;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }
}
.pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 70px;
}
.pages a,.pages em {
  width: 72px;
  height: 72px;
  color: #00263b;
  font-size: 18px;
  line-height: 72px;
  text-align: center;
  background-color: #f1f3f5;
  border-radius: 50%;
  margin: 0 14px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background-size: 11px 18px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}
.pages a.prev {
  background-image: url(../images/l.png);
}
.pages a.prev:hover {
  background-image: url(../images/l2.png);
}
.pages a.next {
  background-image: url(../images/r.png);
}
.pages a.next:hover {
  background-image: url(../images/r2.png);
}
.pages a.on,
.pages a:hover,
.pages em {
  background-color: #00aeaf;
  color: #fff;
}
@media (max-width: 1366px) {
  .pages {
    margin-top: 50px;
  }
  .pages a,.pages em {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 990px) {
  .pages {
    margin-top: 35px;
  }
  .pages a,.pages em {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 5px;
    font-size: 16px;
  }
}
.news_info {
  padding: 120px 0;
}
.news_info_s {
  position: relative;
  overflow: hidden;
}
.news_info_s .swiper-button-prev,
.news_info_s .swiper-button-next {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: url(../images/r2.png) no-repeat center rgba(255, 255, 255, 0.4);
  z-index: 9;
}
.news_info_s .swiper-button-prev:hover,
.news_info_s .swiper-button-next:hover {
  background-color: #00b2b2;
}
.news_info_s .swiper-button-prev {
  display: none;
}
.news_info_s .swiper-pagination {
  width: 50%;
  left: 40px;
  bottom: 20px;
  text-align: left;
}
.news_info_s .swiper-pagination span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.4;
  margin-right: 10px;
}
.news_info_s .swiper-pagination span.swiper-pagination-bullet-active {
  background: #00aeaf;
  opacity: 1;
}
.news_info_s .swiper-slide a {
  display: block;
  width: 100%;
  padding-bottom: 35.6%;
  position: relative;
  background: #00263b;
}
.news_info_s .swiper-slide a .imgbox {
  position: absolute;
  left: 0;
  width: 66%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news_info_s .swiper-slide a .imgbox img {
  max-width: 100%;
  max-height: 100%;
}
.news_info_s .swiper-slide a .imgbox .swiper-pagination {
  display: none;
}
.news_info_s .swiper-slide a .art {
  position: absolute;
  right: 0;
  width: 34%;
  height: 100%;
  background: url(../images/bd.png) no-repeat left bottom;
  padding: 0 4.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.news_info_s .swiper-slide a .art h3 {
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 80px;
  margin-top: 30px;
}
.news_info_s .swiper-slide a .art .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0 20px;
}
.news_info_s .swiper-slide a .art .info {
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  color: #ffffff;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_info_s .swiper-slide a .art .time {
  margin-top: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news_info_s .swiper-slide a .art .time p {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.news_info_s .swiper-slide a .art .time span {
  font-family: 'din';
  font-size: 16px;
  color: #fff;
}
.news_info_s .swiper-slide a .art .time .swiper-button-next {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  right: auto;
  margin-top: 10px;
}
@media (max-width: 1440px) {
  .news_info_s .swiper-slide a .art h3 {
    font-size: 24px;
    line-height: 30px;
    height: 60px;
  }
  .news_info_s .swiper-slide a .art .line {
    margin: 30px 0 15px;
  }
  .news_info_s .swiper-slide a .art .time {
    margin-top: 60px;
  }
}
@media (max-width: 1366px) {
  .news_info {
    padding: 60px 0;
  }
  .news_info_s .swiper-slide a .art h3 {
    font-size: 20px;
    line-height: 24px;
    height: 48px;
  }
  .news_info_s .swiper-slide a .art .line {
    margin: 20px 0 10px;
  }
  .news_info_s .swiper-slide a .art .time {
    margin-top: 50px;
  }
  .news_info_s .swiper-button-prev,
  .news_info_s .swiper-button-next {
    width: 50px;
    height: 50px;
    bottom: 40px;
  }
}
@media (max-width: 990px) {
  .news_info {
    padding: 40px 0;
  }
  .news_info_s .swiper-slide a {
    position: relative;
    height: auto;
    padding-bottom: 0;
  }
  .news_info_s .swiper-slide a .imgbox {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 54%;
  }
  .news_info_s .swiper-slide a .imgbox img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .news_info_s .swiper-slide a .art {
    position: relative;
    width: 100%;
    padding: 20px;
  }
  .news_info_s .swiper-slide a .art h3 {
    margin-top: 10px;
  }
  .news_info_s .swiper-slide a .art .time {
    margin-top: 20px;
  }
  .news_info_s .swiper-slide a .art .time .left{
    display: flex;
  }
  .news_info_s .swiper-slide a .art .time .left p {
    order: 2;
    font-family: 'din';
    font-size: 16px;
    line-height: 1.75;
    padding-left: 5px;
    position: relative;
  }
  .news_info_s .swiper-slide a .art .time .left p:before{
    content: '.';
    position: absolute;
    left: 0px;
    bottom: 0;
    color: #fff;
  }
  .news_info_s .swiper-pagination {
    width: 100%;
    text-align: center;
    left: 0;
  }
}
.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 60px;
}
.news_list li {
  width: 49%;
  margin-bottom: 28px;
  margin-right: 2%;
}
.news_list li:nth-child(2n) {
  margin-right: 0;
}
.news_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #e8edf2;
  padding: 40px 40px 0 40px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
}
.news_list li a:before {
  content: '';
  width: 191px;
  height: 172px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/bd2.png) no-repeat right bottom;
  opacity: 0;
}
.news_list li a:hover {
  background: #00263b;
}
.news_list li a:hover:before {
  opacity: 1;
}
.news_list li a:hover h3,
.news_list li a:hover .info,
.news_list li a:hover .more span {
  color: #fff;
}
.news_list li a:hover .more {
  border-top: 1px solid rgba(227, 231, 235, 0.2);
}
.news_list li a:hover .more i {
  background: url(../images/r3_2.png) no-repeat center;
}
.news_list li a .time {
  font-size: 16px;
  font-family: 'din';
  color: #00aeaf;
}
.news_list li a h3 {
  font-size: 26px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 23px 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.news_list li a .info {
  text-align: left;
  font-size: 16px;
  line-height: 32px;
  height: 64px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 46px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.news_list li a .more {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-top: 1px solid #d0d9df;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.news_list li a .more span {
  font-family: 'din';
  color: #999999;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.news_list li a .more i {
  display: block;
  width: 30px;
  height: 6px;
  background: url(../images/r3.png) no-repeat center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1366px) {
  .news_list li a h3 {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .news_list li {
    width: 100%;
    margin-right: 0;
  }
  .news_list li a h3 {
    font-size: 20px;
    margin: 15px 0;
  }
  .news_list li a .info {
    margin-bottom: 20px;
  }
  .news_list li a .more {
    height: 60px;
  }
}
.sub_nav {
  background: #f3f6f8;
}
.sub_nav .wrap2 {
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.sub_nav .wrap2 a {
  margin-right: 20px;
  padding-right: 26px;
  position: relative;
  font-size: 16px;
  color: #9c9c9c;
}
.sub_nav .wrap2 a:hover {
  color: #00b2b2;
}
.sub_nav .wrap2 a:before {
  content: '';
  width: 6px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  background: url(../images/r4.png) no-repeat center;
}
.sub_nav .wrap2 a:first-child {
  width: 44px;
  height: 18px;
  background: url(../images/home.png) no-repeat center left;
}
.sub_nav .wrap2 a:first-child:hover {
  background: url(../images/home2.png) no-repeat center left;
}
.sub_nav .wrap2 a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.sub_nav .wrap2 a:last-child:before {
  display: none;
}
@media (max-width: 990px) {
  .sub_nav .wrap2 a {
    margin-right: 10px;
    padding-right: 16px;
    font-size: 15px;
  }
}
.sxy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 30px 40px;
  background: #e3e7eb;
  margin-top: 80px;
}
.sxy a {
  width: calc(50% - 50px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sxy a:hover {
  color: #00b2b2;
}
.sxy a:first-child {
  padding-left: 30px;
  background: url(../images/l.png) no-repeat center left;
}
.sxy a:last-child {
  text-align: right;
  padding-right: 30px;
  background: url(../images/r.png) no-repeat center right;
}
.sxy a:nth-child(2) {
  width: 20px;
  height: 20px;
  background: url(../images/lb.png) no-repeat center;
}
@media (max-width: 1366px) {
  .sxy {
    margin-top: 60px;
  }
}
@media (max-width: 990px) {
  .sxy {
    margin-top: 40px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .sxy a {
    min-width: 50%;
    max-width: 100%;
    width: auto;
  }
  .sxy a:nth-child(2) {
    margin: 15px 0;
  }
}
.news_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: -10px;
}
.news_con .left {
  width: 68%;
}
.news_con .left h3 {
  font-size: 32px;
  line-height: 48px;
  color: #00263b;
  font-weight: 500;
  padding-bottom: 40px;
  border-bottom: 1px solid #e3e7eb;
  font-weight: bold;
}
.news_con .left .time {
  margin: 55px 0;
  padding-left: 30px;
  font-size: 16px;
  font-family: 'din';
  color: #14aaaf;
  background: url(../images/time.png) no-repeat center left;
}
.news_con .left .txt_con {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
}
.news_con .left .txt_con p {
  margin-bottom: 35px;
}
.news_con .news_aside {
  width: 25.5%;
}
.news_con .news_aside h4 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 25px;
}
.news_con .news_aside ul li {
  margin-bottom: 35px;
}
.news_con .news_aside ul li a {
  display: block;
  position: relative;
}
.news_con .news_aside ul li a:hover {
  background: #00263b;
}
.news_con .news_aside ul li a:hover .imgbox .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news_con .news_aside ul li a:hover .art {
  border: none;
  border-bottom: 4px solid #00b2b2;
}
.news_con .news_aside ul li a:hover .art p {
  color: #fff;
}
.news_con .news_aside ul li a:hover .art .more {
  border-top: 1px solid rgba(227, 231, 235, 0.2);
}
.news_con .news_aside ul li a:hover .art .more span {
  color: #fff;
}
.news_con .news_aside ul li a:hover .art .more i {
  background: url(../images/r3_2.png) no-repeat center;
}
.news_con .news_aside ul li a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/nd.png) no-repeat left bottom;
}
.news_con .news_aside ul li a .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 54%;
  overflow: hidden;
}
.news_con .news_aside ul li a .imgbox .img {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news_con .news_aside ul li a .imgbox .img img {
  max-height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.news_con .news_aside ul li a .art {
  padding: 22px 25px 0 25px;
  border: 1px solid #e3e7eb;
  border-top: none;
}
.news_con .news_aside ul li a .art p {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
}
.news_con .news_aside ul li a .art .more {
  height: 75px;
  border-top: 1px solid #e3e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news_con .news_aside ul li a .art .more span {
  font-size: 16px;
  color: #00aeaf;
  font-family: 'din';
}
.news_con .news_aside ul li a .art .more i {
  display: block;
  width: 30px;
  height: 6px;
  background: url(../images/r3.png) no-repeat center;
}
@media (max-width: 1366px) {
  .news_con .left h3 {
    font-size: 24px;
    padding-bottom: 30px;
    line-height: 32px;
  }
  .news_con .left .time {
    margin: 30px 0;
  }
  .news_con .left .txt_con {
    line-height: 32px;
  }
  .news_con .left .txt_con p {
    margin-bottom: 20px;
  }
  .news_con .news_aside h4 {
    font-size: 20px;
  }
}
@media (max-width: 990px) {
  .news_con .news_aside ul li a .art {
    padding: 12px 15px 0 15px;
  }
  .news_con .news_aside ul li a .art p {
    margin-bottom: 15px;
  }
  .news_con .news_aside ul li a .art .more {
    height: 50px;
  }
}
@media (max-width: 768px) {
  .news_con {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news_con .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .news_con .left h3 {
    padding-bottom: 20px;
  }
  .news_con .left .time {
    margin: 15px 0;
  }
  .news_con .left .txt_con {
    line-height: 24px;
  }
  .news_con .news_aside {
    width: 100%;
  }
  .news_con .news_aside ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news_con .news_aside ul li {
    width: 49%;
  }
  .news_con .news_aside ul li a .art {
    padding: 10px 10px 0 10px;
  }
  .news_con .news_aside ul li a .art p {
    font-size: 16px;
    line-height: 24px;
  }
}
.contact_info {
  padding: 120px 0;
  background: url(../images/bg9.png) no-repeat right top;
}
.contact_info h1 {
  font-size: 160px;
  font-weight: 700;
  color: #00aeaf;
  text-transform: uppercase;
}
.contact_info h1 span {
  color: #00263b;
  font-weight: bold;
}
.contact_info h2 {
  margin: 50px 0 20px;
}
.contact_info p.p1 {
  font-size: 18px;
  color: #666666;
}
.cont_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 80px auto 130px;
}
.cont_list li {
  width: 32%;
}
.cont_list li h3 {
  font-size: 32px;
  height: 80px;
  color: #00aeaf;
}
.cont_list li .box {
  padding: 30px 35px 40px 35px;
  background: #f5f7f8;
  border-radius: 8px;
}
.cont_list li .box span,
.cont_list li .box p {
  padding-left: 40px;
}
.cont_list li .box span {
  display: inline-block;
  height: 30px;
  font-size: 24px;
  color: #333333;
  line-height: 30px;
  margin-bottom: 5px;
}
.cont_list li .box .dz {
  background: url(../images/dw.png) no-repeat left center;
  margin-right: 20px;
}
.cont_list li .box .lxr {
  background: url(../images/lxr.png) no-repeat left center;
}
.cont_list li .box .tel {
  background: url(../images/tel.png) no-repeat left center;
  font-size: 40px;
  font-family: 'din';
  line-height: 40px;
  margin-top: 10px;
}
@media (max-width: 1499px) {
  .contact_info h1 {
    font-size: 120px;
  }
  .cont_list li h3 {
    font-size: 30px;
    height: 60px;
  }
  .cont_list li .box {
    padding: 20px;
  }
  .cont_list li .box span {
    font-size: 20px;
  }
  .cont_list li .box .tel {
    font-size: 30px;
  }
  .cont_list li .box span,
  .cont_list li .box p {
    padding-left: 30px;
  }
}
@media (max-width: 1366px) {
  .contact_info {
    padding: 60px 0;
  }
  .contact_info h1 {
    font-size: 80px;
  }
  .cont_list li h3 {
    font-size: 24px;
    height: 40px;
  }
  .cont_list li .box {
    padding: 15px;
  }
  .cont_list li .box span {
    font-size: 18px;
  }
  .cont_list li .box .tel {
    font-size: 24px;
  }
  .cont_list li .box span,
  .cont_list li .box p {
    padding-left: 28px;
  }
  .cont_list {
    margin: 60px auto 80px;
  }
}
@media (max-width: 990px) {
  .contact_info {
    padding: 40px 0;
  }
  .contact_info h1 {
    font-size: 50px;
  }
  .contact_info h2 {
    margin: 30px 0 15px;
  }
  .contact_info p.p1 {
    font-size: 16px;
    line-height: 24px;
  }
  .cont_list {
    margin: 40px auto 10px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .cont_list li {
    width: 100%;
    margin-bottom: 20px;
  }
  .cont_list li h3 {
    height: auto;
    margin-bottom: 20px;
  }
  .cont_list li .box {
    padding: 15px 15px 10px 15px;
  }
  .cont_list li .box .tel {
    margin-top: 0;
  }
  .cont_list li:nth-child(2) h3 {
    margin-bottom: 0;
  }
  .cont_list li .box span {
    font-size: 16px;
  }
}
.map {
  width: 100%;
  height: 666px;
  position: relative;
}
.map #map {
  width: 100%;
  height: 100%;
}
.map .mapbox {
  width: 490px;
  height: 606px;
  max-width: 40%;
  position: absolute;
  right: 30px;
  top: 30px;
  background: rgba(255, 255, 255, 0.9);
  overflow-x: scroll;
}
.map .mapbox::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 6px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.map .mapbox::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #00aeaf;
}
.map .mapbox h2 {
  text-align: center;
  margin: 60px 0 40px;
}
.map .mapbox .maplist {
  margin-right: 20px;
}
.map .mapbox .maplist li a {
  display: block;
  padding: 30px 20px;
  border-top: 3px solid transparent;
  position: relative;
}
.map .mapbox .maplist li a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bd3.png) no-repeat top left;
}
.map .mapbox .maplist li a:hover,
.map .mapbox .maplist li a.on {
  background: #00263b;
  border-top: 3px solid #00aeaf;
}
.map .mapbox .maplist li a:hover .top h3,
.map .mapbox .maplist li a.on .top h3 {
  color: #00aeaf;
}
.map .mapbox .maplist li a:hover .top p,
.map .mapbox .maplist li a.on .top p {
  color: #fff;
}
.map .mapbox .maplist li a:hover .box span,
.map .mapbox .maplist li a.on .box span,
.map .mapbox .maplist li a:hover .box p,
.map .mapbox .maplist li a.on .box p {
  color: #fff;
}
.map .mapbox .maplist li a .top h3 {
  font-size: 24px;
  color: #333333;
  padding-left: 25px;
  background: url(../images/dw2.png) no-repeat center left;
}
.map .mapbox .maplist li a .top p {
  padding-left: 25px;
  font-size: 16px;
  color: #333333;
  margin-top: 10px;
}
.map .mapbox .maplist li a .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 15px;
}
.map .mapbox .maplist li a .box .tel,
.map .mapbox .maplist li a .box .email {
  width: 50%;
}
.map .mapbox .maplist li a .box .tel span {
  background: url('../images/tel2.png') no-repeat center left;
}
.map .mapbox .maplist li a .box .email span {
  background: url('../images/email.png') no-repeat center left;
}
.map .mapbox .maplist li a .box span {
  font-size: 16px;
  padding-left: 25px;
  color: #666666;
}
.map .mapbox .maplist li a .box p {
  padding-left: 25px;
  font-size: 24px;
  line-height: 30px;
  font-family: 'din';
  color: #333333;
}
@media (max-width: 1366px) {
  .map .mapbox h2 {
    margin: 30px 0 20px;
  }
  .map .mapbox .maplist li a .top h3 {
    font-size: 20px;
  }
  .map .mapbox .maplist li a .top p {
    line-height: 24px;
  }
  .map .mapbox .maplist li a .box p {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  .map {
    height: auto;
  }
  .map #map {
    max-height: 300px;
    margin-bottom: 10px;
  }
  .map .mapbox {
    position: relative;
    right: auto;
    top: auto;
    height: 300px;
    width: 100%;
    max-width: 100%;
    background: #f0f3fa;
  }
  .map .mapbox .maplist {
    margin-right: 10px;
    padding-left: 10px;
  }
  .map .mapbox .maplist li a {
    padding: 15px 10px;
  }
  .map .mapbox .maplist li a .box p {
    font-size: 16px;
  }
}
.zxly {
  background: #f5f7f8;
  padding: 120px 0;
}
.zxly h2 {
  color: #00263b;
  text-align: center;
  margin-bottom: 50px;
}
.zxly .form .bd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.zxly .form input {
  width: 48.8%;
  height: 70px;
  line-height: 70px;
  background: #fff;
  color: #999999;
  font-size: 16px;
  padding: 0 25px;
  margin-bottom: 28px;
}
.zxly .form textarea {
  padding: 10px 25px;
  background: #fff;
  color: #999999;
  font-size: 16px;
  line-height: 32px;
  width: 100%;
  height: 195px;
}
.zxly .form button {
  display: block;
  width: 180px;
  height: 48px;
  border-radius: 24px;
  color: #fff;
  background: #00b2b2;
  text-align: center;
  line-height: 48px;
  margin: 48px auto 0;
}
@media (max-width: 1366px) {
  .zxly {
    padding: 60px 0;
  }
  .zxly .form button {
    margin: 30px auto 0;
  }
}
@media (max-width: 990px) {
  .zxly {
    padding: 40px 0;
  }
  .zxly .form input {
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
    line-height: 50px;
  }
  .zxly .form button {
    margin: 20px auto 0;
  }
}
.jobs {
  padding: 120px 0 80px;
}
.jobs h2 {
  text-align: center;
  line-height: 56px;
}
.jobs h2 span {
  color: #00b2b2;
  font-weight: bold;
}
.jobs .top {
  position: relative;
}
.jobs .top .img {
  display: block;
  margin: 80px auto;
}
.jobs .top .art {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.jobs .top .art img {
  margin-bottom: 20px;
}
.jobs .top .art .info {
  width: 880px;
  max-width: 100%;
  font-size: 18px;
  line-height: 36px;
  color: #666666;
}
.jobs2 {
  padding: 120px 0;
  background: #f5f7f8;
}
.jobs2 .tabtitle {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.jobs2 .tabtitle a {
  margin-right: 20px;
  position: relative;
  z-index: 1;
  color: #00263b;
  font-weight: bold;
}
.jobs2 .tabtitle a:hover,
.jobs2 .tabtitle a.on {
  color: #00aeaf;
}
.jobs2 .tabtitle a:first-child {
  padding-right: 70px;
}
.jobs2 .tabtitle a:first-child:before {
  content: '&';
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0px;
  margin-left: -20px;
  top: 0;
  text-align: center;
  color: #999999;
}
.jobs2 .tabtitle a:last-child {
  margin-right: 0;
}
.jobs2 .tabbox .item {
  display: none;
}
.jobs2 .tabbox .item.on {
  display: block;
}
.jobs2 .tabbox .item ul li {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.jobs2 .tabbox .item ul li.on {
  margin-bottom: 20px;
}
.jobs2 .tabbox .item ul li.on .top.top2 {
  height: auto;
}
.jobs2 .tabbox .item ul li.on .top {
  background: #e8edf2;
}
.jobs2 .tabbox .item ul li.on .art {
  height: auto;
  padding: 45px;
}
.jobs2 .tabbox .item ul li .top {
  display: block;
  border: 1px solid #e3e7eb;
  background: #fff;
  position: relative;
  padding: 0 45px;
  margin-bottom: 15px;
}
.jobs2 .tabbox .item ul li .top:hover {
  background: #e8edf2;
}
.jobs2 .tabbox .item ul li .top.top2 {
  background: #00263b;
  border: none;
  height: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
  margin-bottom: 0;
}
.jobs2 .tabbox .item ul li .top.top2 .zw {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.jobs2 .tabbox .item ul li .top.top2 .zw h3 {
  color: #fff;
  background: url(../images/ren2.png) no-repeat left center;
}
.jobs2 .tabbox .item ul li .top.top2 .zw .time {
  color: #fff;
}
.jobs2 .tabbox .item ul li .top.top2 .xx {
  color: #fff;
}
.jobs2 .tabbox .item ul li .top.top2 .xx .more_span {
  color: #fff;
}
.jobs2 .tabbox .item ul li .top:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bd4.png) no-repeat left top;
}
.jobs2 .tabbox .item ul li .top .zw {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e3e7eb;
}
.jobs2 .tabbox .item ul li .top .zw h3 {
  font-size: 24px;
  color: #00b2b2;
  line-height: 90px;
  padding-left: 48px;
  background: url(../images/ren.png) no-repeat left center;
}
.jobs2 .tabbox .item ul li .top .zw .time {
  font-size: 18px;
  color: #666666;
}
.jobs2 .tabbox .item ul li .top .xx {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 18px;
  color: #333333;
}
.jobs2 .tabbox .item ul li .top .xx p.p1 span {
  margin-right: 60px;
}
.jobs2 .tabbox .item ul li .top .xx p.p1 span:last-child {
  margin-right: 0;
}
.jobs2 .tabbox .item ul li .top .xx .more_span {
  color: #999999;
  padding-right: 33px;
  background: url(../images/jb.png) no-repeat right center;
}
.jobs2 .tabbox .item ul li .art {
  background: #e8edf2;
  width: 100%;
  padding: 0 45px;
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.jobs2 .tabbox .item ul li .art .sq_a {
  position: absolute;
  right: 45px;
  bottom: 45px;
  color: #00b2b2;
  font-size: 18px;
  padding-right: 33px;
  background: url(../images/jt.png) no-repeat right center;
}
.jobs2 .tabbox .item ul li .art h4 {
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
}
.jobs2 .tabbox .item ul li .art h4.ms {
  margin-top: 30px;
}
.jobs2 .tabbox .item ul li .art .info {
  text-align: left;
  font-size: 18px;
  line-height: 36px;
}
.jobs2 .tabbox .item ul li .art .info p {
  margin: 0;
}
@media (max-width: 1366px) {
  .jobs {
    padding: 60px 0 40px;
  }
  .jobs h2 {
    line-height: 40px;
  }
  .jobs .top .img {
    margin: 40px auto;
  }
  .jobs .top .art .info {
    font-size: 16px;
    line-height: 32px;
  }
  .jobs2 {
    padding: 60px 0;
  }
  .jobs2 .tabbox .item ul li .top .zw {
    height: 60px;
  }
  .jobs2 .tabbox .item ul li .top .zw h3,
  .jobs2 .tabbox .item ul li .top.top2 .zw h3 {
    font-size: 20px;
    line-height: 60px;
    background-size: 20px auto;
    padding-left: 35px;
  }
  .jobs2 .tabbox .item ul li .top .zw .time {
    font-size: 16px;
  }
  .jobs2 .tabbox .item ul li .top .xx {
    font-size: 16px;
    height: 50px;
  }
  .jobs2 .tabtitle {
    margin-bottom: 40px;
  }
}
@media (max-width: 990px) {
  .jobs {
    padding: 30px 0 20px;
  }
  .jobs h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .jobs .top .img {
    margin: 20px auto 0;
  }
  .jobs .top .art {
    position: relative;
    top: auto;
    left: auto;
  }
  .jobs .top .art img {
    max-width: 30px;
    margin-bottom: 10px;
  }
  .jobs .top .art .info {
    line-height: 24px;
  }
  .jobs2 {
    padding: 40px 0;
  }
  .jobs2 .tabtitle a:first-child {
    padding-right: 50px;
    margin-right: 0;
  }
  .jobs2 .tabbox .item ul li .top {
    padding: 0 15px;
  }
  .jobs2 .tabbox .item ul li .top .zw h3,
  .jobs2 .tabbox .item ul li .top.top2 .zw h3 {
    font-size: 16px;
    background-size: 18px auto;
    padding-left: 25px;
  }
  .jobs2 .tabbox .item ul li .top .zw .time {
    font-size: 14px;
  }
  .jobs2 .tabbox .item ul li .top .xx {
    font-size: 14px;
  }
  .jobs2 .tabbox .item ul li .top .xx .more_span {
    width: 17px;
    font-size: 0;
    height: 17px;
  }
  .jobs2 .tabbox .item ul li .top .xx p.p1 span {
    margin-right: 20px;
  }
  .jobs2 .tabbox .item ul li .art {
    padding: 0 15px;
  }
  .jobs2 .tabbox .item ul li.on .art {
    padding: 20px 15px 15px;
    max-height: 300px;
    overflow-y: scroll;
  }
  .jobs2 .tabbox .item ul li.on .art::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 2px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
  }
  .jobs2 .tabbox .item ul li.on .art::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #fff;
  }
  .jobs2 .tabbox .item ul li .art h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .jobs2 .tabbox .item ul li .art .info {
    font-size: 16px;
    line-height: 24px;
  }
  .jobs2 .tabbox .item ul li .art .sq_a {
    right: 15px;
    bottom: 10px;
    font-size: 16px;
    position: relative;
    margin: 20px;
    margin-bottom: 0;
    margin-left: auto;
    display: inline-block;
    float: right;
  }
  .jobs2 .tabtitle a:first-child:before {
    top: 5px;
  }
}





/*app-头部*/

.app_ss {
  width: 90%;
  height: 48px;
  border-radius: 48px;
  border: 2px solid #999;
  display: block;
  position: static;
  float: none;
  margin: 0 auto;
  padding: 0 25px;
  display: none;
}

.app_ss:hover {
  border: 2px solid #999;
}

.app_ss input {
  width: 90%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  color: #333;
}

.app_ss input:-moz-placeholder {
  color: #333;
}

.app_ss input:-ms-input-placeholder {
  color: #333;
}

.app_ss input::-webkit-input-placeholder {
  color: #333;
}

.app_ss button {
  float: right;
  width: 10%;
  height: 100%;
  border: none;
  background: none;
  background-repeat: no-repeat;
  background-position: center;
}

.app_ss button img {
  width: 18px;
  height: 18px;
}

.header-app {
  background: #fff;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  -webkit-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1), height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
  -o-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1), height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1), height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
}

.header-app.open-menu {
  height: auto;
  min-height: 500px;
  background: #fff;
  box-shadow: 3px 0 7px 0 rgba(0, 0, 0, .1);
  -webkit-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1), height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
  -o-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1), height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1), height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
}

.navbar-app {
  position: relative;
  -webkit-box-shadow: 3px 0 7px 0 rgba(0, 0, 0, .1);
  box-shadow: 3px 0 7px 0 rgba(0, 0, 0, .1);
  height: 60px;
  text-align: center;
}

.header-app .logo {
  float: left;
  height: 60px;
  vertical-align: middle;
  padding: 15px 15px;
}

.header-app .logo img {
  height: 100%;
}

.navbar-togger {
  float: right;
  background: transparent;
  border: none;
  padding: 22px 15px;
  display: inline-block;
  visibility: visible;
  transition: transform 0.44s 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96), opacity 0.28s 0.36s cubic-bezier(0.52, 0.16, 0.24, 1), -webkit-transform 0.44s 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96);
}

.navbar-togger .icon_bar {
  width: 24px;
  height: 2px;
  background-color: #333;
  opacity: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.navbar-togger .icon_bar:nth-of-type(2) {
  margin: 5px 0;
}

.open-menu .navbar-togger .icon_bar:nth-of-type(2) {
  opacity: 0;
}

.open-menu .navbar-togger .icon_bar:first-child {
  -webkit-transform: translate(0, 7px) rotate(45deg);
  -ms-transform: translate(0, 7px) rotate(45deg);
  transform: translate(0, 7px) rotate(45deg);
}

.open-menu .navbar-togger .icon_bar:last-child {
  -webkit-transform: translate(0, -7px) rotate(-45deg);
  -ms-transform: translate(0, -7px) rotate(-45deg);
  transform: translate(0, -7px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: 60px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 620;
  padding: 20px 0px;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 1s;
  -o-transition: visibility 0s linear 1s;
  transition: visibility 0s linear 1s;
}

.header-app.open-menu .nav-menu {
  visibility: visible;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-list li {
  opacity: 0;
  pointer-events: none;
}

.nav-list li.open {
  border-bottom: none;
}

.header-app.open-menu .nav-list li {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.nav-list li:nth-child(1) {
  -webkit-transform: translateY(-44px);
  -ms-transform: translateY(-44px);
  transform: translateY(-44px);
  transition: opacity .3345s cubic-bezier(0.52, 0.16, 0.52, 0.84) .15s, transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s, -webkit-transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s;
}

.header-app.open-menu .nav-list li:nth-child(1) {
  transition: opacity .3091s cubic-bezier(0.32, 0.08, 0.24, 1) .03s, transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s, -webkit-transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s;
}

.nav-list li:nth-child(2) {
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  transition: opacity .29294s cubic-bezier(0.52, 0.16, 0.52, 0.84) .13s, transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s, -webkit-transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s;
}

.header-app.open-menu .nav-list li:nth-child(2) {
  transition: opacity .32244s cubic-bezier(0.32, 0.08, 0.24, 1) .05s, transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s, -webkit-transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s;
}

.nav-list li:nth-child(3) {
  -webkit-transform: translateY(-36px);
  -ms-transform: translateY(-36px);
  transform: translateY(-36px);
  transition: opacity .26098s cubic-bezier(0.52, 0.16, 0.52, 0.84) .11s, transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s, -webkit-transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s;
}

.header-app.open-menu .nav-list li:nth-child(3) {
  transition: opacity .33467s cubic-bezier(0.32, 0.08, 0.24, 1) .07s, transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s, -webkit-transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s;
}

.nav-list li:nth-child(4) {
  -webkit-transform: translateY(-32px);
  -ms-transform: translateY(-32px);
  transform: translateY(-32px);
  transition: opacity .2386s cubic-bezier(0.52, 0.16, 0.52, 0.84) .09s, transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s, -webkit-transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s;
}

.header-app.open-menu .nav-list li:nth-child(4) {
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .09s, transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s, -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s;
}

.nav-list li:nth-child(5) {
  -webkit-transform: translateY(-28px);
  -ms-transform: translateY(-28px);
  transform: translateY(-28px);
  transition: opacity .22581s cubic-bezier(0.52, 0.16, 0.52, 0.84) .07s, transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s, -webkit-transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s;
}

.header-app.open-menu .nav-list li:nth-child(5) {
  transition: opacity .35577s cubic-bezier(0.32, 0.08, 0.24, 1) .11s, transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s, -webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s;
}

.nav-list li:nth-child(6) {
  -webkit-transform: translateY(-24px);
  -ms-transform: translateY(-24px);
  transform: translateY(-24px);
  transition: opacity .20343s cubic-bezier(0.52, 0.16, 0.52, 0.84) .05s, transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s, -webkit-transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s;
}

.header-app.open-menu .nav-list li:nth-child(6) {
  transition: opacity .36577s cubic-bezier(0.32, 0.08, 0.24, 1) .13s, transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s, -webkit-transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s;
}

.nav-list li:nth-child(7) {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  transition: opacity .18105s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s, transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s, -webkit-transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s;
}

.header-app.open-menu .nav-list li:nth-child(7) {
  transition: opacity .37577s cubic-bezier(0.32, 0.08, 0.24, 1) .15s, transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s, -webkit-transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s;
}

.nav-list li:nth-child(8) {
  -webkit-transform: translateY(-16px);
  -ms-transform: translateY(-16px);
  transform: translateY(-16px);
  transition: opacity .15867s cubic-bezier(0.52, 0.16, 0.52, 0.84) .01s, transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s, -webkit-transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s;
}

.header-app.open-menu .nav-list li:nth-child(8) {
  transition: opacity .38577s cubic-bezier(0.32, 0.08, 0.24, 1) .17s, transform .40582s cubic-bezier(0.32, 0.08, 0.24, 1) .16s, -webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .16s;
}

.cate-item {
  position: relative;
  padding: 0px 15px;
}

.cate-item a {
  font-size: 16px;
  line-height: 40px;
  margin-right: 60px;
  display: inline-block;
  color: #333;
  
}

.nav-list li.active .cate-item a,
.nav-list li.open .cate-item a {
  color: #14aaaf;
}

.category-cont a:last-child {
  border: none;
}

.category-cont a.active {
  color: #14aaaf;
}

.category-tig {
  font-size: 14px;
  color: #888;
  text-align: right;
  line-height: 48px;
  width: 50px;
  height: 48px;
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 2;
}

.category-tig::before,
.category-tig::after {
  content: '';
  background: #333;
  position: absolute;
  top: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.category-tig::before {
  width: 16px;
  height: 2px;
  right: 0;
  margin-top: -1px;
}

.category-tig::after {
  width: 2px;
  height: 16px;
  margin-top: -8px;
  right: 7px;
}

.nav-list li.open .category-tig::after {
  opacity: 0;
}

.nav-list li.open .category-tig::before {
  background: #14aaaf;
}

.category-cont {
  display: none;
  padding: 0 15px;
  background: rgb(246, 248, 253);
  padding-top: 7px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.nav-list li.open .category-cont {
  display: block;
}

.category-pad {
  padding: 0 0px;

}

.category-cont a {
  font-size: 14px;
  line-height: 35px;
  display: block;
  color: #333;
}

.category-pad a.on {
  color: #14aaaf !important;
}

.lan-box-app {
  padding: 20px 0;
  text-align: center;
  /* display: none; */
}

.lan-box-app a {
  font-size: 14px;
  color: #333;
  display: inline-block;
  padding: 0 10px;
  position: relative;
}

.lan-box-app a:after {
  content: '';
  width: 1px;
  height: 10px;
  background: #333;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}

.lan-box-app a:hover,
.lan-box-app a.on {
  color: #14aaaf;
}

.lan-box-app a:last-child:after {
  display: none;
}


























/* pc导航 */
.content {
  min-height: 500px;
}

.content2 {
  /* margin-top: 100px; */
}

.header {
  z-index: 1000;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 84px;
  background: rgba(255, 255, 255, .5);
  transition: all .5s;
  border-bottom: 1px solid rgb(225, 224, 224);
  transition: .5s all;
}

.header2 {
  /* top: -84px; */
  background-color: #fff;
}

.header .logo {
  width: 145px;
  float: left;
  padding: 15px 0;
  transition: all .5s;
  margin-left: 58px;
}

.header .logo img {
  width: 100%;
  transition: all .5s;
}

.header .rig {
  float: right;
  /* position: relative; */
}

.header .navbar {
  float: left;
}

.header .navbar .category-item {
  float: left;
  margin-right: 55px;
  /* position: relative; */
}

.header .navbar .category-item:last-child {
  margin-right: 0;
}

.header .navbar .category-item .category-a {
  display: block;
  font-size: 20px;
  color: #333333;
  line-height: 84px;
  position: relative;
  transition: all .3s;
  
}

.header .navbar .category-item .category-a::before {
  content: '';
  width: 0%;
  height: 4px;
  border-radius: 4px;
  background: #14aaaf;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  transition: all .5s;
}

.header .navbar .category-item.active .category-a::before,
.header .navbar .category-item:hover .category-a::before {
  width: 100%;
}

.header .navbar .category-item:hover .category-a {
  color: #14aaaf;
}

.header .navbar .category-item.active .category-a {
  color: #14aaaf;
  font-weight: bold;
}

/*导航 尾部 */
.weibu {
  line-height: 84px;
  float: left;
  margin-left: 65px;
}

.weibu .sousuo {
  width: 20px;
  float: left;
  cursor: pointer;
}

.weibu .sousuo img {
  width: 100%;
  margin-bottom: -3px;
}

.weibu .a {
  font-size: 20px;
  color: #999;
  float: left;
  margin: 0 20px;
}

.weibu .a:hover {
  color: #14aaaf;
}

.weibu .yyqh {
  float: left;
  position: relative;
}

.weibu .yyqh a {
  
  font-size: 24px;
  color: #999;
  text-transform: uppercase;
  line-height: 24px;
}

.weibu .yyqh .a1 {
  display: block;
  line-height: 86px;
}

.weibu .yyqh .a2 {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.weibu .yyqh a:hover {
  color: #14aaaf;
}

.weibu .yyqh:hover .a2 {
  opacity: 1;
  z-index: 1;
  top: 54px;
}

/* 搜索 */
.lbotal {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 900px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  display: none;
}

.lbotal .c2 {
  float: left;
  width: 60px;
  height: 48px;
  border: none;
  cursor: pointer;
  background: url(../images/img1.png) no-repeat center center;
  background-size: 20px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.lbotal.on .c2 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.5s ease;
}

.lbotal .c1 {
  float: left;
  width: 780px;
  border: none;
  height: 48px;
  padding: 0 10px;
  font-size: 16px;
  opacity: 0;
  transform: translateX(80%);
  transition: all 0.5s ease;
}

.lbotal.on .c1 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.8s ease;
}

.lbotal>.bgcl {
  float: left;
  height: 48px;
  width: 58px;
  position: relative;
  z-index: 2;
  background: url(../images/img2.png) no-repeat center center;
  background-size: 18px;
}



/*===============产品下拉==============*/
.navbar .category-item .two {
  width: 100%;
  opacity: 0;
  max-height: 0;
  height: auto;
  transition: all .8s;
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  overflow: hidden;
  z-index: -1;

}

.navbar .category-item:hover>.two {
  opacity: 1;
  max-height: 1000px;
  z-index: 1;
}

.navbar .category-item .two::before {
  content: '';
  width: 25.3%;
  height: 100%;
  background: rgb(249, 249, 249);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.navbar .category-item .two .div8,
.navbar .category-item .two .div7,
.navbar .category-item .two .div4,
.navbar .category-item .two .div1 {
  padding-top: 46px;
  padding-bottom: 60px;
}

.navbar .category-item .two .div5 {
  padding-bottom: 60px;
}

/* div1 */
.navbar .category-item .two .div1 {
  width: 25.3%;
  height: 100%;
  float: left;
}

.navbar .category-item .two .div1 a {
  display: block;
  width: 100%;
  line-height: 70px;
  padding-left: 168px;
  font-size: 18px;
  color: #333333;
  background: rgb(249, 249, 249);
  
  position: relative;
  transition: all 0s;

  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.navbar .category-item .two .div1 a.on {
  background: #14aaaf;
  color: #fff;
}

.navbar .category-item .two .div1 a::before {
  content: '';
  width: 8px;
  height: 13px;
  background-image: url(../images/img17.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  transition: all .5s;
}

.navbar .category-item .two .div1 a.on::before {
  right: 7%;
}

.navbar .category-item .two .div1 a i {
  width: 28px;
  height: 30px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 15px;
}

.navbar .category-item .two .div1 a i img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: all .5s; */
}

.navbar .category-item .two .div1 a i .ig2 {
  left: 0;
  opacity: 0;
}

.navbar .category-item .two .div1 a.on i .ig2 {
  left: 50%;
  opacity: 1;
}

.navbar .category-item .two .div1 a.on i .ig1 {
  left: 100%;
  opacity: 0;
}

/* div2 */
.navbar .category-item .two .div2 {
  width: 74.7%;
  height: 100%;
  float: left;
}

/* div3 */
.navbar .category-item .two .div3 {
  width: 100%;
  display: none;
}

.navbar .category-item .two .div3.on1 {
  display: block;
}

/* div4 */
.navbar .category-item .two .div4 {
  width: 21.5%;
  height: 100%;
  float: left;
}

.navbar .category-item .two .div4 a {
  display: block;
  width: 100%;
  line-height: 52px;
  padding-left: 90px;
  font-size: 16px;
  color: #888888;
  position: relative;
  


  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.navbar .category-item .two .div4 a::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(153, 153, 153);
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  transition: all .5s;
}

.navbar .category-item .two .div4 a.on2 {
  color: #14aaaf;
}

.navbar .category-item .two .div4 a.on2::before {
  background: #14aaaf;
}

/* div5 */
.navbar .category-item .two .div5 {
  width: 78.5%;
  height: 100%;
  float: left;
}

.navbar .category-item .two .div6 {
  width: 100%;
  display: none;
}

.navbar .category-item .two .div6.on3 {
  display: block;
}

/* div7 */
.navbar .category-item .two .div7 {
  width: 54%;
  height: 100%;
  float: left;
  border-right: 1px solid rgb(249, 249, 249);
  border-left: 1px solid rgb(249, 249, 249);
}

.navbar .category-item .two .div7 .rq1 {
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 53px;
  background: #fff;
}

.navbar .category-item .two .div7 .rq1:nth-child(2n) {
  background: rgb(249, 249, 249);
}

.navbar .category-item .two .div7 .rq1 .a {
  font-size: 18px;
  color: #333333;
  
  padding-left: 12px;
  position: relative;
}

.navbar .category-item .two .div7 .rq1 .a::before {
  content: '';
  width: 3px;
  height: 18px;
  background: #14aaaf;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.navbar .category-item .two .div7 .rq1 .rq2 {
  width: 100%;
}

.navbar .category-item .two .div7 .rq1 .rq2 .a_fl {
  display: block;
  width: 50%;
  float: left;
  margin-top: 15px;
  height: 50px;
  line-height: 50px;
  padding-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  font-size: 16px;
  color: #888888;
  
}

.navbar .category-item .two .div7 .rq1 .rq2 .a_fl.on4 {
  color: #14aaaf;
}

.navbar .category-item .two .div7 .rq1 .rq2 .a_fl div {
  width: 50px;
  height: 50px;
  position: relative;
  float: left;
  margin-right: 10px;
}

.navbar .category-item .two .div7 .rq1 .rq2 .a_fl div img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navbar .category-item .two .div7 .rq1 .rq2 .a_fl span {
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  line-height: 21px;
  padding: 0 8px;
  border-radius: 21px;
  background: #14aaaf;
  text-transform: uppercase;
  margin-left: 8px;
}

/* div8 */
.navbar .category-item .two .div8 {
  width: 46%;
  height: 100%;
  float: left;
  position: relative;
  padding-bottom: 74px;
}

.navbar .category-item .two .div8 .a {
  width: 100%;
  font-size: 16px;
  color: #666666;
  
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar .category-item .two .div8 .a:hover {
  color: #14aaaf;
}

.navbar .category-item .two .div8 .a i {
  width: 8px;
  height: 13px;
  background-image: url(../images/img25.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: -2px;
  transition: all .5s;
}

.navbar .category-item .two .div8 .a:hover i {
  background-image: url(../images/img26.png);
}


.navbar .category-item .two .div9 {
  width: 100%;
  display: none;
}

.navbar .category-item .two .div9.on5 {
  display: block;
}

.navbar .category-item .two .div9 a {
  display: block;
  width: 100%;
  padding-left: 65px;
  padding-right: 80px;
  padding-top: 15px;
}

.navbar .category-item .two .div9 .top {
  width: 100%;
  height: 300px;
  position: relative;
}

.navbar .category-item .two .div9 .top img {
  max-width: 90%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
}

.navbar .category-item .two .div9:hover .top img {
  transform: translate(-50%, -50%) scale(1.05);
}

.navbar .category-item .two .div9 .bot {
  width: 100%;
}

.navbar .category-item .two .div9 .bot .p1 {
  font-size: 30px;
  color: #333333;
  text-align: center;
  
  padding-top: 16px;
  margin-bottom: 10px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar .category-item .two .div9 .bot .p2 {
  font-size: 16px;
  color: #888888;
  text-align: center;
  
  line-height: 26px;
}

.navbar .category-item .two .div9 .bot .p3 {
  text-align: center;
  margin-top: 12px;
}

.navbar .category-item .two .div9 .bot .p3 span {
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  line-height: 21px;
  padding: 0 8px;
  border-radius: 21px;
  background: #14aaaf;
}


/* two2 半屏下拉 */
.header .navbar .category-item:nth-child(1),
.header .navbar .category-item:nth-child(3),
.header .navbar .category-item:nth-child(4),
.header .navbar .category-item:nth-child(5),
.header .navbar .category-item:nth-child(6),
.header .navbar .category-item:nth-child(7) {
  position: relative;
}

.navbar .category-item .two2 {
  width: 560px;
  opacity: 0;
  max-height: 0;
  height: auto;
  transition: all .8s;
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  overflow: hidden;
  z-index: -1;

}

.navbar .category-item:hover>.two2 {
  opacity: 1;
  max-height: 800px;
  z-index: 1;
}

.navbar .category-item .two2 .div {
  width: 100%;
  height: 100%;
}

.navbar .category-item .two2 .div1 {
  width: 46.5%;
  height: 100%;
  float: left;
  /* border-right: 1px solid rgb(249,249,249); */
  background: rgb(249, 249, 249);
}

.navbar .category-item .two2 .div1,
.navbar .category-item .two2 .div2 {
  padding: 15px 0;
}

.navbar .category-item .two2 .div1 a {
  display: block;
  width: 100%;
  padding: 19px 0;
  padding-left: 40px;
  /* margin-bottom: 38px; */


  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0s;
}

.navbar .category-item .two2 .div1 a:last-child {
  margin-bottom: 0;
}

.navbar .category-item .two2 .div1 a.on {
  background: #14aaaf;
}

.navbar .category-item .two2 .div1 a span {
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  
  display: block;
  float: left;
  position: relative;
}

.navbar .category-item .two2 .div1 a.on span {
  color: #fff;
}

/* .navbar .category-item .two2 .div1 a span::before{
    content: '';
    width: 0%;
    height: 4px;
    border-radius: 4px;
    background: #14aaaf;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: all .5s;
  }
  .navbar .category-item .two2 .div1 a.on span::before{
    width: 100%;
  } */
.navbar .category-item .two2 .div1 a i {
  width: 28px;
  height: 30px;
  display: block;
  float: left;
  position: relative;
  margin-right: 24px;
}

.navbar .category-item .two2 .div1 a i img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: all .5s; */
}

.navbar .category-item .two2 .div1 a i .ig2 {
  left: 0;
  opacity: 0;
}

.navbar .category-item .two2 .div1 a.on i .ig2 {
  left: 50%;
  opacity: 1;
}

.navbar .category-item .two2 .div1 a.on i .ig1 {
  left: 100%;
  opacity: 0;
}

.navbar .category-item .two2 .div2 {
  width: 53.5%;
  height: 100%;
  float: left;
}

.navbar .category-item .two2 .div2 .div3 {
  width: 100%;
  display: none;
}

.navbar .category-item .two2 .div2 .div3.on1 {
  display: block;
}

.navbar .category-item .two2 .div2 a {
  display: block;
  width: 100%;
  margin-bottom: 28px;
  padding-left: 68px;
  position: relative;
  font-size: 16px;
  
  color: #888888;


  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.navbar .category-item .two2 .div2 a:hover {
  color: #14aaaf;
}

.navbar .category-item .two2 .div2 a:last-child {
  margin-bottom: 0;
}

.navbar .category-item .two2 .div2 a::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #888888;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s;
}

.navbar .category-item .two2 .div2 a:hover::before {
  background: #14aaaf;
}



/* two3 */
.navbar .category-item .two2.two3 {
  width: 260px;
  /* padding: 0 60px;
    width: auto; */
}

.navbar .category-item .two2.two3 .div1 {
  width: 100%;
}

.navbar .category-item .two2.two3 .div2 a {
  padding-left: 0;
  /* text-align: center; */
}




/* 三级 */
.category-pad .rq1 {
  position: relative;
  padding-right: 10px;
}

.category-pad .rq1 a {
  font-size: 14px;
  color: #666666;
}

.category-pad .rq1 .zt {
  font-size: 14px;
  color: #888;
  text-align: right;
  line-height: 48px;
  width: 50px;
  height: 48px;
  position: absolute;
  right: 17px;
  top: 0;
  z-index: 2;
}

.category-pad .rq1 .zt::before,
.category-pad .rq1 .zt::after {
  content: '';
  background: rgb(160, 160, 160);
  position: absolute;
  top: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.category-pad .rq1 .zt::before {
  width: 14px;
  height: 2px;
  right: 0;
  margin-top: -1px;
}

.category-pad .rq1 .zt::after {
  width: 2px;
  height: 14px;
  margin-top: -7px;
  right: 6px;
}

.category-pad .rq.on2 .rq1 .zt::after {
  opacity: 0;
}

.category-pad .rq2 {
  display: none;
  padding: 0 15px;
}

.category-pad .rq2 a {
  font-size: 13px;
  line-height: 28px;
  color: #999999;
}

.category-cont .category-pad .rq:last-child .rq1 a {
  border: none;
}

.category-cont .rq.on2 .rq1 a {
  color: #14aaaf;
}

.category-cont .rq.on2 .rq2 {
  display: block;
}

.category-cont .rq.on2 .rq2 a.on3 {
  color: #14aaaf;
}

.category-cont .rq.on2 .rq1 .zt::before {
  background: #14aaaf;
}



@media (max-width: 1680px) {}



@media (max-width: 1459px) {
  .header .navbar .category-item .category-a {
    font-size: 14px;
  }
}

@media (max-width: 1259px) {
  .header .navbar .category-item {
    margin-right: 30px;
  }

  .lbotal {
    width: 700px;
  }

  .lbotal .c1 {
    width: 580px;
  }

}

@media (max-width: 991px) {
  .header {
    display: none;
  }

  .header-app {
    display: block;
  }

  .foot_bot .rig,
  .foot_bot .lef .top {
    display: none;
  }

  .foot_bot .lef {
    width: 100%;
  }

  .foot {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .foot_bot .lef .bot .div {
    text-align: center;
  }

  .content {
    margin-top: 60px;
  }

  .header-app .logo img {
    /* width: 100px; */
    height: 36px;
  }

  .header-app .logo {
    padding: 12px 15px;
  }

  .app_ss2 {
    float: right;
    width: 20px;
    height: 20px;
    background-image: url(../images/img1.png);
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    margin: 20px 0;
  }

  .lbotal {
    right: 50px;
    height: 32px;
    width: 160px;
    border-radius: 25px;
    /* display: block; */
  }

  .lbotal .c2 {
    width: 30px;
    height: 30px;
    background-size: 15px;
    transform: translateX(0px);
  }

  .lbotal .c1 {
    width: 96px;
    transform: translateX(0%);
    height: 30px;
    padding: 0 5px;
    font-size: 12px;
    color: #666;
  }

  .lbotal>.bgcl {
    height: 30px;
    width: 30px;
    background-size: 13px;
  }

}

@media (max-width: 768px) {}

@media (max-width: 414px) {}

.header:hover {
  background: rgba(255, 255, 255, 1);
}


.cate-item .icon-down {
  display: block;
  font-size: 20px;
  width: 30px;
  height: 30px;
  right: 30px;
  line-height: 40px;
  color: #999;
  transition: all .36s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/b2.png")no-repeat center;
}

.header-app.open-menu .nav-list li.open .icon-down {
  transform: translateY(-50%) rotate(180deg);
}