<!DOCTYPE html>
<html lang="en"
      xmlns="http://www.w3.org/1999/xhtml"
      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
    <meta charset="UTF-8">
    <title>404 真不巧！</title>
    <style>
        body {font-size: 16px; padding: 0; margin: 0;}
        h3 { text-align: center; font: bold 32px/138px 'Microsoft YaHei UI'; color: #222;}
        p {line-height: 34px; color: #666; width: 500px; margin: 0 auto;}
        img {width: 600px; height: 600px; display: block; margin: 10px auto 0;}
    </style>
</head>
<body>
<h3>Sorry... 真不巧,网页走丢了！</h3>
<p>您好，似乎你寻找的网页已迁移或走丢了,<span id="showTime"></span>秒后将跳转主站首页或<a id="returnIndex" href="/" style="text-decoration: none">点击返回首页！</a><br></p>
<img  src="/common/image/shengji.gif" width="700" height="700">
</body>
<script src="/masterStation/pc/style/jquery.js"></script>
<script >
    var time=5;
    $("#showTime").text(time);
    $(function (){
        var idInt = setInterval(function(){
            time--
            if(time>0){
                $("#showTime").text(time);
            }else{
                //window.location.href="";
                //clearInterval(idInt);//关闭定时器

            }

        },1000);
    })
</script>
</html>
