/*------------------------------提示框tooltips------------------------------*/
.tooltips {
	position: fixed;
	top: -100%;
	width: 100%;
	background: rgba(0,0,0,.5);
	opacity: 0;
	overflow: hidden;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;

}
.tooltips--active {
	opacity: 1;
	top: 0;
	bottom: 0;
	z-index: 1000;
}
.tooltips__info {
	color: #fff;
	height: 48px;
	line-height: 48px;
	margin: -24px 0 0 -150px;
	position: absolute;
	padding: 0 20px;
	top: -100%;
	left: 50%;
	width: 300px;
	-webkit-transition: top .5s ease .05s;
	-moz-transition: top .5s ease .05s;
	transition: top .5s ease .05s;
	/* -moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px; */
	/* text-align: center; */
	font-size: 16px;
	background: #535353;
}
.tooltips__icon,
.tooltips__text {
	display: inline-block;
	vertical-align: middle;
}
.tooltips__icon {
	font-size: 20px;
	margin: 0 8px 0 0;
	/* display: none; */
}
.tooltips__text {
	letter-spacing: .1em;
}
.tooltips--active .tooltips__info {
	top: 50%;
}
.tooltips--error .tooltips__info{
	background: #ed0d0d;
}
.tooltips--success .tooltips__info {
	background: #12ad0e;
}