header {
    margin: 0 auto;
    width: 1200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.herder-operate {
    font-size: 20px;
    font-weight: 500;
}

.operate {

    height: 70px;
    line-height: 70px;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;

}

.operate:hover {
    color: #0182FF;
}

.operate-active::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #0182FF;
    position: absolute;
    bottom: 10px;
    left: 0;
}

.mr-70 {
    margin-right: 70px
}

.vertical {
    width: 1px;
    height: 30px;
    border: 1px solid #ECECEC;
    margin: 0 20px;
}


.content-mobile-menu {
    position: relative;
    display: none;
}

.content-mobile-menu:hover .mobile-menu-popover {
    display: block;
}

.mobile-menu-popover {
    display: none;
    position: absolute;
    top: 60px;
    width: 160px;
    z-index: 99;
    filter: drop-shadow(0 4px 4px rgb(0, 0, 0, 0.2));
    transition: all .3s ease-in-out;
    background-color: #fff;
    border-radius: 4px;
    padding: 8px 0;
    border-top: 1px solid #f5f5f5;
    transition: all .2s;
}

.mobile-menu-item {
    height: 32px;
    line-height: 32px;
    padding: 0 14px;
    transition: all .2s;
    cursor: pointer;
    display: block;
}

.mobile-menu-item:hover {
    background-color: #e6f7ff;
}

.mobile-menu-item.active {
    font-weight: 500;
    color: #0182FF;
    position: relative;
}

.mobile-menu-item.active::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 70%;
    transform: translateY(-50%);
    background: #0182FF;
    border-radius: 0 2px 2px 0px;
}

.mobile-menu-other {
    margin-top: 5px;
    border-top: 1px solid #f5f5f5;
    padding-top: 5px;
    display: none;
}

.mobile-menu-other .mobile-menu-other--item {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    transition: all .2s;
    cursor: pointer;
    display: block;
}

.head-content-right {
    align-items: center;
}

.head-content-right .content-manage {
    font-size: 16px;
    font-weight: 400;
    margin: 0 20px;
}

.head-content-right .content-workbench {
    width: 16px;
    height: 16px;
    margin-left: 40px;
    cursor: pointer;
}

.head-content-right .content-userInfo {
    margin-left: 40px;
    align-items: center;
}

.head-content-right .content-userInfo:hover .userInfo-popover {
    display: block;
}


.content-userInfo .userInfo-popover::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid;
    border-color: transparent transparent #fff;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.content-userInfo .userInfo-portrait {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.content-userInfo .userInfo-name {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    max-width: 120px;
}

.content-userInfo .content-userInfo-login,
.content-userInfo .content-userInfo-registere {
    font-size: 16px;
    cursor: pointer;
}


.head-content-right .content-userInfo:hover .userInfo-popover {
    display: block;
}

.content-userInfo .userInfo-popover {
    display: none;
    position: absolute;
    top: 40px;
    right: -18px;
    min-width: 120px;
    width: 100%;
    max-width: 160px;
    z-index: 99;
    /* transform: translateX(-50%); */
    filter: drop-shadow(0 4px 4px rgb(0, 0, 0, 0.2));
    transition: all .3s ease-in-out;
    background-color: #fff;
    border-radius: 4px;
    padding: 8px 0;
    border-top: 1px solid #f5f5f5;
    transition: all .2s;
}

.userInfo-popover .userInfo-popover-item {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    transition: all .2s;
    cursor: pointer;
}

.userInfo-popover .userInfo-popover-item i {
    margin-right: 8px;
}

.userInfo-popover .userInfo-popover-item:hover {
    background-color: #e6f7ff;
}

.userInfo-name {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    max-width: 120px;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-userInfo-login:hover,
.content-userInfo-registere:hover {
    color: #0182FF;
}