.product-list-container {
    /* margin-top: 40px; */
    display: flex;
    padding: 20px;
  }
  
  .page-title h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* 产品卡片 */
  .product-card {
    width: 100%;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* 产品图片 */
  .product-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .product-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.1);
  }
  
  /* 产品名称 */
  .product-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* 价格样式 */
  .product-price {
    font-size: 18px;
    color: red;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .old-price {
    text-decoration: line-through;
    color: gray;
    margin-left: 10px;
    font-size: 14px;
  }
  
  /* 快速查看按钮 */
  .quick-view-btn {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 80%;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
  }
  
  .product-card:hover .quick-view-btn {
    display: block;
  }
  
  /* 加入购物车按钮 */
  .add-to-cart-btn {
    background-color: #ff4d4f;
    color: white;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
  }
  
  .add-to-cart-btn:hover {
    background-color: #e64a19;
  }
  
  /* 标签样式 */
  .product-tags {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  .product-tag {
    background-color: #f44336;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 5px;
  }
  
  /* 分页 */
  .el-pagination {
    margin-top: 20px;
  }
  
  
  .flash-sale-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
  }
  .category-sidebar {
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 8px;
}

.category-card,
.filter-card {
    margin-bottom: 20px;
}

.category-title,
.filter-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.el-checkbox-group {
    display: flex;
    flex-direction: column;
}

.el-checkbox {
    margin-bottom: 10px;
}

.el-slider {
    margin-top: 10px;
}

.categoryTitle{
    margin-bottom: 20px;
}  
