.page__banner {
    width: 100%;
}

.search {
    width: 710rem;
    height: 70rem;
    margin: 15rem auto;
    border: 1px solid #dddddd;
    border-radius: 6rem;
    overflow: hidden;
    padding: 0 0 0 10rem;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search .input {
    width: 600rem;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 26rem;
}

.search .btu {
    width: 100rem;
    height: 100%;
    background-color: #a60000;
    color: #fff;
    font-size: 26rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor {
    padding: 0 20rem 15rem 20rem;
    display: flex;
    justify-content: space-between;
}

.department {
    flex-shrink: 0;
    width: 240rem;
    background-color: #f5f5f5;
}

.department__item {
    display: block;
    height: 70rem;
    padding: 0 16rem;
    line-height: 70rem;
    font-size: 28rem;
}

.department__item.active {
    background-color: #a60000;
    color: #ffffff;
}

.doctor__list {
    width: 455rem;
}

.doctor__item {
    margin-bottom: 15rem;
    display: block;
    background-color: #f2f2f2;
    box-sizing: border-box;
    padding: 20rem;
    border-radius: 6rem;
}

.doctor__item .name {
    font-size: 30rem;
    font-weight: bold;
    color: #a60000;
}

.doctor__item .position {
    font-size: 26rem;
    font-weight: 400;
    color: #565456;
}

.doctor__item .intro {
    line-height: 42rem;
    font-size: 26rem;
    padding-top: 10rem;
    color: #565456;
}

.doctor__item .link {
    color: #a60000;
}