.header {
            border-bottom: 0px solid #887a64;
        }
        /* 拍品页面样式 */
        .lot-container {
            margin-top: 80px;
            padding: 0;
        }

        .lot-banner {
            position: relative;
            width: 100%;
            height: 500px;
            background: url('dt.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
        }

        .lot-banner-content {
            padding: 60px;
            color: #333;
            max-width: 500px;
        }

        .lot-banner-tag {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .lot-banner-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 24px;
            font-family: "STKaiti", "KaiTi", serif;
        }

        .lot-banner-info {
            font-size: 14px;
            line-height: 1.6;
        }

        .lot-nav {
            display: flex;
            padding: 20px 60px 0px 120px;
            border-bottom: 1px solid #eee;
            align-items: center;
            justify-content: space-between;
        }

        .lot-nav-links {
            display: flex;
            gap: 24px;
        }

        .lot-nav-link {
            font-size: 14px;
            color: #666;
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .lot-nav-link.active {
            color: #5D4E37;
            border-bottom-color: #5D4E37;
        }

        .lot-search-container {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .lot-search {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .lot-search label {
            font-size: 14px;
            color: #666;
        }

        .lot-search input {
            padding: 4px 0;
            border: none;
            border-bottom: 1px solid #666;
            font-size: 14px;
            width: 150px;
            outline: none;
        }

        .lot-view-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .view-toggle-btn {
            background: none;
            border: 1px solid #ddd;
            padding: 4px 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            transition: all 0.3s ease;
        }

        .view-toggle-btn.active {
            background: #5D4E37;
            color: #fff;
            border-color: #5D4E37;
            display: none;
        }

        .view-toggle-btn:hover {
            border-color: #5D4E37;
            color: #5D4E37;
        }

        .lot-grid {
            padding: 110px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }

        .lot-grid .lot-item-content {
            display: block;
        }

        .lot-grid .lot-item-info {
            display: block;
        }

        .lot-grid .lot-item-en {
            display: none;
        }

        .lot-grid .lot-item-price {
            border-left: none;
            padding-left: 0;
            text-align: left;
        }

        .lot-grid .lot-item-link::after {
            display: none;
        }

        .lot-grid.list-view {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .lot-grid.list-view .lot-item-link {
            display: block;
        }

        .lot-grid.list-view .lot-item {
            display: flex;
            align-items: flex-start;
            padding: 20px 0;
            border: none;
            border-bottom: 1px solid #eee;
        }

        .lot-grid.list-view .lot-item-image {
            width: 200px;
            height: 200px;
            margin-bottom: 0;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .lot-grid.list-view .lot-item-content {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .lot-grid.list-view .lot-item-info {
            flex: 1;
            min-width: 0;
            border-right: 1px solid #eee;
        }

        .lot-grid.list-view .lot-item-price {
            text-align: left;
            padding-left: 40px;
            min-width: 220px;
            color: #333;
            font-size: 14px;
            line-height: 1.4;
        }
        .lot-grid.list-view .lot-item-price-label {
            display: block;
            margin-bottom: 30px;
        }

        .lot-grid.list-view .lot-item-lot {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .lot-grid.list-view .lot-item-author {
            font-size: 16px;
            font-weight: normal;
            color: #333;
            margin-bottom: 4px;
        }

        .lot-grid.list-view .lot-item-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 80px;
        }

        .lot-grid.list-view .lot-item-en {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
            display: block;
        }

        .lot-grid.list-view .lot-item-price {
            font-size: 14px;
            color: #333;
        }

        .lot-grid.list-view .lot-item-price span {
            color: #333;
        }

        .lot-grid.list-view .lot-item-price {
            position: relative;
        }

        .lot-grid.list-view .lot-item-price::after {
            content: '>';
            position: absolute;
            right: 0;
            bottom: -60px;
            color: #999;
            font-size: 14px;
        }

        .lot-item-link {
            display: block;
            text-decoration: none;
        }

        .lot-item {
            /*  */
            padding: 16px;
            /*transition: all 0.3s ease;*/
        }

        .lot-item:hover {
            /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
            border: 2px solid #ccc;
        }

        .lot-item-image {
            width: 100%;
            height: 200px !important;
            line-height:200px;
            margin-bottom: 12px;
	    text-align:center;
        }

        .lot-item-image img {
            max-width: 200px;
            max-height: 200px;
            object-fit: cover;
        }

        .lot-item-lot {
            font-size: 12px;
            color: #999;
            margin-bottom: 4px;
        }

        .lot-item-author {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            margin-bottom: 4px;
        }

        .lot-item-title {
            font-size: 14px;
            font-weight: bold;
            color: #666;
            margin-bottom: 8px;
        }

        .lot-item-price {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
        }

        .lot-item-price span {
            color: #5D4E37;
        }

        .lot-pagination {
            padding: 40px 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            border-top: 1px solid #eee;
            font-size: 14px;
        }

        .lot-page-nav {
            color: #666;
            text-decoration: none;
            padding: 6px 12px;
            border: 1px solid #ddd;
            background: #fff;
            transition: all 0.3s ease;
        }

        .lot-page-nav:hover {
            border-color: #5D4E37;
            color: #5D4E37;
        }

        .lot-page {
            padding: 6px 12px;
            border: 1px solid #ddd;
            background: #fff;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .lot-page:hover {
            border-color: #5D4E37;
            color: #5D4E37;
        }

        .lot-page.active {
            background: #5D4E37;
            border-color: #5D4E37;
            color: #fff;
        }

        .lot-page-jump {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
        }

        .lot-page-input {
            padding: 4px 6px;
            border: 1px solid #ddd;
            border-radius: 2px;
            font-size: 14px;
            width: 40px;
            text-align: center;
        }

        .lot-page-btn {
            padding: 4px 12px;
            border: 1px solid #ddd;
            background: #fff;
            color: #666;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .lot-page-btn:hover {
            border-color: #5D4E37;
            color: #5D4E37;
        }

        @media (max-width: 1024px) {
            .lot-container { margin-top: 80px; }
            .lot-banner { height: 240px; }
            .lot-banner-content { padding: 40px; max-width: 100%; }
            .lot-banner-title { font-size: 30px; }
            /* 修复：原 padding 20px 60px 0 120px 在中屏挤死 */
            .lot-nav { padding: 16px 24px 0; }
            .lot-grid {
                padding: 32px 24px;
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }
            .lot-item-image { height: 180px; }
            /* 列表视图自适应 */
            .lot-grid.list-view .lot-item-image { width: 160px; height: 160px; }
            .lot-grid.list-view .lot-item-price { padding-left: 20px; min-width: 160px; }
        }

        @media (max-width: 768px) {
            .lot-container { margin-top: 64px; }
            .lot-banner {
                height: 200px;
            }

            .lot-banner-content {
                padding: 24px;
            }

            .lot-banner-title {
                font-size: 24px;
            }

            .lot-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .lot-nav-links { flex-wrap: wrap; gap: 16px; }
            .lot-search-container {
                width: 100%;
                flex-wrap: wrap;
                gap: 12px;
            }
            .lot-search input { width: 100%; }

            .lot-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 16px;
                gap: 12px;
            }
            .lot-item { padding: 8px; }
            .lot-item-image { height: 160px; }
            /* 网格视图图片完整显示 */
            .lot-item-image img {
                object-fit: contain;
                background: #f5f5f5;
            }

            /* 列表视图：图竖排在内容上方 */
            .lot-grid.list-view .lot-item { flex-direction: column; }
            .lot-grid.list-view .lot-item-image {
                width: 100%;
                height: auto;
                aspect-ratio: 1 / 1;
                margin-right: 0;
                margin-bottom: 12px;
            }
            .lot-grid.list-view .lot-item-content { flex-direction: column; gap: 12px; }
            .lot-grid.list-view .lot-item-info { border-right: none; }
            .lot-grid.list-view .lot-item-price {
                padding-left: 0;
                min-width: auto;
            }
            .lot-grid.list-view .lot-item-title { margin-bottom: 16px; }
            .lot-grid.list-view .lot-item-price::after { display: none; }

            .lot-pagination {
                padding: 16px;
                flex-wrap: wrap;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .lot-container { margin-top: 56px; }
            .lot-banner { height: 160px; }
            .lot-banner-title { font-size: 20px; }
            .lot-grid {
                grid-template-columns: 1fr;
                padding: 12px;
            }
            .lot-item-image { height: auto; aspect-ratio: 1 / 1; }
        }