
.swiper_text{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 8;
	color: #fff;
	justify-content: space-between;
	text-align: center;
	width: 100%;
}
.swiper-container {
	position: relative; /* 设置相对位置，确保蒙板能正常显示 */
}
.swiper-container::before {
	content: ""; /* 必需属性，表示生成内容为空 */
	display: block; /* 将伪元素转换为块级元素 */
	width: 100%; /* 与图片大小相同 */
	height: 100%; /* 与图片高度相同 */
	/*background-color: rgba(0, 0, 0, 0.1); !* 设置背景颜色及不透明度（这里设置了50%）*!*/
	position: absolute; /* 设置绝对定位，放置于图片上方 */
	top: 0; /* 调整蒙板位置 */
	left: 0; /* 调整蒙板位置 */
	z-index: 2; /* 设置z-index值，确保蒙板处于最前面 */
}