#pe0 {
	background-color: rgba(0, 0, 0, 1);
	position: relative;
	overflow: hidden;
	z-index: 10;
}

#pe1 {
	display: block;
	z-index: 20;
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -10%);
	width: 200px;
}

#pe3 {
	background-color: rgba(0,0,0,0.4);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 15;
}

#pe2 {
	position: relative;
	width: 100%;
	height: 470px;
	overflow: hidden;
	z-index: 10;
}

#pe2 > span {
	display: block;
	border: 2px solid red;
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 100;
}

#pe2 > span > span {
	background-color: #999;
	cursor: pointer;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	display: block;
	border: 2px solid #fff;
	position: absolute;
	bottom: 0;
	transition: all 0.2s ease-in-out;
	opacity: 0.5;
}

#pe2 > span > span:hover {
	opacity: 1 !important;
}

#pe2 {
	position: relative;
	z-index: 5;
}

#pe2 > div {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: none;
	left: 0;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 5;
}

@keyframes scale_img {
	0% {
		transform: scale(1.0, 1.0);
	}

	100% {
		transform: scale(1.1, 1.1);
	}
}

#block-search {
	background: rgba(0, 0, 0, .6);
	width: 100%;
	position: relative;
	bottom: 90px;
	margin-bottom: -90px;
	z-index: 11;
}

.be-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 39px;
}

@media screen and (max-width: 1250px) {
	.be-container {
		max-width: 1070px!important;
	}
	#block-search {
		background: #000;
	}
}

