.pic_slide {
	width: 608px;
	margin-top: 42px;
	margin-left: 5px;
}
.swiper-slide {/*图片居中*/
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    }
.view .swiper-container {
	width: 608px;
	height: 382px;
	margin-left: 0;
}
.view .swiper-container img {
	width: 608px;
	height: 382px;
	object-fit:contain;/*设置图片宽高等于上级元素的值(可用px或者100%)，加object-fit:contain即可设置img等比缩放(无需任何js代码)*/
	transition: all 0.6s;
}
@media (any-hover: hover) {
.view .swiper-slide:hover img {
	transform:scale(1.1);
}
}	
.view .arrow-left {
	background: url(/style/extend/swiper/arrow_l.png) no-repeat left top;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -25px;
	width: 28px;
	height: 51px;
	z-index: 10;
}
.view .arrow-right {
	background: url(/style/extend/swiper/arrow_r.png) no-repeat left bottom;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -25px;
	width: 28px;
	height: 51px;
	z-index: 10;
}
.picshow {
	width: 100%;
	margin-top: 30px;
	position: relative;
}
.picshow .swiper-container {
	width: 564px;
	margin-left: 25px;
}
.picshow .swiper-slide {
	width: 126px;/*此项值需等于picshow img的width值，否则不能自动向右切换缩略图*/
	margin-right:6px;
	cursor:pointer;
	vertical-align:middle;
	height:80px;
	line-height:80px;
	overflow:hidden;
	position:relative;
}
@media screen and (min-width: 800px) and (max-width: 1080px) {
.pic_slide {
	width:calc(100% - 10px);
	margin-right: 5px;
}
.view .swiper-container {
	width:100%;
	height: 382px;
}
.view .swiper-container img {
	max-width:100%;
	height:100%;
}
.picshow .swiper-container {
	width:calc(100% - 50px);
	margin-left: 25px;
	margin-right: 25px;
}
}
@media screen and (max-width: 800px) {
.pic_slide {
	width:calc(100% - 10px);
	margin-top: 15px;
	margin-right: 5px;
}
.view .swiper-container {
	width:100%;
	height:350px;
}
.view .swiper-container img {
	max-width:100%;/*.view .swiper-container img的css使用了object-fit:contain(第28行);若加height:auto则图片不会等比缩放*/
	height:100%;
	transition:all 0;
}
.picshow {
	display: none;
}
}
.picshow .arrow-left {
	background: url(/style/extend/swiper/prev.png) no-repeat left top;
	position: absolute;
	left: 2px;
	top: 50%;
	margin-top: -16px;
	width: 11px;
	height: 18px;
	z-index: 10;
}
.picshow .arrow-right {
	background: url(/style/extend/swiper/next.png) no-repeat left bottom;
	position: absolute;
	right: 2px;
	top: 50%;
	margin-top: -16px;
	width: 11px;
	height: 18px;
	z-index: 10;
}
.picshow img {
	width: 126px;
	height: 80px;
	overflow: hidden;
}
.picshow .active-nav {
	background: url(/style/extend/swiper/select.png) repeat-x bottom;
	padding-bottom:10px;
}