@charset "UTF-8";
:root {
  --animate-duration: 0.3s !important;
}

@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation-duration: 0.8s;
  animation-name: fadeOutRight;
  mix-blend-mode: normal;
}

::view-transition-new(root) {
  animation-duration: 0.8s;
  animation-name: fadeInLeft;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.205);
  mix-blend-mode: normal;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 0.1rem;
}

::-webkit-scrollbar:horizontal {
  height: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #584268;
}

::-webkit-scrollbar-track {
  background-color: white;
}

.fp-overflow::-webkit-scrollbar {
  background-color: transparent;
  width: 0px !important;
  -webkit-appearance: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  user-select: none;
}

html,
body,
#app {
  height: 100%;
}

body {
  font-family: "SYST", "Arial", "Helvetica", sans-serif;
  overflow: hidden; /* 防止页面滚动 */
}

body {
  overscroll-behavior: none;
}

.fp-overflow {
  height: 100%;
}

[v-cloak] {
  display: none;
}

@font-face {
  font-family: "SYST";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/SourceHanSerifCN-Light.otf");
  font-weight: 200;
}
@font-face {
  font-family: "SYST";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/SourceHanSerifCN-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: "SYST";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/SourceHanSerifCN-Bold.otf");
  font-weight: bold;
}
@font-face {
  font-family: "SYHT";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/SourceHanSansSC-Light.otf");
  font-weight: 200;
}
@font-face {
  font-family: "SYHT";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/SourceHanSansSC-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: "SYHT";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/SourceHanSansSC-Bold.otf");
  font-weight: bold;
}
@font-face {
  font-family: "FZLTY";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/FZLTY.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "FZLY";
  src: url("https://media.zlongame.com/media/pictures/cn/ymxx/officalSite/fonts/FZLY.TTF");
  font-weight: normal;
}
@keyframes mountainMove {
  0% {
    transform: translateX(100vw) scale(var(--zoom, 1));
  }
  100% {
    transform: translateX(-100px) scale(var(--zoom, 1));
  }
}
@keyframes mouseMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.05rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateCenter {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tabMove {
  0% {
    transform: translateY(0.1rem) scale(1);
  }
  50% {
    transform: translateY(0.1rem) scale(1.5);
  }
  100% {
    transform: translateY(0.1rem) scale(1);
  }
}
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 0.05rem snow, 0 -0.1rem 0.2rem #7c6294, -0.1rem 0.1rem 0.2rem #9b56dc, 0.1rem 0.1rem 0.2rem #7c6294;
  }
  33% {
    text-shadow: 0 0 0.05rem snow, 0 -0.1rem 0.2rem #8c41d0, -0.1rem 0.1rem 0.2rem #7c6294, 0.1rem 0.1rem 0.2rem #8c41d0;
  }
  66% {
    text-shadow: 0 0 0.05rem snow, 0 -0.1rem 0.2rem #9b56dc, -0.1rem 0.1rem 0.2rem #8c41d0, 0.1rem 0.1rem 0.2rem #9b56dc;
  }
}
@keyframes slide-out {
  from {
    left: 0%;
    z-index: 10000;
  }
  to {
    left: 100%;
    z-index: 10000;
  }
}
@keyframes slide-in {
  from {
    left: -40%;
  }
  to {
    left: 0%;
  }
}
@keyframes scaleX-out {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

#app {
  overflow: hidden;
}
#app .common-btn {
  position: relative;
  background-color: white;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
