.bottom-wrapper {
    display: none;
}

.call-phone {
    display: none;
}

@media screen and (max-width: 750px) {
    .bottom-wrapper {
        box-sizing: border-box;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.2rem;
        display: flex;
        z-index: 999;
    }

    .bottom-wrapper .bottom-button {
        margin-right: 0.1rem;
        height: 1rem;
        line-height: 1rem;
        flex: 1;
        background: #0059EB;
        border-radius: 0.13rem;
        font-size: 0.5rem;
        color: #FFFFFF;
        text-align: center;
    }
    
    .bottom-wrapper .bottom-button a{
        margin-right: 0.1rem;
        height: 1rem;
        line-height: 1rem;
        flex: 1;
        background: #0059EB;
        border-radius: 0.13rem;
        font-size: 0.5rem;
        color: #FFFFFF;
        text-align: center;
    }

    .bottom-wrapper .bottom-button.free {
        margin-right: 0;
    }

    .call-phone {
        display: block;
        position: fixed;
        right: 0.2rem;
        bottom: 5rem;
        z-index: 99;
        width: 1.2rem;
        height: 1.2rem;
        line-height: 1.3rem;
        background: #FFFFFF;
        border-radius: 50%;
        box-shadow: 0 0 0.13333rem 0px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .call-phone a {
        color: #0059EB;
    }

    .call-phone svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}