/* CSS Document */
.Vidage {
	position: relative;
	width:100%;
	margin:0 auto;
	overflow:hidden;
	text-align:center;
}
.Vidage__backdrop, .Vidage__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0
}
.Vidage--allow .Vidage__video {
	display: block
}
.Vidage--allow .Vidage__image {
	display: none
}
.Vidage__video {
	object-fit: cover;
	width:100%;
	height: auto;
}
.Vidage__image {
	background-image: url(../video/bg.jpg);
	background-position: 50%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}
.overplay{
	z-index: 3;
	position: absolute;
	width: 100%; height: 100%;
	background-image: url(../images/videooverlay1.png);
    background-repeat: repeat;
	background-position: center;
}
.spsm {
	position:absolute;
	width:100%;
	bottom:35%;
	text-align:center;
	z-index:5;
}
.spsm h1 {
	font-size:24px;
	color:#fff;
	text-shadow:1px 1px 1px #000;
}
.spsm p {
	font-size:20px;
	color:#fff;
	text-shadow:1px 1px 1px #000;
}
@media (max-width: 1600px){
	.spsm {
		bottom:15%;
	}
}/*手机模式视频隐藏*/
@media (max-width: 1000px) {
	.Vidage {
		display:none;
	}
}

