.PicZoom{ position: relative;}
/*原始图区*/
.PicZoom .smallPic{ position: absolute; width:100%; height:calc(100% - 90px); overflow: hidden;}
.PicZoom .smallPic img{object-fit: contain; width:100%; height:100%; padding:5px; border:1px solid #d4d4d4; display: block; box-sizing: border-box;}
/*放大镜遮罩区*/
.PicZoom .glass{ position: absolute; background-color: #ffffff80; }
/*放大图区*/
.PicZoom .bigPic{ position: absolute; left: calc(100% + 10px); width:100%; height:calc(100%); overflow: hidden; background-color: #F0F0F0}
.PicZoom .bigPic img{ position: absolute; object-fit: contain;}
/*图片列表区*/
.PicZoom .picList{ position: absolute; width:calc(100% - 40px); bottom:0px; left: 20px; height:80px; overflow: hidden; border:1px solid #d4d4d4;  box-sizing: border-box;}
.PicZoom .picList ul{ padding:0; margin:0; list-style: none; display: flex; flex-wrap: nowrap;height:100%;}
.PicZoom .picList ul li{ padding: 0px 3px;  height:100%; }
.PicZoom .picList ul li img{height:100%; box-sizing: border-box;}
.PicZoom .picList ul li.act img{border:3px solid #ff0000;}
/*左按钮*/
.PicZoom .leftBtn{ position: absolute; bottom: 0px; width:20px; height:80px; line-height: 80px; background-color:#F6F6F6; font-family: "微软雅黑"; text-align: center; color:#A3A596; cursor: pointer;}
.PicZoom .leftBtn:hover{background-color:#A0A0A0; color:#FFF;}
/*右按钮*/
.PicZoom .rightBtn{ position: absolute; bottom: 0px; right:0px; width:20px; height:80px; line-height: 80px; background-color:#F6F6F6; font-family: "微软雅黑"; text-align: center; color:#A3A596; cursor: pointer;}
.PicZoom .rightBtn:hover{background-color:#A0A0A0; color:#FFF;}