.header-container{
    width: 100%;
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 0;
    padding: 2.5rem 0;
    background: #FFFFFF;
    z-index: 99;
    border-bottom: #eeeeee solid 1px;
}
.header-container-content-wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* 左侧 */
.header-container-content-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-brand-logo{
    height: 4.625rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.header-brand-logo-img{
    height: 4.625rem;
    object-fit: contain;
}
.header-brand-logo-img:last-of-type{
    display: none;
}

/* 中间 */
.header-container-content-center{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-menus{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-menu{
    width: max-content;
    margin-right: 1.5625rem;
    position: relative;
}
.header-menu:last-of-type{
    margin-right: 0;
}
.header-menu-title{
    font-size: 1.125rem;
    color: #000000;
    text-decoration: none;
}
.header-menu:hover .header-menu-title, .header-menu.active .header-menu-title{
    color: #6fa032;
}

/* 右侧 */
.header-container-content-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-actions{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-action{
    padding: 0 1.75rem;
    height: 3rem;
    line-height: 3rem;
    border: #6fa032 solid 0.125rem;
    background: #6fa032;
    border-radius: 1.625rem;
    color: #FFFFFF;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
}
.language-switcher{
    margin-left: 0.625rem;
    width: 3rem;
    height: 3rem;
    border: #9e9e9e solid 0.125rem;
    border-radius: 1.625rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.language-switcher:hover{
    background: #6fa032;
    border: #6fa032 solid 0.125rem;
}
.language-switcher:hover .language-switcher-icon-img:last-of-type{
    display: block;
}
.language-switcher:hover .language-switcher-icon-img:first-of-type{
    display: none;
}
.language-switcher-icon{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.language-switcher-icon-img{
    width: 1.875rem;
    height: 1.875rem;
    object-fit: contain;
}
.language-switcher-icon-img:last-of-type{
    display: none;
}
.language-switcher-wrapper .gt_switcher-popup {
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* 透明导航 */
.header-transparent{
    background: transparent;
    border-bottom: none;
}
.header-transparent .header-brand-logo-img:last-of-type{
    display: block;
}
.header-transparent .header-brand-logo-img:first-of-type{
    display: none;
}
.header-transparent .header-menu-title{
    color: #FFFFFF;
}
.header-transparent .header-menu:hover .header-menu-title, .header-transparent .header-menu.active .header-menu-title{
    color: #6fa032;
}
.header-transparent .header-action{
    background: transparent;
    border: #FFFFFF solid 0.125rem;
}
.header-transparent .header-action:hover{
    background: #6fa032;
    border: #6fa032 solid 0.125rem;
}
.header-transparent .language-switcher{
    border: #FFFFFF solid 0.125rem;
}
.header-transparent .language-switcher:hover{
    border: #6fa032 solid 0.125rem;
}
.header-transparent .language-switcher-icon-img:last-of-type{
    display: block;
}
.header-transparent .language-switcher-icon-img:first-of-type{
    display: none;
}

/* 内容padding */
.body-padding{
    padding-top: 9.6875rem!important;
}

/* 弹出式菜单 */
.header-menu-pop-menu{
    width: max-content;
    padding: 1.25rem;
    border-radius: 0.625rem;
    background: #ffffff;
    border: #eeeeee solid 1px;
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.header-menu-pop-menu-item{
    color: #000000;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 0.625rem;
}
.header-menu-pop-menu-item:last-of-type{
    margin-bottom: 0;
}
.header-menu-pop-menu-item:hover{
    color: #6fa032;
}

.header-toggle-btn{
    display: none;
}