/* .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-image: linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0);
  background-size: 5px 40px;
  background-position:
    0px center,
    10px center,
    20px center,
    30px center,
    40px center,
    50px center;
  animation: spikeUp 1s linear infinite alternate;
}
@keyframes spikeUp {
  0% {
    background-size: 5px 40px;
  }
  16% {
    background-size:
      5px 55px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px;
  }
  33% {
    background-size:
      5px 40px,
      5px 55px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px;
  }
  50% {
    background-size:
      5px 40px,
      5px 40px,
      5px 55px,
      5px 40px,
      5px 40px,
      5px 40px;
  }
  66% {
    background-size:
      5px 40px,
      5px 40px,
      5px 40px,
      5px 55px,
      5px 40px,
      5px 40px;
  }
  83% {
    background-size:
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 55px,
      5px 40px;
  }
  100% {
    background-size:
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 55px;
  }
} */


body{
/*  margin:0;
  padding:0;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh; */
  background-color: #240229;
}

.loader {
  position:relative;
  width:100px;
  height:100px;
  border-radius:50%;
  background: linear-gradient(#14ffe9, #d64161, #feb236);
  /* animation: animate 0.5s linear infinite; */
}

@keyframes animate
{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

.loader-text {
    display: block;
    position: relative;
    text-align: center;
    margin-top: 0.5em;
    font-size: 1.5em;
    font-family: sans-serif;
    color: #14ffe9;
    /* text-shadow: 0.068em 0.068em #ffeb3b; */
    animation: bounce 2.5s linear infinite;
    letter-spacing: 0.2em;
}

@keyframes bounce {
    0% {
        top: 0;
    }
    25% {
        top: 0.625em;
    }
    50% {
        top: 0;
    }
    75% {
        top: 0.625em;
    }
    100% {
        top: 0;
    }
}


.loader > span{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
}

.loader > span:nth-child(1) {
  filter: blur(5px);
}
.loader > span:nth-child(2) {
  filter: blur(10px);
}

.loader > span:nth-child(3) {
  filter: blur(25px);
}
.loader > span:nth-child(4) {
  filter: blur(45px);

}

/* .loader:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background : #240229;
  border-radius: 50%;
} */

.loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #240229 url('../images/logo.png') no-repeat center;
    background-size: 80%; /* 或者用cover，根据需求调整 */
    border-radius: 50%;
}
.loading-block{
/* display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
