/* 产品展示区域 */
.product-showcase {
    padding: 60px 0;
    background: #ffffff;
}

.product-showcase .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.product-showcase .section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 分类标签 */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.category-tab {
    padding: 12px 24px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: #f16424;
    color: #f16424;
}

.category-tab.active {
    background: #f16424;
    border-color: #f16424;
    color: #fff;
}
.category-h2{
    all: unset;
    display:inline;
}

/* 产品列表 */
.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-showcase .products-container .product-item {
    width: calc(25% - 15px);
    min-width: 250px;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 49px);
    background-color: rgba(241, 100, 36, 0);
    z-index: 1;
    transition: background-color 0.3s ease;
    pointer-events: none;
}

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

.product-card:hover::before {
    background-color: rgba(241, 100, 36, 0.7);
}

.product-content {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 3;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.product-card:hover .product-content {
    background-color: transparent;
}

.product-title-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.product-card:hover .product-title-text {
    color: #fff;
}

.learn-more {
    color: #f16424;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card:hover .learn-more {
    color: #fff;
}

.learn-more:hover {
    text-decoration: underline;
}

.product-bg {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.product-bg img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.product-footer {
    padding: 15px;
    background-color: #f5f5f5;
    text-align: center;
    position: relative;
    z-index: 3;
}

.more-products-link {
    color: #f16424;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.product-card:hover .more-products-link {
    color: #f16424;
}

.more-products-link:hover {
    text-decoration: underline;
}

.product-bg .sample-image {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: right 0.3s ease;
}

.product-card:hover .product-bg .sample-image {
    right: calc(50% - 100px);
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .product-showcase .products-container .product-item {
        width: calc(33.33% - 13.33px);
        min-width: 250px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 992px) {
    .product-showcase .products-container .product-item {
        width: calc(50% - 10px) !important;
        min-width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        flex: 0 0 calc(50% - 10px);
    }
    
    .product-showcase .section-title {
        font-size: 28px;
    }
}

@media (min-width: 600px) and (max-width: 992px) {
    .product-showcase .products-container .product-item {
        width: calc(50% - 10px) !important;
        min-width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        float: none !important;
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .product-showcase .products-container .product-item {
        width: calc(50% - 10px) !important;
        min-width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        float: none !important;
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .product-showcase .products-container {
        padding: 0 15%;
    }
    
    .product-showcase .products-container .product-item {
        width: 100% !important;
        min-width: 280px !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        flex: none;
    }
    
    .product-showcase .section-title {
        font-size: 24px;
    }
    
    .category-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* 重置展会区域标题样式 */
.client-title {
    all: unset;
    display: inline;
}

.client-content {
    all: unset;
    display: inline;
}

