金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.2 KiB

  1. #mealList {
  2. .item {
  3. display: flex;
  4. /*align-items: center;*/
  5. padding: 10px 15px;
  6. margin-bottom: 5px;
  7. background: #ffffff;
  8. overflow: hidden;
  9. .left {
  10. width: 85px;
  11. image {
  12. display: block;
  13. width: 100%;
  14. }
  15. .img-box {
  16. display: flex;
  17. align-items: center;
  18. margin-top: 10px;
  19. box-sizing: border-box;
  20. justify-content: space-between;
  21. image {
  22. width: 47%;
  23. }
  24. }
  25. }
  26. .right {
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: space-between;
  30. font-size: 14px;
  31. margin-left: 12px;
  32. flex: 1;
  33. .price-box {
  34. .old-price {
  35. font-size: 12px;
  36. color: #9B9B9B;
  37. text-decoration: line-through;
  38. }
  39. .meal-price {
  40. display: flex;
  41. align-items: flex-end;
  42. .price {
  43. flex: 1;
  44. color: #FF2741;
  45. span {
  46. color: #4A4A4A;
  47. }
  48. }
  49. .btn {
  50. color: #ffffff;
  51. background: #EA4448;
  52. padding: 5px 10px;
  53. border-radius: 4px;
  54. i {
  55. font-size: 12px;
  56. }
  57. }
  58. }
  59. }
  60. }
  61. }
  62. }