/* 搜索区域 */
.search-section {
    margin-top: 70px;
    padding: 30px 0;
    background: #f8f9fa;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ff6b81;
    border-radius: 4px;
    font-size: 16px;
}

.search-box input:focus {
    outline: none;
    border-color: #ff4757;
}

.search-btn {
    padding: 0 30px;
    background: #ff6b81;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #ff4757;
}

.hot-tags {
    color: #666;
}

.hot-tags a {
    margin-left: 15px;
    color: #666;
}

.hot-tags a:hover {
    color: #ff6b81;
}

/* 商品区域 */
.products-section {
    padding: 40px 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

/* 左侧分类 */
.category-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.category-sidebar h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b81;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-list li.active a,
.category-list a:hover {
    background: #ff6b81;
    color: #fff;
}

/* 右侧商品列表 */
.products-content {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.products-count {
    color: #666;
}

.products-count span {
    color: #ff6b81;
    font-weight: bold;
}

.products-sort a {
    margin-left: 20px;
    color: #666;
}

.products-sort a.active,
.products-sort a:hover {
    color: #ff6b81;
}

/* 商品网格 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.price {
    color: #ff6b81;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sales {
    color: #999;
    font-size: 14px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
}

.pagination a:hover,
.pagination a.active {
    background: #ff6b81;
    color: #fff;
    border-color: #ff6b81;
} 