.product-wrap {
    width: 95%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 auto;
    padding: 15px 0;
}
.product-category {
    width: 240px;
}
.product-content {
    flex: 1;
}
.product-content .titlebar0 {
    padding: 0 0 15px 0;
}

@media (max-width: 768px) {
    .product-wrap {
        gap: unset;
    }
    .product-category {
        display: none;
    }
}


.product-category ul li a {
    color: #999;
    font-size: 1rem;
}
.product-category .layer1child {
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: solid 1px #c9c9c9;
}
.product-category .layer1child > a {
    padding-left: 15px;
    font-size: 1.1rem;
    background: url("../images/icon-pro-1.png") no-repeat -10px -2px;
}
.product-category .layer1child.active > a {
    color: #ff0000;
}
.product-category ul.layer1ul {
    margin-left: 20px;
}
.product-category ul.layer1ul li {
    background: url('../images/icon-pro-2.png') no-repeat 0 center;
    padding-left: 10px;
}
.product-category ul.layer1ul > li.active > a {
    color: #ff0000;
}




.product-listx ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-listx ul li {
    width:calc(33.33% - 20px);
    -webkit-transition:0.5s;transition:0.5s;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-listx ul li .img {overflow: hidden; /* display: inherit; */ justify-content: center; /* 水平居中 */ align-items: center; /* 垂直居中 */ }
.product-listx ul li .img img {display: block; width: 100%; height: 100%; -webkit-transition:0.5s; object-fit: cover; transition: transform 0.3s ease; }
/* .product-listx ul li:hover .img img {-webkit-transform:scale(1.1);transform:scale(1.1);} */
.product-listx ul li .txt {display: flex;align-items: center;justify-content: center;-webkit-transition:0.5s;transition:0.5s;}
.product-listx ul li .txt span {font-size: 18px; line-height: 18px; color: #333;border-top: 1px solid rgba(255, 255, 255, 0.7);border-bottom: 1px solid rgba(255, 255, 255, 0.7);padding: 15px 0;width: 80%;text-align: center;}
.product-listx ul li:hover { box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);-webkit-transform: translate(0,-5px);transform: translate(0,-5px); }
.product-listx ul li .txt .title { padding:0 10px; }
.product-listx ul li:hover a { text-decoration: none }



@media (max-width: 768px) {
    .product-listx ul {
        gap: 0;
    }
    .product-listx ul li {
        width: 100%;    /* calc(50% - 15px); */
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

