

<style>
/* 大图圆角效果 */
.product-main-image {
    border-radius: 12px; /* 圆角大小，可根据需要调整 */
    overflow: hidden; /* 确保圆角效果生效 */
}

/* 缩略图激活状态样式 */
.swiper-slide-thumb-active {
    opacity: 0.7;
    border: 2px solid #333;
    border-radius: 6px; /* 缩略图也添加小圆角 */
}

/* 导航按钮样式 */
.thumbs-button-prev, .thumbs-button-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.7);
    width: 30px;
    height: 30px;
    border-radius: 50%; /* 圆形按钮 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.thumbs-button-prev {
    left: -15px;
}
.thumbs-button-next {
    right: -15px;
}

/* 确保轮播容器也有圆角 */
.swiper-container {
    border-radius: 12px;
    overflow: hidden;
}
</style>
	