index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. line-height: 40rpx;
  39. }
  40. .container .orderList .order {
  41. width: 100%;
  42. padding: 18rpx 26rpx;
  43. box-sizing: border-box;
  44. margin-bottom: 20rpx;
  45. background: #FFFFFF;
  46. border-radius: 20rpx;
  47. }
  48. .container .orderList .order .above {
  49. display: flex;
  50. align-items: flex-end;
  51. justify-content: space-between;
  52. padding-bottom: 18rpx;
  53. border-bottom: 1rpx solid #eee;
  54. }
  55. .container .orderList .order .above .userInfo {
  56. display: flex;
  57. align-items: center;
  58. }
  59. .container .orderList .order .above .userInfo .avatar {
  60. margin-right: 18rpx;
  61. width: 64rpx;
  62. height: 64rpx;
  63. background: #D8D8D8;
  64. border-radius: 50%;
  65. }
  66. .container .orderList .order .above .userInfo .nickName {
  67. margin-bottom: 6rpx;
  68. font-size: 30rpx;
  69. }
  70. .container .orderList .order .above .userInfo .addTime {
  71. font-size: 26rpx;
  72. color: #7B7B7B;
  73. }
  74. .container .orderList .order .above .state {
  75. font-size: 26rpx;
  76. color: #FE9221;
  77. }
  78. .container .orderList .order .below {
  79. color: #7B7B7B;
  80. }
  81. .container .orderList .order .below .row {
  82. padding: 20rpx 0;
  83. display: flex;
  84. align-items: center;
  85. justify-content: space-between;
  86. font-size: 26rpx;
  87. }
  88. .container .orderList .order .below .row .money {
  89. color: black;
  90. }