.common-alert-mask {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

.common-alert {
    max-width: 446px;
    min-width: 396px;
    border-radius: 7px;
    background: rgba(63.75,68,127.5,1);
    border: 2px solid #3377ff;
    position: fixed;
    padding: 32px 32px 24px 32px;
    transform: translate(-50%,-50%);
    z-index: 99999;
    left: 50%;
    box-sizing: border-box;
    display: none;
    top: 50%;
}

.common-alert .common-alert-tit {
    width: 100%;
    align-items: center;
    position: relative;
    padding-bottom: 16px
}

.common-alert .common-alert-txt {
    font-size: 16px;
    font-family: PingFang SC,PingFang SC-Semibold;
    font-weight: 600;
    color: #ffffff;
    line-height: 32px;
    position: relative;
    padding-left: 30px;
}

.common-alert .common-alert-txt span {
    font-size: 14px;
    font-weight: 400;
}

.common-alert .common-alert-txt.warning::before {
    content: '';
    background: url(../images/icon-warning_yellow.png) no-repeat -0px 0px;
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(0,-50%);
    background-size: 20px 20px;
    top: 16px;
    left: 0px;
    margin-right: 30px;
}
.common-alert .common-alert-txt.error::before {
    content: '';
    background: url(../images/icon-error.png) no-repeat -0px 0px;
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(0,-50%);
    background-size: 20px 20px;
    top: 16px;
    left: 0px;
    margin-right: 30px;
}
.common-alert .common-alert-txt.info::before {
    content: '';
    background: url(../images/icon-info.png) no-repeat -0px 0px;
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(0,-50%);
    background-size: 20px 20px;
    top: 16px;
    left: 0px;
    margin-right: 30px;
}

.common-alert .common-alert-txt.success::before {
    content: '';
    background: url(../images/icon-success.png) no-repeat -0px 0px;
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(0,-50%);
    background-size: 20px 20px;
    top: 16px;
    left: 0px;
    margin-right: 30px;
}

.common-alert .common-alert-btns {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.common-alert .common-alert-public-btn {
    height: 36px;
    min-width:72px;
    border-radius: 4px;
    font-size: 14px;
    font-family: PingFang SC,PingFang SC-Regular;
    font-weight: 400;
    color: #ffffff;
    background: #3377FF;
    border: none;
    padding-left: 13px;
    padding-right: 13px;
}

.common-alert .common-alert-public-btn:hover {
    cursor: pointer;
    background: #33BBFF;
}

.common-alert .common-alert-cancel {
    width: 72px;
    height: 36px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #3377FF;
    margin-right: 16px;
    background: none;
    color: #3377FF;
}

.common-alert .common-alert-cancel:hover {
    cursor: pointer;
    border: 1px solid #33BBFF;
    color: #33BBFF;
}

.common-alert .common-alert-info {
    font-size: 14px;
    color: #fff;
    padding-left: 33px;
    padding-bottom: 32px
}
