<!DOCTYPE html>
<html lang="zh">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>什么都没有</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0f0f0f;
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      color: #fff;
    }
    .container { text-align: center; }
    .emoji { font-size: 72px; margin-bottom: 24px; }
    h1 { font-size: 28px; font-weight: 600; margin-bottom: 12px; color: #f0f0f0; }
    p  { font-size: 15px; color: #666; line-height: 1.8; }
  </style>
</head>
<body>
  <div class="container">
    <div class="emoji">🌫️</div>
    <h1>这里什么都没有</h1>
    <p>你来得太早了，或者来错了地方。</p>
   
  </div>
</body>
</html>