.relative {
    position: relative;
}

.absolute {
    position: absolute;
}
.pop_Point01 {
    width: 39.7%;
    left: 6.8%;
    top: 26.7%;
    cursor: pointer;
    z-index: 1;
}

.pop_Point02 {
    width: 35.7%;
    right: 1%;
    top: 27%;
    cursor: pointer;
}

.pop_Point03 {
    width: 42%;
    left: 26%;
    top: 39.2%;
    cursor: pointer;
}

.popBG {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0%;
    top: 0%;
    z-index: 1000;
    background-color: rgb(0, 0, 0, 0.7);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.popControl--active {
    opacity: 1;
    visibility: visible;
}

.popContainer {
    max-width: 600px;
    width: 100%;
    /* 這裡回推高度要跟【js-xmark】的字體大小一致 且要【負數】 */
    margin: -3rem auto 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

}

.popContainer img {
    margin: 0 auto;
}

.xmarkControl {
    position: sticky;
    top: 2%;
    cursor: pointer;
    border-radius: 5px;

}

.js-xmark {
    position: absolute;
    right: 2%;
    font-size: 3rem;
    padding: 0 0.5%;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    transition: all .3s;
}

.js-xmark:hover {
    background-color: #fff;
    color: #000;
    rotate: 180deg;
}

@media (max-width:768px) {
    .popContainer {
        width: 90%;
        /* 這裡回推高度要跟【js-xmark】的字體大小一致 且要【負數】 */
        margin: -2.5rem auto 0 auto;

    }

    .js-xmark {
        font-size: 2.5rem;
        padding: 0 1%;
    }
}