body {
    position: relative;
}

.desktopMenu {
    padding: 20px 0px;
    height: 88px;
}

.desktopMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.desktopMenu.scrolled {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}


.desktopMenu .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktopMenu .branding {
    display: flex;
    width: 18%;
    justify-content: flex-start;
}

.desktopMenu .branding img {
    height: 44px;
    margin: 0px;
}

.desktopMenu .navigation {
    width: 70%;
}

.desktopMenu .navigation .navbar_nav {
    list-style: none;
    display: flex;
    margin: 0px;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 40px;
}

.desktopMenu .navigation .navbar_nav .nav_item {}

.desktopMenu .navigation .navbar_nav .nav_item .navlink {
    color: black;
}

.desktopMenu .contact {
    width: 12%;
    display: flex;
    justify-content: flex-end;
}

.desktopMenu .contact a {
    display: inline-flex;
    border: 2px solid black;
    border-radius: 6px;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.desktopMenu .contact a i {
    color: black;
    font-size: 20px;
    line-height: 28px;
}

.desktopMenu .contact a .text {}

.desktopMenu .contact a .maintitle {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: black;
}

@media(max-width:500px) {

    .desktopMenu,
    .sidemenu-nav-toggler,
    .hidden-sidebar {
        display: none;
    }
}