.con {
    padding-top: 60px;
    padding-bottom: 100px;
}

.productsTab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 130px;
}

.productsTab li {
    cursor: pointer;
    width: auto;
    line-height: 60px;
    padding: 0px 50px;
    border-radius: 100px;
    border: 1px solid #000000;
    margin: 0px 14px;
}

.productsTab li.active {
    background: #004C96;
    border: 1px solid #004C96;
    color: #fff;
}

.productsItem {
    display: none;
}

.productsItem ul {
    display: flex;
    flex-wrap: wrap;
}

.productsItem li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

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

.productsItem a {
    display: block;
    padding: 32px 40px 88px 40px;
    position: relative;
}

.productsItem h3 {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(245, 245, 245, 1);
    margin-bottom: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productImg {
    display: flex;
    justify-content: flex-end;
}

.productImg img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productsIcon {
    position: absolute;
    bottom: 40px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: url(../images/productsIcon1.png)no-repeat center center;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productsItem li:hover {
    box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productsItem li:hover .productsIcon {
    background: url(../images/productsIcon3.png)no-repeat center center;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 适配 */
@media (max-width: 1680px) {
    .con {
        padding: 50px 4% 60px 4%;
    }

    .productsTab li {
        line-height: 55px;
        padding: 0px 36px;
    }

    .productsTab {
        margin-bottom: 50px;
    }

    .productsItem h3 {
        padding-bottom: 14px;
    }

    .productsItem a {
        padding: 28px 30px 60px 30px;
    }

    .productsIcon {
        width: 40px;
        height: 40px;
        bottom: 26px;
    }

    .productsItem li {
        margin-bottom: 44px;
    }
}

@media (max-width: 1440px) {
    .productImg img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 1280px) {
    .con {
        padding: 40px 4% 50px 4%;
    }

    .productsTab li {
        font-size: 14px;
        line-height: 48px;
        padding: 0px 30px;
    }

    .productsTab {
        margin-bottom: 35px;
    }

    .productImg img {
        width: 180px;
        height: 180px;
    }

    .productsItem a {
        padding: 24px 24px 40px 24px;
    }

    .productsIcon {
        width: 30px;
        height: 30px;
    }

    .productsItem li {
        margin-bottom: 26px;
    }
}

@media (max-width: 992px) {
    .con {
        padding: 30px 4%;
    }

    .productsTab li {
        line-height: 42px;
        padding: 0px 22px;
        margin: 0px 8px;
    }

    .productsItem ul {
        justify-content: space-between;
    }

    .productsItem li {
        width: 48%;
        margin: 0px 0px 20px 0px;
    }
}

@media (max-width: 767px) {

    .productsTab,
    .productsTab li {
        flex: 0 0 auto;
    }

    .productsTab {
        overflow-x: auto;
        justify-content: unset;
    }

    .productsItem li {
        width: 100%;
    }

    .productImg img {
        width: 150px;
        height: 150px;
    }

    .productsItem a {
        padding-bottom: 24px;
    }
}