.list-container {
            width: 1200px; /* 宽度调整为 1200px */
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* 增加轻微阴影 */
            padding: 20px;
        }

        /* 顶部导航样式 */
        .navigation {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            border-bottom: 2px solid #C5A468; /* 金棕色主线 */
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .navigation a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            padding: 0 20px;
            font-weight: 500;
            transition: color 0.3s;
            border-right: 1px solid #ddd;
        }
        .navigation a:first-child {
             padding-left: 0;
        }
        .navigation a:last-child {
            border-right: none;
        }
        .navigation a:hover, .navigation a.active {
            color: #C5A468; /* 悬停/选中高亮 */
        }


        /* 列表项样式 */
        .auction-item {
            display: flex;
            padding: 30px 0; /* 增加垂直间距 */
            border-bottom: 1px solid #eee; 
            transition: background-color 0.3s;
        }
        .auction-item:hover {
            background-color: #fcfcfc; /* 悬停效果 */
        }

        /* 水平标签区域 */
        .vertical-tag-wrapper {
            position: absolute;
            left: 10px;
            top: 10px;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none; /* 让标签不阻止点击穿透到图片 */
            transition: transform 0.3s ease; /* 跟随图片一起动画 */
        }
        .vertical-tag {
            background-color: #C5A468; /* 金棕色背景，突出显示 */
            color: white;
            font-size: 16px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            pointer-events: auto; /* 但标签本身仍可点击 */
        }
        /* 当图片放大时，标签也跟随移动 */
        .image-area a:hover .vertical-tag-wrapper {
            transform: scale(1.1); /* 与图片相同的放大比例 */
            transform-origin: left top; /* 从左上角开始放大 */
        }

        /* 图片区域 */
        .image-area {
            width: 320px;
            height: 180px;
            position: relative;
            overflow: visible; /* 允许标签超出图片区域 */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-radius: 4px; /* 增加圆角，与整体设计风格统一 */
        }
        .image-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }
        .image-area a:hover img {
            transform: scale(1.1);
        }
        /* 图片底部的半透明文字遮罩 */
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 10px;
            font-size: 14px; /* 字体增大 */
        }

        /* 文字信息区域 */
        .info-area {
            flex-grow: 1;
            padding-left: 40px; /* 增加左侧间距 */
        }
        .info-area h3 {
            font-size: 24px; /* 标题字体增大 */
            font-weight: 600;
            margin: 0 0 20px 0;
            color: #333;
        }
        .detail-row {
            display: flex;
            margin-bottom: 10px; /* 增加行间距 */
            font-size: 16px; /* 详情字体增大 */
        }
        .label {
            width: 100px; /* 标签固定宽度增大 */
            color: #666;
        }
        .value {
            color: #333;
            font-weight: 500;
        }

        /* 移除最后一个元素的分隔线 */
        .auction-item:last-child {
            border-bottom: none;
        }