/* 校友列表 */

.people-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 720px;
    overflow: hidden;
    overflow-y: auto;
    margin-top: 42px;
    margin-right: -25px;
}

.people-list .people-box {
    flex: 0 0 20%;
    padding-right: 25px;
    margin-bottom: 26px;
}

.people-list .people-box .people {
    position: relative;
    height: 449px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    background-color: #fff;
}

.people-box .people-img {
    width: 186px;
    height: 186px;
    border-radius: 50%;
    background-size: cover!important;
    background-position: top center!important;
}

.people-box .people-name {
    padding: 24px 0 21px 0;
    text-align: center;
    font-size: 25px;
    line-height: 25px;
    color: #FF000B;
    font-family: 'Microsoft YaHei Regular';
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 1px;
    font-weight: 400;
}

.people-box .people-lvli, .people-box .people-lvli div, .people-box .people-lvli p {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.action {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 73px;
    padding: 0 9px;
}

.action .line {
    width: 100%;
    border-top: 2px dotted #FF0000;
}

.action .box {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.action .detail {
    font-size: 19px;
    line-height: 19px;
    color: #FF0000;
    margin-right: 35px;
    height: 100%;
    display: flex;
    align-items: center;
}