<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;!DOCTYPE html&gt;
&lt;html lang="zh-cn"&gt;
&lt;head&gt;
    &lt;meta charset="gb2312"&gt;
    &lt;title&gt;404错误页面,页面不存在&lt;/title&gt;
    &lt;meta name="keywords" content="404错误页面" /&gt;
    &lt;meta name="description" content="404错误页面" /&gt;
    &lt;link rel="stylesheet" href="/img/404.css"&gt;
&lt;/head&gt;

&lt;div class="not-found"&gt;
    &lt;img class="pic" src="/img/404.png" alt=""&gt;
    &lt;div class="txt"&gt;&lt;span class="num" id="count"&gt;5S&lt;/span&gt;后自动返回首页&lt;/div&gt;
    &lt;a class="btn btn-blue" href="http://www.xpdown.cn/"&gt;返回首页&lt;/a&gt;
&lt;/div&gt;

&lt;script type="text/javascript"&gt;
    var count = document.getElementById('count'), i = 5;
    var timer = setInterval(beback, 1000);
    function beback(){
        i--;
        count.innerHTML = i + 'S';
        if( i &lt;= 0 ){
            clearInterval(timer);
            location.href = 'http://www.xpdown.cn/';
        }
    }
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></body></html>