<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>友情提示</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=yes">
</head>
<style>
    .manage-shade {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(221,221,221,.3);
        z-index: 99;
    }

    .manage-modal {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 420px;
        height: 280px;
        background-color: #fff;
    }

    .manage-modal-tip {
        height: 35px;
        line-height: 35px;
        font-size: 15px;
        border-bottom: 1px solid #ddd;
        color: #287dcd;
    }

    .modal-close {
        float: right;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50%;
        margin-right: -8px;
        margin-top: -8px;
        background-color: #fff;
        color: #000;
    }

    .modal-close:hover {
        cursor: pointer;
        color: #999;
    }

    .modal-content {
        width: 100%;
    }


    p.modal-tip-txt {
        width: 90%;
        margin: auto;
        font-size: 15px;
        font-weight: bold;
        letter-spacing:0.5px;
    }

    .modal-footer {
        text-align: center;
    }

    .modal-btn {
        padding: 5px 10px;
        color: #fff;
        border: none;
    }

    .modal-btn:hover {
        color: #999;
    }

    .btn-add {
        background-color: #287dcd;
    }
    ul{
        list-style: none;
        width: 95%;
        margin: auto;
        padding: 10px 0;
        font-size: 14px;
        font-weight: bold;
        letter-spacing:0.6px;
    }
</style>
<body>
<div class="manage-shade">
    <div class="manage-modal">
        <div class="manage-modal-tip">
            &nbsp;&nbsp;友情提示
            <!-- <img id="modal-close" src="images/close.png" alt="" width="16px" height="16px"> -->
            <div class="modal-close" id="modal-close">×</div>
        </div>
        <div class="modal-content">
            <p class="modal-tip-txt">
                造成无法访问的原因可能如下:
                <ul>
                    <li>原因一：您的域名尚未添加至白名单;</li>
                    <li>原因二：您的网站存在不适宜内容，无法进行正常访问;</li>
                    <li>注意：请勿直接使用IP直接访问网站，需添加域名白名单方可正常访问；</li>
                    <li>工信部备案提示：为了规范互联网信息服务活动，促进互联网服务健康有序发展，根据国务院令第292号《互联网信息服务管理办法》和信息产业部令第33号《非经营性互联网信息服务备案管理办法》规定，国家对互联网信息服务实行备案制度。未履行备案手续的，不得从事互联网信息服务。</li>
                </ul>

            </p>
        </div>
    </div>
    <div style="width:100%;height: 30px;position:fixed;bottom:0;">
        &nbsp;&nbsp;<a target="_blank" href="http://beian.miit.gov.cn">浙ICP备16020621号-6</a>
    </div>
</div>

<script type="text/javascript">

    window.onload=function(){
        var oShade = document.querySelector(".manage-shade"),
                oClose = document.querySelector("#modal-close");

        oClose.onclick = function() {//提示关闭
            oShade.style.display = "none";
        }
    }
</script>
</body>
</html>
