/* 语言选择器样式 */
.language-selector {
    position: relative;
    width: 120px;
    margin-left: 5px;
}

.language-select {
    /* 核心：隐藏默认箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    padding: 2px 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background-color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 10;
}

.language-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;

}
.language-icon img {
    width: 1.75rem;
}