.menu-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-links a {
    color: #000;
    text-decoration: none;
    padding: 0 10px;
    border-left: 1px solid #ccc;
    font-weight: 500;
}

.menu-links a:first-child {
    border-left: none; /* 第一个不加分隔线 */
}


.vt-flyout {
    position: relative;
}

.vt-flyout-button {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: var(--vt-nav-height);
    color: var(--vt-c-text-1);
    transition: color .5s;
	background: transparent;
	border: none;
	/* margin-left: 42px; */
}
.vt-locales-btn-icon-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.vt-locales-btn-icon-container:before {
    margin-right: 4px;
}
.vt-locales-btn-icon-container:before, .vt-locales-btn-icon-container:after {
    width: 1px;
    height: 24px;
    background-color: var(--vt-c-divider-light);
    content: "";
}

.vt-locales-btn-icon {
    width: 1rem;
    height: 1rem;
    fill: var(--vt-c-text-1);
}

.vt-locales-btn-icon-container:after {
    margin-left: 4px;
}

.vt-flyout:hover .vt-flyout-menu, .vt-flyout-button[aria-expanded=true]+.vt-flyout-menu {
    /* opacity: 1; */
    visibility: visible;
    transform: translateY(0);
}
.vt-flyout-menu {
    display: flex;
    position: absolute;
    top: calc(var(--vt-nav-height) / 2 + 15px);
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .25s,visibility .25s,transform .25s;
    max-height: calc(100vh - var(--vt-nav-height) - var(--vt-banner-height, 0px));
	opacity: 0;
}

.vt-menu {
    border-radius: 8px;
    padding: 6px 0;
    min-width: 100px;
    border: 1px solid transparent;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .08);
    transition: background-color .5s;
    overflow: auto;
	background-color: #fff;
}
.vt-menu-items{
    padding: 0 14px;
	background-color: #fff;
}
.vt-menu-items {
    transition: border-color .5s;
}
.vt-locales-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: .875rem;
    position: relative;
}
.vt-locales-menu-item a{
	text-decoration: none;
}

.vt-locales-menu-item-text {
    cursor: pointer;
}
.vt-locales-btn-icon-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.vt-locales-btn-icon {
    width: 1rem;
    height: 1rem;
    fill: var(--vt-c-text-1);
}

.vt-link-icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 4px;
    width: 11px;
    height: 11px;
    fill: var(--vt-c-text-3);
    transition: fill .25s;
}

.vt-flyout:hover .vt-flyout-menu{
	opacity: 1;
}

.header-actions a:hover{
	color: #3888FC;
}