@media (min-width: 760px)
{
    .picZoom{ position: relative; margin:0;}
    /*原始图区*/
    .picZoom_originalPic{ position: absolute; width:450px; height:300px; overflow: hidden;}
    /*放大镜遮罩区*/
    .picZoom_glass{ position: absolute; width:100px; height:100px; filter: alpha(opacity=50); /*IE*/; background-color: white; background-color: rgba(255,255,255,0.5); }
    /*放大图区*/
    .picZoom_showZoom{ position: absolute; left:450px; width:450px; height:300px; overflow: hidden; }
    /*图片列表区*/
    .picZoom_picList{ position: absolute; width:410px; top: 300px; left: 20px; height:60px;  overflow: hidden;  }
    .picZoom_picList ul{ padding:0; margin:0; list-style: none; }
    .picZoom_picList ul li{ float: left; padding: 0px 3px; }
    /*左按钮*/
    .picZoom_leftBtn{ position: absolute; top: 300px; width:20px; height:60px; line-height: 60px; background-color:#F6F6F6;  text-align: center; color:#A3A596; cursor: pointer;}
    .picZoom_leftBtn:hover{background-color:#A0A0A0; color:#FFF;}
    /*右按钮*/
    .picZoom_rightBtn{ position: absolute; top: 300px; left:430px; width:20px; height:60px; line-height: 60px; background-color:#F6F6F6; text-align: center; color:#A3A596; cursor: pointer;}
    .picZoom_rightBtn:hover{background-color:#A0A0A0; color:#FFF;}
}

@media (max-width: 760px)
{
    .picZoom{ position: relative; margin:0;}
    /*原始图区*/
    .picZoom img{
	border:none;
	width:auto;
}
    .picZoom_originalPic{ position: absolute; width:100%; height:200px; overflow: hidden;}
    /*放大镜遮罩区*/
    .picZoom_glass{ position: absolute; width:100px; height:100px; filter: alpha(opacity=50); /*IE*/; background-color: white; background-color: rgba(255,255,255,0.5); }
    /*放大图区*/
    .picZoom_showZoom{ position: absolute; left:450px; width:100%; height:200px; overflow: hidden; }
    /*图片列表区*/
    .picZoom_picList{ position: absolute; width:90%; top: 200px; left: 20px; height:60px;  overflow: hidden;  }
    .picZoom_picList ul{ padding:0; margin:0; list-style: none; }
    .picZoom_picList ul li{ float: left; padding: 0px 3px; }
    /*左按钮*/
    .picZoom_leftBtn{ position: absolute; top: 200px; width:20px; height:60px; line-height: 60px; background-color:#F6F6F6;  text-align: center; color:#A3A596; cursor: pointer;}
    .picZoom_leftBtn:hover{background-color:#A0A0A0; color:#FFF;}
    /*右按钮*/
    .picZoom_rightBtn{ position: absolute; top: 200px; left:90%; width:20px; height:60px; line-height: 60px; background-color:#F6F6F6; text-align: center; color:#A3A596; cursor: pointer;}
    .picZoom_rightBtn:hover{background-color:#A0A0A0; color:#FFF;}
       
}