﻿@charset "utf-8";

:root {
  --main-color: #0067a0;
  /* ====== Transition ====== */
  --tran-03: all 0.3s ease;
  --tran-04: all 0.4s ease;
  --tran-05: all 0.5s ease;
  --tran-06: all 0.6s ease;
}

/* 引入字体 */
/*@font-face {
  font-family: "PingFang SC";
  src: url(https://yidi-1251520952.file.myqcloud.com/uploadpeixun/PingFang-Regular.ttf);
}*/

body,
input,
textarea,
button {
  /*font-family: "PingFang SC", "SourceHanSansCN", "Microsoft YaHei", "Tahoma", "Arial", "sans-serif";*/
  font-family: "Arial", "sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background: var(--main-color);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  color: #c9c9c9;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
  color: #c9c9c9;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* IE 10+ */
  font-size: 14px;
  color: #c9c9c9;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px;
  color: #c9c9c9;
}

.ho6 .input::-webkit-input-placeholder {
  color: #ffffff !important;
}

.ho6 .input::-moz-placeholder {
  color: #ffffff !important;
}

.ho6 .input::-ms-input-placeholder {
  color: #ffffff !important;
}

.ho6 .input::-moz-placeholder {
  color: #ffffff !important;
}

.err-input::-webkit-input-placeholder {
  color: #aa261b !important;
}

.err-input::-moz-placeholder {
  color: #aa261b !important;
}

.err-input::-ms-input-placeholder {
  color: #aa261b !important;
}

.err-input::-moz-placeholder {
  color: #aa261b !important;
}

.navbar-toggle {
  display: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none !important;
  z-index: 100;
}

.navbar-toggle .line-top,
.navbar-toggle .line-middle,
.navbar-toggle .line-bottom {
  display: block;
  width: 20px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.4s;
}

.open .line-top {
  -webkit-transform: rotate(45deg) translate(2px, 7px);
  transform: rotate(45deg) translate(2px, 7px);
}

.open .line-middle {
  opacity: 0;
}

.open .line-bottom {
  -webkit-transform: rotate(-45deg) translate(1px, -7px);
  transform: rotate(-45deg) translate(1px, -7px);
}

