.slider__class1 {
    width: 100%;
    position: relative;
    z-index: 1;
    /* display: flex; */
}

.slider__class1-box {
    /* width: 100%;
    margin: auto; */
}

.slider__class1-item {}

.setbg {
    background: none;
    position: relative;
}

.slider__class1-prev,
.slider__class1-next {
    height: 20px;
    width: 20px;
    margin-top: -10px;
    position: absolute;
    z-index: 2;
    top: 50%;
    cursor: pointer;
}

.slider__class1-prev {
    left: -9%;
    transform: rotate(180deg);
    width: 0;
    height: 0;
    border: 15px solid;
    border-color: transparent transparent transparent #fff;
}

.slider__class1-next {
    right: -9%;
    transform: rotate(0deg);
    width: 0;
    height: 0;
    border: 15px solid;
    border-color: transparent transparent transparent #fff;
}


/* .tabWrap-right .slider__class1-prev {
    display: none !important;
}

.tabWrap-left .slider__class1-next {
    display: none !important;
} */


/* 以下為自訂義更換左右鍵符號樣式，可插入圖片*/

.slider__class1-prev::after {
    content: "";
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider__class1-next::after {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    /* background: url("../images/chevron-right-solid.svg"); */
    background-repeat: no-repeat;
}