<!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: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .notice-container {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        h1 {
            color: #e74c3c;
            margin-bottom: 20px;
        }
        p {
            color: #333;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .highlight {
            color: #e67e22;
            font-weight: bold;
        }
    </style>
</head>
<body>
    <div class="notice-container">
        <h1>网站公告</h1>
        <p>尊敬的各位用户：</p>
        <p>目前网站正遭受网络攻击，访问量异常激增，我们正在紧急处理中。</p>
        <p>期间不排除会临时关闭几天进行维护。</p>
        <p class="highlight">如遇网站无法访问的情况，请您稍作等待。</p>
        <p>由此带来的不便，我们深表歉意，感谢您的理解与支持！</p>
    </div>
</body>
</html>