@charset "utf-8";

/*放大镜效果主容器*/
.con-FangDa{
	width: 384px;
	height: auto;
	background-color:#fff;
	border:1px solid #f4f4f4;
	padding:10px;
	float:left;
}
/*正常容器*/
.con-fangDaIMg{
	width: 384px;
	height: 288px;
	position: relative;
	background-color: #fff;
	text-align:center;
}
.con-fangDaIMg > img{
	max-width: 100%;
	max-height:288px;
}
/*滑块*/
.magnifyingBegin{
	width: 150px;
	height: 175px;
	left: 0;
	top: 0;
	background-color: #454545;
	opacity: 0.5;
	filter:alpha(opacity=50);
	position: absolute;
	cursor: move;
	display: none;
}
/*放大镜显示区域*/
.magnifyingShow{
	width: 384px;
	height: 288px;
	display: none;
	position: absolute;
	right: -400px;
	top: 0;
	overflow: hidden;
	background-color: #fff;
	z-index:9999;
}
.magnifyingShow > img{
	width: 780px;
	height: auto;
	margin-left:0;
	margin-top: 0;
}
/*设置选择图片容器*/
.con-FangDa-ImgList{
	margin-top:10px;
	height:54px;
	width:100%;
	list-style: none;
}
.con-FangDa-ImgList > li{
	margin-right:7px;
	width:50px;
	height: 50px;
	float: left;
	cursor: pointer;
	border: 1px solid #efefef;
	background-color: #efefef;
	text-align:center;
}

.con-FangDa-ImgList > li > img{
	vertical-align:top;
	display:inline;
	width:50px;
	height:50px;
}
.con-FangDa-ImgList > .active{
	border-color:#efefef;
}