


<!DOCTYPE html>
<html>
<head>
    <title>404错误页面</title>
    <meta name="author" content="" />
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=0,minimal-ui" />
    <meta name="format-detection" content="telephone=no" />
    <meta name="renderer" content="webkit" />
    <style>
        body,html {
            height: 100%;
        }
        body {
            font-size:14px;
            margin: 0px;
            line-height:2rem;
            background-color:#f6f7f8;
        }
        .layout {
            background: #fff;
            box-shadow: 0 1px 3px rgba(27,95,160,.1);
            height: 100%;
            max-width: 640px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }
       body p {
                text-align: center
            }
        .btn {
            display: inline-block;
            padding: 6px 12px;
            margin-bottom: 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.42857143;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            -ms-touch-action: manipulation;
            touch-action: manipulation;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-image: none;
            border: 1px solid transparent;
            border-radius: 4px;
        }

        .btn-primary {
            border: none;
            background: #2888e2;
            color: #ffffff;
            padding:5px 20px;
            margin-right:20px;
        }
        .btn-primary:hover{
            background: #196ebd;
        }
        a{text-decoration:none}
    </style>
</head>
<body>
    <div class="layout">
        <p><img src="/Areas/Member/Css/images/Loginlogo.png" /></p>
        <p style="font-size:16px;color:#808080">抱歉，您访问的页面不存在或已删除!</p>
    </div>
</body>
</html>