.detail_slide_wrap {
    margin-top: 40px;
    border-top: 1px solid #BBBBBB;
    padding-top: 40px;
}

.detail_slide_wrap>div {
    position: relative;
}

.pf_swiper .swiper-slide {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.pf_swiper .swiper-slide img {
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.pf_next,
.pf_prev {
    width: 46px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #78767566;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    padding: 10px;
}

.pf_next {
    right: -23px;
}

.pf_prev {
    left: -23px;
}

.pf_next img,
.pf_prev img {
    object-fit: contain;
    object-position: center;
    height: 100%;
}

.pf_prev img {
    rotate: 180deg;
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

@media screen and (max-width:1023px) {

    .pf_next,
    .pf_prev {
        width: 30px;
        padding: 8px;
    }

    .pf_next {
        right: -15px;
    }

    .pf_prev {
        left: -15px;
    }

    .detail_slide_wrap {
        margin-top: 32px;
        padding-top: 32px;
    }

}