<!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>
        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', '微软雅黑', sans-serif;
        }

        body {
            background: #f8f9fa;
            color: #343a40;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* 错误代码样式 */
        .error-code {
            font-size: 6rem;
            font-weight: bold;
            color: #495057;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        /* 错误信息 */
        .error-message {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            padding: 0 20px;
        }

        /* 操作按钮 */
        .action-buttons {
            margin-top: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 0 10px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #007bff;
            color: white;
            border: 2px solid #007bff;
        }

        .btn-primary:hover {
            background: #0056b3;
            border-color: #0056b3;
        }

        .btn-secondary {
            background: transparent;
            color: #007bff;
            border: 2px solid #007bff;
        }

        .btn-secondary:hover {
            background: #007bff;
            color: white;
        }

        /* 小贴士 */
        .tip {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #6c757d;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .error-code {
                font-size: 4rem;
            }

            .error-message {
                font-size: 1.2rem;
            }
        }
    </style>
    <script>
        var _hmt = _hmt || [];
        (function() {
          var hm = document.createElement("script");
          hm.src = "https://hm.baidu.com/hm.js?dc5c7b27268846d497bc21ca3aca9432";
          var s = document.getElementsByTagName("script")[0]; 
          s.parentNode.insertBefore(hm, s);
        })();
        </script>
        
</head>
<body>
    <div class="container">
        <!-- 错误代码 -->
        <div class="error-code">404</div>

        <!-- 主信息 -->
        <h1 class="error-message">
            哎呀！您访问的页面似乎去火星旅行了...
        </h1>

        <!-- 插画/图标区 -->
        <svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 24 24" fill="none" stroke="#dee2e6" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather feather-compass">
            <circle cx="12" cy="12" r="10"></circle>
            <polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>
        </svg>

        <!-- 操作按钮 -->
        <div class="action-buttons">
            <a href="/" class="btn btn-primary">返回首页</a>
            <a href="/contact" class="btn btn-secondary">联系支持</a>
        </div>

        <!-- 实用提示 -->
        <p class="tip">
            小贴士：检查网址拼写是否正确，或使用顶部搜索框查找内容
        </p>
    </div>
</body>
</html>