body {
    width: 100%;
    height: 100%;
    min-width: 1600px;
    margin: 0;
    font-family: "微软雅黑";
}

a {
    text-decoration: none;
}

.header__logo {
    background-color: #f8f0ed;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo .img {
    height: 97px;
}

.header__logo .text {
    margin-left: 50px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 50px;

}

.header__logo .text .item {
    line-height: 36px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #8d3535;
}

.header__menu {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url(/static/p/img/bj.png); */
    background-color: #a01f19;
    position: relative;
}

.header__menu__item {
    padding: 0 20px;
    color: #fff;
    font-size: 22px;
}

.header__menu .line {
    width: 0;
    height: 4px;
    position: absolute;
    bottom: 1px;
    left: 0;
    background-color: #fff;
    transition: all .3s;
    border-radius: 4px;
}

.banner .img {
    width: 100%;
}

.footer__bj {

    background-color: #8d3535;
}

.footer {
    margin: auto;
    padding: 35px 0 35px 0;
    width: 1426px;
    display: flex;
}

.footer__nav {

    flex: none;
    padding: 10px 40px 10px 0;
    border-right: 2px dashed #fff;
}

.footer__nav .link {
    display: block;
    line-height: 45px;
    font-size: 18px;
    color: #fff;
}

.footer__con {
    padding: 0 0 0 70px;
}

.footer__con .logo {
    display: block;
    height: 62px;
}

.footer__con .info {
    padding: 25px 0;
}

.footer__con .info .item {
    height: 40px;
    padding: 0 20px 0 0;
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.footer__con .info .item img {
    height: 20px;
    padding-right: 10px;
}

.footer__con .icp {

    color: #fff;
    font-size: 18px;
}

.appointment__nav {
    margin: auto;
    width: 1134px;
    border-top: 2px dashed #a01f19;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment__nav .title {
    display: flex;
    align-items: center;
    font-size: 55px;
    font-weight: bold;
    color: #a01f19;
    height: 55px;
}

.appointment__nav .title img {
    margin-left: 20px;
}

.appointment__nav .subtitle {
    height: 50px;
    background-color: #a01f19;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-align: center;
    margin-top: 20px;
}

.appointment__nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.appointment__nav__item .name {
    font-size: 26px;
    color: #a01f19;
}

.right_menu {
    z-index: 2;
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.right_menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
    font-size: 14px;
    color: #fff;
}

.right_menu_item:hover {
    background-color: rgba(141, 53, 53, 1);
}

.right_menu_item img {
    width: 40px;
    height: auto;
}

.right_menu_qrcode {
    position: absolute;
    right: 72px;
    padding-right: 8px;
    top: 0;
    display: none;
}

.right_menu_qrcode img {
    display: block;
    width: 230px;
    height: 230px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    border-radius: 5px;
    overflow: hidden;
}

.right_menu_item:hover .right_menu_qrcode {
    display: block;
}

.right_menu_back {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 2;
}

.right_menu_back img {
    padding-bottom: 6px;
}