main .product {
  width: 100%;
  height: auto;
  background: white;
}

main .product .banner {
  width: 100%;
  height: auto;
}

main .product .banner img {
  width: 100%;
  height: 400px;
}

main .product .foods {
  width: 100%;
  background: white;
  height: auto;
  box-sizing: border-box;
  padding: 80px;
}

main .product .foods .name1 {
  font-size: 24px;
  font-weight: bolder;
  text-align: center;
}

main .product .foods .name2 {
  font-size: 14px;
  text-align: center;
}

main .product .foods .food_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

main .product .foods .food_list .fl_item {
  width: 30%;
  height: auto;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  cursor: pointer;
}

main .product .foods .food_list .fl_item img {
  width: 100%;
  height: 320px;
}

main .product .foods .food_list .fl_item .desc {
  height: 80px;
  line-height: 80px;
  text-indent: 16px;
}
