<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>页面未找到</title>
    <style>
        body { font-family: Arial, sans-serif; text-align: center; padding: 50px; }
        h1 { color: #ff6b6b; font-size: 48px; }
        p { font-size: 18px; color: #666; }
        .btn { display: inline-block; margin-top: 20px; padding: 10px 20px; 
               background: #4ecdc4; color: white; text-decoration: none; border-radius: 5px; }
    </style>
</head>
<body>
    <h1>404</h1>
    <h2>页面不存在</h2>
    <p>抱歉，您访问的页面不存在或已被移除。</p>
    <a href="/" class="btn">返回首页</a>
    <p></p>
    <p></p>
</body>
</html>