header{
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}
.header{
	width: 100%;
	height: 120px;
	display: inline-block;
}
.logo{
	height: 50px;
	display: block;
	float: left;
	margin-top: 35px;
}
.logo img{
	height: 100%;
	display: block;
}
.heade{
	float: right;
	display: flex;
	margin-top: 40px;
}
.heade li{
	margin-right: 40px;
	position: relative;
}
.heade li:last-child{
	margin-right: 0;
}
.heade li:hover .heade2{
	display: block;
}
.heade1{
	padding: 0 10px;
	height: 40px;
	line-height: 40px;
	display: block;
	font-size: 18px;
	color: white;
}
.heade1.on{
	border-bottom: 2px solid #7C1823;
	color: #7C1823;
}
.heade1:hover{
	border-bottom: 2px solid #7C1823;
	color: #7C1823;
}
.heade2{
	width: 100%;
	padding-top: 10px;
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
}
.heade2_1{
	width: 100%;
	height: 45px;
	text-align: center;
	line-height: 45px;
	padding: 0 10px;
	font-size: 16px;
	color: white;
	display: block;
	white-space: nowrap;       /* 防止文本换行 */
	  overflow: hidden;          /* 隐藏溢出的内容 */
	  text-overflow: ellipsis;   /* 显示省略符号来代表被修剪的文本 */
}
.heade2_1:hover{
	background: rgba(255, 255, 255, .2);
	box-shadow: 0 0 3px rgba(0,0,0, .1);
}