* {
	padding: 0;
	margin: 0;
}
.magnify{
	/*width: 200px;*/
	margin-top: 40px;
	margin-bottom:20px;
	position: relative;
}
/* 在这里我们来设置放大镜的样式 */
.large {
	width: 180px;
	height: 180px;
	position: absolute;
	/* 圆角 */
	border-radius: 100%;
	/* 这里使用多重阴影、来实现玻璃的效果 */
	box-shadow: 0 0 0 7px rgba(255,255,255,0.8),0 0 7px 7px rgba(0,0,0,0.3),inset 0 0 40px 2px rgba(0,0,0,0.3); 
	/* 加载放大镜的图片 */
	/*background: url(iphone.jpg) no-repeat;*/
	/* 放大镜默认隐藏 */
	display: none;
	z-index:999;
}
/* 解决放大镜在放大的过程中边缘重叠的BUG */
.small {
	display: block;
}