<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>跳转提示</title>
    <style type="text/css">
        *{ padding: 0; margin: 0; }
        body{font-size:12px;font-family:"微软雅黑";-webkit-text-size-adjust:none;}
        #container{width:100%;min-width:980px;}
        .layer_box{ width:490px; height:160px; position:fixed; top:200px; left:50%; margin-left:-250px; border:1px solid #ccc; -moz-box-shadow:0 0px 4px #7e7e7e;-webkit-box-shadow:0 0px 4px #7e7e7e;box-shadow:0 0px 4px #7e7e7e;behavior:url(js/PIE.htc); float:left;}
        .layer{ width:490px; height:160px; float:left; background:#fff; *margin-left:1px; *margin-top:1px;}
        .layer dl{ width:430px; height:100px; margin:30px;}
        .layer dt{ width:76px; height:83px; float:left;}
        .layer dd{ width:336px; float:left; margin-left:18px;}
        .layer dd.tit{ font-size:18px; color:#000;}
        .layer dd.txt{ color:#666; line-height:28px;}
        .layer dd.txt a.jump_to{ width:55px; height:25px; line-height:25px; display:inline-block; background:url(../Images/jump_bg.png) left top no-repeat; padding-left:25px; color:#666;}
        .layer dd.txt a.home{ width:58px; height:26px; line-height:26px; display:inline-block; background:url(../Images/home.png) left top no-repeat; padding-left:27px; color:#fff;}
        .layer dd.txt a.member{ width:55px; height:25px; line-height:25px; display:inline-block; background:url(../Images/member.png) left top no-repeat; padding-left:25px; color:#666; margin-left:10px;}
        .layer dd.txt a:hover{ text-decoration:underline;}
    </style>
</head>
<body>
<div class="content-wr">
    <div class="container ma minh700 cw">
        <div id="container">
            <div class="layer_box" >
                <div class="layer">
                    <dl>
                        <dt><img src="/static/web/images/error.png"></dt>
                        <dd class="tit">抱歉，您访问的页面不存在</dd>
                        <dd class="txt">温馨提示：您长时间停留此页面，系统将自动跳转。等待时间： <b id="wait">3</b><br/>
                            <a id="href" href="http://wbbgk.cn/cn" class="jump_to">
                                点击跳转                            </a>
                        </dd>
                    </dl>
                </div>
            </div>
        </div>
    </div>
</div>
<script type="text/javascript">
    (function(){
        var wait = document.getElementById('wait'),href = document.getElementById('href').href;
        var interval = setInterval(function(){
            var time = --wait.innerHTML;
            if(time <= 0) {
                location.href = href;
                clearInterval(interval);
            };
        }, 1000);
    })();
</script>
</body>
</html>