index.wxss 847 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .collectionGoods {
  2. background-color: #fff;
  3. border-top: 1rpx solid #eee;
  4. }
  5. .collectionGoods .item {
  6. margin-left: 30rpx;
  7. padding-right: 30rpx;
  8. border-bottom: 1rpx solid #eee;
  9. height: 180rpx;
  10. }
  11. .collectionGoods .item .pictrue {
  12. width: 130rpx;
  13. height: 130rpx;
  14. }
  15. .collectionGoods .item .pictrue image {
  16. width: 100%;
  17. height: 100%;
  18. border-radius: 6rpx;
  19. }
  20. .collectionGoods .item .text {
  21. width: 535rpx;
  22. height: 130rpx;
  23. font-size: 28rpx;
  24. color: #282828;
  25. }
  26. .collectionGoods .item .text .name {
  27. width: 100%;
  28. }
  29. .collectionGoods .item .text .money {
  30. font-size: 26rpx;
  31. }
  32. .collectionGoods .item .text .delete {
  33. font-size: 26rpx;
  34. color: #282828;
  35. width: 144rpx;
  36. height: 46rpx;
  37. border: 1px solid #bbb;
  38. border-radius: 4rpx;
  39. text-align: center;
  40. line-height: 46rpx;
  41. }
  42. .noCommodity {
  43. background-color: #fff;
  44. }