.productContentImgList{
    display:grid;
    grid-template-columns:repeat(3,360px);
    justify-content: space-between;
    margin:20px 0;
}

.productContentImg{
    width:360px;
    height:240px;
    overflow:hidden;
} 
.productContentImg img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.productContent p{
    line-height:2;
    margin:20px 0;
    font-size:14px;
    color:#888;
}
.productContentImgList02{
    width:100%;
    display:flex;
}
.productContentBigImg{
   flex:1;
   height:500px;
   overflow:hidden;
}
.productContentBigImg img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.productContentSmallImgList{
    display:flex;
    flex-direction: column;
    margin-left:20px;
}
.productContentSmallImgList .productContentImg{
    margin-bottom:20px;
}