/* 学术委员会页面样式 */
.leader_row{
    display: flex;
}

.leader_box{
    width: 100%;
    height: auto;
    background: #E8F3FE;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 23px;
}

.leader_row .leader_box{
    width: calc(50% - (23px / 2));
}

.leader_row .leader_box:nth-child(2){
    margin-left: 23px;
}

.user_post{
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 18px;
}

.user_post span{
    font-weight: 400;
}

.leader_list{
    display: flex;
    flex-wrap: wrap;
}

.leader_row .leader{
    width: 100%;
}

.leader_row .leader:last-child{
    margin-bottom: 0;
}

.leader_single_row .leader{
    width: calc(50% - (18px / 2));
}

.leader_single_row .leader:nth-child(2n){
    margin-left: 18px;
}

.leader{
    background: #ffffff;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 9px;

    display: flex;
}

.user_name{
    width: 70px;
    font-size: 18px;
    color: #0F60B9;
    font-weight: bold;
    box-sizing: border-box;
    border-right: 1px solid #DEE5EB;
}

.user_info{
    width: calc(100% - 80px);
    box-sizing: border-box;
    padding-left: 20px;

    font-size: 18px;
    color: #000000;
}

@media screen and (max-width: 998px){
    .leader_box{
        padding: 12px;
    }

    .leader{
        padding: 12px;
    }

    .user_post{
        font-size: 16px;
        margin-bottom: 10px;
    }

    .user_name{
        width: 50px;
        font-size: 14px;
    }

    .user_info{
        width: calc(100% - 50px);
        padding-left: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 678px){
    .leader_row{
        flex-wrap: wrap;
    }

    .leader_row .leader_box{
        width: 100%;
        margin-bottom: 10px;
    }

    .leader_row .leader_box:nth-child(2){
        margin-left: 0;
    }

    .leader_single_row .leader{
        width: 100%;
    }

    .leader_single_row .leader:last-child{
        margin-bottom: 0;
    }

    .leader_single_row .leader:nth-child(2n){
        margin-left: 0;
    }
}