@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-text-size-adjust: none;
}
:root {
  /* ====== 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;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Tahoma", "Arial", "sans-serif";
  background: #ffffff;
}
body.hd {
  overflow: hidden;
}
input,
textarea,
select,
button {
  border: none;
  outline: none;
  resize: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: "PingFang SC", "Microsoft YaHei", "Tahoma", "Arial", "sans-serif";
}
button {
  cursor: pointer;
}
ul,
ol,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
i,
b {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
}
/* 引入字体 */
@font-face {
  font-family: "PingFang SC";
  src: url(../font/PingFang-Regular.ttf);
}
@font-face {
  font-family: "Poppins";
  src: url(../font/Poppins-Medium.ttf);
}
/* 清除默认样式 */
.swiper-button-next,
.swiper-button-prev {
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 0.833vw;
  font-weight: 400;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 0.833vw;
  font-weight: 400;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 0.833vw;
  font-weight: 400;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 0.833vw;
  font-weight: 400;
}
/* 滚动条 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #eeeeee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background-color: #00194b;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #000000;
}
::-webkit-scrollbar-button:vertical {
  display: none;
}
/* 浮动 */
.fl {
  float: left;
}
.fr {
  float: right;
}
/* 清除 */
.ov {
  overflow: hidden;
}
/* 隐藏 */
.op0 {
  opacity: 0;
  visibility: hidden;
}
.op1 {
  opacity: 1;
  visibility: visible;
}
/* flex布局 */
.fl-f {
  display: flex;
  display: -webkit-flex;
}
/* flex上下布局 */
.fl-ac {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.fl-as {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
}
.fl-ae {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
}
/* flex左右布局 */
.fl-jc {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
.fl-jb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.fl-ja {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}
.fl-js {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
}
.fl-je {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}
/* flex上下左右布局 */
.fl-cc {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.fl-cb {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
.fl-ca {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-around;
}
.fl-cs {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
.fl-ce {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
}
.fl-sa {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-around;
}
.fl-sb {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-between;
}
.fl-ss {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.fl-se {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.fl-ea {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-around;
}
.fl-eb {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-between;
}
.fl-es {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.fl-ee {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-end;
}
/* flex自适应布局 */
.fl-fw {
  display: flex;
  flex-wrap: wrap;
}
.fl-fc {
  display: flex;
  flex-direction: column;
}
/* 手机端按钮 */
.toggle {
  display: none;
  padding: 0 0;
  background-color: transparent;
  border: none !important;
  position: relative;
  z-index: 61;
}
.toggle .line-top,
.toggle .line-middle,
.toggle .line-bottom {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: 0.4s;
}
.open.toggle .line-top,
.open.toggle .line-middle,
.open.toggle .line-bottom {
  background-color: #ffffff;
}
body.dark .toggle .line-top,
body.dark .toggle .line-middle,
body.dark .toggle .line-bottom {
  background-color: #ffffff;
}
body.dark .open.toggle .line-top,
body.dark .open.toggle .line-middle,
body.dark .open.toggle .line-bottom {
  background-color: #ffffff;
}
.open .line-top {
  -webkit-transform: rotate(45deg) translate(4px, 9px);
  transform: rotate(45deg) translate(4px, 9px);
}
.open .line-middle {
  opacity: 0;
}
.open .line-bottom {
  -webkit-transform: rotate(-45deg) translate(2px, -7px);
  transform: rotate(-45deg) translate(2px, -7px);
}
.wap-sub {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  box-sizing: border-box;
  padding-top: 80px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: all cubic-bezier(0.75, 0, 0.29, 1.03) 0.5s;
  display: none;
}
.wap-sub.on {
  transform: translateX(0);
}
.wap-sub .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;
}
.wap-sub .item .sll {
  padding: 10px 0;
}
.wap-sub .item .sll a {
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
}
.wap-sub .item .sll .img {
  width: 16px;
  transform: rotate(-90deg);
  transition: all ease 0.3s;
}
.wap-sub .item.on .img {
  transform: rotate(0);
}
.wap-sub .item .s-sub {
  width: 100%;
  overflow: hidden;
  display: none;
  background: #333;
  padding: 0;
  border-radius: 0;
  margin: 15px 0;
}
.s-sub dd a {
  width: 100%;
  display: block;
  font-size: 14px;
  color: #fff;
  padding: 5px 10px;
  transition: all ease 0.3s;
}
.op-bg {
  background-color: #000000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  pointer-events: none;
}
.op-bg.show {
  opacity: 0.7;
}
.zw {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
.zw::after,
.zw::before {
  display: none !important;
}
@-webkit-keyframes fadeInMaxToMinTan {
  0% {
    opacity: 0.25;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.25;
  }
}
@keyframes fadeInMaxToMinTan {
  0% {
    opacity: 0.25;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.25;
  }
}

@keyframes fadeRotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes fadeRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(80deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes scrollAni {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 1.563vw;
    opacity: 1;
  }
}
@-webkit-keyframes scrollAni {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 1.563vw;
    opacity: 1;
  }
}

/* 公共样式 */
.cont {
  width: 100%;
  padding: 0 4.167vw;
}
.fluid {
  width: 100%;
  padding: 0 14.583vw;
}
.wrap {
  width: 100%;
}
.row {
  width: 100%;
}
.main {
  width: 100%;
  position: relative;
}
.bar {
  width: 100%;
  padding: 1.563vw 0;
  background: #ffffff;
}
.bar .col {
  margin: 0 2.604vw;
  padding: 0.417vw 0;
  position: relative;
  display: block;
  font-size: 0.833vw;
  font-weight: 600;
  color: #707070;
  cursor: pointer;
  transition: all ease 0.3s;
}
.bar .col::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.208vw;
  background: #f99900;
  transition: all ease 0.3s;
}
.bar .col.on,
.bar .col:hover {
  font-weight: 600;
  color: #111111;
}
.bar .col.on::after,
.bar .col:hover::after {
  width: 100%;
}
.pagelist {
  width: 100%;
}
.pagelist .prev,
.pagelist .next {
  width: 2.083vw;
  height: 2.083vw;
  background: #ebebeb;
  margin: 0 1.563vw;
  transition: all ease 0.3s;
}
.pagelist .prev a,
.pagelist .next a {
  width: 100%;
  height: 100%;
}
.pagelist .prev i,
.pagelist .next i {
  color: #ffffff;
  font-size: 0.938vw;
  font-weight: 400;
}
.pagelist .prev:hover,
.pagelist .next:hover {
  background: #00194b;
}
.pagelist .prev:hover i,
.pagelist .next:hover i {
  color: #ffffff;
}
.pagelist .page {
  margin: 0 0.521vw;
  transition: all ease 0.3s;
}
.pagelist .page a {
  font-size: 0.938vw;
  font-weight: 400;
  color: #dddddd;
  transition: all ease 0.3s;
}
.pagelist .page.on a,
.pagelist .page:hover a {
  color: #00194b;
}
.back .btn {
  width: 1.563vw;
  margin-right: 1.042vw;
}
.back .txt {
  font-size: 0.833vw;
  font-weight: 400;
  color: #00194b;
}
.more {
  font-size: 0.938vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.3s;
}
.more img {
  width: 0.625vw;
  margin-left: 0.625vw;
  transition: all ease 0.3s;
}
.more:hover img {
  transform: rotate(180deg);
}
.play {
  width: 2.604vw;
  height: 2.604vw;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  cursor: pointer;
}
.play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.167vw;
  height: 4.167vw;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  animation: fadeInMaxToMinTan 2s linear infinite;
  -webkit-animation: fadeInMaxToMinTan 2s linear infinite;
}
.play img {
  width: 0.521vw;
}
.tit {
  width: 100%;
  text-align: center;
}
.tit h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
  margin: 0.521vw 0 0;
}
.tit h3 {
  font-size: 1.25vw;
  font-weight: 400;
  color: #111111;
}
.tit p {
  max-width: 57.292vw;
  width: 100%;
  margin: 1.302vw auto 0;
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
}
.home3 .tit h2,
.home3 .tit h3,
.home3 .tit p,
.home4 .tit h2,
.home4 .tit h3,
.ab4 .tit h2,
.ab4 .tit h3,
.pr11 .tit h2,
.pr11 .tit h3,
.co1 .tit h2,
.pr14 .tit h2,
.pr14 .tit h3 {
  color: #ffffff;
}

.pr1 .tit h2,
.pr2 .tit h2,
.pr5 .tit h2,
.pr6 .tit h2,
.co1 .row2 h2,
.co1 .row3 h2 {
  margin: 0;
}

.scrollup {
  position: fixed;
  right: 1.302vw;
  bottom: -20%;
  z-index: 50;
  width: 2.865vw;
  height: 2.865vw;
  cursor: pointer;
  transition: all ease 0.3s;
}
.show-scroll {
  bottom: 18.229vw;
}
.kefu {
  position: fixed;
  right: 1.302vw;
  bottom: 21.354vw;
  z-index: 50;
  width: 2.865vw;
  height: 2.865vw;
  cursor: pointer;
  transition: all ease 0.3s;
}
.swiper-btn {
  cursor: pointer;
}
/* 公共头部 */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.563vw 0;
  background: transparent;
  transition: all ease 0.3s;
}
[data-page="black"] .header {
  background: #1e1f22;
}
.header.on {
  background: #1e1f22;
  padding: 0.521vw 0;
}
.header .logo img {
  width: 9.375vw;
  position: relative;
  z-index: 61;
}
.header .stock {
  margin-left: 1.563vw;
}
.stock a {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
}
.header .menu .link {
  margin: 0 2.083vw;
  padding: 0.521vw 0;
  transition: all ease 0.3s;
  position: relative;
}
.menu .link > a {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.3s;
}
.menu .link:hover > a,
.menu .link.on > a {
  font-weight: 600;
}
.menu .link .down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 2.604vw;
  min-width: 100%;
  width: max-content;
  border-radius: 2px;
  border-top: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 15;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 7%);
  text-align: center;
  transition: all ease 0.3s;
}
.menu .link:hover .down {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.menu .link .down > a {
  display: block;
  font-size: 0.9375vw;
  padding: 1em 2em;
  border-bottom: 1px solid #aaa;
  font-weight: 400;
  color: #3e3e3e;
}
.header .language {
  padding: 0.521vw 0;
  margin-right: 1.042vw;
  transition: all ease 0.3s;
  position: relative;
}
.language > a,
.language i {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.3s;
}
.language i {
  margin-left: 0.521vw;
}
.language .language-down {
  position: absolute;
  left: 50%;
  top: 2.604vw;
  transform: translateX(-50%);
  padding: 0.677vw 0.729vw;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.language:hover .language-down {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.language-down a {
  padding: 0 0.625vw;
  margin-bottom: 0.729vw;
}
.language-down a:last-child {
  margin-bottom: 0;
}
.language-down img {
  width: 1.25vw;
  margin-right: 0.677vw;
}
.header .search {
  width: 1.719vw;
  height: 1.719vw;
  background: #f99900;
  border-radius: 50%;
}
.header .search img {
  width: 0.781vw;
}
.mode-w {
  width: 8.333vw;
  height: 2.708vw;
  background: #ffffff;
  border-radius: 26px;
  font-size: 0.833vw;
  font-weight: 400;
  color: #231815;
  transition: all ease 0.3s;
}
.mode-w:hover {
  transform: translateY(-5px);
}
.mode-w img {
  max-width: 0.938vw;
  margin-right: 0.417vw;
}

.mode {
  width: 8.333vw;
  height: 2.708vw;
  background: #00194b;
  border-radius: 26px;
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.3s;
}
.mode:hover {
  transform: translateY(-5px);
}
.mode img {
  max-width: 0.938vw;
  margin-right: 0.417vw;
}
/* 公共banner */
.banner {
  width: 100%;
  position: relative;
}
.banner .pic {
  width: 100%;
  overflow: hidden;
}
.banner .pic img {
  max-width: 100%;
  width: 100%;
  transform: scale(1.1);
  transition: all ease 0.5s;
}
.loaded .banner img {
  transform: scale(1);
}
.banner .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.banner .intr h1 {
  font-size: 3.021vw;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.042vw;
}
.banner .intr p {
  font-size: 1.25vw;
  font-weight: 100;
  color: #ffffff;
}
.banner .search-intr {
  max-width: 30.208vw;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.search-box {
  width: 100%;
  position: relative;
}
.search-box input {
  width: 100%;
  height: 3.646vw;
  background: #ffffff;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.12);
  border-radius: 38px;
  padding: 0 2.083vw;
}
.search-box .search-btn {
  width: 1.042vw;
  position: absolute;
  right: 2.083vw;
  top: 50%;
  transform: translateY(-50%) !important;
  cursor: pointer;
}
/* 公共联系 */
.touch {
  width: 100%;
  padding: 6.771vw 0;
  background-image: url(../img/h5-bj.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.touch .col-l {
  width: 45%;
}
.touch .col-l h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
}
.touch .col-r {
  width: 52%;
}
.touch .form {
  width: 100%;
  height: 3.646vw;
  background: #ffffff;
}
.touch .form .laber {
  width: 80%;
  height: 100%;
  padding: 1.25vw 0;
}
.touch input::-webkit-input-placeholder,
.touch textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #231815;
}
.touch input::-moz-placeholder,
.touch textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #231815;
}
.touch input:-ms-input-placeholder,
.touch textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #231815;
}
.touch input:-moz-placeholder,
.touch textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #231815;
}
.touch .form input {
  width: 50%;
  height: 100%;
  padding: 0 1.563vw;
  border-radius: 0%;
}
.touch .form input:first-child {
  border-right: 1px solid rgba(0, 25, 75, 0.2);
}
.touch .btn {
  width: 20%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: all ease 0.3s;
}
.touch .btn-img {
  width: 40%;
  height: 100%;
  background: #00194b;
  -webkit-clip-path: polygon(0 0, 100% 0%, 70% 150%, 0% 150%);
  clip-path: polygon(0 0, 100% 0%, 70% 150%, 0% 150%);
  transition: all ease 0.3s;
}
.touch .btn-img img {
  width: 0.417vw;
  transition: all ease 0.3s;
}
.touch .btn-txt {
  width: 60%;
  height: 100%;
  font-size: 0.938vw;
  font-weight: 400;
  color: #00194b;
}
.touch .btn:hover .btn-img img {
  transform: translateX(5px);
}
/* 公共底部 */
.footer {
  width: 100%;
  background: #ffffff;
  position: relative;
}
.footer .f-t {
  width: 100%;
  padding: 3.125vw 0;
}
.f-t .f-logo {
  margin-bottom: 2.344vw;
}
.f-t .f-logo img {
  max-width: 9.375vw;
}
.f-t .f-menu {
  width: 56%;
}
.f-t .f-menu dt {
  font-size: 0.833vw;
  font-weight: 400;
  color: #00194b;
  margin-bottom: 1.302vw;
  opacity: 0.5;
}
.f-t .f-menu dd {
  font-size: 0.833vw;
  font-weight: 400;
  color: #00194b;
  margin-bottom: 1.042vw;
}
.f-t .f-menu dd > a {
  transition: all ease 0.3s;
}
.f-t .f-menu dd:hover > a {
  text-decoration: underline;
}
.f-t .f-conn {
  width: 20%;
}
.f-t .f-conn img {
  width: 1.042vw;
  margin-right: 0.729vw;
}
.f-t .f-conn dd {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.3;
  color: #00194b;
  margin-bottom: 1.302vw;
}
.f-t .f-menu dd:last-child,
.f-t .f-conn dd:last-child {
  margin-bottom: 0;
}
.f-t .f-ewm .app {
  margin-bottom: 1.042vw;
}
.app .ico {
  position: relative;
  margin-right: 1.563vw;
}
.app .ico > img {
  max-width: 1.146vw;
  transition: all ease 0.3s;
}
.app .ico > .ewm {
  position: absolute;
  top: -6.25vw;
  width: 6.25vw;
  height: 6.25vw;
  background: #ffffff;
  box-shadow: 0px 3px 20px rgb(0 0 0 / 16%);
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.app .ico:hover > .ewm {
  top: -7.292vw;
  opacity: 1;
  visibility: visible;
}
.app .ico .ewm > img {
  width: 5.729vw;
  height: 5.729vw;
}
.f-t .f-ewm .sao {
  text-align: center;
}
.f-t .f-ewm .sao img {
  max-width: 9.375vw;
}
.f-t .f-ewm p {
  font-size: 0.625vw;
  font-weight: 400;
  color: #00194b;
  margin-top: 0.521vw;
}
.footer .f-b {
  width: 100%;
  padding: 1.823vw 0;
}
.f-b span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #00194b;
  opacity: 0.5;
  margin-right: 1.302vw;
}
.f-b a {
  font-size: 0.833vw;
  font-weight: 400;
  color: #00194b;
}
/* cookies */
.cookies {
  position: fixed;
  left: 0;
  bottom: -20%;
  z-index: 999;
  width: 100%;
  padding: 1.563vw 2.604vw;
  background: rgba(0, 0, 0, 0.61);
  transition: all ease 0.3s;
}
.cookies.on {
  bottom: 0;
}
.cookies p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
}
.cookies a {
  font-size: 0.729vw;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  text-decoration: underline;
  margin-left: 1.042vw;
}
.cookies .yes {
  width: 7.813vw;
  height: 2.083vw;
  background: #f99900;
  border-radius: 2px;
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
/* 首页 */
.home1 {
  width: 100%;
  position: relative;
}
.home1 .pic {
  width: 100%;
}
.home1 .pic img {
  max-width: 100%;
  width: 100%;
}
.home1 .intr {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home1 .intr h1 {
  font-size: 3.021vw;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.521vw;
}
.home1 .intr h4 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #ffffff;
}
.home1 .more {
  margin: 3.385vw auto 0;
}
.home1 .swiper-slide {
  width: 100% !important;
}
.home1 .swiper-pagination {
  bottom: 7.292vw;
}
.home1 .swiper-pagination-bullet,
.home4 .swiper-pagination-bullet {
  width: 0.625vw;
  height: 0.625vw;
  border: 1px solid #ffffff;
  display: inline-block;
  border-radius: 0%;
  background: #ffffff;
  opacity: 1;
  margin: 0 0.521vw !important;
  transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.home1 .swiper-pagination-bullet-active,
.home4 .swiper-pagination-bullet-active {
  border: 1px solid #f99900;
  background: #f99900;
}
.home1 .scroll {
  position: absolute;
  left: 50%;
  bottom: 1.042vw;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}
.scroll-mouse {
  width: 1.875vw;
  height: 2.604vw;
  border: 1px solid #ffffff;
  border-radius: 50px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.052vw;
  height: 0.521vw;
  background-color: #ffffff;
  animation: scrollAni 2s infinite;
  -webkit-animation: scrollAni 2s infinite;
}
.scroll-txt {
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
  display: block;
  margin: 0.521vw auto 0;
}
.home2 {
  width: 100%;
  padding: 5.729vw 0 0 0;
  background: #000000;
  position: relative;
}
.home2 .cutover {
  margin-bottom: 4.688vw;
}
.home2 .cutover .sub {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.3;
  margin: 0 3.125vw;
  cursor: pointer;
  transition: all ease 0.3s;
}
.home2 .cutover .sub.on {
  opacity: 1;
}
.home2 .row {
  display: none;
}
.home2 .row.on {
  display: block;
}
.home2 .col-l {
  width: 78.125%;
  position: relative;
}
.home2 .col-l .yy {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  width: 100%;
}
.home2 .col-l .pic {
  width: 100%;
}
.home2 .pic .poster {
  overflow: hidden;
}
.home2 .poster img {
  max-width: 100%;
  width: 100%;
  /* transform: scale(0.8); */
  transition: all ease 0.3s;
}
/* .home2 .row.on .poster img {
  transform: scale(1);
} */
.home2 .col-l .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home2 .video-btn .play {
  position: relative;
}
.home2 .video-btn h4 {
  margin-top: 2.083vw;
  font-size: 1.25vw;
  font-weight: 600;
  color: #ffffff;
}
.home2 .col-l .intr {
  width: 36%;
  position: absolute;
  left: 50%;
  bottom: 5.573vw;
  transform: translateX(-50%);
  z-index: 6;
}
.home2 .col-l .txt {
  width: 33.33%;
  text-align: center;
}
.home2 .col-l .txt p {
  font-size: 0.833vw;
  font-weight: 600;
  color: #ffffff;
}
.home2 .col-l .txt span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  display: block;
  margin-top: 0.521vw;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.home2 .col-l .txt:nth-child(3) span {
  border: none;
}
.home2 .col-r {
  position: absolute;
  right: 6.771vw;
  bottom: 14.063vw;
  width: 30%;
  padding: 0.521vw 6.25vw 2.083vw;
  background: #ffffff;
}
.home2 .col-r .pic {
  max-width: 17.708vw;
}
.home2 .col-r .pic img {
  max-width: 100%;
  width: 100%;
}
.home2 .col-r .intr {
  margin: 0.833vw 0 1.302vw;
  text-align: center;
}
.home2 .col-r .intr p {
  font-size: 0.729vw;
  font-weight: 600;
  color: #111111;
}
.swiper-module {
  width: 100%;
}
.swiper-module .swiper-btn {
  width: 1.25vw;
  cursor: pointer;
}
.swiper-module .swiper-num {
  margin: 0 1.823vw;
}
.swiper-module .swiper-num span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #111111;
  margin: 0 0.26vw;
}
.home2 .col-btn {
  position: absolute;
  right: 4.896vw;
  bottom: 9.792vw;
}
.home2 .look .img {
  width: 2.604vw;
  height: 2.604vw;
  background: #ffffff;
  border-radius: 50%;
  transition: all ease 0.3s;
}
.home2 .look img {
  max-width: 0.625vw;
  transition: all ease 0.3s;
}
.home2 .look:hover img {
  transform: rotate(180deg);
}
.home2 .look .txt {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  margin-left: 0.781vw;
}
.home2 .mode-w {
  margin-left: 1.563vw;
}
.home3 {
  width: 100%;
  padding: 9.375vw 15.937vw;
  position: relative;
  background-image: url(../img/h3-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.home3 .play {
  margin: 2.083vw auto 1.823vw;
  position: relative;
}
.home3 .intr {
  width: 100%;
  margin-bottom: 3.646vw;
}
.home3 .intr span {
  font-size: 4.479vw;
  line-height: 4.479vw;
  font-weight: 600;
  color: #ffffff;
}
.home3 .intr b {
  font-size: 0.938vw;
  font-weight: 600;
  color: #ffffff;
  margin-left: 0.26vw;
  margin-bottom: 0.26vw;
}
.home3 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1.302vw;
}
.home3 .pic {
  width: 100%;
}
.home3 .pic .img {
  width: 13%;
  position: relative;
  padding: 0.521vw;
}
.home3 .pic .border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home3 .pic .image {
  max-width: 100%;
  width: 100%;
}
.home4 {
  width: 100%;
  padding: 9.375vw 15.937vw;
  position: relative;
  background-image: url(../img/h4-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.home4 .cutover {
  margin: 1.563vw 0 3.125vw;
}
.home4 .cutover .sub {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.3;
  margin: 0 0.521vw;
  cursor: pointer;
  transition: all ease 0.3s;
}
.home4 .cutover .sub.on {
  opacity: 1;
}
.home4 .row {
  display: none;
}
.home4 .row.on {
  display: block;
}
.home4 .swiper-slide {
  padding: 1px;
}
.home4 .intr {
  width: 100%;
  padding: 1.198vw;
  border: 1px solid #ebebeb;
  display: block;
}
.home4 .intr h4 {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-align: justify;
}
.home4 .intr p {
  font-size: 0.729vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: justify;
  margin: 10.417vw 0 1.042vw;
}
.home4 .intr span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.5;
  margin-right: 0.781vw;
}
.home4 .swiper-pagination {
  margin: 3.125vw 0 0;
  left: 50%;
  transform: translateX(-50%);
}
.home4 .more {
  margin: 6.25vw auto 0;
}
/* 关于我们 */
.about .bar {
  position: sticky;
  position: -webkit-sticky;
  top: 4.167vw;
  z-index: 88;
}
.ab1 {
  width: 100%;
  position: relative;
  padding: 7.813vw 0 0;
  background: #ffffff;
}
.ab1 .row1 {
  margin: 3.125vw 0;
}
.ab1 .row1 .intr,
.ab1 .row1 .pic {
  width: 50%;
  position: relative;
}
.ab1 .row1 .intr {
  padding-right: 4.427vw;
}
.ab1 .row1 p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  text-indent: 2em;
  text-align: justify;
  margin-bottom: 1.042vw;
}
.ab1 .row1 p:last-child {
  margin-bottom: 0;
}
.ab1 .row1 .img img {
  max-width: 100%;
  width: 100%;
}
.ab1 .row1 .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.ab1 .row2 {
  padding-bottom: 7.813vw;
}
.ab1 .row2 span {
  font-size: 4.479vw;
  line-height: 4.479vw;
  font-weight: 600;
  color: #111111;
}
.ab1 .row2 b {
  font-size: 2.083vw;
  font-weight: 600;
  color: #111111;
  margin-left: 0.26vw;
}
.ab1 .row2 p {
  font-size: 0.938vw;
  font-weight: 400;
  color: #111111;
  margin: 1.042vw 0 0;
}
.ab1 .row3 .col {
  width: 33.33%;
  /* border: 1px solid #ffffff; */
  position: relative;
  transition: all ease 0.3s;
}
.ab1 .row3 .col:nth-child(4),
.ab1 .row3 .col:nth-child(5) {
  width: 50%;
}
.ab1 .row3 .pic {
  width: 100%;
  position: relative;
}
.ab1 .row3 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 31, 34, 0.2);
  transition: all ease 0.3s;
}
.ab1 .row3 .col:hover .pic::after {
  background: rgba(30, 31, 34, 0.25);
}
.ab1 .row3 .pic img {
  max-width: 100%;
  width: 100%;
}
.ab1 .row3 .intr {
  position: absolute;
  left: 4.167vw;
  bottom: 2.083vw;
}
.ab1 .row3 .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
  transform: translateY(1.042vw);
  transition: all ease 0.3s;
}
.ab1 .row3 .intr p {
  font-size: 1.354vw;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.042vw;
  transform: translateY(1.042vw);
  transition: all ease 0.3s;
}
.ab1 .row3 .intr span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ab1 .row3 .col:hover .intr h2,
.ab1 .row3 .col:hover .intr p {
  transform: translateY(0);
}
.ab1 .row3 .col:hover .intr span {
  opacity: 1;
  visibility: visible;
}
.ab2 {
  width: 100%;
  position: relative;
  padding: 7.813vw 0 0;
  background: #ffffff;
}
.ab2 .row1 {
  margin: 3.125vw 0 0;
  padding: 0 0 7.813vw 14.583vw;
}
.ab2 .col-l {
  width: 35%;
}
.ab2 .col-r {
  width: 57%;
}
.ab2 .col-l .box {
  display: none;
  transition: all ease 0.3s;
}
.ab2 .col-l .box.on {
  display: block;
}
.ab2 .col-l .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #00194b;
}
.ab2 .col-l .intr em {
  width: 100%;
  height: 1px;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  margin: 1.042vw 0;
}
.ab2 .col-l .li {
  margin-bottom: 1.042vw;
}
.ab2 .col-l .li:last-child {
  margin-bottom: 0;
}
.ab2 .intr .li span {
  width: 14px;
  height: 1px;
  background: #111111;
  display: block;
  margin-right: 0.781vw;
}
.ab2 .intr .li p {
  font-size: 0.833vw;
  font-weight: 600;
  color: #111111;
}

