index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .container {
  2. padding: 0 20rpx;
  3. }
  4. .container .categoryBox {
  5. margin-top: 24rpx;
  6. margin-bottom: 38rpx;
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. }
  11. .container .categoryBox .category {
  12. width: 126rpx;
  13. padding: 8rpx 0;
  14. font-size: 30rpx;
  15. text-align: center;
  16. color: #7A7A7A;
  17. background: #FFFFFF;
  18. border-radius: 29rpx;
  19. }
  20. .container .categoryBox .currentClass {
  21. color: #FE9221;
  22. font-weight: bold;
  23. }
  24. .container .orderList .order {
  25. width: 100%;
  26. padding: 18rpx 26rpx;
  27. box-sizing: border-box;
  28. margin-bottom: 20rpx;
  29. background: #FFFFFF;
  30. border-radius: 20rpx;
  31. }
  32. .container .orderList .order .above {
  33. display: flex;
  34. align-items: flex-end;
  35. justify-content: space-between;
  36. padding-bottom: 18rpx;
  37. border-bottom: 1rpx solid #eee;
  38. }
  39. .container .orderList .order .above .userInfo {
  40. display: flex;
  41. align-items: center;
  42. }
  43. .container .orderList .order .above .userInfo .avatar {
  44. margin-right: 18rpx;
  45. width: 64rpx;
  46. height: 64rpx;
  47. background: #D8D8D8;
  48. border-radius: 50%;
  49. }
  50. .container .orderList .order .above .userInfo .nickName {
  51. margin-bottom: 6rpx;
  52. font-size: 30rpx;
  53. }
  54. .container .orderList .order .above .userInfo .addTime {
  55. font-size: 26rpx;
  56. color: #7B7B7B;
  57. }
  58. .container .orderList .order .above .state {
  59. font-size: 26rpx;
  60. color: #FE9221;
  61. }
  62. .container .orderList .order .below {
  63. color: #7B7B7B;
  64. }
  65. .container .orderList .order .below .row {
  66. padding: 20rpx 0;
  67. display: flex;
  68. align-items: center;
  69. justify-content: space-between;
  70. font-size: 26rpx;
  71. }
  72. .container .orderList .order .below .row .money {
  73. color: black;
  74. font-weight: bold;
  75. }