@charset 'utf-8';

.product{padding:50px 0;}
     /* 板块容器 */
        .category-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 分类标题 */
        .category-title {
            font-size: 28px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 24px;
        }

        /* 分类标签栏 */
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 32px;
        }

        .category-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555555;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .category-tab:hover {
            color: #34b768;
        }
		
		.category-tab a{color:#000;}
		.category-tab.active a{color:#34b97b;}

        /* 标签前的小方块 */
        .tab-dot {
            width: 8px;
            height: 8px;
            background-color: #eeeeee;
            border-radius: 1px;
        }

        .category-tab:hover .tab-dot {
            background-color: #34b768;
        }

        /* 产品网格 */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        /* 产品卡片 */
        .product-card {
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        /* 产品图片 */
        .product-img {
            width: 100%;
            height: auto;
            border-radius: 2px;
            margin-bottom: 12px;
            display: block;
        }

        /* 产品名称 */
        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #333333;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        /* 报价按钮 */
        .product-quote {
            font-size: 13px;
            color: #34b768;
            text-decoration: none;
            font-weight: 500;
            transition: text-decoration 0.3s ease;
        }

        .product-quote:hover {
            text-decoration: underline;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .category-title {
                font-size: 24px;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .category-title {
                font-size: 20px;
            }
            .category-tabs {
                gap: 12px;
            }
            .category-tab {
                font-size: 13px;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
        }