.video_pop .banZb {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.video_pop .zbLi {
	position: absolute;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.video_pop img {

	transition: all 0.5s !important;
	border: 0;
	display: inline-block;
}

.video_pop .zbTb img {
	position: absolute;
	opacity: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 22px;
	z-index: 20;
	height: auto;
}

.video_pop .zbTb {
	position: relative;
	pointer-events: none;
	width: 64px;
	height: 64px;
	z-index: 10;
}

.video_pop .zbTb:before {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #0e3778;
	z-index: 15;
}

.video_pop .zbTb:after {
	content: '';
	width: 0px;
	height: 0px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	transition: all .3s ease 0s;
	z-index: 16;
}

.video_pop .zbCen {
	position: relative;
	width: 100%;
	height: 100%;
}

.video_pop .zbCen:before {
	content: '';
	background: rgba(255, 255, 255, .7);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	animation: kuosan 2.2s linear 0s infinite;
}

.video_pop .zbCen:after {
	content: '';
	background: rgba(255, 255, 255, .7);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	animation: kuosan 2.2s linear .8s infinite;
}

@keyframes kuosan {
	0% {
		width: 24px;
		height: 24px;
		opacity: 1;
	}

	50% {
		width: 40px;
		height: 40px;
		opacity: 1;
	}

	75% {
		width: 50px;
		height: 50px;
		opacity: 0.5;
	}

	100% {
		width: 60px;
		height: 60px;
		opacity: 0.2;
	}
}

.video_pop .zbyuan {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
	color: #fff;
	left: 50%;
	font-size: 20px;
}

.video_pop .zbLi:hover .zbyuan {
	opacity: 0;
}

.video_pop .zbLi:hover .zbTb img {
	opacity: 1;
}

.video_pop .zbLi:hover .zbTb:after {
	animation: kuo .2s ease 0s forwards;
}


.video_pop .zbText {
	position: absolute;
	transform: translateY(0);
	left: 8px;
	top: 8px;
	transition: 0.6s all;
	opacity: 0;
	padding-left: 50px;
}

.video_pop .zbLink {
	border-radius: 30px;
	line-height: 48px;
	min-width: 180px;
	display: block;
	padding-left: 10px;
}

.video_pop .zbText:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0;
	z-index: -1;
	width: 0;
	height: 100%;
	background: #0e3778;
	border-radius: 22px;
}

.video_pop .zbTitle {
	color: #fff;

}

.video_pop .zbLi:hover .zbText:before {
	width: 100%;
	transition: all .4s cubic-bezier(.34, .44, .41, 1.12);
}

.video_pop .zbLi:hover .zbCen:before {
	display: none;
}

.video_pop .zbLi:hover .zbCen:after {
	display: none;
}

.video_pop .zbLi:hover .zbText {
	opacity: 1;
}

#videoLayer {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.4);
	display: none;
}

#videoLayer .video-box {
	width: 66%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

#videoLayer .video-box video {
	width: 100%;
}

#videoLayer .video-box .closes {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	text-align: center;
}

#videoLayer .video-box .closes span {
	color: #fff;
	height: 100%;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
}

#videoLayer .video-box .closes:hover {
	background: rgba(0, 0, 0, 0.5);
}

#videoLayer .text {
	width: 100%;
	background-color: #fff;
	box-sizing: border-box;
}

#videoLayer .text img {
	width: 100%;
}

#videoLayer .text p {
	color: #666;
	text-align: center;
	font-size: 32px;
	padding: 4vw;
	height: 400px;


}

@keyframes kuo {
	0% {
		width: 0;
		height: 0;
	}

	100% {
		width: 40px;
		height: 40px;
	}
}


@media only screen and (max-width: 768px) {
	#videoLayer .video-box .closes {
		width: 24px;
		height: 24px;
	}

	#videoLayer .text p {
		padding: 54px 20px;
		height: 180px;
	}

	#videoLayer .text p {
		font-size: 18px;
	}

	.video_pop .zbTb:before {
		width: 22px;
		height: 22px;
	}

	.video_pop .zbyuan {
		font-size: 14px;
	}

	.video_pop .zbTb img {
		width: 14px;
	}

	.video_pop .zbCen:before {
		width: 24px;
		height: 24px;
	}

	.video_pop .zbCen:after {
		width: 24px;
		height: 24px;
	}

	@keyframes kuosan {
		0% {
			width: 16px;
			height: 16px;
			opacity: 1;
		}

		50% {
			width: 27px;
			height: 27px;
			opacity: 1;
		}

		75% {
			width: 35px;
			height: 35px;
			opacity: 0.5;
		}

		100% {
			width: 45px;
			height: 45px;
			opacity: 0.2;
		}
	}

	.video_pop .zbLink {
		line-height: 32px;
		min-width: 95px;
		padding-left: 0;
		border-radius: 22px;
	}

	.video_pop .zbTitle {
		margin-left: 0px;
		font-size: 12px;
	}

	@keyframes kuo {
		0% {
			width: 0;
			height: 0;
		}

		100% {
			width: 26px;
			height: 26px;
		}
	}

	.video_pop .zbText {
		left: 17px;
		top: 16px;
		padding-left: 35px;
	}
}