.ab2 .intr2 {
  margin: 3.125vw 0;
}
.ab2 .intr2 .txt {
  width: 33.33%;
  text-align: center;
}
.ab2 .intr2 p {
  font-size: 0.833vw;
  font-weight: 600;
  color: #111111;
  margin-bottom: 0.521vw;
}
.ab2 .intr2 span {
  display: block;
  width: 100%;
  font-size: 0.833vw;
  font-weight: 100;
  color: #111111;
  border-right: 1px solid rgba(17, 17, 17, 0.2);
}
.ab2 .intr2 .txt:nth-child(3) span {
  border: none;
}
.ab2 .look .img {
  width: 2.604vw;
  height: 2.604vw;
  background: #00194b;
  border-radius: 50%;
  transition: all ease 0.3s;
}
.ab2 .look img {
  max-width: 0.625vw;
  transition: all ease 0.3s;
}
.ab2 .look:hover img {
  transform: rotate(180deg);
}
.ab2 .look .txt {
  font-size: 0.833vw;
  font-weight: 400;
  color: #00194b;
  margin-left: 0.781vw;
}
.ab2 .mode {
  margin-left: 1.563vw;
}
.ab2 .col-r .swiper-slide {
  width: 18.75vw !important;
  margin-right: 2.083vw;
}
.ab2 .col-r .box {
  width: 100%;
  position: relative;
}
.ab2 .col-r .intr {
  width: 80%;
  position: absolute;
  top: 0;
  left: 50%;
  padding: 2.604vw 0 2.083vw;
  transform: translateX(-50%);
  border-bottom: 1px solid #a0a0a0;
}
.ab2 .col-r .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.ab2 .col-r .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ab2 .wrap2 {
  width: 100%;
  position: relative;
}
.ab2 .type-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.3s;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.ab2 .type-img.on {
  opacity: 1;
}
.ab2 .row2 .col {
  width: 33.33%;
  padding: 10.156vw 8.854vw;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all ease 0.3s;
}
.ab2 .row2 .col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.45);
  transition: all ease 0.3s;
}
.ab2 .row2 .col.on::before {
  background: rgba(35, 24, 21, 0.6);
}
.ab2 .row2 .col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #ffffff;
  z-index: 1;
  transition: all ease 0.3s;
}
.ab2 .col-bg {
  position: absolute;
  width: 300%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  transition: all ease 0.3s;
  background-repeat: no-repeat;
  background-size: cover;
}
.ab2 .col-bg.on {
  opacity: 0;
}
.ab2 .row2 .col:nth-child(2) .col-bg {
  left: -100%;
}
.ab2 .row2 .col:nth-child(3) .col-bg {
  left: -200%;
}
.ab2 .row2 .intr {
  position: relative;
  z-index: 5;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: all ease 0.3s;
}
.ab2 .row2 .col.on .intr {
  opacity: 0;
  visibility: hidden;
}
.ab2 .row2 .txt {
  margin-top: 2.083vw;
}
.ab2 .row2 h2 {
  font-size: 1.667vw;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1.042vw;
}
.ab2 .row2 h4 {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1.042vw;
}
.ab2 .row2 p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.ab2 .row2 span {
  font-size: 2.188vw;
  font-weight: 600;
  color: #ffffff;
}
.ab2 .row2 b {
  font-size: 0.833vw;
  font-weight: 600;
  color: #ffffff;
}
.ab3 {
  width: 100%;
  padding: 7.813vw 0;
  position: relative;
}
.ab3 .row {
  margin-top: 3.125vw;
}
.ab3 .col-l {
  width: 32%;
}
.ab3 .col-r {
  width: 63%;
}
.ab3 .col-l .intr {
  display: none;
  transition: all ease 0.3s;
}
.ab3 .col-l .intr.on {
  display: block;
}
.ab3 .col-l h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
}
.ab3 .col-l p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  margin: 1.042vw 0 2.083vw;
  text-align: justify;
}
.ab3 .col-l .more {
  color: #111111;
  margin: 0;
}
.ab3 .col-r .pic {
  width: 100%;
}
.ab3 .pic img {
  max-width: 100%;
  width: 100%;
}
.ab4 {
  width: 100%;
  padding: 7.813vw 0;
  position: relative;
  background-image: url(../img/a4-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.ab4 .row {
  margin: 2.083vw 0 0;
}
.ab4 .swiper-container:after {
  content: "";
  position: absolute;
  top: 28.6%;
  left: 0;
  width: 100%;
  height: 0.052vw;
  background: rgba(255, 255, 255, 0.33);
}
.ab4 .swiper-slide {
  padding: 9.375vw 0 24vw 0;
  cursor: pointer;
}
.ab4 .slide-box {
  width: 100%;
  position: relative;
}
.ab4 .item-round {
  position: relative;
  width: 0.833vw;
  height: 0.833vw;
  border-radius: 50%;
  background: #f99900;
  margin: 0 auto;
}
.ab4 .item-round::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.875vw;
  height: 1.875vw;
  border-radius: 50%;
  background: rgba(249, 153, 0, 0.39);
  /* animation: fadeInMaxToMinTan 2s linear infinite;
  -webkit-animation: fadeInMaxToMinTan 2s linear infinite; */
}
.ab4 .item-round::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5.208vw;
  height: 5.208vw;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ab4 .swiper-slide-active .item-round::after {
  opacity: 1;
  visibility: visible;
}
.ab4 .item-year {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
  text-align: center;
  margin-bottom: 2.083vw;
}
.ab4 .swiper-slide-active .item-year {
  margin-bottom: 4.688vw;
}
.ab4 .item-year p {
  font-size: 0.833vw;
  font-weight: 100;
  color: #ffffff;
  transition: all ease 0.3s;
}
.ab4 .swiper-slide-active .item-year p {
  font-size: 1.25vw;
  font-weight: 500;
}
.ab4 .item-content {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  text-align: center;
  margin-top: 4.688vw;
}
.ab4 .item-content p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ab4 .swiper-slide-active .item-content p {
  opacity: 1;
  visibility: visible;
}
/* 新闻动态 */
.ne1 {
  width: 100%;
  padding: 1.042vw 0 7.813vw;
}
.ne1.search {
  padding: 6.25vw 0;
}
.ne1 .col {
  width: 32%;
  background: #fafafa;
  margin-bottom: 2.083vw;
  display: block;
}
.ne1 .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease 0.3s;
}
.ne1 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.3s;
}
.ne1 .col:hover img {
  transform: scale(1.1);
}
.ne1 .intr {
  width: 100%;
  padding: 1.302vw;
}
.ne1 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  text-align: justify;
  margin: 1.042vw 0 2.083vw;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ne1 .intr .look,
