#maskBg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10000 !important;
}

#mask {
    position: absolute;
    z-index: 1;
    border: 5px solid #000;
    opacity: 0.8;
}

#mask::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 100px solid #000;
    position: absolute;
    left: -100px;
    top: -100px;
    border-radius: 110px;
}

#maskTitle {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pointer {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100px;
    height: 100px;
    background-size: contain;
    position: relative;
}

#mianWarn {
    padding: 10px 5px;
    position: relative;
}
#mianWarn .btnBox{
    text-align: center;
    padding: 20px 0 10px 0;
}

#warnData {
    text-align: center;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 250px;
}

#nextStep {
    display: inline-block;
    line-height: 28px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    box-sizing: border-box;
}

#closeMaskWarn {
    width: 20px;
    height: 20px;
    margin: auto;
    position: fixed;
    top: 15px;
    right: 15px;
}

#closeMaskWarn::before,
#closeMaskWarn::after {
    content: "";
    position: absolute;
    height: 22px;
    width: 5px;
    top: 2px;
    right: 9px;
    background: #fff;
}

#closeMaskWarn::before {
    transform: rotate(45deg);
}

#closeMaskWarn::after {
    transform: rotate(-45deg);
}