@media screen and (max-width: 768px) {
    .translateSelectLanguage {
        right: 60px !important;
        display: none;
    }
}

.translateSelectLanguage {
    position: fixed;
    top: 2px;
    right: 10px;
    padding: 2px;
    max-width: 120px;
    z-index: 999;
    
    font-size: 16px;
    color: #333;
    background: #fafdfe;
    border: 2px solid #ed6d00;
    border-radius: 6px;
    /* 去掉浏览器默认下拉框样式 */
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    transition: all 0.3s ease;
    /* 设置宽度 */
    cursor: pointer;
}

.translateSelectLanguage:hover {
    border-color: #ed6d00;
    /* 悬停时的边框颜色 */
}

.translateSelectLanguage:focus {
    outline: none;
    /* 去掉默认聚焦样式 */
    border-color: #ed6d00;
    /* 聚焦时的边框颜色 */
}

.translateSelectLanguage option {
    padding: 10px;
    font-size: 14px;
}
