order.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. page{
  2. width: 100%;
  3. /* height: 100%; */
  4. background: #f5f5f5;
  5. }
  6. .body{
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. }
  13. .body .top{
  14. width: 100%;
  15. display: flex;
  16. align-items: center;
  17. flex-direction: column;
  18. background: white;
  19. position: fixed;
  20. top: 0;
  21. left: 0;
  22. }
  23. .body .time{
  24. width: 90%;
  25. }
  26. .body .yutang{
  27. width: 90%;
  28. display: flex;
  29. font-size: 28rpx;
  30. align-items: center;
  31. height: 80rpx;
  32. }
  33. .body .yutang view{
  34. width: 33.3%;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. position: relative;
  39. }
  40. .yutang view .text{
  41. position: absolute;
  42. bottom: -8rpx;
  43. left: 38%;
  44. width: 50rpx;
  45. height: 4rpx;
  46. background: greenyellow;
  47. }
  48. .yutang .active{
  49. color: red;
  50. }
  51. .picker{
  52. display: flex;
  53. align-items: center;
  54. }
  55. .list{
  56. width: 90%;
  57. display: flex;
  58. flex-direction: column;
  59. align-items: center;
  60. margin-top: 120rpx;
  61. padding-bottom: 50rpx;
  62. }
  63. .list .view{
  64. width: 100%;
  65. display: flex;
  66. background: white;
  67. margin-top: 20rpx;
  68. padding: 20rpx 0rpx;
  69. font-size: 28rpx;
  70. border-radius: 20rpx;
  71. justify-content: space-between;
  72. align-items: center;
  73. }
  74. .list .left{
  75. display: flex;
  76. flex-direction: column;
  77. padding-left: 20rpx;
  78. }
  79. .list .right{
  80. display: flex;
  81. flex-direction: column;
  82. align-items: center;
  83. padding-right: 30rpx;
  84. }
  85. .list .left text{
  86. padding: 8rpx 0rpx;
  87. }
  88. .list .right view{
  89. width: 140rpx;
  90. height: 60rpx;
  91. border-radius: 10rpx;
  92. background: #43E0B8;
  93. color: white;
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. margin: 15rpx 0rpx;
  98. }
  99. .none{
  100. margin-top: 260rpx;
  101. color: #43E0B8;
  102. font-size: 28rpx;
  103. }
  104. .model {
  105. width: 470rpx;
  106. height: 400rpx;
  107. border-radius: 10rpx;
  108. position: fixed;
  109. top: 50%;
  110. left: 50%;
  111. transform: translate(-50%, -50%);
  112. z-index: 9999;
  113. background: white;
  114. display: flex;
  115. flex-direction: column;
  116. align-items: center;
  117. justify-content: space-between;
  118. }
  119. .model .title{
  120. padding: 15rpx 0rpx;
  121. font-size: 38rpx;
  122. font-weight: 800;
  123. }
  124. .model .bottom{
  125. width: 100%;
  126. display: flex;
  127. align-items: center;
  128. border-top: 2rpx solid #cccccc;
  129. }
  130. .model .bottom view{
  131. width: 50%;
  132. display: flex;
  133. align-items: center;
  134. justify-content: center;
  135. height: 80rpx;
  136. }
  137. .model input{
  138. border: 2rpx solid #cccccc;
  139. width: 80%;
  140. height: 60rpx;
  141. }
  142. .background {
  143. width: 100%;
  144. height: 100%;
  145. position: fixed;
  146. left: 50%;
  147. top: 50%;
  148. transform: translate(-50%, -50%);
  149. background: rgba(0, 0, 0, 1);
  150. opacity: 0.4;
  151. z-index: 8887;
  152. }