/* 语言切换器（美果站新增 UI，不影响原模板样式）
   只显示切换目标语种：中文站显示 EN，英文站显示中文 */
.lang-switch { font-size: 14px; line-height: 1; }
.lang-switch .lang-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #666;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
}
.lang-switch .lang-item .iconfont { font-size: 14px; }
.lang-switch .lang-item:hover {
    background: #0f9e4e;
    border-color: #0f9e4e;
    color: #fff;
}
