<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>404错误</title>
    <style type="text/css">
        body {
            margin: 0;
            padding: 0;
            background: #efefef;
            font-family: Georgia, Times, Verdana, Geneva, Arial, Helvetica, sans-serif;
        }

        div#mother {
            margin: 0 auto;
            width: 943px;
            height: 572px;
            position: relative;
        }

        div#errorBox {
            background: url(img/404_bg.png) no-repeat top left;
            width: 943px;
            height: 572px;
            margin: auto;
        }

        div#errorText {
            color: #39351e;
            padding: 146px 0 0 446px;
        }

            div#errorText p {
                width: 303px;
                font-size: 14px;
                line-height: 26px;
            }

        div.link { /*background:#f90;*/
            height: 50px;
            width: 145px;
            float: left;
        }

        div#home {
            margin: 20px 0 0 444px;
        }

        div#contact {
            margin: 20px 0 0 25px;
        }

        h1 {
            font-size: 40px;
            margin-bottom: 35px;
        }
    </style>
    <script>
        var s = 10;
        window.onload = function () {
             setTimeout(function () { window.location.href = "/"; }, 5000);
            setInterval(function () {
                if (s > 0)
                    s = s - 1;
                document.getElementById("p_s").innerHTML = "系统将在" + s + "秒内自动返回首页";

            }, 1000);
        }
    </script>
</head>
<body>

    <div id="mother">
        <div id="errorBox">
            <div id="errorText">
                <h1>Sorry..页面没有找到！</h1>
                <p>
                    似乎你所寻找的网页已移动或丢失了。
                <p>或者也许你只是键入错误了一些东西。</p>
                请不要担心，这没事。如果该资源对你很重要，请与管理员联系。
                </p>
                <p id="p_s">系统将在5秒内自动返回首页</p>
            </div>
            <a href="/" title="返回首页">
                <div class="link" id="home"></div>
            </a>

        </div>
    </div>

</body>
</html>
