<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'/> 
<title>跳转提示</title>

<style type="text/css">
body{padding:0px;margin: 0px;font-family: 'Microsoft YaHei';color: #333;background-color: #eeeeee;}
input,button{ border:solid 1px #dcdcdc;height:30px; line-height:30px; padding:3px 6px;color:#999;background:#fff; vertical-align: middle;}
select{border:solid 1px #ccc;}
img{border:none;}
a{ text-decoration: none;color:#3361AD;}
.system-message{ padding:10pxx; }
.system-message .jump{ padding-top: 10px; font-size:14px;}
.system-message .success,.system-message .error{ line-height: 1.6em; font-size: 18px;word-break:break-all; }
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
#body_box{width:400px;height:auto;border:7px solid #09C;border-radius:5px;position: absolute;left: 50%;top: 50%;overflow: hidden;display:block;background-color: #FFF;border-radius: 5px;-moz-border-radius:5px;-webkit-border-radius:5px;border: 1px solid #CCC; *overflow-y:visible;-webkit-box-shadow:0 0 8px rgba(0,0,0,.5);-moz-box-shadow:0 0 8px rgba(0,0,0,.5);box-shadow:0 0 8px rgba(0,0,0,.5);margin-top: -150px;margin-right: 0;margin-bottom: 0;margin-left: -200px;}
#body_box .body_box_content{padding:20px;}
#body_box .title{font-size:16px;font-weight:bold;height: 40px;line-height: 40px;overflow:hidden;color:#333;font-family: "微软雅黑";border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #CCC;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 10px;}
.space,.space30{display:block; float:right; width:10px; background-color:#57c0ff; height:100%; margin-left:5px;}
.space30{width:30px;}
.error{font-size: 12px; color: #ff3300;}
.error a{color: #ff3300;}
</style>
</head>
<body>
<!--顶部开始-->
<div>

	<div id="body_box">
		<div class="title">BodyCMS 提示</div>
		<div class="body_box_content">	
			
			<div class="p10">
			<div class="system-message">
						<p class="error">× 栏目不存在</p>			<p class="detail"></p>
			<p class="jump">
			页面自动 <a id="href" href="javascript:history.back(-1);">跳转</a> 等待时间： <b id="wait">3</b>
			</p>
			</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>
			</div>
		
		</div>
	</div>

</div>
</body>
</html>