<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>404</title>
	<style>
        .main{
            width: 100%;
            height: 900px;
            margin: 0 auto;
            background: url('https://admin.site.my-qcloud.com/images/404.png') top left no-repeat;
            text-align: center;
            padding-top: 25%;
            background-position: top;
            background-size: 100%;
        }
        .main .title{
            font-weight: bolder;
            font-size: 54px;
            color: #999999;
        }
        .main .msg{
            font-weight: bolder;
            color: #999999;
            margin: 30px;
            padding-bottom: 30px;
        }
    </style>
</head>
<body>
    <div class="main">
        <div class="title">404</div>
        <div class="msg">抱歉,您访问的页面不存在!</div>
        <a class="go" href="/">返回首页</a>
    </div>
    <script>
        setTimeout(
            function () {
                window.location.href='/'
            }
           ,5000
        )
    </script>
</body>
</html>