base.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*状态颜色变化*/
  2. .state1 {
  3. background: linear-gradient(163deg, #68e9ce 0%, #18d5b9 100%);
  4. box-shadow: 0px 0px 6rpx 0px #18d5b9;
  5. }
  6. .state2 {
  7. background: linear-gradient(163deg, #c0c0c0 0%, #808080 100%);
  8. box-shadow: 0 0 6rpx 0 #a9a9a9;
  9. }
  10. .state3 {
  11. background: linear-gradient(163deg, #41b8fd 0%, #0ee7fe 100%);
  12. box-shadow: 0 0 6rpx 0 #0ee7fe;
  13. }
  14. .state4 {
  15. background: linear-gradient(163deg, rgba(255, 139, 102, 1) 0%, rgba(254, 87, 34, 1) 100%);
  16. box-shadow: 0 0 6rpx 0 rgba(254, 94, 44, 1);
  17. }
  18. .state5 {
  19. background: linear-gradient(163deg, #ff8cc7 0%, #f232a3 100%);
  20. box-shadow: 0 0 6rpx 0 #f16cbd;
  21. }
  22. .state6 {
  23. background: linear-gradient(163deg, #9382f4 0%, #a297fb 100%);
  24. box-shadow: 0px 0px 6rpx 0px #968efb;
  25. }
  26. .state7 {
  27. background: linear-gradient(163deg, #ff6477 0%, #ff7a69 100%);
  28. box-shadow: 0px 0px 6rpx 0px #ff6f70;
  29. }
  30. .state8 {
  31. background: linear-gradient(163deg, #ff9854 0%, #ffc573 100%);
  32. box-shadow: 0px 0px 6rpx 0px #ffb265;
  33. }
  34. .state9 {
  35. background: linear-gradient(163deg, #d684dd 0%, #f7a7ec 100%);
  36. box-shadow: 0px 0px 6rpx 0px #e694e4;
  37. }
  38. .state10 {
  39. background: linear-gradient(163deg, #47dda8 0%, #61f79c 100%);
  40. box-shadow: 0px 0px 6rpx 0px #54eaa2;
  41. }
  42. .state11 {
  43. background: linear-gradient(163deg, #88b9e1 0%, #004fb6 100%);
  44. box-shadow: 0px 0px 6rpx 0px #004fb6;
  45. }
  46. view {
  47. font-family: 'PFnoraml';
  48. }
  49. text {
  50. font-family: 'PFnoraml';
  51. }
  52. /* 弹性布局 */
  53. .flex {
  54. display: flex;
  55. align-items: center;
  56. }
  57. .flexB {
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. }
  62. .flexA {
  63. display: flex;
  64. justify-content: space-around;
  65. align-items: center;
  66. }
  67. .flexC {
  68. display: flex;
  69. justify-content: center;
  70. align-items: center;
  71. }
  72. .flexCC {
  73. display: flex;
  74. flex-direction: column;
  75. justify-content: center;
  76. align-items: center;
  77. }
  78. /* 遮罩层 */
  79. .cover {
  80. min-height: 100%;
  81. width: 100%;
  82. height: 100%;
  83. background: #000;
  84. opacity: 0.7;
  85. position: absolute;
  86. top: 0;
  87. left: 0;
  88. z-index: 999;
  89. }
  90. /* 暂无数据 */
  91. .noData {
  92. position: fixed;
  93. top: 50%;
  94. left: 50%;
  95. transform: translate(-50%, -50%);
  96. }
  97. .noData image {
  98. width: 200rpx;
  99. height: 200rpx;
  100. }
  101. .noData view {
  102. width: 100%;
  103. text-align: center;
  104. font-size: 28rpx;
  105. margin-top: 20rpx;
  106. }
  107. /* 日租订单和普通订单 */
  108. .cut text {
  109. font-size: 28rpx;
  110. padding: 15rpx 80rpx;
  111. color: #64efda;
  112. border: 1px solid #64efda;
  113. }
  114. .cut text:first-child {
  115. border-top-left-radius: 15rpx;
  116. border-bottom-left-radius: 15rpx;
  117. }
  118. .cut text:last-child {
  119. border-top-right-radius: 15rpx;
  120. border-bottom-right-radius: 15rpx;
  121. }
  122. .cut .cur {
  123. background: #64efda;
  124. color: #fff;
  125. }
  126. /* 备注 */
  127. .remark {
  128. width: 690rpx;
  129. background: rgba(255, 255, 255, 1);
  130. box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
  131. border-radius: 10rpx;
  132. margin-top: 30rpx;
  133. padding: 12rpx 0;
  134. height: auto;
  135. }
  136. .remark text {
  137. display: inline-block;
  138. margin-left: 25rpx;
  139. font-size: 28rpx;
  140. }
  141. .mark {
  142. display: flex;
  143. align-items: center;
  144. padding:6rpx 0;
  145. }
  146. .mark textarea {
  147. color: #000;
  148. width: 65%;
  149. padding: 0rpx 10rpx;
  150. font-size: 28rpx;
  151. }
  152. .normal {
  153. outline: none;
  154. border: none;
  155. }
  156. .change {
  157. border: 1rpx solid #969799;
  158. outline: none;
  159. border-radius: 10rpx;
  160. }
  161. .mark view {
  162. width: 88rpx;
  163. height: 46rpx;
  164. background: #18D5B9;
  165. border-radius: 10rpx;
  166. color: #fff;
  167. margin-left: 15rpx;
  168. font-size: 24rpx;
  169. }