.popup-fade-enter-active {
  animation: popup-fade-in 0.3s;
  transition: all 0.3s;
}
.popup-fade-leave-active {
  animation: popup-fade-out 0.3s;
  transition: all 0.3s;
}
.popup-up-enter-active {
  animation: popup-up-in 0.3s;
  transition: all 0.3s;
}
.popup-up-leave-active {
  animation: popup-up-out 0.3s;
  transition: all 0.3s;
}
@keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes popup-up-in {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes popup-up-out {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, 100%, 0);
  }
}
.fade-down-enter-active {
  animation: fade-down-in 0.3s;
  transition: all 0.3s;
}
.fade-down-leave-active {
  animation: fade-down-down 0.3s;
  transition: all 0.3s;
}
@keyframes fade-down-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-down-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
}
.slide-enter-active {
  animation: slide-in 0.3s;
}
.slide-leave-active {
  animation: slide-in 0.3s reverse;
}
@keyframes slide-in {
  0% {
    transform: translate3d(0, 100vh, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.fade-up-down-enter-active {
  transition: all 0.2s ease-out;
}
.fade-up-down-leave-active {
  transition: all 0.2s ease-in;
}
.fade-up-down-enter,
.fade-up-down-leave-to {
  opacity: 0;
  transform: translate3d(0, 60%, 0);
}
.toast-enter-active {
  animation: ToastBounce 0.2s both;
}
.toast-leave-active {
  animation: ToastBounce 0.2s reverse both;
}
@keyframes ToastBounce {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.9, 0.9, 0.9);
  }
  16% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  32% {
    transform: scaleX(1);
  }
  48% {
    opacity: 1;
    transform: scale3d(0.95, 0.95, 0.95);
  }
  64% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.stick-enter-active {
  animation: bounce-in 0.52s ease-in, fadeout 0.52s linear 0.52s;
}
@keyframes bounce-in {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  77% {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (min-width: 1100px) {
  .slogan p {
    color: red;
  }
}
:root {
  --base-bg-color: #fff;
}
.my-font {
  font-family: Righteous-Regular;
}
.main {
  margin: 0 auto;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: Righteous-Regular, PingFang SC;
  -webkit-user-select: none;
  user-select: none;
  background-position: 50%;
}
.index-wrapper-ignore2vw,
.main {
  position: relative;
  min-height: 100vh;
}
.index-wrapper-ignore2vw {
  width: 100vw;
  background-color: #181818;
}
.index-wrapper-ignore2vw .right-icons {
  display: flex;
  align-items: center;
}
.index-wrapper-ignore2vw .right-icon1 {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
}
.index-wrapper-ignore2vw .right-icon1 img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.index-wrapper-ignore2vw .right-icon1:hover {
  background: hsla(0, 0%, 100%, 0.10196);
}
.index-wrapper-ignore2vw .margin_right_24 {
  margin-right: 24px;
}
@media screen and (min-width: 800px) {
  .index-wrapper-ignore2vw .box {
    display: block;
    position: relative;
  }
  .index-wrapper-ignore2vw .masking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 714px;
    z-index: 999;
    opacity: 0.4;
    pointer-events: none;
  }
  .index-wrapper-ignore2vw .header {
    margin-left: 60px;
    width: calc(100vw - 120px);
    height: 37px;
    padding: 18px 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .index-wrapper-ignore2vw .header .header-img {
    width: 37px;
    height: 37px;
    padding-left: 30px;
    object-fit: contain;
    z-index: 9999;
  }
  .index-wrapper-ignore2vw .swiper {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 60px;
  }
  .index-wrapper-ignore2vw .swiper-pagination {
    left: 20;
    z-index: 999;
  }
  .index-wrapper-ignore2vw .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 12px 0;
    background: hsla(0, 0%, 100%, 0.2);
    opacity: 1;
  }
  .index-wrapper-ignore2vw .swiper-pagination-bullet-active {
    background: #fff;
  }
  .index-wrapper-ignore2vw .bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 35px;
  }
  .index-wrapper-ignore2vw .bottom .desc {
    color: #fff;
    text-align: center;
    font-feature-settings: "clig" off, "liga" off;
    font-family: SF Pro;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .index-wrapper-ignore2vw .bottom .store {
    width: 240px;
    height: 72px;
    margin-top: 32px;
  }
  .index-wrapper-ignore2vw .bottom .store img {
    width: 240px;
    height: 72px;
    object-fit: contain;
  }
  .index-wrapper-ignore2vw .bottom .bottom-content {
    margin-top: 197px;
    color: #fff;
    font-family: PingFang SC;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .index-wrapper-ignore2vw .bottom .flex {
    margin-top: 6px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .index-wrapper-ignore2vw .bottom .padding-span {
    padding: 0 12px;
    opacity: 0.2;
  }
  .index-wrapper-ignore2vw .bottom .padding-opcity {
    opacity: 0.6;
    margin-right: 12px;
  }
}
@media screen and (max-width: 800px) {
  .index-wrapper-ignore2vw .box {
    display: none;
  }
}
.toast-tip-template-ignore2vw {
  z-index: 5000;
  position: fixed;
  top: 40vh;
  width: -webkit-fit-content;
  width: fit-content;
  right: 50%;
  pointer-events: none;
}
.toast-tip-template-ignore2vw.hide {
  display: none;
}
.toast-tip-template-ignore2vw .tip-con {
  position: relative;
  left: 50%;
  max-width: 490px;
  padding: 26px 40px;
  border-radius: 16px;
  background-color: rgba(50, 51, 51, 0.50196);
  text-align: center;
  color: #fff;
  font-feature-settings: "clig" off, "liga" off;
  font-family: SF Pro;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.tip-slide-bottom-enter-active {
  animation: slide-bottom-tip 0.2s ease-out;
}
.tip-slide-bottom-leave-active {
  animation: slide-bottom-tip 0.2s ease-out reverse;
}
@keyframes slide-bottom-tip {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
