_slide-unlock.css 1.36 KB
.slide-unlock {
    margin: 10PX auto 15PX;
    height: 80px;
    position: relative;
    border-radius: 2px;
    background-color: #b3b3b3;
    border-radius: 5PX;
    overflow: hidden;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;

    .bg {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        background-color: #7ac23c;
        z-index: 1;
    }

    .label {
        width: 80px;
        position: absolute;
        left: 0;
        top: 0;
        height: 80px;
        line-height: 80px;
        outline: 1px solid #ccc;
        border-radius: 4PX;
        background: #e7e7e7;
        z-index: 3;
        cursor: move;
        color: #ff9e77;
        font-size: 16px;
        font-weight: 900;

        &:after {
            display: block;
            font-family: "iconfont";
            content: "\e901";
            color: #757575;
            font-size: 25px;
        }
    }

    .label-tip {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 28px;
        color: #787878;
        line-height: 80px;
        text-align: center;
        z-index: 2;
    }

    .progress {
        float: left;
        height: 80px;
        background-color: #36a74c;
    }
}

.slide-unlock-ok .label:after {
    content: "\e900" !important;
}