/* 导航容器 */
.table_nav_panel{
    width: 100%;
    height: 195px;
    /* height: 120px; */
    /* background: #fff; */
}



/* 一级导航 */
.table_first_nav{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    /* border: 1px solid #f00; */
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 60px;
    /* margin-top: 40px; */
}
.table_first_li {
    display: flex;
    justify-content: center;
    flex: 1;
    /* font-weight: 600; */
    /* color: #666; */
    border-bottom: 2px solid #DEDEDE;
}
.table_first_li.active, .table_first_li:hover{
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid #000;
}

.table_first_li a{
    padding: 20px 0;
     font-size: 22px;
    cursor: pointer;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: unset;
    color: #000;
    outline: none;
}

/* 二级导航 */
.table_nav{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* padding: 20px 0; */
    /* margin-bottom: 40px; */
}

.table_li a{
    width: 132px;
    height: 60px;
    /* background: #F5F5F5; */
    border-radius: 8px;
    display: flex;
    color:#000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;

    border: 1px solid #DEDEDE;
    flex-direction: column;

}

.table_li.active a{
    border: 1px solid #000;
    font-weight: bold;
}



.fixed{
    position: fixed; /* 固定定位 */
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}

.table{
    margin-top: 60px;
    margin-bottom: 100px;
}
