.ai-empty-wrap {
  width: 241px;
  height: 322px;
  background: #E9F1FF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .ai-round-wrap {
    position: relative;
    .round {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(57.10870684867245deg, #E50DB0 0%, #32C5FF 51%, #6D4AFE 100%);
      animation: rotate 4s linear infinite;
    }
    .inner {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      background: #E9F1FF;
      border-radius: 50%;
    }
  }

  .text {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #142A51;
    line-height: 20px;
    margin-top: 12px;
    text-align: center;
    animation: fade-in-out 4s ease-in-out infinite;
  }
}

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

@keyframes fade-in-out {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
