.mTips {
	position: fixed;
	padding: 8px 12px;
	color: #fff;
	border-radius: 5px;
	font-family: "微软雅黑";
	z-index: 999;
	display: inline;
	font-size: 14px;
}

.mTips-default {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
}

.mTips-success {
	background-color: rgba(92, 184, 92, 0.8);
	color: #fff;
}

.mTips-info {
	background-color: rgba(91, 192, 222, 0.8);
	color: #fff;
}

.mTips-warning {
	background-color: rgba(240, 173, 78, 0.9);
	color: #fff;
}

.mTips-danger {
	background-color: rgba(217, 83, 79, 0.8);
	color: #fff;
}

.tips {
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	margin: 50px auto;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.tips.tips-success {
	background-color: #5cb85c;
}

.tips.tips-info {
	background-color: #5bc0de;
}

.tips.tips-warning {
	background-color: #f0ad4e;
}

.tips.tips-danger {
	background-color: #d9534f;
}