
.navbarfooter {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px 0;
    background: #fff;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
    z-index: 9999;
}

.navbarfooter button {
    cursor: pointer;
    width: 60px;
    height: 50px;
    border-radius: 20px;
    background: transparent;
    transition: all .25s ease;
    border: none;
}

.navbarfooter button:active:not(.plus) {
    transform: scale(1.2);
}

.navbarfooter button.active {
    color: #00a9a9;
}

.navbarfooter button a {
    color: #00a9a9;
}

.navbarfooter button a i.bx-phone {
    color: #fff;
}

.navbarfooter button i {
    font-size: 1.5rem;
    pointer-events: none;
}


.navbarfooter button.plus {
    height: 60px;
    color: #fff;
    background: #00a9a9;
    border-radius: 25px;
    margin-top: -50px;
    box-shadow: 0 10px 20px 0 #e84c4f66;
}

.navbarfooter button.plus:hover {
    transform: translateY(-4px);
}

.navbarfooter .effect {
    position: absolute;
    height: 50px;
    border-radius: 18px;
    background: #e84c4f26;
    opacity: 0;
}

.clear{
    clear: both;
}

/* 超小设备 (手机, 600px 以下屏幕设备) */
@media only screen and (max-width: 600px) {

    .navbarfooter{ display: block; }

}

.navbarfooter{ display: flex; }

/* 小设备 (平板电脑和大型手机，600 像素及以上) */
@media only screen and (min-width: 600px) {
.navbarfooter{ display: flex; }
}


/* 中型设备（平板电脑，768 像素及以上） */
@media only screen and (min-width: 768px) {

     .navbarfooter{ display: flex; }

} 

/* 大型设备（笔记本电脑/台式机，992 像素及以上） */
@media only screen and (min-width: 992px) {

     .navbarfooter{ display: none; }

} 

/* 超大型设备（大型笔记本电脑和台式机，1200 像素及以上） */
@media only screen and (min-width: 1200px) {

    .navbarfooter{ display : none}

}

