Files
yu-zhi-ran/platform/backend/static/offline.html
T
lt e1ba31afda 版本1.0.4 - 发布前准备
- 修复system.py缩进错误
- 优化前端页面样式(待重构)
- 改进API接口结构
- 完善文档和自动化脚本
- 平台基本功能稳定运行
2026-04-29 09:32:43 +08:00

58 lines
1.6 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>离线 - 宇之然平台</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
padding: 20px;
text-align: center;
}
.container {
max-width: 400px;
}
.icon {
font-size: 80px;
margin-bottom: 20px;
}
h1 {
font-size: 24px;
margin: 0 0 12px;
}
p {
font-size: 16px;
line-height: 1.6;
opacity: 0.9;
}
.btn {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
background: white;
color: #667eea;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">📴</div>
<h1>当前处于离线状态</h1>
<p>您似乎已断开网络连接,但可以查看已缓存的内容。</p>
<p>请检查网络后刷新页面以获取最新数据。</p>
<a href="/" class="btn">重试</a>
</div>
</body>
</html>