<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
    <!-- 上述3个meta标签*必须*放在最前面，任何其他内容都*必须*跟随其后！ -->
    <title>页面丢失</title>

    <link rel="stylesheet" href="/Template/Public/Home/css/404.css">
</head>

<body>
<div class="Box404">
    <div class="title404"><strong>错误提示</strong> 很抱歉！您访问的页面不存在...</div>
    <div class="body404"></div>
    <div class="jump"><span id="jumpTo">0</span>秒之后页面自动跳转<a href="/">首页</a></div>
</div>

<script type="text/javascript">
    function countDown(secs, surl) {
        //alert(surl);
        var jumpTo = document.getElementById('jumpTo');
        jumpTo.innerHTML = secs;
        if (--secs > 0) {
            setTimeout("countDown(" + secs + ",'" + surl + "')", 1000);
        }
        else {
            location.href = surl;
        }
    }
</script>
<script type="text/javascript">countDown(0, '/');</script>
</body>
</html>
