.bqb-wrap{
    position: absolute;
    bottom: -190px;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1001;
    transition: all .1s;
}
.bqb-wrap-content{
    width: 100%;
    height: 118px;
    padding: 8px;
    overflow-y: auto;
    background: #eef1f9;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    box-shadow: 8px 8px 8px 8px #ccc;
}

.bqb-wrap-content .bqb {
    cursor: pointer;
    padding: 8px;
}

/* 滚动条宽高 */
.bqb-wrap-content::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}
/* 滚动条样式 */
.bqb-wrap-content::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background: rgba(0, 0, 0, .2);
}