.ne1 .intr i {
  font-size: 0.729vw;
  font-weight: 400;
  color: #707070;
  transition: all ease 0.3s;
}
.ne1 .intr i {
  margin-left: 0.521vw;
}
.ne1 .col:hover i {
  transform: translateX(5px);
}
.ne1 .intr span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #111111;
  opacity: 0.5;
  margin-right: 0.781vw;
}
.ne1 .pagelist {
  margin: 2.083vw 0 0;
}
.ne2 {
  width: 100%;
  padding: 6.458vw 0 0;
}
.ne2 .col-l {
  width: 65%;
  background: #ffffff;
  padding: 0 3.125vw 0 14.583vw;
}
.ne2 .col-r {
  width: 35%;
  background: #fafafa;
  padding: 0 14.583vw 0 3.125vw;
}
.ne2 .col-r .fixed {
  width: 100%;
  height: auto;
  position: sticky;
  position: -webkit-sticky;
  top: 6.25vw;
  padding-bottom: 3.125vw;
}
.ne2 .title {
  width: 100%;
  padding: 2.083vw 0;
}
.ne2 .title h2 {
  font-size: 1.667vw;
  font-weight: 600;
  line-height: 1.5;
  color: #111111;
  text-align: justify;
  margin-bottom: 1.042vw;
}
.ne2 .title span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #111111;
  opacity: 0.5;
  margin-right: 0.781vw;
}
.ne2 .col-l .content {
  width: 100%;
  padding: 2.083vw 0;
  border-top: 1px solid rgba(17, 17, 17, 0.39);
  border-bottom: 1px solid rgba(17, 17, 17, 0.39);
}
.ne2 .col-l .content p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  text-align: justify;
}
.ne2 .col-l .content img {
  margin: 0.521vw 0;
}
.ne2 .col-l .room {
  width: 100%;
  padding: 1.042vw 0 3.125vw;
}
.ne2 .back {
  margin-top: 3.125vw;
}
.ne2 .col-r .title h2 {
  position: relative;
  padding-bottom: 1.042vw;
  margin-bottom: 0;
}
.ne2 .col-r .title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.385vw;
  height: 0.26vw;
  background: #f99900;
}
.ne2 .col-r .li {
  width: 100%;
  padding: 1.042vw 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
.ne2 .col-r .li p {
  /* font-size: 0.938vw; */
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 1.042vw;
}
.ne2 .col-r .li span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #111111;
  opacity: 0.5;
  margin-right: 0.781vw;
}
.turnlist .turn {
  font-size: 0.729vw;
  font-weight: 400;
  color: #111111;
  margin-left: 0.521vw;
}
.turnlist .turn:first-child img {
  margin-right: 0.26vw;
}
.turnlist .turn:last-child img {
  margin-left: 0.26vw;
}
/* 产品介绍 */
.pr1 {
  width: 100%;
  padding: 5.208vw 0;
  position: relative;
  overflow: hidden;
}
.pr1 .tit p {
  max-width: 50vw;
  margin: 2.083vw auto 0;
}
.pr1 .row {
  margin: 2.083vw 0 0;
}
.pr1 .pic {
  width: 100%;
  position: relative;
}
.pr1 .pic .map {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: relative;
}

