.popMask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 900000;
    -moz-opacity: 0.4;
    opacity: .40;
    filter: alpha(opacity=40);
}

.popUp {
    position: fixed;
    width: 400px;
    border: 1px solid #f2f5f7;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -150px;
    z-index: 900001;
    background: #fff;
    border-radius: 4px;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.popUp h2 {
    line-height: 24px;
    font-size: 18px;
    border-radius: 4px 4px 0 0;
    text-align: center;
    margin-top: 10px;
}

.popUp_cont {
    word-wrap: break-word;
    white-space: normal;
    word-break: break-all;
    font-size: 16px;
    text-align: center;
    margin: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.popUp_btn {
    text-align: center;
    height: 50px;
    line-height: 50px;
}

.popUp_btn span {
    color: #409EFF;
    border-radius: 3px;
    min-width: 94px;
    line-height: 26px;
    font-size: 14px;
    letter-spacing: 0px;
    opacity: 1;
    cursor: pointer;
    padding: 5px 30px;
    margin: 0 6px;
    border: 1px solid #409EFF;
}

.popUp_btn span.spanBlue {
    background-image: linear-gradient(6deg, rgba(98, 131, 236, 0.98) 0%, #5CB5ED 100%);
    color: #fff;
    /*border: none;*/
}

.popUp_btn span.spanBlue:hover {
    background-image: linear-gradient(6deg, rgba(98, 131, 236, 0.98) 0%, #5CB5ED 100%);
}
