.top-header {
    background-color: #0C0D22;
    height: 1.12rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    /*position: fixed;*/
    /*width: 100%;*/
    /*top: 0;*/
    /*left: 0;*/
    /*z-index: 1000;*/
}

.top-header .lang-switch {
    position: absolute;
    right: 0.5rem;
    top: calc(50% - 0.2rem);
    width: 0.37rem;
    height: 0.37rem;
    cursor: pointer;
}
.top-header .lang-switch:hover{
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.1rem;
}
.top-header .lang-switch .checked {
    position: absolute;
    z-index: 10;
    background-color: #FFFFFF;
    border: 0.01rem solid #FFFFFF;
    border-radius: 0.05rem;
    font-size: 0.14rem;
    color: #0C0D22;
    width: 0.2rem;
    height: 0.2rem;
    line-height: 0.2rem;
    text-align: center;
}
.top-header .lang-switch .unChecked {
    position: absolute;
    z-index: 9;
     background-color: #0C0D22;
    border: 0.01rem solid #FFFFFF;
    border-radius: 0.05rem;
    font-size: 0.12rem;
    color: #FFFFFF;
    width: 0.17rem;
    height: 0.17rem;
    line-height: 0.17rem;
    text-align: center;
    margin-left: 0.15rem;
    margin-top: 0.15rem;
}

.top-header .nav-bar {
    width: 13.9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.top-header .nav-bar .nav-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
}

.top-header .nav-bar .nav-left .navTagline {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.15rem;
    border-radius: 1rem;
    color: #FFF;
    font-size: 0.14rem;
    font-weight: 400;
}

.top-header .nav-bar .nav-left .logo {
    width: 1.74rem;
    height: auto;
    cursor: pointer;
}

.top-header .nav-bar .nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.24rem;
}

.top-header .nav-bar .nav-right .menus {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.49rem;
}

.top-header .nav-bar .nav-right .menus .nav-item {
    font-size: 0.18rem;
    font-weight: 400;
    color: #FFF;
    position: relative;
}

/* 除了最后一个，都加竖杠 */
.top-header .nav-bar .nav-right .menus .nav-item:not(:last-child)::after {
    position: absolute;
    content: "|";
    right: -0.245rem;
    color: #FFF;
}

.top-header .nav-bar .nav-right .experience-btn {
    background-color: #FF6F2E;
    font-size: 0.14rem;
    font-weight: 400;
    color: #FFF;
    padding: 0.1rem 0.3rem;
    border-radius: 0.1rem;
}