index.less 711 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. page {
  2. background: #f6f6f6;
  3. .box {
  4. background: #fff;
  5. border-radius: 20rpx;
  6. margin: 20rpx;
  7. padding: 20rpx;
  8. .name {
  9. display: flex;
  10. justify-content: space-between;
  11. }
  12. .details {
  13. display: flex;
  14. margin-top: 20rpx;
  15. .image {
  16. width: 150rpx;
  17. height: 150rpx;
  18. }
  19. .txt {
  20. margin-left: 20rpx;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-between;
  24. .totalPrice {
  25. color: red;
  26. }
  27. }
  28. }
  29. }
  30. }