/*
 * 新设计主题： 清爽柔和浅色系 (Soft Pastel Light Theme) - Swiper 区域样式
 * 调整颜色和柔和阴影效果
 */

.swiperProd-box {
	position: relative;
	width: 600px;
	height: 833px;
	margin: 0 auto;
}

.swiperProd-box .imgs {
	width: 100%;
	height: 100%;
	perspective: 1000px;
}

.swiperProd-box .imgitem {
	position: absolute;
	width: 400px;
	height: 800px;
	top: 0;
	bottom: 0;
	/* left: 0; */
	right: 0;
	margin: auto;
	z-index: 0;
	transition: .8s;
	opacity: 0;
	/* 调整柔和的阴影颜色 */
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); 
}

.swiperProd-box .imgitem img {
	width: 100%;
	height: 100%;
}

.swiperProd-box .cur-img {
  /* transform: translateX(400px) rotateY(-30deg) scale(0.8); */
	width: 400px;
  height: 833px;
	z-index: 100;
	opacity: 1;
	/* 突出当前图片，使用柔和的蓝色阴影 */
	box-shadow: 0 0 30px rgba(74, 144, 226, 0.3); /* 调整发光阴影颜色 */
}

.swiperProd-box .pre-img {
	transform: translateX(-240px) rotateY(0deg) scale(0.8);
	z-index: 9;
	opacity: 0.9;
}

.swiperProd-box .next-img {
	transform: translateX(240px) rotateY(0deg) scale(0.8);
	z-index: 9;
	opacity: 0;
  /* display: none !important; */
}