/* css动画 */
/* 圆圈闪烁 */
@keyframes boderM {
  0% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(2);
    -webkit-transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes boderM {
  0% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(2);
    -webkit-transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* 横向滚动 */
@keyframes scroll-l {
  0% {
    transform: translateX(-50%) translateZ(0px);
    -webkit-transform: translateX(-50%) translateZ(0px);
  }

  100% {
    transform: translateX(0) translateZ(0px);
    -webkit-transform: translateX(0) translateZ(0px);
  }
}

@-webkit-keyframes scroll-l {
  0% {
    transform: translateX(-50%) translateZ(0px);
    -webkit-transform: translateX(-50%) translateZ(0px);
  }

  100% {
    transform: translateX(0) translateZ(0px);
    -webkit-transform: translateX(0) translateZ(0px);
  }
}

@keyframes scroll-r {
  0% {
    transform: translateX(0) translateZ(0px);
    -webkit-transform: translateX(0) translateZ(0px);
  }

  100% {
    transform: translateX(-50%) translateZ(0px);
    -webkit-transform: translateX(-50%) translateZ(0px);
  }
}

@-webkit-keyframes scroll-r {
  0% {
    transform: translateX(0) translateZ(0px);
    -webkit-transform: translateX(0) translateZ(0px);
  }

  100% {
    transform: translateX(-50%) translateZ(0px);
    -webkit-transform: translateX(-50%) translateZ(0px);
  }
}

@-webkit-keyframes firstCircle {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  35% {
    -webkit-transform: translateX(2%) translateY(-14%);
    transform: translateX(2%) translateY(-14%);
  }

  65% {
    -webkit-transform: translateX(5%) translateY(14%);
    transform: translateX(5%) translateY(14%);
  }

  to {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes firstCircle {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  35% {
    -webkit-transform: translateX(2%) translateY(-14%);
    transform: translateX(2%) translateY(-14%);
  }

  65% {
    -webkit-transform: translateX(5%) translateY(14%);
    transform: translateX(5%) translateY(14%);
  }

  to {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes secondCircle {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  40% {
    -webkit-transform: translateX(-9%) translateY(-1%);
    transform: translateX(-9%) translateY(-1%);
  }

  75% {
    -webkit-transform: translateX(11%) translateY(-14%);
    transform: translateX(11%) translateY(-14%);
  }

  to {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes secondCircle {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  40% {
    -webkit-transform: translateX(-9%) translateY(-1%);
    transform: translateX(-9%) translateY(-1%);
  }

  75% {
    -webkit-transform: translateX(11%) translateY(-14%);
    transform: translateX(11%) translateY(-14%);
  }

  to {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes thirdCircle {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  30% {
    -webkit-transform: translateX(5%) translateY(11%);
    transform: translateX(5%) translateY(11%);
  }

  70% {
    -webkit-transform: translateX(-13%) translateY(-5%);
    transform: translateX(-13%) translateY(-5%);
  }

  to {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes thirdCircle {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  30% {
    -webkit-transform: translateX(5%) translateY(11%);
    transform: translateX(5%) translateY(11%);
  }

  70% {
    -webkit-transform: translateX(-13%) translateY(-5%);
    transform: translateX(-13%) translateY(-5%);
  }

  to {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

.container {
  width: 100%;
}

.wrap {
  width: 100%;
}

.row {
  width: 100%;
}

.swiper-btn {
  width: 2.344vw;
  height: 2.344vw;
  background: #64dcf0;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--tran-05);
}

/* .swiper-btn:hover {
  background: #1c44aa;
} */

.swiper-btn i {
  color: #ffffff;
  font-size: 0.833vw;
  transition: var(--tran-05);
}

/* .swiper-btn:hover i {
  color: #ffffff;
} */

.pagelist {
  width: 100%;
}

.pagelist>a {
  width: 2.344vw;
  height: 2.344vw;
  border: 1px solid #a7a7a7;
  margin: 0 0.521vw;
  background: #ffffff;
  font-size: 0.833vw;
  font-weight: 400;
  color: #a8a8a8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
}

.pagelist>a.on,
.pagelist>a:hover {
  border: 1px solid #0067a0;
  background: #0067a0;
  color: #ffffff;
}

.tit {
  width: 100%;
  position: relative;
}

.ho4 .tit,
.ho5 .tit,
.pr3 .tit,
.pr5 .tit,
.so3 .tit,
.ab5 .tit {
  padding: 0 8.333vw;
}

.tit .hr {
  width: 1px;
  height: 4.167vw;
  background: #64dcf0;
  display: block;
  margin: 0 auto 2.083vw;
}

.tit h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #0067a0;
}

.tit h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #0067a0;
}

.tit p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #64dcf0;
  margin: 0.521vw 0 0;
}

.tit span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #646464;
}

.tit .all {
  position: absolute;
  right: 8.333vw;
  bottom: 0;
  z-index: 5;
}

.all {
  width: auto;
  transition: all ease 0.5s;
}

.all span,
.all i {
  font-size: 0.833vw;
  font-weight: bold;
  color: #64dcf0;
  transition: all ease 0.5s;
}

.all i {
  margin-left: 0.26vw;
}

.all:hover i {
  transform: translateX(5px);
}

.takeB {
  width: auto;
  transition: all ease 0.5s;
}

.take {
  width: 11.458vw;
  height: 3.385vw;
  background: #64dcf0;
  margin-left: 2.083vw;
  cursor: pointer;
  transition: all ease 0.5s;
}

.take.on {
  background: #0067a0;
}

.take span {
  font-size: 0.938vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.tit2 {
  width: 100%;
}

.tit2 p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.swiper-txt span {
  font-size: 0.833vw;
  font-weight: bold;
  color: #0067a0;
  margin: 0 1.563vw 0 0;
  opacity: 1;
  transition: all ease 0.5s;
}

.swiper-txt span:last-child {
  opacity: 0.4;
}

.more {
  width: 3.125vw;
  height: 3.125vw;
  background: #64dcf0;
  border-radius: 50%;
  transition: all ease 0.5s;
}

.more i {
  font-size: 1.042vw;
  color: #ffffff;
  font-weight: bold;
  transition: all ease 0.5s;
}

.more:hover i {
  transform: rotate(90deg);
}

.down {
  width: 2.083vw;
  /* height: 3.125vw;
  background: #64DCF0;
  border-radius: 50%; */
  margin: 1.042vw 0 0;
  transition: all ease 0.5s;
}

.down i {
  font-size: 2.083vw;
  height: 1em;
  color: #ffffff;
  font-weight: bold;
  transition: all ease 0.5s;
}

.down:hover i {
  color: #64dcf0;
}

.details {
  width: auto;
  transition: all ease 0.5s;
}

.details span,
.details i {
  font-size: 0.781vw;
  font-weight: bold;
  color: #ffffff;
  transition: all ease 0.5s;
}

.details i {
  margin-left: 0.26vw;
}

.details:hover i {
  transform: translateX(5px);
}

.play {
  width: 3.125vw;
  height: 3.125vw;
  background: #64dcf0;
  border-radius: 50%;
  cursor: pointer;
  transition: all ease 0.5s;
}

.play i {
  font-size: 0.833vw;
  height: 1em;
  color: #ffffff;
  transition: all ease 0.5s;
}

.join {
  width: 2.604vw;
  height: 2.604vw;
  background: #c9c9c9;
  border-radius: 50%;
  cursor: pointer;
  transition: all ease 0.5s;
}

.join i {
  font-size: 1.042vw;
  color: #ffffff;
  font-weight: bold;
  transition: all ease 0.5s;
}

.join:hover i {
  transform: rotate(90deg);
}

.banner {
  width: 100%;
  position: relative;
}

.banner .pic {
  width: 100%;
  position: relative;
}

.banner .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.banner .pic img {
  max-width: 100%;
  width: 100%;
}

.banner .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 8.333vw;
  z-index: 5;
}

.banner .intr h6 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #64dcf0;
}

.banner .intr b,
.banner .intr strong {
  font-size: 3.542vw;
  font-weight: bold;
  color: #ffffff;
  margin-right: 0.781vw;
}

.banner .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #64dcf0;
  margin: 1.042vw 0 0;
}

.banner .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 1.563vw 0 0;
  max-width: 680px;
  width: 100%;
}

.banner .txt {
  max-width: 660px;
  width: 90%;
  padding: 3.125vw;
  background: rgba(0, 103, 160, 0.8);
  margin: 3.125vw 0 0;
}

.banner .txt h6 {
  font-size: 1.042vw;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 1.042vw;
  max-width: 100%;
}

.banner .txt p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.banner .details {
  margin: 2.604vw 0 0;
}

.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #151414;
  transition: all ease 0.5s;
}

.sticky .col {
  margin: 0 3.125vw;
  padding: 1.042vw 0;
  transition: all ease 0.5s;
}

.sticky .col span {
  font-size: 0.938vw;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.5;
  transition: all ease 0.5s;
}

.sticky .col.on span {
  color: #64dcf0;
  opacity: 1;
}

/* 框架 */
.sarBox {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: 75.521vw;
  height: 100%;
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  transform: translateX(-70.313vw);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.sarBox.on {
  transform: translateX(0px);
}

.sarBox .sarTog {
  width: 5.208vw;
  height: 100%;
  background: var(--main-color);
  position: relative;
  z-index: 10;
  padding: 1.302vw 0;
}

.sarTog .tagg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.sarTog .sar_box {
  width: 5.208vw;
  height: 5.208vw;
  position: relative;
  cursor: pointer;
  transition: all ease 0.5s;
}

.sarTog .sar_btn {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all ease 0.5s;
}

.sar_btn i {
  font-size: 1.823vw;
  color: #ffffff;
  transition: all ease 0.5s;
}

.sarTog .sar_Close:hover i {
  transform: rotate(360deg);
}

.sarTog .search {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: none;
}

.sarTog .search i {
  font-size: 1.823vw;
  color: #ffffff;
}

.sarBox .sarNav {
  width: 70.313vw;
  height: 100%;
  padding: 2.083vw 6.771vw 2.083vw 13.542vw;
  position: relative;
  z-index: 10;
}

.sarRow,
.sarMenu {
  width: 100%;
  height: 100%;
  position: relative;
}

.sarTop,
.sarCenter,
.sarBottom {
  width: 100%;
}

.sarRow {
  display: none;
  width: 100%;
}

.sarRow.on {
  display: block;
}

.sarCut {
  width: 100%;
  margin: 0 0 2.604vw;
}

.sarCut .over {
  margin: 0 3.125vw 0 0;
  transition: all ease 0.5s;
}

.sarCut .over span {
  font-size: 0.833vw;
  font-weight: 600;
  color: #000000;
  opacity: 0.5;
  padding: 0 0 0.521vw;
  position: relative;
  cursor: pointer;
  transition: all ease 0.5s;
}

.sarCut .over span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  width: 0;
  height: 0.104vw;
  background: #0067a0;
  transition: all ease 0.5s;
}

.sarCut .over.on span,
.sarCut .over:hover span {
  opacity: 1;
  color: #0067a0;
}

.sarCut .over.on span::after,
.sarCut .over:hover span::after {
  width: 100%;
}

.sarWap .item {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 4.166667vw;
}

.sarWap .nl {
  padding: 10px 0;
}

.sarWap .nl a {
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
}

.sarWap .nl i {
  font-size: 16px;
  color: #ffffff;
  transform: rotate(-90deg);
  transition: all ease 0.5s;
}

.sarWap .item.on .nl i {
  transform: rotate(0deg);
}

.sarWap .item .s-sub {
  width: 100%;
  overflow: hidden;
  display: none;
  /* background: #333; */
  padding: 0;
  border-radius: 0;
  margin: 5px 0 15px;
}

.s-sub dd a {
  width: 100%;
  display: block;
  font-size: 14px;
  color: #fff;
  padding: 5px 10px;
  transition: all ease 0.3s;
}

.sarWap .search-box {
  width: 100%;
  position: relative;
  margin: 10px 0 0;
}

.sarWap .search-box i {
  font-size: 20px;
  color: #646464;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 4;
}

.sarWap .input {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  color: #000000;
}

.sarCol {
  width: 100%;
  /* height: 75vh;
  overflow: auto;
  padding-right: 0.781vw; */
}

.sarCol .sarEv {
  width: 100%;
  display: none;
}

.sarCol .sarEv.on {
  display: block;
}

.sarTit {
  width: 100%;
}

.sarTit h3 {
  font-size: 2.5vw;
  font-weight: bold;
  color: #0067a0;
  margin: 0 0 0.521vw;
}

.sarTit h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #0067a0;
  margin: 0 0 0.781vw;
}

.sarTit h6 {
  font-size: 0.833vw;
  font-weight: 300;
  color: #666666;
}

.sarTit p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.sarTit .all {
  margin: 1.042vw 0 0;
}

.sarTit .search-box {
  width: 100%;
  position: relative;
}

.sarTit .search-box i {
  font-size: 1.563vw;
  color: #646464;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 4;
}

.sarTit .input {
  width: 100%;
  height: 2.344vw;
  margin: 0.781vw 0;
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
  font-size: 1.25vw;
  color: #0067a0;
}

.sarTit .input:focus {
  border-bottom: 1px solid #0067a0;
}

.sarTit input::-webkit-input-placeholder {
  font-size: 1.25vw;
  color: #c9c9c9;
}

.sarTit input::-moz-placeholder {
  font-size: 1.25vw;
  color: #c9c9c9;
}

.sarTit input:-ms-input-placeholder {
  font-size: 1.25vw;
  color: #c9c9c9;
}

.sarTit input:-moz-placeholder {
  font-size: 1.25vw;
  color: #c9c9c9;
}

.sarImg {
  width: 100%;
}

.sarImg .ev {
  width: 31%;
  margin: 1.563vw 0 0;
  transition: all ease 0.5s;
}

.sarImg .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease 0.5s;
}

.sarImg .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.sarImg .ev:hover .pic img {
  transform: scale(1.05);
}

.sarImg .intr {
  width: 100%;
  margin: 1.042vw 0 0;
}

.sarImg .intr p {
  font-size: 1.042vw;
  font-weight: 600;
  color: #0067a0;
}

.sarIcon {
  width: 100%;
  margin: 5.208vw 0 0;
}

.sarIcon .share {
  width: 100%;
  margin: 0 0 1.042vw;
}

.sarIcon .share span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
  margin-left: 0.208vw;
}

.sarIcon .share b {
  font-size: 1.25vw;
  font-weight: bold;
  color: #0067a0;
  margin-left: 0.521vw;
}

.sarIcon .ewm {
  position: static !important;
  width: 6.771vw;
  height: 6.771vw;
  padding: 0.26vw;
  background: #0067a0;
  border: 1px solid #ffffff;
  opacity: 1 !important;
  visibility: visible !important;
}

.sarIcon .ewm img {
  max-width: 100%;
  width: 100%;
}

.sarLogo {
  width: 100%;
}

.sarCall .sarLogo {
  margin: 5.208vw 0 0;
}

.sarCall .sarLogo img {
  width: 9.896vw;
}

.sarMenu .sarLogo img {
  width: 6.25vw;
}

.sarCall .sarTit {
  margin: 2.083vw 0 0;
}

.sarSearch .sarTit {
  margin: 5.208vw 0 0;
}

.sarBg {
  width: 17.188vw;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.sarBg img {
  max-width: 100%;
  width: 100%;
}

.maskBox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.maskBox.on {
  transform: translateX(0);
}

.mainBox {
  width: 100%;
  padding: 0 0 0 5.208vw;
}

/* 公共头部 */
.header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 80;
  width: calc(100% - 5.208vw);
  height: 4.688vw;
  background: transparent;
  transition: var(--tran-05);
}

.scroll .header {
  transform: translateY(-100%);
}

body.type .header {
  background: #ffffff;
}

.header .row {
  height: 100%;
  padding: 0 8.333vw;
}

.header .link {
  margin: 0 3.125vw 0 0;
  padding: 0.521vw 0;
  position: relative;
}

.header .link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  width: 0;
  height: 0.104vw;
  background: #ffffff;
  transition: all ease 0.5s;
}

.header .link.on::after,
.header .link:hover::after {
  width: 100%;
}

.header .link>a {
  font-size: 0.833vw;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.5;
  transition: all ease 0.5s;
}

.header .link.on a,
.header .link:hover a {
  color: #ffffff;
  opacity: 1;
}

.header .links {
  position: relative;
  margin-left: 0.26vw;
  padding: 0.26vw 0;
  transition: all ease 0.5s;
}

.header .links.search {
  cursor: pointer;
}

.header .links span,
.header .links i {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.5s;
}

.header .links .down {
  position: absolute;
  left: 0;
  top: -500vw;
  min-width: 100%;
  width: max-content;
  border-radius: 2px;
  margin: 0 !important;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity ease 0.5s, transform ease 1s;
  z-index: 15;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 7%);
}

.header .links:hover .down {
  top: 100%;
  opacity: 1;
}

.header .down a {
  display: block;
  font-size: 0.833vw;
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #aaa;
  font-weight: 300;
  color: #3e3e3e;
  transition: all ease 0.5s;
}

.header .down a.on {
  color: #0067a0;
}

body.type .header .link>a,
body.type .header .links span,
body.type .header .links i {
  color: #000000 !important;
}

body.type .header .link::after {
  background: #0067a0 !important;
}

body.type .header .link.on a,
body.type .header .link:hover a {
  color: #0067a0 !important;
}

.footer {
  width: 100%;
  padding: 0 8.333vw;
}

.footer .footA {
  width: 100%;
  padding: 4.167vw 0 2.865vw;
}

.footer .f-logo img {
  width: 9.896vw;
}

.footer .footB {
  width: 100%;
}

.footer dl {
  margin: 0 4.688vw 0 0;
}

.footer dt,
.footer dd {
  margin: 0 0 0.781vw;
}

.footer dl:last-child,
.footer dl dd:last-child {
  margin: 0;
}

.footer dt>a {
  font-size: 0.833vw;
  font-weight: 600;
  color: #0067a0;
}

.footer dd>a {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
  opacity: 0.7;
  transition: all ease 0.5s;
}

.footer dd>a:hover {
  opacity: 1;
  color: #0067a0;
}

.footer .footC {
  width: 100%;
  padding: 6.25vw 0;
}

.footer .itxt h6 {
  font-size: 0.833vw;
  font-weight: bold;
  color: #0067a0;
}

.footer .icon {
  width: calc(100% - 6.771vw);
}

.footer .share {
  margin: 0 2.083vw 0 0;
  position: relative;
}

.footer .share:first-child {
  width: 100%;
  margin: -0.521vw 2.083vw 1.042vw 0;
}

.footer .share b {
  font-size: 1.25vw;
  font-weight: bold;
  color: #0067a0;
  margin-left: 0.521vw;
}

.footer .share span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
  margin-left: 0.208vw;
}

