@charset "utf-8";

:root {
  --main-color: #20355E;
  /* ====== 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: "Montserrat";
  src: url(../font/Montserrat-Regular.ttf);
}

body,
input,
textarea,
button {
  font-family: "Montserrat", "SourceHanSansCN", "PingFang SC", "Microsoft YaHei", "Tahoma",
    "Arial", "sans-serif";
}

/* 滚动条 */
::-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: 0.833vw;
  color: #ffffff;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 0.833vw;
  color: #ffffff;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 0.833vw;
  color: #ffffff;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 0.833vw;
  color: #ffffff;
}

.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);
  }
}

.container {
  width: 100%;
}

.wrap {
  width: 100%;
}

.row {
  width: 100%;
}

.more_w {
  width: auto;
  cursor: pointer;
  transition: all ease .5s;
}

.more_w span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  margin-right: 0.781vw;
  position: relative;
  transition: all ease .5s;
}

.more_w span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transition: all ease .5s;
}

.more_w .icon {
  width: 2.344vw;
  height: 2.344vw;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all ease .5s;
}

.more_w .icon i {
  font-size: 1.302vw;
  color: #20355E;
}

.more_w:hover span {
  color: #F3BA44;
}

.more_w:hover span::after,
.more_w:hover .icon {
  background: #F3BA44;
}

.more_w:hover .icon i {
  color: #ffffff;
}

.more_b {
  width: auto;
  cursor: pointer;
  transition: all ease .5s;
}

.more_b span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  margin-right: 0.781vw;
  position: relative;
  transition: all ease .5s;
}

.more_b span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  background: #20355E;
  transition: all ease .5s;
}

.more_b .icon {
  width: 2.344vw;
  height: 2.344vw;
  background: #20355E;
  border-radius: 50%;
  transition: all ease .5s;
}

.more_b .icon i {
  font-size: 1.302vw;
  color: #ffffff;
  transition: all ease .5s;
}

.more_b:hover span {
  color: #F3BA44;
}

.more_b:hover span::after,
.more_b:hover .icon {
  background: #F3BA44;
}

.more_b:hover .icon i {
  color: #ffffff;
}

.s_btn {
  width: 2.865vw;
  height: 2.865vw;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  transition: all ease .5s;
}

.s_btn:hover {
  background: #20355E;
}

.s_btn i {
  color: #ffffff;
  font-size: 0.938vw;
  transition: all ease .5s;
}


.s_btn2 {
  width: 2.344vw;
  height: 2.344vw;
  background: #E2E2E2;
  border-radius: 50%;
  cursor: pointer;
  transition: all ease .5s;
}

.s_btn2:hover {
  background: #20355E;
}

.s_btn2 i {
  font-size: 1.302vw;
  color: #20355E;
  transition: all ease .5s;
}

.s_btn2:hover i {
  color: #ffffff;
}

.s_txt {
  width: auto;
  transition: all ease .5s;
}

.s_txt span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

.find {
  width: auto;
  transition: all ease .5s;
}

.find span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  margin-left: 0.521vw;
  text-transform: uppercase;
  transition: all ease .5s;
}

.detail {
  width: 45px;
  height: 45px;
  transition: all ease .5s;
}

.detail g {
  width: 100%;
  height: 100%;
  transition: all ease .5s;
}

.detail path {
  transition: all ease .5s;
}

.banner {
  width: 100%;
  position: relative;
}

.banner .pic {
  width: 100%;
}

.banner .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, #20355E 0%, rgba(32, 53, 94, 0) 100%);
}

.banner .pic img {
  max-width: 100%;
  width: 100%;
}

.banner .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  padding: 0 8.333vw;
}

.banner .intr h1 {
  max-width: 910px;
  font-size: 1.875vw;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.4;
  text-transform: uppercase;
  transition: all ease .5s;
}

.banner .intr h6 {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 2.083vw;
  position: relative;
  transition: all ease .5s;
}

.banner .intr h6::after {
  content: "";
  position: absolute;
  left: -8.333vw;
  top: 50%;
  transform: translateY(-50%);
  width: 7.292vw;
  height: 1px;
  background: #F3BA44;
  z-index: 1;
}

.nav {
  width: 100%;
  padding: 1.563vw 8.333vw 3.125vw;
  position: relative;
}

body.type .nav {
  margin: 4.688vw 0 0;
}

.nav a {
  font-size: 0.729vw;
  font-weight: 400;
  color: #20355E;
  /* text-transform: uppercase; */
  transition: all ease .5s;
}

.nav span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #20355E;
  transition: all ease .5s;
}

.nav a:last-child {
  color: #F3BA44;
}

.nav img {
  margin-right: 0.521vw;
  transition: all ease .5s;
}



.tit_b {
  width: 100%;
  position: relative;
}

.tit_b h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
}

.tit_b p {
  font-size: 0.729vw;
  font-weight: 400;
  line-height: 1.4;
  color: #20355E;
  margin: 1.042vw 0 0;
  transition: all ease .5s;
}

.tit_b .more_b {
  margin: 1.302vw 0 0;
}


.pagelist {
  width: 100%;
}

.pagelist a>i {
  width: 2.344vw;
  height: 2.344vw;
  background: #E2E2E2;
  border-radius: 50%;
  font-size: 1.302vw;
  color: #20355E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.042vw;
  transition: all ease 0.5s;
}

.pagelist a>span {
  font-size: 0.833vw;
  font-weight: bold;
  color: #20355E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.521vw;
  transition: all ease 0.5s;
}

.pagelist a.on>i,
.pagelist a:hover>i {
  background: #20355E;
  color: #ffffff;
}

.pagelist a.on>span,
.pagelist a:hover>span {
  color: #F3BA44;
}

.listpage {
  width: 100%;
  transition: all ease .5s;
}

.listpage>a {
  width: 100%;
  display: block;
  margin: 1.042vw 0 0;
  transition: all ease .5s;
}

.listpage>a:hover {
  text-decoration: underline;
}

.listpage>a p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  transition: all ease .5s;
}

.listpage>a:hover,
.listpage>a:hover p {
  color: #F3BA44;
}

/* 公共头部 */
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 4.688vw;
  background: transparent;
  transition: all ease .5s;
}

body.type header,
.scroll header {
  background: #20355E;
}

header .row {
  height: 100%;
  padding: 0 8.333vw;
}

header .module {
  height: 100%;
}

header .logo img {
  width: 12.24vw;
  position: relative;
  z-index: 100;
  transition: all ease .5s;
}

header .menu {
  height: 100%;
  margin-left: 6.25vw;
}

header .link {
  height: 100%;
  margin: 0 1.302vw;
  transition: all ease .5s;
}

header .link-routine {
  position: relative;
}

header .link-special .downDown,
header .link-special .downDown2  {
  display: none;
}

