1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!doctype html>
- <html lang="zh">
- <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, user-scalable=no" />
- <title>智能招聘助手</title>
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
- <style>
- /* 全局样式重置和优化 */
- * {
- -webkit-tap-highlight-color: transparent;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
-
- body {
- overscroll-behavior: none;
- -webkit-overflow-scrolling: touch;
- }
-
- /* 玻璃拟态效果基础样式 */
- .glass-morphism {
- background: rgba(255, 255, 255, 0.25);
- backdrop-filter: blur(20px);
- -webkit-backdrop-filter: blur(20px);
- border: 1px solid rgba(255, 255, 255, 0.18);
- }
-
- .glass-dark {
- background: rgba(0, 0, 0, 0.25);
- backdrop-filter: blur(20px);
- -webkit-backdrop-filter: blur(20px);
- border: 1px solid rgba(255, 255, 255, 0.1);
- }
- </style>
- </head>
- <body class="font-sans antialiased">
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|