Files
xyzw_web_helper/index.html
2025-10-17 20:56:50 +08:00

42 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XYZW 游戏管理系统</title>
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!-- <script src="/tampermonkey-emulator.js"></script> -->
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
#app {
min-height: 100vh;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
font-size: 18px;
}
</style>
</head>
<body>
<div id="app">
<div class="loading">正在加载应用...</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>