.pr1 .lay {
  width: 1.563vw;
  height: 1.563vw;
  background: #f99900;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  pointer-events: none;
  transition: all ease 0.3s;
}
.pr1 .lay::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.344vw;
  height: 2.344vw;
  background: rgba(249, 153, 0, 0.3);
  border-radius: 50%;
  animation: fadeInMaxToMinTan 2s linear infinite;
  -webkit-animation: fadeInMaxToMinTan 2s linear infinite;
}
.pr1 .lay::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3.646vw;
  height: 3.646vw;
  background: rgba(249, 153, 0, 0.11);
  border-radius: 50%;
  animation: fadeInMaxToMinTan 2s linear infinite;
  -webkit-animation: fadeInMaxToMinTan 2s linear infinite;
}
.pr1 .lay img {
  width: 0.625vw;
}
.pr1 .contant {
  position: absolute;
  bottom: 2.083vw;
  left: -1000vw;
  transform: translateX(-50%);
  z-index: 9;
  width: 14.583vw;
  padding: 1.563vw 0;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: bottom ease 0.3s, opacity ease 0.3s, visibility ease 0.3s;
}
.pr1 .lay.on .contant {
  left: 50%;
  bottom: 3.125vw;
  opacity: 1;
  visibility: visible;
}
.pr1 .contant h4 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #231815;
}
.pr1 .contant p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
  margin: 0.521vw 0 0;
}
.pr1 .lay1 {
  position: absolute;
  left: 10.417vw;
  top: 9.375vw;
}
.pr1 .lay2 {
  position: absolute;
  left: 34.375vw;
  top: 11.979vw;
}
.pr1 .lay3 {
  position: absolute;
  right: 14.323vw;
  top: 14.323vw;
}
.pr1 .lay4 {
  position: absolute;
  left: 21.875vw;
  bottom: 10.938vw;
}
.pr1 .lay5 {
  position: absolute;
  right: 31.25vw;
  bottom: 15.625vw;
}
.pr1 .lay6 {
  position: absolute;
  right: 9.896vw;
  bottom: 7.813vw;
}
.pr2 {
  width: 100%;
  position: relative;
  padding: 5.208vw 0;
  background: #fafafa;
}
.pr2 .row {
  margin: 2.083vw 0 0;
}
.pr2 .sub {
  margin: 0 2.604vw;
  padding: 0.417vw 0;
  position: relative;
  display: block;
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
}
.pr2 .sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.208vw;
  background: #f99900;
  transition: all ease 0.3s;
}
.pr2 .sub.on,
.pr2 .sub:hover {
  font-weight: 600;
  color: #111111;
}
.pr2 .sub.on::after,
.pr2 .sub:hover::after {
  width: 100%;
}
.pr2 .col {
  margin: 2.604vw 0 0;
}
.pr2 .box {
  width: 100%;
  display: none;
}
.pr2 .box.on {
  display: block;
}
.pr2 .pic {
  width: 100%;
}
.pr2 .pic img {
  max-width: 100%;
  width: 100%;
}
.pr3 {
  width: 100%;
  position: relative;
  padding: 3.646vw 0 0;
}
.pr3 .col {
  width: 32.5%;
  padding: 1.563vw 2.604vw;
  border: 1px solid rgba(0, 25, 75, 0.51);
}
.pr3 .pic img {
  width: 4.167vw;
  height: 4.167vw;
}
.pr3 .intr h4 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #00194b;
  margin: 1.042vw 0;
}
.pr3 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
}
.pr4 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0;
}
.pr4 .col-l {
  width: 20%;
  margin-right: 9.896vw;
}
.pr4 .col-r {
  width: 55%;
}
.pr4 .menu-tit {
  width: 100%;
  padding: 1.146vw 0;
  background: #00194b;
}
.pr4 .menu-tit h3 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #ffffff;
}
.pr4 .menu-list .ll {
  width: 100%;
  cursor: pointer;
}
.pr4 .menu-list .menusub1 {
  position: relative;
  padding: 1.302vw 2.344vw;
  background: #ebebeb;
}
.pr4 .menu-list .menusub2 {
  position: relative;
  padding: 1.302vw 2.344vw;
  background: #fafafa;
}
.pr4 .menu-list .menusub3 {
  position: relative;
  padding: 0.521vw 2.344vw;
  background: #fafafa;
}
.pr4 .menusub1 span {
  font-size: 0.938vw;
  font-weight: 600;
  color: #111111;
}
.pr4 .menusub2 span {
  font-size: 0.833vw;
  font-weight: 600;
  color: #111111;
}
.pr4 .menusub3 span {
  font-size: 0.833vw;
  font-weight: 600;
  color: #111111;
  opacity: 0.5;
}
.pr4 .menusub3.on span {
  opacity: 1;
}
.pr4 .menu-list .jia {
  position: absolute;
  top: 50%;
  right: 2.344vw;
  transform: translateY(-50%);
  width: 0.521vw;
  height: 0.521vw;
}
.pr4 .menu-list .jia::before,
.pr4 .menu-list .jia::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  background: #111111;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease 0.3s;
}
.pr4 .menu-list .jia::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.pr4 .menu-list .jia::before {
  background: #111111;
}
.pr4 .menusub.on .jia::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.pr4 .menubox {
  display: none;
}
.pr4 .col-r .intr {
  text-align: center;
}
.pr4 .col-r .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
}
.pr4 .col-r .intr p {
  max-width: 29.167vw;
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  margin: 2.083vw auto 0;
}
.pr4 .col-r .pic {
  position: relative;
}
.pr4 .col-r .swiper-slide {
  padding: 2.083vw;
}
.pr4 .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.pr4 .prev {
  left: -2.083vw;
}
.pr4 .next {
  right: -2.083vw;
}
.pr4 .col-r .img {
  width: 100%;
  padding: 3.125vw 2.083vw;
  background: #ffffff;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.16);
}
.pr4 .col-r .img img {
  max-width: 100%;
}
.pr4 .mode {
  margin: 1.042vw auto 0;
}
.pr5 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0 0;
  background: #fafafa;
}
.pr5 .row {
  margin: 3.125vw 0 0;
}
.pr5 .col {
  width: 32.5%;
}
.pr5 .pic {
  width: 100%;
  transition: all ease 0.3s;
  overflow: hidden;
}
.pr5 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.3s;
}
.pr5 .pic:hover img {
  transform: scale(1.1);
}
.pr5 .intr {
  width: 100%;
  text-align: center;
}
.pr5 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
  margin: 1.042vw 0;
}
.pr6 {
  width: 100%;
  position: relative;
  padding: 5.208vw 0 6.25vw;
  background: #fafafa;
}
.pr6 .row {
  margin: 3.125vw 0 0;
}
.pr6 .col {
  width: 16.666%;
}
.pr6 .pic {
  width: 100%;
  padding: 2.344vw 2.604vw;
  transition: all ease 0.3s;
}
.pr6 .pic:hover {
  background: #ffffff;
}
.pr6 .pic img {
  max-width: 100%;
  transition: all ease 0.3s;
}
.pr6 .pic:hover img {
  transform: scale(1.1);
}

