_img-check.css 1.03 KB
/* ======================= *\
   Module: 图片旋转验证
\* ======================= */
.img-check {
    margin-top: 45px;
    margin-bottom: 30px;
}

.img-check-header {
    font-size: 28px;
    line-height: 35px;
    text-align: left;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.img-check-refresh {
    float: right;
    font-size: 22px;
    color: #d0021b;
}

.img-check-pics {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        background-size: 600px 600px;
        background-repeat: no-repeat;
        background-color: #575757;
        width: 150px;
        height: 150px;
    }
}

#js-img-check {
    &.hide {
        display: none !important;
    }

    &.popup {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        z-index: 99;
        background-color: rgba(0, 0, 0, 0.3);
    }
}