.link-btn{
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    margin: 16px 0;
}
.link-btn:hover{
    text-decoration: none;
}
.product-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product-list:last-child{
    margin-bottom: 48px;
}
.product-item{
    width: 33.33%;
    padding: 15px;
    box-sizing: border-box;
    display: block;
    cursor: pointer;
    text-decoration: none;
}
.product-item-img-box{
    width: 100%;
    position: relative;
}
.product-item-img-box img{
    width: 100%;
    vertical-align: middle;
    border-style: none;
}
.product-search{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    color: #fff;
    text-align: center;
    line-height: 35px;
    font-size: 22px;
    display: none;
}
.product-item-desc{
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    text-decoration: none;
}
.product-item:hover .product-search{
    display: block;
}
.product-item:hover .product-item-desc{
    color: #76b72b;
    text-decoration: underline;
    text-decoration-color: #76b72b;
}
.product-item:last-child{
    margin-right: auto;
}
@media screen and (max-width: 768px){
    .product-item{
        width: 50%;
    }
    .link-btn{
        font-size: 16px;
    }
}
@media screen and (max-width: 550px){
    .product-item{
        width: 100%;
    }
    .product-item-desc{
        font-size: 16px;
    }
}<!--0.0002291202545166-->