
        /* 热门商品标题样式 - 与品牌栏目精选板块保持一致 */
        .product-list-title-section h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin: 0;
        }
        
        /* 商品列表卡片基础样式 */
        .product-list-card {
            background: white;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            margin-bottom: 1rem;
        }
        
        /* 移动端减少卡片底部间距 */
        @media (max-width: 768px) {
            .product-list-card {
                margin-bottom: 0.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .product-list-card {
                margin-bottom: 0.3rem;
            }
        }
        
        .product-list-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .product-list-card:hover .product-list-info {
            background-color: white;
        }
        
        .product-list-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }
        
        .product-list-card:hover::before {
            opacity: 1;
        }
        
        /* 清除A标签默认样式 */
        .product-link {
            text-decoration: none !important;
            color: inherit !important;
            display: block;
            height: 100%;
        }
        
        .product-link:hover {
            text-decoration: none !important;
            color: inherit !important;
        }
        
        .product-link:visited {
            text-decoration: none !important;
            color: inherit !important;
        }
        
        .product-link:focus {
            text-decoration: none !important;
            color: inherit !important;
        }
        
        /* 图片和信息区域 */
        .product-list-image {
            width: 100%;
            height: 380px; /* 默认高度 - 适中的长条形商品 */
            background: white;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        
        .product-list-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-list-info {
            padding: 0.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
            position: relative;
            z-index: 2;
        }
        
        /* 文本样式 - 统一处理 */
        .product-list-brand, .product-list-colors {
            font-size: clamp(0.6rem, 2vw, 0.8rem);
            color: #a6a6a6;
            font-weight: 500;
            line-height: 1.2;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .product-list-title {
            font-size: clamp(0.7rem, 2.2vw, 0.9rem);
            color: #333;
            margin-bottom: 0.3rem;
            line-height: 1.3;
            flex-grow: 1;
            min-height: 0; /* 允许flex项目收缩 */
            word-wrap: break-word; /* 允许长单词换行 */
            word-break: break-all; /* 强制换行 */
        }
        
        /* SEO友好模式：完整标题样式 */
        .product-list-title.seo-full {
            display: -webkit-box;
            -webkit-line-clamp: 3; /* 允许最多3行 */
            line-clamp: 3; /* 标准属性 */
            -webkit-box-orient: vertical;
            overflow: hidden;
            word-break: break-word; /* 更自然的换行 */
            word-wrap: break-word;
        }
        
        .product-list-price {
            font-size: clamp(0.8rem, 2.5vw, 1.1rem);
            font-weight: 700;
            color: #000;
            margin-top: auto; /* 使用auto推到底部 */
            line-height: 1.2;
            overflow: hidden;
            white-space: nowrap;
            flex-shrink: 0; /* 防止价格被压缩 */
        }
        
        .product-list-brand {
            margin-bottom: 0.2rem;
        }
        
        .product-list-colors {
            margin-top: 0.5rem;
        }
        
        /* 查看更多按钮样式 */
        .product-list-load-more-section {
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .product-load-more-btn {
            border: 1px solid #000;
            background: transparent;
            color: #000;
            padding: 0.75rem 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 0;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .product-load-more-btn:hover {
            background: #000;
            color: #fff;
            text-decoration: none;
        }
        
        .product-load-more-btn:focus {
            box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
        }
        
        .product-load-more-btn.loading {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .product-load-more-btn.loading::after {
            content: " 加载中...";
        }
        
        
        #product-list-grid,
        [id^="hot-products-grid-"] {
            display: grid !important;
            grid-template-columns: repeat(var(--desktop-cols, 5), 1fr);
            gap: 1rem;
        }
        
        /* 响应式断点 - 长条形商品优化设计 */
        
        /* 超大屏幕 - 1600px以上 */
        @media (min-width: 1600px) {
            .product-list-image { height: 420px; } /* 大屏幕适中高度 */
        }
        
        /* 大屏幕 - 1200px-1600px */
        @media (max-width: 1600px) and (min-width: 1200px) {
            .product-list-image { height: 360px; } /* 大屏幕适中高度 */
        }
        
        /* 中等屏幕 - 992px-1200px */
        @media (max-width: 1200px) and (min-width: 992px) {
            #product-list-grid,
            [id^="hot-products-grid-"] { grid-template-columns: repeat(var(--tablet-cols, 4), 1fr); }
            .product-list-image { height: 300px; } /* 中等屏幕适中高度 */
        }
        
        /* 平板屏幕 - 768px-992px */
        @media (max-width: 992px) and (min-width: 768px) {
            #product-list-grid,
            [id^="hot-products-grid-"] { grid-template-columns: repeat(var(--tablet-cols, 4), 1fr); }
            .product-list-image { height: 280px; } /* 平板适中高度 */
        }
        
        /* 手机屏幕 - 576px-768px */
        @media (max-width: 768px) {
            #product-list-grid,
            [id^="hot-products-grid-"] { 
                grid-template-columns: repeat(var(--mobile-cols, 2), 1fr);
                gap: 0.5rem;
            }
            .product-list-info { padding: 0.4rem; }
            .product-list-image { height: 250px; } /* 手机适中高度 */
            /* .product-list-image { height: 220px; } */
             /* 手机适中高度 */
        }
        
        /* 小手机屏幕 - 480px-576px */
        @media (max-width: 576px) {
            #product-list-grid,
            [id^="hot-products-grid-"] { 
                grid-template-columns: repeat(var(--xs-cols, 2), 1fr);
                gap: 0.4rem;
            }
            .product-list-image { height: 250px; } /* 小手机适中高度 */
            /* .product-list-image { height: 200px; }  */
            /* 小手机适中高度 */
        }
        
        /* 超小屏幕 - 480px以下 */
        @media (max-width: 480px) {
            .product-list-info { padding: 0.3rem; }
            .product-list-image { height: 250px; } /* 超小屏幕适中高度 */
            /* .product-list-image { height: 180px; }  */
            /* 超小屏幕适中高度 */
        }
        
        /* 热门商品标题响应式样式 */
        @media (max-width: 768px) {
            .product-list-title-section h1 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 480px) {
            .product-list-title-section h1 {
                font-size: 1.4rem;
            }
        }