header .link>a {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;
  transition: all ease .5s;
}

header .link>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: #F3BA44;
  transition: all ease .5s;
}

header .link.on a::after,
header .link:hover a::after {
  width: 100%;
}

header .link a>i {
  margin-left: 0.521vw;
}

header .link.on a,
header .link:hover a {
  color: #F3BA44;
}

header .downLink {
  position: absolute;
  left: 0;
  width: 100%;
  top: -500vw;
  background: #ffffff;
  opacity: 0;
  transform: translate(0, -0.521vw);
  transition: opacity ease .8s, transform ease .8s;
  box-shadow: 0 0 0.781vw #26262629;
  z-index: 20;
}

header .link:hover .downLink {
  opacity: 1;
  top: 100%;
  transform: translate(0, 0vw);
}

header .downLink .down_b {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

header .downDown {
  position: absolute;
  top: -500vw;
  left: 50%;
  transform: translate(-50%, -0.521vw);
  padding: 0.521vw 2.604vw;
  background: #FFFFFF;
  box-shadow: 0 0 0.781vw #26262629;
  opacity: 0;
  transition: opacity ease .8s, transform ease .8s;
  z-index: 20;
}

header .link:hover .downDown {
  opacity: 1;
  top: 100%;
  transform: translate(-50%, 0vw);
}

header .downDown .linkd {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

header .downDown .linkd>a {
  display: block;
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  margin: 0.521vw 0;
  text-align: center;
  white-space: nowrap;
  transition: all ease .5s;
}

header .downDown .linkd>a:hover {
  color: #F3BA44;
}

header .link_l {
  width: 32%;
  padding: 2.083vw 1.563vw 2.083vw 0;
  border-right: 1px solid #F2F2F2;
  transition: all ease .5s;
}

header .link_r {
  width: 68%;
  padding: 2.083vw 8.333vw 0 2.083vw;
  transition: all ease .5s;
}

header .hov {
  position: relative;
  width: 100%;
  transition: all ease .5s;
}

header .hov span {
  width: 80%;
  padding: 1.042vw 2.604vw;
  font-size: 0.938vw;
  font-weight: 400;
  color: #20355E;
  background: transparent;
  display: inline-block;
  transition: all ease .5s;
}

header .hov.on span {
  color: #ffffff;
  background: linear-gradient(84deg, #20355E 0%, rgba(32, 53, 94, 0) 100%);
}

header .hov i {
  font-size: 0.938vw;
  color: #20355E;
  transform: rotate(-90deg);
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s;
}

header .hov.on i {
  opacity: 1;
  visibility: visible;
}

header .sub {
  display: none;
}

header .sub.on {
  display: block;
}

header .prb {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

header .pro {
  width: 23%;
  position: relative;
  margin: 0 0 2.083vw;
  transition: all ease .5s;
}

header .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #E8EBF0;
  transition: all ease .5s;
}

header .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

header .intr {
  width: 100%;
  margin: 1.042vw 0 0;
  transition: all ease .5s;
}

header .intr p {
  font-size: 0.938vw;
  font-weight: bold;
  color: #20355E;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all ease .5s;
}

header .prv {
  width: 32%;
  margin: 0 0 3.906vw;
  position: relative;
  transition: all ease .5s;
}

header .lan {
  width: 100%;
  padding: 1.042vw 2.344vw;
  background: #E8EBF0;
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  transition: all ease .5s;
}

header .prv p {
  padding: 0 0 0 2.344vw;
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.521vw 0 0;
  transition: all ease .5s;
}



header .links {
  height: 100%;
  position: relative;
  margin-left: 1.823vw;
  transition: all ease .5s;
}

header .search {
  width: 9.635vw;
  height: 2.135vw;
  border-radius: 25px;
  border: 1px solid #E5E5E5;
  position: relative;
  transition: all ease .5s;
}

header .search input {
  width: 100%;
  height: 100%;
  padding: 0 1.042vw;
  color: #ffffff;
  background: transparent;
  transition: all ease .5s;
}

header .search_btn {
  position: absolute;
  right: 1.042vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: all ease .5s;
}

header .search_btn i {
  font-size: 0.833vw;
  color: #ffffff;
  transition: all ease .5s;
}

header .gon {
  width: auto;
  position: relative;
  transition: all ease .5s;
}

header .gon i {
  font-size: 1.25vw;
  color: #ffffff;
  transition: all ease .5s;
}

header .gon span {
  padding: 0.26vw 0.625vw;
  margin-left: 0.26vw;
  background: #F3BA44;
  border-radius: 13px;
  font-size: 0.729vw;
  color: #ffffff;
  transition: all ease .5s;
}

header .language {
  width: auto;
  transition: all ease .5s;
}

header .language i {
  font-size: 1.25vw;
  color: #ffffff;
  transition: all ease .5s;
}

header .language .down {
  position: absolute;
  top: -500vw;
  left: 50%;
  transform: translate(-50%, -0.521vw);
  padding: 0.26vw 1.042vw;
  background: #FFFFFF;
  box-shadow: 0 0 0.781vw #26262629;
  opacity: 0;
  transition: opacity ease .8s, transform ease .8s;
  z-index: 20;
}

header .links:hover .language .down {
  opacity: 1;
  top: 100%;
  transform: translate(-50%, 0vw);
}

header .language .down>a {
  display: block;
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  margin: 0.521vw 0;
  text-align: center;
  white-space: nowrap;
  transition: all ease .5s;
}

header .language .down>a.on,
header .language .down>a:hover {
  color: #F3BA44;
}

footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url(../img/footer-bj.png);
  background-repeat: no-repeat;
  background-size: cover;
}

footer .row {
  padding: 0 16.667vw;
}

footer .footA {
  width: 100%;
  padding: 3.125vw 0 3.646vw;
}

.footA h6 {
  font-size: 0.833vw;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0 0 1.302vw;
  text-transform: uppercase;
  transition: all ease .5s;
}

.footA h6 {
  margin: 0 0 1.302vw;
}

.footA .icon,
.footA .f_menu p {
  margin: 0 0 1.042vw;
}

.footA .icon img {
  margin: 0.208vw 0.781vw 0 0;
}

.footA .Call {
  width: 100%;
  margin: 2.083vw 0 0;
}

.footA .app {
  width: 2.865vw;
  height: 2.865vw;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 1.042vw;
  padding: 0.521vw;
  transition: all ease .5s;
}

.footA .app:hover {
  background: rgb(229, 179, 70);
}

.footA p {
  font-size: 0.833vw;
  /* font-weight: bold; */
  color: #FFFFFF;
  opacity: 0.4;
  transition: all ease .5s;
}

.footA p:hover {
  opacity: 1;
}

.footA .form {
  width: 17.448vw;
  padding: 0.521vw 0;
  border-bottom: 1px solid #ffffff;
}

.footA .input {
  width: calc(100% - 5.208vw);
  height: 2.344vw;
  color: #ffffff;
  background: transparent;
  transition: all ease .5s;
}

.footA .btn {
  width: 4.427vw;
  height: 2.344vw;
  background: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  transition: all ease .5s;
}

.footA .btn span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #F3BA44;
  transition: all ease .5s;
}

.footB {
  width: 100%;
  padding: 2.083vw 0;
}

.footB .f_logo img {
  width: 12.24vw;
  transition: all ease .5s;
}

.footB p {
  font-size: 0.833vw;
  font-weight: bold;
  color: #FFFFFF;
  opacity: .4;
  transition: all ease .5s;
}

.footB span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

/* 首页 */
.ho0 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ho0 .bj {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  pointer-events: none;
}

.ho0 .bj img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ho0 .pro {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 54.167vw;
  pointer-events: none;
}

.ho0 .pro img {
  display: none;
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ho0 .pro img.on {
  display: block;
}

.ho0 .s_txt {
  position: absolute;
  bottom: 6.771vw;
  right: 4.688vw;
  z-index: 5;
}

.ho0 .s_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.ho0 .prev {
  left: 4.167vw;
}

.ho0 .next {
  right: 4.167vw;
}

.ho0 .col {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

.ho0 .pic {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ho0 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ho0 .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  padding: 0 5%;
  text-align: center;
}

.ho0 .intr h1 {
  max-width: 810px;
  margin: 0 auto;
  font-size: 1.875vw;
  font-weight: 800;
  line-height: 1.4;
  color: #FFFFFF;
  transition: all ease .5s;
}

.ho0 .intr p {
  max-width: 450px;
  margin: 1.823vw auto;
  font-size: 0.729vw;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  transition: all ease .5s;
}

.ho0 .swiper-pagination {
  position: absolute;
  bottom: 7.813vw;
  left: 50%;
  transform: translateX(-50%);
}

.ho0 .swiper-pagination .swiper-pagination-bullet {
  width: 3.125vw;
  height: 0.313vw;
  border-radius: 5px;
  opacity: 1;
  background: transparent;
  border: 1px solid #FFFFFF;
  margin: 0 0.26vw !important;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all ease .5s;
}

.ho0 .swiper-pagination .swiper-pagination-bullet i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  background: #F3BA44;
  border-radius: 5px;
  transition: all ease .5s;
}

.ho0 .swiper-pagination .swiper-pagination-bullet-active i {
  animation: first 6s;
}

@keyframes first {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.main {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-image: url(../img/main-bj.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.ho1 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  position: relative;
}

.ho1 .tit_b {
  position: relative;
}

.ho1 .tit_b .shadow {
  font-size: 12.5vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ho1 .row {
  margin: 2.083vw 0 0;
}

.ho1 .col {
  width: 32.5%;
  margin: 0 0 1.042vw;
  position: relative;
  transition: all ease .5s;
}

.ho1 .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease .5s;
}

.ho1 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(32, 53, 94, 0.48);
  transition: all ease .5s;
}

.ho1 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .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.083vw 1.563vw;
  transition: all ease .5s;
}

.ho1 .intr h2 {
  font-size: 1.458vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}


.ho1 .col:hover .detail .line {
  fill: #F3BA44;
}

.ho1 .col:hover .detail .down {
  fill: #ffffff;
}


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

.ho2 .s_box {
  position: absolute;
  right: 8.333vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.ho2 .s_btn2 {
  margin-left: 1.563vw;
}

.ho2 .row {
  margin: 1.563vw 0 0;
}

.ho2 .swiper-slide {
  width: 20.833vw !important;
}

.ho2 .col {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

.ho2 .col::after {
  content: "";
  position: absolute;
  left: 1.563vw;
  top: 1.563vw;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffffff;
  transition: all ease .5s;
}

.ho2 .col:hover::after {
  background: #F3BA44;
}

.ho2 .pic {
  width: 100%;
  overflow: hidden;
  background: #E8EBF0;
  position: relative;
  transition: all ease .5s;
}

.ho2 .img {
  width: 100%;
  overflow: hidden;
  transition: all ease .5s;
}

.ho2 .img img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ho2 .txt {
  position: absolute;
  top: 0.781vw;
  left: 0.781vw;
  z-index: 5;
  width: 13.021vw;
  height: 2.083vw;
  background: #FFFFFF;
  padding: 0 0.781vw;
  transition: all ease .5s;
}

.ho2 .txt p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #20355E;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  transition: all ease .5s;
}

.ho2 .intr {
  width: 100%;
  padding: 1.042vw 0;
  transition: all ease .5s;
}

.ho2 .intr p {
  width: calc(100% - 60px);
  min-height: 2.083vw;
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  padding-left: 2.604vw;
  text-transform: uppercase;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all ease .5s;
}

.ho2 .col:hover .intr p {
  color: #ffffff;
}

.ho2 .col:hover .detail .line {
  fill: #ffffff;
}

.ho2 .col:hover .detail .down {
  fill: #F3BA44;
}

.ho3 {
  width: 100%;
  position: relative;
  padding: 16.667vw 16.667vw 6.25vw;
}

.ho3 .box_l {
  width: 56%;
}

.ho3 .col {
  width: 33.333%;
  position: relative;
  transition: all ease .5s;
}

.ho3 .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease .5s;
}

.ho3 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  visibility: visible;
  transition: all ease .5s;
}

.ho3 .col:hover .pic::after {
  opacity: 0;
  visibility: hidden;
}

.ho3 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ho3 .col:hover .pic img {
  transform: scale(1.05);
}

.ho3 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 0.781vw;
}

