.internal_medicine {
    width: 100%;
    /* height: 7.5rem; */
    background: white;
    /* margin-top: 5rem; */
    padding-bottom: .75rem;
}

.internal_medicine_list {
    width: 20rem;
    /* height: 7.5rem; */
    margin: auto;
    transform: translateY(-1rem);
    /* background: springgreen; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.internal_medicine_item {
    width: 4.5rem;
    /* height: 6rem; */
    /* background: skyblue; */
    margin-bottom: .5rem;
}

.internal_medicine_item_img {
    width: 4.5rem;
    height: 4.5rem;
    overflow: hidden;
    background: #ffffff;
}

.internal_medicine_item_img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.internal_medicine_item_img img:hover {
    transform: scale(1.1);
}

.internal_medicine_item_name {
    font-size: .325rem;
    color: #606060;
    line-height: .8125rem;
}

.internal_medicine_item:hover .internal_medicine_item_name {
    color: #24A2A5;
}

.internal_medicine_item_job {
    font-size: .28rem;
    color: #606060;
}

.ys_div {
    height: 3.75rem;
    background: rgb(242, 242, 242);
}
.ys_div_list{
    width: 20rem;
    display: flex;
    flex-wrap: wrap;
    padding: 1.2rem 0 0 ;
    margin: 0 auto ;
    justify-content: center;
}
.ys_div_list>a {
    margin: .125rem 0.5rem;
    width: 2rem;
    height: .5625rem;
    text-align: center;
    align-items: center;
    line-height: .5625rem;
    font-size: .28rem;
    font-weight: 500;
    color: #24A2A5;
    border: .0125rem solid #24A2A5;
    border-radius: .25rem;
}
.ys_div_list>a:hover{
    background: #24A2A5;
    color: #ffffff;
}

/* 媒体查询 1000*/
@media screen and (max-width: 1000px) {
    .internal_medicine_list {
        flex-wrap: wrap;
        width: 90%;
    }

    .internal_medicine_item {
        width: 100%;
        margin-bottom: 20px;
    }

    .internal_medicine_list>a {
        width: 48%;
    }

    .internal_medicine_item_img {
        width: 100%;
        height: 150px;
    }

    .internal_medicine_item_name {
        font-size: 16px;
        line-height: 35px;
    }

    .internal_medicine_item_job {
        font-size: 14px;
    }
    .ys_div_list{
        width: 90%;
        padding-top: 30px;
    }
    .ys_div_list>a{
        width: 55px;
        height: 33px;
        line-height: 35px;
        font-size: 14px;
        margin-right: 10px;
    }
    .ys_div{
        height: auto;
        padding-bottom: 1.6rem;
    }
}