.footer .share>img {
  width: 1.042vw;
}

.footer .app {
  margin: 0 1.563vw 0 0;
  position: relative;
  transition: all ease 0.5s;
}

.footer .app>img {
  width: 1.823vw;
}

.footer .app span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
  margin-left: 0.521vw;
}

.footer .share .ewm,
.footer .app .ewm {
  left: 0;
  top: -6.25vw;
}

.footer .share:hover .ewm,
.footer .app:hover .ewm {
  top: -5.729vw;
  opacity: 1;
  visibility: visible;
}

.footer .footD {
  width: 100%;
  padding: 0 0 6.25vw;
}

.footer .footE {
  position: fixed;
  right: 2.083vw;
  bottom: -20%;
  z-index: 20;
  width: 3.125vw;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2px 0px 0px 2px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.scroll .footE {
  bottom: 5%;
  opacity: 1;
  visibility: visible;
}

.footE .bar {
  width: 100%;
  padding: 0 0.521vw;
  margin: 0.781vw 0;
  cursor: pointer;
  position: relative;
  transition: all ease 0.5s;
}

.ewm {
  position: absolute;
  width: 5.208vw;
  height: 5.208vw;
  padding: 0.26vw;
  background: #ffffff;
  box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.footE .bar .ewm {
  left: -6.25vw;
  bottom: 0;
}

.footE .bar:hover .ewm {
  left: -5.729vw;
  opacity: 1;
  visibility: visible;
}

.bar .phone {
  position: absolute;
  left: -11.458vw;
  bottom: 0;
  z-index: 1;
  width: 9.375vw;
  padding: 0.521vw 0;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.bar:hover .phone {
  visibility: visible;
  left: -9.896vw;
  opacity: 1;
}

.bar .phone p {
  color: #000000;
  font-size: 0.729vw;
  white-space: nowrap;
}

.footer .footF {
  width: 100%;
  padding: 2.865vw 0;
  border-top: 1px solid rgba(100, 100, 100, 0.2);
}

.footF a {
  margin-right: 1.042vw;
}

.footF span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
}

.Pop-bg {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.Pop-bg.on {
  opacity: 1;
  visibility: visible;
}

.Pop-soft {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 105;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  padding: 4.688vw 4.688vw 7.292vw;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.Pop-soft.on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.Pop-soft .close {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  z-index: 5;
  cursor: pointer;
}

.Pop-soft .close i {
  font-size: 1.563vw;
  font-weight: bold;
  color: #0067a0;
}

.Pop-soft .Popimg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 20.833vw;
}

.Pop-soft .Popimg img {
  max-width: 100%;
  width: 100%;
}

.Pop-soft .row {
  margin: 3.125vw 0 0;
}

.Pop-soft .col {
  width: 100%;
}

.Pop-soft .intr {
  width: 30%;
}

.Pop-soft .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #0067a0;
  margin: 0 0 0.521vw;
}

.Pop-soft .intr em {
  display: inline-block;
  width: 0.521vw;
  height: 0.521vw;
  background: rgba(0, 103, 160, 0.5);
  border-radius: 50%;
  margin-right: 0.781vw;
  vertical-align: middle;
}

.Pop-soft .pic {
  width: 66%;
}

.Pop-soft .pic img {
  max-width: 100%;
  width: 100%;
}

.Pop-form {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 105;
  max-width: 420px;
  width: 80%;
  margin: 0 auto;
  padding: 4.167vw 3.125vw;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.Pop-form.on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.Pop-form .close {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  z-index: 5;
  cursor: pointer;
}

.Pop-form .close i {
  font-size: 1.563vw;
  font-weight: bold;
  color: #0067a0;
}

.Pop-form .txt {
  width: 100%;
  margin: 0 0 2.083vw;
  text-align: center;
}

.Pop-form .txt h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #0067a0;
  margin: 0 0 0.521vw;
}

.Pop-form .txt p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #646464;
}

.Pop-form .form {
  width: 100%;
}

.Pop-form .label {
  width: 100%;
  margin: 0 0 0.781vw;
}

.Pop-form span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #0067a0;
}

.Pop-form b {
  color: #aa261b;
  margin-left: 0.26vw;
}

.Pop-form .input {
  width: 70%;
  height: 2.083vw;
  padding: 0 1.042vw;
  background: #f1f3f7;
}

.Pop-form .btn {
  width: 100%;
  height: 2.865vw;
  border-radius: 30px;
  background: #64dcf0;
  margin: 2.083vw 0 0;
  cursor: pointer;
  transition: all ease 0.5s;
}

.Pop-form .btn span {
  font-size: 0.729vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.Pop-video {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 105;
  width: 60vw;
  max-height: 90vw;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.Pop-video.on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.Pop-video .close {
  position: absolute;
  top: -2.083vw;
  right: -2.083vw;
  z-index: 5;
  cursor: pointer;
}

.Pop-video .close i {
  font-size: 1.563vw;
  font-weight: bold;
  color: #ffffff;
}

.Pop-video .Popvideo {
  width: 100%;
}

.Pop-video .Popvideo video {
  max-width: 100%;
  width: 100%;
}

.Pop-join {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 105;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  padding: 4.688vw;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.Pop-join.on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.Pop-join .close {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  z-index: 5;
  cursor: pointer;
}

.Pop-join .close i {
  font-size: 1.563vw;
  font-weight: bold;
  color: #0067a0;
}

.Pop-join .Poplogo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 19.531vw;
}

.Pop-join .Poplogo img {
  max-width: 100%;
  width: 100%;
}

.Pop-join .name {
  width: 100%;
  margin: 0 0 0.781vw;
  transition: all ease 0.5s;
}

.Pop-join .name h6 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #151414;
  transition: all ease 0.5s;
}

.Pop-join .name span {
  font-size: 1.25vw;
  font-family: "Poppins";
  font-weight: bold;
  color: #64dcf0;
  transition: all ease 0.5s;
}

.Pop-join .sogB {
  width: 100%;
  margin: 0 0 1.042vw;
}

.Pop-join .sog {
  padding: 0.26vw 0.781vw;
  margin-right: 1.042vw;
  background: #f7f7f7;
  transition: all ease 0.5s;
}

.Pop-join .sog span {
  font-size: 0.833vw;
  line-height: 1;
  font-weight: 400;
  color: #646464;
  transition: all ease 0.5s;
}

.Pop-join .intr {
  width: 100%;
  padding: 1.042vw 0 0;
  border-top: 1px solid #dedede;
}

.Pop-join .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.Pop-join .deli {
  margin: 2.083vw 0 0;
}

.Pop-join .deli span {
  font-size: 0.833vw;
  font-weight: 600;
  color: #64dcf0;
  margin-left: 1.042vw;
  transition: all ease 0.5s;
}

.partner {
  width: 100%;
  padding: 5.208vw 0;
  background: #f7f7f7;
  overflow: hidden;
}

.partner .line {
  display: flex;
  flex-wrap: nowrap;
  animation: scroll-r 100s linear infinite alternate;
}

.partner .line .group {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  transform: translate3d(0px, 0px, 0px);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s,
    opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.partner .group .ev {
  width: 8.854vw;
  height: 4.167vw;
  margin: 0 0.781vw;
  background: #ffffff;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.07);
}

.partner .ev img {
  max-width: 80%;
}

/* 首页 */
.ho0 {
  width: 100%;
  position: relative;
}

.ho0 .col {
  width: 100%;
  position: relative;
}

.ho0 .pic {
  width: 100%;
  position: relative;
}

.ho0 .video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ho0 .video:after {
  content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.ho0 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.ho0 .video video,
.ho0 .video img {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.ho0 .pic img,
.ho0 .pic video {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.ho0 .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  padding: 0 8.333vw;
}

.ho0 .intr h1 {
  font-size: 5vw;
  font-weight: 600;
  color: #64dcf0;
}

.ho0 .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
}

.ho0 .swiper-pagination {
  bottom: 4.688vw;
}

.ho0 .swiper-pagination-bullet,
.ab4 .swiper-pagination-bullet {
  width: 0.521vw;
  height: 0.521vw;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.4;
  margin: 0 0.521vw !important;
  position: relative;
  transition: all ease 0.5s;
}

.ho0 .swiper-pagination-bullet::after,
.ab4 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 1.042vw;
  height: 1.042vw;
  background-image: url(../img/bullet.svg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.ho0 .swiper-pagination-bullet-active,
.ab4 .swiper-pagination-bullet-active {
  opacity: 1;
  background: transparent;
}

.ho0 .swiper-pagination-bullet-active::after,
.ab4 .swiper-pagination-bullet-active::after {
  opacity: 1;
  visibility: visible;
}

.ho1 {
  width: 100%;
  position: relative;
  z-index: 5;
}

.ho1 .col {
  width: 25%;
  position: relative;
  transition: all ease 0.5s;
}

.ho1 .col:nth-child(2) {
  width: 50%;
}

.ho1 .col:hover {
  transform: translateY(-1.302vw);
}

.ho1 .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
}

.ho1 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 220, 240, 0.9);
  z-index: 2;
  transition: all ease 0.5s;
}

.ho1 .col:nth-child(2) .pic::after {
  background: rgba(0, 80, 135, 0.9);
}

.ho1 .col:nth-child(3) .pic::after {
  display: none;
}

.ho1 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.ho1 .col:hover .pic img {
  transform: scale(1.05);
}

.ho1 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 2.604vw 2.083vw;
}