.ho3 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  transition: all ease .5s;
}

.ho3 .col:hover .intr p {
  color: #ffffff;
}

.ho3 .box_r {
  width: 40%;
}

.ho3 .txt h1 {
  font-size: 2.083vw;
  font-weight: bold;
  color: #FFFFFF;
}

.ho3 .txt p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 1.302vw 0 0;
  text-transform: uppercase;
}

.ho4 {
  width: 100%;
  position: relative;
  padding: 0 16.667vw;
}

.ho4 .row {
  padding-bottom: 3.125vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.ho4 .box_l {
  width: 56%;
}

.ho4 .box_r {
  width: 40%;
}

.ho4 .intr h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #ffffff;
}

.ho4 .intr b {
  color: #F3BA44;
}

.ho4 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 1.302vw 0 0;
  text-transform: uppercase;
}

.ho4 .form {
  width: 100%;
}

.ho4 .form .input {
  width: 48%;
  height: 2.344vw;
  background: #FFFFFF;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.08);
  border-radius: 23px;
  margin: 0 0 0.781vw;
  padding: 0 2.083vw;
  transition: all ease .5s;
}

.ho4 input::-webkit-input-placeholder {
  color: #20355E;
}

.ho4 input::-moz-placeholder {
  color: #20355E;
}

