body {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    margin: 0;
}

/* 顶部 */
.header {
    margin: auto;
    padding: 14px 0 14px 0;
    width: 1200px;
    display: flex;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
}
.header__logo img{
    display: block;
}

.header__tag {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #535353;
    line-height: 32px;
    font-size: 20px;
    color: #2a2a2a;
}

.header__menu {
    margin-left: auto;
    display: flex;
    /* justify-content: space-between; */
    width: 738px;
}

.header__menu__item {
    position: relative; 
    width: 100px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: #232323;
}

.header__menu__item:hover {
    background-color: #a37130;
    color: #ffffff;
}
.header__menu__item:hover:before{
    display: block;
    width: 8px;
    position: absolute;
    left: -8px;
    content: '|';
    text-align: center;
    z-index: 1;
    background-color: inherit;
}
.header__menu__item:hover:after{
    width: 8px;
    position: absolute;
    right: -8px;
    content: '|';
    text-align: center;
    z-index: 1;
    background-color: inherit;
}

.header__menu__line {
    width: 8px;
    text-align: center;
    line-height: 37px;
    font-size: 20px;
    color: #232323;
}


/* 底部导航 */
.footer-nav {
    box-sizing: border-box;
    width: 1200px;
    margin: auto;
    padding: 20px 145px 36px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav__label {
    width: 252px;
}

.footer-nav__label__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 48px;
    color: #ba803d;
}

.footer-nav__label__tip {
    background-color: #ba803d;
    line-height: 42px;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
}

.footer-nav__menu {
    text-align: center;
    line-height: 22px;
    font-size: 22px;
    color: #ba803d;
    text-decoration: none;
}

.footer-nav__menu div {
    margin-top: 16px;
}

/* 底部 */
.footer__background {
    background-image: url('/static/p/img/footer-bg1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer {
    margin: auto;
    padding: 42px 0 30px 0;
    width: 1200px;
}

.hospital {
    display: flex;
}

.hospital__logo {
    display: flex;
    align-items: center;
}

.hospital__tag {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #ffffff;
    line-height: 32px;
    font-size: 20px;
    color: #ffffff;
}

.hospital__info {
    margin-top: 32px;
    padding-left: 5px;
}

.hospital__info__item {
    display: flex;
    align-items: center;
    line-height: 36px;
    font-size: 20px;
    color: #ffffff;
}

.hospital__info__item div {
    margin-left: 18px;
}

.hospital__code {
    margin: 12px 0 0 62px;
    display: flex;
}

.hospital__code div:first-child {
    margin-right: 26px;
}

.hospital__code__item {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
}

.hospital__code__item img {
    display: block;
    margin: auto;
    width: 127px;
    height: 127px;
    margin-bottom: 20px;
}

.footer__info {
    width: 694px;
    margin-top: 22px;
    padding-left: 5px;
    line-height: 28px;
    font-size: 16px;
    color: #fdebd6;
}

.footer__info a {
    text-decoration: none;
    color: inherit;
}

/* 轮播图 */
.banner {
    width: 100%;
}

.banner .img {
    width: 100%;
    height: auto;
}

/* 导航 */
.nav {
    width: 100%;
    background-color: #f3f3f2;
}

.nav__list {
    width: 1200px;
    margin: auto;
    padding: 25px 0 25px 0;
    display: flex;
    justify-content: space-between;
}

.nav__item {
    text-align: center;
    font-size: 22px;
    color: #232323;
    text-decoration: none;
    transition: transform 0.3s ease;
    /* 添加过渡效果 */
}

.nav__item:hover {
    transform: scale(1.1);
    /* 鼠标悬停时放大10% */
}

/* 右侧菜单 */
.right_menu{
    z-index: 2;
    position: fixed;
    right: 0;
    top: 30vh;
}
.right_menu .item{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 18px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.right_menu .item .text{
    width: 32px;
}
.right_menu .item1{
    position: absolute;
    top: 0;
    right: 8px;
    background-color: #f0b43f;
}
.right_menu .item2{
    position: absolute;
    top: 51px;
    right: 77px;
    background-color: #e39e9e;
}
.right_menu .item2 .phone{
    width: 212px;
    height: 61px;
    box-sizing: border-box;
    padding-left: 20px;
    line-height: 61px;
    position: absolute;
    top: 0;
    left: -220px;
    font-size: 22px;
    color: #e39e9e;
    background-image:url('/static/p/img/right_menu_icon1.png');
}
.right_menu .item3{
    position: absolute;
    top: 135px;
    right: 102px;
    background-color: #e17d47;
}
.right_menu .item3 .weChat{
    width: 152px;
    height: 242px;
    box-sizing: border-box;
    padding: 0 14px 0 0;
    position: absolute;
    top: 5px;
    left: -160px;
    line-height: 15px;
    font-size: 12px;
    text-align: center;
    color: #000000;
    background-image:url('/static/p/img/right_menu_icon2.png');
}
.right_menu .item3 .weChat .img1{
    width: 78px;
    height: 78px;
    margin-top: 14px;
}
.right_menu .item3 .weChat .img2{
    width: 78px;
    height: 78px;
    margin-top: 20px;
}
.right_menu .item4{
    position: absolute;
    top: 219px;
    right: 75px;
    background-color: #e15d47;
}
.right_menu .item5{
    position: absolute;
    top: 272px;
    right: 8px;
    background-color: #e5bc9a;
}
.right_menu .item6{
    width: 192px;
    height: 192px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    background-color: #b69b5d;
    position: absolute;
    top: 67px;
    right: -105px;
    line-height: 28px;
    font-size: 26px;
    color: #ffffff;
    text-decoration: none;
}
.right_menu .item6 .text{
    margin-left: 43px;
    width: 30px;
}