@charset "utf-8";


        /* ===== 主区域控制 ===== */
        .deeplist-container {
            max-width: 100% !important; 
            margin: 0 !important; 
            padding: 0 !important; 
        }

        /* ===== Banner轮播 ===== */
        .deeplist-banner-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 300px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .deeplist-banner-item {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: flex-end;
            background-size: cover;
            background-position: center;
        }

        .deeplist-banner-item.active {
            opacity: 1;
            z-index: 2;
        }

        .deeplist-banner-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
        }

        .deeplist-banner-content {
            position: relative;
            z-index: 3;
            padding: 30px;
            color: white;
        }

        .deeplist-banner-content h2 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .deeplist-banner-content p {
            font-size: 14px;
            opacity: 0.9;
        }

        .deeplist-banner-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .deeplist-banner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            padding: 0;
        }

        .deeplist-banner-dot.active {
            background-color: white;
            width: 30px;
            border-radius: 5px;
        }

        .deeplist-banner-dot:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        /* ===== 产品卡片轮播 ===== */
        .deeplist-product-carousel-wrapper {
            position: relative; 
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            width: 100%;
            padding: 0 8px; 
        }

        .deeplist-product-carousel {
            flex: 1;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding-bottom: 10px;
            display: flex;
            gap: 16px;
            overflow-x: auto;
            min-width: 0; 
        }

        .deeplist-product-carousel::-webkit-scrollbar {
            display: none;
        }

        /* 卡片链接：强制固定宽 */
        .deeplist-product-link {
            display: block !important;
            width: 200px !important; 
            flex: 0 0 200px !important; 
            text-decoration: none !important;
            color: inherit !important; 
            box-sizing: border-box !important; 
        }

        /* 固定卡片尺寸 */
        .deeplist-product-card {
            width: 200px !important; 
            flex: 0 0 200px !important; 
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            border: none; 
            box-sizing: border-box !important; 
        }

        /* 完整卡片：图片+标签+标题+简介 */
        .deeplist-product-card.deeplist-pltd {
            height: 230px !important;
        }
        /* 图片+标题+简介 */
        .deeplist-product-card.deeplist-ptd {
            height: 205px !important;
        }
        /* 图片+标签+标题 */
        .deeplist-product-card.deeplist-plt {
            height: 160px !important;
        }
        /* 图片+标题 */
        .deeplist-product-card.deeplist-pt {
            height: 130px !important;
        }
        /* 标题+标签+简介 */
        .deeplist-product-card.deeplist-tld {
            height: 130px !important;
        }
        /* 标题+简介 */
        .deeplist-product-card.deeplist-td {
            height: 105px !important;
        }

        /* hover 效果增强 */
        .deeplist-product-link:hover .deeplist-product-card {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            z-index: 10;
        }

        /* 固定图片容器尺寸 */
        .deeplist-product-card-image {
            width: 100% !important; 
            height: 100px !important; 
            overflow: hidden;
            box-sizing: border-box;
        }

        /* 图片自适应：按大边缩放，居中裁剪 */
        .deeplist-product-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: none;
        }

        /* 内容区：强制不撑宽卡片 */
        .deeplist-product-card-content {
            padding: 5px 10px;
            flex: 1;
            display: flex;
            flex-direction: column;
            text-align: left;
            overflow: hidden !important; 
            box-sizing: border-box !important; 
        }

        /* 标签：强制不整行+不撑宽 */
        .deeplist-product-tag {
            display: inline-block !important;
            width: auto !important;
            max-width: 100% !important; 
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-bottom: 8px;
            margin-right: auto;
            font-weight: 600;
            color: white !important;
            background-color: var(--secondary) !important;
            text-transform: uppercase;
            white-space: nowrap !important; 
            line-height: 1.2;
            box-sizing: border-box;
            float: left;
            clear: none;
            overflow: hidden !important; 
            text-overflow: ellipsis !important;
        }

        /* 标签颜色优先级强化 */
        .deeplist-product-tag.blue {
            background-color: var(--primary) !important;
        }

        .deeplist-product-tag.green {
            background-color: var(--success) !important;
        }

        .deeplist-product-tag:not(.blue):not(.green) {
            background-color: var(--secondary) !important;
        }

        /* 标题：单行截断+不撑宽 */
        .deeplist-product-card-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            white-space: nowrap !important; 
            overflow: hidden !important; 
            text-overflow: ellipsis !important; 
            line-height: 1.4;
            clear: left;
            box-sizing: border-box;
        }

        /* 简介：两行截断+不撑宽 */
        .deeplist-product-card-desc {
            font-size: 12px;
            color: var(--gray);
            line-height: 1.8;
            flex: 1;
            display: -webkit-box !important;
            -webkit-line-clamp: 3 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            box-sizing: border-box;
            margin-top: 10px;
        }

        /* 导航按钮：浮于卡片上 */
        .deeplist-carousel-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid #e9ecef;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 30;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            margin: 0;
            padding: 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        /* 左侧按钮定位 */
        .product-prev-btn {
            left: 0;
        }

        /* 右侧按钮定位 */
        .product-next-btn {
            right: 0;
        }

        .deeplist-carousel-nav-btn:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
        }

        .deeplist-carousel-nav-btn:focus {
            outline: none !important;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) !important; 
        }


        /* 修复 Bootstrap 可能的样式冲突 */
        /* .deeplist-product-carousel > * {
            flex: 0 0 200px !important;
            width: 200px !important;
        } */
		

        /* ===== 响应式设计 ===== */
        @media (max-width: 768px) {
            .deeplist-banner-container {
                height: 200px;
            }

            .deeplist-banner-content h2 {
                font-size: 20px;
            }

            .deeplist-product-card {
                flex: 0 0 150px;
            }

            .deeplist-tools-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 16px;
            }
        }

        @media (max-width: 576px) {
            .deeplist-banner-container {
                height: 150px;
                border-radius: 8px;
            }

            .deeplist-banner-content {
                padding: 16px;
            }

            .deeplist-banner-content h2 {
                font-size: 16px;
            }

            .deeplist-banner-content p {
                font-size: 12px;
            }

            .deeplist-carousel-nav-btn {
                display: none;
            }
            .deeplist-product-carousel-wrapper {
                padding: 0; 
            }

            .deeplist-tools-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }

            .deeplist-control-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
        }