*{
    margin: 0;
    padding:0 ;
}
canvas{
    display: block;
    position: fixed;
    touch-action: none;
    object-fit: cover;
    width: 100%;
    height: 100%;
    cursor: inherit;
    opacity: 1;
    z-index: 999;
    top: 0;
    transition: all 1.5s linear;
    /* background-color: #fff; */
}
.stop{
  display: none;
}
.loading-mask-list{
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    top: 170px;
}
.loading-mask-percent{
    font-size: 25px;
    width: 70px;
    height: 70px;
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    text-align: center;
    line-height: 76px;
}
.loading-close{
    display: none;
}
.spinner {
    width: 90px;
    height: 90px;
    position: absolute;
    top: calc(50% + 20px);
    left: calc(50% - 45px);
    text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #3c3c3c;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}