/* 错误提示信息 */
.tips {
	max-width: 380px;
	width: 100%;
	font-size: 14px;
	color: red;
	padding-left: 11px;
	height: 21px;
}

/* 输入框  */
.inputBox-marginTop {
	margin-top: 10px !important;
}

/* 禁止选中 */
.prohibit-selection {
	user-select: none;
}

body{
	position: relative;
	overflow: hidden;
}

/*弹窗*/
#advertisement{
	position: absolute;
	top: 65%;
	left: 20%;
	width: 150px;
	height: 150px;
	display: none;
	/*动画无限魂环*/
	animation: shake 0.5s infinite;
	cursor: pointer;
}
/*鼠标悬停停止动画*/
#advertisement:hover{
	animation-play-state: paused;
}
@media screen and (max-width: 768px){
	#advertisement{
		display: none !important;
	}
}
@keyframes shake {
	/*0% { transform: translateX(0); }*/
	/*50% { transform: translateX(10px); }*/
	/*100% { transform: translateX(0); }*/

	0% { transform: rotate(0deg); }
	50% { transform: rotate(10deg); }
	100% { transform: rotate(0deg); }
}









