collect.wxss 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. page{
  2. background: #f4f4f4;
  3. min-height: 100%;
  4. }
  5. .container{
  6. background: #f4f4f4;
  7. min-height: 100%;
  8. }
  9. .collect-list{
  10. width: 100%;
  11. height: auto;
  12. overflow: hidden;
  13. background: #fff;
  14. padding-left: 30rpx;
  15. border-top: 1px solid #e1e1e1;
  16. }
  17. .item{
  18. height: 212rpx;
  19. width: 720rpx;
  20. background: #fff;
  21. padding: 30rpx 30rpx 30rpx 0;
  22. border-bottom: 1px solid #e1e1e1;
  23. }
  24. .item:last-child{
  25. border-bottom: 1px solid #fff;
  26. }
  27. .item .img{
  28. float: left;
  29. width: 150rpx;
  30. height: 150rpx;
  31. }
  32. .item .info{
  33. float: right;
  34. width: 540rpx;
  35. height: 150rpx;
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. padding-left: 20rpx;
  40. }
  41. .item .info .name{
  42. font-size: 28rpx;
  43. color: #333;
  44. line-height: 40rpx;
  45. }
  46. .item .info .subtitle{
  47. margin-top: 8rpx;
  48. font-size: 24rpx;
  49. color: #888;
  50. line-height: 40rpx;
  51. }
  52. .item .info .price{
  53. margin-top: 8rpx;
  54. font-size: 28rpx;
  55. color: #333;
  56. line-height: 40rpx;
  57. }