/* 导航栏 */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: 80px;
}

.contact-info {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 8px 15px;
    border-radius: 16px;
    font-size: 14px;
    margin-right: 5px;
    height: 50px; /* 统一高度 */
}


.hotline-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hotline-with-icon {
    display: flex;
    align-items: center;
}

.hotline-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.hotline-label {
    color: #666;
    font-size: 12px;
}

.hotline-number {
    color: #00808f;
    font-size: 16px;
    font-weight: bold;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 0 10px;
    height: 50px; /* 统一高度 */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    padding: 15px 20px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-menu li.active {
    background-color: #e5fdff;
    border-radius: 8px;
    margin: 5px;
    padding: 10px 15px;
   color: #a6d9df;
}
.nav-menu li :hover {
    background-color: #e5fdff;
    border-radius: 8px;
    margin: 5px;
    padding: 10px 15px;
    color: #a6d9df;
}


.search-section {
    display: flex;
    align-items: center;
    /*background-color: #111b1c;*/
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 5px;
    height: 50px; /* 统一高度 */
}

.search-box {
    /*background-color: #848685;*/
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    margin-right: 10px;
    color: #fff;
    width: 120px;
}

.search-box::placeholder {
    color: #ccc;
}

.language-switch {
    background: none;
    border: none;
    color: #848685;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #848685;
    margin-left: 5px;
}

.nav-menu-wrapper {
    flex: 0 0 auto;
    margin: 0 5px;
    height: 50px; /* 统一高度 */
}
.search-icon {
    height: 20px; /* 根据实际图标大小调整 */
    width: 20px;  /* 根据实际图标大小调整 */
    cursor: pointer;
    vertical-align: middle;
}
.logo {
    height: 30px; /* 降低高度以适应navbar */
    width: auto;
    margin-right: 20px;
    vertical-align: middle; /* 垂直居中对齐 */
    object-fit: contain; /* 保持图片比例 */
}