index.wxss 918 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. page {
  2. background: #f6f6f6;
  3. }
  4. .top {
  5. background: #ffffff;
  6. }
  7. .list {
  8. margin: 30rpx;
  9. padding: 30rpx;
  10. background: #ffffff;
  11. border-radius: 20rpx;
  12. }
  13. .list .list-box {
  14. display: flex;
  15. }
  16. .list .list-box .list-image {
  17. width: 240rpx;
  18. height: 180rpx;
  19. margin-right: 20rpx;
  20. }
  21. .list .list-box .meal {
  22. width: 58%;
  23. }
  24. .list .list-box .meal .meal-name {
  25. height: 90rpx;
  26. width: 100%;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. display: -webkit-box;
  30. -webkit-line-clamp: 2;
  31. -webkit-box-orient: vertical;
  32. }
  33. .list .list-box .meal .meal-price {
  34. color: red;
  35. font-size: 28rpx;
  36. margin-top: 10rpx;
  37. }
  38. .list .list-box .meal .meal-time {
  39. font-size: 30rpx;
  40. margin-top: 10rpx;
  41. }
  42. .list .operation {
  43. display: flex;
  44. justify-content: flex-end;
  45. margin-top: 20rpx;
  46. }
  47. .list .operation .operation-delete {
  48. border-radius: 20rpx;
  49. border: 1rpx solid #BBBBBB;
  50. padding: 20rpx 50rpx;
  51. margin-left: 20rpx;
  52. }