/*dialog（消息框）*/

.dm-mask {
    width: 100%;
    height: 100%;
    z-index: 9990;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
}

.dm-msg {
    width: 76%;
    background-color: #fff;
    border-radius: 6px;
    position: fixed;
    z-index: 9991;
    top: 50%;
    left: 12%;
    right: 12%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    padding-top: 4px;
}

.dm-msg .title {
    padding: 6px 10px;
    line-height: 1.4;
    color: #000;
    text-align: center;
}

.dm-msg .txt {
    padding: 10px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}

.dm-msg .btn-box {
    background-color: #fafafa;
    line-height: 44px;
    text-align: center;
    color: #888;
    font-weight: bold;
    margin-top: 4px;
}

.dm-msg .btn-box .enter {
    /* color: #51BBED; */
    color: #ffffff;
    background: -webkit-linear-gradient(left, #04C465, #73D453);
    background: linear-gradient(to right, #04C465, #73D453);
}

.dm-tip {
    max-width: 90%;
    /* background-color: rgba(0, 0, 0, .6);
    color: #fff; */
    line-height: 1.4;
    padding: 22px 30px;
    border-radius: 4px;
    font-size: 15px;
    position: fixed;
    z-index: 9992;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    margin-top: 80px;
    color: #333;
    background-color: #fff;
}

.dm-selMod {
    width: 96%;
    position: fixed;
    z-index: 9993;
    bottom: 0;
    left: 2%;
}

.dm-selMod .cancel {
    display: block;
    text-align: center;
    border-radius: 4px;
    line-height: 50px;
    background-color: #fff;
    font-size: 15px;
    margin: 12px 0;
    color: #666666;
}

.dm-selMod ul {
    background-color: #fff;
    font-size: 15px;
    line-height: 50px;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}