﻿<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>404页面</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            text-decoration: none;
            font-family: "微软雅黑";
        }

        .sls {
            width: 700px;
            margin: 0 auto;
        }

            .sls .pic {
                margin: 0 auto;
                display: block;
                width: 450px;
            }

            .sls h1 {
                text-align: center;
                color: #767676;
                letter-spacing: 2px;
                line-height: 90px;
                font-weight: 100;
            }

            .sls p {
                font-size: 20px;
                text-align: center;
                color: #767676;
            }

                .sls p a {
                    color: #4498fb;
                }

        .sls-con {
            width: 800px;
            margin: 80px auto 0;
            overflow: hidden;
        }

            .sls-con h4 {
                line-height: 40px;
                font-size: 14px;
            }

                .sls-con h4 span {
                    float: left;
                    display: inline-block;
                    width: 100px;
                }

                .sls-con h4 a {
                    display: block;
                    width: 100px;
                    float: right;
                    height: 40px;
                    line-height: 40px;
                    text-align: right;
                }

            .sls-con a {
                display: block;
                width: 390px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                color: #555;
                line-height: 30px;
                font-size: 12px;
            }

        .sls-left {
            width: 380px;
            float: left;
        }

        .sls-right {
            width: 380px;
            float: left;
            margin-left: 40px;
        }

        @media (max-width: 1366px) {
            .sls .pic {
                margin: -30px 0 -90px;
                display: block;
            }

            .sls-con {
                width: 800px;
                margin: 50px auto 0;
                overflow: hidden;
            }
        }
    </style>
</head>

<body>
    <div>
        <div class="sls">
            <img class="pic" src="/images/24.png">
            <h1><span id="miaoshu">5</span>秒后将返回首页 </h1>
        </div>
    </div>
    <script>
        var ms = 6;
        function fanhui() {
            if (ms <= 0) {
                location.href = "/";
            }
            else {
                ms--;
                document.getElementById("miaoshu").innerText = ms;
                setTimeout(fanhui, 1000);
            }
        }
        fanhui();
    </script>
</body>
</html>
