.product {
    background: #b1b1b124;
    padding: 0.8rem 0rem;
}

.productTab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.productTab li {
    cursor: pointer;
    width: 1.5rem;
    line-height: 0.4rem;
    border: 1px solid #26446E;
    color: #333;
    margin: 0rem 0.1rem;
    text-align: center;
}

.productTab .active,
.productTab li:hover {
    background: #26446E;
    color: #fff;
}

/* 列表 */
.productUl {
    display: flex;
    flex-wrap: wrap;
}

.productUl li {
    width: 32%;
    margin-right: 2%;
    background: #fff;
    margin-bottom: 0.3rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productUl li:nth-child(3n) {
    margin-right: 0rem;
}

.productUl a {
    display: block;
    width: 100%;
}

.productUl .imgBox {
    width: 100%;
    padding-top: 64%;
    overflow: hidden;
    position: relative;
}

.productUl img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productUl li:hover img {
    transform: scale(1.05);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productUl .txt {
    text-align: center;
    padding: 0.14rem 0.18rem;
    color: #333;
}

.productUl li:hover {
    box-shadow: 0px 4px 20px rgba(40, 69, 111, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubPage {
    margin-top: 0.3rem;
}


@media (max-width: 800px) {
    .productTab li {
        width: 1.8rem;
        line-height: 0.65rem;
        margin: 0rem 0.15rem;
    }

    .productTab {
        margin-bottom: 0.7rem;
    }

    .productUl li {
        width: 100%;
        margin-right: 0rem;
        margin-bottom: 0.45rem;
    }

    .productUl .txt {
        padding: 0.24rem 0.28rem;
    }
}