/* 多语言切换（橙主题，适配首页图标 / 我的 / 登录） */
.lang-sheet-mask {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10050;
    background: rgba(0, 0, 0, .45);
}
.lang-sheet-mask.is-open {
    display: block;
}
.lang-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 8px 16px 20px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .12);
}
.lang-sheet-hd {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 12px 0 8px;
}
.lang-sheet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lang-sheet-list li {
    padding: 14px 8px;
    text-align: center;
    font-size: 16px;
    color: #333;
    border-top: 1px solid #f1f2f4;
    cursor: pointer;
}
.lang-sheet-list li.is-active {
    color: #ea5514;
    font-weight: 600;
}
.lang-sheet-cancel {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #f5f6f8;
    color: #666;
    font-size: 15px;
}
.header .lang-switch-entry,
.lang-link {
    cursor: pointer;
}
