writeOff/frontend/index.html
haomingming 815aa04fe8 first
2026-05-20 18:21:39 +08:00

159 lines
5.0 KiB
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="会议核销SaaS系统 - 专业的多租户会议核销管理平台" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='8' fill='%236366f1'/%3E%3Cpath d='M10 16L14.5 20.5L22 11.5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E" />
<title>会议核销系统</title>
<style>
:root {
--boot-theme-rgb: 60, 110, 145;
--boot-brand-gradient: linear-gradient(135deg, #3c6e91 0%, #5c88a7 100%);
}
body {
margin: 0;
padding: 0;
}
html {
min-width: 1200px;
}
.boot-overlay {
position: fixed;
inset: 0;
z-index: 4000;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: opacity 0.28s ease, visibility 0.28s ease;
}
.boot-overlay.is-leaving {
opacity: 0;
visibility: hidden;
}
.boot-overlay__backdrop {
position: absolute;
inset: 0;
background:
radial-gradient(circle at top, rgba(var(--boot-theme-rgb), 0.28), transparent 42%),
linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(31, 41, 55, 0.9));
}
.boot-overlay__content {
position: relative;
z-index: 1;
display: grid;
gap: 18px;
width: min(420px, calc(100vw - 48px));
padding: 32px 28px;
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 24px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
box-shadow:
0 24px 80px rgba(15, 23, 42, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.08);
backdrop-filter: blur(18px);
}
.boot-overlay__mark {
position: relative;
width: 72px;
height: 72px;
}
.boot-overlay__mark-ring,
.boot-overlay__mark-core {
position: absolute;
inset: 0;
border-radius: 50%;
}
.boot-overlay__mark-ring {
border: 1px solid rgba(255, 255, 255, 0.18);
border-top-color: rgba(255, 255, 255, 0.9);
border-right-color: rgba(var(--boot-theme-rgb), 0.78);
animation: boot-overlay-spin 1.2s linear infinite;
}
.boot-overlay__mark-core {
inset: 14px;
background: var(--boot-brand-gradient);
box-shadow:
0 10px 24px rgba(var(--boot-theme-rgb), 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.boot-overlay__text {
display: grid;
gap: 6px;
color: #f8fafc;
}
.boot-overlay__text strong {
font-size: 22px;
line-height: 1.1;
letter-spacing: 0.04em;
}
.boot-overlay__text span {
color: rgba(226, 232, 240, 0.78);
font-size: 14px;
}
.boot-overlay__bar {
position: relative;
height: 6px;
overflow: hidden;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
}
.boot-overlay__bar-fill {
position: absolute;
inset: 0;
width: 42%;
border-radius: inherit;
background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.92), rgba(var(--boot-theme-rgb), 0.84));
animation: boot-overlay-progress 1.4s ease-in-out infinite;
}
@keyframes boot-overlay-spin {
to {
transform: rotate(360deg);
}
}
@keyframes boot-overlay-progress {
0% {
transform: translateX(-120%);
}
55% {
transform: translateX(115%);
}
100% {
transform: translateX(180%);
}
}
@media (max-width: 640px) {
.boot-overlay__content {
width: min(360px, calc(100vw - 32px));
padding: 28px 22px;
border-radius: 20px;
}
.boot-overlay__text strong {
font-size: 20px;
}
}
</style>
</head>
<body>
<div id="app-boot-overlay" class="boot-overlay" role="status" aria-live="polite" aria-label="页面加载中">
<div class="boot-overlay__backdrop"></div>
<div class="boot-overlay__content">
<div class="boot-overlay__mark">
<span class="boot-overlay__mark-ring"></span>
<span class="boot-overlay__mark-core"></span>
</div>
<div class="boot-overlay__text">
<strong>会议核销系统</strong>
<span>正在初始化工作台...</span>
</div>
<div class="boot-overlay__bar" aria-hidden="true">
<span class="boot-overlay__bar-fill"></span>
</div>
</div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>