#menuNav { 
    /* width: 400px; */
    width: 100%;
    height: 0;
    /* height: 420px; */
    background-color: #ffffff;
    position: fixed;
    top: var(--header-height);    
    left: 0;
    z-index: 10000;
}

.nav-wrapper {
    width: 1025px;
    height: 100%;
    margin: 0 auto;
}

.nav-list {
    /* display: flex; */
    display: none;
    width: 100%;
    height: 100%;
}

.nav-content {
    width: 25%;
    height: 100%;
}

.nav-body {
    width: 100%;
    height: 100%;
    text-align: center;
}

.nav-dl {
    display: inline-block;
}

.nav-title {
    height: 80px;
    line-height: 80px;
    padding: 0px 3px;
    margin-bottom: 27px;
    width: auto;
    display: inline-block;
}

.nav-title-text {
    display: inline;
    font-size: 22px;
    color: #00aeef; 
}

.nav-dd {
    margin-bottom: 15px;
}

.nav-dd > a {
  font-size: 16px;
  color: #595959;  
}


.nav-dl.active .nav-title {
    border-bottom: 2px solid #00aeef;
}

@media (max-width:1024px) {  
    .nav-wrapper {
        width: 100.098vw;
    }
    
    .nav-title {
        height: 7.813vw;
        line-height: 7.813vw;
        padding: 0.000vw 0.293vw;
        margin-bottom: 2.637vw;
    }
    
    .nav-title-text {
        font-size: 2.148vw;
    }
    
    .nav-dd {
        margin-bottom: 1.465vw;
    }
    
    .nav-dd > a {
        font-size: 1.563vw;
        
    }

    .nav-dl.active .nav-title {
        border-bottom: 0.195vw solid #00aeef;
    }
}