/* ===== chushou模板专用样式 ===== */
.chushou-li {
    display: flex;
    align-items: stretch;
    padding: 14px 15px 14px 5px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.chushou-li:hover {
    background-color: #f9f9f9;
}

.chushou-li.top-item {
    background-color: #fffbf5;
}

/* 图片区 */
.chushou-img {
    width: 150px;
    height: 112px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    align-self: center;
}

.chushou-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.chushou-img:hover img {
    transform: scale(1.05);
}

/* 中间主内容 */
.chushou-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}

/* 标题行 */
.chushou-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.chushou-title a {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chushou-title a:hover {
    color: #EE3131;
}

.chushou-title a.expired {
    text-decoration: line-through;
    color: #999;
}

/* 置顶标识 */
.chushou-top-badge {
    display: inline-block;
    padding: 1px 5px;
    font-size: 11px;
    color: #fff;
    background: #EE3131;
    border-radius: 2px;
    flex-shrink: 0;
    line-height: 18px;
}

/* 简介 */
.chushou-summary {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 自定义字段行 */
.chushou-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 8px;
}

.chushou-field-item {
    font-size: 13px;
    color: #555;
    margin-right: 16px;
}

.chushou-field-item + .chushou-field-item::before {
    content: '';
}

.chushou-field-label {
    color: #999;
}

.chushou-field-value {
    color: #333;
}

.chushou-field-value .field-number {
    color: #EE3131;
    font-weight: bold;
}

/* 分类/地区标签行 */
.chushou-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.chushou-tag {
    display: inline-block;
    background: rgba(90, 165, 240, .1);
    border-radius: 2px;
    padding: 3px 6px;
    font-size: 12px;
    color: #5aa5f0;
    line-height: 18px;
}

/* 右侧：价格+日期 */
.chushou-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
    margin-left: 15px;
    min-width: 90px;
    padding: 2px 0;
}

/* 价格大字红色 */
.chushou-price {
    text-align: right;
    white-space: nowrap;
}

.chushou-price-num {
    font-size: 22px;
    font-weight: bold;
    color: #EE3131;
}

.chushou-price-unit {
    font-size: 13px;
    color: #EE3131;
    margin-left: 2px;
}

/* 日期 */
.chushou-date {
    font-size: 12px;
    color: #bbb;
    white-space: nowrap;
}
