* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", Arial, sans-serif;
}
body {
    background-color: #f5f7fa;
    padding: 20px;
}
.list-container {
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* 基础布局 - 图片不挤压、不变形 */
.item-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    padding: 6px;
    gap: 6px;
    margin-bottom: 10px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}
.card-img {
    width: 220px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: auto;
    display: block;
}
.card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    align-items: center;
}
.tags-group {
    display: flex;
    gap: 4px;
}
.tag {
    color: #194B83;
    font-size: 13px;
    margin-left:10px;
    padding: 1px 5px;
    border: 1px solid #194B83;
    border-radius: 2px;
    white-space: nowrap;
}
.card-date {
    font-size: 13px;
    color: #999;
    margin-right: 5px;
}

/* 核心容器 */
.card-content {
    display: flex;
    gap: 6px;
    width: 100%;
}

/* 关键：
col1~col6 ：内容自适应宽度、不拉伸、不平分
只单独让 col-5 吃掉所有剩余空白
*/
.col {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    width: auto;
}
/* 只有第五列 自适应占剩余全部宽度 */
.col-5 {
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
}

/* 行高度压缩 紧凑 */
.form-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}
.form-row:last-child {

}
.form-label {
    width: 100px;
    text-align: center;
    background: #f5f5f5;
    border-right: 1px solid #e8e8e8;
    padding: 2px 5px;
    font-size: 12px;
    white-space: nowrap;
}
.form-input {
    padding: 2px 20px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.text-ellipsis-row .form-input {
    cursor: pointer;
}
.price-total {
    line-height: 54px;
    font-size: 15px;
    font-weight: bold;
    color: #ff3333;
    padding: 3px;
    text-align: center;
}