.ho4 input:-ms-input-placeholder {
  color: #20355E;
}

.ho4 input:-moz-placeholder {
  color: #20355E;
}

.ho4 .form .company,
.ho4 .form .massage {
  width: 100%;
}

.ho4 .btn {
  width: 9.115vw;
  height: 2.344vw;
  background: #F3BA44;
  border-radius: 23px;
  cursor: pointer;
  transition: all ease .5s;
}

.ho4 .btn span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

/* 关于我们 */
.ab0 {
  width: 100%;
  padding: 0 8.333vw 6.25vw;
  position: relative;
}

.ab0 .pic {
  width: 48.75%;
  position: relative;
  transition: all ease .5s;
}

.ab0 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ab0 .intr {
  width: 48%;
}

.ab0 .intr h1 {
  max-width: 670px;
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  margin: 0 0 2.083vw;
}

.ab0 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  margin: 1.042vw 0 0;
}

.ab0 .intr b {
  color: #F3BA44;
}

.ab1 {
  width: 100%;
  padding: 8.854vw 25.521vw;
  position: relative;
  overflow: hidden;
  background-image: url(../img/ab1-bj.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.ab1 .intr {
  width: 100%;
  text-align: center;
}

.ab1 .intr h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  margin: 1.042vw 0 2.083vw;
}

.ab1 .intr h6 {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
}

.ab1 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  text-align: right;
}

.ab2 {
  width: 100%;
  position: relative;
}

.ab2 .col {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

.ab2 .pic {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all ease .5s;
}

.ab2 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(32, 53, 94, 0.71);
}

.ab2 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ab2 .intr {
  position: absolute;
  top: 7.292vw;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0 16.667vw;
}

.ab2 .intr h1 {
  max-width: 440px;
  font-size: 1.875vw;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0 0 1.302vw;
}

.ab2 .intr p {
  max-width: 440px;
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
}

.ab2 .txt_b {
  position: absolute;
  bottom: 1.563vw;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0 16.667vw;
}

.ab2 .txt {
  width: 31%;
  padding: 1.563vw 0;
  border-top: 1px solid #ffffff;
  opacity: 0.4;
  transition: all ease .5s;
}

.ab2 .txt.on {
  opacity: 1;
}

.ab2 .txt h6 {
  font-size: 0.833vw;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0 0 0.781vw;
  transition: all ease .5s;
}

.ab2 .txt span {
  font-size: 0.833vw;
  font-weight: bold;
  color: #FFFFFF;
  margin-right: 0.521vw;
  transition: all ease .5s;
}

.ab2 .txt p {
  font-size: 0.833vw;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.4;
  min-height: 2.344vw;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all ease .5s;
}

.ab3 {
  width: 100%;
  padding: 6.25vw 8.333vw;
  position: relative;
}

.ab3 .pic {
  width: 48.75%;
  position: relative;
  transition: all ease .5s;
}

.ab3 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.ab3 .intr {
  width: 36.875%;
}

.ab3 .intr h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
}

.ab3 .intr p {
  max-width: 540px;
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin: 2.604vw 0;
  text-transform: uppercase;
}

.ab3 .intr h6 {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  margin: 0 0 1.563vw;
  text-transform: uppercase;
}

.ab3 ul {
  width: 100%;
}

.ab3 li {
  width: 100%;
  padding-left: 1.563vw;
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 1.042vw 0;
  position: relative;
}

.ab3 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.26vw;
  width: 0.521vw;
  height: 0.521vw;
  background: #F3BA44;
  border-radius: 50%;
}


/* Blog */
.bl0 {
  width: 100%;
  position: relative;
  padding: 0 8.333vw 7.292vw;
  transition: all ease .5s;
}

.bl0 .col {
  width: 100%;
  position: relative;
  padding: 2.604vw 0;
  border-bottom: 1px solid #C0C0C0;
  transition: all ease .5s;
}

.bl0 .col:first-child {
  border-top: 1px solid #C0C0C0;
}

.bl0 .pic {
  width: 32.5%;
  overflow: hidden;
  position: relative;
  transition: all ease .5s;
}

.bl0 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.bl0 .col:hover .pic img {
  transform: scale(1.05)
}

.bl0 .play {
  width: 1.823vw;
  height: 1.823vw;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 1.302vw;
  bottom: 1.302vw;
  cursor: pointer;
  z-index: 3;
}

.bl0 .play i {
  font-size: 0.833vw;
}

.bl0 .intr {
  width: 64.375%;
}

.bl0 .intr .date {
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  margin: 0.781vw 0 0;
  transition: all ease .5s;
}

.bl0 .intr h1 {
  max-width: 640px;
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  transition: all ease .5s;
}

.bl0 .more_b {
  margin: 2.083vw 0 0;
}

.bl0 .col:hover .more_b span {
  color: #F3BA44;
}

.bl0 .col:hover .more_b span::after,
.bl0 .col:hover .icon {
  background: #F3BA44;
}

.bl0 .pagelist {
  margin: 3.125vw 0 0;
}

.bl1 {
  padding: 0 18.75vw 7.292vw;
}

.bl1 .title {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #707070;
}

.bl1 .title h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  transition: all ease .5s;
}

.bl1 .title .date {
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  margin: 2.083vw 0;
  transition: all ease .5s;
}

.bl1 .editor {
  width: 100%;
  margin: 2.083vw 0 3.125vw
}

.bl1 .editor p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
}

/* 产品 */
.pr0 {
  width: 100%;
  position: relative;
  padding: 0 8.333vw 7.292vw;
}

.pr0 .col_l {
  width: 19.375%;
  position: relative;
  border-right: 1px solid #E7EDED;
  transition: all ease .5s;
}

.pr0 .col_r {
  width: 80.625%;
  padding: 0 0 0 8.333vw;
  position: relative;
}

.pr0 .check_d {
  width: 100%;
  padding: 2.344vw 2.604vw 2.344vw 0;
  border-bottom: 1px solid #F0F4F4;
  position: relative;
  transition: all ease .5s;
}

.pr0 .check_d:first-child {
  padding: 0 2.604vw 2.344vw 0;
}

.pr0 .check_d h6 {
  font-size: 0.938vw;
  font-weight: 400;
  color: #20355E;
  margin: 0 0 1.302vw;
  transition: all ease .5s;
}

.pr0 .radio {
  width: 100%;
  margin: 0 0 1.042vw;
  cursor: pointer;
  transition: all ease .5s;
}

.pr0 .radio p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  margin-left: 0.781vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all ease .5s;
}

.pr0 .radio.on p {
  color: #F3BA44;
}

.pr0 .radio .check {
  width: 1.042vw;
  height: 1.042vw;
  border: 1px solid #20355E;
  position: relative;
  transition: all ease .5s;
}

