/* 页面头部横幅 */
.page-banner {
    background: linear-gradient(rgba(13, 31, 58, 0.8), rgba(13, 31, 58, 0.8)), url('https://24344043.s21i.faiusr.com/4/ABUIABAEGAAgieK0vwYo-bSK1wIwsAk4rAI.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: #fff;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: #2196f3;
}

/* 列表页主体 */
.list-section {
    padding: 60px 0;
}

/* 筛选栏 */
.filter-bar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    width: 70px;
    flex-shrink: 0;
    color: #666;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-option {
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-option:hover {
    color: #2196f3;
}

.filter-option.active {
    background-color: #2196f3;
    color: #fff;
}

/* 列表项目 */
.list-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.list-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-image {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.list-item:hover .item-image img {
    transform: scale(1.05);
}

.item-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    padding: 4px 10px;
    background-color: #f0f4f8;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.meta-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.meta-sales {
    color: #777;
}

.item-actions {
    display: flex;
    gap: 15px;
}

.btn-view, .btn-contact {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
}

.btn-view {
    background-color: #f0f4f8;
    color: #333;
    flex: 1;
}

.btn-view:hover {
    background-color: #e0e5ea;
}

.btn-contact {
    background-color: #2196f3;
    color: #fff;
    flex: 1;
}

.btn-contact:hover {
    background-color: #0d6efd;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 8px;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .list-item {
        flex-direction: column;
    }
    
    .item-image {
        width: 100%;
        height: 220px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-group label {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .item-title {
        font-size: 18px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
} 