<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <title>错误提示</title>
        <link href="__PUBLICCSS__/style.css" rel="stylesheet" type="text/css">
        <style>
            body{

                color:#555;
                font:normal 14px/1.5 tahoma,"Microsoft YaHei", Simsun, "Arial Unicode MS",Mingliu,Arial,Helvetica;
                -webkit-font-smoothing: antialiased;

            }

            .error{ border:#1d5e84 1px solid; width:700px; height:300px; margin:0 auto; margin-top:200px; padding:50px 0; background:url(/Public/images/error.jpg) no-repeat center 50px; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px;}
            .error span{ line-height:50px; display:block; text-align:center;}
            .error .span1{ font-size:16px;padding-top:120px; font-weight:bold;}
            .error .span2{ color:#8c8c8c; font-weight:bold;}
            .error .span3{ font-weight:bold;}
            .error .span3 a{ background:#1d5e84; width:80px; height:35px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; display:inline-block; color:#fff; text-align:center; line-height:35px; text-decoration:none;}


        </style>

    </head>

    <body>
        <div class="error">
            <span class="span1">模块不存在</span>
            <span class="span3"><b id="wait">3</b>秒后返回 或者点击&nbsp;&nbsp;<a id="href" href="javascript:history.back(-1);">返回</a>

            </span>
        </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>