.hospital__nav__bj {
    position: relative;
    height: 742px;
    padding: 50px 0 0 0;
    position: relative;
    background: url(/static/p/img/nav8.png);
    animation: scrollBackground 50s linear infinite;
}

@keyframes scrollBackground {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: 0 350px;
    }

    40% {
        background-position: 0 700px;
    }

    60% {
        background-position: 0 1050px;
    }

    80% {
        background-position: 0 1350px;
    }

    100% {
        background-position: 0 1700px;
    }
}

.hospital__nav__person {
    position: absolute;
    right: 20px;
    bottom: 20px;
    filter: drop-shadow(20px 10px 3px rgba(0, 0, 0, .35));
}

.hospital__nav {
    margin: auto;
    width: 1426px;
    height: 576px;
    position: relative;
}

.hospital__nav__item {
    position: absolute;
    color: #fff;
    background-color: #8d3535;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 30px 30px 20px 1px rgba(0, 0, 0, .35);
}


.hospital__nav__item:hover img {
    transform: rotateY(360deg);
}

.hospital__nav__item img {
    padding-bottom: 25px;
    transition: transform .5s linear;
}

.hospital__nav__item:nth-child(1) {
    width: 286px;
    height: 270px;
    top: 306px;
    left: 0;
}

.hospital__nav__item:nth-child(2) {
    width: 225px;
    height: 145px;
    top: 151px;
    left: 290px;
}

.hospital__nav__item:nth-child(3) {
    width: 225px;
    height: 145px;
    top: 151px;
    left: 519px;
}

.hospital__nav__item:nth-child(4) {
    width: 225px;
    height: 145px;
    top: 306px;
    left: 290px;
}

.hospital__nav__item:nth-child(5) {
    width: 225px;
    height: 145px;
    top: 306px;
    left: 519px;
}

.hospital__nav__item:nth-child(6) {
    width: 286px;
    height: 270px;
    top: 27px;
    left: 748px;
}

.con__nav {
    width: 500px;
    height: 80px;
    margin: 30px auto 50px auto;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #dbc1c4;
    box-sizing: border-box;
}

.con__nav__item {
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.con__nav__item.active {
    font-weight: bold;
    color: #8d3535;
}

.con__nav__item.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 6px;
    background-color: #8d3535;
}


.department {
    margin: auto;
}

.department__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-sizing: border-box;
    width: 1426px;
    border-radius: 5px;
    background-color: #8d3535;
    padding: 50px 74px 50px 104px;
    margin: auto;
    font-size: 22px;
    line-height: 60px;
}

.department__list a {
    color: #ffffff;
}

.notice {
    background-color: #f8f0ed;
    padding: 20px 0 50px 0;
    margin-top: 50px;
}

.notice__con {
    margin: auto;
    width: 1426px;
}

.notice__con .more {
    display: flex;
    justify-content: right;
    padding-bottom: 40px;
}

.notice__con .more a {
    color: #373737;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice__con .more a img {
    margin-left: 5px;
    width: 12px;
    height: 12px;
    padding: 4px;
    border-radius: 50%;
    background-color: #8d3535;
}

.notice__list {
    display: flex;
    justify-content: space-between;
}

.notice__list__item {
    width: 316px;
    border-radius: 5px;
    border-bottom: 7px solid #fff;
    background-color: #fff;
    color: #373737;
}

.notice__list__item img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
}

.notice__list__item .title {
    font-size: 16px;
    line-height: 23px;
    box-sizing: border-box;
    padding: 10px 14px;
}

.notice__list__item .date {
    font-size: 16px;
    padding: 7px 0 20px 0;
    text-align: center;
}

.notice__list__item:hover {
    border-bottom: 7px solid #8d3535;
}

.notice__list__item:hover .title {
    color: #8d3535;
}

.publicity {
    margin: auto;
    width: 1426px;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.publicity__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9e9e9;
}

.publicity__bar .title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 150px;
    font-size: 22px;
    background-color: #8d3535;
    color: #fff;
}

.publicity__bar .more {
    font-size: 16px;
    display: flex;
    align-items: center;
    padding-right: 14px;
    color: #373737;
}

.publicity__list {
    width: 700px;
}

.publicity__list__item {
    padding: 14px 0;
    position: relative;
}

.publicity__list__item::after {
    width: 0;
    height: 2px;
    background-color: #a01f19;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    transition: width 1s ease-in-out;
}

.publicity__list__item:hover::after {
    width: 100%;
}

.publicity__list__item .link {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.publicity__list__item .title {
    width: 580px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #373737;
}


.publicity__list__item:hover .title {
    color: #8d3535;
}

.publicity__list__item .info {
    color: #8d3535;
}

.publicity__list__item .date {
    font-size: 14px;
    padding-bottom: 8px;
    color: #a195a1;
}

.feature {
    width: 1426px;
    margin: auto;
}

.feature__list {
    display: flex;
    justify-content: space-between;
}

.feature__list__item {
    width: 448px;
    height: 299px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: background-size 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.feature__list__item:hover {
    background-size: 110% 110%;
}

.feature__list__item:nth-child(1) {
    background-image: url(/static/p/img/feature1.jpg);
}

.feature__list__item:nth-child(2) {
    background-image: url(/static/p/img/feature2.jpg);
}

.feature__list__item:nth-child(3) {
    background-image: url(/static/p/img/feature3.jpg);
}

.feature__list__item .title {
    font-size: 24px;
    line-height: 38px;
    color: #fff;
    padding-left: 20px;
}

.feature__list__item .btu {
    width: 120px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    position: absolute;
    left: 16px;
    bottom: 16px;
    border: 1px solid #fff;
}


.chronicle {
    width: 1426px;
    margin: auto;
    padding: 0 0 124px 0;
}

.chronicle__bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.chronicle__bar .more {
    width: 150px;
    height: 42px;
    background-color: #8d3535;
    color: #fff;
    font-size: 16px;
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chronicle__top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 120px 0;
}

.chronicle__top img {
    width: 675px;
    height: 424px;
    object-fit: cover;
    overflow: hidden;
}

.chronicle__top .con {

    width: 660px;
    height: 424px;
}

.chronicle__top .date {
    height: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
    color: #656565;
}

.chronicle__date__line {
    width: 50px;
    height: 1px;
    background-color: #8d3535;
}

.chronicle__top .title {
    font-size: 18px;
    line-height: 88px;
    font-weight: bold;
}

.chronicle__top .intro {
    height: 234px;
    font-size: 16px;
    line-height: 34px;
    color: #656565;
    text-indent: 2em;
}

.chronicle__top .btu {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8d3535;
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
}

.chronicle__list {
    display: flex;
    justify-content: space-between;
}

.chronicle__list__item {
    width: 444px;
    height: 280px;
    box-sizing: border-box;
    padding: 20px 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    position: relative;
}

.chronicle__list__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    z-index: -1;
}

.chronicle__list__item .date {
    height: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #656565;
}

.chronicle__list__item:nth-child(2) .date {
    color: #fff;
}

.chronicle__list__item .title {
    height: 110px;
    padding: 30px 0;
    font-size: 18px;
    line-height: 30px;
}

.chronicle__list__item:nth-child(2) .title {
    color: #fff;
}

.chronicle__list__item:nth-child(2) .chronicle__date__line {
    background-color: #fff;
}

.chronicle__list__item .btu {
    color: #656565;
    font-size: 16px;
}

.chronicle__list__item:nth-child(2) .btu {
    color: #fff;
}