/* 产品列表页面特定样式 */
        .products-page {
            padding: 20px 0 60px;
            background-color: #f4f8fb;
        }
        
        .products-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 搜索区域 */
        .search-section {
          
       
            margin-bottom: 30px;
        }
        
        .search-boxn {
            position: relative;
            max-width: 800px;
           display: flex;
        }
        
        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 1px solid #d8d8d8;
            background:#f4f8fb;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: #018eab;
            outline: none;
            box-shadow: 0 0 0 3px rgba(1, 142, 171, 0.1);
        }
        
        .search-button {
            
            background: #008cab;
            color: white;
            border: none;
            min-width:100px;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-button:hover {
            background: #016a80;
        }
        
        /* 筛选和排序区域 */
        .filter-sort-section {
           border-top:1px solid #d8d8d8;
           border-bottom:1px solid #d8d8d8;
            padding: 25px 10px;
            margin-bottom: 30px;
           
        }
        
        /* 新的筛选样式 - 垂直布局 */
        .filter-vertical {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .filter-category {
            display: flex;
            gap: 12px;
            border-bottom:1px dashed #ccc;
            padding-bottom:15px;
        }
         .filter-category  img{max-height:45px;}
        .filter-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .filter-option {
            padding: 3px 16px;
            border: 1px solid #e0e0e0;
            background: white;
            color: #666;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
          .filter-category:nth-child(4){border-bottom:0px;}
        .filter-category:nth-child(4) .filter-title{height:45px;line-height:45px;}
        .filter-category:nth-child(4)  .filter-option{padding:0px;}
        .filter-category:nth-child(4) .filter-option.active{background:none;}
        .filter-option:hover {
            border-color: #018eab;
            color: #018eab;
        }
        
        .filter-option.active {
            background: #6cbb5a;
            color: white;
            border-color: #6cbb5a;
        }
        
        .sort-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
            margin-top: 10px;
        }
        
        .results-count {
            font-size: 14px;
            color: #666;
        }
        
        .sort-options {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .sort-label {
            font-size: 16px;
            color: #333;
            font-weight:bold;
        }
        
        .sort-buttons {
            display: flex;
            gap: 10px;
        }
        
        .sort-btn {
            padding: 8px 16px;
            border: 0px solid #e0e0e0;
            border-radius: 6px;
            background: white;
            color: #666;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            position: relative;
        }
        
        .sort-btn:hover,
        .sort-btn.active {
           
            color: #ff5105;
           
        }
        
        /* 排序箭头样式 */
        .sort-arrows {
            display: flex;
            flex-direction: column;
            gap: 1px;
            margin-left: 4px;
        }
        
        .sort-arrow {
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            transition: all 0.3s ease;
        }
        
        .sort-arrow.up {
            border-bottom: 4px solid #999;
            margin-bottom: 1px;
        }
        
        .sort-arrow.down {
            border-top: 4px solid #999;
        }
        
        /* 排序激活状态 */
        .sort-btn.active .sort-arrow.up {
            border-bottom-color: white;
        }
        
        .sort-btn.active .sort-arrow.down {
            border-top-color: white;
        }
        
        /* 升序排序激活状态 */
        .sort-btn.asc .sort-arrow.up {
            border-bottom-color: #aaa;
        }
        
        .sort-btn.asc .sort-arrow.down {
            border-top-color: #999;
        }
        
        /* 降序排序激活状态 */
        .sort-btn.desc .sort-arrow.up {
            border-bottom-color: #999;
        }
        
        .sort-btn.desc .sort-arrow.down {
            border-top-color: #6cbb5a;
        }
        
        /* 产品网格 */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #6cbb5a;
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            z-index: 2;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-category {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
            height: 44px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .spec-tag {
            background: #f8f9fa;
            color: #666;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #018eab;
        }
        
        .product-actions {
            display: flex;
            gap: 8px;
        }
        
        .btn-detail {
            padding: 6px 12px;
            background: #018eab;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-detail:hover {
            background: #016a80;
        }
        
        .btn-inquiry {
            padding: 6px 12px;
            background: #6cbb5a;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-inquiry:hover {
            background: #5aa848;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        
        .page-item {
            display: inline-block;
        }
        
        .page-link {
            display: block;
            padding: 10px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .page-link:hover {
            background: #f8f9fa;
            border-color: #018eab;
        }
        
        .page-item.active .page-link {
            background: #018eab;
            color: white;
            border-color: #018eab;
        }
        
        .page-item.disabled .page-link {
            color: #999;
            cursor: not-allowed;
            background: #f8f9fa;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sort-row {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .sort-options {
                width: 100%;
                justify-content: space-between;
            }
        }
        
        @media (max-width: 768px) {
            .products-page {
                padding: 20px 0 40px;
            }
            
            .search-section,
            .filter-sort-section {
                padding: 20px;
            }
            
            .products-grid {
                gap: 15px;
            }
            
            .product-content {
                padding: 15px;
            }
            
            .product-title {
                font-size: 15px;
                height: 40px;
            }
            
            .product-price {
                font-size: 16px;
            }
            
            .filter-options {
                gap: 8px;
            }
            
            .filter-option {
                padding: 6px 12px;
                font-size: 13px;
            }
            
            .sort-btn {
                padding: 6px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 576px) {
            .products-page {
                padding: 20px 0 30px;
            }
            .filter-title{min-width:70px;}
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .sort-buttons {
                flex-wrap: wrap;
            }
            
            .product-image {
                height: 180px;
            }
            
            .product-footer {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .product-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .btn-detail,
            .btn-inquiry {
                flex: 1;
                text-align: center;
            }
            
            .filter-options {
                justify-content: center;
            }
        }
        
        
        /* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 5px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-btn:hover:not(:disabled) {
    background: #f5f5f5;
}

.page-btn.active {
    background-color: #ff5105;
    color: white;
    border-color: #ff5105;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}