/*提示框*/
.d-alert {
    width: 500px;
    min-height: 207px;
    background-color: #ffffff;
    box-shadow: 5px 5px 5px #CCC9C9;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -103px;
    margin-left: -250px;
    z-index: 999;
}
.d-alert .d-banner {
    width: 100%;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #ECECEC;
}
.d-alert .d-banner .fl {
    float: left;
}
.d-alert .d-banner .fr {
    float: right;
}
.d-alert .d-banner .prompt {
    color: #0A427D;
    margin-left: 20px;
    font-size: 18px;
}
.d-alert .d-banner .prompt-close-btn {
    margin-right: 10px;
    margin-top: 12px;
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 14px;
    text-align: center;
    color: #0A427D;
    cursor: pointer;
}
.d-alert .d-banner .prompt-close-btn:hover {
    background-color: #9ACAFC;
}
.d-alert .d-content {
    width: 100%;
    min-height: 100px;
}
.d-alert .d-content p {
    text-align: center;
    line-height: 1.6em;
    font-size: 16px;
    color: #535353;
}
.d-alert .d-footer {
    border-top: 1px solid #ECECEC;
    width: 100%;
    height: 63px;
    text-align: center;
}
.d-alert .d-footer .prompt-sure-btn {
    width: 90px;
    height: 40px;
    line-height: 40px;
    margin: 10px auto;
    background-color: #0A427D;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}