/* 照片弹出框 */
.show-big-pic {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.65);
}

.show-big-pic a {
	position: absolute;
	width: 80px;
	height: 80px;
	z-index: 4;
	text-align: center;
	line-height: 80px;
	top: 0;
	right: 0;
}

.show-big-pic a:link {
	text-decoration: none;
}

.show-big-pic a span {
	color: #fff;
	font-size: 30px;
}

.show-big-pic img {
	position: absolute;
	display: block;
	max-width: 80%;
	max-height: 60%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}