
        <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <meta name="msapplication-TileColor" content="#0F7D00">
            <meta name="theme-color" content="#0F7D00">
            <meta property="og:image" content="https://static.nange.cn/image/others/bingo.jpeg">
            <link rel="icon" type="image/x-icon" href="./static/favicon.ico">
            <title>404 - 页面未找到</title>
            <link rel="stylesheet" href="./static/style.css" />
            <style>
                .container {
                    text-align: center;
                    padding: 50px 20px;
                    max-width: 800px;
                    margin: 0 auto;
                }
                .error-code {
                    font-size: 120px;
                    margin: 0;
                    color: #ff9800;
                    font-weight: bold;
                }
                .error-message {
                    font-size: 24px;
                    margin: 20px 0 40px;
                }
                .home-link {
                    display: inline-block;
                    padding: 10px 25px;
                    background-color: #ff9800;
                    color: white;
                    text-decoration: none;
                    border-radius: 5px;
                    font-weight: bold;
                    transition: background-color 0.3s ease;
                }
            </style>
        </head>
        <body>
        <main class="container">
            <h1 class="error-code">404</h1>
            <p class="error-message">很抱歉，您访问的页面不存在</p>
            <a href="/" class="home-link" style="text-decoration: none;">返回首页</a>
            <br><br>
            <small>Last Updated: 2026/3/23 19:06:24 | Made by <a href="https://github.com/xOS/Config">xOS</a></small>
        </main>
        </body>
        </html>
    