/* 现任领导页面样式 */
.current_leader{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cl_item{
    min-height: 62px;
    display: flex;
    align-items: center;

    margin: 0 36px 19px 0;

    background: #FFFFFF;
    box-sizing: border-box;
    border: 2px solid #F3F4F7;
    transition: all .3s;
}

.cl_item:nth-child(2n){
    margin-right: 0;
}

.cl_l{
    width: 38%;
    min-width: 200px;
    height: 100%;
    background: #F3F4F7;

    display: flex;
    align-items: center;
    justify-content: center;


    font-size: 18px;
    color: #000000;
}

.cl_r{
    flex: 1;
    box-sizing: border-box;
    padding: 0 5%;

    font-size: 18px;
    color: #000000;
    line-height: 20px;
}

.cl_item:hover .cl_l{
    background: #c2112e;
    color: #ffffff;
}

.cl_item:hover .cl_r{
    color: #c2112e;
    font-weight: bold;
}

.cl_item:hover{
    border-color: #c2112e;
}

@media screen and (max-width: 1350px) {
    .cl_item{
        min-height: 52px;
        margin: 0 20px 12px 0;
        border-width: 1px;
    }

    .cl_l{
        min-width: 180px;
    }

    .cl_l, .cl_r{
        font-size: 16px;
    }
}

@media screen and (max-width: 998px) {
    .cl_item{
        min-height: 46px;
        margin: 0 12px 12px 0;
    }

    .cl_l{
        min-width: 110px;
        text-align: center;
    }
}

@media screen and (max-width: 678px) {
    .current_leader{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .cl_item{
        margin-right: 0;
    }
}