/* 非首页下的nav */
.header_nav .header_nav_all .header_nav_con {
    display: none;
    width: 310px;
    height: 420px;
    box-shadow: 1px 0 6px rgb(0 0 0 / 16%);
    box-sizing: border-box;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 101;
}


/* 整组列表 */

.menuLists>li {
    padding: 0 10px;
}

.menuLists>li:hover {
    /* padding-left: 6px */
    background-color: #f4f4f4;
}

.menuLists>li:hover>a {
    color: var(--main-color)
}

.menuLists>li:hover .itemBox {
    display: block
}

/* 更多明细 */
.menuLists>li .itemBox {
    /* 初始单列显示 */
    /* display: none;
    width: 360px;
    min-height: 420px;
    background: #fff;
    box-shadow: 1px 0 6px rgba(0, 0, 0, .16);
    box-sizing: border-box;
    position: absolute;
    left: 310px;
    top: 0;
    z-index: 3; */
    background-color: #fff;
    box-shadow: 1px 0 6px #00000029;
    display: none;
    flex-direction: column;
    height: 420px;
    left: 310px;
    padding: 20px 0 20px 20px;
    position: absolute;
    top: 0;
    width: 990px;
    z-index: 100;
}

.itemBox .itemsList {
    max-height: 346px;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

/* 明细每项 */
.itemBox .itemsList li {
    margin-bottom: 15px;
    padding: 0 5px;
    width: 50%;
}

.itemBox .itemsList li:hover {
    border: none;
    /* padding-left: 6px; */
}

.itemBox .itemsList li:hover a {
    color: var(--main-color);
    text-decoration: underline;
}

/* 明细链接 */
.itemBox .itemsList li a {
    line-height: 25px;
}