.pr0 .radio.on .check {
  border: 1px solid #F3BA44;
}

.pr0 .radio .check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 0.625vw;
  height: 0.625vw;
  background: #F3BA44;
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s;
}

.pr0 .radio.on .check::after {
  opacity: 1;
  visibility: visible;
}

.pr0 .col_r h2 {
  font-size: 1.458vw;
  font-weight: 400;
  color: #20355E;
  margin: 0 0 2.083vw;
  transition: all ease .5s;
}

.pr0 .pro_b {
  width: 100%;
  position: relative;
}

.pr0 .col {
  width: 31%;
  position: relative;
  margin: 0 0 2.604vw;
  transition: all ease .5s;
}

.pr0 .pic {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all ease .5s;
}

.pr0 .img {
  width: 100%;
  overflow: hidden;
  background: #E8EBF0;
  padding: 1.563vw 0;
  transition: all ease .5s;
}

.pr0 .img img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.pr0 .txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(243, 186, 68, 0.89);
  padding: 0 1.823vw;
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s;
}

.pr0 .col:hover .txt {
  opacity: 1;
  visibility: visible;
}

.pr0 .norm {
  width: 100%;
  margin: 0.521vw 0;
  transition: all ease .5s;
}

.pr0 .norm p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  transition: all ease .5s;
}

.pr0 .intr {
  width: 100%;
  padding: 1.563vw;
  background: #FFFFFF;
  border-radius: 0px 0px 32px 32px;
  border: 1px solid #F3F5F5;
  /* box-shadow: -10px 30px 20px 1px rgba(32, 53, 94, 0.15); */
  box-shadow: 0px 20px 10px -10px rgb(32 53 94 / 15%);
  transition: all ease .5s;
}

.pr0 .intr h6 {
  font-size: 0.833vw;
  font-weight: bold;
  color: #20355E;
  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 .5s;
}

.pr0 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  transition: all ease .5s;
}

.pr0 .detail {
  margin: 1.042vw 0 0;
  transition: all ease .5s;
}

.pr0 .col:hover .detail .line {
  fill: #F3BA44;
}

.pr0 .col:hover .detail .down {
  fill: #ffffff;
}

.pr0 .pagelist {
  justify-content: flex-start;
  margin-left: -1.042vw;
}

.select {
  position: absolute;
  right: 8.333vw;
  bottom: 6.771vw;
  z-index: 7;
  width: 26.042vw;
  cursor: pointer;
  transition: all ease .5s;
}

.select .place {
  width: 100%;
  padding: 1.042vw 0;
  position: relative;
  transition: all ease .5s;
}

.select .place span {
  width: calc(100% - 2.083vw);
  font-size: 1.458vw;
  font-weight: 400;
  color: #FFFFFF;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
  transition: all ease .5s;
}

.select .place i {
  font-size: 1.458vw;
  height: 1em;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

.select.on i {
  transform: rotate(-90deg);
}

.select .sub {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.07);
  border-radius: 0px 0px 0px 0px;
  padding: 1.563vw 2.604vw;
  z-index: 5;
}

.select .sub .pk {
  display: block;
  padding: 0.781vw 0;
  background: #FFFFFF;
  font-size: 1.458vw;
  font-weight: 400;
  color: #ABABAB;
  cursor: pointer;
  text-align: right;
  transition: all ease .5s;
}

.pr1 {
  width: 100%;
  position: relative;
  padding: 0 8.333vw 7.292vw;
  transition: all ease .5s;
}

.pr1 .col_l {
  width: 58.125%;
  position: relative;
}

.pr1 .col_r {
  width: 26.25%;
  position: relative;
}

.pr1 .intr h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  margin: 0 0 3.125vw;
  transition: all ease .5s;
}

.pr1 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  transition: all ease .5s;
}

.pr1 .count_b {
  width: 100%;
  margin: 2.083vw 0 0;
}

.pr1 .count_b h5 {
  font-size: 1.042vw;
  color: #20355E;
  font-weight: bold;
  text-transform: uppercase;
  transition: all ease .5s;
}

.pr1 .addinp {
  margin-left: 1.563vw;
  background: rgb(226, 226, 226);
}

.pr1 .addinp button {
  width: 2.083vw;
  height: 2.083vw;
  font-size: 1.042vw;
  color: #000000;
  font-weight: bold;
}

.pr1 .addinp span {
  display: inline-block;
  width: 5.208vw;
  height: 2.083vw;
  line-height: 2.083vw;
  text-align: center;
  font-size: 1.042vw;
  color: #000000;
  font-weight: bold;
}

.pr1 .cart {
  width: 11.198vw;
  height: 2.604vw;
  margin: 1.042vw 0 0;
  background: #20355E;
  cursor: pointer;
  position: relative;
  transition: all ease .5s;
}

.pr1 .cart span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

.pr1 .b_img {
  width: 100%;
  position: relative;
}

.pr1 .s_img {
  width: 56%;
  position: relative;
}

.pr1 .s_btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.pr1 .prev {
  left: -4.948vw;
}

.pr1 .next {
  right: -4.948vw;
}

.pr1 #thumbs .swiper-slide-thumb-active img {
  opacity: 1;
}

.pr1 #thumbs img {
  opacity: .4;
}

.pr2 {
  width: 100%;
  position: relative;
  padding: 6.25vw 8.333vw 2.604vw;
  background: #F4F6FB;
}

.pr2 .cover {
  width: 100%;
}

.pr2 .sub {
  width: 23.5%;
  height: 3.646vw;
  background: #F4F6FB;
  box-shadow: 0px 3px 20px 1px rgba(32, 53, 94, 0.07);
  cursor: pointer;
  transition: all ease .5s;
}

.pr2 .sub.on,
.pr2 .sub:hover {
  background: #F3BA44;
}

.pr2 .sub span {
  font-size: 0.938vw;
  font-weight: 400;
  color: #20355E;
  transition: all ease .5s;
}

.pr2 .sub.on span,
.pr2 .sub:hover span {
  color: #ffffff;
}

.pr2 .row {
  margin: 2.604vw 0 0;
  display: none;
}

.pr2 .row.on {
  display: block;
}

.pr2 .norm {
  width: 100%;
  position: relative;
}

.pr2 .col {
  width: 49%;
  margin: 0 0 3.646vw;
  position: relative;
  transition: all ease .5s;
}

.pr2 .col h2 {
  font-size: 1.458vw;
  font-weight: 400;
  color: #20355E;
  margin: 0 0 0.781vw;
}

.pr2 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.pr2 table tr:nth-child(2n + 1) td:first-child {
  background: #20355E;
}

.pr2 table tr:nth-child(2n + 1) td:last-child {
  background: #F2F3F5;
}

.pr2 table tr:nth-child(2n) td {
  background: #ffffff;
}

