collect.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. page{
  2. background: #f4f4f4;
  3. min-height: 100%;
  4. }
  5. .container{
  6. background: #f4f4f4;
  7. min-height: 100%;
  8. }
  9. .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 .price{
  47. margin-top: 8rpx;
  48. font-size: 28rpx;
  49. color: #f94b4b;
  50. line-height: 40rpx;
  51. width:200rpx;
  52. }
  53. .item .info .flex{
  54. display: flex;
  55. }
  56. .item .info .tag {
  57. display: flex;
  58. align-items: center;
  59. padding: 0 10rpx;
  60. border-radius: 3px;
  61. height: 37rpx;
  62. width: auto;
  63. color: #999;
  64. overflow: hidden;
  65. border: 1px solid #999;
  66. font-size: 25rpx;
  67. margin-left:170rpx;
  68. }
  69. .result-empty{
  70. width: 100%;
  71. height: 100%;
  72. padding-top: 300rpx;
  73. }
  74. .result-empty .icon{
  75. margin: 0 auto;
  76. display: block;
  77. width: 240rpx;
  78. height: 240rpx;
  79. }
  80. .result-empty .text{
  81. display: block;
  82. width: 100%;
  83. height: 40rpx;
  84. font-size: 28rpx;
  85. text-align: center;
  86. color: #999;
  87. }