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

.department {
    display: flex;
    justify-content: space-between;
    width: 1134px;
    margin: auto;
    padding: 76px 0;
}

.department .con {
    width: 580px;
}

.department .title {
    height: 60px;
    font-size: 35px;
    font-weight: bold;
    line-height: 100%;
    color: #a01f19;
    border-bottom: 2px solid #a01f19;
    position: relative;
    margin-bottom: 28px;
}

.department .title::after {
    content: "";
    position: absolute;
    width: 125px;
    height: 8px;
    background-color: #a01f19;
    left: 0;
    bottom: -5px;
}

.department .intro {
    font-size: 20px;
    line-height: 37px;
}
.department img{
    width: 500px;
    height: auto;
    object-fit: contain;
    object-position: top;
}
.doctor__list {
    width: 1134px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.doctor__item {
    width: 340px;
    margin: 0 0 56px 0;
    position: relative;
    overflow: hidden;
}

.doctor__item .avatar {
    width: 340px;
    height: 390px;
    object-fit: contain;
    object-position: top;
}

.doctor__item .name {
    text-align: center;
    color: #000;
    font-size: 34px;
    font-weight: bold;
    padding: 26px 0;
    line-height: 1;
}

.doctor__item .position {
    font-size: 24px;
    color: #949494;
}

.doctor__item .active {
    box-sizing: border-box;
    display: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #a01f19;
    text-align: center;
    font-size: 26px;
    color: #fff;
    padding: 20px 20px 20px 20px;
    box-shadow: 0 0 20px 22px rgba(160, 31, 25, 1);
}

.doctor__item:hover .active {
    display: block;
}

.doctor__item .active .name {
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    padding: 0 0 10px 0;
    line-height: 1;
}

.doctor__item .active .position {
    font-size: 24px;
    color: #fff;
}