<!DOCTYPE html>
<html lang="en">
<head> <meta name="keywords" content="keywords_temp" />
<meta name="description" content="description_temp" />

    <meta charset="UTF-8">
    <title>404</title>
</head>
<style>
    html,body{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    .box{
        width: 100%;
        height: 100%;
        background: url("image/bg.jpg") no-repeat center top / cover;
        position: relative;
        overflow: hidden;
    }
    .content{
        width: 100%;
        padding: 0 13px;
        text-align: center;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        box-sizing: border-box;
    }
    .content img{
        max-width: 100%;
    }
    .content p{
        font-size: 24px;
        color: #ffffff;
        margin: 47px 0;
    }
    .content a{
        display: inline-block;
        width: 160px;
        height: 50px;
        line-height: 50px;
        background-color: #ffa630;
        color: #ffffff;
        border-radius: 25px;
        text-decoration: none;
    }
</style>
<body>
    <div class="box">
        <div class="content">
            <img src="image/404.png" alt="">
            <p>对不起，您访问的页面并不存在</p>
            <a href="index.html">返回首页</a>
        </div>
    </div>
</body>
</html>