/*
* 登录页样式
*/
.content {
	width: 100%;
	min-height: 860px;
	background-image: url('../img/loginBg.png');
	background-size: 100% 100%;
	display: flex;
	justify-content: center;
}
.conBg {
	width: 594px;
	height: 662px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
	border-radius: 30px;
	padding: 30px 30px;
	box-sizing: border-box;
	margin-top: 110px;
}
.conBg .con {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.conBg .con .conTil {
	font-size: 30px;
	font-weight: 600;
	color: #030924;
	margin-top: 30px;
}
.conBg .con .item {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.conBg .con .itemTil {
	font-size: 24px;
	font-weight: 500;
	color: #333333;
	margin-bottom: 20px;
}
.conBg .con .itemTil div {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #0089E5;
	border: 4px solid rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	margin-right: 9px;
}
.conBg .con .itemCon {
	font-size: 18px;
	font-weight: 400;
	color: #666666;
	line-height: 28px;
}

.conBg .con img {
	width: 180px;
	height: 180px;
	margin-top: 20px;
}
.blueTxt {
	color: #0089E5;
}