/* 轮播主容器 */
.product-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* 图片 */
.product-slider img {
    width: 100%;
    display: block;
}

/* 箭头公共样式 */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 26px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
}

/* 左右箭头分别移到图片外侧 */
.arrow.prev {
    left: -54px;   /* 图片左侧外 54px */
}
.arrow.next {
    right: -54px;  /* 图片右侧外 54px */
}

/* 禁用状态 */
.arrow.disabled {
    background: rgba(0, 0, 0, 0.15);
    cursor: not-allowed;
}