.popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999999;
	display: none;
}

.popupbox {
	box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, .3);
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	width: 386px;
	height: 430px;
	background: #ffffff;
	background-size: contain;
}
.toptitlebg {
	height: 8px;
	background: #0068ff;
}

.popupbox_title {
	position: absolute;
	font-size: 24px;
	font-family: PingFang SC;
	color: #020202;
	line-height: 60px;
	top: 47px;
	left: 50%;
	transform: translate(-50%);
	width: 266px;
	text-align: center
}

.popup-img {
	width: 249px;
	height: 249px;
	position: relative;
	left: 50%;
	top: 27%;
	transform: translate(-50%);
}

.zixun {
	font-size: 20px;
	line-height: 1.8;
	text-align: center;
	position: relative;
	top: 70%;
}
.zoomIn {
	-webkit-animation: zoomIn 500ms;
	animation: zoomIn 500ms;
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	50% {
		opacity: 1;
	}
}

.zoomOut {
	-webkit-animation: zoomOut 500ms;
	animation: zoomOut 500ms;
}

@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}