/* 师资详情页面样式 */
.faculty_info{
    display: flex;
    align-items: flex-start;
}

.user_avatar{
    flex-shrink: 0;
    width: 200px;
    height: 267px;
    overflow: hidden;
}

.user_avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}

.user_info{
    width: calc(100% - 200px);
    box-sizing: border-box;
    padding-left: 30px;
}

.user_name{
    width: 100%;
    height: 50px;
    background: url(../images/pc/ny/ds_ny_tu4.png) no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding-left: 15px;

    font-size: 28px;
    color: #ffffff;
    font-weight: bold;
    line-height: 50px;
}

.user_desc{
    margin-top: 20px;
}

.user_desc p{
    font-size: 18px;
    line-height: 36px;
    padding: 3px 0;
}

.user_tab{
    font-size: 22px;
    color: #0F60B9;
    font-weight: bold;
    line-height: 45px;
    margin-top: 50px;
}

.about{
    font-size: 18px;
    line-height: 45px;
}

@media screen and (max-width: 1350px){
    .faculty_info{
        flex-wrap: wrap;
    }

    .user_avatar{
        margin: 0 auto 30px;
    }

    .user_info{
        width: 100%;
        padding-left: 0;
    }
}

@media screen and (max-width: 998px){
    .user_name{
        height: 40px;
        font-size: 23px;
        line-height: 40px;
        padding-left: 10px;
    }

    .user_desc{
        margin-top: 10px;
    }

    .user_desc p{
        font-size: 14px;
        line-height: 24px;
    }

    .user_tab{
        font-size: 16px;
        margin-top: 15px;
    }

    .about{
        font-size: 16px;
        line-height: 28px;
    }

    .about p{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 678px){
    .user_avatar{
        width: 121px;
        height: 161px;
        margin: 0 auto 20px;
    }
}