.dialog {
    position: absolute;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.dialog-mask {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color:#000000;
    opacity: 0.5;
}

.dialog-container {
    position: absolute;
    z-index: 1000;
    display: block;
    top: 10%;
    left: 8%;
    width: 84%;
    background-color: #ffffff;
    border: 0.05rem solid #ffffff;
    border-radius: 0.6rem;
}

.dialog-head {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #2073ed;
}

.dialog-head img {
    display: block;
    width: 90%;
    margin: 0 auto;
}

.dialog-content {
    /*width: 50%;*/
    display: table;/*告诉浏览器使用最小宽度*/
    max-width: 90%;
    margin: 0 auto;
}

.dialog-content img {
    display: block;
    float: left;
    width: 4rem;
    /*width: 43%;*/
    border-radius: 50%;
    margin-right: 0.4rem;
}

.dialog-content div {
    float: left;
    /*width: 51%;*/
    max-width: 70%;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.7rem;
}

.dialog-checkbox {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.dialog-btn-group {
    width: 100%;
    color: #2073ed;
    text-align: center;
    line-height: 2.5rem;
}

.dialog-btn-left {
    float: left;
    width: 29%;
    border-top: 0.05rem solid #e0e0e0;
    border-right: 0.05rem solid #e0e0e0;
}
.dialog-btn-right {
    float: left;
    width: 70%;
    border-top: 0.05rem solid #e0e0e0;
}

