<!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 {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f8f9fa;
        }
        .error-container {
            text-align: center;
            padding: 40px;
            border-radius: 10px;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
        }
        .error-icon {
            font-size: 64px;
            color: #ff6347;
            margin-bottom: 20px;
        }
        .error-code {
            font-size: 48px;
            margin: 0 0 10px;
            color: #333333;
        }
        .error-message {
            font-size: 24px;
            margin: 0 0 20px;
            color: #666666;
        }
        .error-details {
            font-size: 16px;
            color: #888888;
            margin-bottom: 20px;
        }
        .error-action {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            color: #ffffff;
            background-color: #007bff;
            border-radius: 5px;
            text-decoration: none;
        }
        .error-action:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>
    <div class="error-container">
        <div class="error-icon">🚫</div>
        <div class="error-code">404</div>
        <div class="error-message">哎呀！页面好像迷失在太空中了...</div>
        <div class="error-details">很抱歉，您没有权限访问这个页面。可能是您输入了错误的网址，或者这个资源已经不存在了。</div>
        <a href="/" class="error-action">返回地球（首页）</a>
    </div>
</body>
</html>
