
/* ÈÝÆ÷ */
.lang-wrapper {
    position: relative;
    display: inline-block;
}

/* Í¼±ê°´Å¥ */
.lang-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 20px;
}

    .lang-btn:hover {
        background: #eaeaea;
    }

/* ÏÂÀ­¿ò */
.lang-menu {
    position: absolute;
    top: 48px;
    right: 0;
    min-width: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    display: none;
    z-index: 1000;
}

    .lang-menu.show {
        display: block;
    }

.lang-item {
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
}

    .lang-item:hover {
        background: #f0f0f0;
    }

    .lang-item.active {
        color: red;
        font-weight: bold;
    }