@use '@/styles/media' as *;
$level-sub-high: 1050;
.pop-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: $level-sub-high - 100;
    &.active {
        display: block;
    }
}
.pop-out-close {
    position: fixed;
    z-index: $level-sub-high + 105;
    top: 30px;
    right: 30px;
    font-size: 14px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    &:hover {
        color: rgba(255, 255, 255, 1);
        background: rgba(255, 255, 255, 0.4);
    }
}
.pop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: $level-sub-high + 100;
    max-height: 100%;
    max-width: 100%;
    pointer-events: auto;
    //overflow: auto;
    .lofty-pop-close-icon {
        position: absolute;
        // z-index: 1;
        right: 20px;
        top: 20px;
        width: 20px;
        height: 20px;
        cursor: pointer;
        transform: translate(0, 0);
        &::before {
            position: absolute;
            font-size: 14px;
            color: #515666;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }
    &.sign-log .lofty-icon-close {
        top: 10px;
        right: 10px;
    }
    @include media-600 {
        width: 100%;
        &.sign-log {
            width: calc(100% - 30px);
        }
    }
}
