<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>404页面</title>
    <style>
      body {
        margin: 0;
        padding: 0;
        width: 1080px;
        background-color: #fff;
        font-family: "PingFang SC", Arial, "Microsoft YaHei", 微软雅黑,
          "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
      }

      .error-box {
        width: 100vw;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
      }

      .error-img {
        width: 300px;
        object-fit: contain;
      }

      .error-text {
        font-family: "PingFang SC";
        font-size: 40px;
        line-height: 48px;
      }
    </style>
  </head>
  <body>
    <div class="error-box">
      <img
        class="error-img"
        src="https://cdn.webuy.ai/assets/img/2020/05/19/n_1589875087146_6375___size280x280.png"
      />
      <p class="error-text">页面不存在～</p>
    </div>
  </body>
</html>
