
          .infobtn{
    background-color: #fff; 
    height: 30px;
    display:inline-flex;
    border-radius: 30px;
    padding:4px 15px 2px 15px; 
    color: #999;
    width:80rpx; 
    border: 1px solid #999;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.infobtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    color: #ff0000;
}


        /* 卡片样式 */
        .product-card {
            background-color: #fff;
            margin-bottom: 30px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
 
        
        .product-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            transform: scale(1.05);

        }
        
       
        .product-info {
            padding: 10px;
            background: var(--bg-gray-light);
        }
        
        .product-category {
            color: #000;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .product-title {
            height:50px;
            font-size: 16px;
            margin-bottom: 30px;
            color: #333;
            line-height: 1.2em;
        }
        
        .product-date {
            font-size: 12px;
            color: #999;
        }
        
        .more-link {
            color: #337ab7;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }
        

        /* 筛选区域样式 */
        .filter-section {
            padding: 0px;
            margin-bottom: 30px;
        }
        
        .filter-title {
            font-size: 28px;
            margin-top: 0;
            margin-bottom: 20px;
        }
        
        .filter-group {
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-group-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #000;

        }
        
        .checkbox-label {
            display: block;
            margin-bottom: 8px;
            cursor: pointer;
        }
        
        .time-input {
            width: 100%;
            padding: 6px 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        
        .clear-btn {
            width: 100%;
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            color: #555;
        }
        

        /* 响应式调整 */
        @media (max-width: 768px) {
            .filter-section {
                margin-top: 20px;
            }
        }



                 a{color:#000;line-height:1.5em}
         .simple-pagination {
             text-align: center;
             margin: 20px 0;
             padding: 10px;
         }
         .simple-pagination button, .simple-pagination span {
             display: inline-block;
             margin: 0 5px;
             padding: 8px 15px;
        
             background: #fff;
             color: #333;
             cursor: pointer;
             font-weight: 600;
             min-width: 40px;
             text-align: center;
         }
         .simple-pagination button:hover {
             background: #f5f5f5;
         }
         .simple-pagination span {    
             color: #000;
            
         }
         .simple-pagination button:disabled {
             background: #f5f5f5;
             color: #ccc;
             cursor: not-allowed;
         }

/* .animate-fade-in {
    opacity: 0;
    transform: translateY(0px);
    animation: fadeInUp 0.3s ease forwards;
} */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-card {
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}<!--9.8943710327148E-5-->