77 lines
1.9 KiB
HTML
77 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" href="data:," />
|
|
<title>CTMS</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<style>
|
|
.ctms-boot-splash {
|
|
display: grid;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
place-items: center;
|
|
background:
|
|
radial-gradient(circle at 22% 12%, rgba(58, 120, 183, 0.14), transparent 30%),
|
|
linear-gradient(135deg, #f4f7fb 0%, #e8eef5 100%);
|
|
color: #142033;
|
|
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
}
|
|
|
|
.ctms-boot-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
padding: 18px 22px;
|
|
border: 1px solid rgba(191, 203, 217, 0.78);
|
|
border-radius: 18px;
|
|
background: rgba(255, 255, 255, 0.82);
|
|
box-shadow: 0 20px 48px rgba(43, 63, 87, 0.12);
|
|
}
|
|
|
|
.ctms-boot-mark {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: 14px;
|
|
background: #183b63;
|
|
color: #ffffff;
|
|
font-size: 12px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.ctms-boot-title {
|
|
margin: 0;
|
|
font-size: 15px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.ctms-boot-subtitle {
|
|
margin: 4px 0 0;
|
|
color: #66758b;
|
|
font-size: 12px;
|
|
}
|
|
</style>
|
|
<div class="ctms-boot-splash">
|
|
<div class="ctms-boot-card">
|
|
<div class="ctms-boot-mark">CTMS</div>
|
|
<div>
|
|
<p class="ctms-boot-title">正在启动 CTMS</p>
|
|
<p class="ctms-boot-subtitle">正在加载桌面客户端...</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
|
|
</html>
|