/* 语言选择下拉框容器及控件基础样式 */
#lang_choice_1 {
    margin: auto;
    /* 去掉默认下拉箭头，方便自定义 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 字体、颜色与导航栏适配 */
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #fff;
    /* 背景与导航栏一致 */
    background-color: #252b5b;
    /*border: 1px solid #fff;*/
    border-radius: 4px;
    padding: 6px 30px 6px 10px;
    /* 用于放置自定义箭头的背景图 */
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    cursor: pointer;
}
/* 聚焦样式，增强交互反馈 */
#lang_choice_1:focus {
    outline: none;
    /*border-color: #ff003c; !* 可结合品牌色调整，比如导航栏里的红色 *!*/
    /*box-shadow: 0 0 4px rgba(255, 0, 60, 0.4);*/
}
/* 仅在屏幕宽度 >= 1024px 时生效（通常认为是 PC 端） */
@media (min-width: 1024px) {
    #lang_style_1_1751269872128 {
        top: 132px !important;
    }
}

/* 仅在手机端生效的样式 - 屏幕宽度小于768px */
@media (max-width: 767px) {
    #lang_style_1_1751269872128 {
        top: 28px !important;
    }
    #lang_choice_1{

        background: white;
        color: #1c2b66;
        border: none;
    }
}
