/*!  build: 一号租赁
 */
figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 300px;
  margin: auto;
  /* animation: rotate 2.4s linear infinite; */
  text-align: center;
  font-size: 13px;
}

figure div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

figure div p {
  margin: 0;
}

.spinner {
  width: 32px;
  height: 32px;
  margin-right: 2px;
  animation: rotate 2.4s linear infinite;
}

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