.container{
    background: #F3F3F3;
}
.product_part{
    width: 75%;
    margin: 0 auto;
    padding: 50px 0;
}
.product_part_bottom{
    box-sizing: border-box;
    width: 100%;
    padding:50px;
}
.product_part_bottom>p:nth-child(1){
    color: #378A37;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 20px;
}
.product_part_bottom>p:nth-child(2){
    background: #378A37;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 40px;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 30px;
}
.product_part_bottom>img:nth-child(3){
    display: block;
    width: 80%;
    margin: 0 auto;
}
.product_part_top{
    box-sizing: border-box;
    width: 100%;
    padding: 0 50px;
    border-bottom: 1px solid #378A37;
}
.product_part_top>p:first-child{
    color: #378A37;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 50px;
}
.plist{
    box-sizing: border-box;
    padding: 0 50px;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}
.plist_item{
    width: 28%;
    margin-right: 8%;
    position: relative;
    height: 450px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    box-sizing: border-box;
    border-radius: 20px;
    margin-bottom: 30px;
    cursor: pointer;
}
.plist_item:nth-child(3n+3){
    margin-right: 0;
}
.plist_item>p:nth-child(1){
    width: 10%;
    top:0;
    left: 45%;
    position: absolute;
    background: #378A37;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
}
.plist_item>p:nth-child(2){
    width: 100%;
    position: absolute;
    top:60px;
    left: 0;
    text-align: center;
    font-size: 20px;
    color: #555555;
}
.plist_item>img:nth-child(3){
    width: 100%;
    position: absolute;
    top:120px;
    left: 0;
    height: 300px;
    object-fit: cover;
}