.ho1 .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  margin: 0 0 0.521vw;
}

.ho1 .intr h6 {
  font-size: 0.938vw;
  font-weight: bold;
  position: relative;
}

.ho1 .intr h6::before {
  content: "";
  position: absolute;
  left: -0.781vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.156vw;
  height: 0.938vw;
}

.ho1 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.ho1 .look {
  width: auto;
  margin: 2.604vw 0 0;
}

.ho1 .look span,
.ho1 .look i {
  font-size: 0.781vw;
  font-weight: bold;
  transition: all ease 0.5s;
}

.ho1 .look i {
  margin-left: 0.26vw;
}

.ho1 .col:nth-child(1) .intr h4,
.ho1 .col:nth-child(1) .intr h6,
.ho1 .col:nth-child(1) .look span,
.ho1 .col:nth-child(1) .look i {
  color: #0067a0;
}

.ho1 .col:nth-child(2) .intr h4,
.ho1 .col:nth-child(2) .intr h6,
.ho1 .col:nth-child(2) .look span,
.ho1 .col:nth-child(2) .look i,
.ho1 .col:nth-child(3) .intr h6,
.ho1 .col:nth-child(3) .intr h4 {
  color: #64dcf0;
}

.ho1 .col:nth-child(3) .look span,
.ho1 .col:nth-child(3) .look i {
  color: #ffffff;
}

.ho1 .col:nth-child(1) .intr h6::before {
  background: #0067a0;
}

.ho1 .col:nth-child(2) .intr h6::before,
.ho1 .col:nth-child(3) .intr h6::before {
  background: #64dcf0;
}

.ho1 .col:nth-child(2) .tt2 {
  margin: 2.865vw 0 0;
}

.ho1 .col:hover .look span,
.ho1 .col:hover .look i {
  color: #ffffff;
}

.ho1 .col:hover .look i {
  transform: translateX(5px);
}

.parallax-inner {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all ease 0.3s;
}

.inner-left {
  text-align: left;
}

.inner-right,
.inner-top,
.inner-bottom {
  text-align: right;
}

.parallax {
  font-size: 6.979vw;
  font-weight: 100;
  color: #c9c9c9;
  margin: 0 0 2.604vw;
  transition: all ease 0.3s;
}

.ho2 {
  width: 100%;
  padding: 5.729vw 8.333vw 20vw;
  position: relative;
  background: #fafbfc;
  overflow: hidden;
}

.ho2 .row {
  margin: 3.125vw 0 0;
  position: relative;
}

.ho2 .col {
  width: 100%;
}

.ho2 .origin {
  position: absolute;
  left: -20.833vw;
  top: 50%;
  transform: translateY(-50%);
  width: 62.5vw;
  height: 62.5vw;
  box-sizing: border-box;
  z-index: 3;
  /* pointer-events: none; */
}

.rotate {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  transition: all ease 0.5s;
}

.rotate .dot {
  opacity: 0;
  visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all ease 0.5s;
}

.rotate .dot.on {
  opacity: 1;
  visibility: visible;
}

.rotate .cir.on {
  display: none;
}

.ho2 .circles {
  width: 29.688vw;
  margin-left: 3.646vw;
  position: relative;
}

.ho2 .circles::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 46.875vw;
  height: 46.875vw;
  border: 1px dashed #bfc4c7;
  border-radius: 50%;
}

.circles .num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 90%;
  text-align: center;
}

.circles .num span {
  font-size: 6.51vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #ffffff;
}

.circles .circle {
  width: 100%;
  height: 29.688vw;
  top: 0;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.circle-main {
  position: relative;
  background: #9ac2da;
  z-index: 5;
}

.circle-first,
.circle-second,
.circle-third {
  position: absolute;
  background: #0067a0;
  z-index: 2;
}

.circle-first {
  opacity: 0.15;
  -webkit-animation: firstCircle 10s ease infinite;
  animation: firstCircle 10s ease infinite;
}

.circle-second {
  opacity: 0.15;
  -webkit-animation: secondCircle 10s ease infinite;
  animation: secondCircle 10s ease infinite;
}

.circle-third {
  opacity: 0.15;
  -webkit-animation: thirdCircle 10s ease infinite;
  animation: thirdCircle 10s ease infinite;
}

.ho2 .intr {
  width: 35%;
}

.ho2 .intr .ev {
  width: 100%;
  margin: 0.781vw 0;
}

.ho2 .intr h5 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #0067a0;
  opacity: 0.4;
}

.ho2 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
  display: none;
}

.ho2 .ev.on h5 {
  font-size: 1.667vw;
  opacity: 1;
}

/* .ho2 .ev.on p {
  display: block;
} */

.ho3 {
  width: 100%;
  padding: 5.729vw 0;
  position: relative;
  overflow: hidden;
}

.ho3 .tit {
  text-align: center;
}

.ho3 .mold {
  width: 100%;
  margin: 4.167vw 0 0;
}

.ho3 .row {
  margin: 3.125vw 0 0;
  position: relative;
}


.ho3 .swiper-slide {
  width: 70.573vw !important;
}

.ho3 .col {
  width: 100%;
  position: relative;
}

.ho3 .pic {
  width: 76%;
}

.ho3 .intr {
  width: 19%;
}

.ho3 .intr h5 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #0067a0;
  margin: 0 0 0.521vw;
}

.ho3 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.ho3 .yuan {
  position: absolute;
  top: 10.417vw;
  right: 21%;
  width: 10.938vw;
  z-index: 5;
  transition: all ease 0.5s;
}

.ho3 .yuan img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.ho3 .more {
  margin: 1.823vw 0 0;
}

.ho3 .swiper-scrollbar {
  position: relative;
  left: initial;
  bottom: initial;
  width: 41.667vw;
  height: 0.26vw;
  background: #c9c9c9;
  border-radius: 40px;
  margin: 4.167vw auto 0;
  cursor: grab;
}

.ho3 .swiper-scrollbar>.swiper-scrollbar-drag {
  background: #0067a0 !important;
}

.ho4 {
  width: 100%;
  padding: 5.729vw 0;
  position: relative;
  background: #fafbfc;
}

.ho4 .mold {
  width: 100%;
  padding: 0 8.333vw;
  margin: 2.604vw 0 0;
}

.ho4 .row {
  margin: 3.125vw 0 0;
  position: relative;
}

.ho4 .swiper-slide {
  width: 53.646vw !important;
}

.ho4 .col {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.ho4 .pic {
  width: 100%;
  position: relative;
}

.ho4 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.01);
  z-index: 2;
  transition: all ease 0.5s;
}

.ho4 .pic img {
  max-width: 100%;
  width: 100%;
}

.ho4 .col:hover .pic::after {
  background: rgba(0, 0, 0, 0.5);
}

.ho4 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 3.125vw 2.083vw;
}

.ho4 .intr .tt2 {
  margin: 0.521vw 0 0;
  display: none;
}

.ho4 .intr h5 {
  font-size: 1.458vw;
  font-weight: bold;
  color: #ffffff;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all ease 0.5s;
}

.ho4 .intr .tt2 h5 {
  color: #64dcf0;
}

.ho4 .intr em {
  display: inline-block;
  width: 2.083vw;
  height: 0.156vw;
  background: #64dcf0;
  margin: 0.781vw 0 0;
  /* transition: all ease .5s; */
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.ho4 .col:hover .intr em {
  height: 2.083vw;
  width: 0.156vw;
}

.ho4 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0.26vw 0 0;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/* .ho4 .col:hover .tt1 {
  transform: translateY(0);
}

.ho4 .col:hover .tt2 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
} */

.ho5 {
  width: 100%;
  padding: 5.729vw 0;
  position: relative;
  overflow: hidden;
}

.ho5 .mold {
  width: 100%;
  padding: 0 8.333vw;
  margin: 2.604vw 0 0;
}

.ho5 .row {
  margin: 3.125vw 0 0;
}

.ho5 .swiper-slide {
  width: 22.917vw !important;
}

.swiper-slide.first {
  margin-left: 8.333vw;
}

.ho5 .col {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.ho5 .intr h6 {
  min-height: 3.125vw;
  font-size: 1.042vw;
  font-weight: 600;
  line-height: 1.5;
  color: #0067a0;
  padding: 0 4.167vw 0 0;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all ease 0.5s;
}

.ho5 .intr p {
  min-height: 2.344vw;
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
  margin: 1.042vw 0;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all ease 0.5s;
}

.ho5 .date {
  font-size: 0.833vw;
  font-weight: 300;
  color: #0067a0;
  transition: all ease 0.5s;
}

.ho5 .col:hover .intr h6,
.ho5 .col:hover .date {
  color: #64dcf0;
}

.ho6 {
  width: 100%;
  padding: 5.729vw 8.333vw;
  position: relative;
}

.ho6::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 82.5%;
  height: 100%;
  background: #005280;
  z-index: -1;
}

.ho6 .intr {
  width: 50%;
}

.ho6 .intr h6 {
  font-size: 1.042vw;
  font-weight: bold;
  color: #ffffff;
}

.ho6 .intr h3 {
  font-size: 2.083vw;
  font-weight: bold;
  color: #ffffff;
  margin: 2.083vw 0 1.042vw;
}

.ho6 .intr p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
}

