order.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* component/order/order.wxss */
  2. @import '../../common.wxss';
  3. .order{
  4. background-color: #fff;
  5. box-sizing: border-box;
  6. }
  7. .order_box_top{
  8. display: flex;
  9. align-items: center;
  10. }
  11. .order_box_top_let{
  12. display: flex;
  13. align-items: center;
  14. }
  15. .order_content{
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. }
  20. .order_content_left{
  21. display: flex;
  22. flex-direction: column;
  23. height: 180rpx;
  24. justify-content: space-around;
  25. overflow: hidden;
  26. }
  27. .order_content_img{
  28. width: 180rpx;
  29. height: 180rpx;
  30. }
  31. .order_content_left_top{
  32. display: flex;
  33. align-items: center;
  34. }
  35. .timetext{
  36. background-color: #F5F7FB;
  37. height: 44rpx;
  38. width: 120rpx;
  39. color: #6B738B;
  40. border-radius: 6rpx;
  41. }
  42. .avatar{
  43. width: 40rpx;
  44. height: 40rpx;
  45. border-radius: 50%;
  46. }
  47. .month_clock{
  48. display: flex;
  49. align-items: center;
  50. font-size: 40rpx;
  51. font-weight: bold;
  52. }
  53. .clock{
  54. color: var(--maingreencolor);
  55. }
  56. .order_bottom{
  57. display: flex;
  58. align-items: center;
  59. justify-content: space-between;
  60. }
  61. .money{
  62. color: var(--mainmoneycolor);
  63. flex: 1;
  64. }
  65. .order_bottom_right{
  66. font-size: 24rpx;
  67. flex: 2;
  68. display: flex;
  69. align-items: center;
  70. justify-content: flex-end;
  71. }
  72. .refund{
  73. border: 1rpx solid rgba(164, 169, 183, 0.20);
  74. width: 128rpx;
  75. height: 56rpx;
  76. line-height: 56rpx;
  77. text-align: center;
  78. color: #A4A9B7;
  79. }
  80. .plus{
  81. background: var(--mainmoneycolor);
  82. color: #fff;
  83. width: 128rpx;
  84. height: 56rpx;
  85. line-height: 56rpx;
  86. text-align: center;
  87. }
  88. .difference{
  89. background: var(--maingreencolor);
  90. color: #fff;
  91. width: 128rpx;
  92. height: 56rpx;
  93. line-height: 56rpx;
  94. text-align: center;
  95. }
  96. .more{
  97. width: 22rpx;
  98. height: 22rpx;
  99. }
  100. .t-red{
  101. color: #FF2121;
  102. }