/* 分类页面样式 */
.category-container {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 15px;
    height: calc(100vh - 130px);
    overflow: hidden;
}

/* 左侧分类菜单 */
.category-menu {
    width: 25%;
    background-color: #f5f5f5;
    overflow-y: auto;
    height: 100%;
}

.category-menu-item {
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.category-menu-item.active {
    color: #4a90e2;
    background-color: #fff;
    border-left: 3px solid #4a90e2;
    font-weight: 500;
}

/* 右侧商品展示区 */
.category-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    height: 100%;
}

.category-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* 商品列表样式 */
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-3px);
}

.product-item .product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item .product-info {
    padding: 10px;
}

.product-item .product-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-item .product-price {
    color: #ff6700;
    font-size: 16px;
    font-weight: 500;
}

/* 加载提示和空数据提示 */
.loading-tip, .empty-tip {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 14px;
}

/* 适配底部导航栏 */
@media (max-width: 480px) {
    .category-container {
        height: calc(100vh - 120px);
    }
}
