kindSecondList.wxss 703 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* kindSecondList.wxss */
  2. page{
  3. background-color: #fff;
  4. }
  5. /* 列表 */
  6. .list{
  7. display: flex;
  8. justify-content: space-between;
  9. flex-wrap: wrap;
  10. }
  11. .goods-listType2{
  12. padding:30rpx;
  13. background:#fff;
  14. }
  15. .goods-listType2 .goods-list{
  16. width:332rpx;
  17. margin-bottom:26rpx;
  18. }
  19. .goods-listType2 .goods-img{
  20. width:332rpx;
  21. height:332rpx;
  22. background:#eeedf2;
  23. display: block;
  24. }
  25. .goods-listType2 .goods-summary{
  26. height:44rpx;
  27. line-height:44rpx;
  28. background:#f1f7fc;
  29. color:#666666;
  30. padding:0 10rpx;
  31. overflow: hidden;/*超出部分隐藏*/
  32. white-space: nowrap;/*不换行*/
  33. text-overflow:ellipsis;/*超出部分文字以...显示*/
  34. }
  35. .goods-listType2 .goods-title{
  36. margin:10rpx 0;
  37. }