﻿<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>404，您访问的网页丢失了</title>
</head>
<body>
    <style>
        body {
            background: url("/content/images/bodybg.png")no-repeat center #acd7fa;
            background-size: cover;
        }

        .errorpage {
            width: 1200px;
            margin: 0 auto;
            height: 100vh;
            display: flex;
            align-items: center;
        }

            .errorpage .errortitle {
                margin-right: 90px;
            }

                .errorpage .errortitle img {
                    max-width: 100%;
                }

            .errorpage .errorright {
                display: flex;
                align-items: flex-start;
                flex-direction: column;
            }

                .errorpage .errorright img {
                    max-width: 100%;
                }

                .errorpage .errorright .errortext {
                    font-size: 26px;
                    color: #000000;
                    line-height: 30px;
                    margin: 30px 0 65px 0;
                }

                .errorpage .errorright a {
                    width: 150px;
                    height: 42px;
                    line-height: 42px;
                    text-align: center;
                    border-radius: 30px;
                    background: #1472ba;
                    font-size: 15px;
                    color: #ffffff;
                    display: inline-block;
                    text-decoration: none;
                    transition: all 0.2s linear 0s;
                }

                    .errorpage .errorright a:hover {
                        background: #006DB2;
                    }

                    .errorpage .errorright a:active {
                        position: relative;
                        top: 2px;
                    }
    </style>


    <div class="errorpage">
        <div class="errortitle">
            <img class="error404" src="/content/images/404.png" />
        </div>
        <div class="errorright">
            <img src="/content/images/sorry.png" />
            <div class="errortext">对不起！您访问的网页丢失了…</div>
            <div class="errorlink"><a href="/">返回首页<i></i></a></div>
        </div>

    </div>
</body>
</html>
