orderTabs.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .order_item {
  2. font-size: 24rpx;
  3. margin-top: 15rpx;
  4. background: #fff;
  5. }
  6. .order_time {
  7. position: relative;
  8. display: flex;
  9. padding: 10rpx 15rpx;
  10. }
  11. .order_time::after {
  12. content: "";
  13. position: absolute;
  14. bottom: 0;
  15. right: 0;
  16. width: 100%;
  17. height: 2rpx;
  18. background: #d9d9d9;
  19. -webkit-transform: scaleY(0.5);
  20. transform: scaleY(0.5);
  21. }
  22. .order_time text {
  23. flex: 1;
  24. }
  25. .order_time text.state_desc, .order_price, .order_total, .order_handle {
  26. text-align: right;
  27. }
  28. .order_content {
  29. display: flex;
  30. position: relative;
  31. padding: 5rpx 15rpx;
  32. }
  33. .order_content::after {
  34. content: "";
  35. position: absolute;
  36. bottom: 0;
  37. right: 0;
  38. width: 100%;
  39. height: 2rpx;
  40. background: #d9d9d9;
  41. -webkit-transform: scaleY(0.5);
  42. transform: scaleY(0.5);
  43. }
  44. .order_info {
  45. width: 500rpx;
  46. padding-left: 15rpx;
  47. }
  48. .order_handle {
  49. margin-top: 8rpx;
  50. }
  51. .order_total {
  52. padding-right: 15rpx;
  53. padding-top: 15rpx;
  54. padding-bottom: 15rpx;
  55. }
  56. .order_handle text {
  57. display: inline-block;
  58. color: grey;
  59. border: 1rpx solid grey;
  60. border-radius: 5rpx;
  61. padding: 10rpx 16rpx;
  62. margin: 15rpx;
  63. font-size: 22rpx;
  64. }
  65. .goods_spec {
  66. font-size:20rpx;
  67. color:grey;
  68. margin-top:20rpx;
  69. display:inline-block;
  70. }
  71. .order_amount {
  72. color: #333;
  73. }
  74. .tabs {
  75. display: flex;
  76. position: fixed;
  77. top: 0;
  78. left: 0;
  79. width: 100%;
  80. height: 88rpx;
  81. line-height: 88rpx;
  82. background: #ffffff;
  83. font-size: 28rpx;
  84. text-align: center;
  85. z-index: 10;
  86. }
  87. .tabs view {
  88. flex: 1;
  89. }
  90. .selected {
  91. color: #333;
  92. border-bottom: 3px solid #2b2b2b;
  93. }
  94. .empty_order {
  95. text-align: center;
  96. font-size: 30rpx;
  97. }
  98. .empty_order text {
  99. display: block;
  100. height: 300rpx;
  101. line-height: 300rpx;
  102. }
  103. .empty_order_icon {
  104. width: 523rpx;
  105. height: 300rpx;
  106. margin: 120rpx auto 50rpx;
  107. }
  108. .emoty_order_title {
  109. font-size: 36rpx;
  110. font-weight: bold;
  111. color: #333;
  112. text-align: center;
  113. }
  114. .emoty_order_subtitle {
  115. font-size: 24rpx;
  116. color: #666;
  117. text-align: center;
  118. }