/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "SF Pro SC", "HanHei SC", "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  -webkit-overflow-scrolling: touch;
}
body {
  background: #121217;
}
.theme {
  filter: grayscale(1);
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-tap-highlight-color: rgba(0, 0, 0, 0);
  -o-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
div,
video {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-tap-highlight-color: rgba(0, 0, 0, 0);
  -o-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
input {
  background: none;
  outline: none;
  border: 0px;
  border-radius: 0;
}
.top {
  position: relative;
  height: 32px;
  background: #444444;
  z-index: 4;
}
.top .content {
  margin: auto;
  width: 1200px;
  color: #8e8e8e;
  text-align: right;
  padding-top: 12px;
  line-height: 12px;
  font-size: 12px;
  /* font-family: "microsoftYaHei"; */
}
.top .content span {
  margin-right: 30px;
}
.bot {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 52px;
  background: rgba(44, 44, 44, 0.94);
  border-bottom: 1px solid #343434;
  z-index: 4;
}
.bot .content {
  margin: auto;
  width: 1200px;
  font-size: 0;
  position: relative;
}
.bot .content .logo-header {
  display: inline-block;
  margin-top: 15px;
  margin-left: 30px;
  vertical-align: top;
}
.bot .content .logo-header img {
  width: 100px;
}
.bot .content .mobile-logo-header {
  display: none;
  margin-top: 15px;
  margin-left: 30px;
  vertical-align: top;
}
.bot .content .mobile-logo-header img {
  width: 30px;
}
.bot .content nav {
  display: inline-block;
  height: 20px;
  margin-top: 16px;
  margin-left: 20px;
  /* background: #f00; */
  border-left: 1px solid #646464;
}
.bot .content nav ul li {
  list-style: none;
  display: inline-block;
  margin-left: 110px;
  margin-top: 3px;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
}
.bot .content nav ul li a {
  text-decoration: none;
  color: #ffffff;
}
.bot .content nav ul li a:hover {
  color: #4fc3ff;
}
.bot .content nav ul li .current {
  color: #7d7d7d;
}
.bot .content nav ul li .current:hover {
  color: #7d7d7d;
}
.bot .content button {
  position: absolute;
  right: 110px;
  top: 12px;
  vertical-align: top;
  border: none;
  width: 66px;
  height: 28px;
  border-radius: 14px;
  background: linear-gradient(to bottom, #409fea, #0b78ce);
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
}
.bot .content button a {
  text-decoration: none;
  color: #ffffff;
}
.bot .content button:hover {
  background: linear-gradient(to bottom, #5ab7ff, #1786dd);
}
.bot .content .pcmanager {
  right: 0px;
  width: 95px;
}
.bot .m-bot {
  display: none;
}
.m-nav {
  display: none;
}
.bottom-info {
  background: #2c2c2c;
  height: 308px;
  width: 100%;
}
.bottom-info .item-container {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bottom-info .info-item {
  margin-left: 130px;
}
.bottom-info .info-item .info-title {
  width: 120px;
  font-size: 20px;
  color: #ffffff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-top: 40px;
}
.bottom-info .info-item .info-text {
  font-size: 16px;
  color: #999999;
  margin-top: 14px;
}
.bottom-info .info-item .info-text a {
  text-decoration: none;
  color: #999999;
}
.bottom-info .info-item .info-text a:hover {
  color: #4fc3ff;
}
.bottom-info .info-item .info-text:hover {
  color: #4fc3ff;
}
.bottom-info .info-item .no-ponter {
  cursor: auto;
}
.bottom-info .info-item .code {
  display: block;
  width: 132px;
  height: 132px;
  margin-bottom: 16px;
  margin-top: 44px;
}
.bottom-info .info-item .code-text {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}
.bottom-info .info-item:first-child {
  margin-left: 0;
}
footer {
  color: #8a8a8a;
  font-size: 14px;
  line-height: 14px;
  background: #2c2c2c;
}
footer .footer-content {
  padding-top: 21px;
  padding-bottom: 27px;
  width: 1140px;
  margin: auto;
  text-align: center;
}
footer .code-color {
  color: #4fc3ff;
}
footer .code-color a {
  text-decoration: none;
  color: #4fc3ff;
}
footer .telecom {
  margin-left: 36px;
}
footer .network-card-label {
  margin-left: 36px;
}
.toast-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.toast-wrapper .toast-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toast-wrapper .toast-content .toast {
  padding: 4px 10px;
  font-size: 14px;
  color: #eeeeee;
  border-radius: 5px;
  background: #000000;
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.2);
}
.login-template {
  position: fixed;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 2;
}
.login-template .regist-view-wrapper {
  display: none;
}
.login-template .pc-regist-view-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content {
  width: 840px;
  height: 400px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-line {
  height: 400px;
  border-left: 1px dotted #e3e3e3;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-title {
  font-size: 30px;
  font-weight: 600;
  color: #262b49;
  line-height: 42px;
  text-align: center;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-desc {
  margin-top: 30px;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  max-width: 332px;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-red-desc {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #f52663;
  line-height: 18px;
  max-width: 262px;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .mini-code-icon {
  margin-top: 10px;
  width: 160px;
  height: 160px;
}
.login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-goto-btn {
  cursor: pointer;
  margin-top: 22px;
  text-align: center;
  width: 170px;
  height: 45px;
  border-radius: 25px;
  border: 1px solid #262b49;
  font-size: 18px;
  font-weight: 600;
  color: #262b49;
  line-height: 45px;
  letter-spacing: 1px;
}
.login-template .loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.login-template .loading-wrapper .loading-pic {
  display: block;
  width: 80px;
  height: 80px;
  animation: loadingAnimate 700ms infinite linear;
  -o-animation: loadingAnimate 700ms infinite linear;
  -ms-animation: loadingAnimate 700ms infinite linear;
  -webkit-animation: loadingAnimate 700ms infinite linear;
  -moz-animation: loadingAnimate 700ms infinite linear;
}
@keyframes loadingAnimate {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes loadingAnimate {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes loadingAnimate {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loadingAnimate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loadingAnimate {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.login-template .toast-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.login-template .toast-wrapper .toast {
  color: #fff;
  background: #000;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 16px;
}
.login-template .contact-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.login-template .contact-wrapper .contact-pannel {
  color: #333;
  background: #fff;
  width: 300px;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.login-template .contact-wrapper .contact-pannel .contact-title {
  font-size: 20px;
  color: #333;
  margin-top: 15px;
}
.login-template .contact-wrapper .contact-pannel .contact-phone {
  font-size: 18px;
  color: #999;
  margin-top: 15px;
}
.login-template .contact-wrapper .contact-pannel .contact-cancel {
  margin-top: 15px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #666;
  border-top: 1px solid #d9d9d9;
  cursor: pointer;
}
@media only screen and (max-width: 1300px) {
  .top {
    height: 30px;
  }
  .top .content {
    max-width: 800px;
    min-width: 720px;
    width: 100%;
    padding-top: 10px;
    font-size: 12px;
  }
  .top .content span {
    margin-right: 20px;
  }
  .bot {
    height: 40px;
  }
  .bot .content {
    width: 100%;
    min-width: 720px;
    max-width: 800px;
  }
  .bot .content .logo-header {
    margin-top: 12px;
  }
  .bot .content .logo-header img {
    width: 80px;
  }
  .bot .content nav {
    margin-top: 10px;
    position: relative;
    width: 70%;
  }
  .bot .content nav ul li {
    font-size: 13px;
    margin-left: 8%;
  }
  .bot .content button {
    top: 10px;
    width: 60px;
    height: 20px;
    font-size: 12px;
  }
  .bot .m-bot {
    display: none;
  }
  .m-nav {
    display: none;
  }
  .bottom-info {
    height: 208px;
    width: 100%;
  }
  .bottom-info .item-container {
    width: 690px;
  }
  .bottom-info .info-item {
    margin-left: 73px;
  }
  .bottom-info .info-item .info-title {
    width: 80px;
    font-size: 14px;
    padding-bottom: 7px;
    margin-top: 27px;
  }
  .bottom-info .info-item .info-text {
    font-size: 12px;
    margin-top: 10px;
  }
  .bottom-info .info-item .code {
    width: 90px;
    height: 90px;
    margin-bottom: 11px;
    margin-top: 30px;
  }
  .bottom-info .info-item .code-text {
    font-size: 12px;
  }
  footer {
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    margin: auto;
  }
  footer .footer-content {
    padding-bottom: 17px;
    width: 712px;
  }
  footer .telecom {
    margin-left: 37px;
  }
  footer .network-card-label {
    display: block;
    margin-left: 0px;
    text-align: left;
  }
  .login-template {
    top: 0px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content {
    width: 569px;
    height: 271px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-line {
    height: 271px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-title {
    font-size: 20px;
    line-height: 32px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-desc {
    margin-top: 15px;
    font-size: 12px;
    line-height: 16px;
    max-width: 254px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-red-desc {
    margin-top: 10px;
    font-size: 12px;
    line-height: 14px;
    max-width: 185px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .mini-code-icon {
    margin-top: 7px;
    width: 108px;
    height: 108px;
  }
  .login-template .pc-regist-view-wrapper .pc-regist-view-content .regist-content .regist-goto-btn {
    margin-top: 15px;
    width: 115px;
    height: 30px;
    border-radius: 25px;
    font-size: 12px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 735px) {
  .top {
    display: none;
    height: 40px;
  }
  .top .content {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding-top: 15px;
    font-size: 12px;
  }
  .top .content span {
    margin-right: 20px;
  }
  .bot {
    height: 44px;
  }
  .bot .m-bot {
    height: 24px;
    padding: 10px 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .bot .m-bot .menu {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .bot .m-bot .menu .menu-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    height: 32px;
    -webkit-transition: -webkit-transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
    transition: -webkit-transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
    transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
    transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96), -webkit-transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
  }
  .bot .m-bot .menu .menu-icon .menu-line {
    position: absolute;
    left: 8px;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: #ffffff;
    -webkit-transition: -webkit-transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
    transition: -webkit-transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
    transition: transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
    transition: transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s, -webkit-transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
  }
  .bot .m-bot .menu .menu-icon .menu-line-top {
    top: 15px;
    transform: translateY(-3px);
  }
  .bot .m-bot .menu .menu-icon .menu-line-bot {
    bottom: 15px;
    transform: translateY(3px);
  }
  .bot .m-bot .menu .menu-icon .menu-line-actived {
    transform: translateY(0);
  }
  .bot .m-bot .menu .menu-icon-actived {
    transform: rotate(45deg);
  }
  .bot .m-bot .menu .menu-icon-actived:nth-child(2) {
    transform: rotate(-45deg);
  }
  .bot .m-bot .m-logo {
    width: 26px;
    height: 26px;
  }
  .bot .m-bot a {
    font-size: 0;
  }
  .bot .m-bot .login {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .bot .content {
    display: none;
  }
  .m-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #303030;
    padding-top: 44px;
    z-index: 3;
  }
  .m-nav ul {
    font-size: 0;
  }
  .m-nav ul a {
    text-decoration: none;
  }
  .m-nav ul a li {
    display: block;
    padding: 16px;
  }
  .m-nav ul a li .icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
  }
  .m-nav ul a li .text {
    vertical-align: middle;
    font-size: 15px;
    color: #ffffff;
    margin-left: 14px;
  }
  .m-nav ul .current-tab li {
    opacity: 0.5;
    background: #252525;
  }
  .bottom-info {
    height: auto;
    width: 100%;
  }
  .bottom-info .item-container {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
  }
  .bottom-info .info-item {
    margin-left: 5%;
    vertical-align: top;
    text-align: left;
  }
  .bottom-info .info-item .info-title {
    width: 60px;
    font-size: 12px;
    padding-bottom: 3px;
    margin-top: 15px;
  }
  .bottom-info .info-item .info-text {
    font-size: 10px;
    margin-top: 5px;
  }
  .bottom-info .info-item .code {
    margin: auto;
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
    margin-top: 10px;
  }
  .bottom-info .info-item .code-text {
    font-size: 10px;
  }
  .bottom-info .code-item {
    display: none;
  }
  footer {
    font-size: 10px;
    line-height: 1.5;
    padding: 8% 4% 0;
    text-align: center;
  }
  footer .footer-content {
    padding-top: 2%;
    padding-bottom: 5%;
    width: auto;
  }
  footer .telecom {
    display: block;
    margin-left: 0px;
  }
  footer .network-card-label {
    display: block;
    margin-left: 0px;
    text-align: center;
  }
  footer .code-br {
    margin-left: 10px;
    display: block;
  }
  .login-template {
    z-index: 2;
    background: url(/images/regist_bg.b1f77.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
  }
  .login-template .pc-regist-view-wrapper {
    display: none;
  }
  .login-template .regist-view-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-template .regist-view-wrapper .regist-view-content {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0);
    background: #fff;
    border-radius: 0.133rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0.133rem 0.267rem rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .login-template .regist-view-wrapper .regist-view-content .regist-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 38px;
    height: 38px;
  }
  .login-template .regist-view-wrapper .regist-view-content .mobile-mini-code-icon {
    width: 170px;
    height: 170px;
    margin-top: 70px;
  }
  .login-template .regist-view-wrapper .regist-view-content .mobile-title {
    margin-top: 25px;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    line-height: 30px;
  }
  .login-template .regist-view-wrapper .regist-view-content .mobile-title span:nth-child(2) {
    color: #f52663;
  }
  .login-template .regist-view-wrapper .regist-view-content .mobile-desc {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 400;
    color: #999999;
    line-height: 21px;
  }
  .login-template .regist-view-wrapper .regist-view-content-active {
    transform: scale(1);
  }
  .login-template .loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .login-template .loading-wrapper .loading-pic {
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    animation: loadingAnimate 700ms infinite linear;
    -o-animation: loadingAnimate 700ms infinite linear;
    -ms-animation: loadingAnimate 700ms infinite linear;
    -webkit-animation: loadingAnimate 700ms infinite linear;
    -moz-animation: loadingAnimate 700ms infinite linear;
  }
  @keyframes loadingAnimate {
    100% {
      transform: rotate(360deg);
    }
  }
  @-o-keyframes loadingAnimate {
    100% {
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-ms-keyframes loadingAnimate {
    100% {
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes loadingAnimate {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes loadingAnimate {
    100% {
      -moz-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .login-template .toast-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .login-template .toast-wrapper .toast {
    color: #fff;
    background: #000;
    padding: 5px;
    border-radius: 3px;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 0.187rem;
  }
  .login-template .contact-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .login-template .contact-wrapper .contact-pannel {
    color: #333;
    background: #fff;
    width: 80%;
    border-radius: 6px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  .login-template .contact-wrapper .contact-pannel .contact-title {
    font-size: 0.24rem;
    color: #333;
    margin-top: 0.2rem;
  }
  .login-template .contact-wrapper .contact-pannel .contact-phone {
    font-size: 0.2rem;
    color: #999;
    margin-top: 0.2rem;
  }
  .login-template .contact-wrapper .contact-pannel .contact-cancel {
    margin-top: 0.2rem;
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: 0.18rem;
    color: #666;
    border-top: 1px solid #d9d9d9;
    cursor: pointer;
  }
  .login-template .wx-guide-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  .login-template .wx-guide-wrapper .wx-guide-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .login-template .wx-guide-wrapper .wx-guide-content .wx-guide-img {
    width: 80%;
    border-radius: 5px;
  }
  .login-template .wx-guide-wrapper .wx-guide-content .wx-guide-text {
    margin-top: 10px;
    font-size: 15px;
    color: #eeeeee;
    letter-spacing: 1.5px;
  }
}
/*************  定义所有动画元素的基本属性   **************/
.animation-panel {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1.6s;
  transition-duration: 1.6s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.flip-animation-panel {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.regist-animation-panel {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.movedown-panel {
  opacity: 0;
  transform: translateY(50px);
}
.movedown-actived {
  transform: translateY(0);
  opacity: 1;
}
/*************  文字上移渐变动画   **************/
.moveup-panel {
  opacity: 0;
  transform: translateY(10px);
}
.moveup-actived {
  transform: translateY(0);
  opacity: 1;
}
/*************  长距离上移渐变动画   **************/
.moveupLong-panel {
  opacity: 0;
  transform: translateY(30px);
}
.moveupLong-actived {
  transform: translateY(0);
  opacity: 1;
}
/*************  向左滑动渐变动画   **************/
.slideToLeft-panel {
  opacity: 0;
  transform: translateX(180px);
}
.slideToLeft-actived {
  transform: translateY(0);
  opacity: 1;
}
/*************  轻微向左滑动渐变动画   **************/
.slideToLeftSlignt-panel {
  opacity: 0;
  transform: translateX(15px);
}
.slideToLeftSlignt-actived {
  transform: translateY(0);
  opacity: 1;
}
/*************  快速超远向左滑动渐变动画   **************/
.slideToLeftSlignt-faraway-panel {
  opacity: 0;
  transform: translateX(2500px);
}
.slideToLeftSlignt-faraway-actived {
  transform: translateX(0);
  opacity: 1;
}
/*************  轻微向右滑动渐变动画   **************/
.slideToRightSlignt-panel {
  opacity: 0;
  transform: translateX(-15px);
}
.slideToRightSlignt-actived {
  transform: translateY(0);
  opacity: 1;
}
/*************  快速超远向右滑动渐变动画   **************/
.slideToRightSlignt-faraway-panel {
  opacity: 0;
  transform: translateX(-500px);
}
.slideToRightSlignt-faraway-actived {
  transform: translateX(0);
  opacity: 1;
}
/*************  淡出动画   **************/
.fadeOut-actived {
  opacity: 0;
}
.fadeIn-pannel {
  opacity: 0;
}
.fadeIn-actived {
  opacity: 1;
}
/*************  反转动画   **************/
.front-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotateY(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.back-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-panel {
  perspective: 1760px;
}
.flip-deep-trans-actived {
  z-index: 2;
}
.flip-deep-trans-actived .front-panel {
  transform: rotateY(180deg);
}
.flip-deep-trans-actived .back-panel {
  transform: rotateY(0);
  z-index: 3;
}
div.v5-btn-right {
  height: auto;
  right: 0;
  padding: 0;
  border-radius: 5px 0 0 5px;
}
div.v5-btn,
div.v5-btn-left,
div.v5-btn-right {
  z-index: 2147483584;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  position: fixed;
  width: 40px;
  min-height: 116px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  *-webkit-writing-mode: tb-lr;
  *writing-mode: tb-lr;
  -webkit-writing-mode: tb-lr\9;
  -ms-writing-mode: tb-lr\9;
  writing-mode: tb-lr\9;
  font-size: 15px !important;
  text-align: center;
  cursor: pointer;
  background-color: #242c33;
  color: #fff;
  -webkit-box-shadow: 0 0 14px 0 rgb(0 0 0%);
  box-shadow: 0 0 14px 0 rgb(0 0 0%);
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  font-family: "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", SimHei, "\9ED1\4F53", STHeiti, SimSun, "\5B8B\4F53";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
div.v5-btn-title {
  height: auto;
  display: block;
  max-height: 200px;
  padding: 0;
  margin: 16px 0 10px 0;
  overflow: hidden;
  line-height: 40px;
  word-break: break-all;
  word-wrap: break-word;
  letter-spacing: 6px;
}
.help-template {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 2;
}
.box-template {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}
.title-template {
  width: 420px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0px 0px 4px 0px rgb(0 0 0%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.desc-template {
  margin-top: 30px;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  max-width: 332px;
}
.code-template {
  margin-top: 10px;
  width: 300px;
}
.index-page .content {
  width: 1108px;
  margin: auto;
}
.index-page .content article .title {
  line-height: 28px;
  font-size: 28px;
  color: #63636e;
  font-weight: 500;
}
.index-page .content article .desc {
  font-size: 60px;
  color: #ffffff;
  font-weight: 500;
}
.index-page .content article .detail {
  font-size: 16px;
  line-height: 24px;
  color: #5e5e6a;
}
.main .img-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
}
.main .img-modal .img-content {
  position: relative;
}
.main .img-modal .img-content .close-icon {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.main .img-modal .img-content .show-img {
  width: 500px;
}
.main .img-modal .img-content .show-detail {
  margin: 0 auto;
  margin-top: 20px;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.main .img-modal-hide {
  display: none;
}
.main .img-modal-show {
  display: flex;
}
@media only screen and (max-width: 1300px) {
  .index-page .content {
    width: 692px;
  }
  .index-page .content article .title {
    line-height: 28px;
    font-size: 28px;
  }
  .index-page .content article .desc {
    font-size: 32px;
    line-height: 32px;
    margin-top: 24px;
  }
  .index-page .content article .detail {
    font-size: 12px;
  }
  footer {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page .content {
    width: auto;
    min-width: 300px;
  }
  .index-page .content article {
    padding: 0 4%;
  }
  .index-page .content article .title {
    font-size: 16px;
  }
  .index-page .content article .desc {
    font-size: 18px;
    line-height: 1.5px;
    margin-top: 20px;
  }
  .index-page .content article .desc .sub-desc {
    display: block;
    font-size: 24px;
    line-height: 32px;
  }
  .index-page .content article .detail {
    font-size: 12px;
    line-height: 16px;
  }
  .main .img-modal .img-content .close-icon {
    right: -10px;
    top: -10px;
    width: 20px;
    height: 20px;
  }
  .main .img-modal .img-content .show-img {
    width: 300px;
  }
  .main .img-modal .img-content .show-detail {
    width: 150px;
  }
}
.index-page1-wrapper {
  position: relative;
  background: #121217;
  text-align: center;
  margin-bottom: 60px;
}
.index-page1-wrapper article {
  text-align: center;
}
.index-page1-wrapper article .mobile-desc {
  display: none;
}
.index-page1-wrapper article .pc-desc {
  display: block;
  line-height: 60px;
  margin-top: 88px;
}
.index-page1-wrapper .sub-text {
  font-size: 24px;
  color: #c3c3c3;
  text-align: center;
  margin-top: 20px;
  line-height: 24px;
}
.index-page1-wrapper .sub-text1 {
  color: #61d1ff;
  margin-top: 49px;
}
.index-page1-wrapper .video-wraper {
  height: 370px;
  font-size: 0;
  position: relative;
  margin-top: 82px;
}
.index-page1-wrapper .video-wraper .video {
  position: relative;
  display: inline-block;
  width: 657px;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 20px #000000;
  overflow: hidden;
}
.index-page1-wrapper .video-wraper .video video {
  width: 100%;
  z-index: 1;
  cursor: pointer;
}
.index-page1-wrapper .video-wraper .video .control {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/images/page1_video_cover.b8aa0.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.index-page1-wrapper .video-wraper .video .control .play-btn {
  cursor: pointer;
  width: 81px;
}
.index-page1-wrapper .video-wraper .func-wrapper {
  display: inline-block;
  margin-left: 50px;
  vertical-align: top;
}
.index-page1-wrapper .video-wraper .func-wrapper .func-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #313139;
  box-sizing: border-box;
  margin-top: 19px;
}
.index-page1-wrapper .video-wraper .func-wrapper .func-item .func-icon {
  width: 108px;
  height: 90px;
}
.index-page1-wrapper .video-wraper .func-wrapper .func-item .func-text {
  font-size: 24px;
  color: #fff;
  margin-left: 31px;
}
.index-page1-wrapper .video-wraper .func-wrapper .func-item:first-child {
  margin-top: 0;
}
.index-page1-wrapper .video-wraper .func-wrapper .func-item:last-child {
  border-bottom: 0;
}
.index-page1-wrapper .use-btn {
  margin: auto;
  margin-top: 88px;
  width: 200px;
  height: 60px;
  font-size: 22px;
  text-align: center;
  border-radius: 6px;
  border: none;
  background: linear-gradient(to bottom, #409fea, #0b78ce);
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
}
.index-page1-wrapper .use-btn:hover {
  background: linear-gradient(to bottom, #5ab7ff, #1786dd);
}
@media only screen and (max-width: 1300px) {
  .index-page1-wrapper {
    padding-bottom: 60px;
  }
  .index-page1-wrapper article .mobile-desc {
    display: none;
  }
  .index-page1-wrapper article .pc-desc {
    line-height: 32px !important;
    margin-top: 59px !important;
  }
  .index-page1-wrapper .sub-text {
    font-size: 16px;
    margin-top: 13px;
    line-height: 16px;
  }
  .index-page1-wrapper .sub-text1 {
    margin-top: 33px;
  }
  .index-page1-wrapper .video-wraper {
    height: 250px;
    margin-top: 55px;
  }
  .index-page1-wrapper .video-wraper .video {
    width: 444px;
    border-radius: 6px;
  }
  .index-page1-wrapper .video-wraper .video .control .play-btn {
    width: 54px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper {
    margin-left: 33px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item {
    padding-bottom: 13px;
    margin-top: 12px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item .func-icon {
    width: 73px;
    height: 60px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item .func-text {
    font-size: 16px;
    margin-left: 21px;
  }
  .index-page1-wrapper .use-btn {
    margin-top: 66px;
    width: 135px;
    height: 40px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page1-wrapper {
    padding-bottom: 0;
  }
  .index-page1-wrapper article .mobile-desc {
    display: block;
  }
  .index-page1-wrapper article .pc-desc {
    display: none;
  }
  .index-page1-wrapper .sub-text {
    font-size: 12px;
    margin-top: 10px;
    line-height: 12px;
    padding: 0 20px;
  }
  .index-page1-wrapper .sub-text1 {
    margin-top: 20px;
    line-height: 16px;
  }
  .index-page1-wrapper .video-wraper {
    height: auto;
    font-size: 0;
    margin-top: 30px;
  }
  .index-page1-wrapper .video-wraper .video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 10px 20px #000000;
    overflow: hidden;
  }
  .index-page1-wrapper .video-wraper .video video {
    z-index: 1;
    cursor: pointer;
  }
  .index-page1-wrapper .video-wraper .video .control {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/page1_video_cover.b8aa0.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .index-page1-wrapper .video-wraper .video .control .play-btn {
    cursor: pointer;
    width: 31px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    margin-top: 25px;
    vertical-align: initial;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 0px;
    border-bottom: none;
    margin-left: 10px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item .func-icon {
    width: 42px;
    height: 35px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item .func-text {
    font-size: 10px;
    margin-left: 2px;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item:first-child {
    margin-top: 0;
  }
  .index-page1-wrapper .video-wraper .func-wrapper .func-item:last-child {
    border-bottom: 0;
  }
  .index-page1-wrapper .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }
  .index-page1-wrapper .btn-wrap a {
    display: inline-block;
    display: flex;
  }
  .index-page1-wrapper .btn-wrap a .use-btn {
    width: 100px;
    height: 32px;
    font-size: 12px;
    margin: 0 auto;
    border-radius: 4px;
    font-weight: normal;
    margin-top: 10px;
  }
}
.index-page2-wrapper {
  padding-bottom: 66px;
  font-size: 0;
  margin-top: 180px;
}
.index-page2-wrapper .content {
  width: 1120px;
}
.index-page2-wrapper .content .desc {
  text-align: center;
}
.index-page2-wrapper .content .type-wrapper {
  margin-top: 65px;
  text-align: center;
}
.index-page2-wrapper .content .type-wrapper .type-title {
  display: inline-block;
  margin-right: 50px;
  font-size: 18px;
  color: #7d7d7d;
  cursor: pointer;
  text-align: center;
}
.index-page2-wrapper .content .type-wrapper .type-title:hover {
  color: #4fc3ff;
}
.index-page2-wrapper .content .type-wrapper .type-title-selected {
  color: #fff;
}
.index-page2-wrapper .content .type-wrapper .type-title-selected .selected-line {
  margin: auto;
  background: #4fc3ff;
  width: 54px;
  height: 2px;
  margin-top: 8px;
}
.index-page2-wrapper .content .swiper-container {
  width: 100%;
  margin: auto;
  margin-top: 38px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper {
  width: 100%;
  height: 630px;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-name {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  padding-top: 77px;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-pv {
  font-size: 24px;
  color: #cacaca;
  margin-top: 20px;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-qrcode {
  margin-top: 50px;
  width: 240px;
  height: 240px;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-scan {
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide-1 {
  background-image: url(/images/example1.8e9f4.jpg);
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide-2 {
  background-image: url(/images/example2.481e5.jpg);
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide-3 {
  background-image: url(/images/example3.2ac67.jpg);
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide-4 {
  background-image: url(/images/example4.636f0.jpg);
}
.index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide-5 {
  background-image: url(/images/example5.4a5ee.jpg);
}
.index-page2-wrapper .content .swiper-container .pagination-wrapper {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: auto;
  z-index: 9;
  text-align: center;
}
.index-page2-wrapper .content .swiper-container .pagination-wrapper .pagination-line {
  width: 8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
}
.index-page2-wrapper .content .swiper-container .pagination-wrapper .actived {
  width: 26px;
  background: #fff;
}
.index-page2-wrapper .content .to-register-btn {
  width: 200px;
  height: 60px;
  margin: auto;
  display: block;
}
.index-page2-wrapper .content .to-register-btn .use-btn {
  margin: auto;
  margin-top: 50px;
  width: 200px;
  height: 60px;
  font-size: 22px;
  text-align: center;
  border-radius: 6px;
  border: none;
  background: linear-gradient(to bottom, #409fea, #0b78ce);
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
}
.index-page2-wrapper .content .to-register-btn .use-btn:hover {
  background: linear-gradient(to bottom, #5ab7ff, #1786dd);
}
.index-page2-wrapper .content .mobile {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .index-page2-wrapper {
    padding-bottom: 60px;
    margin-top: 121px;
  }
  .index-page2-wrapper .content {
    width: 735px;
  }
  .index-page2-wrapper .content .type-wrapper {
    margin-top: 44px;
  }
  .index-page2-wrapper .content .type-wrapper .type-title {
    margin-right: 33px;
    font-size: 12px;
  }
  .index-page2-wrapper .content .type-wrapper .type-title-selected .selected-line {
    width: 36px;
    height: 2px;
    margin-top: 5px;
  }
  .index-page2-wrapper .content .swiper-container {
    margin-top: 25px;
    border-radius: 10px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper {
    width: 100%;
    height: 386px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-name {
    font-size: 24px;
    padding-top: 52px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-pv {
    font-size: 16px;
    margin-top: 13px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-qrcode {
    margin-top: 34px;
    width: 162px;
    height: 162px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info .order-scan {
    font-size: 12px;
    margin-top: 13px;
  }
  .index-page2-wrapper .content .swiper-container .pagination-wrapper {
    display: block;
    bottom: 16px;
  }
  .index-page2-wrapper .content .to-register-btn {
    width: 135px;
    height: 40px;
  }
  .index-page2-wrapper .content .to-register-btn .use-btn {
    margin-top: 33px;
    width: 135px;
    height: 40px;
    font-size: 15px;
    border-radius: 6px;
  }
  .index-page2-wrapper .content .mobile {
    display: none;
  }
}
@media only screen and (max-width: 735px) {
  .index-page2-wrapper {
    padding-bottom: 0px;
    font-size: 0;
    margin-top: 80px;
  }
  .index-page2-wrapper .content {
    width: 100%;
  }
  .index-page2-wrapper .content .type-wrapper {
    margin-top: 24px;
  }
  .index-page2-wrapper .content .type-wrapper .type-title {
    margin-right: 20px;
    font-size: 10px;
  }
  .index-page2-wrapper .content .type-wrapper .type-title-selected .selected-line {
    width: 21px;
    height: 2px;
    margin-top: 3px;
  }
  .index-page2-wrapper .content .swiper-container {
    width: 100%;
    margin-top: 15px;
    border-radius: 0px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper {
    width: 100%;
    height: 222px;
  }
  .index-page2-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .order-info {
    display: none;
  }
  .index-page2-wrapper .content .swiper-container .pagination-wrapper {
    display: none;
  }
  .index-page2-wrapper .content .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }
  .index-page2-wrapper .content .btn-wrap a {
    display: inline-block;
    display: flex;
  }
  .index-page2-wrapper .content .btn-wrap a .use-btn {
    width: 100px;
    height: 32px;
    font-size: 12px;
    margin: 0 auto;
    border-radius: 4px;
    font-weight: normal;
    margin-top: 10px;
  }
  .index-page2-wrapper .content .btn-wrap a .more-products {
    margin-top: 10px;
    width: 90px;
  }
  .index-page2-wrapper .content .btn-wrap a .more-products .text {
    font-size: 12px;
    width: 90px;
    text-decoration: none;
  }
  .index-page2-wrapper .content .btn-wrap a .more-products .arrow {
    width: 7.5px;
    height: 12px;
  }
  .index-page2-wrapper .content .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .index-page2-wrapper .content .btn-wrap a {
    display: inline-block;
    display: flex;
  }
  .index-page2-wrapper .content .btn-wrap a .use-btn {
    width: 100px;
    height: 32px;
    font-size: 12px;
    margin: 0 auto;
    border-radius: 4px;
    font-weight: normal;
    margin-top: 10px;
  }
  .index-page2-wrapper .content .mobile {
    display: block;
  }
  .index-page2-wrapper .content .mobile-arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    justify-content: space-between;
  }
  .index-page2-wrapper .content .mobile-arrow .arrow {
    width: 30px;
  }
  .index-page2-wrapper .content .mobile-arrow .left-arrow {
    opacity: 0;
  }
  .index-page2-wrapper .content .mobile-btn {
    margin: 0 auto;
    margin-top: 10px;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    text-align: center;
  }
  .index-page2-wrapper .content .mobile-btn span {
    border-bottom: 1px solid #4fc3ff;
  }
}
.index-page3-wrapper {
  margin-top: 180px;
  margin-bottom: 160px;
}
.index-page3-wrapper .content article .desc {
  text-align: left;
}
.index-page3-wrapper .content .step-wrapper {
  margin-top: 50px;
  font-size: 0;
  display: block;
  overflow: hidden;
}
.index-page3-wrapper .content .step-wrapper .step-item {
  cursor: pointer;
  display: inline-block;
  width: 540px;
  height: 390px;
  background: #23232c;
  position: relative;
  margin-right: 2px;
  margin-bottom: 2px;
  vertical-align: top;
  text-align: center;
  font-size: 0;
}
.index-page3-wrapper .content .step-wrapper .step-item .step-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 30px;
  font-weight: 900;
  width: 32px;
  height: 64px;
  line-height: 64px;
  text-align: center;
}
.index-page3-wrapper .content .step-wrapper .step-item .step-title {
  font-size: 24px;
  color: #fff;
  padding-top: 27px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step-img {
  margin-top: 15px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step2-desc {
  margin-top: 17px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step3-desc {
  margin-top: 9px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step4-desc {
  margin-top: 6px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step1-img {
  width: 409px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step2-img {
  width: 231px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step3-img {
  width: 170px;
}
.index-page3-wrapper .content .step-wrapper .step-item .step4-img {
  width: 308px;
  margin-top: 8px;
}
.index-page3-wrapper .content .step-wrapper .step-item:hover {
  background: #2b90df;
}
.index-page3-wrapper .content .to-register-btn {
  width: 200px;
  height: 60px;
  margin: auto;
  display: block;
}
.index-page3-wrapper .content .to-register-btn .use-btn {
  margin: auto;
  margin-top: 50px;
  width: 200px;
  height: 60px;
  font-size: 22px;
  text-align: center;
  border-radius: 6px;
  border: none;
  background: linear-gradient(to bottom, #409fea, #0b78ce);
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
}
.index-page3-wrapper .content .to-register-btn .use-btn:hover {
  background: linear-gradient(to bottom, #5ab7ff, #1786dd);
}
@media only screen and (max-width: 1300px) {
  .index-page3-wrapper {
    margin-top: 160px;
    margin-bottom: 130px;
  }
  .index-page3-wrapper .content {
    width: 735px;
  }
  .index-page3-wrapper .content .step-wrapper {
    margin-top: 33px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item {
    width: 355px;
    height: 263px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-num {
    top: 6px;
    left: 6px;
    font-size: 20px;
    width: 22px;
    height: 44px;
    line-height: 44px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-title {
    font-size: 16px;
    padding-top: 18px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-img {
    margin-top: 10px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-desc {
    font-size: 12px;
    margin-top: 5px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step2-desc {
    margin-top: 11px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step3-desc {
    margin-top: 6px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step4-desc {
    margin-top: 4px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step1-img {
    width: 277px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step2-img {
    width: 156px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step3-img {
    width: 115px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step4-img {
    width: 208px;
    margin-top: 5px;
  }
  .index-page3-wrapper .content .to-register-btn {
    width: 135px;
    height: 40px;
  }
  .index-page3-wrapper .content .to-register-btn .use-btn {
    margin-top: 33px;
    width: 135px;
    height: 40px;
    font-size: 15px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page3-wrapper {
    margin-top: 100px;
    margin-bottom: 80px;
  }
  .index-page3-wrapper .content {
    width: 100%;
  }
  .index-page3-wrapper .content .step-wrapper {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .index-page3-wrapper .content .step-wrapper .step-item {
    width: 49%;
    height: 152px;
    display: block;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-num {
    top: 4px;
    left: 4px;
    border-radius: 2px;
    font-size: 11px;
    width: 12px;
    height: 25px;
    line-height: 25px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-title {
    font-size: 8px;
    padding-top: 10px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-img {
    margin-top: 5px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step-desc {
    font-size: 8px;
    margin-top: 3px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step2-desc {
    margin-top: 6px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step3-desc {
    margin-top: 3px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step4-desc {
    margin-top: 2px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step1-img {
    width: 150px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step2-img {
    width: 90px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step3-img {
    width: 66px;
  }
  .index-page3-wrapper .content .step-wrapper .step-item .step4-img {
    width: 120px;
    margin-top: 3px;
  }
  .index-page3-wrapper .content .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .index-page3-wrapper .content .btn-wrap a {
    display: inline-block;
    display: flex;
  }
  .index-page3-wrapper .content .btn-wrap a .use-btn {
    width: 100px;
    height: 32px;
    font-size: 12px;
    margin: 0 auto;
    border-radius: 4px;
    font-weight: normal;
    margin-top: 10px;
  }
}
.index-page4-wrapper {
  padding-bottom: 134px;
  background: #121217;
}
.index-page4-wrapper .content {
  margin: auto;
}
.index-page4-wrapper .content article {
  text-align: left;
}
.index-page4-wrapper .content article .title {
  padding-top: 130px;
}
.index-page4-wrapper .content article .desc {
  margin-top: 20px;
  line-height: 76px;
}
.index-page4-wrapper .content article .detail {
  width: 990px;
  margin-top: 40px;
}
.index-page4-wrapper .board {
  margin-top: 60px;
  padding: 80px 40px;
  background: #17171d;
  border-radius: 8px;
  box-shadow: 0 6px 15px 5px rgba(0, 0, 0, 0.2);
}
.index-page4-wrapper .board-title {
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #383838;
}
.index-page4-wrapper .time-wrap {
  font-size: 0;
}
.index-page4-wrapper .time-list {
  display: inline-block;
  width: 620px;
  vertical-align: top;
}
.index-page4-wrapper .time-list .time-row {
  padding-top: 40px;
  padding-bottom: 27px;
}
.index-page4-wrapper .time-list .time-row .time-line {
  width: 620px;
  height: 8px;
}
.index-page4-wrapper .time-list .time-row .time-line .tranditional {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #503fc8, #9973ed);
}
.index-page4-wrapper .time-list .time-row .time-line .tranditional-actived {
  width: 100%;
}
.index-page4-wrapper .time-list .time-row .time-line .others {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #503fc8, #9973ed);
}
.index-page4-wrapper .time-list .time-row .time-line .others-actived {
  width: 190px;
}
.index-page4-wrapper .time-list .time-row .time-line .yipaijichuan {
  width: 0;
  height: 100%;
  -webkit-transition-duration: 1.4s;
  transition-duration: 1.4s;
  background: linear-gradient(to right, #1b90fe, #24cbfb);
}
.index-page4-wrapper .time-list .time-row .time-line .yipaijichuan-actived {
  width: 25px;
}
.index-page4-wrapper .time-list .time-row .time-line-actived {
  background: #63636e;
}
.index-page4-wrapper .time-list .time-row .time-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 14px;
  color: #82828b;
  white-space: pre;
}
.index-page4-wrapper .time-list .time-row .time-text-yipaijichuan {
  color: #ffffff;
}
.index-page4-wrapper .time-desc {
  display: inline-block;
  width: 300px;
  padding-top: 170px;
  padding-left: 77px;
  font-weight: 500;
  color: #ffffff;
  vertical-align: top;
}
.index-page4-wrapper .time-desc .time-desc-title {
  display: block;
  font-size: 36px;
  line-height: 38px;
}
.index-page4-wrapper .time-desc .time-desc-num {
  display: block;
  font-size: 48px;
  line-height: 75px;
}
.index-page4-wrapper .time-desc-mobile {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .index-page4-wrapper {
    padding-bottom: 80px;
  }
  .index-page4-wrapper .content {
    margin: auto;
  }
  .index-page4-wrapper .content article .title {
    padding-top: 10px;
  }
  .index-page4-wrapper .content article .desc {
    font-size: 32px;
    line-height: 42px;
    margin-top: 24px;
  }
  .index-page4-wrapper .content article .detail {
    width: 618px;
    margin-top: 40px;
  }
  .index-page4-wrapper .board {
    margin-top: 20px;
    padding: 40px 40px;
  }
  .index-page4-wrapper .time-list {
    width: 387px;
  }
  .index-page4-wrapper .time-list .time-row .time-line {
    width: 387px;
  }
  .index-page4-wrapper .time-list .time-row .time-line .others-actived {
    width: 118px;
  }
  .index-page4-wrapper .time-list .time-row .time-line .yipaijichuan-actived {
    width: 16px;
  }
  .index-page4-wrapper .time-desc {
    width: 187px;
    padding-top: 216px;
    padding-left: 38px;
  }
  .index-page4-wrapper .time-desc .time-desc-title {
    font-size: 22px;
    line-height: 24px;
  }
  .index-page4-wrapper .time-desc .time-desc-num {
    font-size: 30px;
    line-height: 46px;
  }
  .index-page4-wrapper .time-desc-mobile {
    display: none;
  }
}
@media only screen and (max-width: 735px) {
  .index-page4-wrapper {
    padding-bottom: 60px;
  }
  .index-page4-wrapper .content {
    margin: auto;
  }
  .index-page4-wrapper .content article {
    text-align: center;
  }
  .index-page4-wrapper .content article .title {
    padding-top: 0;
  }
  .index-page4-wrapper .content article .desc {
    font-size: 24px;
    line-height: 30px;
    margin-top: 24px;
  }
  .index-page4-wrapper .content article .detail {
    display: none;
  }
  .index-page4-wrapper .board {
    margin: 8% 4% 0;
    padding: 8% 5%;
  }
  .index-page4-wrapper .board .board-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 14px;
  }
  .index-page4-wrapper .board .board-title-text {
    display: block;
    flex: 1;
  }
  .index-page4-wrapper .board .time-desc-mobile {
    display: block;
    flex: 1;
  }
  .index-page4-wrapper .board .time-desc-mobile .time-desc-text {
    font-size: 12px;
  }
  .index-page4-wrapper .time-list {
    width: 100%;
    margin: 0 auto;
  }
  .index-page4-wrapper .time-list .time-row {
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .index-page4-wrapper .time-list .time-row .time-line {
    width: 100%;
    height: 6px;
  }
  .index-page4-wrapper .time-list .time-row .time-line .others-actived {
    width: 118px;
  }
  .index-page4-wrapper .time-list .time-row .time-line .yipaijichuan-actived {
    width: 16px;
  }
  .index-page4-wrapper .time-list .time-row .time-text {
    font-size: 12px;
  }
  .index-page4-wrapper .time-desc {
    width: 187px;
    padding-top: 0px;
    padding-left: 0px;
  }
  .index-page4-wrapper .time-desc .time-desc-title {
    font-size: 18px;
    line-height: 22px;
    text-align: right;
  }
  .index-page4-wrapper .time-desc-mobile {
    display: inline-block;
  }
  .index-page4-wrapper .time-desc-pc {
    display: none;
  }
}
.index-page5-wrapper {
  position: relative;
  margin-top: 130px;
  padding-bottom: 160px;
}
.index-page5-wrapper .content article {
  text-align: left;
}
.index-page5-wrapper .content article .desc {
  margin-top: 20px;
  line-height: 72px;
}
.index-page5-wrapper .content article .detail {
  margin: 20px 0;
  font-size: 16px;
  color: #5e5e6a;
  margin-top: 40px;
}
.index-page5-wrapper .img-wrapper {
  position: relative;
  width: 1200px;
  height: 540px;
  margin: 0 auto;
}
.index-page5-wrapper .img-wrapper .page5-show-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1200px;
}
@media only screen and (max-width: 1300px) {
  .index-page5-wrapper {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .index-page5-wrapper .content article .desc {
    font-size: 32px;
    line-height: 42px;
    margin-top: 24px;
  }
  .index-page5-wrapper .content article .detail {
    margin: 11px 0;
    font-size: 12px;
    margin-top: 23px;
  }
  .index-page5-wrapper .img-wrapper {
    width: 735px;
    height: 360px;
  }
  .index-page5-wrapper .img-wrapper .page5-show-img {
    width: 100%;
  }
}
@media only screen and (max-width: 735px) {
  .index-page5-wrapper {
    margin-top: 20px;
    padding-bottom: 0;
    overflow: hidden;
  }
  .index-page5-wrapper .content article {
    text-align: center;
  }
  .index-page5-wrapper .content article .desc {
    font-size: 24px;
    line-height: 30px;
    margin-top: 24px;
  }
  .index-page5-wrapper .content article .detail {
    display: none;
  }
  .index-page5-wrapper .img-wrapper {
    width: 133%;
    margin-top: 5%;
    margin-left: -17%;
    height: auto;
  }
  .index-page5-wrapper .img-wrapper .page5-show-img {
    width: 100%;
  }
}
.index-page6-wrapper {
  position: relative;
  padding-top: 127px;
  padding-bottom: 134px;
}
.index-page6-wrapper .content article {
  text-align: left;
  display: inline-block;
  font-size: 0;
}
.index-page6-wrapper .content article .desc {
  margin-top: 20px;
  line-height: 76px;
}
.index-page6-wrapper .content article .desc .sub-desc {
  display: block;
}
.index-page6-wrapper .content article .detail {
  line-height: 1.5;
  margin-top: 48px;
}
.index-page6-wrapper .content article .func-wrapper {
  margin-top: 38px;
  width: 666px;
}
.index-page6-wrapper .content article .func-wrapper .func-item {
  position: relative;
  margin-bottom: 20px;
  margin-right: 20px;
  width: 308px;
  height: 200px;
  color: #fff;
  display: inline-block;
  font-size: 0;
  border-radius: 4px;
  border: 3px solid #353536;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #353536;
  cursor: pointer;
}
.index-page6-wrapper .content article .func-wrapper .func-item .func-icon {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-top: 33px;
}
.index-page6-wrapper .content article .func-wrapper .func-item .func-title {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.index-page6-wrapper .content article .func-wrapper .func-item:hover {
  border: 3px solid #4fc3ff;
}
.index-page6-wrapper .content .show-img-wrapper {
  position: relative;
  margin-top: 20px;
  width: 414px;
  height: 736px;
  overflow: hidden;
  border-radius: 8px;
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
.index-page6-wrapper .content .show-img-wrapper .show-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 344px;
}
.index-page6-wrapper .content .show-img-wrapper .show-img-actived {
  display: none;
  z-index: 2;
}
.index-page6-wrapper .content .show-img-wrapper .show-img-title {
  display: none;
}
.index-page6-wrapper .content .show-img-wrapper-pc {
  display: inline-block;
}
.index-page6-wrapper .content .show-img-wrapper-mobile {
  display: none;
}
.index-page6-wrapper .cover {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 1300px) {
  .index-page6-wrapper {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .index-page6-wrapper .content article {
    width: 460px;
  }
  .index-page6-wrapper .content article .desc {
    font-size: 32px;
    line-height: 42px;
    margin-top: 24px;
  }
  .index-page6-wrapper .content article .desc .sub-desc {
    display: block;
  }
  .index-page6-wrapper .content article .detail {
    margin-top: 28px;
  }
  .index-page6-wrapper .content article .func-wrapper {
    width: 416px;
  }
  .index-page6-wrapper .content article .func-wrapper .func-item {
    margin-bottom: 13px;
    margin-right: 13px;
    width: 192px;
    height: 125px;
  }
  .index-page6-wrapper .content article .func-wrapper .func-item .func-icon {
    display: block;
    width: 44px;
    height: 44px;
    margin-top: 12px;
  }
  .index-page6-wrapper .content article .func-wrapper .func-item .func-title {
    font-size: 22px;
    margin-top: 12px;
  }
  .index-page6-wrapper .content .show-img-wrapper {
    width: 222px;
    height: 473px;
    margin-top: 30px;
  }
  .index-page6-wrapper .content .show-img-wrapper .show-img {
    width: 220px;
  }
  .index-page6-wrapper .content .show-img-wrapper-pc {
    display: inline-block;
  }
  .index-page6-wrapper .content .show-img-wrapper-mobile {
    display: none;
  }
}
@media only screen and (max-width: 735px) {
  .index-page6-wrapper {
    padding-top: 60px;
    overflow: hidden;
  }
  .index-page6-wrapper .content article {
    text-align: center;
    width: 100%;
    padding: 0;
    flex: 1;
  }
  .index-page6-wrapper .content article .desc {
    font-size: 24px;
    line-height: 30px;
    margin-top: 24px;
  }
  .index-page6-wrapper .content article .detail {
    display: none;
  }
  .index-page6-wrapper .content article .func-wrapper {
    display: none;
  }
  .index-page6-wrapper .content .swiper-container {
    width: 100%;
    height: auto;
    margin-top: 5%;
  }
  .index-page6-wrapper .content .swiper-container .swiper-wrapper {
    height: 100%;
    width: 100%;
  }
  .index-page6-wrapper .content .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
  }
  .index-page6-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .show-img {
    position: relative;
    display: block;
    font-size: 0;
    margin: 0 auto;
    margin-top: 25px;
  }
  .index-page6-wrapper .content .swiper-container .swiper-wrapper .swiper-slide .show-img-title {
    width: 100%;
    display: list-item;
    font-size: 14px;
    color: #a4a4ad;
    list-style: disc;
    content: "";
    margin-top: 15px;
    text-align: center;
    margin: auto;
  }
  .index-page6-wrapper .content .swiper-container .swiper-wrapper .swiper-slide-1 {
    margin-left: 11.5%;
  }
  .index-page6-wrapper .content .show-img-wrapper-pc {
    display: none;
  }
  .index-page6-wrapper .content .show-img-wrapper-mobile {
    display: block;
  }
}
.index-page7-wrapper {
  position: relative;
  padding-bottom: 124px;
  padding-top: 100px;
}
.index-page7-wrapper .content article {
  text-align: left;
}
.index-page7-wrapper .content article .desc-wrapper {
  position: relative;
}
.index-page7-wrapper .content article .desc-wrapper .desc {
  margin-top: 20px;
  line-height: 76px;
  display: inline-block;
}
.index-page7-wrapper .content article .desc-wrapper .detail {
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
  line-height: 23px;
  margin-left: 198px;
}
.index-page7-wrapper .content .show-img-wrapper {
  position: relative;
  width: 1108px;
  height: 540px;
  margin-top: 60px;
  border-radius: 8px;
  box-shadow: 0 6px 15px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.index-page7-wrapper .content .show-img-wrapper .bg {
  width: 100%;
}
.index-page7-wrapper .content .show-img-wrapper .center-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 23%;
  z-index: 2;
  transform: scale(0);
  border-radius: 8px;
}
.index-page7-wrapper .content .show-img-wrapper .center-icon-actived {
  animation: springish;
  animation-duration: 2.38s;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.index-page7-wrapper .content .show-img-wrapper .fixer-icon {
  position: absolute;
  margin: auto;
  width: 50px;
  transform: scale(0);
  border-radius: 8px;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.index-page7-wrapper .content .show-img-wrapper .icon1 {
  top: 5.5%;
  left: 3.6%;
  width: 12.5%;
}
.index-page7-wrapper .content .show-img-wrapper .icon1-actived {
  animation: fly1;
  animation-delay: 0.3s;
  animation-duration: 2.4s;
}
.index-page7-wrapper .content .show-img-wrapper .icon2 {
  top: 42.59%;
  left: 6.3%;
  width: 16%;
}
.index-page7-wrapper .content .show-img-wrapper .icon2-actived {
  animation: fly2;
  animation-delay: 0s;
  animation-duration: 3s;
}
.index-page7-wrapper .content .show-img-wrapper .icon3 {
  top: 76.67%;
  left: 6.3%;
  width: 10%;
}
.index-page7-wrapper .content .show-img-wrapper .icon3-actived {
  animation: fly3;
  animation-delay: 0.1s;
  animation-duration: 2.6s;
}
.index-page7-wrapper .content .show-img-wrapper .icon4 {
  top: 22.22%;
  left: 21%;
  width: 15.4%;
}
.index-page7-wrapper .content .show-img-wrapper .icon4-actived {
  animation: fly4;
  animation-delay: 0.6s;
  animation-duration: 2.1s;
}
.index-page7-wrapper .content .show-img-wrapper .icon5 {
  top: 50%;
  left: 26%;
  width: 9.4%;
}
.index-page7-wrapper .content .show-img-wrapper .icon5-actived {
  animation: fly5;
  animation-delay: 0.3s;
  animation-duration: 2.4s;
}
.index-page7-wrapper .content .show-img-wrapper .icon6 {
  top: 75.93%;
  left: 22%;
  width: 9.4%;
}
.index-page7-wrapper .content .show-img-wrapper .icon6-actived {
  animation: fly6;
  animation-delay: 1.1s;
  animation-duration: 1.6s;
}
.index-page7-wrapper .content .show-img-wrapper .icon7 {
  top: 6.48%;
  left: 37%;
  width: 10%;
}
.index-page7-wrapper .content .show-img-wrapper .icon7-actived {
  animation: fly7;
  animation-delay: 0s;
  animation-duration: 2.8s;
}
.index-page7-wrapper .content .show-img-wrapper .icon8 {
  top: 4.63%;
  left: 51%;
  width: 13.4%;
}
.index-page7-wrapper .content .show-img-wrapper .icon8-actived {
  animation: fly8;
  animation-delay: 0.6s;
  animation-duration: 2.1s;
}
.index-page7-wrapper .content .show-img-wrapper .icon9 {
  top: 10.19%;
  left: 68%;
  width: 13%;
}
.index-page7-wrapper .content .show-img-wrapper .icon9-actived {
  animation: fly9;
  animation-delay: 0.6s;
  animation-duration: 2.1s;
}
.index-page7-wrapper .content .show-img-wrapper .icon10 {
  top: 8.15%;
  left: 86%;
  width: 10.7%;
}
.index-page7-wrapper .content .show-img-wrapper .icon10-actived {
  animation: fly10;
  animation-delay: 0s;
  animation-duration: 3s;
}
.index-page7-wrapper .content .show-img-wrapper .icon11 {
  top: 37.04%;
  left: 66.7%;
  width: 10.5%;
}
.index-page7-wrapper .content .show-img-wrapper .icon11-actived {
  animation: fly11;
  animation-delay: 0s;
  animation-duration: 3s;
}
.index-page7-wrapper .content .show-img-wrapper .icon12 {
  top: 35.19%;
  left: 82.6%;
  width: 9.3%;
}
.index-page7-wrapper .content .show-img-wrapper .icon12-actived {
  animation: fly12;
  animation-delay: 0s;
  animation-duration: 2.9s;
}
.index-page7-wrapper .content .show-img-wrapper .icon13 {
  top: 59.26%;
  left: 72.5%;
  width: 10%;
}
.index-page7-wrapper .content .show-img-wrapper .icon13-actived {
  animation: fly13;
  animation-delay: 0.7s;
  animation-duration: 2s;
}
.index-page7-wrapper .content .show-img-wrapper .icon14 {
  top: 77.78%;
  left: 42%;
  width: 9.3%;
}
.index-page7-wrapper .content .show-img-wrapper .icon14-actived {
  animation: fly14;
  animation-delay: 1s;
  animation-duration: 1.7s;
}
.index-page7-wrapper .content .show-img-wrapper .icon15 {
  top: 75.93%;
  left: 57%;
  width: 12.1%;
}
.index-page7-wrapper .content .show-img-wrapper .icon15-actived {
  animation: fly15;
  animation-delay: 0.6s;
  animation-duration: 2.1s;
}
.index-page7-wrapper .content .show-img-wrapper .icon16 {
  top: 66.67%;
  left: 84.7%;
  width: 12.3%;
}
.index-page7-wrapper .content .show-img-wrapper .icon16-actived {
  animation: fly16;
  animation-delay: 0.1s;
  animation-duration: 2.6s;
}
.index-page7-wrapper .content .show-img-wrapper .icon-turn {
  animation: turn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes springish {
  0.00% {
    transform: scale(0.005);
  }
  9.87% {
    transform: scale(1.4218);
  }
  21.13% {
    transform: scale(0.8347);
  }
  32.40% {
    transform: scale(1.0648);
  }
  43.67% {
    transform: scale(0.9746);
  }
  54.93% {
    transform: scale(1.0099);
  }
  66.20% {
    transform: scale(0.9961);
  }
  77.47% {
    transform: scale(1.0015);
  }
  88.73% {
    transform: scale(0.9994);
  }
  100.00% {
    transform: scale(1.0002);
  }
}
@keyframes turn {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, 5px, 0);
  }
  50% {
    transform: translate3d(0, 0, 0);
  }
  75% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fly1 {
  0.00% {
    transform: translate3d(319%, 126.5%, 0) scale(0);
  }
  21% {
    transform: translate3d(319%, 126.5%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(-6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(-0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(-0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(-0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly2 {
  0.00% {
    transform: translate3d(236%, 7%, 0) scale(0);
  }
  20.00% {
    transform: translate3d(236%, 7%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(-6.31px, 0, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(2.47px, 0, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(-0.97px, 0, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(0.38px, 0, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(-0.15px, 0, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(0.06px, 0, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(-0.02px, 0, 0) scale(1.0002);
  }
}
@keyframes fly3 {
  0% {
    transform: translate3d(380.76%, -180.91%, 0) scale(0);
  }
  21% {
    transform: translate3d(380.76%, -180.91%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly4 {
  0% {
    transform: translate3d(138.33%, 65.38%, 0) scale(0);
  }
  21% {
    transform: translate3d(138.33%, 65.38%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(-6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(-0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(-0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(-0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly5 {
  0% {
    transform: translate3d(204.77%, -50%, 0) scale(0);
  }
  21% {
    transform: translate3d(204.77%, -50%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(-6.31px, 0, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(2.47px, 0, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(-0.97px, 0, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(0.38px, 0, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(-0.15px, 0, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(0.06px, 0, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(-0.02px, 0, 0) scale(1.0002);
  }
}
@keyframes fly6 {
  0% {
    transform: translate3d(247.23%, -212.79%, 0) scale(0);
  }
  21% {
    transform: translate3d(247.23%, -212.79%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly7 {
  0% {
    transform: translate3d(77.01%, 161.71%, 0) scale(0);
  }
  21% {
    transform: translate3d(77.01%, 161.71%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(-6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(-0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(-0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(-0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly8 {
  0% {
    transform: translate3d(-57.46%, 125%, 0) scale(0);
  }
  21% {
    transform: translate3d(-57.46%, 125%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(0, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(0, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(0, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(0, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly9 {
  0% {
    transform: translate3d(-189.94%, 110.45%, 0) scale(0);
  }
  21% {
    transform: translate3d(-189.94%, 110.45%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly10 {
  0% {
    transform: translate3d(-386.81%, 135.25%, 0) scale(0);
  }
  21% {
    transform: translate3d(-386.81%, 135.25%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly11 {
  0% {
    transform: translate3d(-211.73%, 18.63%, 0) scale(0);
  }
  21% {
    transform: translate3d(-211.73%, 18.63%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly12 {
  0% {
    transform: translate3d(-402.85%, 8.82%, 0) scale(0);
  }
  21% {
    transform: translate3d(-402.85%, 8.82%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly13 {
  0% {
    transform: translate3d(-273.78%, -90.65%, 0) scale(0);
  }
  21% {
    transform: translate3d(-273.78%, -90.65%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly14 {
  0% {
    transform: translate3d(36.59%, -191.51%, 0) scale(0);
  }
  21% {
    transform: translate3d(36.59%, -191.51%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly15 {
  0% {
    transform: translate3d(-107.67%, -172.81%, 0) scale(0);
  }
  21% {
    transform: translate3d(-107.67%, -172.81%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@keyframes fly16 {
  0% {
    transform: translate3d(-331.68%, -116.18%, 0) scale(0);
  }
  21% {
    transform: translate3d(-331.68%, -116.18%, 0) scale(0);
  }
  32.62% {
    transform: translate3d(6.31px, -6.31px, 0) scale(1.0631);
  }
  43.85% {
    transform: translate3d(-2.47px, 2.47px, 0) scale(0.9753);
  }
  55.08% {
    transform: translate3d(0.97px, -0.97px, 0) scale(1.0097);
  }
  66.31% {
    transform: translate3d(-0.38px, 0.38px, 0) scale(0.9962);
  }
  77.54% {
    transform: translate3d(0.15px, -0.15px, 0) scale(1.0015);
  }
  88.77% {
    transform: translate3d(-0.06px, 0.06px, 0) scale(0.9994);
  }
  100.00% {
    transform: translate3d(0.02px, -0.02px, 0) scale(1.0002);
  }
}
@media only screen and (max-width: 1300px) {
  .index-page7-wrapper {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .index-page7-wrapper .content article .desc-wrapper .desc {
    font-size: 32px;
    line-height: 42px;
    margin-top: 24px;
  }
  .index-page7-wrapper .content article .desc-wrapper .detail {
    font-size: 14px;
    margin-top: 12px;
    line-height: 14px;
    margin-left: 123px;
  }
  .index-page7-wrapper .content .show-img-wrapper {
    width: 692px;
    height: 337px;
    margin-top: 37px;
  }
  .index-page7-wrapper .content .show-img-wrapper .show-img-wrapper {
    width: 692px;
    height: 337px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page7-wrapper {
    padding-top: 0;
  }
  .index-page7-wrapper .content article {
    text-align: center;
  }
  .index-page7-wrapper .content .show-img-wrapper {
    width: 92%;
    height: auto;
    margin: 20px 4% 0;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
  }
  .index-page7-wrapper .content .show-img-wrapper .bg {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
  }
}
.index-page8-wrapper .content {
  margin: auto;
  padding-top: 120px;
  padding-bottom: 170px;
}
.index-page8-wrapper .content article {
  text-align: left;
}
.index-page8-wrapper .content article .desc {
  margin-top: 20px;
  line-height: 76px;
}
.index-page8-wrapper .content article .detail {
  width: 770px;
  margin-top: 40px;
}
.index-page8-wrapper .data-wrap {
  font-size: 0;
}
.index-page8-wrapper .data-wrap .data-item {
  display: inline-block;
  padding-top: 110px;
  padding-bottom: 10px;
  width: 420px;
}
.index-page8-wrapper .data-wrap .data-item .data-title {
  font-size: 24px;
  line-height: 24px;
  color: #63636e;
  white-space: pre;
}
.index-page8-wrapper .data-wrap .data-item .data-detail {
  margin-top: 30px;
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  white-space: pre;
  font-weight: 500;
  vertical-align: text-bottom;
  letter-spacing: 1px;
}
.index-page8-wrapper .data-wrap .data-item .data-detail .unit {
  font-size: 30px;
  margin-left: 3px;
  vertical-align: text-bottom;
}
.index-page8-wrapper .data-wrap .data-item .data-line {
  width: 480px;
  height: 8px;
}
.index-page8-wrapper .data-wrap .data-item .data-line .progress {
  margin-top: 5px;
}
.index-page8-wrapper .data-wrap .data-item .data-line .activity {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #1b90fe, #24cbfb);
}
.index-page8-wrapper .data-wrap .data-item .data-line .activity-actived {
  width: 24px;
}
.index-page8-wrapper .data-wrap .data-item .data-line .pv {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #1b90fe, #24cbfb);
}
.index-page8-wrapper .data-wrap .data-item .data-line .pv-actived {
  width: 560px;
}
.index-page8-wrapper .data-wrap .data-item .data-line .wxfans {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #1b90fe, #24cbfb);
}
.index-page8-wrapper .data-wrap .data-item .data-line .wxfans-actived {
  width: 320px;
}
.index-page8-wrapper .data-wrap .data-item .data-line .conversion {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #1b90fe, #24cbfb);
}
.index-page8-wrapper .data-wrap .data-item .data-line .conversion-actived {
  width: 320px;
}
.index-page8-wrapper .data-wrap .data-item:nth-child(even) {
  width: 560px;
}
@media only screen and (max-width: 1300px) {
  .index-page8-wrapper .content {
    margin: auto;
    padding-top: 80px;
    padding-bottom: 140px;
  }
  .index-page8-wrapper .content article .desc {
    font-size: 32px;
    line-height: 42px;
    margin-top: 24px;
  }
  .index-page8-wrapper .content article .detail {
    width: 618px;
    margin-top: 15px;
  }
  .index-page8-wrapper .data-wrap .data-item {
    padding-top: 68px;
    padding-bottom: 6px;
    width: 262px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-title {
    font-size: 16px;
    line-height: 16px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-detail {
    margin-top: 19px;
    font-size: 38px;
    line-height: 38px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-detail .unit {
    font-size: 18px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line {
    width: 300px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .activity-actived {
    width: 15px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .pv-actived {
    width: 350px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .wxfans-actived {
    width: 200px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .conversion-actived {
    width: 200px;
  }
  .index-page8-wrapper .data-wrap .data-item:nth-child(even) {
    width: 350px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page8-wrapper .content {
    margin: auto;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .index-page8-wrapper .content article {
    text-align: center;
  }
  .index-page8-wrapper .content article .detail {
    display: none;
  }
  .index-page8-wrapper .data-wrap {
    padding: 0 4%;
  }
  .index-page8-wrapper .data-wrap .data-item {
    padding-top: 5%;
    padding-bottom: 7%;
    display: inline-block;
    vertical-align: bottom;
  }
  .index-page8-wrapper .data-wrap .data-item .data-title {
    font-size: 14px;
    line-height: 14px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-detail {
    font-size: 32px;
    line-height: 32px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-detail .unit {
    font-size: 18px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line {
    width: 100%;
    height: 6px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .activity-actived {
    width: 15px;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .pv-actived {
    width: 100%;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .wxfans-actived {
    width: 100%;
  }
  .index-page8-wrapper .data-wrap .data-item .data-line .conversion-actived {
    width: 100%;
  }
  .index-page8-wrapper .data-wrap .data-item:nth-child(1) {
    width: 40%;
  }
  .index-page8-wrapper .data-wrap .data-item:nth-child(2) {
    width: 58%;
  }
  .index-page8-wrapper .data-wrap .data-item:nth-child(3) {
    width: 48%;
  }
  .index-page8-wrapper .data-wrap .data-item:nth-child(4) {
    width: 30%;
    margin-left: 20%;
  }
}
.index-page9-wrapper {
  overflow: hidden;
  padding-top: 130px;
}
.index-page9-wrapper .content {
  margin: auto;
}
.index-page9-wrapper article {
  text-align: left;
  padding-bottom: 78px;
}
.index-page9-wrapper article .desc-wrapper .desc {
  margin-top: 20px;
  line-height: 76px;
}
.index-page9-wrapper article .desc-wrapper .detail {
  margin-top: 40px;
}
.index-page9-wrapper .show-img-wrapper {
  width: 1108px;
  padding-bottom: 100px;
  min-height: 518px;
  position: relative;
  margin: auto;
}
.index-page9-wrapper .show-img-wrapper .show-img-box {
  position: absolute;
  width: 580px;
  text-align: center;
}
.index-page9-wrapper .show-img-wrapper .show-img-box img {
  height: 518px;
}
.index-page9-wrapper .show-img-wrapper .show-img-box li {
  margin-top: -60px;
  margin: auto;
  width: 110px;
  font-size: 14px;
  color: #a4a4ad;
  list-style: disc;
  content: "";
}
.index-page9-wrapper .show-img-wrapper .show-img-box #show-img-cover {
  width: 110px;
}
.index-page9-wrapper .show-img-wrapper .show-img-box #show-img-banner {
  width: 110px;
}
.index-page9-wrapper .show-img-wrapper #show-img-box-left {
  top: 0;
  left: -54px;
  bottom: 0;
  margin: auto;
}
.index-page9-wrapper .show-img-wrapper #show-img-box-center {
  top: 0;
  left: 272px;
  bottom: 0;
  margin: auto;
}
.index-page9-wrapper .show-img-wrapper #show-img-box-right {
  top: 0;
  left: 595px;
  bottom: 0;
  margin: auto;
}
.index-page9-wrapper .show-img-wrapper-pc {
  display: block;
}
.index-page9-wrapper .show-img-wrapper-mobile {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .index-page9-wrapper {
    overflow: hidden;
    padding-top: 30px;
  }
  .index-page9-wrapper article {
    padding-bottom: 49px;
  }
  .index-page9-wrapper article .desc-wrapper .desc {
    font-size: 32px;
    line-height: 36px;
    margin-top: 24px;
  }
  .index-page9-wrapper article .desc-wrapper .detail {
    margin-top: 10px;
  }
  .index-page9-wrapper .show-img-wrapper {
    width: 692px;
    padding-bottom: 62px;
    min-height: 324px;
  }
  .index-page9-wrapper .show-img-wrapper .show-img-box {
    width: 362px;
  }
  .index-page9-wrapper .show-img-wrapper .show-img-box img {
    height: 324px;
  }
  .index-page9-wrapper .show-img-wrapper .show-img-box li {
    font-size: 12px;
    margin-top: -37px;
    padding-left: 6px;
  }
  .index-page9-wrapper .show-img-wrapper #show-img-box-left {
    left: -34px;
  }
  .index-page9-wrapper .show-img-wrapper #show-img-box-center {
    left: 170px;
  }
  .index-page9-wrapper .show-img-wrapper #show-img-box-right {
    left: 372px;
  }
  .index-page9-wrapper .show-img-wrapper-pc {
    display: block;
  }
  .index-page9-wrapper .show-img-wrapper-mobile {
    display: none;
  }
}
@media only screen and (max-width: 735px) {
  .index-page9-wrapper {
    overflow: hidden;
    padding-top: 30px;
  }
  .index-page9-wrapper .content {
    padding-bottom: 60px;
  }
  .index-page9-wrapper article {
    text-align: center;
    padding-bottom: 49px;
  }
  .index-page9-wrapper article .desc-wrapper .detail {
    display: none;
  }
  .index-page9-wrapper .swiper-container {
    padding: 0;
    width: 100%;
  }
  .index-page9-wrapper .swiper-container .swiper-wrapper {
    width: 100%;
  }
  .index-page9-wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    text-align: center;
  }
  .index-page9-wrapper .swiper-container .swiper-wrapper .swiper-slide img {
    width: 120%;
    height: auto;
    margin-bottom: -10%;
    margin-left: -10%;
  }
  .index-page9-wrapper .swiper-container .swiper-wrapper .swiper-slide li {
    list-style: disc;
    display: list-item;
    margin-top: 5%;
    margin-bottom: 6%;
    font-size: 12px;
    padding: 0;
    color: #a4a4a4;
  }
  .index-page9-wrapper .swiper-container .swiper-wrapper #show-img-box-left {
    margin-left: 15%;
  }
  .index-page9-wrapper .show-img-wrapper-pc {
    display: none;
  }
  .index-page9-wrapper .show-img-wrapper-mobile {
    display: block;
  }
}
.index-page10-wrapper .content {
  margin: auto;
  padding-top: 150px;
  padding-bottom: 170px;
}
.index-page10-wrapper .content article {
  text-align: left;
}
.index-page10-wrapper .content article .desc {
  margin-top: 20px;
  line-height: 76px;
}
.index-page10-wrapper .board {
  position: relative;
  width: 1108px;
  height: 500px;
  margin: 0 auto;
  margin-top: 97px;
  padding-top: 51px;
  padding-left: 60px;
  background: #17171d;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.index-page10-wrapper .base-func {
  width: 950px;
  height: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.index-page10-wrapper .base-func .func-type-wrapper {
  width: 100%;
  position: relative;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item {
  display: inline-block;
  padding-bottom: 20px;
  border-bottom: 1px solid #7d7d7d;
  margin-left: 60px;
  font-size: 18px;
  line-height: 18px;
  color: #7d7d7d;
  cursor: pointer;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-type-icon {
  width: 19px;
  height: 18px;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-icon1 {
  background-image: url(/images/page10_1_normal.fdd93.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-icon1.active {
  background-image: url(/images/page10_1_active.d7751.png);
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-icon2 {
  background-image: url(/images/page10_2_normal.6791a.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-icon2.active {
  background-image: url(/images/page10_2_active.48275.png);
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-icon3 {
  background-image: url(/images/page10_3_normal.47dc3.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-icon3.active {
  background-image: url(/images/page10_3_active.1d764.png);
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-type-title {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item:first-child {
  margin-left: 0;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item:hover {
  border-bottom: 1px solid #4fc3ff;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item-selected {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.index-page10-wrapper .base-func .func-type-wrapper .func-type-item-selected:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.index-page10-wrapper .base-func .func-list-wrapper {
  display: none;
  position: relative;
  margin-top: 80px;
}
.index-page10-wrapper .base-func .func-list-wrapper ul {
  list-style: none;
  margin: 0;
  display: inline-block;
  margin-right: 118px;
  vertical-align: top;
}
.index-page10-wrapper .base-func .func-list-wrapper ul li {
  font-size: 16px;
  color: #bcbcbc;
  margin-bottom: 44px;
  transition-duration: 0.6s;
  -webkit-transition-duration: 0.6s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul li .circle {
  width: 8px;
  height: 8px;
  background: #7d7d7d;
  border-radius: 4px;
  margin-right: 20px;
  display: inline-block;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos1 {
  transition-delay: 0.05s;
  -webkit-transition-delay: 0.05s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos2 {
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos3 {
  transition-delay: 0.15s;
  -webkit-transition-delay: 0.15s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos4 {
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos5 {
  transition-delay: 0.25s;
  -webkit-transition-delay: 0.25s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos6 {
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos7 {
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos8 {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.index-page10-wrapper .base-func .func-list-wrapper ul .pos9 {
  transition-delay: 0.45s;
  -webkit-transition-delay: 0.45s;
}
.index-page10-wrapper .base-func .func-list-wrapper-pc {
  display: block;
}
.index-page10-wrapper .base-func .func-list-wrapper-mobile {
  display: none;
}
.index-page10-wrapper .base-func .show-list {
  display: block;
}
.index-page10-wrapper .base-func .hide-list {
  display: none;
}
.index-page10-wrapper .more-func-mobile {
  display: none;
}
.index-page10-wrapper .more-func-pc {
  display: block;
}
.index-page10-wrapper .more-func {
  position: absolute;
  top: 0;
  right: 0;
  width: 158px;
  height: 100%;
  font-size: 0;
  overflow: hidden;
  cursor: pointer;
}
.index-page10-wrapper .more-func .more-func-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 460px;
  animation: bgAnim 300s linear infinite;
}
.index-page10-wrapper .more-func .go-pannel {
  position: absolute;
  left: 31px;
  bottom: 75px;
}
.index-page10-wrapper .more-func .go-pannel .more-arrow {
  width: 66px;
  height: 66px;
  font-size: 0;
  display: block;
}
.index-page10-wrapper .more-func .go-pannel .more-title {
  font-size: 30px;
  color: #fff;
  margin-top: 13px;
}
@keyframes bgAnim {
  0% {
    transform: translate(0, 0);
  }
  37.5% {
    transform: translate(-65%, 0);
  }
  50% {
    transform: translate(-65%, -17%);
  }
  87.5% {
    transform: translate(0, -17%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 1300px) {
  .index-page10-wrapper .content {
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .index-page10-wrapper .content article .desc {
    font-size: 32px;
    line-height: 36px;
    margin-top: 24px;
  }
  .index-page10-wrapper .board {
    width: 692px;
    height: 330px;
    margin-top: 40px;
    padding-top: 31px;
    padding-left: 37px;
  }
  .index-page10-wrapper .base-func {
    width: 593px;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item {
    padding-bottom: 12px;
    margin-left: 37px;
    font-size: 12px;
    line-height: 12px;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-type-icon {
    width: 12px;
    height: 11px;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-type-title {
    margin-left: 6px;
  }
  .index-page10-wrapper .base-func .func-list-wrapper {
    margin-top: 50px;
  }
  .index-page10-wrapper .base-func .func-list-wrapper ul {
    margin-right: 51px;
  }
  .index-page10-wrapper .base-func .func-list-wrapper ul li {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .index-page10-wrapper .base-func .func-list-wrapper ul li .circle {
    width: 6px;
    height: 6px;
    margin-right: 12px;
  }
  .index-page10-wrapper .base-func .func-list-wrapper-pc {
    display: block;
  }
  .index-page10-wrapper .base-func .func-list-wrapper-mobile {
    display: none;
  }
  .index-page10-wrapper .more-func-mobile {
    display: none;
  }
  .index-page10-wrapper .more-func-pc {
    display: block;
  }
  .index-page10-wrapper .more-func {
    width: 98px;
  }
  .index-page10-wrapper .more-func .more-func-bg {
    width: 287px;
  }
  .index-page10-wrapper .more-func .go-pannel {
    left: 19px;
    bottom: 47px;
  }
  .index-page10-wrapper .more-func .go-pannel .more-arrow {
    width: 41px;
    height: 41px;
  }
  .index-page10-wrapper .more-func .go-pannel .more-title {
    font-size: 18px;
    margin-top: 8px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page10-wrapper .content {
    margin: auto;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .index-page10-wrapper .content article {
    text-align: center;
  }
  .index-page10-wrapper .content article .desc {
    font-size: 24px;
    line-height: 30px;
    margin-top: 24px;
  }
  .index-page10-wrapper .board {
    width: auto;
    height: auto;
    margin: 5% 4% 0;
    padding: 8% 0;
    height: 400px;
  }
  .index-page10-wrapper .base-func {
    width: 100%;
  }
  .index-page10-wrapper .base-func .func-type-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item {
    font-size: 10px;
    line-height: 1;
    margin: auto;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-type-icon {
    width: 10px;
    height: 9px;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item .func-type-title {
    margin: auto;
  }
  .index-page10-wrapper .base-func .func-type-wrapper .func-type-item:first-child {
    margin: auto;
  }
  .index-page10-wrapper .base-func .func-list-wrapper {
    margin-top: 8%;
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .index-page10-wrapper .base-func .func-list-wrapper ul {
    flex: 1;
    margin-right: 0;
  }
  .index-page10-wrapper .base-func .func-list-wrapper ul li {
    font-size: 10px;
    margin-bottom: 12%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .index-page10-wrapper .base-func .func-list-wrapper ul li .circle {
    width: 3px;
    height: 3px;
    margin-right: 6px;
  }
  .index-page10-wrapper .base-func .func-list-wrapper-pc {
    display: none;
  }
  .index-page10-wrapper .base-func .func-list-wrapper-mobile {
    display: block;
  }
  .index-page10-wrapper .more-func-pc {
    display: none;
  }
  .index-page10-wrapper .more-func-mobile {
    display: block;
    padding-top: 17%;
    width: 92%;
    margin: 4%;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
  }
  .index-page10-wrapper .more-func {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .index-page10-wrapper .more-func .more-func-bg {
    width: 100%;
    top: -135%;
    animation: none;
    overflow: hidden;
  }
  .index-page10-wrapper .more-func .go-pannel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .index-page10-wrapper .more-func .go-pannel .more-arrow {
    width: 10%;
    height: auto;
  }
  .index-page10-wrapper .more-func .go-pannel .more-title {
    margin-left: 4%;
    margin-top: 0;
    font-size: 16px;
  }
}
.index-page11-wrapper {
  background: #121217;
  position: relative;
  z-index: 1;
}
.index-page11-wrapper .content {
  position: relative;
  z-index: 1;
  margin: auto;
  padding-bottom: 96px;
}
.index-page11-wrapper .content article {
  text-align: left;
}
.index-page11-wrapper .content article .title {
  padding-top: 105px;
  color: #666666;
}
.index-page11-wrapper .content article .desc {
  margin-top: 20px;
  line-height: 76px;
  color: #333333 !important;
}
.index-page11-wrapper .content article .detail {
  margin-top: 40px;
  color: #999999;
}
.index-page11-wrapper .evaluate-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 406px;
  /* background: #aaaaaa; */
  background-image: url(/images/page11-1.e041f.jpg);
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.index-page11-wrapper .photographer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 630px;
  /* background: #0b97d8; */
  background-image: url(/images/page11-2.5d676.jpg);
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.index-page11-wrapper .swiper-container {
  position: relative;
  width: 1108px;
  height: 630px;
  margin: auto;
}
.index-page11-wrapper .swiper-container .swiper-wrapper {
  margin: auto;
  position: relative;
}
.index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide {
  text-align: center;
  position: absolute;
  top: 196px;
  left: 0;
  right: 0;
}
.index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  vertical-align: middle;
  background: #000000;
}
.index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content {
  display: inline-block;
  width: 580px;
  height: 130px;
  padding-top: 5px;
  margin-left: 36px;
  text-align: left;
  vertical-align: middle;
}
.index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info .pg-nickname {
  display: inline-block;
  font-size: 24px;
  color: #ffffff;
  line-height: 24px;
}
.index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info .pg-title {
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}
.index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-assess {
  margin-top: 15px;
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  line-height: 42px;
}
.index-page11-wrapper .swiper-container .pg-arrow {
  position: absolute;
  top: 240px;
  margin: auto;
  width: 24px;
  height: 42px;
  cursor: pointer;
  z-index: 1;
}
.index-page11-wrapper .swiper-container .pg-arrow-left {
  left: 0;
}
.index-page11-wrapper .swiper-container .pg-arrow-right {
  right: 0;
}
.index-page11-wrapper .swiper-pagination-fraction,
.index-page11-wrapper .swiper-pagination-custom,
.index-page11-wrapper .swiper-container-horizontal > .swiper-pagination-bullets {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 200px;
  margin: auto;
  cursor: pointer;
  text-align: center;
}
.index-page11-wrapper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 100%;
  background: #ffffff;
  opacity: 0.6;
}
.index-page11-wrapper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}
.index-page11-wrapper .swiper-container-horizontal > .swiper-pagination-bullets,
.index-page11-wrapper .swiper-pagination-custom,
.index-page11-wrapper .swiper-pagination-fraction {
  z-index: 1;
}
@media only screen and (max-width: 1300px) {
  .index-page11-wrapper .content {
    padding-bottom: 60px;
  }
  .index-page11-wrapper .content article .title {
    padding-top: 65px;
    color: #666666;
  }
  .index-page11-wrapper .content article .desc {
    font-size: 32px;
    line-height: 36px;
    margin-top: 24px;
  }
  .index-page11-wrapper .content article .detail {
    margin-top: 15px;
  }
  .index-page11-wrapper .evaluate-bg {
    height: 253px;
  }
  .index-page11-wrapper .photographer {
    height: 393px;
  }
  .index-page11-wrapper .swiper-container {
    width: 692px;
    height: 393px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper {
    height: 100%;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide {
    padding-top: 122px;
    top: 0;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-avatar {
    width: 81px;
    height: 81px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content {
    width: 362px;
    height: 81px;
    margin-left: 22px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info .pg-nickname {
    font-size: 15px;
    line-height: 15px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info .pg-title {
    font-size: 15px;
    line-height: 15px;
    height: 12px;
    margin-left: 18px;
    padding-left: 18px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-assess {
    margin-top: 9px;
    font-size: 18px;
    line-height: 36px;
  }
  .index-page11-wrapper .swiper-container .pg-arrow {
    top: 150px;
    width: 15px;
    height: 26px;
  }
  .index-page11-wrapper .swiper-pagination-fraction,
  .index-page11-wrapper .swiper-pagination-custom,
  .index-page11-wrapper .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 125px;
  }
  .index-page11-wrapper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page11-wrapper .content {
    padding-bottom: 7%;
  }
  .index-page11-wrapper .content article {
    padding: 0 10%;
  }
  .index-page11-wrapper .content article .title {
    padding-top: 12%;
  }
  .index-page11-wrapper .content article .desc {
    margin-top: 2%;
    line-height: 2;
  }
  .index-page11-wrapper .content article .detail {
    margin-top: 2%;
  }
  .index-page11-wrapper .evaluate-bg {
    height: auto;
    padding-top: 45%;
  }
  .index-page11-wrapper .photographer {
    height: 255px;
  }
  .index-page11-wrapper .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide {
    width: 100%;
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-avatar {
    width: 40px;
    height: 40px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content {
    text-align: center;
    width: 100%;
    padding: 0;
    margin-left: 0;
    margin-top: 10px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info {
    display: flex;
    justify-content: center;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info .pg-nickname {
    font-size: 13px;
    line-height: 13px;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-info .pg-title {
    font-size: 13px;
    line-height: 13px;
    height: 12px;
    margin-left: 4%;
    padding-left: 4%;
  }
  .index-page11-wrapper .swiper-container .swiper-wrapper .page-11-swiper-slide .pg-content .pg-assess {
    margin: 20px 10% 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }
  .index-page11-wrapper .swiper-container .pg-arrow {
    display: none;
  }
}
.index-page12-wrapper {
  position: relative;
}
.index-page12-wrapper .bg {
  height: 900px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.index-page12-wrapper .bg .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper {
  margin: auto;
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper .page12-swiper-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper .page12-swiper-slide .bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper .page12-swiper-slide .bg-img1 {
  background-image: url(/images/page12_bg1.50c09.jpg);
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper .page12-swiper-slide .bg-img2 {
  background-image: url(/images/page12_bg2.45cab.jpg);
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper .page12-swiper-slide .bg-img3 {
  background-image: url(/images/page12_bg3.803ef.jpg);
}
.index-page12-wrapper .bg .swiper-container .page12-swiper-wrapper .page12-swiper-slide .bg-img4 {
  background-image: url(/images/page12_bg4.9ca00.jpg);
}
.index-page12-wrapper .content {
  margin: auto;
  padding-top: 110px;
  height: 667px;
}
.index-page12-wrapper .content article {
  text-align: center;
}
.index-page12-wrapper .content article .title {
  padding-top: 165px;
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  color: #63636e;
}
.index-page12-wrapper .content article .desc {
  margin-top: 40px;
}
.index-page12-wrapper .content a {
  text-decoration: none;
}
.index-page12-wrapper .content .use-btn {
  width: 200px;
  height: 60px;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 60px;
  text-align: center;
  margin: 0 auto;
  margin-top: 83px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #409fea, #0b78ce);
}
.index-page12-wrapper .content .use-btn:hover {
  background: linear-gradient(to bottom, #5ab7ff, #1786dd);
}
@media only screen and (max-width: 1300px) {
  .index-page12-wrapper .bg {
    height: 600px;
  }
  .index-page12-wrapper .content {
    height: 330px;
  }
  .index-page12-wrapper .content article .title {
    padding-top: 43px;
    font-size: 17px;
    line-height: 17px;
  }
  .index-page12-wrapper .content article .desc {
    margin-top: 25px;
  }
  .index-page12-wrapper .content .use-btn {
    width: 124px;
    height: 37px;
    font-size: 13px;
    line-height: 37px;
    margin-top: 52px;
  }
}
@media only screen and (max-width: 735px) {
  .index-page12-wrapper .bg {
    height: auto;
    bottom: 0;
  }
  .index-page12-wrapper .content {
    height: auto;
    padding-top: 30%;
  }
  .index-page12-wrapper .content article {
    padding-bottom: 10%;
  }
  .index-page12-wrapper .content article .title {
    padding-top: 0;
    font-size: 17px;
    line-height: 17px;
  }
  .index-page12-wrapper .content article .desc {
    font-size: 32px;
    line-height: 36px;
    margin-top: 24px;
  }
  .index-page12-wrapper .content a {
    display: block;
    width: 124px;
    height: 37px;
    font-size: 13px;
    line-height: 37px;
    margin: auto;
    margin-top: 10%;
    margin-bottom: 40%;
  }
  .index-page12-wrapper .content a .use-btn {
    width: 124px;
    height: 37px;
    font-size: 13px;
    line-height: 37px;
  }
}
