/* 产品模态框 点击放大图片的基本样式 */
.large {
	position: relative;
}
.large-img {
	width: 100%;
}
/* 遮罩层 */
.large-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 5050;
}
/* 点击过后的图片 */
.large-active-img {
	position: fixed;
	top: 10px;
	left: 0;
	z-index: 5051;
}
.large-render-img > img {
	background-color: #fff;
}
/* 图片切换按钮 */
.large-left-button {
	position: fixed;
	left: 5%;
	top: calc(50% - 32px);
	width: 64px;
	height: 64px;
	cursor: pointer;
	z-index: 5052;
	background-image: url(../../../data/introduce/image/arrow-left.png);
}
.large-right-button {
	position: fixed;
	right: 5%;
	top: calc(50% - 32px);
	width: 64px;
	height: 64px;
	cursor: pointer;
	z-index: 5052;
	background-image: url(../../../data/introduce/image/arrow-right.png);
}