.nav-main .nav:hover .language {
    color: #000!important;
    border-color: #000!important;
}


/* 模拟select的容器 */
.nav-main .custom-select {
    position: relative;
    margin: 2px 0;
    position: absolute;
    right: 112px;
    z-index: 1000;
    color: #fff;
}

/* 模拟select的触发框（带圆角） */
.nav-main .select-trigger {
    padding: 3px 4px;
    border: 1px solid #ccc;
    border-radius: 6px; /* 触发框圆角 */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* 模拟option的下拉列表 */
.nav-main .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    border: 1px solid #ccc;
    border-radius: 6px; /* 列表整体圆角 */
    background: #fff;
    display: none; /* 默认隐藏 */
    overflow: hidden; /* 裁剪option圆角 */
}

/* 模拟option的选项（带圆角） */
.nav-main .options li {
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 4px; /* option圆角 */
    margin: 2px; /* 留出间距，避免圆角被遮挡 */
    font-size: 12px;
    color: #000;
}
.nav-main .options li:hover {
    
}

/* 悬停效果 */
.nav-main .options li:hover {
    background: #e6f7ff;
}

/* 选中态 */
.nav-main .options li.active {
    background: #1890ff;
    color: #fff;
}

/* 展开时显示列表 */
.nav-main .custom-select.open .options {
    display: block;
}