.header-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.header-content{
    width: 100%;
    /*height: 5.25rem;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-wrapper{
    width: 93.75rem;
    height: 7.8125rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-brand-logo{
    height: 3.3125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 6.25rem;
}
.header-brand-logo-img{
    height: 3.3125rem;
    object-fit: contain;
}
.header-right{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-menu{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-menu-item{
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 2.375rem;
    text-decoration: none;
}
.header-menu-item:last-of-type{
    padding-right: 0;
}
.header-menu-title{
    font-size: 1.1875rem;
    font-weight: 400;
    color: #FFFFFF;
}
.header-menu-item-active, .header-menu-item:hover .header-menu-title{
    color: #f47f00;
}
.header-right-actions{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-right-action{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    margin-right: 2.3125rem;
}
.header-right-action:last-of-type{
    margin-right: 0;
}
.header-right-action-icon{
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-right-action-icon-img{
    width: 1.75rem;
    object-fit: contain;
}
.header-right-action-icon-img:last-of-type{
    display: none;
}
.header-right-action-title{
    font-size: 1.125rem;
    color: #FFFFFF;
    font-weight: bold;
    padding-left: 0.9375rem;
}
.header-right-action:hover .header-right-action-title{
    color: #f47f00;
}

/* 白色背景、导航下拉时 */
.header-container-white, .header-container-down{
    background-color: #FFFFFF;
}
.header-container-white .header-brand-logo-img:first-of-type, .header-container-down .header-brand-logo-img:first-of-type{
    display: none;
}
.header-container-white .header-brand-logo-img:last-of-type, .header-container-down .header-brand-logo-img:last-of-type{
    display: block;
}
.header-container-white .header-menu-title, .header-container-down .header-menu-title{
    color: #000000;
}
.header-container-white .header-right-action-title, .header-container-down .header-right-action-title{
    color: #000000;
}
.header-container-white .header-content, .header-container-down .header-content{
    border-bottom: #eeeeee solid 0.0625rem;
}
.header-container-white .header-right-action-icon-img:last-of-type, .header-container-down .header-right-action-icon-img:last-of-type{
    display: block;
}
.header-container-white .header-right-action-icon-img:first-of-type, .header-container-down .header-right-action-icon-img:first-of-type{
    display: none;
}