
    <!DOCTYPE html>
    <html lang="zh">
    <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; text-align: center; padding: 50px; }
            h1 { font-size: 36px; color: #ff0000; }
            p { font-size: 18px; }
        </style>
    </head>
    <body>
        <h1>对不起，没找到你请求的页面。</h1>
        <p>页面将会在 2 秒钟后跳转到首页...</p>
        <script>
            setTimeout(() => {
                window.location.href = '/';
            }, 2000);
        </script>
    </body>
    </html>
    