#app .common-btn .common-btn-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_bg.png");
  opacity: 1;
}
#app .common-btn.active {
  background-color: #69428c;
}
#app .common-btn.active::before, #app .common-btn.active::after {
  background-color: white;
}
#app .common-btn.active .inner .btn-arrow {
  filter: invert(1) brightness(5);
}
#app .common-btn.active .inner .decoration {
  color: white;
}
#app .common-btn.active .inner .decoration::after {
  color: white;
}
#app .common-btn.active .common-btn-bg {
  opacity: 0.2;
}
#app .common-btn:hover .inner i {
  transform: translateX(-10%);
}
#app .common-btn.box .inner::before {
  width: 100%;
  height: 70%;
  border: 1px solid #584268;
}
#app .common-btn.box .inner::after {
  width: 90%;
  height: 100%;
  border: 1px solid #584268;
}
#app .common-btn .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
}
#app .common-btn .inner::before, #app .common-btn .inner::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
#app .common-btn .inner::before {
  width: 105%;
  height: 80%;
  border: 1px solid #584268;
}
#app .common-btn .inner::after {
  width: 90%;
  height: 110%;
  border: 1px solid #584268;
}
#app .common-btn .inner i {
  width: 0.28rem;
  height: 0.28rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_arrow.png");
  transform: translateX(-80%);
  transition: all 0.3s ease-in-out;
}
#app .common-btn::before, #app .common-btn::after {
  content: "";
  position: absolute;
  width: 0.15rem;
  height: 0.15rem;
  background-color: #8b0bff;
  transition: all 0.3s ease-in-out;
}
#app .common-btn::before {
  left: 0;
  bottom: 0;
}
#app .common-btn::after {
  right: 0;
  top: 0;
}
#app .decoration {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #584268;
  transition: all 0.3s ease-in-out;
}
#app .decoration::after {
  content: attr(data-text);
  color: #584268;
  font-size: 0.1rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0.01rem;
}
#app .common-container {
  position: absolute;
  width: 25.6rem;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
  overflow: hidden;
}
#app .common-container .board-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #e7e6ee;
  z-index: 0;
}
#app .common-container .board-container .mountains-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
#app .top-area {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
#app .top-area.page-feature .community .community-cell i, #app .top-area.page-character .community .community-cell i, #app .top-area.page-news .community .community-cell i, #app .top-area.page-footer .community .community-cell i {
  color: #584268;
}
#app .top-area.page-feature .music::before, #app .top-area.page-character .music::before, #app .top-area.page-news .music::before, #app .top-area.page-footer .music::before {
  border: 1px dashed #584268;
}
#app .top-area.page-feature .music i, #app .top-area.page-character .music i, #app .top-area.page-news .music i, #app .top-area.page-footer .music i {
  color: #584268;
}
#app .top-area.page-feature .left-line, #app .top-area.page-character .left-line, #app .top-area.page-news .left-line, #app .top-area.page-footer .left-line {
  background: transparent;
  background-color: transparent;
  height: 5.9rem;
  background-color: #584268;
}
#app .top-area.page-feature .left-line::after, #app .top-area.page-character .left-line::after, #app .top-area.page-news .left-line::after, #app .top-area.page-footer .left-line::after {
  opacity: 1;
}
#app .top-area.page-feature .left-line .logo, #app .top-area.page-character .left-line .logo, #app .top-area.page-news .left-line .logo, #app .top-area.page-footer .left-line .logo {
  opacity: 0 !important;
}
#app .top-area.page-feature .left-line .menu, #app .top-area.page-character .left-line .menu, #app .top-area.page-news .left-line .menu, #app .top-area.page-footer .left-line .menu {
  top: 0.8rem;
  background-color: #584268;
}
#app .top-area.page-feature .left-line .menu li .tab-circle, #app .top-area.page-character .left-line .menu li .tab-circle, #app .top-area.page-news .left-line .menu li .tab-circle, #app .top-area.page-footer .left-line .menu li .tab-circle {
  filter: brightness(1);
}
#app .top-area.page-feature .left-line .menu li .menu-cell p, #app .top-area.page-character .left-line .menu li .menu-cell p, #app .top-area.page-news .left-line .menu li .menu-cell p, #app .top-area.page-footer .left-line .menu li .menu-cell p {
  color: #584268;
}
#app .top-area.page-feature .left-line .menu li .menu-cell p::after, #app .top-area.page-character .left-line .menu li .menu-cell p::after, #app .top-area.page-news .left-line .menu li .menu-cell p::after, #app .top-area.page-footer .left-line .menu li .menu-cell p::after {
  color: #584268;
}
#app .top-area.page-feature .left-line .menu li.active .menu-cell, #app .top-area.page-character .left-line .menu li.active .menu-cell, #app .top-area.page-news .left-line .menu li.active .menu-cell, #app .top-area.page-footer .left-line .menu li.active .menu-cell {
  background-color: #584268;
  border-radius: 0 0.3rem 0 0;
}
#app .top-area.page-feature .left-line .menu li.active .menu-cell p, #app .top-area.page-character .left-line .menu li.active .menu-cell p, #app .top-area.page-news .left-line .menu li.active .menu-cell p, #app .top-area.page-footer .left-line .menu li.active .menu-cell p {
  animation: none;
  color: #e9e8f0;
}
#app .top-area.page-feature .left-line .menu li.active .menu-cell p::after, #app .top-area.page-character .left-line .menu li.active .menu-cell p::after, #app .top-area.page-news .left-line .menu li.active .menu-cell p::after, #app .top-area.page-footer .left-line .menu li.active .menu-cell p::after {
  color: #e9e8f0;
}
#app .top-area.page-feature .left-line .menu::before, #app .top-area.page-feature .left-line .menu::after, #app .top-area.page-character .left-line .menu::before, #app .top-area.page-character .left-line .menu::after, #app .top-area.page-news .left-line .menu::before, #app .top-area.page-news .left-line .menu::after, #app .top-area.page-footer .left-line .menu::before, #app .top-area.page-footer .left-line .menu::after {
  opacity: 0;
}
#app .top-area.page-feature .bottom-line::before, #app .top-area.page-character .bottom-line::before, #app .top-area.page-news .bottom-line::before, #app .top-area.page-footer .bottom-line::before {
  opacity: 1;
}
#app .top-area.page-feature .right-line, #app .top-area.page-character .right-line, #app .top-area.page-news .right-line, #app .top-area.page-footer .right-line {
  height: calc(100% - 0.44rem);
}
#app .top-area.page-feature .corner-left,
#app .top-area.page-feature .corner-right, #app .top-area.page-character .corner-left,
#app .top-area.page-character .corner-right, #app .top-area.page-news .corner-left,
#app .top-area.page-news .corner-right, #app .top-area.page-footer .corner-left,
#app .top-area.page-footer .corner-right {
  opacity: 1;
}
#app .top-area.page-feature .bottom-line .jttw {
  opacity: 1;
}
#app .top-area.page-character .bottom-line::before {
  background: linear-gradient(to left, transparent 0px, transparent 1.35rem, #c5bcd3 1.35rem, #c5bcd3 11.86rem, transparent 11.86rem, transparent 13.75rem, #c5bcd3 13.75rem, #c5bcd3 100%);
}
#app .top-area.page-character .right-line {
  right: 1.35rem;
}
#app .top-area.page-news .bottom-line .child {
  opacity: 1;
}
#app .top-area.page-footer {
  transform: translateY(-2.9rem);
}
#app .top-area.page-footer .left-line {
  opacity: 0;
}
#app .top-area .left-line,
#app .top-area .right-line,
#app .top-area .bottom-line {
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
#app .top-area .bottom-line {
  width: 100%;
  height: 1px;
  bottom: 0.44rem;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.4823529412) 0px, rgba(255, 255, 255, 0.4823529412) 11.86rem, transparent 11.86rem, transparent 13.75rem, rgba(255, 255, 255, 0.4823529412) 13.75rem, rgba(255, 255, 255, 0.4823529412) 24.84rem, transparent 24.84rem, transparent 100%);
  z-index: 0;
}
#app .top-area .bottom-line .mouse {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -0.07rem;
  width: 0.75rem;
  height: 1.28rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/mouse.png");
  animation: mouseMove 3s ease-in-out infinite;
}
#app .top-area .bottom-line .jttw {
  position: absolute;
  bottom: -0.27rem;
  right: 1.3rem;
  width: 5.64rem;
  height: 1.87rem;
  background-image: url(//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/jttw.png);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#app .top-area .bottom-line .child {
  width: 6.92rem;
  height: 5.86rem;
  position: absolute;
  bottom: 0.27rem;
  right: 0rem;
  background-image: url(//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/child.png);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#app .top-area .bottom-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to left, #c5bcd3 0px, #c5bcd3 11.86rem, transparent 11.86rem, transparent 13.75rem, #c5bcd3 13.75rem, #c5bcd3 100%);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
#app .top-area .left-line {
  height: 100%;
  width: 1px;
  left: 0.76rem;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4823529412) 0px, rgba(255, 255, 255, 0.4823529412) 0.4rem, transparent 0.4rem, transparent 2.57rem, rgba(255, 255, 255, 0.4823529412) 2.57rem, rgba(255, 255, 255, 0.4823529412) 3.4rem, transparent 3.4rem, transparent 3.7rem, rgba(255, 255, 255, 0.4823529412) 3.7rem, rgba(255, 255, 255, 0.4823529412) calc(100% - 1.15rem), transparent calc(100% - 1.15rem), transparent calc(100% - 0.58rem), rgba(255, 255, 255, 0.4823529412) calc(100% - 0.58rem), rgba(255, 255, 255, 0.4823529412) calc(100% - 0.44rem), transparent calc(100% - 0.44rem), transparent 100%);
  opacity: 1;
  z-index: 2;
}
#app .top-area .left-line .logo {
  position: absolute;
  top: 1rem;
  transform: translateX(-10%);
  width: 3.07rem;
  height: 1.08em;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/logo.png");
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#app .top-area .left-line .logo::after {
  content: "";
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  border-radius: 100%;
  background-color: white;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#app .top-area .left-line .menu {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 1px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.36rem;
}
#app .top-area .left-line .menu li {
  width: 0;
  height: 0.6rem;
  position: relative;
  left: 0;
  list-style-type: none;
  pointer-events: none;
}
#app .top-area .left-line .menu li.hide {
  display: none;
}
#app .top-area .left-line .menu li.active {
  height: 1rem;
}
#app .top-area .left-line .menu li.active .tab-circle {
  transform: translateY(0.1rem) scale(1.5);
  animation: tabMove 5s ease-in-out infinite;
  filter: invert(1) brightness(5);
}
#app .top-area .left-line .menu li.active .menu-cell {
  padding-left: 1.2rem;
  color: #e9e8f0;
}
#app .top-area .left-line .menu li.active .menu-cell p {
  font-size: 0.38rem;
  padding-right: 0.8rem;
  line-height: 0.7rem;
  animation: glow 2s linear infinite;
}
#app .top-area .left-line .menu li.active .menu-cell p::after {
  left: -0.05rem;
  right: auto;
  bottom: 0.1rem;
  opacity: 0.2;
}
#app .top-area .left-line .menu li.active .menu-cell p::first-letter {
  font-size: 0.6rem;
}
#app .top-area .left-line .menu li.active .menu-cell .tab-bottom {
  opacity: 1;
  transform: translateY(0.22rem);
  width: calc(100% - 1.3rem);
}
#app .top-area .left-line .menu li.active .menu-cell .tab-bottom::after {
  opacity: 1;
}
#app .top-area .left-line .menu li .tab-circle {
  position: absolute;
  left: -0.12rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.23rem;
  height: 0.23rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/tab_circle.png");
  filter: invert(1) brightness(5);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
