/* 中文教师页面样式 */
.cate_box{
    margin-bottom: 20px;
}

.cate_title{
    border-bottom: 1px solid #D8D8D8;
}

.cate_title h3{
    width: fit-content;
    font-size: 24px;
    color: #0B16A8;
    border-bottom: 3px solid #0B16A8;
    
    box-sizing: border-box;
    padding-bottom: 10px;
}

.list_row{
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    box-sizing: border-box;
    padding: 20px 0;
}

.list_row li{
    margin-bottom: 10px;
}

.list_row a{
    font-size: 18px;
    color: #333333;
    line-height: 35px;
}

.list_row a:hover{
    color: #0B16A8;
    font-weight: bold;
}

@media screen and (max-width: 1400px) {
    .cate_title h3{
        font-size: 20px;
    }
}

@media screen and (max-width: 998px) {
    .list_box{
        padding-top: 10px;
    }

    .cate_box{
        margin-bottom: 0;
        padding-top: 0;
    }

    .cate_title h3{
        font-size: 16px;
        border-bottom-width: 2px;
    }

    .list_row{
        display: flex;
        flex-wrap: wrap;

        padding: 12px 0;
    }

    .list_row li{
        margin-right: 10px;
        margin-bottom: 7px;
    }

    .list_row a{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 80px;
        height: 40px;
        background: #EFF5FE;

        font-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    .list_row{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .list_row a{
        width: 100%;
    }

    .list_row li:nth-child(4n){
        margin-right: 0;
    }
}