.regAlert, .regAlert * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.regAlert {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.regAlert .regContent {
    width: 90%;
    max-width: 350px;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
}

.regAlert .regContent .title {
    text-align: center;
    font-size: 16px;
    position: relative;
}

.regAlert .regContent .title .closeB {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    color: #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.regAlert .regContent .inp1 {
    padding-top: 10px;
    position: relative;
}

.regAlert .regContent .inp1 .smsBtn {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #409EFF;
    color: #fff;
    padding: 0 15px;
    height: 43px;
    line-height: 43px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.regAlert .regContent .inp1 .label1 {
    padding-bottom: 5px;
    font-size: 14px;
}

.regAlert .regContent .inp1 .reginp {
    display: block;
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.regAlert .regContent .inp1 .reg_btn {
    display: block;
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #e8e8e8;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #409EFF;
    color: #fff;
    border-radius: 4px;

    &:active {
        background-color: #2572c7;
    }
}