123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <html>
- <head>
- <title>500错误页面</title>
- <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
- </head>
- <style type="text/css">
- body, pre, p, ul, ol, li, dl, dt, dd, form, input, hr, h1, h2, h3, h4,
- h5, h6 {
- margin: 0;
- padding: 0;
- }
- body {
- color: #606060;
- display: table;
- font-family: "Microsoft YaHei", Arial, sans-serif, 宋体;
- font-size: 14px;
- width: 100%;
- margin: 0 auto;
- }
- .door_wrapper {
- width: 1004px;
- margin: 0 auto;
- background: url(/assets/images/door-header-bg.png) top right
- no-repeat;
- }
- .door_header {
- color: #d7000f;
- font-size: 18px;
- height: 76px;
- padding-bottom: 0px;
- padding-left: 2px;
- padding-top: 0px;
- position: relative;
- }
- .door_header img {
- margin: 0
- }
- .door_header .head-right-wrapper {
- float: right;
- padding-right: 70px;
- font-size: 14px;
- }
- .door_footer {
- height: 36px;
- line-height: 18px;
- border-bottom: 5px solid #947443;
- text-align: center;
- background: #196ccc;
- font-size: 12px;
- }
- .door_footer span {
- display: inline-block;
- margin-right: 10px;
- padding-top: 10px;
- color: #fff;
- }
- .door-frame {
- background: url(/assets/images/bg-content.png) no-repeat;
- border: 0px solid #ff2222;
- }
- .doorframe-content {
- border-radius: 8px 8px 0 0;
- padding: 10px;
- }
- .information {
- width: 430px;
- margin: 10px auto;
- border: 0px solid #ff2222;
- }
- .fl {
- float: left;
- }
- .btn-wrapper {
- padding: 12px 0 0px 0;
- text-align: center;
- }
- .btn-wrapper .secondary-btn {
- margin-left: 12px;
- color: #444444;
- background: url(/assets/images/gray-btn-bg.png);
- }
- .ui-btn {
- color: #fff;
- font-family: "Microsoft yahei";
- height: 35px;
- line-height: 35px;
- width: 110px;
- }
- button {
- border: medium none;
- cursor: pointer;
- }
- .clearfix:after {
- clear: both;
- content: "";
- display: block;
- height: 0;
- }
- </style>
- <script type="text/javascript">
- function goPer() {
- window.location.href = '/index.html';
- }
- function getClientHeight(){
- var clientHeight=0;
- if(document.body.clientHeight&&document.documentElement.clientHeight)
- clientHeight = (document.body.clientHeight<document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
- else
- clientHeight = (document.body.clientHeight>document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
- if(clientHeight < document.body.scrollHeight)
- clientHeight = document.body.scrollHeight;
- return clientHeight;
- }
- </script>
- <body>
- <table border="0" align="center" cellpadding="0" cellspacing="0"
- style="margin: 0 auto">
- <tr>
- <td>
- <div class="door_wrapper" id='door_wrapper_div'>
- <div class="door_header">
- </div>
- <div class="door-frame" id='door-frame_div'>
- <div id="door-iframe" class="doorframe-content">
- <table border="0" align="center" cellpadding="0" cellspacing="0"
- style="margin: 0 auto">
- <tr>
- <td>
- <div id='main-con-div' class="information">
- <img id='errorpic' src="/assets/images/500.png"
- width=426 height=190 />
- <div style="line-height: 24px; margin: 12px 0 0 0;">
- 最可能的原因是:
- <div style='padding: 0 0 0 24px;'>•在地址中可能存在键入错误。</div>
- <div style='padding: 0 0 0 24px;'>•当您点击某个链接时,它可能已过期。</div>
- </div>
- <div class="clearfix" style="margin: 12px 0 0 0;">
- <span class="fl" style="color: red; line-height: 52px;">您可以尝试以下操作:</span>
- <div class="btn-wrapper fl">
- <button id='entpersonal' type="button"
- class="ui-btn secondary-btn" onClick="goPer()">进入首页</button>
- </div>
- </div>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div class="door_footer">
- <span>版权所有: 西安前沿动力软件开发有限责任公司
- | 请使用IE9.0以上版本,分辨率1024x768浏览 </span>
- </div>
- </div>
- </td>
- </tr>
- </table>
- <script>
- var bodyh = getClientHeight();
- if(bodyh>document.getElementById('door_wrapper_div').offsetHeight){
- var crH = bodyh - parseInt(document.getElementById('door_wrapper_div').offsetHeight);
- document.getElementById('door_wrapper_div').style.height=bodyh+"px";
- var o_dfd = parseInt(document.getElementById('door-frame_div').offsetHeight);
- document.getElementById('door-frame_div').style.height = (o_dfd + crH) +'px';
- var crHd2 = parseInt(crH/2);
- document.getElementById('main-con-div').style.margin = crHd2+"px auto";
- }
- </script>
- </body>
- </html>
|