/*主容器*/
.con-FangDa{
	width: 300px;
	height: auto;
	margin: 10px auto;
	background-color:#fff;
	
}
/*正常容器*/
.con-fangDaIMg{
	width: 300px;
	height: 300px;
	position: relative;
	background-color: #454545;
	border:1px solid #ddd;
}
.con-fangDaIMg > img{
	width: 100%;
	height:100%
}
/*滑块*/
.magnifyingBegin{
	width: 100px;
	height: 100px;
	left: 0;
	top: 0;
	background-color: #454545;
	opacity: 0.5;
	filter:alpha(opacity=50);
	position: absolute;
	cursor: move;
	display: none;
}
/*放大镜显示区域*/
.magnifyingShow{
	width: 380px;
	height: 380px;
	display: none;
	position: absolute;
	right: -390px;
	top: 0;
	overflow: hidden;
	background-color: #454545;
	z-index:999;
}
.magnifyingShow > img{
	width: 1200px;
	height: 1200px;
	max-width: 1200px;
	margin-left:0;
	margin-top: 0;
}
/*设置选择图片容器*/
.con-FangDa-ImgList{
	margin-top:10px;
	height:54px;
	width:320px;
	list-style: none;
}
.con-FangDa-ImgList > li{
	margin-right:7px;
	width: 50px;
	height: 50px;
	float: left;
	cursor: pointer;
	border: 2px solid #666;
	background-color: #454545;
	text-align:center;
}

.con-FangDa-ImgList > li > img{
	vertical-align:top;
	display:inline;
	width:auto;
}
.con-FangDa-ImgList > .active{
	border-color:#666;
}