.ho6 .form {
  max-width: 315px;
  width: 100%;
}

.ho6 .input {
  width: 100%;
  height: 2.083vw;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1.042vw 0 0;
  color: #ffffff;
}

.ho6 .checkbox {
  width: 100%;
  margin: 1.563vw 0 2.083vw;
}

.ho6 .check {
  width: 1.042vw;
  height: 1.042vw;
  background: #ffffff;
  margin-right: 0.521vw;
  cursor: pointer;
  transition: all ease 0.5s;
}

.ho6 .check.on {
  background: #64dcf0;
}

.ho6 .txt p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
}

.ho6 .btn {
  width: 4.688vw;
  height: 3.385vw;
  background: #ffffff;
  transition: all ease 0.5s;
}

.ho6 .btn span {
  font-size: 0.729vw;
  font-weight: 600;
  color: #0067a0;
  transition: all ease 0.5s;
}

.ho6 .btn:hover {
  background: #64dcf0;
}

.ho6 .btn:hover span {
  color: #ffffff;
}

.ho6 .pic {
  width: 47.5%;
}

.ho6 .pic img {
  max-width: 100%;
  width: 100%;
}

/* 产品中心 */
.pr1 {
  width: 100%;
  padding: 6.25vw 8.333vw 4.167vw;
}

.pr1 .col {
  width: 48.5%;
  padding: 2.083vw 3.125vw;
  margin: 0 0 2.083vw;
  background: #f1f3f7;
  transition: all ease 0.5s;
}

.pr1 .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease 0.5s;
}

.pr1 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.pr1 .intr {
  width: 100%;
  margin: 2.083vw 0 0;
}

.pr1 .intr .txt {
  width: calc(100% - 4.167vw);
}

.pr1 .txt h4 {
  min-height: 2.344vw;
  font-size: 1.667vw;
  font-weight: 600;
  color: #0067a0;
  margin: 0 0 0.521vw;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all ease 0.5s;
}

.pr1 .txt p {
  min-height: 1.563vw;
  font-size: 1.25vw;
  font-weight: 600;
  color: #646464;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.pr1 .more {
  opacity: 0;
  visibility: hidden;
}

.pr1 .col:hover .more {
  opacity: 1;
  visibility: visible;
}

.pr2 {
  width: 100%;
  padding: 6.25vw 8.333vw 4.688vw;
  background: #fafbfc;
}

.pr2 .tit {
  text-align: center;
}

.pr2 .row {
  margin: 3.125vw 0 0;
}

.pr2 .col {
  width: 18.5%;
  background: #ffffff;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08);
  margin: 0 0 1.563vw;
  padding: 1.302vw;
  position: relative;
  transition: all ease 0.5s;
}

.pr2 .col::after {
  content: "";
  position: absolute;
  right: 0.521vw;
  top: 0.521vw;
  z-index: 4;
  width: 4.688vw;
  height: 5.469vw;
  background-image: url(../img/pr2-logo.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 0.5s;
}

.pr2 .intr b {
  font-size: 7.896vw;
  line-height: 7.896vw;
  font-family: "SourceHanSansCN";
  font-weight: bold;
  color: #0067a0;
  opacity: 0.2;
  text-transform: uppercase;
  transition: all ease 0.5s;
}

.pr2 .intr h3 {
  font-size: 1.25vw;
  font-family: "SourceHanSansCN";
  font-weight: bold;
  color: #0067a0;
  opacity: 0.2;
  text-transform: uppercase;
  transition: all ease 0.5s;
}

.pr2 .intr p {
  font-size: 1.042vw;
  font-weight: 600;
  color: #646464;
  margin: 2.083vw 0 0;
  transition: all ease 0.5s;
}

.pr3 {
  width: 100%;
  padding: 6.25vw 0;
}

.pr3 .row {
  margin: 3.125vw 0 0;
  position: relative;
}

.pr3 .swiper-slide {
  width: 53.646vw !important;
}

.pr3 .col {
  width: 100%;
  transition: all ease 0.5s;
}

.pr3 .pic {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.pr3 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.pr3 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.pr3 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 3.125vw 4.688vw;
}

.pr3 .tt1 {
  width: 100%;
}

.pr3 .tt1 h5 {
  font-size: 1.458vw;
  font-weight: 600;
  transition: all ease 0.5s;
}

.pr3 .tt1 h5:first-child {
  color: #ffffff;
}

.pr3 .tt1 h5:last-child {
  color: #64dcf0;
}

.pr3 .tt2 {
  width: 100%;
  margin: 1.563vw 0 0;
  display: none;
}

.pr3 .tt2 p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0.521vw 0 0;
  transition: all ease 0.5s;
}

.pr3 .tt2 em {
  display: inline-block;
  vertical-align: middle;
  width: 0.521vw;
  height: 0.521vw;
  margin-right: 0.781vw;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all ease 0.5s;
}

.pr4 {
  width: 100%;
  padding: 4.167vw 8.333vw;
  background: #fafbfc;
}

.download {
  width: 19.271vw;
  height: 4.688vw;
  padding: 0 1.563vw;
  background: #0067a0;
  border-radius: 15px;
  transition: all ease 0.5s;
}

.download span {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
  margin-right: 5.208vw;
  transition: all ease 0.5s;
}

.download img {
  width: 4.167vw;
  transition: all ease 0.5s;
}

.pr5 {
  width: 100%;
  padding: 6.25vw 0 4.688vw;
  background: #005280;
}

.pr5 .tit {
  text-align: center;
}

.pr5 .tit h3 {
  color: #ffffff;
}

.pr5 .row {
  margin: 3.125vw 0 0;
  position: relative;
}

.swiper-button-next {
  width: 64px;
  height: 64px;
  font-size: 0;
  background-color: #e7e7e7;
  border-radius: 50%;
}

.swiper-button-prev {
  width: 64px;
  height: 64px;
  font-size: 0;
  background-color: #e7e7e7;
  border-radius: 50%;
}

.pr5 .swiper-slide {
  width: 18.75vw !important;
}

.pr5 .col {
  width: 100%;
  transition: all ease 0.5s;
}

.pr5 .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
}

.pr5 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: all ease 0.5s;
}

.pr5 .col:hover .pic::after {
  opacity: 1;
  visibility: visible;
}

.pr5 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.pr5 .col:hover .pic img {
  transform: scale(1.05);
}

.pr5 .intr {
  width: 100%;
  margin: 1.042vw 0 0;
  text-align: center;
}

.pr5 .intr p {
  font-size: 1.042vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.pr5 .col:hover .intr p {
  color: #64dcf0;
}

.pr5 .swiper-scrollbar {
  position: relative;
  left: initial;
  bottom: initial;
  width: 41.667vw;
  height: .1563vw;
  background: #c9c9c9;
  border-radius: 40px;
  margin: 1.042vw auto 0;
  cursor: grab;
}

.pr5 .swiper-scrollbar>.swiper-scrollbar-drag {
  background: #fff !important;
}

.pr5 .swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.3021vw;
}

.pr6 {
  width: 100%;
  padding: 6.25vw 8.333vw;
}

.pr6 .col {
  width: 100%;
}

.pr6 .intr {
  width: 42%;
}

.pr6 .pic {
  width: 48.5%;
}

.pr6 .intr h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #0067a0;
}

.pr6 .intr h5 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #64dcf0;
  margin: 0.781vw 0 1.042vw;
}

.pr6 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #151414;
}

.pr7 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  background: #f7f7f7;
}

.pr7 .row {
  margin: 3.125vw 0 0;
}

.pr7 .col {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 14px 1px rgb(234 234 234 / 75%);
}

.pr7 .intr {
  width: 32%;
  padding: 0 4.688vw;
  text-align: center;
}

.pr7 .intr .txt {
  width: 100%;
  display: none;
  transition: all ease 0.5s;
}

.pr7 .intr .txt.on {
  display: block;
}

.pr7 .txt h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #000000;
  margin: 0 0 1.042vw;
}

.pr7 .txt p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

.pr7 .pic {
  width: 68%;
  position: relative;
}

.pr7 .pic .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pr7 .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.pr7 .img img.on {
  opacity: 1;
  visibility: visible;
}

.list_t {
  width: 100%;
  height: 26.042vw;
  position: relative;
  z-index: 5;
}

.list_t::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: rgba(0, 0, 0, 0.5);
}

.list_t1 .li_t {
  width: 100%;
}

.list_t2 .li_t {
  width: 50%;
}

.list_t3 .li_t {
  width: 33.333%;
}

.list_t4 .li_t {
  width: 25%;
}

.list_t5 .li_t {
  width: 20%;
}

.list_t6 .li_t {
  width: 16.666%;
}

.list_t .li_t {
  height: 100%;
  padding: 0.521vw;
  position: relative;
  z-index: 6;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  transition: all ease 0.5s;
}

.li_t h6 {
  font-size: 1.042vw;
  font-weight: 600;
  color: #ffffff;
  margin: 1.042vw 0 0;
  text-align: center;
  transition: all ease 0.5s;
}

.pr8 {
  width: 100%;
  padding: 6.25vw 8.333vw;
}

.pr8 .row {
  margin: 3.125vw 0 0;
}

.pr8 .col {
  width: 100%;
}

.pr8 .pic {
  width: 100%;
}

.pr8 .pic .img {
  width: 100%;
}

.pr8 .img img {
  max-width: 100%;
  width: 100%;
  display: none;
}

.pr8 .img img.on {
  display: block;
}

.pr8 .intr {
  width: 100%;
  margin: 0 0 1.302vw;
}

.pr8 .intr .ev {
  margin-right: 3.125vw;
  transition: all ease 0.5s;
}

.pr8 .ev span {
  font-size: 1.25vw;
  font-weight: 600;
  color: #c9c9c9;
  transition: all ease 0.5s;
}

.pr8 .ev:hover span,
.pr8 .ev.on span {
  color: #64dcf0;
}

