productList.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* 物料列表 */
  2. .product-list {
  3. display: flex;
  4. flex-wrap: wrap;
  5. background: none !important;
  6. .item {
  7. width: 336rpx;
  8. border-radius: 16rpx;
  9. overflow: hidden;
  10. border: 1rpx solid #DDDDDD;
  11. margin-bottom: 20rpx;
  12. .cover {
  13. padding: 0 !important;
  14. margin: 0 !important;
  15. }
  16. .details {
  17. width: 100%;
  18. background-color: #fff;
  19. margin-top: -8rpx;
  20. padding: 20rpx;
  21. box-sizing: border-box;
  22. border-bottom: 1rpx solid #eeeeee;
  23. font-family: PingFang SC-Regular, PingFang SC;
  24. .title {
  25. font-size: 24rpx;
  26. color: #333333;
  27. }
  28. .display-data {
  29. display: flex;
  30. justify-content: space-around;
  31. height: 28rpx;
  32. line-height: 28rpx;
  33. margin-top: 10rpx;
  34. font-size: 20rpx;
  35. color: #999999;
  36. text {
  37. margin-right: 6rpx;
  38. font-size: 28rpx;
  39. }
  40. }
  41. }
  42. .share-button {
  43. height: 60rpx;
  44. font-size: 24rpx;
  45. color: #3874F6;
  46. }
  47. }
  48. .item:nth-of-type(2n) {
  49. margin-left: 10rpx;
  50. }
  51. }