.elementor-2650 .elementor-element.elementor-element-06214bf{--display:flex;}.elementor-2650 .elementor-element.elementor-element-a3cb8ad ul.hfe-breadcrumbs li{margin-right:10px;}.elementor-2650 .elementor-element.elementor-element-7c784830{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-473e12a9 */.content-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: auto;
            box-sizing: border-box;
        }

        /* 通用样式 */
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* 去除a标签默认样式 */
        a {
            text-decoration: none;
            color: inherit;
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }

        a:focus {
            outline: none;
        }
   
        /* 筛选器容器样式 */
        .filters {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid rgb(239, 239, 239);
            width: 100%;
            box-sizing: border-box;
        }

        /* 筛选器头部样式 */
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-bottom: 1px solid rgb(239, 239, 239);
            height: 50px;
            box-sizing: border-box;
        }

        .filter-header h3 {
            margin: 0;
            font-size: 1rem;
            line-height: 1;
            font-weight: 700;
            display: flex;
            align-items: center;
            height: 100%;
        }

        /* 筛选组样式 */
        .filter-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            padding: 10px 15px;
            gap: 8px;
            box-sizing: border-box;
            min-height: 40px;
        }

        /* 筛选标题样式 */
        .filter-group h3 {
            font-size: 16px;
            line-height: 1;
            font-weight: 700;
            margin: 0;
            min-width: 70px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            height: 28px;
        }

        /* 筛选项容器 */
        .filter-group>div {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            flex: 1;
            min-width: 0;
            align-items: center;
        }

        /* 单个筛选项样式 */
        .filter-item {
            display: inline-flex;
            flex-shrink: 0;
            align-items: center;
        }

        /* 复选框标签样式 */
        .filter-item label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3px 10px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            height: 34px;
            line-height: 1;
        }

        /* 悬停，选中状态样式 */
        .filter-item input:checked+label,
        .filter-item input:hover+label {
            background: rgb(29, 191, 193);
            color: white;
            font-weight: 600;
        }
 
        /* 产品展示容器 */
        .products-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px 0;
        }

        /* 空状态样式 */
        .empty-state {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            border-radius: 4px;
            margin: 40px auto;
        }

        .empty-state i {
            font-size: 48px;
            color: rgb(29, 191, 193);
            margin-bottom: 20px;
            display: block;
        }

        .empty-state p {
            color: #666;
            font-size: 16px;
            margin: 0;
            line-height: 1.5;
        }

        .empty-state .sub-text {
            color: #999;
            font-size: 14px;
            margin-top: 10px;
        }

        /* 产品卡片样式 */
        .product-card {
            flex: 0 0 calc(25% - 15px);
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        /* 产品图片样式 */
        .product-image {
            width: 100%;
            height: 300px !important;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        /* 悬停效果 */
        .product-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-card:hover .product-view-details {
            background: rgb(29, 191, 193);
            color: #fff;
        }

        /* 产品信息区域 */
        .product-info {}

        /* 产品标题样式 */
        .product-title {
            margin: 0;
            color: #333;
            font-size: 14px !important;
            text-align: center;
            height: 40px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            padding: 0 10px;
            line-height: 1.4;
        }

        /* 标签容器样式 */
        .product-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .product-view-details {
            padding: 8px;
            font-weight: 400;
            text-align: center;
            color: rgb(29, 191, 193);
            transition: all 0.3s ease;
        }

        /* 单个标签样式 */
        .tag {
            background: #f0f0f0;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
 
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 20px;
            align-items: center;
        }

        /* 分页项样式 */
        .page-item {
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        /* 当前页样式 */
        .page-item:hover,
        .page-item.active {
            background: rgb(29, 191, 193);
            color: white;
        }

        /* 上一页下一页按钮样式 */
        .page-item.prev,
        .page-item.next {
            background: #f5f5f5;
            color: #666;
        }

        .page-item.prev:hover,
        .page-item.next:hover {
            background: rgb(29, 191, 193);
            color: white;
        }

        .page-item.disabled {
            background: #f5f5f5;
            color: #ccc;
            cursor: not-allowed;
        }

        .page-item.disabled:hover {
            background: #f5f5f5;
            color: #ccc;
        }
   
        .reset-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: #f5f5f5;
            color: #666;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
            height: 32px;
            line-height: 1;
        }

        .reset-btn:hover {
            background: #fff;
            border-color: rgb(29, 191, 193);
            color: rgb(29, 191, 193);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .reset-btn:active {
            transform: scale(0.98);
        }

        .reset-btn i {
            font-size: 12px;
        }
  
        /* 移动端适配 */
        @media (max-width: 1200px) {
            .product-card {
                flex: 0 0 calc(33.333% - 14px);
            }

            .product-title {
                font-size: 15px !important;
            }
        }

        @media (max-width: 992px) {
            .filter-group {
                padding: 8px 12px;
            }

            .filter-group h3 {
                min-width: 65px;
                font-size: 15px;
            }

            .filter-item label {
                padding: 2px 8px;
                font-size: 14px;
                height: 32px;
            }

            .product-title {
                font-size: 14px !important;
                height: 38px;
            }

            .reset-btn {
                padding: 4px 12px;
                font-size: 14px;
                height: 30px;
            }
        }

        @media (max-width: 768px) {
            .product-card {
                flex: 0 0 calc(50% - 10px);
            }

            .filter-group {
                flex-direction: column;
                align-items: flex-start;
                padding: 8px 12px;
                gap: 6px;
            }

            .filter-group h3 {
                margin-bottom: 4px;
                font-size: 15px;
                height: 26px;
            }

            .filter-group>div {
                width: 100%;
            }

            .filter-item label {
                font-size: 14px;
                height: 30px;
            }

            .product-title {
                font-size: 14px !important;
                height: 36px;
            }

            .reset-btn {
                padding: 4px 12px;
                font-size: 14px;
                height: 30px;
            }

            .empty-state p {
                font-size: 15px;
            }

            .empty-state .sub-text {
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .content-wrapper {
                padding: 0 10px;
            }

            .filter-header {
                padding: 8px 10px;
                height: 40px;
            }

            .filter-header h3 {
                font-size: 15px;
            }

            .filter-group {
                padding: 6px 10px;
            }

            .filter-group h3 {
                min-width: 60px;
                font-size: 14px;
                height: 24px;
            }

            .filter-item label {
                padding: 2px 6px;
                font-size: 13px;
                height: 28px;
            }

            .product-title {
                font-size: 13px !important;
                height: 34px;
            }

            .reset-btn {
                font-size: 13px;
                height: 28px;
            }

            .empty-state p {
                font-size: 14px;
            }

            .empty-state .sub-text {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .product-card {
                flex: 0 0 100%;
            }

            .filter-header {
                padding: 6px 8px;
            }

            .filter-header h3 {
                font-size: 14px;
            }

            .filter-group {
                padding: 5px 8px;
            }

            .filter-group h3 {
                font-size: 14px;
                height: 22px;
            }

            .filter-item label {
                padding: 2px 5px;
                font-size: 12px;
                height: 26px;
            }

            .product-title {
                font-size: 13px !important;
                height: 32px;
            }

            .reset-btn {
                padding: 3px 10px;
                font-size: 12px;
                height: 26px;
            }

            .empty-state p {
                font-size: 13px;
            }

            .empty-state .sub-text {
                font-size: 12px;
            }

            .page-item {
                padding: 6px 10px;
                font-size: 13px;
            }
        }
    
        /* 加载状态样式 */
        .loading-state {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            border-radius: 4px;
            margin: 20px auto;
        }

        .loading-state .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid rgb(29, 191, 193);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }

        .loading-state p {
            color: #666;
            font-size: 14px;
            margin: 0;
            line-height: 1.5;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }/* End custom CSS */