.close_img {
    width: 100%;
    max-height: 0;
    transition: max-height .7s;
    overflow: hidden;
}

.show {
    max-height: 5000px;
}

.pointer {
    cursor: pointer;
}

.icon {
    width: 4.7%;
    right: 5%;
    top: 38%;
    cursor: pointer;
    transition: all .4s;
}

.icon--active {
    rotate: 225deg;
}

/* 倒數計時 S */
.clock-container {
    padding: 0.15em 0;
    /* 導角 用法跟 padding依樣  */
    /* border-radius: 0.1em; */
    text-align: center;
    font-weight: bold;
    /* 調整字體大小 */
    /* 文字顏色 */
    color: #ffffff;
    /* 背景顏色 */
    background: #FF6A80;
    font-size: 3rem;
}

#timer {
    border-radius: 1.5px;
    font-weight: bold;
    margin: .5 .5em;
    padding: 0 .5em;
    letter-spacing: 0.1em;
    /* 若時間文字顏色，跟【倒數計時】文字 有不同時使用 */
    /* color: #00ff95; */
}

@media (max-width:549px) {
    .clock-container {
        /* 調整字體大小 */
        font-size: 1.15rem;
    }
}

/* 倒數計時 E */
.swiper-slide img {
    margin: 0 auto;
    filter: blur(5px);
    transition: all .3s;
}

.swiper-slide-active img {
    filter: blur(0px);
}

.swiperBtnR,
.swiperBtnL {
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {

    .swiperBtnR,
    .swiperBtnL {
        width: 25px;
        height: 25px;
    }

    .swiperBtnR {
        right: -5%;
    }

    .swiperBtnL {
        left: -5%;
    }

    .swiper-slide img {
        margin: 0 auto;
        filter: blur(5px);
        transition: all .5s;
        opacity: 0;
    }

    .swiper-slide-active img {
        filter: blur(0px);
        opacity: 1;
    }
}



.swiperBtnR:after {
    content: "";
    background-image: url(../images/thing15-10.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100px;
    height: 100%;
}

.swiperBtnL:after {
    content: "";
    background-image: url(../images/thing15-9.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* pop */
.popBG {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 14;
    background-image: url(../images/POP_BG.jpg);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.popBG--active {
    opacity: 1;
    visibility: visible;
}

.popControl {
    height: 100%;
}

.popImg {
    position: relative;
    width: 84.6%;
    left: 50%;
    transform: translateX(-50%);

}

.x-markControl {
    position: sticky;
    top: 0;
    height: 5%;
}

.x-mark {
    cursor: pointer;
    font-size: 2rem;
    padding: 0.25% 0.5%;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    transition: all .3s;
    position: absolute;
    right: 5%;
    top: 50%;


}

.x-mark:hover {
    background-color: #fff;
    color: #000;
    rotate: 180deg;
}

@media (max-width:768px) {
    .x-mark {
        padding: 0.25% 1%;
    }
    .popImg {
        position: absolute;
        width: 93%;
        left: 51%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}