/* 解决方案 */
.so1 {
  width: 100%;
  padding: 6.25vw 8.333vw 0;
}

.so1 .row {
  margin: 3.125vw 0 0;
}

.so1 .col {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 14px 1px rgb(234 234 234 / 75%);
}

.so1 .intr {
  width: 32%;
  padding: 0 4.688vw;
  text-align: center;
}

.so1 .intr .txt {
  width: 100%;
  display: none;
  transition: all ease 0.5s;
}

.so1 .intr .txt.on {
  display: block;
}

.deco {
  display: block;
  width: 3.125vw;
  height: 3.125vw;
  opacity: 1;
  margin: 0 auto;
  position: relative;
  transition: all ease 0.5s;
}

.deco span {
  background: hsla(0, 0%, 100%, 0.8);
  border: 1px solid #fff;
  border-radius: 100%;
  height: 1.146vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  width: 1.146vw;
  transition: all ease 0.5s;
}

.deco:before {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  transition: 0.4s;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 100%;
  height: 2.083vw;
  width: 2.083vw;
}

.deco:after {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  transition: 0.4s;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 100%;
  height: 3.125vw;
  width: 3.125vw;
}

.li_t.on .deco:before {
  animation: scalepulse 1.3s linear 0.3s infinite both;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.li_t.on .deco span {
  background: #fff;
  animation: scalepulse 1.3s linear 0s infinite both;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.li_t.on .deco:after {
  animation: scalepulse 1.3s linear 0.15s infinite both;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

@keyframes scalepulse {
  20% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.15);
    transform: translate3d(-50%, -50%, 0) scale(1.15);
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
  }

  50% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
  }
}

.so1 .txt h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #000000;
  margin: 0 0 1.042vw;
}

.so1 .txt p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

.so1 .pic {
  width: 68%;
  position: relative;
}

.so1 .pic .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.so1 .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.so1 .img img.on {
  opacity: 1;
  visibility: visible;
}

.so2 {
  width: 100%;
  padding: 6.25vw 8.333vw;
}

.so2.color-g {
  background: #f7f7f7;
}

.so2 .col {
  width: 100%;
}

.so2 .intr {
  width: 42%;
}

.so2 .pic {
  width: 48.5%;
}

.so2 .intr h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #0067a0;
}

.so2 .intr h5 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #64dcf0;
  margin: 0.781vw 0 1.042vw;
}

.so2 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #151414;
}

.so2 .row2 {
  width: 100%;
  margin: 3.125vw 0 0;
}

.so2 .ev {
  width: 23%;
}

.so2 .ev h6 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #0067a0;
}

.so2 .ev p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.so2 .ev hr {
  display: block;
  width: 100%;
  height: 1px;
  background: #c9c9c9;
  margin: 0.781vw 0;
}

.so3 {
  width: 100%;
  padding: 6.25vw 0;
}

.so3 .tit p {
  color: #646464;
}

.so3 .row {
  margin: 3.125vw 0 0;
  position: relative;
}

.so3 .swiper-slide {
  width: 18.75vw !important;
}

.so3 .col {
  width: 100%;
  transition: all ease 0.5s;
}

.so3 .pic {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.so3 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.so3 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.so3 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 1.042vw 1.823vw;
}

.so3 .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
}

.so4 {
  width: 100%;
  padding: 6.25vw 0 4.688vw;
  background: #005280;
}

.so4 .tit {
  text-align: center;
}

.so4 .tit h3 {
  color: #ffffff;
}

.so4 .row {
  margin: 3.125vw 0 0;
  position: relative;
}

.so4.pc .col {
  width: 18.75vw;
  margin: 0 0.521vw;
  transition: all ease 0.5s;
}

.so4 .swiper-slide {
  width: 18.75vw !important;
}

.so4.ph .col {
  width: 100%;
  transition: all ease 0.5s;
}

.so4 .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
}

.so4 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.so4 .col:hover .pic img {
  transform: scale(1.05);
}

.so4 .intr {
  width: 100%;
  margin: 1.042vw 0 0;
}

.so4 .intr h6 {
  font-size: 0.938vw;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 0.26vw;
}

.so4 .intr p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
}

.so4 .swiper-scrollbar {
  position: relative;
  left: initial;
  bottom: initial;
  width: 41.667vw;
  height: 0.26vw;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  margin: 1.042vw auto 0;
  cursor: grab;
}

.so4 .swiper-scrollbar>.swiper-scrollbar-drag {
  background: #ffffff !important;
}

/* 服务支持 */
.se1 {
  width: 100%;
  padding: 6.25vw 8.333vw 5.208vw;
}

.se1 .col {
  width: 33.333%;
  margin: 0 0 1.042vw;
  position: relative;
  transition: all ease 0.5s;
}

.se1 .pic {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all ease 0.5s;
}

.se1 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.se1 .pic img {
  max-width: 100%;
  width: 100%;
}

.se1 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 2.083vw 3.125vw;
}

.se1 .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.se1 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.se1 .intr .tt2 {
  width: 100%;
  margin: 1.042vw 0 0;
  display: none;
}

/* 关于我们 */
.ab1 {
  width: 100%;
  position: relative;
  padding: 24.479vw 8.333vw 6.25vw;
  background-image: url(../img/ab-ba.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.ab1 .intr {
  width: 100%;
}

.ab1 .intr b {
  font-size: 3.542vw;
  font-weight: bold;
  color: #ffffff;
  color: #64dcf0;
}

.ab1 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 1.563vw 0 0;
  max-width: 680px;
  width: 100%;
}

.ab1 .intr .down {
  margin: 3.125vw 0 0;
}

.ab1 .box h3 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
}

.ab1 .box p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.ab1 .box {
  width: 100%;
  margin: 10.938vw 0 0;
}

.ab1 .box .title {
  width: 100%;
}

.ab1 .box .txt {
  width: 100%;
  margin: 3.125vw 0 5.729vw;
}

.ab1 .txt .ev {
  max-width: 465px;
  width: 40%;
  margin: 0 3.125vw;
}

.ab1 .video {
  width: 100%;
  position: relative;
}

.ab1 .video .img {
  width: 100%;
  position: relative;
}

.ab1 .video .img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.ab1 .img img {
  max-width: 100%;
  width: 100%;
}

.ab1 .playB {
  position: absolute;
  right: 15.625vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.ab1 .playB h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #64dcf0;
  margin: 0 0 1.042vw;
}

.ab2 {
  width: 100%;
  padding: 6.25vw 14.583vw 3.646vw;
  position: relative;
  background-image: url(../img/ab2-bj.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.ab2 .tit {
  text-align: center;
}

.ab2 .tit h3 {
  color: #ffffff;
}

.ab2 .row {
  margin: 3.125vw 0 0;
}

.ab2 .col {
  width: 26%;
  margin: 0 0 2.604vw;
}

.ab2 .pic img {
  width: 2.604vw;
  height: 2.604vw;
  transition: all ease 0.5s;
}

.ab2 .intr {
  width: 100%;
  text-align: center;
  margin: 1.042vw 0 0;
}

.ab2 .intr span {
  font-size: 2.5vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #ffffff;
  display: block;
  transition: all ease 0.5s;
}

.ab2 .intr p {
  max-width: 275px;
  margin: 0 auto;
  font-size: 0.729vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  transition: all ease 0.5s;
}

.ab3 {
  width: 100%;
  padding: 6.25vw 8.333vw 0;
  position: relative;
  overflow: hidden;
}

.time {
  position: fixed;
  right: 3.125vw;
  top: 50%;
  transform: translateY(-50%) translateX(5.208vw);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.time.on {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  visibility: visible;
}

.time .dot {
  margin: 0.26vw 0;
  position: relative;
  transition: all ease 0.5s;
}

.time .dot:last-child {
  margin: 0;
}

.time .dot:last-child .line {
  display: none;
}

.time .dot .date {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #c9c9c9;
  position: relative;
  transition: all ease 0.5s;
}

.time .dot.on .date {
  color: #0067a0;
}

.time .dot .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.563vw;
  transform: translateY(-50%);
  width: 0.833vw;
  height: 1.042vw;
  background-image: url(../img/dot.svg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.time .dot.on .date::before {
  opacity: 1;
  visibility: visible;
}

.time .dot .line {
  width: 1px;
  height: 30px;
  background: #c9c9c9;
  margin: 0 auto;
  transition: all ease 0.5s;
}

.time .dot.on .line {
  background: #0067a0;
}

.ab3 .col {
  width: 100%;
  padding: 0 13.542vw 0 0;
  margin: 0 0 6.25vw;
}

.ab3 .col:nth-child(2n) {
  padding: 0 0 0 13.542vw;
}

.ab3 .intr {
  width: 60%;
}

.ab3 .pic {
  width: 28.5%;
}

.ab3 .intr h1 {
  font-size: 6.979vw;
  font-weight: 100;
  color: #0067a0;
  opacity: 0.18;
}

.ab3 .col:nth-child(2n) h1 {
  color: #646464;
  opacity: 0.1;
}

.ab3 .intr h2 {
  font-size: 5.365vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #c9c9c9;
}

.ab3 .intr P {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
  margin: 1.042vw 0 0;
  padding-left: 1.042vw;
  position: relative;
  max-width: 400px;
  width: 100%;
}

.ab3 .intr P::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.313vw;
  width: 0.521vw;
  height: 0.521vw;
  background: #0067a0;
  border-radius: 50%;
}

.ab4 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ab4 .col {
  width: 100%;
  position: relative;
}

.ab4 .pic {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all ease 0.5s;
}

.ab4 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.ab4 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.ab4 .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 5%;
  text-align: center;
  z-index: 5;
}

.ab4 .intr h1 {
  font-size: 3.542vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.ab4 .intr h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #64dcf0;
  transition: all ease 0.5s;
}

.ab4 .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 5%;
  text-align: center;
  z-index: 3;
}

.ab4 .txt span {
  font-size: 15.625vw;
  font-weight: 100;
  color: #ffffff;
  opacity: 0.15;
  text-transform: uppercase;
  transition: all ease 0.5s;
}

.ab4 .swiper-pagination {
  bottom: 2.865vw;
}

.ab5 {
  width: 100%;
  padding: 6.25vw 0;
  position: relative;
}

.ab5 .tit {
  text-align: center;
}

.ab5 .numberB {
  width: 100%;
  margin: 2.083vw 0 6.25vw;
}

.ab5 .ev {
  width: auto;
  margin: 0 5.208vw;
  text-align: center;
}

.ab5 .ev span {
  font-size: 5vw;
  font-family: "Gotham";
  font-weight: bold;
  line-height: 5vw;
  color: #0067a0;
}

.ab5 .ev b {
  font-size: 1.042vw;
  font-weight: 400;
  color: #0067a0;
  margin: 0 0 0.26vw 0.26vw;
}

.ab5 .ev p {
  font-size: 1.042vw;
  font-weight: 400;
  color: #0067a0;
  margin: 1.042vw 0 0;
}

.ab5 .swiper-slide {
  width: 18.229vw !important;
}

.ab5 .col {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.ab5 .intr {
  width: 100%;
}

.ab5 .date {
  font-size: 2.083vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #0067a0;
  padding-bottom: 1.042vw;
  border-bottom: 1px solid #c9c9c9;
  transition: all ease 0.5s;
}

.ab5 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
  margin: 1.042vw 0 0;
  padding-left: 1.042vw;
  position: relative;
  transition: all ease 0.5s;
}

.ab5 .intr p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.313vw;
  width: 0.521vw;
  height: 0.521vw;
  background: #0067a0;
  border-radius: 50%;
}

