<!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;
    }

    body {
      font-family: "Microsoft YaHei", Arial, sans-serif;
      background: white;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
    }

    .error-container {
      text-align: center;
      max-width: 600px;
      padding: 40px 20px;
    }

    .error-image {
      margin-bottom: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .error-image img {
      max-width: 273px;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .error-message {
      margin-bottom: 30px;
    }

    .error-title {
      font-weight: 500;
      font-size: 16px;
      color: #555555;
      line-height: 24px;
    }

    .error-subtitle {
      font-weight: 500;
      font-size: 16px;
      color: #555555;
      line-height: 24px;
    }

    .back-button {
      display: inline-flex;
      width: 120px;
      height: 38px;
      background: #FFFFFF;
      border-radius: 4px;
      border: 1px solid #DADADA;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 16px;
      color: #555555;
      text-decoration: none;
    }

    /* 页面加载动画 */
    .error-container {
      animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  </style>
</head>

<body>
  <div class="error-container">
    <div class="error-image">
      <img src="https://oss.lcweb01.cn/jzt/255/image/20250811/f92c865e698ed87bc6d1d5d7c6349adf.png" alt="404错误图片">
    </div>

    <div class="error-message">
      <h1 class="error-title">很抱歉，您访问的页面不存在！</h1>
      <p class="error-subtitle">请仔细检查您输入的网址是否正确</p>
    </div>

    <!-- <a href="/" class="back-button">返回首页</a> -->
  </div>
</body>

</html>