<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 页面不存在</title>
    <style>
        body {
            background: #f8f8f8;
            color: #333;
            font-family: 'Segoe UI', 'Arial', 'Microsoft YaHei', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            text-align: center;
        }
        h1 {
            font-size: 6rem;
            margin-bottom: 0.5rem;
        }
        p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        a.button {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: #07c;
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: background 0.2s;
        }
        a.button:hover {
            background: #005fa3;
        }
    </style>
</head>
<body>
<!--@maccmsbot-->
    <div class="container">
        <h1>404</h1>
        <p>抱歉，您访问的页面不存在！</p>
        <a href="/" class="button">返回首页</a>
    </div>
</body>
</html>