#header{
    width: 100%;
    background: #222;
    height: 80px;
}
#header .content-1200{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
#header .tab-item{
    font-size: 16px;
    color: #FFFFFF;
    margin: 0 40px;
    cursor: pointer;
}
#header .tab-item.active{
    color: #DAAF77;
}

#header .status-content{
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 14px;
}
#header .status-content .js-user-photo{
    background-size: 100%!important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 10px;

}
#header .status-content i{
    width: 7.5px;
    height: 4px;
    background: url(/images/index/icon/arrow-down-white.png) no-repeat;
    background-size: 100%;
    margin-left: 4px;
    transition: all .3s;
    display: block;
}
#header .status-content p:hover{
    color: linear-gradient(180deg, #62C69B 0%, #60C0B2 100%);;
    cursor: pointer;
}
#header .status-content p:hover i{
    background: url(/images/index/icon/arrow-down-active.png) no-repeat;
    background-size: 100%;
    transform: rotate(180deg);
}

#header .status-content .link-content{
    position: absolute;
    top: 65px;
    width: 140px;
    display: inline-flex;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    z-index: 1;
    color: #111;
    gap: 10px;
    display: none;
}
#header .status-content .link-content .flex{
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
    padding: 0 8px;
}
#header .status-content .link-content .flex span{
    font-family: DIN Alternate;
}
#header .status-content .link-content .flex.border{
    border-bottom: 1px dashed #DDD;
    padding-bottom: 15px;
}
#header .status-content .link-content button{
    width: 110px;
    height: 30px;
    border-radius: 28px;
    font-size: 14px;
}
#header .status-content:hover .link-content{
    display: flex;
    gap: 10px;
}
#header .status-content .link-content:before {
    content: "";
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-top: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    left: 62px;
    top: -16px;
    z-index: 2;
}
