<!DOCTYPE html>
<html lang="cn">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body {
            background-color: #fff;
            color: #636b6f; 
            font-family: 'Raleway', sans-serif;
            font-weight: 100;
            height: 100vh;
            margin: 0;
            position: relative;
        }

        body .bc {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            flex-direction: column;
        }

        body .bc .four {
            font-size: 84px;
            color: red;

        }

        body .bc .err {
            font-size: 84px;
            color: #636b6f;
        }

        body .bc .index a {
            color: #551A8B;
        }
    </style>
</head>

<body>
<div class="bc">
    <div class="four">404</div>
    <div class="err">error</div>
    <div class="index">
        <a href="/">返回首页</a>
    </div>
</div>
</body>

</html>
