/*悬停后显示*/
.modal-service__wrap {
	width: 350px;
	height: 505px;
	position: fixed;
	right: 110px;
	bottom: 60px;
	z-index: 900;
	text-align: center;
	pointer-events: none;
	font-size: 20px;
	border-radius: 100%;
}

.modal-service__wrap.active {
	pointer-events: auto
}

.modal-service__wrap.active .ms-inner {
	-webkit-transition: all .4s ease-out;
	transition: all .4s ease-out;
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}
.modal-service__wrap.active .ms-inner iframe{
	width: 350px;
	height: 505px;
	border: none;
	border-radius: 16px;
}

.modal-service__wrap .ms-cont {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal-service__wrap .ms-inner {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}
