header{
	width: 100%;
}
.header{
	width: 100%;
	height: 105px;
	display: inline-block;
}
.logo{
	height: 45px;
	float: left;
	display: block;
	margin-top: 30px;
}
.logo img{
	height: 100%;
	display: block;
}
.heade{
	float: right;
	display: flex;
}
.heade li{
	margin-right: 45px;
	position: relative;
}
.heade li:last-child{
	margin-right: 0;
}
.heade1{
	display: block;
	line-height: 105px;
	font-size: 16px;
	color: #333333;
}
.heade2{
    width: 150px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05);
    padding: 10px 0;
    border-radius: 10px;
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    z-index: 10;
}
.heade2_1{
    width: 100%;
    padding: 10px;
    display:block;
    text-align: center;
        font-size: 14px;
    color: #333333;
     white-space: nowrap; /* 防止文本换行 */
  overflow: hidden;    /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 显示省略号来代表被修剪的文本 */
}
.heade2_1:hover{
   background: #F7F7F7;
    color: #154876;
}
.heade li.on .heade1{
    font-weight: bold;
    color: #154876;
    position: relative;
}
.heade li.on .heade1::after{
    content:'';
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #154876;
    position: absolute;
    left: 0;
    bottom: 0;
}
.heade li:hover .heade1{
    font-weight: bold;
    color: #154876;
    position: relative;
}
.heade li:hover .heade1::after{
    content:'';
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #154876;
    position: absolute;
    left: 0;
    bottom: 0;
}
.heade li:hover .heade2{
    display: block;
}