/* 倒數計時 S */
.clock-container {
    padding: 0.15em 0;
    /* 導角 用法跟 padding依樣  */
    /* border-radius: 0.1em; */
    text-align: center;
    font-weight: bold;
    /* 調整字體大小 */
    /* 文字顏色 */
    color: #ffffff;
    /* 背景顏色 */
    background: #F94E5F;
    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 */


/* POP 01*/
.pointer {
    cursor: pointer;
}

.pop {
    background-color: rgb(0, 0, 0, 0.8);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;

}

.popShow {
    opacity: 1;
    visibility: visible;
}

.popContainer {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.popContainer>img {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 60%;
    cursor: pointer;
}

@media (max-width:768px) {
    .popContainer>img {
        left: 50%;
        width: 95%;
    }
}

/* POP 02*/
/* .pop02 {
    background-color: rgb(0, 0, 0, 0.8);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
} */

.popShow {
    opacity: 1;
    visibility: visible;
}

.popContainer {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.popContainer>img {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 60%;
    cursor: pointer;
}

@media (max-width:768px) {
    .popContainer>img {
        left: 50%;
        width: 95%;
    }
}

/* POP 03*/
/* .pop03 {
    background-color: rgb(0, 0, 0, 0.8);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
} */

.popShow {
    opacity: 1;
    visibility: visible;
}

.popContainer {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.popContainer>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    cursor: pointer;
}

@media (max-width:768px) {
    .popContainer>img {
        left: 50%;
        width: 95%;
    }
}


/* swiper */
.slider {
    width: 83%;
    position: absolute;
    top: 62%;
    left: 9%;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    width: 4%;
    left: 6%;
    top: 76%;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    width: 4%;
    right: 7%;
    top: 76%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 8%;
}

.swiper-pagination-bullet-active {
    background: #B1A67A;
}