.ab5 .swiper-box {
  width: 100%;
  position: relative;
  margin: 3.125vw 0;
}

.ab5 .swiper-scrollbar {
  position: relative;
  left: initial;
  bottom: initial;
  width: 20.313vw;
  height: 0.104vw;
  background: rgba(0, 103, 160, 0.2);
  cursor: grab;
}

.ab5 .swiper-scrollbar>.swiper-scrollbar-drag {
  background: #0067a0 !important;
}

.ab5 .swiper-btn {
  margin: 0 1.042vw;
}

.obtain {
  width: 14.844vw;
  height: 3.385vw;
  background: #0067a0;
  margin: 0 auto;
  transition: all ease 0.5s;
}

.obtain span {
  font-size: 0.729vw;
  font-weight: 600;
  color: #ffffff;
}

/* 新闻中心 */

.ne1 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  position: relative;
}

.ne1 .selectB {
  width: 100%;
}

.ne1 .select {
  width: auto;
  margin-right: 1.563vw;
  position: relative;
  cursor: pointer;
  transition: all ease 0.5s;
}

.ne1 .place {
  width: 11.458vw;
  height: 3.385vw;
  padding: 0 1.563vw;
  background: #0067a0;
  position: relative;
  transition: all ease 0.5s;
}

.ne1 .place span,
.ne1 .place b,
.ne1 .place i {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.5s;
}

.ne1 .place i {
  transform: rotate(-90deg);
}

.ne1 .select.on i {
  transform: rotate(0deg);
}

.ne1 .sub {
  display: none;
  position: absolute;
  left: 0;
  top: 3.385vw;
  width: 100%;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  max-height: 18.75vw;
  overflow: auto;
  z-index: 5;
}

.ne1 .sub .pk {
  height: 3.385vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.833vw;
  font-weight: 400;
  color: #0067a0;
  cursor: pointer;
  transition: all ease 0.5s;
}

.ne1 .row {
  margin: 3.125vw 0 0;
}

.ne1 .col {
  width: 30%;
  margin: 0 0 5.208vw;
  position: relative;
  transition: all ease 0.5s;
}

.ne1 .pic {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.ne1 .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
}

.ne1 .img img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.ne1 .col:hover .img img {
  transform: scale(1.05);
}

.ne1 .tag {
  position: absolute;
  left: 0.781vw;
  bottom: -0.26vw;
  height: 1.563vw;
  padding: 0 0.781vw;
  background: #64dcf0;
  transition: all ease 0.5s;
}

.ne1 .tag span {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.5s;
}

.ne1 .intr {
  width: 100%;
  margin: 1.042vw 0 0;
}

.ne1 .intr h6 {
  max-width: 70%;
  min-height: 2.344vw;
  font-size: 0.833vw;
  font-weight: 600;
  line-height: 1.5;
  color: #0067a0;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all ease 0.5s;
}

.ne1 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 1.042vw 0 1.302vw;
  transition: all ease 0.5s;
}

.ne1 .intr .date {
  font-size: 0.729vw;
  font-weight: 400;
  color: #0067a0;
}

.ne2 {
  width: 100%;
  position: relative;
  padding: 14.063vw 25vw 9.375vw;
  background: #f7f7f7;
}

.ne2 .intr {
  width: 100%;
  text-align: center;
}

.ne2 .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #000000;
  margin: 0 0 1.042vw;
  transition: all ease 0.5s;
}

.ne2 .date {
  font-size: 0.729vw;
  font-weight: 400;
  line-height: 1;
  color: #0067a0;
  margin-right: 1.042vw;
  transition: all ease 0.5s;
}

.ne2 .tag {
  padding: 0.26vw 0.781vw;
  background: rgba(0, 0, 0, 0.5);
  transition: all ease 0.5s;
}

.ne2 .tag span {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.5s;
}

.ne3 {
  width: 100%;
  position: relative;
  padding: 3.125vw 25vw;
}

.ne3 .intr {
  width: 100%;
}

.ne3 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.ne4 {
  width: 100%;
  position: relative;
  padding: 3.125vw 8.333vw;
  background: #f7f8fa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.turnpage {
  width: 100%;
}

.turnpage p {
  font-size: 0.938vw;
  font-weight: 400;
  color: #646464;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all ease 0.5s;
}

.turnpage img {
  width: 1.823vw;
}

.turnpage>a:nth-child(2) p {
  color: #0067a0;
}

.turnpage>a:nth-child(1) {
  width: 35%;
  text-align: left;
}

.turnpage>a:nth-child(2) {
  width: 20%;
  text-align: center;
}

.turnpage>a:nth-child(3) {
  width: 35%;
  text-align: right;
}

/* 投资者关系 */

.in1 {
  width: 100%;
  padding: 6.25vw 8.333vw 5.208vw;
  position: relative;
}

.in1 .col {
  width: 32%;
  padding: 2.083vw;
  background: #f1f3f7;
  margin: 0 0 1.042vw;
}

.in1 .pic img {
  width: 4.167vw;
  height: 4.167vw;
  transition: all ease 0.5s;
}

.in1 .intr {
  width: 100%;
  margin: 3.125vw 0 0;
}

.in1 .intr .txt {
  width: calc(100% - 4.167vw);
}

.in1 .txt h4 {
  min-height: 2.344vw;
  font-size: 1.667vw;
  font-weight: 600;
  color: #0067a0;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all ease 0.5s;
}

.in1 .more {
  opacity: 0;
  visibility: hidden;
}

.in1 .col:hover .more {
  opacity: 1;
  visibility: visible;
}

/* 加入我们 */
.jo1 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  background: #f7f7f7;
  position: relative;
}

.jo1 .choose {
  width: 100%;
  margin: 2.083vw 0;
}

.jo1 .choose .pick {
  margin-bottom: 1.042vw;
}

.jo1 .opt span {
  font-size: 0.833vw;
  font-weight: 600;
  color: #646464;
  margin-right: 1.563vw;
  transition: all ease 0.5s;
}

.jo1 .select span {
  font-size: 0.833vw;
  font-weight: 600;
  color: #646464;
  background: transparent;
  padding: 0.26vw 0.521vw;
  margin-right: 0.521vw;
  border-radius: 5px;
  cursor: pointer;
  transition: all ease 0.5s;
}

.jo1 .select span.on {
  color: #ffffff;
  background: #0067a0;
}

.jo1 .col {
  width: 100%;
  padding: 1.302vw 2.083vw;
  margin: 0 0 1.042vw;
  background: #ffffff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all ease 0.5s;
}

.jo1 .name {
  width: 100%;
  margin: 0 0 0.781vw;
  transition: all ease 0.5s;
}

.jo1 .name h6 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #151414;
  transition: all ease 0.5s;
}

.jo1 .name span {
  font-size: 1.25vw;
  font-family: "Poppins";
  font-weight: bold;
  color: #64dcf0;
  margin-left: 1.042vw;
  transition: all ease 0.5s;
}

.jo1 .sogB {
  width: 100%;
}

.jo1 .sog {
  padding: 0.26vw 0.781vw;
  margin-right: 1.042vw;
  background: #f7f7f7;
  transition: all ease 0.5s;
}

.jo1 .sog span {
  font-size: 0.833vw;
  line-height: 1;
  font-weight: 400;
  color: #646464;
  transition: all ease 0.5s;
}

.jo1 .intr {
  width: 100%;
  display: none;
}

.jo1 .join {
  position: absolute;
  right: 2.083vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.jo1 .pagelist {
  margin: 2.083vw 0 0;
}

.jo2 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  position: relative;
}

.jo2 .row {
  margin: 3.125vw 0 0;
}

.jo2 .col {
  width: 32%;
  position: relative;
  transition: all ease 0.5s;
}

.jo2 .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease 0.5s;
}

.jo2 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.contant {
  width: 100%;
  position: relative;
}

.contant .col {
  /* width: 33.3%; */
  width: 50%;
  position: relative;
  transition: all ease 0.5s;
}

.contant .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease 0.5s;
}

.contant .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.contant .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.contant .col:hover .pic img {
  transform: scale(1.05);
}

.contant .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  padding: 0 5%;
  text-align: center;
}

.contant .intr h4 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

/* 商务合作 */
.bu1 {
  width: 100%;
  padding: 6.25vw 8.333vw;
}

