header{
	width: 100%;
	background: linear-gradient(to bottom , #FFFFFF, rgba(255,255,255,0.8));
	/* background: rgba(255,255,255,0.8); */
	box-shadow: 0px 0px 10px 0px rgba(27,93,219,0.08);
	backdrop-filter: blur(30px);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1001;
}
.header{
	width: 100%;
	height: 70px;
	display: inline-block;
}
.logo{
	height: 40px;
	display: block;
	float: left;
	margin-top: 15px;
}
.logo img{
	height: 100%;
	display: block;
}
.heade1{
	width: 95px;
	height: 30px;
	box-shadow: 0px 2px 4px 0px rgba(47,79,139,0.2);
	border-radius: 30px;
	border: 1px solid #0D3FB9;
	font-weight: 400;
	font-size: 14px;
	color: #1B5DDB;
	text-align: center;
	line-height: 30px;
	display: block;
	float: left;
	margin-top: 20px;
}
.heade2{
	width: calc(100% - 220px);
	height: 100%;
	float: left;
	text-align: center;
}
.heade2 li{
	display: inline-block;
	margin-right: 40px;
}
.heade2 li:last-child{
	margin-right: 0;
}
.heade2_1{
	height: 70px;
	display: block;
	line-height: 70px;
	font-weight: 400;
	font-size: 16px;
	color: rgba(0,20,72,0.4);
}
.heade2_1.on{
	color: #1B5DDB;
	position: relative;
}
.heade2_1.on::after{
	content: '';
	width: 24px;
	height: 3px;
	background: linear-gradient( 135deg, #6B91EF 0%, #1B5DDB 100%);
	border-radius: 3px;
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
}