.product-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
  margin: 0 auto;
  box-sizing: border-box;
}
.product-grid.col2{
  grid-template-columns: repeat(2, 1fr);
}
.product-grid.col3{
  grid-template-columns: repeat(3, 1fr);
}
.product-grid.col4{
  grid-template-columns: repeat(4, 1fr);
}
.product-grid.col5{
  grid-template-columns: repeat(5, 1fr);
}
.product-grid.col6{
  grid-template-columns: repeat(6, 1fr);
}
.only_lr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ebebeb;
}
.container_L {
    width: 65%;
    padding-left: 5%;
}
.container_R {
    width: auto;
    flex: 1;
}
.product-card{
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product-title{
  font-size: 1.05rem;
  margin: 0 0 8px 0;
  color: #222;
}
.table_wrap table{
  background: var（--moclor）;
}
.table_wrap td{
  border: 1px #fff solid;
  text-align: center;
}
.style2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: #f2f2f2;
}
.style2.reverse {
    flex-direction: row-reverse;
}
.style2 .right_p {
    width: 35%;
}
.style2 .left_p {
    width: 65%;
    padding: 0 4%;
    align-self: center;
}
.style2 .right_p img {
    width: 100%;
}
.wrap {
    overflow-x: scroll;
}
@media only screen and (max-width: 768px){
  .product-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 12px 0;
  }
  table{

}
.style2 .left_p {
        width: 100%;
        padding: 20px;
        margin-bottom: 15px;
    }  
    .style2 .right_p {
        width: 100%;
    }
}