CCSWebsite/console/stop.html

107 lines
3.2 KiB
HTML
Raw Normal View History

2025-06-17 01:43:15 +00:00
<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f2f5;
color: #333;
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
text-align: center;
background-color: #fff;
border-radius: 10px;
padding: 40px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.logo {
width: 120px;
height: 120px;
margin: 0 auto 20px;
background-color: #e0e0e0;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
color: #666;
}
h1 {
font-size: 2.2rem;
margin-bottom: 15px;
color: #1a73e8;
}
p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #555;
}
.divider {
width: 100px;
height: 3px;
background-color: #1a73e8;
margin: 30px auto;
}
.contact {
margin-top: 25px;
}
.contact a {
color: #1a73e8;
text-decoration: none;
margin: 0 10px;
transition: all 0.3s ease;
}
.contact a:hover {
text-decoration: underline;
}
.button {
display: inline-block;
margin-top: 25px;
padding: 12px 30px;
background-color: #1a73e8;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #0d62d1;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">🔒</div>
<h1>此网站已归档,等待重启</h1>
<p>我们正在整理和改进内容,以提供更好的体验。感谢您的耐心等待!</p>
<div class="divider"></div>
<p>预计重启时间:未知</p>
<p>在此期间,您可以:</p>
<ul style="text-align: left; list-style-position: inside; margin-top: 20px;">
<li style="margin-bottom: 10px;">关注我们的社交媒体获取最新动态</li>
<li style="margin-bottom: 10px;">查看我们的博客了解相关更新</li>
<li>订阅我们的邮件通知,第一时间获取网站重启消息</li>
</ul>
<div class="contact">
<a href="mailto:jasper@none.pw">jasper@none.pw</a>
</div>
<a href="https://example.com" class="button">返回首页</a>
</div>
</body>
</html>