index.wxss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .container {
  2. padding: 0 20rpx;
  3. }
  4. .container .categoryBox {
  5. margin: 24rpx 0;
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. }
  10. .container .categoryBox .category {
  11. width: 126rpx;
  12. padding: 8rpx 0;
  13. font-size: 30rpx;
  14. text-align: center;
  15. color: #7A7A7A;
  16. background: #FFFFFF;
  17. border-radius: 29rpx;
  18. }
  19. .container .categoryBox .currentClass {
  20. color: #FE9221;
  21. font-weight: bold;
  22. }
  23. .container .orderList .tips {
  24. margin-bottom: 20rpx;
  25. position: relative;
  26. padding: 14rpx 0;
  27. text-align: center;
  28. background: #FFFAEA;
  29. font-size: 24rpx;
  30. color: #FE9221;
  31. }
  32. .container .orderList .tips .close {
  33. position: absolute;
  34. top: 50%;
  35. transform: translateY(-50%);
  36. right: 20rpx;
  37. font-size: 40rpx;
  38. }
  39. .container .orderList .order {
  40. width: 100%;
  41. padding: 18rpx 26rpx;
  42. box-sizing: border-box;
  43. margin-bottom: 20rpx;
  44. background: #FFFFFF;
  45. border-radius: 20rpx;
  46. }
  47. .container .orderList .order .above {
  48. display: flex;
  49. align-items: flex-end;
  50. justify-content: space-between;
  51. padding-bottom: 18rpx;
  52. border-bottom: 1rpx solid #eee;
  53. }
  54. .container .orderList .order .above .userInfo {
  55. display: flex;
  56. align-items: center;
  57. }
  58. .container .orderList .order .above .userInfo .avatar {
  59. margin-right: 18rpx;
  60. width: 64rpx;
  61. height: 64rpx;
  62. background: #D8D8D8;
  63. border-radius: 50%;
  64. }
  65. .container .orderList .order .above .userInfo .nickName {
  66. margin-bottom: 6rpx;
  67. font-size: 30rpx;
  68. }
  69. .container .orderList .order .above .userInfo .addTime {
  70. font-size: 26rpx;
  71. color: #7B7B7B;
  72. }
  73. .container .orderList .order .above .state {
  74. font-size: 26rpx;
  75. color: #FE9221;
  76. }
  77. .container .orderList .order .below {
  78. color: #7B7B7B;
  79. }
  80. .container .orderList .order .below .row {
  81. padding: 20rpx 0;
  82. display: flex;
  83. align-items: center;
  84. justify-content: space-between;
  85. font-size: 26rpx;
  86. }
  87. .container .orderList .order .below .row .money {
  88. color: black;
  89. }
  90. .empty {
  91. margin-top: 190rpx;
  92. }
  93. .empty .nullImg {
  94. transform: scale(0.8);
  95. }