/* navbar.css - 主导航栏专属样式 */

.navbar-main {
    background-color: #1C983E;
    height: 70px;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* 内部容器：限制在 1200px 并居中 */
.nav-inner-container {
    width: 1200px;
    height: 100%;
    margin: 0 auto; /* 水平居中 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 菜单列表 */
.nav-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 每个菜单项 */
.nav-item {
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 链接 */
.nav-Bar-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}
.nav-Bar-link:hover {
    text-decoration: none;
}

/* 文字和图标 */
.nav-text {
    font-size: 16px;
    font-weight: 900;
    color: #FFFFFF;
    height: 100%;
    line-height: 70px;
    white-space: nowrap;
}