.product_center_page {
    color: #ca2e2f;
}

.product_category_banner_box {
    width: 100%;
    height: 70vh;
    background: url(../imgs/product_bj1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}


.product_breadcrumb_box {
    position: absolute;
    bottom: 20%;
    left: 10%;
}

.product_category_show_box {
    padding: 3rem 5rem;
}

.product_category_show_list {
    width: 73%;
}

.product_list_show_box {
    display: flex;
    flex-flow: wrap;
}

.product_show_box {
    width: 22%;
    margin: 0 1.5%;
    height: 14rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.product_show_box_top {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product_show_box_top img {
    width: 80%;
    transition: all 1s;
}

.product_show_box:hover img {
    width: 100%;
}

.product_show_box_bottom {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #f7f7f7;
    transition: all 1s;
}

.product_title_bottom {
    font-weight: bold;
    font-size: 0.8rem;
    color: #000;
    transition: all 1s;
    width: 80%;
}

.product_eye_bottom {
    width: 25px;
    height: 25px;
    background: url(../imgs/eye_gray.png) no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 1s;
}

.product_show_box:hover .product_show_box_bottom {
    background-color: #ca2e2f;
}

.product_show_box:hover .product_title_bottom {
    color: #fff;
}

.product_show_box:hover .product_eye_bottom {
    background: url(../imgs/eye_white.png) no-repeat;
    background-size: contain;
    background-position: center;
}















@media (max-width: 899px) {
    .product_category_body_box {
        margin-bottom: 6rem;
    }

    .product_category_show_box {
        padding: 3rem 3rem;
    }

    .product_category_show_list {
        width: 65%;
    }

    .product_show_box {
        width: 30%;
    }

}

@media (max-width: 600px) {
    .product_category_show_box {
        padding: 3rem 2rem;
    }

    .product_category_show_list {
        width: 55%;
    }

    .product_show_box {
        width: 45%;
    }

}

@media (max-width: 500px) {
    .product_category_show_box {
        padding: 3rem 1rem;
    }

    .product_category_show_list {
        width: 55%;
    }

    .product_show_box {
        width: 45%;
    }

}

@media (max-width: 400px) {
    .product_category_show_list {
        width: 50%;
    }

    .product_show_box {
        width: 90%;
    }

}