bought.wxss 1.3 KB

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