#app .top-area .left-line .menu li .menu-cell {
  position: absolute;
  left: -0.76rem;
  width: auto;
  height: 100%;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  padding-left: 0.97rem;
  cursor: pointer;
  pointer-events: all;
}
#app .top-area .left-line .menu li .menu-cell p {
  position: relative;
  line-height: 0.6rem;
  font-size: 0.29rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  padding-right: 0.97rem;
  transition: all 0.3s ease-in-out;
}
#app .top-area .left-line .menu li .menu-cell p::after {
  position: absolute;
  left: auto;
  right: 0.85rem;
  bottom: 0;
  content: attr(data-text);
  color: white;
  font-size: 0.13rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  opacity: 0.5;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
#app .top-area .left-line .menu li .menu-cell .tab-bottom {
  position: absolute;
  left: 0.76rem;
  top: 50%;
  transform: translateY(-48%);
  width: 0;
  height: 1px;
  background-color: white;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#app .top-area .left-line .menu li .menu-cell .tab-bottom::after {
  content: "";
  position: absolute;
  right: -0.08rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.33rem;
  height: 0.33rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_arrow.png");
  filter: invert(1) brightness(5);
  opacity: 0;
}
#app .top-area .left-line .menu::before, #app .top-area .left-line .menu::after {
  content: "";
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  left: 0;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: white;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#app .top-area .left-line .menu::before {
  top: 0;
}
#app .top-area .left-line .menu::after {
  bottom: 0;
}
#app .top-area .left-line::after {
  content: "";
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #584268;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
#app .top-area .right-line {
  right: 0.33rem;
  top: 0;
  width: 1px;
  height: 0;
  background-color: #c5bcd3;
}
#app .top-area .music {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0.5rem;
  bottom: 0.58rem;
  cursor: pointer;
  pointer-events: all;
  z-index: 2;
}
#app .top-area .music.pause::before {
  animation-play-state: paused;
}
#app .top-area .music::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.4823529412);
  animation: rotate 5s linear infinite;
  transition: all 0.3s ease-in-out;
}
#app .top-area .music i {
  font-size: 0.35rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4823529412);
  transition: all 0.3s ease-in-out;
}
#app .top-area .community {
  position: absolute;
  height: 0.52rem;
  bottom: 0.61rem;
  left: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
