.view-mb {
    /* padding-bottom: 4.2rem; */
}

.mb-banner-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background-color: white;
    display: none !important;
}

.mb-banner-fixed .mb-banner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 20px;
    background-color: #0f0d28;
    background-image: url(../image/banner/gg.png);
    background-size: cover;
    padding-left: 10px;
    color: white;
    font-weight: bold;
    width: 100%;
    height: 70px;
    line-height: 70px;
}

.mb-banner-fixed img {
    width: 100px;
    margin-right: 10px;
    cursor: pointer;
    animation: myfirst 3s both infinite;
}

.view_h5_tips_box ul {
    padding: 5px;

    display: flex;
    flex-wrap: wrap;
}

/* 实现抖动 */
@keyframes myfirst {
    0% {
        transform: scale(1);
        transform: scale(1)
    }

    70%,
    73% {
        transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    77%,
    83%,
    90%,
    97% {
        transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    80%,
    87%,
    93% {
        transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

/* .view_h5_tips_box ul li {
  width: 50% !important;
} */
.view-pc {
    padding-bottom: 40px;
}

#view_pc_tips_box {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 12px 0px #666;
}

@media screen and (max-width: 750px) {
    .mb-banner-fixed {
        display: block !important;
    }
}