
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #0a0f1e;
  color: #666666;
  font-family: sans-serif;
  overflow-x: hidden;
}

a {
  color: #18d26e;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #18d36e !important;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "AlibabaPuHuiTi-2","Alibaba Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
button:active {
  background: #57cdff !important;
  border-color: #57cdff !important;
}
.overflow-hidden {
  overflow: hidden;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #57cdff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2ce782;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* swiperjs --- 分页器样式 */
.swiper{
  --swiper-theme-color: #18d26e !important;
  --swiper-pagination-color: #18d26e !important;/* 两种都可以 */
}
.absolute {
  position: absolute;
}

@keyframes startMove {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(12px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes astronautMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotateme {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
    opacity: 1;
  }
}
@keyframes startFadeIn {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes startFadeInOut {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0.4;
  }
  40% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.move-animation-Y {
  animation: moveY 6s infinite cubic-bezier(0.4, 0, 1, 1);
}
@keyframes moveY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
  100% {
    transform: translateY(0);
  }
}
.move-animation-6s-bounce {
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
.move-animation-8s-bounce {
  animation-duration: 8s;
  -webkit-animation-duration: 8s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@keyframes bounce {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

.move-backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes bottomShadowBackInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes lowerHalfBackInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(1);
    transform: translateY(-1200px) scale(1);
    opacity: 0.9;
  }

  25% {
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes tokenBackInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 1;
  }

  40% {
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    opacity: 1;
  }

  /* 40%,
  73%,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  65%,
  68% {
    -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: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1.02);
    transform: translate3d(0, 0, 0) scaleY(1.02);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes cloundBackInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.6);
    transform: translateY(-1200px) scale(0.6);
    opacity: 0.7;
  }

  60% {
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes enumeraImg {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  20% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  40% {
    -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);
  }
  80% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes enumeraImg2 {
  20% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  26% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  34% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  38% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  40% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes enumeraImg3 {
  40% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  42% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  46% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  48% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  54% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  58% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  60% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes enumeraImg4 {
  60% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  62% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  66% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  68% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  74% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  78% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  80% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes enumeraImg5 {
  80% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  82% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  86% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  88% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  94% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  98% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* ---------------------------------pc-title-star--------------------------------------- */
.pc-star .start-1 {
  top: 24%;
  left: -5.4%;
  animation: startMove 6s infinite linear;
}
.pc-star .start-1 .start {
  position: absolute;
  animation-name: rotateme;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  left: 0px;
}
.pc-star .start-1 .start1-point {
  position: absolute;
  right: 12px;
  top: 48px;
}
.pc-star .start-1 .start1-point img {
  width: 6px;
  height: 6px;
  font-size: 0px;
}
.pc-star .start-2 {
  top: 42%;
  right: -8.4%;
  animation: startMove 8s infinite cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.pc-star .start-2 .start {
  animation: startFadeIn 1.2s infinite cubic-bezier(0, 0, 0.2, 1);
}
.pc-star .start-2 .start2-point {
  position: absolute;
  right: 45px;
  top: -43px;
}
.pc-star .start-2 .start2-point img {
  width: 9px;
  height: 9px;
  font-size: 0px;
}
/* ------------------ mobile title - star -------------------------- */
.m-star .star-move {
  animation: startMove 6s infinite linear;
}
.m-star-1 {
  margin-top: 48px;
  position: relative;
}
.m-star-1 .star-1 .star {
  position: absolute;
  animation-name: rotateme;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  bottom: 70px;
  left: 50%;
  margin-left: -12px;
}
.m-star-1 .star-1 .star1-point {
  position: absolute;
  left: 44%;
  bottom: 42px;
}
.m-star-2 {
  margin-top: 48px;
  position: relative;
}
.m-star-2 .star-2 {
  animation: startMove 8s infinite cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.m-star-2 .star-2 .star {
  animation: startFadeIn 1.2s infinite cubic-bezier(0, 0, 0.2, 1);
  position: absolute;
  left: 45%;
  top: 15px;
}
.m-star-2 .star-2 .star2-point {
  position: absolute;
  right: 56%;
  top: -8px;
}
/*  */
.united_states {
  overflow: hidden;
}

.united_states li {
  width: 340px;
  float: left;
  margin-right: 80px;
  margin-bottom: 80px;
}

.united_states li:nth-child(3n) {
  margin-right: 0;
}

.united_states li h4 {
  font-size: 23px;
  color: #3F37FF;
  font-weight: normal;
  margin-bottom: 10px;
}

.united_states p {
  font-size: 17px;
  margin-bottom: 6px;
}

.united_states p a {
  text-decoration: underline;
  color: #000;
}

.nowrap {
  white-space: nowrap;
}

/* remove other page .bi-x::before */
#header .bi-x::before{
  display: none;
}

.btn-common {
  padding: 16px 24px;
  color: #0d0b33;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}
/* 按钮---hover样式 */
/* #57cdff --- 底色 ------- >  #57cdff*/
.btn-light-green:hover {
  background: #57cdff !important;
}
/* 透明底色----> #57cdff*/
.transparent-light-green:hover {
  background: #57cdff !important;
  border-color: #57cdff !important;
}
/* #F7F6FF 底色----> #57cdff*/
/* #57cdff底色带效果----> #57cdff*/
.light-green-effect:hover {
  background: #57cdff !important;
}
/* #FFFFFF底色带效果----> #57cdff*/
.white-effect:hover {
  background: #57cdff !important;
}
/* link --- ##4A21EF */
.link-a:hover {
  color: #4A21EF !important;
}

 .dropdown-menu ::-webkit-scrollbar
 {
     width:8px;
     height:8px;
 }
  .dropdown-menu ::-webkit-scrollbar-track
 {
     border-radius:8px;
 }
 .dropdown-menu ::-webkit-scrollbar-thumb{
     border-radius:8px;
     background-color:#ccc
 }
 .dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #151924;
}
/* 

 @media (min-width: 991px){
  #start-soar {
    background: none;
    animation: star 2.5s ease-in infinite;
  }
  @keyframes star {
    0% {
        background: url(../img/one-wallet-footer-bg.svg) no-repeat, url(../img/crypto-stripe1.svg) no-repeat;
        background-position: top -30% center, right -36% top 93%, center;
    }
    50% {
      background: url(../img/one-wallet-footer-bg2.svg) no-repeat, url(../img/crypto-stripe1.svg) no-repeat;
      background-position: top -30% center, right -36% top 93%, center;
    }
    100% {
      background-position: top -30% center, right -36% top 93%, center;
    }
  }
} */
