.pisell-square-toast-wrap {
  pointer-events: none;
}

.pisell-square-toast-modal {
  pointer-events: none;
  user-select: none;
  min-width: 190px;
  min-height: 74px;

  // Toast 容器
  .pisell-square-toast {
    min-width: 190px;
    max-width: 201px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 12px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);

    .pisell-square-toast-icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 11px;

      .pisell-square-toast-icon {
        font-size: 50px;
        color: #ffffff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;

        &-loading {
          animation: fadenum 1s infinite linear;
        }
      }
    }

    // 内容区域
    .pisell-square-toast-content {
      font-size: 20px;
      line-height: 1.5;
      color: #ffffff;
      text-align: center;
    }
  }
}

// loading 旋转动画
@keyframes fadenum {
  to {
    transform: rotate(360deg);
  }
}
