@charset "utf-8";
.view-container{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.9);
	z-index: 99999999999999;
}
.view-close{
	position: absolute;
	right: 1%;
	top: 1%;
	color: #fff;
	font-size: 3rem;
	z-index: 9999;
	cursor: pointer;
}
.view-prev{
	position: absolute;
	left: 1%;
	top: 50%;
	color: #fff;
	font-size: 3rem;
	cursor: pointer;
}
.view-next{
	position: absolute;
	right: 1%;
	top: 50%;
	color: #fff;
	font-size: 3rem;
	cursor: pointer;
}
.view-main{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.view-main img{
	max-height: 100vh;
	max-width: 100%;
}
.view-title{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	box-shadow:0px 3px 8px rgba(0,0,0,.3);
	color: #333;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.25rem;
	line-height: 2.4;
	opacity: .7;
}