@charset "UTF-8";

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}
.popup.is-show {
    opacity: 1;
    visibility: visible;
}
.popup-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    max-width: 1000px; /*def600*/
    z-index: 2;
}
.popup-inner img {
    width: 100%;
}
.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    z-index: 2;
}
.close-btn i {
    display: block;
    margin-bottom: 10px;
}
.black-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 95, 190, 0.9); /*def rgba(0,0,0,.8)*/
    z-index: 1;
    cursor: pointer;
}