/* 师资队伍页面样式 */
.cate_title{
    width: 100%;
    height: 50px;
    background: url(../images/pc/ny/ds_ny_tu5.png) no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding-left: 30px;
    margin-bottom: 20px;

    font-size: 22px;
    color: #333333;
    line-height: 50px;
    font-weight: bold;
}

.faculty_list{
    display: flex;
    flex-wrap: wrap;
}

.teacher{
    display: block;
    width: calc(20% - ((15px * 4) / 5));
    height: auto;
    background: #E8F3FE;
    margin: 0 15px 20px 0;

    box-sizing: border-box;
    padding: 10px;
}

.teacher:nth-child(5n){
    margin-right: 0;
}

.user_avatar{
    width: 100%;
    height: 253px;
    overflow: hidden;
}

.user_avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    transition: all .5s;
}

.user_name{
    background: #ffffff;

    font-size: 20px;
    color: #000000;
    text-align: center;
    line-height: 46px;
    transition: all .5s;
}

.teacher:hover .user_avatar img{
    transform: scale(1.1);
}

.teacher:hover .user_name{
    color: #ffffff;
    background: #0f60b9;
}

@media screen and (max-width: 1350px){
    .teacher{
        width: calc(25% - ((15px * 3) / 4));
    }

    .teacher:nth-child(5n){
        margin-right: 15px;
    }

    .teacher:nth-child(4n){
        margin-right: 0;
    }

    .user_avatar{
        height: 273px;
    }
}

@media screen and (max-width: 1150px){
    .user_avatar{
        height: 213px;
    }
}

@media screen and (max-width: 998px){
    .cate_title{
        height: 36px;
        padding-left: 15px;
        margin-bottom: 10px;

        font-size: 16px;
        line-height: 36px;
    }

    .teacher{
        width: calc(20% - ((10px * 4) / 5));
        margin-right: 10px;
        padding: 6px;
        margin-bottom: 15px;
    }

    .teacher:nth-child(4n){
        margin-right: 10px;
    }

    .teacher:nth-child(5n){
        margin-right: 0;
    }

    .user_name{
        font-size: 14px;
        line-height: 30px;
    }
}

@media screen and (max-width: 876px){
    .teacher{
        width: calc(25% - ((10px * 3) / 4));
    }

    .teacher:nth-child(5n){
        margin-right: 10px;
    }

    .teacher:nth-child(4n){
        margin-right: 0;
    }
}

@media screen and (max-width: 678px){
    .teacher{
        width: calc(33.3% - ((10px * 2) / 3));
        margin-right: 10px;
    }

    .teacher:nth-child(4n){
        margin-right: 10px;
    }

    .teacher:nth-child(3n){
        margin-right: 0;
    }
}

@media screen and (max-width: 540px){
    .user_avatar{
        height: 183px;
    }
}

@media screen and (max-width: 450px){
    .user_avatar{
        height: 126px;
    }
}