collect.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. page {
  2. background: #f4f4f4;
  3. min-height: 100%;
  4. }
  5. .container {
  6. background: #f4f4f4;
  7. min-height: 100%;
  8. width: 100%;
  9. height: auto;
  10. overflow: hidden;
  11. }
  12. .no-collect {
  13. width: 100%;
  14. height: auto;
  15. margin: 0 auto;
  16. }
  17. .no-collect .c {
  18. width: 100%;
  19. height: auto;
  20. margin-top: 400rpx;
  21. }
  22. .no-collect .c text {
  23. margin: 0 auto;
  24. display: block;
  25. width: 258rpx;
  26. height: 29rpx;
  27. line-height: 29rpx;
  28. text-align: center;
  29. font-size: 29rpx;
  30. color: #999;
  31. }
  32. .collect-list {
  33. width: 100%;
  34. height: auto;
  35. overflow: hidden;
  36. background: #fff;
  37. padding-left: 30rpx;
  38. border-top: 1px solid #e1e1e1;
  39. }
  40. .item {
  41. height: 212rpx;
  42. width: 720rpx;
  43. background: #fff;
  44. padding: 30rpx 30rpx 30rpx 0;
  45. border-bottom: 1px solid #e1e1e1;
  46. }
  47. .item:last-child {
  48. border-bottom: 1px solid #fff;
  49. }
  50. .item .img {
  51. float: left;
  52. width: 150rpx;
  53. height: 150rpx;
  54. }
  55. .item .info {
  56. float: right;
  57. width: 540rpx;
  58. height: 150rpx;
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: center;
  62. padding-left: 20rpx;
  63. }
  64. .item .info .name {
  65. font-size: 28rpx;
  66. color: #333;
  67. line-height: 40rpx;
  68. }
  69. .item .info .subtitle {
  70. margin-top: 8rpx;
  71. font-size: 24rpx;
  72. color: #888;
  73. line-height: 40rpx;
  74. }
  75. .item .info .price {
  76. margin-top: 8rpx;
  77. font-size: 28rpx;
  78. color: #333;
  79. line-height: 40rpx;
  80. }