﻿<!DOCTYPE html>
<html>
<head> <meta name="keywords" content="keywords_temp" />
<meta name="description" content="description_temp" />

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>您访问的页面不存在</title>
    <meta charset="utf-8" />
</head>
<body style="background:url(/images/404.jpg) no-repeat;background-position:center center;height:100vh;overflow-y:hidden">
    <div style="position:absolute;left:50%;top:40%;transform:translate(-50%,-50%);text-align:center">
        <p style="font-size:24px;">
            404 页面不存在。可能你打开的是过期的书签，或者输入了错误的地址。
        </p>
        <p id="terTime">
            3秒后 <a href="/">返回首页</a>
        </p>
    </div>
    <script>
        var c = 6;
        var t;

        function timedCount() {
            document.getElementById('terTime').innerHTML = "" + c + "秒后 <a href=\"/\">返回首页</a>";
            c = c - 1;
            if (c == 0) {
                clearTimeout(t);
                window.location = '/';
            } else {
                t = setTimeout("timedCount()", 1000)
            }
        }
        timedCount();
    </script>
</body>
</html>
