/* 图片预览 */
.previewbox {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
}
.previewbox .preview-header {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
}
.previewbox .preview-header .preview-indicator {
	display: block;
	line-height: 28px;
	color: #fff;
	text-align: center;
	margin: 10px auto;
	width: 68px;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 12px;
	font-size: 16px;
}
.previewbox .preview-content {
	font-size: 0;
	position: relative;
	white-space: nowrap;
	height: 100%;
}
.previewbox .preview-content .content-item {
	font-size: 14px;
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	vertical-align: top;
	white-space: normal;
}
.previewbox .preview-content .content-item .content-item-scroller {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}
.previewbox .preview-content .content-item .content-item-scroller .toggle-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 30%;
	height: 100vh;
	line-height: 100vh;
	z-index: 10000;
	color: white;
	cursor: url('../images/left.png'), auto;
	text-align: center;
	display: block;
}
.previewbox .preview-content .content-item .content-item-scroller .icon {
	font-size: 44px;
}
.previewbox .preview-content .content-item .content-item-scroller .toggle-left:hover,
.previewbox .preview-content .content-item .content-item-scroller .toggle-right:hover {
	/* background-color: rgba(0, 0, 0, 0.8); */
}
.previewbox .preview-content .content-item .content-item-scroller .toggle-right {
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100vh;
	line-height: 100vh;
	z-index: 10000;
	color: white;
	cursor: url('../images/right.png'), auto;
	text-align: center;
	display: block;
}
