<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 页面不存在！</title>
</head>
<body>
  	<script src="/assets/js/jquery-1.8.3.min.js"></script>
    <link rel="stylesheet" href="/assets/css/page_404.css">
    <div id="content">
        <div class="conter">
            <h1>您访问的页面出错了！</h1>
            <p>● 您输入的网址不正确</p>
            <p>● 您查找的网页可能已被转移或更新</p>
            <p>● 过期书签或搜索引擎链接</p>
            <div class="hint">倒数 <b id="CountDown">5</b> 秒后自动返回首页，若不跳转点击这里 <a href="/">返回首页</a></div>
            <div class="Btns">
                <a href="/jobs/">找工作列表</a>
                <a href="">简历上传</a>
                <a href="/yzbzc/">易职邦入驻</a>
            </div>
        </div>
    </div>

    <script>
         let number = 5
        setInterval (()=>{
            number--
            $("#CountDown").text(number)
            if(number == 0){
                window.location.href = "/";
            }
        }, 1000);
    </script>
</body>
</html>
<!-- mark message -->
