
    .loading-tip {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f8f8f8;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10; /* 确保在 iframe 上方 */
      font-size: 16px;
      color: #666;
    }

    /* 加载动画（简单的旋转小圆点） */
    .loading-spinner {
      width: 40px;
      height: 40px;
      border: 4px solid #eee;
      border-top: 4px solid #409eff; /* 蓝色进度条 */
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 16px;
    }

    /* 动画关键帧 */
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* 隐藏 iframe 初始状态 */
    #targetIframe {
      display: none;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* 失败提示样式 */
    .error-tip {
      color: #f56c6c; /* 红色 */
    }