.auction-card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
    padding-bottom: 10px;
}
.auction-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.auction-body {
    padding: 10px;
}
.auction-title {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制为两行 */
    -webkit-box-orient: vertical;
}
.auction-time {
    color: #d0021b;
    font-size: 15px;
    font-weight: bold;
}
.auction-meta {
    font-size: 15px;
    color: #999;
    margin: 20px 0;
}
.badge-status {
    padding: 5px;
    font-size: 15px;
    float: right;
}