﻿.dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 600px;
    min-height: 400px;
    z-index: 9999;
    display: none;
}

    .dialog.dialog-overlay {
        background-image: url('img/btm.png');
    }

    .dialog .dialog-wrapper {
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: white;
        z-index: 99999;
    }

    .dialog .dialog-success {
        background: url('img/ic-success.png') no-repeat scroll center center;
        height: 50px;
        width: 100%;
    }

    .dialog .dialog-warn {
        background: url('img/ic-warn.png') no-repeat scroll center center;
        height: 50px;
        width: 100%;
    }

    .dialog .dialog-closeBtn {
        background: url(img/close.png) no-repeat scroll center center;
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 9999;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .dialog .dialog-title {
        font-family: 'Microsoft YaHei';
        font-size: 18px;
        color: #333333;
        text-align: center;
        width: 100%;
        display: inline-block;
        margin: 26px auto 10px;
    }

    .dialog .dialog-content {
        font-family: 'Microsoft YaHei';
        font-size: 14px;
        line-height: 18px;
        color: #666666;
        width: 100%;
        display: inline-block;
        margin: 10px auto 18px;
    }

    .dialog .dialog-btnList {
        width: 100%;
        text-align: center;
        display: inline-block;
        height: 26px;
    }

        .dialog .dialog-btnList .dialog-btn {
            cursor: pointer;
            margin: 0px;
            display: inline-block;
            height: 14px;
            padding: 10px 30px;
            text-align: center;
            border: 1px solid #dddddd;
            color: #333333;
            border-radius: 4px;
            font-size: 14px;
            line-height: 1;
            margin: 0 10px;
            font-family: 'Microsoft YaHei';
        }

            .dialog .dialog-btnList .dialog-btn.dialog-ok {
                background-color: #f74c4c;
                color: white;
                border: 1px solid #f74c4c;
                box-shadow: 0 0px 4px 0px #f74c4c;
            }

                .dialog .dialog-btnList .dialog-btn.dialog-ok:hover {
                    box-shadow: 0 0px 10px 0px #f74c4c;
                }

            .dialog .dialog-btnList .dialog-btn.dialog-normal {
                background-color: white;
                border: 1px solid #dddddd;
                color: #333333;
            }

            .dialog .dialog-btnList .dialog-btn.dialog-cancel {
                background-color: #dddddd;
                color: #666666;
                border: 1px solid #dddddd;
            }
