404.jsp 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ include file="/base.jsp"%>
  3. <html>
  4. <head>
  5. <title>您访问的页面不存在404</title>
  6. <style type="text/css">
  7. * {margin: 0;padding: 0;}
  8. body {background: #666666;color: #FEFEFE;}
  9. .W-body {background: #666;}
  10. .e-4-wrap {background: #3b3b3b url(${ctximg}/static/sns/images/err-404.jpg) no-repeat 0 0;margin: 5% auto 0;width: 640px;overflow: hidden;}
  11. .e-4-wrap .fl-1,.e-4-wrap .fl-2 {float: left;height: 420px;position: relative;}
  12. .e-4-wrap .fl-1 {width: 283px;text-align: center;}
  13. .e-4-wrap .fl-2 {width: 357px;}
  14. .e-4-title {position: absolute;top: 302px;width: 283px;}
  15. .e-4-title span {color: #fff;font: 700 90px/100px 'SimHei';}
  16. .e-4-txt-wrap {padding: 20px;overflow: hidden;}
  17. .e-4-txt-wrap h2 {font: 30px/60px 'SimHei';color: #DD4C39;margin-bottom: 10px;}
  18. .e-4-t-1 {font: 15px/24px 'SimHei';color: #777;}
  19. .e-4-txt-wrap h4 {font: 18px/26px 'SimHei';color: #aaa;}
  20. .e-4-t-1 a {color: #2F75BB;}
  21. </style>
  22. </head>
  23. <body>
  24. <!-- 主体 开始-->
  25. <div class="e-4-wrap">
  26. <div class="fl-1">
  27. <div class="e-4-title"><span>404</span></div>
  28. </div>
  29. <div class="fl-2">
  30. <div class="e-4-txt-wrap">
  31. <h2>找不到该页面!</h2>
  32. <div>
  33. <p class="e-4-t-1">无法访本页的原因是:</p>
  34. <p class="e-4-t-1">你使用的URL可能拼写错误或者它只是临时脱机</p>
  35. <p class="e-4-t-1">所访问的页面不存在或被管理员已删除</p>
  36. </div>
  37. <br>
  38. <br>
  39. <div>
  40. <h4>请尝试以下操作:</h4>
  41. <p class="e-4-t-1">1、尝试按F5进行页面刷新</p>
  42. <p class="e-4-t-1">2、重新键入URL地址进入访问</p>
  43. <p class="e-4-t-1">3、或者去 <a href="/" title="首页">首页</a>,<a href="javascript:window.history.go(-1)" title="返回">返回</a></p>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. <!-- 主体 结束-->
  49. </body>
  50. </html>