<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>乌海市乌达区人民政府</title>
 
    <style>
        * {
            margin: auto;
            padding: auto;
            font-family: "microsoft yahei","微软雅黑","宋体";
        }
        body {
            padding: 0;
            margin: 0;
            zoom: 100%;
            height: 100%;
            font-size: 16px;
            line-height: 1;
            background: url(/404/bg_error.png) no-repeat center 100px ;
            font-family: "microsoft yahei","微软雅黑","宋体";
        }
        .container {
            width: 672px;
            height: 662px;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }
        .logo {
            text-align: center;
        }
        .content span,.bot {
            display: block;
            text-align: center;
        }
        .content .warning {
            font-size: 40px;
            color:#333;
            font-weight: bold;

            line-height: 80px;
        }
        .content .tips {
            font-size: 18px;
            color: #656565;
            line-height: 40px;
        }
        .bot {
            margin-top: 30px;
        }
        .bot a {
            line-height: 31px;
            padding: 8px 20px;
            margin-right: 20px;
            border-radius: 20px;
            background-color: #4D70D7;
            color: #fff;
            text-decoration: none;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="logo">
        <img src="/404/logo_error.png" alt="">
    </div>
    <div class="content">
         <span class="warning">您访问的页面不存在。</span>   
	<span class="tips"> 系统将在<i id="count_down">5</i> 秒内为您跳转。</span> 
    </div>
    <div class="bot">
            <a href="javascript:;" onClick="javascript:history.back(-1);">返回上一页</a><a href="//www.oton-diary.com" target="_blank">返回首页</a>
    </div>
</div>
</body>
</html>
<script language="javascript">
		var num = 4; //倒计时的秒数
		var URL = "//www.oton-diary.com";
		window.setTimeout("doUpdate()", 1000);
		function doUpdate(){
			if(num != 0){
				document.getElementById('count_down').innerHTML = num;
				num --;
				window.setTimeout("doUpdate()", 1000);
			}else{
				num = 4;
				window.location = URL; 
			}
		}
	</script>