<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>400页面</title>
    <script type="text/javascript" src="/jslib/jquery-1.11.3.min.js"></script>
    <style type="text/css">
        body{
            background: #fbfbfb;
        }
        .errorCont{
            width: 1200px;
            overflow: hidden;
            margin: 0px auto;
            padding-top: 460px;
        }
        .errorTip{
            overflow: hidden;
            text-align: center;
            font-size: 14px;
            color:#888;
        }
        a.errorBt{
            display: block;
            width: 200px;
            height: 60px;
            overflow: hidden;
            background: #00c3f3;
            font-size: 18px;
            color:#fff;
            text-align: center;
            line-height: 60px;
            margin: 0px auto;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
            border-radius: 3px;
        }
    </style>
</head>
<body>
<div class="errorCont" style="background: url(/defaultImg/404.png) no-repeat center 50px;">
    <div class="errorTip">啊哦~一不小心闯进了未知领域，请点击下面按钮返回首页...</div>
    <div class="h20"></div>
    <a class="errorBt" href="/"><span>5</span>秒后返回首页</a>
</div>
<script type="text/javascript">
    $(function(){
        var i =5;
        var t = setInterval(function(){
            if(i>0){
                i--;
                $(".errorBt span").text(i)
            }else if(i<=0){
                window.location.href="/"
            }
        },1000);
    });
</script>
</body>
</html>