/*项目中可能用到的变量，按设计稿规范录入*/
.spin-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-content: center;
}
.spin-wrapper .icon-wrap {
  position: relative;
}
.spin-wrapper .icon-wrap .spin-icon-load {
  transform: scale3d(150%);
  font-size: 24px !important;
  color: #f00;
  animation: ani-spin 2s linear infinite;
}
.icon-single {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icon-single .normal {
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.icon-single:before {
  display: block;
  content: '';
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-image: url(../img/singlelogo.1e2eee7c.svg);
}
@keyframes ani-spin {
from {
    transform: rotate(0deg);
}
50% {
    transform: rotate(180deg);
}
to {
    transform: rotate(360deg);
}
}

