<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
    &lt;head&gt;
        &lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
        &lt;title&gt;平顶山市人民政府门户网站！&lt;/title&gt;
        &lt;link href="css/404.css" rel="stylesheet" type="text/css" /&gt;
        &lt;script src="js/jquery-1.7.2.min.js"&gt;&lt;/script&gt;
        &lt;script type="text/javascript"&gt;
            $(function() {
                var h = $(window).height();
                $('body').height(h);
                $('.mianBox').height(h);
                centerWindow(".tipInfo");
            });

            //2.将盒子方法放入这个方，方便法统一调用
            function centerWindow(a) {
                center(a);
                //自适应窗口
                $(window).bind('scroll resize',
                        function() {
                            center(a);
                        });
            }

            //1.居中方法，传入需要剧中的标签
            function center(a) {
                var wWidth = $(window).width();
                var wHeight = $(window).height();
                var boxWidth = $(a).width();
                var boxHeight = $(a).height();
                var scrollTop = $(window).scrollTop();
                var scrollLeft = $(window).scrollLeft();
                var top = scrollTop + (wHeight - boxHeight) / 2;
                var left = scrollLeft + (wWidth - boxWidth) / 2;
                $(a).css({
                    "top": top,
                    "left": left
                });
            }
        &lt;/script&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class="mianBox"&gt;
            &lt;img src="images/yun0.png" alt="" class="yun yun0" /&gt;
            &lt;img src="images/yun1.png" alt="" class="yun yun1" /&gt;
            &lt;img src="images/yun2.png" alt="" class="yun yun2" /&gt;
            &lt;img src="images/bird.png" alt="" class="bird" /&gt;
            &lt;img src="images/san.png" alt="" class="san" /&gt;
            &lt;div class="tipInfo"&gt;
                &lt;div class="in"&gt;
                    &lt;div class="textThis"&gt;
                        &lt;h2&gt;很抱歉，此页面已关闭！&lt;/h2&gt;
                        &lt;p&gt;&lt;span&gt;您可以手动&lt;a id="href" href="http://www.pds.gov.cn/"&gt;跳转至首页&lt;/a&gt;或等待&lt;b id="wait"&gt;6&lt;/b&gt;秒后自动跳转&lt;/span&gt;&lt;/p&gt;
                        &lt;p&gt;&lt;span&gt;或者您可以给我们&lt;a href="http://www.pds.gov.cn/ErrorCorrection/ErrorCorrection.html?url=http%3A%2F%2Fwww.pds.gov.cn%2F"&gt;提交错误&lt;/a&gt;信息!&lt;/span&gt;&lt;/p&gt;
                        &lt;script type="text/javascript"&gt;                            (function() {
                                var wait = document.getElementById('wait'), href = document.getElementById('href').href;
                                var interval = setInterval(function() {
                                    var time = --wait.innerHTML;
                                    if (time &lt;= 0) {
                                        location.href = href;
                                        clearInterval(interval);
                                    }
                                    ;
                                }, 1000);
                            })();
                        &lt;/script&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre></body></html>