.pr7 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0;
}

.pr7 .row {
  margin: 3.125vw 0 0;
}
.pr7 .col {
  width: 14.5%;
  padding: 3.125vw 1.042vw 1.823vw;
  border: 1px solid #00194b;
  text-align: center;
  transition: all ease 0.3s;
}
.pr7 .col:hover {
  transform: translateY(-5px);
}
.pr7 .pic img {
  width: 3.125vw;
  height: 3.125vw;
}

.pr7 .intr h4 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #111111;
  margin: 2.865vw 0 0.521vw;
}
.pr7 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #111111;
}
.pr8 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0;
  background: #fafafa;
}
.pr8 .row {
  margin: 2.083vw 0 0;
}
.pr8 .sub {
  margin: 0 1.563vw;
  padding: 0.417vw 0;
  position: relative;
  display: block;
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
}
.pr8 .sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.208vw;
  background: #f99900;
  transition: all ease 0.3s;
}
.pr8 .sub.on,
.pr8 .sub:hover {
  font-weight: 600;
  color: #111111;
}
.pr8 .sub.on::after,
.pr8 .sub:hover::after {
  width: 100%;
}
.pr8 .col {
  margin: 2.604vw 0 0;
}
.pr8 .box {
  width: 100%;
  display: none;
}
.pr8 .box.on {
  display: block;
}
.pr8 .pic {
  width: 100%;
  background: #ffffff;
}
.pr8 .pic img {
  max-width: 100%;
  width: 100%;
}

