72 lines
1.8 KiB
HTML
72 lines
1.8 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>冷启动 · HoloLake</title>
|
||
|
|
<style>
|
||
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
|
body {
|
||
|
|
min-height: 100vh;
|
||
|
|
background: #0a0a0f;
|
||
|
|
color: #e0e0e0;
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
text-align: center;
|
||
|
|
padding: 40px 20px;
|
||
|
|
}
|
||
|
|
.icon { font-size: 64px; margin-bottom: 20px; }
|
||
|
|
.title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #fff;
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}
|
||
|
|
.status {
|
||
|
|
font-size: 18px;
|
||
|
|
color: #ffa500;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
.desc {
|
||
|
|
font-size: 14px;
|
||
|
|
color: #888;
|
||
|
|
margin-bottom: 40px;
|
||
|
|
max-width: 400px;
|
||
|
|
line-height: 1.6;
|
||
|
|
}
|
||
|
|
.back-btn {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 12px 32px;
|
||
|
|
background: linear-gradient(135deg, #00d4ff, #0099cc);
|
||
|
|
color: #fff;
|
||
|
|
text-decoration: none;
|
||
|
|
border-radius: 8px;
|
||
|
|
font-size: 15px;
|
||
|
|
transition: opacity 0.2s;
|
||
|
|
}
|
||
|
|
.back-btn:hover { opacity: 0.85; }
|
||
|
|
.footer {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 20px;
|
||
|
|
font-size: 12px;
|
||
|
|
color: #444;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="icon">🚀</div>
|
||
|
|
<div class="title">冷启动</div>
|
||
|
|
<div class="status">🚧 此模块正在开发中</div>
|
||
|
|
<div class="desc">冷启动模块负责系统的初始化引导流程,确保各服务按正确顺序启动并完成自检。即将就绪。</div>
|
||
|
|
<a href="/" class="back-btn">← 返回主页</a>
|
||
|
|
</div>
|
||
|
|
<div class="footer">HoloLake Era · AGE OS · 光湖纪元</div>
|
||
|
|
</body>
|
||
|
|
</html>
|