#float_bar {
    position: fixed;
    right: 15px;
    bottom: 120px;
    z-index: 15;
    width: 110px;
    background-color: #fff;
    box-shadow: 0 2px 20px 0 rgba(31, 90, 252, 0.16);
    border-radius: 6px;

    display: block;
}

#float_bar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#float_bar .float-item {
    padding: 18px 6px;
    font-size: 15px;
    color: #444;
    font-weight: 800;
    text-align: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    line-height: 18px;
    transition: background 0.2s ease;
}

#float_bar .float-item:last-child {
    border-bottom: none;
}

#float_bar .float-item:hover {
    background: #f3f6ff;
    color: #1f5afc;
}

@media (max-width: 1248px) {
    #float_bar {
        display: none !important;
    }
}