/* 首页商品大类标签栏 */
.category-group-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 10px 10px 8px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.category-group-tab {
    padding: 8px 4px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    color: #555;
    cursor: pointer;
    text-align: center;
    background: #f7f7f7;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.3;
    transition: background .15s, color .15s, border-color .15s;
}
.category-group-tab.active {
    background: #00cafc;
    border-color: #00cafc;
    color: #fff;
    font-weight: 500;
}
/* 未归类的分类在大类筛选时隐藏 */
.weui-grid[data-group=""] {
    display: none;
}
