<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>404 页面未找到</title>
  <style type="text/css">
    .status-page {
        height: 100%;
        background: #f5f6f6;
    }
    .st-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
    }
    .status-page h2 {
        font-size: 24px;
        font-weight: normal;
        margin-top: 125px;
        line-height: 30px;
    }
    .st-404 {
        width: 440px;
        height: 300px;
        background: url(/assets/app/images/404.png) right top no-repeat;
        margin: -200px 0 0 -220px ;

    }
    .back-home {
        display: inline-block;
        width: 114px;
        height: 32px;
        line-height: 32px;
        background-color: #fff;
        border: 1px solid #d9d9d9;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        color: #404040;
    }
  </style>
</head>
<body class="status-page">
  <div class="st-wrapper st-404">
    <h2>找不到您请求的页面，<br/>请检查链接或返回主页。</h2>
    <a href="/" class="back-home">返回首页</a>
  </div>
</body>
</html>