.pr9 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0;
}
.pr9 .row {
  margin: 2.083vw 0 0;
}
.pr9 .col-l {
  width: 32%;
}
.pr9 .col-r {
  width: 63%;
  position: relative;
  padding: 0 3.125vw;
}
.pr9 .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2.083vw;
}
.pr9 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  text-align: justify;
}
.pr9 .pic {
  width: 100%;
}
.pr9 .pic img {
  max-width: 100%;
  width: 100%;
}
.pr9 .txt {
  width: 100%;
  text-align: center;
  margin: 1.042vw 0 0;
}
.pr9 .txt p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
}
.pr9 .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pr9 .prev {
  left: 0;
}
.pr9 .next {
  right: 0;
}
.bg-fa {
  background: #fafafa;
}
.pr10 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0;
}
.pr10 .col-l {
  width: 32%;
}
.pr10 .col-r {
  width: 63%;
  position: relative;
  padding: 0 3.125vw;
}
.pr10 .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2.083vw;
}
.pr10 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  text-align: justify;
}
.pr10 .pic {
  width: 100%;
}
.pr10 .pic img {
  max-width: 100%;
  width: 100%;
}
.pr10 .txt {
  width: 100%;
  text-align: center;
  margin: 1.042vw 0 0;
}
.pr10 .txt p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
}
.pr10 .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pr10 .prev {
  left: 0;
}
.pr10 .next {
  right: 0;
}
.pr11 {
  width: 100%;
  padding: 7.813vw 0;
  background-image: url(../img/pr10-bj.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.pr11 .row {
  margin: 6.25vw 0 3.646vw;
}
.pr11 .intr .txt {
  margin: 0 5.729vw;
  text-align: center;
}
.pr11 .intr span {
  font-size: 4.479vw;
  line-height: 4.479vw;
  font-weight: 600;
  color: #ffffff;
}
.pr11 .intr b {
  font-size: 2.083vw;
  font-weight: 600;
  color: #ffffff;
  margin-left: 0.26vw;
}
.pr11 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  color: #ffffff;
  margin: 1.042vw 0 0;
}

.pr12 {
  width: 100%;
  padding: 7.813vw 0;
  position: relative;
}

.pr12 .col-l {
  width: 32%;
}
.pr12 .col-r {
  width: 63%;
}
.pr12 .col-l .intr {
  display: none;
  transition: all ease 0.3s;
}
.pr12 .col-l .intr.on {
  display: block;
}
.pr12 .col-l h3 {
  font-size: 1.25vw;
  font-weight: 100;
  color: #111111;
  margin: 0 0 0.521vw;
}
.pr12 .col-l h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2.083vw;
}
.pr12 .col-l p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  margin: 0 0 0.781vw;
  padding-left: 1.302vw;
  text-align: justify;
  position: relative;
}
.pr12 .col-l p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.417vw;
  width: 0.417vw;
  height: 0.417vw;
  background: #f99900;
  border-radius: 50%;
}
.pr12 .col-r .pic {
  width: 100%;
}
.pr12 .pic img {
  max-width: 100%;
  width: 100%;
}

