@charset "utf-8";

/*放大镜效果主容器*/
.con-fangda{
	width: 500px;
	height: auto;
	background: #fff;
	border: 1px solid #efefef;
	float:left;
}
/*正常容器*/
.con-fangdaimg{
	width: 500px;
	height: 400px;
	position: relative;
	background-color: #fff;
	text-align:center;
}
.con-fangdaimg > img{
	max-width: 100%;
	max-height:400px;
}
/*滑块*/
.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:60px;
	width:100%;
	list-style: none;
}
.con-fangda-imglist > li{
	margin-right:7px;
	width:65px;
	height: 55px;
	float: left;
	cursor: pointer;
	border: 1px solid #c1c1c1;
	text-align:center;
}

.con-fangda-imglist > li > img{
	vertical-align:top;
	display:inline;
	width:65px;
	height:55px;
}
.con-fangda-imglist > .active{
	border-color:#efefef;
}