.pr2 table tr td {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  height: 2.865vw;
  padding: 0 1.563vw;
  text-align: center;
  word-break: break-all;
  text-transform: uppercase;
}

.pr2 table tr td:first-child {
  width: 27%;
}

.pr2 table tr td:last-child {
  width: 63%;
}

.pr2 table tr:nth-child(2n + 1) td:first-child {
  color: #ffffff;
}




.pr2 .col1 {
  width: 100%;
  position: relative;
  padding: 2.604vw 0;
  border-top: 1px solid #D5DDEB;
  transition: all ease .5s;
}

.pr2 .col1:last-child {
  border-bottom: 1px solid #D5DDEB;
}

.pr2 .ev:nth-child(1) {
  width: 80%;
}

.pr2 .ev:nth-child(2) {
  width: 20%;
}

.pr2 .ev span,
.pr2 .ev i {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  transition: all ease .5s;
}

.pr2 .col1:hover .ev:nth-child(1) span,
.pr2 .col1:hover .ev i {
  color: #F3BA44;
}

.pr3 {
  width: 100%;
  position: relative;
  padding: 7.292vw 8.333vw;
}

.pr3 .row {
  margin: 2.083vw 0 0;
}

.pr3 .swiper-slide {
  padding: 0 0 2.083vw;
}

.pr3 .col {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

.pr3 .pic {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all ease .5s;
}

.pr3 .img {
  width: 100%;
  overflow: hidden;
  background: #E8EBF0;
  padding: 1.563vw 0;
  transition: all ease .5s;
}

.pr3 .img img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.pr3 .txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(243, 186, 68, 0.89);
  padding: 0 1.823vw;
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s;
}

.pr3 .col:hover .txt {
  opacity: 1;
  visibility: visible;
}

.pr3 .norm {
  width: 100%;
  margin: 0.521vw 0;
  transition: all ease .5s;
}

.pr3 .norm p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  transition: all ease .5s;
}

.pr3 .intr {
  width: 100%;
  padding: 1.563vw;
  background: #FFFFFF;
  border-radius: 0px 0px 32px 32px;
  border: 1px solid #F3F5F5;
  /* box-shadow: -10px 30px 20px 1px rgba(32, 53, 94, 0.15); */
  box-shadow: 0px 20px 10px -10px rgb(32 53 94 / 15%);
  transition: all ease .5s;
}

.pr3 .intr h6 {
  font-size: 0.833vw;
  font-weight: bold;
  color: #20355E;
  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 .5s;
}

.pr3 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  transition: all ease .5s;
}

.pr3 .detail {
  margin: 1.042vw 0 0;
  transition: all ease .5s;
}

.pr3 .col:hover .detail .line {
  fill: #F3BA44;
}

.pr3 .col:hover .detail .down {
  fill: #ffffff;
}

.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 4.688vw;
  z-index: 66;
  width: 100%;
  height: 4.688vw;
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.06);
}

.sticky .row {
  height: 100%;
  padding: 0 8.333vw;
}

.sticky .intr h2 {
  font-size: 1.458vw;
  font-weight: bold;
  color: #20355E;
}

.sticky .sub {
  padding: 0.781vw 1.563vw;
  background: #E8EBF0;
  border-radius: 26px;
  margin: 0 0 0 2.344vw;
  cursor: pointer;
  transition: all ease .5s;
}

.sticky .sub.on {
  background: #F3BA44;
}

.sticky .sub span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  transition: all ease .5s;
}

.sticky .sub.on span {
  color: #ffffff;
}

.pr_w {
  width: 100%;
  background: #ffffff;
  position: relative;
  transition: all ease .5s;
}

.pr_w .intr {
  width: 40%;
}

.pr_w .intr h1 {
  font-size: 3.542vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  margin: 0 0 2.083vw;
}

.pr_w .intr p {
  max-width: 590px;
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
}

.pr_w .pic {
  width: 60%;
  transition: all ease .5s;
}

.pr_w .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.pr_b {
  width: 100%;
  position: relative;
  padding: 7.292vw 8.333vw;
  background: #20355E;
  transition: all ease .5s;
}

.pr_b .col {
  width: 100%;
  padding: 3.906vw 4.427vw;
  background: #ffffff;
}

.pr_b .pic {
  width: 44.5%;
  transition: all ease .5s;
}

.pr_b .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.pr_b .intr {
  width: 46%;
}

.pr_b .intr h1 {
  font-size: 3.542vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  margin: 0 0 2.083vw;
}

.pr_b .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
}

.pr4 {
  padding: 0 8.333vw 6.25vw;
  z-index: 4;
}

.pr5 {
  z-index: 5;
}

.pr6 {
  z-index: 6;
  padding: 6.25vw 8.333vw;
}

.pr7 {
  z-index: 7;
}

.pr8 {
  background-image: url(../img/pr8-bj.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 8;
  padding: 6.25vw 8.333vw;
}

.pr9 {
  width: 100%;
  position: relative;
  transition: all ease .5s;
}

.pr9 .pic {
  width: 100%;
  overflow: hidden;
  transition: all ease .5s;
}

.pr9 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.pr9 .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  padding: 0 8.333vw;
}

.pr9 .intr h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #ffffff;
  padding: 2.344vw 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  display: inline-block;
  transition: all ease .5s;
}

.pr9 .intr h1:last-child {
  border: none;
}

.pr9 .intr b {
  color: #F3BA44;
  transition: all ease .5s;
}

.pr10 {
  background: #ffffff;
}

.pr10 .row {
  display: block !important;
}

/* 支持 */

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

.su0 .bj {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 100%;
  z-index: -1;
}

.su0 .bj img {
  max-width: 100%;
  width: 100%;
}

.su0 .pic {
  width: 48.75%;
  position: relative;
  transition: all ease .5s;
}

.su0 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.su0 .intr {
  width: 42%;
}

.su0 .intr h1 {
  max-width: 670px;
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  text-transform: uppercase;
  margin: 0 0 2.083vw;
}

.su0 .intr h2 {
  font-size: 1.458vw;
  font-weight: 400;
  color: #20355E;
  text-transform: uppercase;
  margin: 2.083vw 0 0;
}

.su0 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
}

.su0 .intr h6 {
  font-size: 0.833vw;
  font-weight: bold;
  color: #F3BA44;
  margin: 1.042vw 0 0.521vw;
}

.su1 {
  width: 100%;
  position: relative;
  padding: 7.292vw 20.833vw;
  overflow: hidden;
  background-image: url(../img/su1-bj.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.su1 .ev {
  width: auto;
  text-align: center;
  transition: all ease .5s;
}

.su1 .ev h6 {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

.su1 .ev b {
  font-size: 2.917vw;
  margin-right: 0.521vw;
}

.su1 .ev p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  margin: 2.083vw 0 0;
  transition: all ease .5s;
}

.su2 {
  width: 100%;
  padding: 7.292vw 8.333vw;
  position: relative;
}

.su2 .row {
  margin: 2.083vw 0 0;
}

.su2 .col {
  width: 32.5%;
  position: relative;
  transition: all ease .5s;
}

.su2 .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease .5s;
}

.su2 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(32, 53, 94, 0.58);
}

