#seller-main-pc-html-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: 0;
    right: 0;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
    font-size: 14px;
  }
  .seller-main-pc-loading-spin {
    position: relative;
    display: inline-block;
    font-size: 32px;
    width: 1em;
    height: 1em;
    transform: rotateZ(45deg);
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    animation: seller-main-pc-spin-rotate 1.2s infinite linear;
  }

  .seller-main-pc-loading-spin > i {
    height: 14px;
    width: 14px;
    background-color: #326bfb;
    display: block;
    position: absolute;
    border-radius: 100%;
    transform: scale(0.75);
    transform-origin: 50% 50%;
    opacity: 0.3;
    animation: seller-main-pc-spin 1s infinite linear alternate;
  }

  .seller-main-pc-loading-spin:nth-child(1) {
    top: 0;
    left: 0;
  }

  .seller-main-pc-loading-spin :nth-child(2) {
    top: 0;
    right: 0;
    animation-delay: 0.4s;
  }

  .seller-main-pc-loading-spin :nth-child(3) {
    bottom: 0;
    right: 0;
    animation-delay: 0.8s;
  }

  .seller-main-pc-loading-spin :nth-child(4) {
    left: 0;
    bottom: 0;
    animation-delay: 1.2s;
  }

  #seller-main-pc-html-loading > .seller-main-pc-tip {
    padding-top: 5px;
    text-shadow: 0 1px 2px #fff;
    color: #326bfb;
    font-variant: tabular-nums;
    font-feature-settings: 'tnum';
    font-size: 14px;
    visibility: hidden;
  }

  #seller-main-pc-html-loading.assetsLoaded > .seller-main-pc-tip {
    visibility: visible;
  }
  @keyframes seller-main-pc-spin-rotate {
    to {
      transform: rotate(405deg);
    }
  }

  @keyframes seller-main-pc-spin {
    to {
      opacity: 1;
    }
  }