.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-box {
    width: 100%;
    height: 140px;
}
/* 顶部 */
.top {
    display:flex;
    align-items: center;
    height: 80px;
}
.top a:hover {
    text-decoration: none;
    color:#003364;
    font-size: 16px;
}
.top a {
     color: #2572B9;
     font-size: 16px;
}
.top_logo {
    width: 428px;
}
.top_menu {
    flex: 1;
    text-align: right;
    /* 去除inlineblock间距 */
    font-size: 0;
     -webkit-text-size-adjust:none;
}
.top_menu_item {
    position: relative;
    display: inline-block;
    padding: 0 16px;
    color: #2572B9;
    font-size: 16px;
}
.top_menu_item_active a {
    color: #003364 !important;
}
.top_menu_item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color:#2572B9;
}
.top_menu_item:last-child::after {
     width: 0;
     height: 0;
}
.top_login {
    padding-left: 20px;
    box-sizing: border-box;
    width: 120px;
    color: #2572B9;
    font-size: 16px;
    cursor: pointer;
}
.top_user {
    display: none;
}
.user_phone {
    margin-right: 6px;
    font-size: 16px;
}
.top_logout {
    cursor: pointer;
    color: #2572B9;
    font-size: 16px;
}
.console-btn {
    display: none;
}
/* 菜单 */
.header-menu__wrap {
    display: flex;
}
.header-menu__item {
    flex: 1;
    position: relative;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}
.header-menu__item > a {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}
.header-menu__item > a:hover {
    color:#003364;
    background-color: #5393FB;
}
.header-menu__item--active, .header-menu__item--active > a{
    color: #003364 !important;
    background-color: #5393FB;
}
.header-submenu__wrap {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color:  #003364;;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header-menu__icon {
    vertical-align: middle;
    display: inline-block;
    margin-left: 4px;
    width: 12px;
    height: 10px;
    transform: rotate(-180deg);
    transition: all 0.2s;
}
.header-menu__hasChild {
    font-size: 15px;
}
.header-menu__hasChild:hover .header-submenu__wrap {
    opacity: 1;
    visibility: visible;
}
.header-menu__hasChild:hover .header-menu__icon {
    transform: rotate(0deg);
    transition: all 0.2s;
}
.header-menu__hasChild:hover .header-menu__icon {
    transform: rotate(0deg);
    transition: all 0.2s;
}
