/* 固定导航栏 */
@media screen and (max-width: 767px) {
    .colorStyle {
        color: pink;
    }
    .m_style {
        display: block;
        padding: 0 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        position: fixed;
        bottom: 33px;
        left: 0;
        z-index: 999;
        border-radius: 4px;
    }
    .m_style img {
        width: 49%;
        height: auto;
        box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%)
    }
    .bao_m {
        border-radius: 4px 0 0 4px;
    }
    .h_z_j_m {
        border-radius: 0 4px 4px 0;
    }
    .pcStyle {
        display: none;
    }

}
@media screen and (min-width: 768px) {
    .colorStyle {
        color: blueviolet;
    }
    .m_style {
        display: none;
    }
    .pcStyle {
        /*display: block;*/
        width: 74px;
        height: 155px;
        background: #797171;
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .bao_m, .h_z_j_m {
        width: 100%;
        height: 77px;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid #E6E6E6;
        padding-top: 12px;
        box-sizing: border-box;
    }

    .h_z_j_m {
        border-bottom: none;
    }

    .bao_m:hover {
        cursor: pointer;
        background-color: #B72D29;
        color: #FFFFFF;
    }

    .bao_m:hover .baoForm {
        display: block;
    }

    .h_z_j_m:hover {
        cursor: pointer;
        background-color: #B72D29;
        color: #FFFFFF;
    }

    .bao_m_icon {
        width: 30px;
        height: 30px;
    }

    .bao_m_text {
        font-size: 12px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #FFFFFF;
        line-height: 17px;
        margin: 0;
    }
}

