.scholar-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.scholar-item {
    width: calc((100% - 52px) / 5);
    display: flex;
    flex-direction: column;
    background-color: #F6F6F6;
}

.scholar-avatar-wrapper {
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.scholar-avatar {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.scholar-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    /*min-height: 116px;*/
    box-sizing: border-box;
}

.scholar-name {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
}

.scholar-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 21px;
    height: 3px;
    background-color: #5FD1D5;
}

.scholar-name-en {
    margin-top: 18px;
    font-size: 16px;
    line-height: 20px;
    color: #858585;
    word-break: break-all;
}

.scholar-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
/*wap样式*/
@media screen and (max-width: 750px) {
    .show-bread-info,.header-title{
        display: none;
    }
    .scholar-item{
        width: calc((100% - 16px) / 2);
    }
    .scholar-avatar-wrapper{
        width: 100%;
        height: 163px;
    }
    .scholar-name-en{
        font-size: 14px;
        line-height: 18px;
    }
}
