.products {
    padding: 60px 0px 70px 0px;
    display: flex;
    flex-wrap: wrap;
}

.products li {
    width: 33.3%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.products a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px;
    position: relative;
}

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

.imgBox img {
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
}

.btmP {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 26px 24px 22px 24px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btmP i {
    display: block;
    width: 26px;
    height: 12px;
    background: url(../images/arrow1.png)no-repeat center center;
    background-size: 100% 100%;
}

.btmP h3 {
    max-width: 66%;
}

.blueBox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #1751a2dc;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: scale(1.3);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.blueBox p {
    /*font-family: "PlayfairDisplay-Bold";*/
    font-family: "Montserrat-Regular";
    padding-bottom: 26px;
    position: relative;
    color: #fff;
    margin-bottom: 150px;
    padding-top: 50px;
}

.blueBox p::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
}

.blueBox i {
    display: block;
    width: 22px;
    height: 22px;
    background: url(../images/cpIcon.png)no-repeat center center;
    background-size: 100% 100%;
    margin: 0px auto;
}

.products li:hover .blueBox {
    opacity: 1;
    transform: scale(1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

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




/* 适配 */
@media (max-width: 1680px) {}

@media (max-width: 1440px) {
    .products a {
        padding: 20px;
    }
}

@media (max-width: 1280px) {
    .products a {
        padding: 16px;
    }

    .btmP {
        padding: 22px 16px 18px 16px;
    }

    .blueBox p {
        padding-top: 0px;
        margin-bottom: 70px;
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .products li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .products li {
        width: 48%;
        margin-bottom: 30px;
    }

    .products li:nth-child(odd) {
        margin-right: 4%;
    }

    .products a {
        padding: 0px;
    }

    .products {
        padding: 40px 0px 10px 0px;
    }

    .blueBox {
        display: none;
    }

    .btmP h3 {
        font-size: 14px;
        max-width: unset;
    }

    .btmP i {
        display: none;
    }

    .btmP {
        padding: 18px 10px 8px 10px;
    }
}