.blue {
	color: #0f6fc6;
}

.bg-blue {
	background-color: #0f6fc6;
}

/* --------------------- tabbar栏 ------------------- */
.tab-bar-wrap {
	width: 100%;
	height: 56px;
	background-color: #fff;
}

#tabbar {
	display: flex;
	justify-content: space-evenly;
	position: fixed;
	bottom: 0;
	width: 100%;
	border-top: 1px solid rgba(76, 76, 76, 0.1);
	background-color: #fff;
}

#tabbar .tabbar-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	width: 45px;
	height: 45px;
	padding: 5px 20px;
}

#tabbar .tabbar-list img {
	width: 25px;
	height: 25px;
}

#tabbar .tabbar-list span {
	padding-top: 5px;
	font-size: 12px;
}

/* --------------------- tips ------------------- */

.tips {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #fff;
}

.tips p {
	font-size: 18px;
	margin: 50px 50px 20px 50px;
	color: #666666;
	text-align: center;
	border: 1px dotted #ccc;
	border-radius: 5px;
	padding: 20px;
}

.tips a {
	color: #ffffff;
	padding: 10px 30px;
	border-radius: 5px;
	background-color: #0f6fc6;
}