.pr13 {
  width: 100%;
  position: relative;
  padding: 6.25vw 0;
}
.pr13 .col-l {
  width: 32%;
}
.pr13 .col-r {
  width: 63%;
  position: relative;
  padding: 0 3.125vw;
}
.pr13 .intr h3 {
  font-size: 1.25vw;
  font-weight: 100;
  color: #111111;
  margin: 0 0 0.521vw;
}
.pr13 .intr h4 {
  font-size: 1.25vw;
  font-weight: 100;
  color: #111111;
}
.pr13 .intr h6 {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  margin: 1.042vw 0;
  text-align: justify;
}
.pr13 .intr h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2.083vw;
}
.pr13 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  margin: 0 0 0.781vw;
  padding-left: 1.302vw;
  text-align: justify;
  position: relative;
}
.pr13 .intr p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.417vw;
  width: 0.417vw;
  height: 0.417vw;
  background: #f99900;
  border-radius: 50%;
}
.pr13 .pic {
  width: 100%;
}
.pr13 .pic img {
  max-width: 100%;
  width: 100%;
}
.pr13 .txt {
  width: 100%;
  text-align: center;
  margin: 1.042vw 0 0;
}
.pr13 .txt p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
}
.pr13 .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pr13 .prev {
  left: 0;
}
.pr13 .next {
  right: 0;
}
.pr13 .mode {
  margin: 1.302vw 0 0;
}

.pr14 {
  width: 100%;
  padding: 6.25vw 0;
  background-image: url(../img/pr14-bj.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.pr14 .row1 {
  margin: 3.125vw 0 6.25vw;
}
.pr14 .row2 {
  margin: 3.125vw 0 4.167vw;
}
.pr14 .col {
  width: 24%;
  background: #00194b;
  padding: 2.083vw 0;
  border-bottom: 6px solid #f99900;
}
.pr14 .intr {
  width: 100%;
  text-align: center;
}
.pr14 .intr h4 {
  font-size: 1.25vw;
  font-weight: 600;
  color: #ffffff;
}
.pr14 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  margin: 1.042vw 0 0;
}

.pr15 {
  width: 100%;
  padding: 7.813vw 0;
  position: relative;
}
.pr15 .row {
  margin: 3.125vw 0 0;
}
.pr15 .col-l {
  width: 32%;
}
.pr15 .col-r {
  width: 63%;
}
.pr15 .col-l .intr {
  display: none;
  transition: all ease 0.3s;
}
.pr15 .col-l .intr.on {
  display: block;
}

.pr15 .col-l h2 {
  font-size: 1.667vw;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2.083vw;
}
.pr15 .col-l p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  text-align: justify;
}
.pr15 .col-r .pic {
  width: 100%;
}
.pr15 .pic img {
  max-width: 100%;
  width: 100%;
}
.pr15 .swiper-module {
  margin: 3.125vw 0 0;
}
.pr16 {
  width: 100%;
  padding: 6.25vw 0;
  position: relative;
}
.pr16 .row {
  margin: 3.125vw 0 0;
}
.pr16 .pic {
  width: 100%;
}
.pr16 .pic img {
  max-width: 100%;
  width: 100%;
}
/* 公司荣誉 */
.ho1 {
  width: 100%;
  position: relative;
  padding: 0 0 23.958vw;
}
.ho1 .well {
  position: absolute;
  left: 50%;
  bottom: 4.167vw;
  transform: translateX(-50%);
  z-index: 0;
  width: 86.979vw;
  pointer-events: none;
}
.ho1 .well img {
  max-width: 100%;
  width: 100%;
}
.ho1 .row {
  width: 100%;
  margin: 3.125vw 0 0;
  position: relative;
}
.ho1 .intr {
  width: 50%;
}
.ho1 .intr p {
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 0.521vw;
  transition: all ease 0.3s;
}
.ho1 .intr p:last-child {
  margin-bottom: 0;
}
.ho1 .intr p.on {
  font-size: 1.667vw;
  color: #00194b;
}
.ho1 .pic {
  position: absolute;
  right: 0;
  top: 0;
}
.ho1 .pic .poster {
  width: 44.271vw;
}
.ho1 .pic .img {
  width: 15.625vw;
  display: none;
}
.ho1 .pic .img.on {
  display: block;
}

