/* ===== 轮播图与灯箱样式 ===== */
.product-slider-wrapper body {
    margin: 0;
}

.product-slider-wrapper .slider {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.product-slider-wrapper .slides {
    display: flex;
    transition: 0.5s;
}

.product-slider-wrapper .slide {
    min-width: 100%;
}

.product-slider-wrapper .slide img {
    width: 100%;
    display: block;
    cursor: pointer;
}

.product-slider-wrapper .prev,
.product-slider-wrapper .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 24px;
}

.product-slider-wrapper .prev {
    left: 10px;
}

.product-slider-wrapper .next {
    right: 10px;
}

.product-slider-wrapper .lightbox {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.product-slider-wrapper .lightbox.active {
    display: flex;
}

.product-slider-wrapper .lightbox img {
    max-width: 90%;
    max-height: 90%;
}