#app .top-area .community .community-cell {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
#app .top-area .community .community-cell:hover i {
  font-size: 0.5rem;
}
#app .top-area .community .community-cell:hover .pop {
  opacity: 1;
}
#app .top-area .community .community-cell i {
  margin: 0 0.15rem;
  font-size: 0.34rem;
  line-height: 1;
  color: #dbd5dd;
  transition: all 0.3s ease-in-out;
}
#app .top-area .community .community-cell .pop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.7rem;
  opacity: 0;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
#app .top-area .reg-fixed-btn {
  position: absolute;
  bottom: 0.61rem;
  left: 5.25rem;
  width: 2.25rem;
  height: 0.52rem;
  pointer-events: all;
}
#app .top-area .reg-fixed-btn p {
  letter-spacing: 0.02rem;
  font-size: 0.22rem;
  font-weight: bold;
  color: #584268;
}
#app .top-area .corner-left,
#app .top-area .corner-right {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
#app .top-area .corner-left {
  position: absolute;
  width: 6.32rem;
  height: 1.18rem;
  left: 0;
  bottom: 0;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/corner_left.png");
}
#app .top-area .corner-right {
  position: absolute;
  width: 6.68rem;
  height: 2.88rem;
  right: 0;
  bottom: 0;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/corner_right.png");
}
#app .dialog-close {
  width: 0.65rem;
  height: 0.65rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/dialog_close.png");
  cursor: pointer;
}
#app .reg-dialog {
  position: relative;
  width: 11.05rem;
  height: 6.62rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/dialog_bg.png");
}
#app .reg-dialog .dialog-close {
  top: 0.1rem;
  right: 0.15rem;
}
#app .reg-dialog .phone-reg,
#app .reg-dialog .wechat-reg {
  width: 100%;
  height: 100%;
}
#app .reg-dialog .phone-reg .phone-input {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.45rem;
  margin: 0 auto;
  width: 5.6rem;
  height: 0.6rem;
  background-color: #b3a8cf;
  color: #8f7fa6;
  border: 3px solid white;
  outline: none;
  font-size: 0.3rem;
  line-height: 0.6rem;
  padding: 0 0.2rem;
  border-radius: 0.1rem;
  font-weight: bold;
  text-align: center;
  font-family: "SYST";
}
#app .reg-dialog .phone-reg .code-area {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 5.6rem;
  height: 0.6rem;
  top: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  border-radius: 0.1rem;
  background-color: #b3a8cf;
}
#app .reg-dialog .phone-reg .code-area .code-input {
  width: 4rem;
  height: 100%;
  background-color: transparent;
  color: #8f7fa6;
  outline: none;
  font-size: 0.3rem;
  line-height: 0.58rem;
  padding: 0 0.2rem;
  font-weight: bold;
  border-radius: 0.1rem;
  text-align: center;
  font-family: "SYST";
  border: none;
}
#app .reg-dialog .phone-reg .code-area .send-btn {
  flex: 1;
  flex-shrink: 0;
  height: 100%;
  background-color: #69428c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.1rem;
}
#app .reg-dialog .phone-reg .code-area .send-btn p {
  color: white;
  font-size: 0.24rem;
}
#app .reg-dialog .phone-reg .privacy-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 3.1rem;
  margin: 0 auto;
  height: 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .reg-dialog .phone-reg .privacy-wrap input {
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.05rem;
  cursor: pointer;
}
#app .reg-dialog .phone-reg .privacy-wrap p,
#app .reg-dialog .phone-reg .privacy-wrap a {
  font-size: 0.18rem;
  color: #584268;
}
#app .reg-dialog .phone-reg .reg-btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 4.37rem;
  width: 4.1rem;
  height: 1rem;
}
#app .reg-dialog .phone-reg .reg-btn p {
  font-size: 0.41rem;
  letter-spacing: 0.1rem;
}
#app .reg-dialog .phone-reg .go-wechat {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 5.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#app .reg-dialog .phone-reg .go-wechat p {
  font-size: 0.22rem;
  color: #584268;
  font-weight: bold;
}
#app .reg-dialog .wechat-reg {
  position: relative;
  overflow: hidden;
  height: 100%;
}
#app .reg-dialog .wechat-reg.recruitment .qrcode {
  top: 1.6rem;
}
#app .reg-dialog .wechat-reg.recruitment .wechat-tip {
  top: 4.4rem;
}
#app .reg-dialog .wechat-reg .qrcode {
  width: 2.55rem;
  height: 2.55rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0.6rem;
  background-color: #b3a8cf;
  border-radius: 0.1rem;
  border: 3px solid white;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .reg-dialog .wechat-reg .qrcode img {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
#app .reg-dialog .wechat-reg .wechat-tip {
  font-size: 0.3rem;
  color: #584268;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  top: 3.4rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#app .reg-dialog .wechat-reg .go-phone {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 4.92rem;
  width: 4.14rem;
  height: 0.97rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#app .reg-dialog .wechat-reg .go-phone p {
  font-size: 0.37rem;
  color: #edebf4;
  font-weight: bold;
}
#app .tip-dialog {
  position: relative;
  width: 11.05rem;
  height: 6.62rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/dialog_bg.png");
}
#app .tip-dialog .dialog-close {
  top: 0.1rem;
  right: 0.15rem;
}
#app .tip-dialog p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #584268;
  text-align: center;
  line-height: 1.5;
  padding: 0 1.5rem;
}
#app .age-limit-dialog {
  position: relative;
  width: 11.05rem;
  height: 6.62rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/age_limit_dialog.png");
}
#app .age-limit-dialog .dialog-close {
  top: 0.1rem;
  right: 0.15rem;
}

