.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after,.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: '';
}

@media only screen and (max-width: 991px) {
	.container {
		max-width: 650px;
		padding: 0;
	}
}
@media only screen and (max-width: 750px) {
	.container {
		max-width: 335px;
	}
}
@media only screen and (min-width: 992px) {
	.container {
		max-width: 960px;
		padding: 0;
	}
}
@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1150px;
	}
}
@media only screen and (min-width: 1450px) {
	.container {
		max-width: 1400px;
	}
}
/*视频弹出*/
.video-masked {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 300;
	display: none;
}
.video-masked .video-x {
	display: block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}
.video-x:before,.video-x:after {
	content: '';
	display: block;
	width: 40px;
	height: 6px;
	border-radius: 3px;
	overflow: hidden;
	background-color: #FFFFFF;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -3px 0 0 -20px;
	transform: rotate(45deg);
}
.video-x:after {
	transform: rotate(-45deg);
}
.video-masked video {
	display: block;
	background-color: #000000;
}
@media only screen and (max-width: 991px) {
	.video-masked video {
		width: 650px;
		margin: 200px auto 0;
	}
}
@media only screen and (max-width: 750px) {
	.video-masked video {
		width: 335px;
		margin: 150px auto 0;
	}
	.video-masked .video-x {
		width: 24px;
		height: 24px;
		top: 10px;
		right: 10px;
	}
	.video-x:before,.video-x:after {
		width: 24px;
		height: 3px;
		border-radius: 1.5px;
		margin: -1.5px 0 0 -12px;
	}
}
@media only screen and (min-width: 992px) {
	.video-masked video {
		width: 850px;
		height: -moz-calc(100% - 200px);
		height: -webkit-calc(100% - 200px);
		height: calc(100% - 200px);
		margin: 100px auto;
	}
}
@media only screen and (min-width: 1200px) {
	.video-masked video {
		width: 1000px;
	}
}
@media only screen and (min-width: 1450px) {
	.video-masked video {
		width: 1200px;
	}
}
/*公共右侧联系方式*/
.right-common {
	width: 80px;
	height: 360px;
	border-radius: 6px 0 0 6px;
	text-align: center;
	position: fixed;
	top: 50%;
	right: 0px;
	z-index: 10;
	box-shadow: 4px 4px 20px rgba(47,44,54,0.32);
	margin-top: -150px;
}
.right-common li {
	width: 100%;
	height: 25%;
	padding: 15px 0;
	border-bottom: 1px solid #e3e8ee;
	background-color: #ffffff;
	position: relative;
	cursor: pointer;
	transition: background-color 0.5s;
}
.right-common li:first-of-type {
	border-radius: 6px 0 0 0;
}
.right-common li:last-of-type {
	border-radius: 0 0 0 6px;
	border-bottom: none;
}
.right-common .icon-common {
	width: 32px;
	height: 32px;
	overflow: hidden;
	margin: 0 auto 3px;
	position: relative;
}
.icon-common svg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: opacity 0.5s;
}
.icon-common svg:nth-of-type(2) {
	opacity: 0;
}
.right-common li p {
	width: 100%;
	height: 25px;
	line-height: 25px;
	font-size: 15px;
	color: #005bac;
	overflow: hidden;
}
.right-wx {
	width: 260px;
	overflow: hidden;
	background-color: #ffffff;
	position: absolute;
	right: 90px;
	top: 0px;
	display: none;
}
.right-wx img {
	width: 100%;
}
.right-contact {
	width: 300px;
	border-radius: 4px;
	padding: 5px 50px 15px;
	overflow: hidden;
	border: 3px solid #005bac;
	background-color: #ffffff;
	position: absolute;
	right: 90px;
	top: 0px;
	display: none;
}
.right-contact h4 {
	color: #005bac;
	font-size: 16px;
    line-height: 35px;
    border-bottom: 1px solid #dce1e6;
    margin: 10px 0 0;
}
.right-contact p {
	color: rgb(125, 137, 151) !important;
	height: auto !important;
}
.right-common li:hover {
	background-color: #005bac;
}
.right-common li:hover p {
	color: #ffffff;
}
.right-common li:hover .icon-common svg:nth-of-type(1) {
	opacity: 0;
}
.right-common li:hover .icon-common svg:nth-of-type(2) {
	opacity: 1;
}
@media only screen and (max-width: 1200px) {
	.right-common {
		display: none;
	}
}