<!DOCTYPE html>
<html lang="zh">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" charset="UTF-8">
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <meta charset="UTF-8">
    <title>访问出错</title>
    <style>
        body {
            background-color: #f9f9f9;
            font-family: Arial, sans-serif;
            height: 100vh;
            text-align: center;
        }
        .main {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .main .error {
            width: 80vw;
        }
        .main .error .title {
            color: #767676;
            font-weight: 500;
            font-size: 14px;
        }
        .main .error .message {
            margin-top: 6px;
            color: #e88793;
            font-size: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    </style>
</head>
<body>
    <div class="main">
        <div class="pic"><img src="/assets/images/error_page.png" alt="error"/></div>
        <div class="error">
            <div class="title">访问出错 ‼️</div>
            <div class="message">Page not found</div>
        </div>
    </div>
</body>
</html>