.shopItem{
    display: flex;
}
.shopItem .thum{
}
.shopItem .thum .img{
    max-width:150px;
}
.shopItem .thum{
    margin-right:10px;
}
.shopItem .title{
    font-weight:bold;
}
.shopItem .title span{
    font-size:0.8em;
    font-weight:normal;
}
.shopItem .info{
    margin-top:5px;
    font-size:0.9em;
}
.shopItem .link{
    margin-top:5px;
}
@media (max-width:560px) {
    .shopItem .thum .img{
        max-width:100%
    }
    .shopItem .title{
        margin-top:5px;
    }
    .shopItem{
        flex-wrap: wrap;
    }
    .shopItem > div{
        width:100%;
    }

}