posted.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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: 160rpx;
  58. }
  59. .item .info .flex {
  60. display: flex;
  61. }
  62. .item .info .time {
  63. display: flex;
  64. align-items: center;
  65. padding: 0 10rpx;
  66. width: auto;
  67. color: #999;
  68. overflow: hidden;
  69. font-size: 26rpx;
  70. line-height: 55rpx;
  71. }
  72. .result-empty {
  73. width: 100%;
  74. height: 100%;
  75. padding-top: 300rpx;
  76. }
  77. .result-empty .icon {
  78. margin: 0 auto;
  79. display: block;
  80. width: 240rpx;
  81. height: 240rpx;
  82. }
  83. .result-empty .text {
  84. display: block;
  85. width: 100%;
  86. height: 40rpx;
  87. font-size: 28rpx;
  88. text-align: center;
  89. color: #999;
  90. }