collect.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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: #f94b4b;
  56. line-height: 40rpx;
  57. width:200rpx;
  58. }
  59. .item .info .flex{
  60. display: flex;
  61. }
  62. .item .info .tag {
  63. display: flex;
  64. align-items: center;
  65. padding: 0 10rpx;
  66. border-radius: 3px;
  67. height: 37rpx;
  68. width: auto;
  69. color: #999;
  70. overflow: hidden;
  71. border: 1px solid #999;
  72. font-size: 25rpx;
  73. margin-left:170rpx;
  74. }
  75. .result-empty{
  76. width: 100%;
  77. height: 100%;
  78. padding-top: 300rpx;
  79. }
  80. .result-empty .icon{
  81. margin: 0 auto;
  82. display: block;
  83. width: 240rpx;
  84. height: 240rpx;
  85. }
  86. .result-empty .text{
  87. display: block;
  88. width: 100%;
  89. height: 40rpx;
  90. font-size: 28rpx;
  91. text-align: center;
  92. color: #999;
  93. }