#main{
	position:relative;
	background: #006000;
}
.box{
	padding:5px;
	float:left;
	position:relative;
}
.box_img{
	padding:5px;
	border:1px solid #ccc;
	box-shadow:0 0 5px #ccc;
	border-radius:5px;
}
.box_img img{
	width:250px;
	height:auto;
}
.box_img img:hover{
	cursor:zoom-in;
	z-index:2;
	border-width:1rem;
	border-bottom-width:3rem;
}
/* .box_img:hover:after{
	content:"img";
	color:red;
	font-weight:300;
	font-family:"微软雅黑";
	font-size:1.2rem;
	position:absolute;
	right:0;
	bottom:0;
	padding:1rem 1rem;
	width:100%;
	text-align:right;
	box-sizing:border-box;
	margin-bottom:-3.3rem;
} */
#PuzzlePhoto-pop{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(0, 0, 0, 0.8);
	transform:scale(0);
	z-index:999;
	transition:transform 0.2s ease-in-out;
}
#PuzzlePhoto-pop.show{
	transform:scale(1);
}
#PuzzlePhoto-pop img{
	display:block;
	position:absolute;
	width:auto;
	height:auto;
	max-height:90%;
	left:50%;
	top:50%;
	transform: translate(-50%,-50%);
}