﻿.msg-container {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .5);
}

.msg-container .msg-content {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -80px 0 0 -130px;
    width: 260px;
    min-height: 100px;
    padding: 10px;
    background-color: #ffffff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.msg-container .msg-content .title {
    padding: 20px 0 10px;
    font-size: 1.125rem;
    line-height: 30px;
    color: #666666;
    text-align: center;
    overflow: hidden;
    max-height: 80px;
}

.msg-container .msg-content .subtitle {
    padding: 10px 0;
    font-size: .750rem;
    line-height: 140%;
    color: #ababab;
}

.msg-container .msg-content em {
    display: inline-block;
    height: 30px;
    font-style: normal;
}

.msg-container .msg-content .ok_1 {
    padding-left: 40px;
    background: url("../images/msg/ok_1.png") no-repeat left center;
    background-size: auto 30px;
}

.msg-container .msg-content .ok_2 {
    padding-left: 40px;
    background: url("../images/msg/ok_2.png") no-repeat left center;
    background-size: auto 30px;
}

.msg-container .msg-content .ok_3 {
    padding-left: 40px;
    background: url("../images/msg/ok_3.png") no-repeat left center;
    background-size: auto 30px;
}

.msg-container .msg-content .err_1 {
    padding-left: 40px;
    background: url("../images/msg/cancel_1.png") no-repeat left center;
    background-size: auto 30px;
}

.msg-container .msg-content .buttons {
    display: -webkit-box;
    display: -moz-box;
    display: box;
}

.msg-container .msg-content .buttons button {
    display: block;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    width: 100%;
    height: 35px;
    font-size: .875rem;
    line-height: 35px;
    text-align: center;
    color: #ffffff;
    font-family: "microsoft yahei";
    border: none;
    outline: none;
    background-color: #065fad;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -wekbit-box-sizing: border-box;
    box-sizing: border-box;
}

.msg-container .msg-content .buttons .cancel {
    background-color: #959595;
    margin-right: 3px;
}

.msg-container .msg-content .buttons .cancel~.ok {
    margin-left: 3px;
}