/* CSS  */
.show-verification-layer{
    position:fixed;
    top:0;left:0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100vw;
    height:100vh;
    background: rgba(0,0,0,.6);
    z-index:999;
}
.verification-code{
    background: #eee;
    color:#aaa;
    width:320px;
    height:360px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.show-verification-layer .btns{
    display: flex;
    justify-content: space-around;
    margin:15px 0;
}
.show-verification-layer .btn{
    background:#00B83F;
    color:#fff;
    font-size:14px;
    text-decoration: none;
    padding:7px 25px;
    line-height: 1;
    letter-spacing: 3px;
    text-indent: 3px;
    border-radius:3px;
}
.show-verification-layer .btn-fresh{
    background:#0dc4fb;
}
.show-verification-layer .box{
    background:#fff;
    border-radius:5px;
    overflow:hidden;
}

.text-num {
    position: absolute;
    width: 20px;
    height: 24px;
    line-height: 20px;
    background: url("red-border.png") 0 0 no-repeat;
    color: red;
    font-weight: 700;
    z-index: 2;
    cursor: pointer;
    text-align: center;
}