.nuoman-head {
    background: #fff;
    position: relative;
    transition: all 0.5s;
}

.nuoman-head.head-fix {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.nuoman-head .nuoman-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nuoman-nav .nav-logo {
    width: 86px;
}

.nav-logo img {
    width: 100%;
    aspect-ratio: 43/26;
    object-fit: cover;
}

.nuoman-nav .nav-con {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nuoman-nav .nav-list {
    display: flex;
    gap: 16px;
}

.nav-list .menu-item-wrap {
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--desc-font-family);
    font-size: var(--desc-font-size);
    font-style: var(--font-style);
    font-weight: 700;
    line-height: var(--line-height);
    text-transform: uppercase;
}

.nav-list .menu-item-wrap.active {
    color: var(--primary-color);
}

.nav-list .menu-item-wrap .menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    gap: 4px;
}

.nav-list .menu-item-wrap:hover {
    color: var(--primary-color);
}

.nav-list .menu-item-wrap:hover .subMenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    z-index: 13;
}

.nav-list .menu-item-wrap .subMenu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: #FAFAFC;
    padding: 32px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20%);
}

.nav-list .menu-item-wrap .subMenu .subMenu-con {
    display: flex;
    justify-content: space-between;
}

.nav-list .menu-item-wrap .subMenu .subMenu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.nav-list .menu-item-wrap .subMenu .subMenu-list .subMenu-item-wrap {
    color: #323333;
    font-family: var(--desc-font-family);
    font-size: var(--desc-font-size);
    font-style: var(--font-style);
    font-weight: 500;
    line-height: var(--line-height);
}

.nav-list .menu-item-wrap .subMenu .subMenu-list .subMenu-item-wrap:hover {
    font-weight: 700;
}

.nav-list .menu-item-wrap .subMenu .subMenu-img {
    max-width: 386px;
}

.nav-list .menu-item-wrap .subMenu .subMenu-img img {
    width: 100%;
    aspect-ratio: 386/300;
    object-fit: cover;
}

.nav-list .menu-item-wrap.has-dropdown {
    position: relative;
}

.nuoman-head .nuoman-dropdown-plain {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    box-shadow: 0 4px 4px 0 rgba(238, 238, 238, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nuoman-head .menu-item-wrap:hover .nuoman-dropdown-plain {
    opacity: 1;
    visibility: visible;
    z-index: 13;
}

.nuoman-head .nuoman-dropdown-plain-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 18px;
    min-width: max-content;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #323333;
    font-family: var(--font-family);
    font-size: var(--font-16);
    font-style: var(--font-style);
    font-weight: 400;
    line-height: normal;
}

.nuoman-head .nuoman-dropdown-plain-item:hover {
    background: #EEE;
    color: var(--color-primary);
    font-weight: 700;
}

.nuoman-nav .nav-con .nuoman-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.nuoman-hamburger span {
    display: block;
    height: 3px;
    background: var(--text-color-black);
    border-radius: 2px;
}

.nuoman-mobile-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 11;
    padding: 30px;
    transition: all 0.5s ease;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.nuoman-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nuoman-mobile-menu .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-top img {
    width: 100px;
    object-fit: cover;
}

.mobile-top .close-hamburger {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.mobile-top .close-hamburger .bar {
    position: absolute;
    top: 16px;
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.mobile-top .close-hamburger .bar:first-child {
    transform: rotate(45deg);
}

.nuoman-mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nuoman-mobile-menu .mobile-item-wrap .mobile-submenu-list {
    margin-top: 10px;
}

.nuoman-mobile-menu .mobile-item-wrap {
    position: relative;
}

.nuoman-mobile-menu .mobile-item-wrap .menu-item {
    display: inline-block;
    width: 90%;
}

.nuoman-mobile-menu .mobile-item-wrap .ico {
    position: absolute;
    right: 30px;
}

.nuoman-mobile-menu .mobile-item-wrap .mobile-submenu-wrap {
    padding-left: 30px;
}

@media screen and (max-width: 992px) {
    .nuoman-nav .nav-list {
        display: none;
    }

    .nuoman-nav .nav-con .nuoman-hamburger {
        display: flex;
    }
}