@charset "utf-8";
.navDialog {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 10001;
    top: 0;
    left: 0;
}
.navDialog .content {
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    width: 425px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -140px 0 0 -200px;
    background-color: #fff;
    border-radius: 10px;
    /*box-shadow: 0 0 5px 0 #e0e0e0;*/
    padding: 190px 90px 0;
    line-height: 1.4;
}
.navDialog .content a {
    display: block;
    color: #20a0ff;
    font-size: 20px;
    margin-top: 20px;
}
.navDialog .content:before {
    content: '';
    position: absolute;
    top: -140px;
    left: 63px;
    width: 300px;
    height: 313px;
    background: url('../images/_04_dev-platform/dialog.png') no-repeat;
}
.navDialog .close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: url('../images/_04_dev-platform/close.png') 2px 2px no-repeat;
}
/*.navDialog .close:hover {*/
    /*background-position: -12px 0;*/
/*}*/