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

.hospital_bj {
    padding: 100px 0;
    background: url(/static/p/img/hospital1.jpg) no-repeat top center;
    background-size: cover;
}

.hospital {
    margin: auto;
    width: 1300px;
    display: flex;
    justify-content: space-between;
}

.hospital .nav {
    flex-shrink: 0;
    width: 234px;
    margin-right: 50px;
}

.hospital .nav .item {
    width: 100%;
    height: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a01f19;
    font-size: 32px;
    background: url(/static/p/img/hospital2.png) no-repeat center center;
    margin-bottom: 20px;
    cursor: pointer;
}

.hospital .nav .item.active {
    background-color: #a01f19;
    color: #fff;
    font-weight: bold;
}

.hospital .con {
    display: none;
    flex-shrink: 1;
}

.hospital .con.active {
    display: block;
}

.hospital .con p {
    margin: 0;
    font-size: 22px;
    line-height: 40px;
    padding-bottom: 10px;
    white-space: normal;
    /* 允许换行 */
    word-break: break-word;
}
.hospital .con .img{
    display: block;
    max-width: 100%;
    margin: auto;
}

.hospital .con2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hospital .con2 .img {
    width: 246px;
}

.hospital .con2 .title {
    padding: 10px 0 20px 0;
}

.hospital .con2 .title p {
    text-align: center;
    line-height: 22px;
    text-indent: 0;
    font-size: 16px;
    color: #a01f19;
    padding-bottom: 0;
    font-weight: 500;
}