index.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. .tui-cards-container {
  2. position: fixed;
  3. width: 100vw;
  4. height: 100vh;
  5. z-index: 100;
  6. top: 0;
  7. /* #ifdef H5 */
  8. top: calc(88rpx + constant(safe-area-inset-top));
  9. top: calc(88rpx + env(safe-area-inset-top));
  10. /* #endif */
  11. background: rgba(0, 0, 0, 0.5);
  12. }
  13. .tui-cards-box {
  14. position: absolute;
  15. width: 100%;
  16. height: 60%;
  17. bottom: 0;
  18. background: #F4F5F9;
  19. padding-bottom: 68rpx;
  20. z-index: 200;
  21. }
  22. .tui-cards-title {
  23. display: flex;
  24. flex-wrap: nowrap;
  25. justify-content: space-between;
  26. padding-left: 40rpx;
  27. padding-right: 40rpx;
  28. padding-top: 48rpx;
  29. font-family: PingFangSC-Medium;
  30. font-size: 36rpx;
  31. color: #000000;
  32. letter-spacing: 0;
  33. line-height: 50rpx;
  34. }
  35. .tui-search-bar {
  36. display: flex;
  37. flex-wrap: nowrap;
  38. align-items: center;
  39. margin: 32rpx 40rpx;
  40. width: 670rpx;
  41. height: 80rpx;
  42. background: #FFFFFF;
  43. border-radius: 40rpx;
  44. border-radius: 40rpx;
  45. background-color: #F8F8F8;
  46. }
  47. .tui-searchcion {
  48. display: inline-block;
  49. margin-left: 24rpx;
  50. width: 48rpx;
  51. height: 48rpx;
  52. }
  53. .tui-search-bar-input {
  54. margin-left: 16rpx;
  55. line-height: 40rpx;
  56. font-size: 28rpx;
  57. width: 100%;
  58. display: inline-block;
  59. }
  60. .tui-order-list {
  61. position: absolute;
  62. top: 242rpx;
  63. bottom: 68rpx;
  64. width: 750rpx;
  65. }
  66. .tui-order-item {
  67. width: 670rpx;
  68. margin: 32rpx 40rpx;
  69. height: 388rpx;
  70. background-color: #FFFFFF;
  71. border-radius: 4px;
  72. display: flex;
  73. flex-wrap: wrap;
  74. align-items: center;
  75. }
  76. .order-title {
  77. width: 670rpx;
  78. height: 102rpx;
  79. padding: 32rpx 40rpx;
  80. padding-bottom: 0;
  81. border-bottom: 2rpx solid #EEF0F3;
  82. }
  83. .order-title>.order-number {
  84. font-family: PingFangSC-Medium;
  85. font-size: 32rpx;
  86. line-height: 44rpx;
  87. color: #000000;
  88. letter-spacing: 0;
  89. margin-bottom: 8rpx;
  90. }
  91. .order-title>.order-time {
  92. font-family: PingFangSC-Regular;
  93. font-size: 24rpx;
  94. line-height: 34rpx;
  95. color: #999999;
  96. letter-spacing: 0;
  97. }
  98. .order-info {
  99. display: flex;
  100. flex-wrap: nowrap;
  101. width: 670rpx;
  102. height: 236rpx;
  103. padding: 32rpx 40rpx;
  104. }
  105. .order-content {
  106. width: 450rpx;
  107. margin-left: 32rpx;
  108. }
  109. .order-content-title {
  110. font-family: PingFangSC-Medium;
  111. width: 378rpx;
  112. line-height: 34rpx;
  113. font-size: 24rpx;
  114. color: #000000;
  115. letter-spacing: 0;
  116. margin-bottom: 12rpx;
  117. }
  118. .order-content-description {
  119. display: flex;
  120. flex-wrap: nowrap;
  121. font-family: PingFangSC-Regular;
  122. max-width: 410rpx;
  123. line-height: 34rpx;
  124. font-size: 24rpx;
  125. color: #999999;
  126. letter-spacing: 0;
  127. margin-bottom: 12rpx;
  128. }
  129. .order-content-price {
  130. font-family: PingFangSC-Medium;
  131. font-size: 36rpx;
  132. line-height: 50rpx;
  133. color: #FF7201;
  134. letter-spacing: 0;
  135. }
  136. .order-image {
  137. width: 156rpx;
  138. height: 156rpx;
  139. }
  140. .btn-send-order {
  141. width: 176rpx;
  142. height: 58rpx;
  143. background-color: #006EFF;
  144. border-radius: 14.5px;
  145. font-family: PingFangSC-Regular;
  146. font-size: 24rpx;
  147. color: #FFFFFF;
  148. line-height: 28px;
  149. text-align: center;
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. margin-right: 40rpx;
  154. }
  155. .btn-send-text {
  156. font-family: PingFangSC-Regular;
  157. font-size: 12px;
  158. color: #FFFFFF;
  159. line-height: 14px;
  160. }