.navHeader{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}
.headTop{
    width: 100%;
    background: rgba(26, 71, 130, 0.2);
    height: 40px;
}
.headTopBox{
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: right;
    color: #FFFFFF;
    margin: 0 auto;
    gap: 60px;
    height: 100%;
}
.headTopBox a{
    color: #FFFFFF;
    font-size: 20px;
}
.headTopBox .headTel{
  font-size: 16px;
}
.headTopBox .aLeft{
    display:inline-block;
    height: 20px;
    line-height: 20px;
    padding-right: 8px;
    border-right: 1px solid #FFFFFF;
    font-size: 16px;
   font-weight: 500;
}
.headTopBox .aRight{
    display:inline-block;
    height: 20px;
    line-height: 20px;
    padding-left: 5px;
    font-size: 16px;
    font-weight: 500;
}
.headNav{
    width: 100%;
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
}
.navWrapper{
    width: 100%;
    max-width: 1400px;
    padding:0 20px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 60px;
}
.navWrapper .headNavLogo{
    width: 310px;
    height: 60px;
}
.headNavLogo a{
    width: 100%;
    height: 100%;
}
.headNavLogo a img{
    width: 100%;
    height: 100%;
}
.menuWrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    flex: 1;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
}
.menuWrapper .menuItem{
    position: relative;
}
.menuItem-children> a::after{
    content: "";
    display: inline-block;
    margin-left: 4px;
    margin-bottom: 4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
}
.menuWrapper>.menuItem>a{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    
}
.menuWrapper>.menuItem>a:hover{
    background: rgba(255, 255, 255, 0.15);
}
.memberLink{
    padding: 0px 20px;
    width: 35px;
    height: 35px;
}
.memberLink a{
    display: inline-block;
    width: 35px;
    height: 35px;
}
.memberLink a img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.headTop, .headNav {
    transition: background 0.3s ease;
    will-change: background;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}
 /* 二级菜单样式 */
 .nav-level-2 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px;
}

.menuWrapper .menuItem:hover .nav-level-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-level-2 > li {
    position: relative;
   
}

.nav-level-2 > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.nav-level-2 > li > a:hover {
    background-color: #F1F1F4;
    /* color: #3498db;
    padding-left: 25px; */
}

/* 三级菜单箭头 */
.nav-level-2 > li.has-children > a::after {
    content: "›";
    font-size: 18px;
    color: #95a5a6;
    transition: all 0.2s ease;
}

.nav-level-2 > li.has-children > a:hover::after {
    color: #3498db;
}

/* 三级菜单样式 */
.nav-level-3 {
    position: absolute;
    top: -10px;
    left: 100%;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    z-index: 1002;
    padding: 10px;
}

.nav-level-2 > li:hover .nav-level-3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-level-3 > li > a {
    display: block;
    padding: 10px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.nav-level-3 > li > a:hover {
    background-color: #F1F1F4;
    /* color: #3498db;
    padding-left: 25px; */
}
/* 手机菜单样式 */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 20px;
    border-bottom: 1px solid #333;
}

.menu-logo {
    width: 210px;
    height: 42px;
}
.menu-logo a{
    width: 100%;
    height: 100%;
}
.menu-logo a img{
    width: 100%;
    height: 100%;
}

.close-menu {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* .menu-items {
    padding: 20px 0;
} */

.menu-item {
    border-bottom: 1px solid #333;
    position: relative;
}

.menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.menu-item .arrow {
    transition: transform 0.3s ease;
}

.menu-item.active  > a > .arrow  {
    transform: rotate(90deg);
}

/* 手机子菜单样式 */
.submenu {
    display: none;
    background-color: #111;
}

.submenu.active {
    display: block;
}

.submenu .menu-item {
    border-bottom: 1px solid #222;
}

.submenu .menu-item > a {
    padding-left: 40px;
}

.submenu .submenu .menu-item > a {
    padding-left: 60px;
}
.footerBox{
    width: 100%;
    background: rgba(43, 43, 43, 1);
}
.footerWrapper{
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    padding: 70px 20px 50px 20px;
    margin: 0 auto;
}
.footerContent{
    width: 100%;
    display: flex;
    align-items: center;   
}
.footerItem{
    display: flex;
    align-items: center;
    width: 50%;
}
.footerLeft{
    justify-content: center;
}
.footerItem .footerIcon{
    width: 37px;
    height: 37px;
    padding-right: 20px;
    box-sizing: content-box;
    border-right: 1px solid rgba(112, 112, 112, 1);
}
.footerItem .footerText{
    padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(112, 112, 112, 1);
    flex: 1;
}
.footerBottom{
    width: 100%;
    border-top: 1px solid rgba(112, 112, 112, 1);
}
.footerBottom .footerBottomBox{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}
@media screen and (min-width: 1151px) and (max-width: 1300px) {
    .menuWrapper>.menuItem>a{
        font-size: 20px;
        padding: 8px 12px;
    }
}
@media screen and (min-width: 1025px) and (max-width: 1150px) {
    .menuWrapper>.menuItem>a{
        font-size: 18px;
        padding: 8px 9px;
    }
}
@media (max-width: 1024px) {
    .headTop{
        display: none;
    }
    .navWrapper{
        justify-content: space-between;
    }
    .navWrapper .headNavLogo{
        width: 210px;
        height: 42px;
    }
    
    .menuWrapper{
        display: none;
    }
    .hamburger{
        display: flex;
    }
    .footerItem{
        width: 100%;  
    }
    .footerWrapper{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footerContent{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footerLeft{
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    .footerItem .footerIcon{
        width: 25px;
        height: 25px;
    }
    .footerBottom .footerBottomBox{
        font-size: 12px;
        padding: 20px;
    }
}

