<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>页面未找到 - 江苏洋河酒厂股份有限公司</title>
    <style>
        :root {
            --primary-blue: #003478;  /* 洋河品牌主蓝 */
            --accent-gold: #c5a47e;   /* 品牌辅助金 */
            --text-dark: #333333;
        }
        
        body {
            background: linear-gradient(150deg, #f8f9fa 0%, #e9ecef 100%);
            font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            text-align: center;
            padding: 3rem;
            max-width: 800px;
        }

        .brand-logo {
            width: 180px;
            margin-bottom: 2rem;
        }

        .error-code {
            font-size: 6rem;
            color: var(--primary-blue);
            letter-spacing: 0.2em;
            margin: 1rem 0;
            text-shadow: 2px 2px 4px rgba(0,52,120,0.1);
        }

        .error-message {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .back-home {
            display: inline-block;
            padding: 12px 36px;
            background: var(--primary-blue);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            font-weight: 500;
        }

        .back-home:hover {
            background: white;
            color: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,52,120,0.2);
        }

        .decorative-line {
            width: 100px;
            height: 4px;
            background: var(--accent-gold);
            margin: 2rem auto;
        }

        @media (max-width: 768px) {
            .error-code { font-size: 4rem; }
            .error-message { font-size: 1.2rem; }
        }
    </style>
</head>
<body>
    <div class="container">
        <img src="/static/style/images/logo2.png"  alt="洋河股份" class="brand-logo">
        <div class="error-code">404</div>
        <div class="decorative-line"></div>
        <p class="error-message">
            您访问的页面暂时无法抵达，建议您返回首页重新启航
        </p>
        <a href="/"  class="back-home">返回首页</a>
    </div>
</body>
</html>