.su2 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.su2 .col:hover .pic img {
  transform: scale(1.05);
}

.su2 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 2.865vw;
  transition: all ease .5s;
}

.su2 .intr h2 {
  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 .5s;
}

.su2 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 1.042vw 0 2.083vw;
  transition: all ease .5s;
}

.su2 .col:hover .detail .line {
  fill: #F3BA44;
}

.su3 {
  width: 100%;
  background: #F4F6FB;
  padding: 7.292vw 0 7.292vw 8.333vw;
  position: relative;
}

.su3 .row {
  margin: 2.083vw 0 0;
  position: relative;
}

.su3 .swiper-slide {
  width: 71.875vw !important;
}

.su3 .col {
  width: 100%;
  transition: all ease .5s;
}

.su3 .pic {
  width: 57%;
  position: relative;
  transition: all ease .5s;
}

.su3 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}

.su3 .intr {
  width: 40%;
  min-height: 28.646vw;
  transition: all ease .5s;
}

.su3 .intr h1 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #20355E;
  margin: 2.604vw 0 1.563vw;
  transition: all ease .5s;
}

.su3 .intr p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  transition: all ease .5s;
}

.su3 .s_box {
  margin: 3.125vw 0 0;
}

.su3 .s_btn2 {
  margin-right: 1.563vw;
}

.su3 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #20355E;
  opacity: 1;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin: 0 3.646vw 0 0 !important;
  transition: all ease .5s;
}

.su3 .swiper-pagination {
  position: static;
  margin: 3.125vw 0 0;
  text-align: left;
}

.su3 .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 2.604vw;
  height: 2.604vw;
  background: #F3BA44;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s;
}

.su3 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
  height: 0.104vw;
  background: #20355E;
  transition: all ease .5s;
}

.su3 .swiper-pagination-bullet-active {
  margin: 0 8.594vw 0 0 !important;
}

.su3 .swiper-pagination-bullet-active::before {
  opacity: 1;
  visibility: visible;
}

.su3 .swiper-pagination-bullet-active::after {
  width: 4.688vw;
}

.su3 .swiper-pagination-bullet span {
  position: absolute;
  left: 5.208vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 0.833vw;
  font-weight: bold;
  color: #20355E;
  opacity: 0;
  visibility: hidden;
  /* transition: all ease .5s; */
}

.su3 .swiper-pagination-bullet-active span {
  opacity: 1;
  visibility: visible;
}

/* FAQ */
.fa0 {
  width: 100%;
  position: relative;
  padding: 0 8.333vw 7.292vw 0;
}

.fa0 .pic {
  width: 39%;
}

.fa0 .intr {
  width: 58%;
}

.fa0 .tit_b {
  margin: 0 0 2.344vw;
}

.fa0 .ev {
  width: 100%;
  position: relative;
  border-top: 1px solid #D5DDEB;
}

.fa0 .ev:last-child {
  border-bottom: 1px solid #D5DDEB;
}

.fa0 .type {
  width: 100%;
  padding: 2.083vw 0;
  position: relative;
  transition: all ease .5s;
}

.fa0 .detail {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  z-index: 1;
  transition: all ease .5s;
}

.fa0 .ev.on .detail {
  transform: translateY(-50%) rotate(90deg);
}

.fa0 .ev.on .detail .line {
  fill: #F3BA44;
}

.fa0 .ev.on .detail .down {
  fill: #ffffff;
}

.fa0 .type h5 {
  font-size: 1.042vw;
  font-weight: 400;
  color: #20355E;
  padding: 0 8.333vw 0 0;
  transition: all ease .5s;
}

.fa0 .ev.on .type h5 {
  color: #F3BA44;
}

.fa0 .details {
  width: 100%;
  padding: 0 8.333vw 2.083vw 0;
  display: none;
}

.fa0 .details p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  transition: all ease .5s;
}

/* 软件 */
.so0 {
  width: 100%;
  position: relative;
  padding: 0 16.667vw 7.292vw;
}

.so0 .cover {
  width: 100%;
  margin: 2.604vw 0 2.083vw;
  position: relative;
}

.so0 .sub {
  width: 11.979vw;
  height: 3.646vw;
  background: transparent;
  border: 1px solid #20355E;
  cursor: pointer;
  transition: all ease .5s;
}

.so0 .sub.on,
.so0 .sub:hover {
  background: #F3BA44;
  border: 1px solid #F3BA44;
}

.so0 .sub span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #20355E;
  transition: all ease .5s;
}

.so0 .sub.on span,
.so0 .sub:hover span {
  color: #FFFFFF;
}

.so0 .word {
  position: relative;
  width: 100%;
  margin: 0 0 2.083vw;
  transition: all ease .5s;
}

.so0 .word h2 {
  font-size: 1.458vw;
  font-weight: 400;
  color: #20355E;
  transition: all ease .5s;
}

.so0 .w_search {
  width: 9.635vw;
  height: 2.083vw;
  border-radius: 26px;
  border: 1px solid #E5E5E5;
  position: relative;
  transition: all ease .5s;
}

.so0 .w_search input {
  width: 100%;
  height: 100%;
  padding: 0 1.042vw;
  background: transparent;
  color: #20355E;
  transition: all ease .5s;
}

.so0 .w_search i {
  position: absolute;
  right: 1.042vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0.833vw;
  color: #20355E;
  cursor: pointer;
  transition: all ease .5s;
}

.so0 input::-webkit-input-placeholder {
  color: #20355E;
}

.so0 input::-moz-placeholder {
  color: #20355E;
}

.so0 input:-ms-input-placeholder {
  color: #20355E;
}

.so0 input:-moz-placeholder {
  color: #20355E;
}

.so0 .row {
  display: none;
}

.so0 .row.on {
  display: block;
}

.so0 .col {
  width: 100%;
  position: relative;
  padding: 2.604vw 0;
  border-top: 1px solid #D5DDEB;
  transition: all ease .5s;
}

.so0 .col:last-child {
  border-bottom: 1px solid #D5DDEB;
}

.so0 .ev:nth-child(1) {
  width: 80%;
}

.so0 .ev:nth-child(2) {
  width: 20%;
}

.so0 .ev span,
.so0 .ev i {
  font-size: 0.833vw;
  font-weight: 400;
  color: #000000;
  transition: all ease .5s;
}

.so0 .col:hover .ev:nth-child(1) span,
.so0 .col:hover .ev i {
  color: #F3BA44;
}

