/* 基础重置 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft YaHei", sans-serif;
}

/* 导航栏容器 */
.nav-list-001 {
background-color: #fff;
border-bottom: 1px solid #e0e0e0;
padding: 0 20px;
}

/* 导航主容器 */
.data_list_001 {
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
height: 50px;
max-width: 1200px;
margin: 0 auto;
}

/* 导航项基础样式 */
.nav_head {
position: relative;
display: flex;
align-items: center;
height: 100%;
padding: 0 25px;
color: #333;
text-decoration: none;
font-size: 16px;
font-weight: bold;
white-space: nowrap;
cursor: pointer;
}

.item:hover {
color: #1a56a7;
background-color: #FFEAE6;
width: 160px;
height: 59px;
}

/* 有下拉菜单的项 */
.h-nav-item {
position: relative;
height: 100%;
}

/* 下拉菜单 */
.h-nav2 {
position: absolute;
top: 100%;
left: 0;
width: 160px;
background: #fff;
border: 1px solid #e0e0e0;
border-top: none;
display: none;
z-index: 100;
}

// .h-nav-item:hover .h-nav2 {
// display: block;
// }

/* 下拉菜单项 */
.h-nav2-item {
list-style: none;
  height: 48px;s
}

.h-nav2-item a {
display: block;
padding: 10px 20px;
color: #555;
text-decoration: none;
font-size: 14px;
}

// .h-nav2-item a:hover {
// color: #1a56a7;
background-color: #f5f5f5;
// }

/* 当前选中项样式 */
.nav_head.active {
color: #1a56a7;
font-weight: bold;
}

.item {
width: 160px;
height: 59px;
font-weight: bold;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
line-height: 59px;
}