.img_swiper {
	width: 100%;
	margin: 0 auto;
	position: relative;
	/*overflow: hidden;*/
	padding: 50px 20px;
	box-sizing: border-box;
	background: #F5F5F5;
}

.img {
	width: 100%;
	height: 100%;
}

.img_swiper .swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	background-image: url(../images/prev_white.png);
	background-size: cover;
	left: 80px;
	box-shadow: 0 0 2px #999;
}

.img_swiper .swiper-button-next {
	width: 40px;
	position: absolute;
	top: 50%;
	height: 40px;
	background-image: url(../images/next_white.png);
	background-size: cover;
	right: 80px;
	box-shadow: 0 0 2px #999;
}

.img_swiper .swiper-button-prev.swiper-button-disabled {
	background-image: url(../images/prev.png);
	background-color: #FFFFFF;
}

.img_swiper .swiper-button-next.swiper-button-disabled {
	background-image: url(../images/next.png);
	background-color: #FFFFFF;
}

.img_swiper .swiper-slide {
	width: 540px;
}

.swiper_slide_img {
	/* height: 440px; */
	perspective: 360px;
	-webkit-perspective: 500;
	/* position: absolute; */
	margin-left: -240px;
	position: relative;
}

.swiper_slide_img:first-child {
	margin-left: 0;
}

.swiper_slide_img>img {
	width: 360px;
	height: 500px;
	transform: rotateY(35deg) scale(0.7);
	transition: 1s;
	border-radius: 20px;
	cursor: url('../images/enlarge.png'), default;
	box-shadow: 0 0 5px #ccc;
}

.swiper_slide_img:hover {
	z-index: 1000;
}

.swiper_slide_img:hover img {
	transform: rotateY(0deg) scale(1);
	transition: 1s;
}

.pic_container {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #34353A;
	display: none;
	z-index: 200;
	overflow-y: scroll;
}

.pic_container_inner {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.pic_container_inner>img {
	width: 100%;
	border-radius: 10px;
	cursor: url('../images/narrow.png'), default;
}

/*.item {
	margin: 20px;
}

.item ul li {
	float: left;
	margin-right: 20px;
}

.item ul li img {
	width: 100px;
	cursor: pointer;
}*/

.lb_wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99999999999;
	/*filter: alpha(opacity=90);
	opacity: .9;*/
	background: rgba(0,0,0,0.9);
}

.lightbox_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.lightbox {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	z-index: 2;
	text-align: center;
}

.lightbox p {
	position: absolute;
	height: 61px;
	width: 38px;
	top: 50%;
	left: 0;
	z-index: 2;
	background: transparent url(../images/themes.png) no-repeat left top;
	margin-top: -30.5px;
	cursor: pointer;
}

.lightbox p.next {
	left: auto;
	background-position: right top;
	right: 0;
}