html,body{
  position: relative;
  height:100%;
  width:100%;
  padding:0;
  margin:0;
  /* font-family: PingFang-SC; */
}
.app-loading-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:#333;
  background: linear-gradient(to bottom to right, rgb(63, 56, 56), rgb(80, 80, 80));
}


.app-loading-text {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 4rem;
  font-weight: normal;
  font-size: 14px;
  color:#aaa;
  line-height:16px;

}

.app-loading-text-en{
  font-size:12px;
  font-weight: bold;
}

@keyframes glowmation {
  0% {
    top: -3%;
    left: -3%;
    background-position: 0% 70%;
    background-size: 100% 100%;

  }

  12.5% {
    top: -3%;
    left: 0;
    background-size: 80% 70%;

  }

  25% {
    top: -3%;
    left: 3%;
    background-size: 100% 80%;
  }

  37.5% {
    top: 0;
    left: 3%;
    background-size: 80% 70%;
  }

  50% {
    top: 3%;
    left: 3%;
    background-position: 100% 50%;
    background-size: 70% 70%;
    background-color: #b1b1b1;
  }

  62.5% {
    top: 3%;
    left: 0;
    background-size: 70% 80%;
  }

  75% {
    top: 3%;
    left: -3%;
    background-size: 80% 100%;
  }

  87.5% {
    top: 0;
    left: -3%;
    background-size: 70% 80%;
  }

  100% {
    top: -3%;
    left: -3%;
    background-position: 0% 70%;
    background-size: 100% 100%;
    background-color: #e8ece9;
  }
}

@keyframes text {
  0% {
    color: #d7dfdf;
  }

  50% {
    color: #a3a3a3;
  }

  100% {
    color: #aaaaaa;
  }
}



.spinner {
  margin: 100px auto;
  width: 70px;
  height: 30px;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  background-color: rgb(41, 50, 50);
  height: 100%;
  width: 3px;
  display: inline-block;

  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.spinner .rect6 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.spinner .rect7 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.spinner .rect8 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.spinner .rect9 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}



@keyframes stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
    background-color: #3e4149;
  }

  20% {
    transform: scaleY(0.6);
    -webkit-transform: scaleY(0.6);
    background-color: #30acff;
  }
}

.app-loading-message {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  color: rgb(234, 234, 234);
  text-shadow: 1px 1px 1px #333;
  background: rgba(33, 33, 33, 0.3);
  padding: 2rem;
  border-radius: 1rem;
}

.app-footer {
  position: fixed;
  left: 1rem;
  text-align: center;
  bottom: 1rem;
  right: 1rem;
  color: #aaa;
  padding: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.app-footer .hl {
  color: #888;
  transition: all 0.5s;
}

.app-footer .hl:hover {
  color: #333;
  transition: all 0.5s;
}

.app-content {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 5%;
  bottom: 400px;
  right: 5%;
  align-items: center;
}

.app-title {
  font-size: 1rem;
}

.app-title img {
  width: 3rem;
  height: 3rem;
  position: relative;
  bottom: -1rem;
  margin-right: 0.5rem;
}



.card-title{
  margin:0;
  padding:5px 10px;
  border-bottom:1px solid #eee;
  background:rgb(35, 51, 76);
  color:#fff;
  width:inherit !important;
  text-align: left;
}

.card-more{
 color:#aaa;
  cursor: pointer;
  font-size:12px;
}


.card-more:hover{
  color:#10b2ec;
}

