/* 移动端CTA */
.n-consult,
.n-consult-content {
    display: none;
}
@media screen and (max-width:750px) {
    .l_sidenav.on,
    .l_sidenav {
        display: none;
    }
    .n-back {
        bottom: 98px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
    .n-consult {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 10px;
        width: 36px;
        height: 36px;
        bottom: 50px;
        z-index: 80;
        background: #DA0030;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
    }
    .n-consult img {
        width: 24px;
    }
    .n-consult-mask {
        display: none;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(41, 41, 41, 0.7);
        backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
        z-index: 99;
    }
    .n-consult-content {
        display: none;
        width: 100%;
        height: 380px;
        background-color: #FFFFFF;
        position: fixed;
        left: 0;
        z-index: 100;
        border-radius: 8px 8px 0px 0px;
    }
    .n-consult-content-active {
        display: block;
        animation: slideUpAni 0.23s ease-in-out forwards;
    }
    @keyframes slideUpAni {
        0% {
            bottom: -380px;
        }
        100% {
            bottom: 0px;
        }
    }
    .n-consult-head {
        display: flex;
        margin: 22px 20px 18px 20px;
        justify-content: space-between;
    }
    .n-consult-head img {
        max-width: 20px;
    }
    .n-consult-content h5 {
        font-weight: 700;
        font-size: 16px;
        color: #292929;
    }
    .n-consult-content-line {
        height: 1px;
        width: 100%;
        background-color: #EEEEEE;
    }
    .n-consult-btn {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 20px;
        border-top: 1px solid #EEEEEE;
    }
    .n-consult-btn span {
        font-weight: 400;
        font-size: 16px;
        color: #292929;
    }
    .n-consult-btn img {
        max-width: 24px;
        margin-right: 8px;
        margin-top: -2px;
    }
    .n-consult-btn:last-child {
        border-bottom: 1px solid #EEEEEE;
    }
    .more-contact {
        display: inline-block;
        font-weight: 400;
        font-size: 12px;
        color: #7D7D7D;
        margin: 30px 0 0 20px;
    }
    .more-contact::after {
        display: inline-block;
        content: ">";
        margin-left: 8px;
    }
    .n-consult-btn a {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}