﻿/*弹出层----开始*/
.dialog {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0vw;
    left: 0%;
    z-index: 1000;
    overflow: hidden;
}

.dialog-max {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
}

.dialog-content {
    max-width: 420px;
    min-width: 250px;
    text-align: center;
    width: 80%;
    padding: 10px;
    top: 50%;
    left: 50%;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-80%);
    -moz-transform: translateX(-50%) translateY(-80%);
    -ms-transform: translateX(-50%) translateY(-80%);
    transform: translateX(-50%) translateY(-80%);
}

.dialog-title {
    display: block;
    margin: auto;
    padding: 5px;
    font-weight: bold;
}

.dialog-content .dialog-msg-box {
    padding-top: 10px;
    width: 100%;
    display: table;
    min-height: 30px;
}

    .dialog-content .dialog-msg-box .dialog-msg {
        width: 100%;
        overflow: hidden;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        min-height: 30px;
        font-size: 15px;
    }

        .dialog-content .dialog-msg-box .dialog-msg img {
            width: 100%;
        }

.dialog-content .dialog-bottom {
    border: 0px;
    padding-top: 15px;
}

    .dialog-content .dialog-bottom input {
        width: 80px;
        height: 30px;
        font-size: 15px;
        font-weight: bold;
        border: none;
        background: #154eca;
        color: White;
        cursor: pointer;
        -webkit-appearance: none; /*ios 默认内阴影*/
        outline: none;
    }
/*弹出层----结束*/
