<!DOCTYPE html><html lang="zh-CN"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1.0"><title>访问受限</title><style>body{margin:0;padding:0;background-color:#0f172a;color:#f8fafc;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;display:flex;justify-content:center;align-items:center;height:100vh;text-align:center}.card{background:#1e293b;padding:2.5rem;border-radius:1rem;box-shadow:0 20px 25px -5px rgba(0,0,0,0.3);border:1px solid #334155;max-width:400px;width:90%}h1{font-size:1.5rem;color:#ef4444;margin-bottom:1rem;display:flex;align-items:center;justify-content:center;gap:0.5rem}p{color:#94a3b8;font-size:0.95rem;line-height:1.6;margin-bottom:1.5rem}.timer{font-weight:bold;color:#38bdf8}</style></head><body><div class="card"><h1>🚫 禁止浏览器访问</h1><p>当前服务仅供专用客户端连接使用，暂不支持网页端直接访问。</p><p><span class="timer" id="count">3</span> 后就嘎了</p></div><script>let sec=3;const el=document.getElementById("count");const timer=setInterval(()=>{sec--;el.innerText=sec;if(sec<=0){clearInterval(timer);window.location.href="https://www.baidu.com"}},1000);</script></body></html>