    .tab-fixed-bottom {
        padding: 5px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: fixed;
        left: 0px;
        bottom: 0px;
        width: 100%;
        z-index: 999999;
        background-color: #242424;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        border-top: 1px solid #f0f2f5;
    }

    .tab-fixed-bottom .active-icon .desc {
        color: red;
    }

    .tab-fixed-bottom .block .icon svg {
        width: 30px;
    }

    .tab-fixed-bottom .item-cm {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
        text-decoration: none;
        color: black;
    }

    .tab-fixed-bottom .item-cm .block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 60px;
    }

    .tab-fixed-bottom .item-cm .block .icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        width: 36px;
        height: 36px;
        margin: 0px;
    }

    .tab-fixed-bottom .item-cm .block .icon i {
        font-size: 28px;
        color: #fdb866;
    }

    .tab-fixed-bottom .item-cm .block .desc {
        font-size: 12px;
        height: 16px;
        line-height: 16px;
        width: 100%;
        text-align: center;
        color: white;
        margin-top: 5px;
    }

    @media only screen and (min-width: 768px) {
        .tab-fixed-bottom {
            justify-content: flex-start;
            padding: 0 20px;
            background-color: unset;
            border: none;
        }

        .tab-fixed-bottom .item-cm {
            flex: unset;
            margin-right: 20px;
        }

    }
    @media only screen and (max-width: 767px) {
        .d-none-mb{
            display: none !important;
        }
    }
    .tab-fixed-bottom .item-cm .block img{
        width: 36px;
    }