/* PC 语言切换 — 设计稿 1440 高，100px = 1rem */
.lang-switch {
    position: relative;
    flex-shrink: 0;
}

.lang-switch-trigger {
    display: flex;
    align-items: center;
    gap: 0.06rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    height: 0.42rem;
	margin-left: .2rem;
}

.lang-switch-icon {
    width: 0.26rem;
    height: 0.26rem;
    background: url('https://media.game-tree.com/ll/home/common/img/lang_icon.png') no-repeat center center;
    background-size: contain;
    flex-shrink: 0;
}

.lang-switch-label {
    color: #030303;
    font-size: 0.20rem;
    line-height: 1;
    white-space: nowrap;
}

.lang-switch-arrow {
    width: 0.14rem;
    height: 0.12rem;
    background: url('https://media.game-tree.com/ll/home/common/img/lang_arrow.png') no-repeat center center;
    background-size: contain;
    flex-shrink: 0;
}

.lang-switch.open .lang-switch-arrow {
    background-image: url('https://media.game-tree.com/ll/home/common/img/lang_arrow_active.png');
}

.lang-switch-menu {
    display: none;
    position: absolute;
    top: calc(100%);
    right: -.25rem;
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 0.22rem 0 0.14rem;
    width: 1.35rem;
    height: 2.29rem;
    background: url('https://media.game-tree.com/ll/home/common/img/lang_menu_bg.png') no-repeat center top;
    background-size: 100% 100%;
    box-sizing: border-box;
}

.lang-switch.open .lang-switch-menu {
    display: block;
}

.lang-switch-menu li {
    margin: 0;
    padding: 0;
}

.lang-switch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.12rem 0.18rem 0.12rem 0.16rem;
    color: #bc9462;
    font-size: 0.20rem;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s;
}

.lang-switch-item::after {
    content: '';
    width: 0.06rem;
    height: 0.06rem;
    border-top: 0.02rem solid #bc9462;
    border-right: 0.02rem solid #bc9462;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 0.06rem;
}

.lang-switch-item:hover {
    color: #dcc39d;
}

.lang-switch-item:hover::after {
    border-color: #dcc39d;
}
