/* swiper */
.swiper-container {
    width: 100%;
    /* margin: 40px 0; */
    padding: 20% 0;
}

.swiper-slide {
    opacity: 0.5;
    overflow: hidden;
    transition: .7s;
    filter: blur(1px);
    position: relative;
}

.swiper-slide::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0, 0, 0, 0.5);
}

.swiper-slide img {
    width: 100%;
}


.swiper-slide-active {
    opacity: 1;
    z-index: 1;
    filter: blur(0px);
    transform: scale(1.5);
    box-shadow: 0px 0px 13px 1px #ffffff;
}

.swiper-slide-active::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent;
    z-index: -1;
}

.pagination {
    width: 100%;
    /* left: 50%; */
    /* transform: translateX(-50%) */
    bottom: 1.5% !important;
}

.pagination1 {
    bottom: 10% !important;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    opacity: .3;
    /* background-color: #979797; */
    margin: 0 1.5%;
    border: 3px solid #D6A838;
}

.swiper-pagination-bullet-active {
    background-color: #D6A838;
    opacity: 1;
}

@media (max-width:821px) {

    .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        border: 1.5px solid #D6A838;
    }
}


@media (max-width:768px) {


    .swiper-slide-active {
        opacity: 1;
        z-index: 1;
        transform: scale(1.05);
    }

    .pagination {

        bottom: 5% !important;
    }

    .pagination1 {
        bottom: 10% !important;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        border: 1.5px solid #D6A838;
    }
}
@media (max-width: 414px) {
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border: 1.5px solid #D6A838;
    }
}

/* 更改按鈕圖案 */
.swiperBtn {
    width: 10%;
    height: 10%;
}

.swiperBtnR {
    right: 5%;
}

.swiperBtnL {
    left: 5%;
}

/* @media (max-width: 768px) {

 
} */


@media (max-width: 821px) {
    .swiperBtnR {
        right: -2%;
    }

    .swiperBtnL {
        left: -2%;
    }

    .swiperBtn {
        width: 28%;
        height: 7%;
    }

}


@media (max-width: 568px) {
    .swiperBtnR {
        right: -2.5%;
    }

    .swiperBtnL {
        left: -2.5%;
    }

    .swiperBtn {
        width: 15%;
        height: 15%;
    }
    
}
@media (max-width: 414px) {
    .swiperBtnR {
        display: none;
    }

    .swiperBtnL {
        display: none;
    }

    .swiperBtn {
        width: 15%;
        height: 15%;
    }
}

.swiperBtnR:after {
    content: "";
    background-image: url(./images/right.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}

.swiperBtnL:after {
    content: "";
    background-image: url(./images/left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}