.crumbsBox {
    background: #b1b1b124;
}

.productDetail {
    padding: 0.8rem 0rem;
}

.productDetail .title {
    text-align: center;
    color: #333;
    font-weight: bolder;
    margin-bottom: 0.4rem;
}

/*  */
.recommend {
    background: #b1b1b124;
    padding: 0.5rem 0rem;
}

.recommend h3 {
    position: relative;
    padding-bottom: 0.16rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.recommend h3::after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    display: block;
    width: 0.6rem;
    height: 1px;
    background: #28456F;
}

.recommendUl {
    display: flex;
    justify-content: space-between;
}

.recommendUl li {
    width: 32%;
    background: #fff;
}

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

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

.recommendUl 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;
}

.recommendUl 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;
}

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

.recommendUl 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;
}


@media (max-width: 800px) {
    .productDetail .title {
        margin-bottom: 0.6rem;
    }

    .recommendUl {
        flex-wrap: wrap;
    }

    .recommendUl li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

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

    .recommend h3::after {
        height: 2px;
    }
}