<!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 {
background-color: #f4f4f4;
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
max-width: 600px;
padding: 40px;
background: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
border-radius: 12px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 10px;
color: #666;
}
.logo {
width: 100px;
margin-bottom: 20px;
}
.footer {
margin-top: 30px;
font-size: 14px;
color: #aaa;
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="Logo" class="logo" />
<h1>我们正在维护中 🚧</h1>
<p>为了给您带来更好的体验,网站正在进行系统升级。</p>
<p>请稍后再试,感谢您的耐心等待与支持。</p>
<div class="footer">
© 2025 望月知行岛 MoonIsland. All rights reserved.
</div>
</div>
</body>
</html>