
/* 主体 */

.byz-list-main {
    display: flex;
    gap: 20px;
}
.byz-list-right {
    width: 300px;
}

/* 结合项 */
.filter-box {
    width: 1200px;
    margin: 0 auto 20px auto;
    background: #fff;
    border: 1px solid #ececec;
    overflow: hidden;
}
.filter-row {
    display: flex;
    padding: 18px 22px;
    border-bottom: 1px solid #f3f3f3;
}
.filter-row:last-child {
    border-bottom: none;
}
.filter-title{
    width:90px;
    flex-shrink:0;
    display:flex;
    transform: translateY(6px);
    color:#666;
    font-size:15px;
    font-weight:600;
}
.filter-title i{
    color:#00b578;
    font-size:16px;
    margin-right:8px;
}
.filter-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-item {
    height: 30px;
    line-height: 30px;
    padding: 0 14px;
    border-radius: 18px;
    color: #555;
    text-decoration: none;
    transition: .2s;
    font-size: 14px;
}
.filter-item:hover {
    background: #eef8f0;
    color: #26A44B;
}
.filter-item.active {
    background: #00b578;
    color: #fff;
}

/* 二手列表 */
.used-list {
    width: 1200px;
    margin: 0 auto 20px auto;
}
.used-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 28px 20px;
}
.used-list li {

}
.used-item-link {
    text-decoration: none;
    color: #333;
    display: block;
    transition: .25s;
}
.used-item-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    background: #f3f3f3;
}
.used-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s;
}
.used-item-link:hover img {
    transform: scale(1.02);
}
.used-item-price {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
    color: #333;
}
.used-item-title {
    margin-top: 12px;
    font-size: 17px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.used-item-area {
    margin-top: 12px;
    font-size: 14px;
    color: #999;
}