.gray {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.87);
}

.showImg {
  display: none;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 120;
}
.showImg .box-img {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-flow: column;
}

.showImg img {
  max-height: 90%;
}
.showImg p {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 10px 0 0;
}
.showImg .swiper-btn {
  position: absolute;
  z-index: 100;
  top: 50%;
  width: 4.167vw;
  height: 4.167vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
.showImg .swiper-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.showImg .swiper-btn.btn-prev {
  left: 0;
}
.showImg .swiper-btn.btn-next {
  right: 0;
}
.showImg .swiper-btn i {
  font-size: 20px;
  color: #ffffff;
}
.showImg .swiper-button-disabled {
  opacity: 0;
}

.showImg .btn-close {
  position: absolute;
  top: 1.563vw;
  right: 2.083vw;
  z-index: 100;
}
.showImg .btn-close i {
  font-size: 20px;
  color: #ffffff;
}
/* 投资者关系 */
.in1 {
  width: 100%;
  position: relative;
  padding: 0 0 7.813vw;
}
.in1 .row {
  width: 100%;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}
.in1 .col {
  width: 100%;
  padding: 1.302vw 2.083vw;
  background: #ffffff;
}
.in1 .col:nth-child(2n) {
  background: #fafafa;
}
.in1 .col p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #707070;
}
.in1 .col .intr-l p {
  margin-right: 3.125vw;
}
.in1 .pagelist {
  margin: 3.125vw 0 0;
}
/* 联系我们 */
.co1 {
  width: 100%;
  padding: 12.76vw 0 7.813vw;
  position: relative;
  background-image: url(../img/co-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.co1 .row1 {
  padding: 0 0 7.813vw 14.583vw;
}
.co1 .row1 .col-l {
  width: 30%;
}
.co1 .row1 .col-r {
  width: 58.5%;
}
.co1 .row1 .col-l h1 {
  font-size: 3.021vw;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.781vw;
}
.co1 .row1 .col-l h3 {
  font-size: 1.25vw;
  font-weight: 100;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 3.125vw;
}
.co1 .row1 .col-l h4 {
  font-size: 0.833vw;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.781vw;
}
.co1 .row1 .col-l p {
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2.083vw;
}
.co1 .map {
  width: 100%;
  height: 35.677vw;
  position: relative;
}
.co1 .map #bmap {
  width: 100%;
  height: 100%;
}
.co1 .map .anchorBL {
  display: none !important;
}
.co1 .map .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.co1 .dot .middle-dot {
  width: 0.833vw;
  height: 0.833vw;
  background: #000000;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.co1 .dot .signal {
  width: 5.625vw;
  width: 5.625vw;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: animationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  animation: animationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  animation-delay: 0.78s;
  animation-iteration-count: infinite;
}
.co1 .dot .signal2 {
  width: 7.813vw;
  height: 7.813vw;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: animationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  animation: animationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
@keyframes animationSignal {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  1% {
    opacity: 0.25;
  }
  20% {
    opacity: 0.25;
  }
  60% {
    transform: scale(1);
    opacity: 0;
  }
}
.co1 .row2 {
  padding: 0 14.583vw;
}
.co1 .row2 .box {
  margin: 2.083vw 0 3.125vw;
}
.co1 .row2 .col {
  width: 32.5%;
  padding: 2.083vw;
  position: relative;
  background: rgba(112, 112, 112, 0.12);
  -webkit-backdrop-filter: blur(0.521vw);
  backdrop-filter: blur(0.521vw);
  transition: all ease 0.3s;
}
.co1 .row2 .col:hover {
  transform: translateY(-5px);
}
.co1 .intr {
  text-align: center;
}
.co1 .intr h4 {
  font-size: 1.25vw;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  padding-bottom: 1.042vw;
  margin-bottom: 0.26vw;
}
.co1 .intr h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 5vw;
  height: 0.052vw;
  background: rgba(255, 255, 255, 0.2);
}
.co1 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1.042vw;
}
.co1 .row3 {
  padding: 0 26.563vw;
}
.co1 .row3 .box {
  margin: 2.083vw 0 7.813vw;
}
.co1 .row3 .col {
  width: 49%;
  padding: 2.083vw;
  background: rgba(112, 112, 112, 0.12);
  -webkit-backdrop-filter: blur(0.521vw);
  backdrop-filter: blur(0.521vw);
  transition: all ease 0.3s;
}
.co1 .row3 .col:hover {
  transform: translateY(-5px);
}
.co1 .row4 {
  padding: 0 26.563vw;
}
.co1 .row4 .label {
  width: 48.5%;
  margin-bottom: 2.083vw;
}
.co1 .row4 .label:nth-child(7) {
  width: 100%;
}
.co1 input::-webkit-input-placeholder,
.co1 textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  opacity: 0.5;
}
.co1 input::-moz-placeholder,
.co1 textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  opacity: 0.5;
}
.co1 input:-ms-input-placeholder,
.co1 textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  opacity: 0.5;
}
.co1 input:-moz-placeholder,
.co1 textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  opacity: 0.5;
}
.co1 .row4 input {
  width: 100%;
  height: 2.865vw;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  border-radius: 0%;
}
.co1 .row4 textarea {
  width: 100%;
  height: 6.771vw;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  border-radius: 0%;
}
.err-input {
  border-bottom: 1px solid #f99900 !important;
}
.co1 .btn {
  width: 9.375vw;
  height: 3.646vw;
  cursor: pointer;
  background: #fff;
  margin: 0 auto;
  overflow: hidden;
  transition: all ease 0.3s;
}
.co1 .btn-img {
  width: 40%;
  height: 100%;
  background: #00194b;
  -webkit-clip-path: polygon(0 0, 100% 0%, 70% 150%, 0% 150%);
  clip-path: polygon(0 0, 100% 0%, 70% 150%, 0% 150%);
  transition: all ease 0.3s;
}
.co1 .btn-img img {
  width: 0.417vw;
  transition: all ease 0.3s;
}
.co1 .btn-txt {
  width: 60%;
  height: 100%;
  font-size: 0.938vw;
  font-weight: 400;
  color: #00194b;
}
.co1 .btn:hover .btn-img img {
  transform: translateX(5px);
}
.website {
  width: 100%;
  padding: 12.5vw 0 6.25vw;
}
.fixed-video {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 500;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all ease 0.3s;
}
.fixed-video.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: all ease 0.3s;
}
.fixed-video .video-wrap {
  width: 60vw;
  max-height: 90vw;
  position: relative;
}
.fixed-video .close {
  width: 2.083vw;
  height: 2.083vw;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
  border-radius: 50%;
  position: absolute;
  top: -0.3125vw;
  right: -0.3125vw;
  z-index: 1;
  cursor: pointer;
  transition: all ease 0.3s;
}
.fixed-video .close i {
  font-size: 0.938vw;
}
.fixed-video .video-wrap video {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
}
