/* 语言切换器样式 */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-current {
    cursor: pointer;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-current i {
    font-size: 1.2rem;
}

.language-options {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    min-width: 120px;
    z-index: 1000;
    overflow: hidden;
}

.language-options.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.language-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.language-option:hover {
   background: #fff;
}

.language-option.active {
    background:#fff;
}

.language-option span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


