<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>404</title>
    <style>
        .error {
            background: #FFFFFF;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .error img {
            display: block;
            margin: 0 auto;
        }
        .error >a {
            width: 200px;
            line-height: 64px;
            text-align: center;
            color: #333;
            font-size: 30px;
            text-decoration: none;
            border: 1px solid #333333;
            border-radius: 8px;
        }

    </style>
</head>
<body>
<div class="error">
    <img src="/home/images/404.png" />
    <a href="index.html" class="error_back">返回首页</a>
</div>
</body>
</html>
