/* Banner样式 */
.texturing-banner {
    height: 400px;
    background: url('/image/texturing/banner.png') no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.texturing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.banner-content p {
    font-size: 40px;
    opacity: 0.9;
}

/* 加弹设备部分 */
.texturing-equipment {
    padding: 80px 200px;
    background: #F8F8F8;
}

.equipment-list {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

/* 加弹设备图片交互效果 */
.equipment-item {
    position: relative;
    overflow: hidden;
}

.equipment-info {
    background: #fff;
    padding: 28px 32px;
}

.equipment-info h3 {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.equipment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

/* 设备信息样式 */
.equipment-info p {
    font-size: 16px;
    color: #666;
}

/* 加弹产品部分 */
.texturing-products {
    padding: 80px 200px;
    background: #F8F8F8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* 产品卡片样式 */
.product-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* 产品图片容器 */
.product-item .product-image {
    overflow: hidden;
}

/* 产品图片过渡效果 */
.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 添加悬停放大效果 */
.product-item:hover img {
    transform: scale(1.05);
}

/* 保持原有的上浮效果 */
.product-item:hover {
    transform: translateY(-10px);
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 16px;
    color: #666;
}

/* 响应式适配 */
@media (max-width: 1440px) {
    .texturing-equipment {
        padding: 60px 100px;
    }
    
    .equipment-item img {
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .equipment-item img {
        height: 400px;
    }
    
    .product-item img {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .texturing-equipment {
        padding: 40px 40px;
    }

    .equipment-list {
        flex-direction: column;
        gap: 20px;
    }

    .equipment-item img {
        height: 300px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .texturing-banner {
        height: 300px;
        margin-top: 60px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 24px;
    }

    .equipment-item img {
        height: 250px;
    }

    .equipment-info h3 {
        font-size: 20px;
    }

    .product-item img {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .texturing-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .texturing-equipment,
    .texturing-products {
        padding: 30px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .equipment-item img {
        height: 250px;
    }
}

/* 生产线图片容器 */
.production-image-container {
    overflow: hidden; /* 确保放大效果不会溢出 */
    border-radius: 20px; /* 如果有圆角的话 */
}

/* 生产线图片过渡效果 */
.production-image-container img {
    transition: transform 0.3s ease;
}

/* 添加悬停放大效果 */
.production-image-container:hover img {
    transform: scale(1.05);
} 