<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" />
        <title>404 Not Found</title>
    <style>
        body{
            margin: 0;
            display: flex;
            width: 100vw;
            height: 70vh;
            justify-content: center;
            align-items: center;
            font-family: "Noto Sans SC",sans-serif;
        }
        body::-webkit-scrollbar {  
            display: none;
        }  
        .text-box{
            width: 100%;
            max-width: 400px;
            padding: 0 100px;
        }
        .img{
            max-width: 100%;
        }
        .title{
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
        }
        .des,.link{
            font-size: 14px;
            color: #333;
            line-height: 24px;
            text-decoration: none;
            margin: 0;
        }
		.link{color:#ff0000;}
        @media screen and (max-width:1024px){
            body{
                flex-direction: column;
            }
        }
        @media screen and (max-width:640px){
            .text-box{
                box-sizing: border-box;
                padding: 0 4%;
            }
        }
    </style>
    </head>

    
    <body>
        <img src="//static2.xunxiang.site/dist/theme/static/imgs/404.jpg" alt="404 Not Found" class="img">
        <div class="text-box">
            <h2 class="title">404 Not Found</h2>
            <p class="des">
                抱歉，页面无法访问...
            </p>
            <p class="des">
                可能原因：网址有错误 >请检查地址是否完整或存在多余字符;<br>网址已失效 >可能页面已删除，活动已下线等<br>
            </p>
            <p class="des">&nbsp;</p>
            <p class="des">
                <a href="http://www." class="link" rel="nofollow">返回首页</a>
                <a href="http://www." class="link" rel="nofollow">Homepage</a>
            </p>
        </div>
    </body>

</html>

