72 lines
1.9 KiB
HTML
Raw Normal View History

<!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>