.bu1 .row {
  margin: 3.125vw 0 0;
}

.bu1 .col {
  max-width: 465px;
  width: 40%;
  margin: 0 3.125vw;
}

.bu1 .intr {
  width: 100%;
}

.bu1 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
}

.bu1 .take {
  margin: 2.083vw 0 0;
}

.bu2 {
  width: 100%;
  padding: 6.25vw 8.333vw 4.167vw;
  background: #f7f7f7;
}

.bu2 .tit2 {
  margin: 2.083vw 0 0;
}

.bu2 .logB {
  width: 100%;
  display: none;
}

.bu2 .logB.on {
  display: block;
}

.bu2 .row {
  margin: 3.125vw 0 0;
}

.bu2 .col {
  width: 12.6%;
  margin: 0 0 2.083vw;
  background: #ffffff;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.07);
  transition: all ease 0.5s;
}

.bu2 .pic {
  width: 100%;
  transition: all ease 0.5s;
}

.bu2 .pic img {
  max-width: 80%;
}

/* 联系我们 */
.co1 {
  width: 100%;
  padding: 6.25vw 8.333vw 0;
}

.co1 .intr {
  width: 25%;
  padding: 2.083vw 0 0;
}

.co1 .intr h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #0067a0;
  margin: 0 0 1.042vw;
}

.co1 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
  margin: 0 0 0.781vw;
}

.co1 .intr b {
  font-size: 1.25vw;
  font-weight: bold;
  color: #0067a0;
  margin-left: 0.521vw;
}

.co1 .ewm {
  position: static !important;
  width: 6.771vw;
  height: 6.771vw;
  padding: 0.26vw;
  background: #0067a0;
  border: 1px solid #ffffff;
  margin: 1.563vw 0 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.co1 .ewm img {
  max-width: 100%;
  width: 100%;
}

.co1 .pic {
  width: 73.333%;
}

.co1 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.co2 {
  width: 100%;
  padding: 3.125vw 8.333vw 6.25vw;
}

.co2 .row {
  margin: 3.125vw 0 0;
}

.co2 .table {
  width: 100%;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.table thead th {
  width: 33.333%;
  padding: 1.302vw 0;
  background: #f7f7f7;
  font-size: 1.25vw;
  font-weight: 600;
  color: #0067a0;
  text-align: center;
  border: 1px solid #c9c9c9;
}

.table table td {
  width: 33.333%;
  padding: 1.302vw;
  background: #ffffff;
  font-size: 1.25vw;
  font-weight: 600;
  color: #646464;
  text-align: center;
  word-break: break-all;
  border: 1px solid #c9c9c9;
}

.table tr th:nth-child(1),
.table tr td:nth-child(1) {
  border-left: none;
}

.table tr th:nth-child(3),
.table tr td:nth-child(3) {
  border-right: none;
}

.table tr th {
  border-top: 3px solid #0067a0;
}

.co3 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  background: #f7f7f7;
}

.co3 .tit2 {
  margin: 1.042vw 0 0;
}

.co3 .row {
  margin: 3.125vw 0 0;
}

.co3 .cbtnB {
  width: 100%;
}

.co3 .cbtnB .cbtn {
  width: 50%;
  height: 3.646vw;
  background: #64dcf0;
  cursor: pointer;
  transition: all ease 0.5s;
}

.co3 .cbtn span {
  font-size: 0.938vw;
  font-weight: bold;
  color: #ffffff;
  transition: all ease 0.5s;
}

.co3 .cbtn.on {
  background: #0067a0;
}

.co3 .formB {
  width: 100%;
  display: none;
}

.co3 .formB.on {
  display: block;
}

.co3 .form {
  width: 100%;
  background: #ffffff;
  padding: 3.125vw 10.417vw;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.12);
}

.co3 .form .label {
  margin: 0 0 1.563vw;
  position: relative;
  transition: all ease 0.5s;
}

.label h5 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #0067a0;
}

.label p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #646464;
  margin: 0 0 0.521vw;
}

.label b {
  color: #aa261b;
}

.label input {
  width: 100%;
  height: 2.865vw;
  padding: 0 1.042vw;
  background: #ffffff;
  border: 1px solid rgba(112, 112, 112, 0.2);
  transition: all ease 0.5s;
}

.label textarea {
  width: 100%;
  height: 12.5vw;
  padding: 1.042vw;
  background: #ffffff;
  border: 1px solid rgba(112, 112, 112, 0.2);
  transition: all ease 0.5s;
}

.label i {
  position: absolute;
  top: 50%;
  right: 1.042vw;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 4;
  font-size: 0.833vw;
  color: #646464;
  pointer-events: none;
  display: inline-block;
}

.label .yzm {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100px;
}

.label .input-menu {
  width: 100%;
  position: relative;
}

.label .input-sub {
  position: absolute;
  top: 100%;
  left: -1000vw;
  z-index: 5;
  width: 100%;
  border: 1px solid #dedede;
  overflow: hidden;
  opacity: 0;
  transition: opacity ease 0.3s;
}

.label .input-sub li {
  background: #ffffff;
  padding: 0.781vw 1.302vw;
  font-size: 0.833vw;
  color: #121212;
  cursor: pointer;
  transition: all ease 0.5s;
}

.input-sub li:hover {
  background: #f6f6f8;
}

.input:focus+.input-sub {
  opacity: 1;
  left: 0;
}

.input:focus+.iconfont {
  transform: translateY(-50%) rotate(0deg);
}

.co3 .checkbox {
  width: 100%;
  margin: 0 0 2.083vw;
}

.co3 .check {
  width: 1.042vw;
  height: 1.042vw;
  background: #ffffff;
  border: 1px solid #707070;
  margin-right: 0.521vw;
  cursor: pointer;
  transition: all ease 0.5s;
}

.co3 .check.on {
  background: #0067a0;
  border: 1px solid #0067a0;
}

.co3 .txt p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #000000;
}

.co3 .txt p span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #0067a0;
  margin-left: 0.26vw;
}

.co3 .btn {
  width: 4.688vw;
  height: 3.385vw;
  background: #0067a0;
  cursor: pointer;
  transition: all ease 0.5s;
}

.co3 .btn span {
  font-size: 0.729vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.label_10 {
  width: 100%;
}

.label_8 {
  width: 78%;
}

.label_5 {
  width: 48%;
}

.label_3 {
  width: 31%;
}

.label_22 {
  width: 22%;
}

.label_2 {
  width: 18%;
}

/* 搜索中心 */
.sear {
  width: 100%;
  padding: 10.938vw 8.333vw;
  position: relative;
}

.sear .row {
  margin: 3.125vw 0 0;
}

.sear .col {
  width: 30%;
  margin: 0 0 2.083vw;
  position: relative;
  transition: all ease 0.5s;
}

.sear .pic {
  width: 100%;
  position: relative;
  transition: all ease 0.5s;
}

.sear .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
}

.sear .img img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.5s;
}

.sear .col:hover .img img {
  transform: scale(1.05);
}

.sear .intr {
  width: 100%;
  margin: 1.042vw 0 0;
}

.sear .intr h6 {
  font-size: 0.833vw;
  font-weight: 600;
  line-height: 1.5;
  color: #0067a0;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all ease 0.5s;
}

.sear .tit h3 {
  text-align: center;
}

.sear .pagelist {
  margin: 1.042vw 0 3.125vw;
}

.stpr {
  width: 100%;
  padding: 10.938vw 8.333vw 6.25vw;
  position: relative;
}

.stpr .row {
  margin: 3.125vw 0 0;
}

.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100000000;
  background-color: #0067a0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.loading.on {
  transform: translateX(100%);
}



.ho3 .swiper-btn,
.ho4 .swiper-btn,
.pr3 .swiper-btn,
.pr5 .swiper-btn,
.so3 .swiper-btn,
.so4 .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.ho3 .prev,
.ho4 .prev,
.pr3 .prev,
.pr5 .prev,
.so3 .prev,
.so4 .prev {
  left: 5%;
}

.ho3 .next,
.ho4 .next,
.pr3 .next,
.pr5 .next,
.so3 .next,
.so4 .next {
  right: 5%;
}

.ho3 .swiper-button-disabled,
.ho4 .swiper-button-disabled,
.pr3 .swiper-button-disabled,
.pr5 .swiper-button-disabled,
.so3 .swiper-button-disabled,
.so4 .swiper-button-disabled {
  opacity: 0 !important;
}


.Pop_form {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 105;
  max-width: 420px;
  width: 90%;
  margin: 0 auto;
  padding: 4.167vw 3.125vw;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.Pop_form.on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.Pop_form .close {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  z-index: 5;
  cursor: pointer;
}

.Pop_form .close i {
  font-size: 1.563vw;
  font-weight: bold;
  color: #0067a0;
}

.Pop_form .txt {
  width: 100%;
  margin: 0 0 2.083vw;
  text-align: center;
}

.Pop_form .txt h3 {
  font-size: 2.083vw;
  font-weight: 600;
  color: #0067a0;
  margin: 0 0 0.521vw;
}

.Pop_form .txt p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #646464;
}

.Pop_form .form {
  width: 100%;
  display: none;
}

.Pop_form .form.on {
  display: block;
}

.Pop_form .label {
  width: 100%;
  margin: 0 0 0.781vw;
}

.Pop_form span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #0067a0;
}

.Pop_form .label span {
  width: 60px;
}

.Pop_form b {
  color: #aa261b;
  margin-left: 0.26vw;
}

.Pop_form .input {
  width: 70%;
  height: 1.563vw;
  padding: 0 0.781vw;
  background: #f1f3f7;
}

.Pop_form .btn {
  width: 100%;
  height: 2.865vw;
  border-radius: 30px;
  background: #64dcf0;
  margin: 0.781vw 0 0;
  cursor: pointer;
  transition: all ease 0.5s;
}

.Pop_form .btn span {
  font-size: 0.729vw;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}