.f-loading-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  .f-loading-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
  }
  .f-loading {
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(40, 137, 227);
    border-top-color: rgba(40, 137, 227, 0.6);
    border-right-color: rgba(40, 137, 227, 0.2);
    border-bottom-color: rgba(40, 137, 227, 0.2);
    border-radius: 100%;
    animation: f-circle infinite 0.75s linear;
  }
  .f-loading-explain {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #969391;
    margin-top: 19px;
  }
}

@keyframes f-circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
