| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="description" content="工作流 AI 学习平台">
- <meta name="keywords" content="工作流, AI, 学习平台, 人工智能, 在线学习,爆米Ai,www.baomiai.com">
- <meta name="robots" content="index, follow">
- <title></title>
- <!-- PayPal JS SDK 核心引入,替换为你的 Client ID -->
- <script src="https://www.paypal.com/sdk/js?client-id=AWTqiGF8Tcnuu_gnZzJ_k4a-LvPFj4IbUh98l2zCKxdngjCth3s2fwH0kcC5G-zjyD2t8ty67O1BV0N-¤cy=USD"></script>
- <!-- 引入quill里的三个css文件 -->
- <link href="/quill/quill.core.css" rel="stylesheet">
- <link href="/quill/quill.snow.css" rel="stylesheet">
- <link href="/quill/quill.bubble.css" rel="stylesheet">
- </head>
- <body>
- <!-- 初始加载占位(避免白屏闪烁) -->
- <div id="app">
- <div id="app-loading" style="
- position: fixed;
- inset: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #ffffff;
- z-index: 9999;
- transition: opacity 0.3s ease;
- ">
- <div style="text-align: center;">
- <div style="
- width: 40px;
- height: 40px;
- border: 3px solid #e2e8f0;
- border-top-color: #3b82f6;
- border-radius: 50%;
- animation: spin 0.8s linear infinite;
- margin: 0 auto 12px;
- "></div>
- <div style="font-size: 14px; color: #94a3b8; font-family: sans-serif;">Loading...</div>
- </div>
- </div>
- </div>
- <style>
- @keyframes spin {
- to { transform: rotate(360deg); }
- }
- </style>
- <script>
- // 应用挂载后移除加载动画
- window.__removeLoading = function() {
- const el = document.getElementById('app-loading');
- if (el) {
- el.style.opacity = '0';
- setTimeout(() => el.remove(), 300);
- }
- };
- </script>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|