#app {
  background-color: black;
  position: relative;
}
#app .character-list-container {
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  left: 0;
  width: 1.32rem;
  height: 80%;
  padding: 2rem 0;
  opacity: 0;
  animation-delay: 0.3s;
  pointer-events: all;
}
#app .character-list-container .character-prev,
#app .character-list-container .character-next {
  position: absolute;
  width: 0.69rem;
  height: 0.69rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_arrow.png");
  cursor: pointer;
}
#app .character-list-container .character-prev {
  top: 0;
  transform: rotate(-90deg) translateY(0.29rem);
}
#app .character-list-container .character-next {
  bottom: 0;
  transform: rotate(90deg) translateY(-0.32rem);
}
#app .character-list-container .character-list-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0.12rem 0;
  height: 100%;
}
#app .character-list-container .character-list-inner .character-list-item {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 1rem;
  margin-bottom: 0.68rem;
  border: 1px solid #584268;
  background-color: #e9e8f0;
  cursor: pointer;
}
#app .character-list-container .character-list-inner .character-list-item.is-career img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  border-radius: 0;
  position: absolute;
  left: 50%;
  top: -0.08rem;
  transform: translateX(-50%);
}
#app .character-list-container .character-list-inner .character-list-item.active::after {
  animation: rotateCenter 1s linear infinite;
}
#app .character-list-container .character-list-inner .character-list-item.active img {
  filter: brightness(1);
}
#app .character-list-container .character-list-inner .character-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  filter: brightness(0.4);
  transition: filter 0.3s ease-in-out;
}
#app .character-list-container .character-list-inner .character-list-item::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 1rem;
  border: 1px dashed #584268;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#app .character-list-container .character-list-inner .character-list-item::after {
  content: "";
  width: 1.32rem;
  height: 1.32rem;
  border-radius: 1rem;
  border: 1px dashed #584268;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#app .skill-item-desc {
  position: fixed;
  width: 5rem;
  height: auto;
  top: 100%;
  left: 50%;
  background-color: #e7e6ee;
  border: 1px solid #584268;
  padding: 0.1rem;
  transition: left 0.3s ease-in-out;
  z-index: 99;
}
#app .skill-item-desc::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 13%;
  transform: translateX(-50%) rotate(45deg);
  width: 0;
  height: 0;
  border-left: 0.1rem solid #584268;
  border-top: 0.1rem solid #584268;
  border-bottom: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
}
#app .skill-item-desc .skill-name {
  font-size: 0.24rem;
  color: #584268;
  font-weight: bold;
}
#app .skill-item-desc .skill-desc {
  font-size: 0.2rem;
  color: #584268;
}
#app #fullpage {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#app #fullpage .section {
  overflow: hidden;
  height: 100%;
}
#app #fullpage .section.section-1 .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/main_bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#app #fullpage .section.section-1 .container .reg-btn,
#app #fullpage .section.section-1 .container .cbt-reg-btn {
  width: 2.9rem;
  height: 1rem;
  position: absolute;
  bottom: 1.6rem;
  cursor: pointer;
}
#app #fullpage .section.section-1 .container .reg-btn .inner p,
#app #fullpage .section.section-1 .container .cbt-reg-btn .inner p {
  font-size: 0.4rem;
  font-weight: bold;
  color: #584268;
}
#app #fullpage .section.section-1 .container .reg-btn {
  left: 9.43rem;
}
#app #fullpage .section.section-1 .container .reg-btn .inner p::after {
  letter-spacing: 0.06rem;
}
#app #fullpage .section.section-1 .container .cbt-reg-btn {
  right: 9.43rem;
}
#app #fullpage .section.section-1 .container .cbt-reg-btn .inner p::after {
  letter-spacing: 0.03rem;
}
#app #fullpage .section.section-1 .container .age-limit {
  position: absolute;
  width: 0.77rem;
  height: 1.01rem;
  right: 4.17rem;
  bottom: 0.6rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/age_limit.png");
  cursor: pointer;
}
#app #fullpage .section.section-1 .container .privacy {
  position: absolute;
  right: 0.4rem;
  bottom: 0.7rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 1;
}
#app #fullpage .section.section-1 .container .privacy span {
  font-size: 0.19rem;
  color: white;
  font-weight: 200;
  line-height: 1.5;
}
#app #fullpage .section.section-1 .container .privacy .link {
  position: relative;
  display: flex;
}
#app #fullpage .section.section-1 .container .privacy .link a {
  font-weight: 200;
  font-size: 0.19rem;
  color: white;
  text-decoration: none;
}
#app #fullpage .section.section-2 .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-1.4rem);
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-title {
  width: 7.55rem;
  height: 1.37rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/feature_title.png");
  opacity: 0;
  margin-bottom: 1.2rem;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper {
  position: relative;
  width: 19.3rem;
  height: 6.49rem;
  opacity: 0;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper::before, #app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.38rem;
  height: 1.95rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/feature_slide.png");
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper::before {
  left: -0.5rem;
  transform: rotate(180deg) translateY(50%);
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper::after {
  right: -0.5rem;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper {
  position: relative;
  height: 100%;
  overflow: hidden;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper {
  height: 100%;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 11.17rem;
  height: 6.49rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/feature_wrapper_deactive.png");
  background-size: cover;
  background-position: center;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/feature_wrapper_active.png");
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide .swiper-slide-shadow-left,
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide .swiper-slide-shadow-right {
  display: none;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide.swiper-slide-prev img, #app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide.swiper-slide-next img {
  filter: brightness(0.4);
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-swiper .swiper-wrapper .swiper-slide img {
  position: absolute;
  left: 0.15rem;
  top: 0.19rem;
  width: 10.9rem;
  height: 6.1rem;
  object-fit: cover;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-pagination {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-pagination .swiper-pagination-bullet {
  position: relative;
  background: #9d8fc8;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-pagination .swiper-pagination-bullet-active {
  background: #4f2d75;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  transform: translate(-50%, -50%);
  height: 150%;
  border-radius: 50%;
  border: 1px dashed #4f2d75;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-btns {
  position: absolute;
  width: 5.58rem;
  height: 0.69rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -1.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-btns .feature-prev {
  width: 0.69rem;
  height: 0.69rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_arrow.png");
  transform: scaleX(-1);
  cursor: pointer;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-btns .feature-next {
  width: 0.69rem;
  height: 0.69rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_arrow.png");
  cursor: pointer;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-btns .split-line {
  width: 1px;
  height: 1.04rem;
  background-color: #c5bedd;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
#app #fullpage .section.section-2 .container .feature-wrapper-container .feature-wrapper .feature-btns .split-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-top: 0.08rem solid #c5bedd;
  border-bottom: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#app #fullpage .section.section-3 .container {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app #fullpage .section.section-3 .container .in-dev-tip {
  position: absolute;
  bottom: 0.6rem;
  right: 1.7rem;
  text-align: center;
  font-size: 0.2rem;
  color: #584268;
  font-weight: 200;
}
#app #fullpage .section.section-3 .container .in-dev-tip span {
  font-weight: bold;
}
#app #fullpage .section.section-3 .container .character-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-0.5rem);
}
#app #fullpage .section.section-3 .container .character-container .character-title {
  width: 7.55rem;
  height: 1.37rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/character_title.png");
  opacity: 0;
  z-index: 2;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  width: 12.59rem;
  height: 6.49rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/character_wrapper.png");
  opacity: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.38rem;
  height: 1.95rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/feature_slide.png");
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper::before {
  left: -0.9rem;
  transform: rotate(180deg) translateY(50%);
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner {
  position: absolute;
  top: 0.22rem;
  left: 0.245rem;
  width: 12.2rem;
  height: 6.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .character-shadow {
  width: 100%;
  height: 100%;
  object-fit: none;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(1);
  opacity: 0.1;
  object-position: top;
  transition: all 0.3s ease-in-out;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .character-name {
  position: relative;
  margin-top: 0.28rem;
  margin-left: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #584268;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.17rem;
  padding-left: 0.33rem;
  line-height: 1;
  z-index: 2;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .character-name .name-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 100%;
  border-top: 0.03rem solid #584268;
  border-bottom: 0.03rem solid #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .character-name .name-line .name-line-inner {
  position: absolute;
  width: 0.02rem;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .character-name .name-line .name-line-inner::before {
  content: "";
  position: absolute;
  width: 0.12rem;
  height: 40%;
  background-color: #584268;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc {
  position: relative;
  margin-top: 0.28rem;
  margin-left: 0.35rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  animation-delay: 0.1s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item {
  position: relative;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.04rem;
  height: 100%;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/dot.png");
  background-size: 0.04rem 0.04rem;
  background-repeat: repeat-y;
  background-position: center;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item .dot::before, #app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item .dot::after {
  content: "";
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  left: 0rem;
  background-color: #8b76a5;
  border-radius: 50%;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item .dot::before {
  top: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item .dot::after {
  bottom: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .career-desc-item .career-desc-text {
  font-size: 0.24rem;
  color: #584268;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  writing-mode: vertical-rl;
  font-size: 0.24rem;
  font-family: "FZLY";
  font-weight: 100;
  letter-spacing: 0.13rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .fixed-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.04rem;
  height: 100%;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/dot.png");
  background-size: 0.04rem 0.04rem;
  background-repeat: repeat-y;
  background-position: center;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .fixed-dot::before, #app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .fixed-dot::after {
  content: "";
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  left: 0rem;
  background-color: #8b76a5;
  border-radius: 50%;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .fixed-dot::before {
  top: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-desc .fixed-dot::after {
  bottom: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .immortal-desc {
  position: relative;
  margin-top: 0.28rem;
  margin-left: 0.35rem;
  z-index: 2;
  animation-delay: 0.1s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .immortal-desc .immortal-desc-text {
  font-size: 0.24rem;
  color: #584268;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  writing-mode: vertical-lr;
  font-size: 0.24rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .immortal-pos {
  position: relative;
  margin-top: 0.28rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  animation-delay: 0.2s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .immortal-pos .immortal-pos-title {
  width: 0.48rem;
  height: 1.57rem;
  font-size: 0.24rem;
  color: #584268;
  writing-mode: vertical-rl;
  letter-spacing: 0.02rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .immortal-pos .immortal-pos-content {
  font-size: 0.2rem;
  color: #f6eeff;
  background-color: #584268;
  border-radius: 0 0 0.1rem 0;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  writing-mode: vertical-rl;
  font-weight: 200;
  text-align: center;
  padding: 0.15rem 0.05rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-pos {
  position: relative;
  margin-top: 0.28rem;
  margin-left: 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  animation-delay: 0.2s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-pos .career-pos-title {
  width: 0.48rem;
  height: 1.57rem;
  background-color: #584268;
  border-radius: 0 0 0.1rem 0;
  font-size: 0.24rem;
  color: #c5bcd3;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-pos .career-pos-content {
  transform: translate(-0.1rem, -0.2rem);
  position: relative;
  width: 0.8rem;
  height: 2.56rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/pos_bg.png");
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-pos .career-pos-content p {
  height: 1rem;
  font-family: "FZLTY";
  font-size: 0.2rem;
  color: #f6eeff;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  writing-mode: vertical-rl;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.86rem;
  font-weight: 200;
  text-align: center;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender {
  position: relative;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.28rem;
  margin-left: 0.35rem;
  z-index: 2;
  animation-delay: 0.3s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender-line {
  position: absolute;
  width: 1rem;
  height: 1px;
  background-color: #584268;
  top: 50%;
  left: 50%;
  transform-origin: left;
  transform: rotate(-45deg) translateX(-50%);
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender {
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.3rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #584268;
  background: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/btn_bg.png") white;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background 0.3s ease-in-out;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender.active {
  background-color: #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender.active p {
  color: white;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender.male {
  left: 0;
  top: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender.female {
  right: 0;
  bottom: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender p {
  font-size: 0.4rem;
  color: #584268;
  line-height: 1;
  font-weight: bold;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .career-gender .gender::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 1px dashed #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-quality,
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-pos {
  position: relative;
  margin-top: 0.28rem;
  margin-left: 0.35rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-quality-title,
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-pos-title {
  width: 0.48rem;
  height: 1.57rem;
  font-size: 0.24rem;
  color: #584268;
  writing-mode: vertical-rl;
  letter-spacing: 0.02rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-quality-content,
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-pos-content {
  font-size: 0.2rem;
  color: #f6eeff;
  background-color: #584268;
  border-radius: 0 0 0.1rem 0;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  writing-mode: vertical-rl;
  font-weight: 200;
  text-align: center;
  padding: 0.15rem 0.05rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-quality {
  animation-delay: 0.1s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .partner-pos {
  animation-delay: 0.2s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .skill-area {
  position: absolute;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  top: 4.25rem;
  left: 0.25rem;
  z-index: 2;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .skill-area .skill-title {
  width: 0.48rem;
  height: 100%;
  background-color: #584268;
  border-radius: 0 0 0.1rem 0;
  font-size: 0.24rem;
  color: #c5bcd3;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02rem;
  margin-right: 0.27rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .skill-area .skill-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .skill-area .skill-list .skill-item {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid #584268;
  margin-right: 0.45rem;
  cursor: pointer;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .skill-area .skill-list .skill-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 1px dashed #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .skill-area .skill-list .skill-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  object-fit: cover;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-inner .live-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(45%, -50%);
  width: 13.83rem;
  height: 10.36rem;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  animation-delay: 0.6s;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-pagination {
  position: absolute;
  bottom: -0.2rem;
  height: 0.12rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-pagination .character-pagination-item {
  position: relative;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background-color: #c5bcd3;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-pagination .character-pagination-item.active {
  background-color: #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-pagination .character-pagination-item.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.18rem;
  transform: translate(-50%, -50%);
  height: 0.18rem;
  border-radius: 50%;
  border: 1px dashed #584268;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-pagination .split-line {
  position: absolute;
  width: 1px;
  height: 1rem;
  background-color: #c5bedd;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.2rem;
}
#app #fullpage .section.section-3 .container .character-container .character-wrapper .character-pagination .split-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-top: 0.08rem solid #c5bedd;
  border-bottom: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#app #fullpage .section.section-3 .container .character-container .character-type-choose {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10.72rem;
  opacity: 0;
}
#app #fullpage .section.section-3 .container .character-container .character-type-choose .choose-btn {
  width: 2.89rem;
  height: 1rem;
}
#app #fullpage .section.section-3 .container .character-container .character-type-choose .choose-btn p {
  font-size: 0.41rem;
}
#app #fullpage .section.section-4 .container {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app #fullpage .section.section-4 .container .news-container {
  position: relative;
  width: 18.7rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-1.1rem);
}
#app #fullpage .section.section-4 .container .news-container .news-title {
  width: 7.55rem;
  height: 1.37rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/news_title.png");
  opacity: 0;
  margin-bottom: 1.02rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper {
  height: 6.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  transform: translateX(1rem);
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper {
  height: 100%;
  flex: 1;
  padding-top: 1.8rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner {
  position: relative;
  height: 100%;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-tab {
  position: relative;
  width: 4.25rem;
  height: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.25rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-tab > p {
  font-size: 0.3rem;
  color: #81728e;
  font-weight: 200;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-tab-item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-tab-item p {
  font-size: 0.3rem;
  color: #81728e;
  font-weight: bold;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-tab-item.active p {
  color: #8e341d;
  font-weight: bold;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-tab-item.active::after {
  content: "";
  display: block;
  width: 110%;
  height: 0.13rem;
  border-radius: 0.13rem;
  background-color: #b5adbf;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.05rem;
  position: absolute;
  z-index: -1;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-more {
  position: absolute;
  right: 0.1rem;
  top: 0;
  font-size: 0.19rem;
  cursor: pointer;
  color: #726081;
  line-height: 0.55rem;
  font-weight: bold;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content {
  width: 100%;
  flex: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item {
  width: 100%;
  height: 0.635rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem;
  border-bottom: 0.02rem dashed #726081;
  animation: backInLeft 1s ease-in-out forwards;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-type {
  position: relative;
  width: 0.58rem;
  height: 0.28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #5d5d60;
  font-size: 0.2rem;
  border: 2px solid #c5bcd3;
  margin-right: 0.25rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-type::before, #app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-type::after {
  content: "";
  width: 0.08rem;
  height: 0.05rem;
  background-color: #584268;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-type::before {
  left: -0.08rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-type::after {
  right: -0.08rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-title {
  font-size: 0.24rem;
  color: #584268;
  font-weight: bold;
  width: 4.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-list-wrapper .news-list-inner .news-list-content .news-list-item .info-time {
  font-size: 0.24rem;
  color: #5d5d60;
  font-weight: bold;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper {
  transform-origin: right center;
  position: relative;
  width: 11.32rem;
  height: 6.86rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/news_img_wrapper.png");
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-swiper {
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 10.9rem;
  height: 6.12rem;
  overflow: hidden;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-swiper .swiper-slide img {
  border: 1px solid #c5bcd3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-pagination {
  position: absolute;
  bottom: 0rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-pagination .swiper-pagination-bullet {
  position: relative;
  background: #9d8fc8;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-pagination .swiper-pagination-bullet-active {
  background: #4f2d75;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .news-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  transform: translate(-50%, -50%);
  height: 150%;
  border-radius: 50%;
  border: 1px dashed #4f2d75;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .split-line-top {
  position: absolute;
  width: 1px;
  height: calc((100vh - 7.5rem) * 0.57);
  background-color: #c5bedd;
  position: absolute;
  right: 5.9rem;
  bottom: 6.9rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .split-line-top::before {
  content: "";
  position: absolute;
  bottom: -0.05rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-bottom: 0.08rem solid #c5bedd;
  border-top: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .split-line-bottom {
  position: absolute;
  width: 1px;
  height: calc((100vh - 7.5rem) * 0.4);
  background-color: #c5bedd;
  position: absolute;
  right: 5.9rem;
  top: 7rem;
}
#app #fullpage .section.section-4 .container .news-container .news-wrapper .news-img-wrapper .split-line-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-top: 0.08rem solid #c5bedd;
  border-bottom: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#app #fullpage .section.section-4 .container .news-line {
  position: absolute;
  width: 4.45rem;
  height: 1px;
  background-color: #c5bcd3;
  top: 5.86rem;
  left: 0;
}
#app #fullpage .section.section-4 .container .news-line::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  background-color: #c5bcd3;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
#app #fullpage .section.section-5 .container {
  position: relative;
  width: 100%;
  height: 2.9rem;
  background-color: white;
}
#app #fullpage .section.section-5 .container .zl-logo {
  position: absolute;
  top: 0.9rem;
  left: 5.18rem;
  width: 2.91rem;
  height: 0.88rem;
  background-image: url("//media.zlongame.com/media/pictures/cn/ymxx/officalSite/images/pc/zl_logo.png");
}
#app #fullpage .section.section-5 .container .more-info {
  position: absolute;
  width: 9rem;
  height: 1.2rem;
  top: 1rem;
  left: 11.58rem;
}
#app #fullpage .section.section-5 .container .more-info .footer-protocol {
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 0.1rem;
  justify-content: flex-start;
}
#app #fullpage .section.section-5 .container .more-info .footer-protocol a {
  font-size: 0.18rem;
  color: #8b91a4;
  margin-right: 0.29rem;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
#app #fullpage .section.section-5 .container .more-info .footer-protocol a::after {
  content: "|";
  position: absolute;
  right: -0.2rem;
}
#app #fullpage .section.section-5 .container .more-info .footer-protocol a:nth-last-child(1)::after {
  content: "";
}
#app #fullpage .section.section-5 .container .more-info .footer-protocol.special a {
  color: #c5c8d2;
  font-weight: 200;
}
#app #fullpage .section.section-5 .container .more-info .footer-info {
  font-size: 0.18rem;
  color: #8b91a4;
  text-align: center;
  letter-spacing: 0.05rem;
  line-height: 1.3;
  text-align: left;
  font-weight: bold;
}