.loading {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*background-color: #f4f7f9*/
  background-image: url(/img/login-bg.png);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.loading .loading-wrap {
  position: absolute;
  top: 40%;
  left: 50%;
  display: flex;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  justify-content: center;
  align-items: center;
  flex-direction: column
}

.loading .loading-title {
  display: flex;
  font-weight: 500;
  margin-top: 30px;
  font-size: 20px;
  color: #333333;
  justify-content: center;
  align-items: center
}

.loading .loading-img {
  transform: rotate(0deg);
  /*animation: imgRotate 2s infinite linear;*/
  /*animation: imgRotate 0.8s linear infinite;*/
  animation: imgRotate 1.6s linear infinite;
}

@keyframes imgRotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
