<!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 {
        background-color: #f1c40f;
        font-family: 'Open Sans', sans-serif;
        color: #fff;
        text-align: center;
      }
      h1 {
        margin-top: 150px;
        font-size: 4rem;
      }
      p {
        margin-bottom: 50px;
        font-size: 1.5rem;
      }
      button {
        display: block;
        margin: 0 auto;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        background-color: #2c3e50;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
      }
      button:hover {
        background-color: #34495e;
      }
    </style>
  </head>
  <body>
    <h1>404</h1>
    <p>抱歉！页面未找到</p>
    <button onclick="window.location.href='http://www.maniuer.com'">返回主页</button>
  </body>
<script>
   setTimeout(function() {
         window.location.href = "http://www.maniuer.com";
   }, 5000); //5秒钟后自动跳转到主页
</script>
</html>