/* 现任领导页面样式 */
.current_leader{
    display: flex;
    flex-wrap: wrap;
}

.first_module, .second_module{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.first_module{
    justify-content: center;
}

.second_module{
    justify-content: space-between;
}

.leader{
    display: flex;
    align-items: flex-start;
    
    
    width: calc(50% - (30px / 2));
    background: #ffffff;
    box-sizing: border-box;
    padding: 12px;
    border: 7px solid rgba(232,243,254,0.84);
    margin-bottom: 20px;
}

.leader:nth-child(2n){
    margin-left: 30px;
}

.user_avatar{
    flex-shrink: 0;
    width: 150px;
    height: 200px;
    overflow: hidden;
}

.user_avatar img{
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
}

.user_info{
    width: calc(100% - 150px);
    box-sizing: border-box;
    padding-left: 20px;
}

.user_name{
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    line-height: 30px;
}

.user_post{
    font-size: 16px;
    color: #7A7A7A;
    margin-top: 10px;
    line-height: 30px;
}

.user_desc{
    font-size: 16px;
    color: #7A7A7A;
    line-height: 30px;
    -webkit-line-clamp: 3;

    box-sizing: border-box;
    padding-top: 10px;
    border-top: 1px solid #E2E7EF;
}

@media screen and (max-width: 1279px){
    .leader{
        width: 100%;
        margin-bottom: 15px;
    }

    .leader:nth-child(2n){
        margin-left: 0;
    }
}

@media screen and (max-width: 998px){
    .leader{
        border-width: 5px;
        padding: 7px;
        margin-bottom: 9px;
    }

    .user_avatar{
        width: 97px;
        height: 129px;
    }

    .user_info{
        width: calc(100% - 97px);
        padding-left: 11px;
    }

    .user_name{
        font-size: 16px;
        line-height: 23px;
    }

    .user_post{
        -webkit-line-clamp: 2;
        font-size: 14px;
        line-height: 23px;
        margin-top: 5px;
    }

    .user_desc{
        -webkit-line-clamp: 2;
        font-size: 14px;
        line-height: 23px;
        margin-top: 5px;
        padding-top: 5px;
    }
}