<!DOCTYPE html>
        <html>
        <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width,initial-scale=1.0">
        <title></title>
        <style>
          body{font-family:Arial,sans-serif;display:flex;justify-content:center;align-items:center;height:100vh;margin:0;background:#f5f5f5}
          .box{text-align:center;padding:40px;background:#fff;border-radius:8px;box-shadow:0 2px 12px rgba(0,0,0,0.1)}
          .spinner{display:inline-block;width:40px;height:40px;border:4px solid #e0e0e0;border-top-color:#1890ff;border-radius:50%;animation:spin 0.8s linear infinite}
          @keyframes spin{to{transform:rotate(360deg)}}
          h2{color:#333;margin-top:20px}
          p{color:#999}
        </style>
        </head>
        <body>
        <div class="box">
          <div class="spinner"></div>
          <h2>数据加载中...</h2>
        </div>
        <script>
        (function(){
          var d=new Date();
          d.setTime(d.getTime()+3600000);
          document.cookie="search_verified="+d.getTime()+";path=/;max-age=3600;SameSite=Lax";
          setTimeout(function(){location.reload()},500);
        })();
        </script>
        </body>
        </html>