/* ===== 卡乐售 PC 商品分类 - ziqidonglai ===== */

.fenlei-empty {
    padding: 80px 0;
    text-align: center;
    color: #8a93a6;
    font-size: 15px;
}

.fenlei-wrap {
    display: flex;
    align-items: stretch;
    margin-top: 12px;
    margin-bottom: 30px;
    min-height: 500px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,.08);
    overflow: hidden;
}

/* 左栏 */
.fenlei-left {
    width: 190px;
    flex: none;
    background: #f7f8fa;
    border-right: 1px solid #eaeaea;
    overflow-y: auto;
}

.fenlei-left-title {
    padding: 16px 18px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eaeaea;
}

.fenlei-left .fl-item {
    display: block;
    padding: 13px 18px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all .2s;
}

.fenlei-left .fl-item:hover {
    background: #fff;
    color: #2d7ff9;
}

.fenlei-left .fl-item.on {
    background: #fff;
    color: #2d7ff9;
    font-weight: 600;
    border-left: 3px solid #2d7ff9;
    padding-left: 15px;
}

/* 右栏 */
.fenlei-right {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 20px 24px;
}

.fenlei-grid {
    display: none;
}

.fenlei-grid.show {
    display: block;
}

.fenlei-grid-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.fenlei-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fenlei-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(20% - 8px);
    padding: 14px 8px;
    border-radius: 6px;
    transition: all .2s;
    text-decoration: none;
}

.fenlei-card:hover {
    background: #f5f8ff;
    transform: translateY(-2px);
}

.fenlei-card .card-img {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f6f8;
}

.fenlei-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fenlei-card .card-name {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    text-align: center;
    word-break: break-all;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