/* 联系我们 */
.co0 {
  width: 100%;
  position: relative;
  padding: 0 8.333vw 7.292vw;
  transition: all ease .5s;
}

.co0 .col_s,
.co0 .col_l {
  width: 36.875%;
}

.co0 .col_r {
  width: 56.25%;
}

.co0 .txt {
  width: 100%;
}

.co0 .txt h2 {
  font-size: 1.458vw;
  font-weight: bold;
  color: #20355E;
  margin: 0 0 0.781vw;
}

.co0 .icon {
  margin: 0 0 1.042vw;
}

.co0 .icon img {
  margin: 0.208vw 0.781vw 0 0;
}

.co0 .icon p {
  font-size: 0.833vw;
  font-weight: bold;
  color: #20355E;
  opacity: .4;
  transition: all ease .5s;
}

.co0 .map {
  width: 100%;
  margin: 5.208vw 0 0;
}

.co0 .map #gdmap {
  width: 100%;
  height: 22.917vw;
}

.amap-logo,
.amap-copyright {
  display: none !important;
}

.co0 .form {
  width: 100%;
  position: relative;
  margin: 4.167vw 0 0;
  transition: all ease .5s;
}

.co0 .label {
  width: 49%;
  position: relative;
  margin: 0 0 0.781vw;
  transition: all ease .5s;
}

.co0 .label.w_100 {
  width: 100%;
}

.co0 .label h6 {
  font-size: 0.833vw;
  font-weight: 400;
  color: #33475B;
  text-transform: uppercase;
  margin: 0 0 0.156vw;
  transition: all ease .5s;
}

.co0 .label p {
  font-size: 0.729vw;
  font-weight: 400;
  color: #7C98B6;
  margin: 0 0 0.156vw;
  transition: all ease .5s;
}

.co0 .label input {
  width: 100%;
  height: 2.344vw;
  padding: 0 0.781vw;
  background: #F5F8FA;
  border: 1px solid #CBD6E2;
  transition: all ease .5s;
}

.co0 .label textarea {
  width: 100%;
  height: 5.208vw;
  padding: 0.781vw;
  background: #F5F8FA;
  border: 1px solid #CBD6E2;
  transition: all ease .5s;
}

.co0 textarea::-webkit-input-placeholder {
  color: #A5B3BC;
}

.co0 textarea::-moz-placeholder {
  color: #A5B3BC;
}

.co0 textarea:-ms-input-placeholder {
  color: #A5B3BC;
}

.co0 textarea:-moz-placeholder {
  color: #A5B3BC;
}

.co0 .f_box {
  width: 100%;
  margin: 0.781vw 0 0;
}

.co0 .f_btn {
  width: 11.198vw;
  height: 2.604vw;
  margin-right: 0.781vw;
  cursor: pointer;
  position: relative;
  transition: all ease .5s;
}

.co0 .f_btn.flie {
  background: #F3BA44;
}

.co0 .f_btn.btn {
  background: #20355E;
}

.co0 .f_btn span {
  font-size: 0.833vw;
  font-weight: 400;
  color: #FFFFFF;
  transition: all ease .5s;
}

.co0 .f_btn input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

.co0 .cart_content {
  width: 100%;
  position: relative;
  margin: 1.563vw 0 0;
  min-height: 26.042vw;
}

.co0 .cart_empty {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 4px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all ease .5s;
}

.co0 .cart_empty p {
  font-size: 1.042vw;
  color: rgba(0, 0, 0, 0.4);
  transition: all ease .5s;
}

.co0 .crat_tit {
  width: 100%;
}

.co0 .crat_tit .ev:nth-child(1),
.co0 .pro_col .ev:nth-child(1) {
  width: 60%;
}

.co0 .crat_tit .ev:nth-child(2),
.co0 .pro_col .ev:nth-child(2) {
  width: 30%;
  text-align: center;
}

.co0 .crat_tit .ev:nth-child(3),
.co0 .pro_col .ev:nth-child(3) {
  width: 10%;
}

.co0 .crat_tit span {
  font-size: 1.042vw;
  font-weight: bold;
  color: #000000;
}

.co0 .cart_list,
.co0 .cart_fluid {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 1.042vw 0 0;
}

.co0 .cart_list {
  margin: 0 0 1.042vw;
}

.co0 .cart_fluid {
  height: 26.042vw;
  overflow: auto;
}

.co0 .pro_col {
  width: 100%;
  background: #f7f7f7;
  margin: 0 0 1.042vw;
  transition: all ease .5s;
}

.co0 .pro_col .ev {
  display: flex;
  align-items: center;
  justify-content: center;
}

.co0 .pro_img {
  width: 30%;
}

.co0 .pro_intr {
  width: 70%;
  padding: 0 0.521vw;
}

.co0 .pro_intr p {
  font-size: 0.833vw;
  color: #222222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all ease .5s;
}

.co0 .pro_intr span {
  font-size: 0.833vw;
  color: #222222;
  transition: all ease .5s;
}

.co0 .value span {
  font-size: 0.833vw;
  color: #222222;
  transition: all ease .5s;
}


.co0 .reduce,
.co0 .add,
.co0 .close {
  padding: 0.521vw;
  cursor: pointer;
  transition: all ease .5s;
}

.co0 .close i {
  font-size: 0.833vw;
  color: #222222;
  transition: all ease .5s;
}

/* 搜索页面 */
.se0 {
  width: 100%;
  position: relative;
  padding: 0 8.333vw 7.292vw;
}

.se0 .row {
  margin: 2.083vw 0 0;
}

.se0 .col {
  width: 23%;
}

.se1 {
  padding: 0 8.333vw 7.292vw;
}

.se1 .row {
  margin: 2.083vw 0 0;
}

.se2 {
  padding: 0 8.333vw 7.292vw;
}

.se2 .row {
  margin: 2.083vw 0 0;
}

.se3 {
  padding: 0 25vw 7.292vw 8.333vw;
}

.se3 .row {
  display: block !important;
  margin: 2.083vw 0 0;
}



.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-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: 105;
  cursor: pointer;
}

.Pop-video .close i {
  font-size: 1.563vw;
  font-weight: bold;
  color: #ffffff;
}

.Pop-video .Popvideo {
  width: 100%;
  position: relative;
}
.Pop-video .Popvideo img{
  max-width: 100%;
  width: 100%;
  transition: all ease .5s;
}
.Pop-video .Popvideo .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100% !important;
  height: 100% !important;
  z-index: 100;
}

.err-input {
  border: 1px solid red !important;
}

.errtips {
  font-size: 0.729vw;
  color: #FFFFFF;
  background: #20355E;
  border: 1px solid #fff;
  border-radius: 1.04167vw;
  padding: 0.521vw 1.042vw;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  white-space: nowrap;
  opacity: 0;
  animation: errtips 2s ease;
}

@keyframes errtips {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}