.buy-list{
    padding: 30px 0;
}
.filter-box{
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 14px 14px 14px 14px;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    justify-content: space-between;
    align-items: flex-end;
}
.filter-box-left{
    display: flex;
    flex-wrap: wrap;
}
.filter-box-item{
    margin: 5px;
}
.filter-box-item .name{
    font-size: 18px;
    color: #333333;
    line-height: 22px;
    margin-bottom: 12px;
    font-weight: bold;
}
.filter-box-item .select-box{
    width: 233px;
    height: 46px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #DCDCDC;
    padding: 0 12px;
    position: relative;
}
.filter-box-item .select-box .iconfont{
    position: absolute;
    right: 12px;
    font-size: 12px;
    color: #DCDCDC;
    top: 50%;
    margin-top: -6px;
    z-index: 0;
}
.filter-box-item .select-box select{
    font-size: 14px;
    border: none;
    width: 100%;
    height: 100%;
    outline: none;
}
.placeholder{
    color: #666;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
    z-index: 9;
}
.filter-btn{
    cursor: pointer;
    width: 160px;
    height: 46px;
    background: #E21818;
    border-radius: 5px 5px 5px 5px;
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: bold;
}
.buy-item{
    display: flex;
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 14px 14px 14px 14px;
    padding: 20px;
    flex: 1;
}
.buy-item-left{
    width: 233px;
    height: 233px;
    flex-shrink: 0;
    margin-right: 24px;
    transition: all .3s;
}
.buy-item-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buy-item-right{
    flex: 1;
    /* max-width: calc(100% - 258px); */
}
.buy-item-right .top-line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.buy-item-right .top-line .limit{
    margin-right: 20px;
    font-size: 20px;
    color: #333333;
    line-height: 28px;
    font-weight: bold;
    max-width: calc(100% - 200px);
}
.buy-item-right .top-line .time{
    font-size: 16px;
    color: #999999;
}
.buy-item-right .tags{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.buy-item-right .tags div{
    padding: 4px 8px;
    margin-right: 8px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    border-radius: 4px 4px 4px 4px;
    background: #F5F5F5;
    height: fit-content;
}
.buy-item-right .info-desc{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #F5F5F5;
    margin-bottom: 15px;
}
.buy-item-right .info-desc-item{
    margin-bottom: 25px;
    border-left: 1px solid #F5F5F5;
    padding-left: 40px;
    width: 25%;
}
.buy-item-right .info-desc .info-desc-item:first-child{
    border: none;
    padding-left: 0;
}
.buy-item-right .info-desc-item .name{
    font-size: 16px;
    color: #999999;
    margin-bottom: 4px;
    line-height: 22px;
}
.buy-item-right .info-desc-item .val{
    font-size: 18px;
    color: #333333;
    line-height: 25px;
    font-weight: 500;
}
.buy-btm-info{
    display: flex;
    width: 100%;
}
.buy-btm-info .tag{
    margin-right: 10px;
    width: 44px;
    height: 44px;
    background: #E21818;
    border-radius: 5px 5px 5px 5px;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.buy-btm-info .text{
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    max-width: calc(100% - 200px);
}
.buy-item-right .buy-btn{
    cursor: pointer;
    width: 120px;
    height: 44px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #E21818;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    color: #E21818;
    font-weight: 500;
    flex-shrink: 0;
}


@media (max-width: 992px) {
    .buy-item-right .info-desc-item{
        width: 50%;
    }
    .buy-item-right .info-desc .info-desc-item:nth-child(2n + 1){
        border: none;
        padding-left: 0;
    }
    .buy-item-right .buy-btm{
        flex-wrap: wrap;
    }
    .buy-btm-info .text{
        max-width: unset;
    }
    .buy-item-right .buy-btn{
        margin-top: 20px;
    }
}
@media (max-width: 768px){
    .buy-item{
        flex-direction: column;
    }
    .buy-item-left{
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        aspect-ratio: 1;
        height: 100%;
    }
    .buy-item-right{
        max-width: unset;
    }
}
