.page__banner {
    display: block;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #ccc;
}

.doctor {
    display: flex;
    width: 1134px;
    margin: auto;
    padding: 76px 0;
}

.department__item {
    box-sizing: border-box;
    width: 300px;
    height: 90px;
    font-size: 22px;
    color: #000;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, .5);
    cursor: pointer;
    margin-top: 20px;
    padding-left: 18px;
    display: flex;
    align-items: center;
}

.department__item:nth-child(1) {
    margin-top: 0;
}

.department__item.active {
    color: #fff;
    background-color: #a01f19;
    border: 2px solid #a01f19;
}
.doctor__list{
    margin-left: 20px;
}
.doctor__item {
    display: flex;
    padding-bottom: 20px;
}

.doctor__item .avatar {
    width: 250px;
    height: 300px;
    object-fit: contain;
    object-position: top;
}
.doctor__item .con{
    margin-left: 25px;
}
.doctor__item .con .name {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    padding: 10px 0 15px 0;
}
.doctor__item .con .position {
    font-size: 22px;
    font-weight:initial;
}
.doctor__item .con .title div {
    font-size: 16px;
    line-height: 1;
    margin-top: 10px;
}
.doctor__item .con .intro {
    font-size: 16px;
    line-height: 28px;
    margin-top: 10px;
}

.doctor__item .con .link{
    color: #a01f19;
}