body {
  margin: 0;
}

#loading-bg {
  position: absolute;
  top: 0;
  z-index: 999;
  display: block;
  width: 100%;
  height: 100%;
  background: #131923;
}

#notChrome {
  position: relative;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
}

#notChrome iframe {
  width: 100%;
  height: 100%;
}

.loading-main {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.app-name {
  margin-top: 24px;
  font-size: 36px;
  color: #fff;
  text-align: center;
  user-select: none;
}

/* 波形变形 */
.square {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.square span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8A23C3 0%, #3861EE 100%);
  border: none;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  opacity: 0.6;
  transition: all 0.5s;
  animation: animate 6s linear infinite;
}

.square span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3861EE 0%, #8A23C3 100%);
  border: none;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  opacity: 0.8;
  transition: all 0.5s;
  animation: animate2 4s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(0deg);
  }
}

.loading-main .content {
  position: relative;
  z-index: 1000;
  padding: 40px 60px;
  color: #fff;
  text-align: center;
  transition: 0.5s;
}

/* 波浪 */

.editorial {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: block;
  float: left;
  width: 100%;
  height: 12vw;
  margin: 0;
}

.parallax1 > use {
  opacity: 0.2;
  animation: move-forever1 10s linear infinite;
}

.parallax1 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax2 > use {
  opacity: 0.4;
  animation: move-forever2 8s linear infinite;
}

.parallax2 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax3 > use {
  opacity: 0.6;
  animation: move-forever3 6s linear infinite;
}

.parallax3 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax4 > use {
  opacity: 0.8;
  animation: move-forever4 4s linear infinite;
}

.parallax4 > use:nth-child(1) {
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}
