.center-border-text {
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid var(--green);
    border-radius: 50px;
    color: var(--green);
    font-size: small;
    text-decoration: none;
    font-weight: bold;
}

.nav-item-box {
    transition: all 0.3s ease;
}

.nav-item-box:hover {
    background-color: rgba(43, 188, 138, 0.1);
    border-radius: 5px;
    transform: translateY(-2px); /* 悬停时向上移动2px */
    /* box-shadow: 0 4px 8px rgba(43, 188, 138, 0.2); */
}

.nav-link-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.nav-item-box:hover .nav-link-name::after {
    width: 100%;
}

.dropdown-menu {
    background-color: var(--dark);
    margin-left:20px;
    border:none;
}

.dropdown-item {
    color: var(--green);
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--green);
}