IntegralGoodsList.wxss 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* components/IntegralGoodsList/IntegralGoodsList.wxss */
  2. .item {
  3. margin-top: 30rpx;
  4. width: 330rpx;
  5. background: #fff;
  6. padding: 20rpx;
  7. box-sizing: border-box;
  8. border-radius: 10rpx;
  9. }
  10. .item:nth-child(2n) {
  11. margin-right: 0;
  12. }
  13. .item .img {
  14. width: 290rpx;
  15. height: 290rpx;
  16. font-size: 0;
  17. }
  18. .item .img image {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .item .name {
  23. font-size: 28rpx;
  24. margin: 16rpx 0 10rpx;
  25. display: -webkit-box;
  26. -webkit-box-orient: vertical;
  27. -webkit-line-clamp: 1;
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. height: 56rpx;
  31. line-height: 56rpx;
  32. }
  33. .item .price {
  34. position: relative;
  35. padding-left: 34rpx;
  36. height: 28rpx;
  37. line-height: 28rpx;
  38. font-size: 24rpx;
  39. }
  40. .item .price .icon {
  41. position: absolute;
  42. left: 0;
  43. top: 0;
  44. width: 28rpx;
  45. height: 28rpx;
  46. }
  47. .item .red-word {
  48. color: #e43130;
  49. }
  50. .item .old-price {
  51. font-size: 24rpx;
  52. color: #999;
  53. text-decoration: line-through;
  54. font-family: arial;
  55. padding-top: 14rpx;
  56. }