index.wxss 503 B

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