parkexport.scss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. .parking-lock {
  2. height: calc(100vh - 88rpx);
  3. background-color: #f6f6ff;
  4. padding-top: 10rpx;
  5. &-pay {
  6. margin-bottom: 30rpx;
  7. }
  8. .parking-lock-title {
  9. font-size: 46rpx;
  10. color: #292929;
  11. text-align: center;
  12. padding-top: 31rpx;
  13. line-height: 65rpx;
  14. font-family: PingFangSC-Regular, PingFang SC;
  15. font-weight: 400;
  16. }
  17. .parking-lock-tips {
  18. width: calc(100% - 72rpx);
  19. font-size: 30rpx;
  20. color: #777777;
  21. text-align: center;
  22. margin: 10rpx auto;
  23. line-height: 47rpx;
  24. }
  25. .parking-lock-info {
  26. width: calc(100% - 72rpx);
  27. margin: 30rpx auto;
  28. background-color: #fff;
  29. border-radius: 15rpx;
  30. padding: 39rpx 41rpx;
  31. .parking-lock-info-item {
  32. display: flex;
  33. margin-bottom: 16rpx;
  34. view {
  35. font-size: 28rpx;
  36. &:first-child {
  37. width: 30%;
  38. color: #2a2a2a;
  39. font-weight: 500;
  40. }
  41. &:last-child {
  42. color: #6e6e6e;
  43. }
  44. }
  45. .weight {
  46. color: #2a2a2a !important;
  47. font-weight: 500;
  48. }
  49. .really-money {
  50. color: #fa7319 !important;
  51. }
  52. }
  53. }
  54. .parking-lock-pay-btn {
  55. width: calc(100% - 72rpx);
  56. margin: 0 auto;
  57. button {
  58. width: 100%;
  59. height: 100rpx;
  60. line-height: 100rpx;
  61. background-color: #008cff;
  62. border: none;
  63. color: #fff;
  64. box-shadow: 0px 7px 13px 0px rgba(16, 153, 250, 0.31);
  65. font-size: 28rpx;
  66. font-weight: 500;
  67. }
  68. }
  69. .parking-lock-begin-box {
  70. width: 441rpx;
  71. height: 441rpx;
  72. line-height: 441rpx;
  73. background: #31a2ff;
  74. background: linear-gradient(270deg, rgba(49, 162, 255, 0.1) 20%, rgba(49, 162, 255, 1) 100%);
  75. border-radius: 50%;
  76. text-align: center;
  77. margin: 0 auto;
  78. // animation: spin 3s linear infinite;
  79. .parking-lock-begin-bg {
  80. display: inline-block;
  81. width: 420rpx;
  82. height: 420rpx;
  83. line-height: 420rpx;
  84. vertical-align: middle;
  85. border: solid 12rpx #fff;
  86. background: linear-gradient(346deg, #008cff 0%, #95cfff 100%);
  87. border-radius: 50%;
  88. image {
  89. width: 194rpx;
  90. height: 239rpx;
  91. vertical-align: middle;
  92. }
  93. }
  94. }
  95. .parking-lock-begin-info {
  96. text-align: center;
  97. font-size: 50rpx;
  98. color: #008cff;
  99. margin-top: 57rpx;
  100. }
  101. .parking-lock-loading-box {
  102. width: 441rpx;
  103. height: 441rpx;
  104. line-height: 441rpx;
  105. background: #31a2ff;
  106. background: linear-gradient(0deg, rgba(49, 162, 255, 0.1) 20%, rgba(49, 162, 255, 1) 100%);
  107. border-radius: 50%;
  108. text-align: center;
  109. margin: 0 auto;
  110. animation: spin 3s linear infinite;
  111. .parking-lock-loading-bg {
  112. display: inline-block;
  113. width: 420rpx;
  114. height: 420rpx;
  115. line-height: 420rpx;
  116. vertical-align: middle;
  117. border: solid 12rpx #fff;
  118. background: linear-gradient(346deg, #008cff 0%, #95cfff 100%);
  119. border-radius: 50%;
  120. image {
  121. width: 194rpx;
  122. height: 239rpx;
  123. vertical-align: middle;
  124. }
  125. }
  126. }
  127. .parking-lock-loading-info {
  128. text-align: center;
  129. font-size: 50rpx;
  130. color: #008cff;
  131. margin-top: 57rpx;
  132. }
  133. .parking-lock-success {
  134. .parking-lock-success-box {
  135. width: 441rpx;
  136. height: 441rpx;
  137. margin: 0 auto;
  138. image {
  139. width: 100%;
  140. height: 100%;
  141. }
  142. }
  143. .parking-lock-success-info {
  144. color: #4ccd8a;
  145. font-size: 50rpx;
  146. text-align: center;
  147. margin: 56rpx 0 202rpx;
  148. }
  149. .parking-lock-success-button {
  150. width: calc(100% - 80rpx);
  151. margin: 0 auto;
  152. button {
  153. width: 100%;
  154. height: 100rpx;
  155. line-height: 100rpx;
  156. background-color: #008cff;
  157. font-size: 28rpx;
  158. color: #fff;
  159. }
  160. }
  161. }
  162. }
  163. .pay-way {
  164. display: flex;
  165. justify-content: space-between;
  166. width: calc(100% - 34rpx);
  167. border-top: solid 1px #979797;
  168. margin: 23rpx auto;
  169. padding: 38rpx 86rpx;
  170. .pay-way-item {
  171. text-align: center;
  172. font-size: 30rpx;
  173. color: #5f5f5f;
  174. image {
  175. width: 143rpx;
  176. height: 143rpx;
  177. }
  178. }
  179. }
  180. .pay-way-close-btn {
  181. width: calc(100% - 34rpx);
  182. margin: 0 auto 30rpx;
  183. border: none;
  184. background-color: #3397fa;
  185. color: #fff;
  186. border-radius: 10rpx;
  187. }
  188. @keyframes rotate {
  189. 0% {
  190. transform: rotate(0);
  191. }
  192. 50% {
  193. transform: rotate(200deg);
  194. }
  195. 100% {
  196. transform: rotate(0);
  197. }
  198. }
  199. @keyframes spin {
  200. from {
  201. transform: rotate(0);
  202. }
  203. to {
  204. transform: rotate(359deg);
  205. }
  206. }
  207. .loadingSelect {
  208. text-align: center;
  209. margin-top: 20rpx;
  210. }
  211. .spinner {
  212. margin: auto;
  213. width: 50px;
  214. height: 60px;
  215. text-align: center;
  216. font-size: 10px;
  217. }
  218. .spinner > view {
  219. background-color: #6495ed;
  220. height: 100%;
  221. width: 10rpx;
  222. margin-right: 2rpx;
  223. display: inline-block;
  224. -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  225. animation: stretchdelay 1.2s infinite ease-in-out;
  226. }
  227. .spinner .rect2 {
  228. -webkit-animation-delay: -1.1s;
  229. animation-delay: -1.1s;
  230. }
  231. .spinner .rect3 {
  232. -webkit-animation-delay: -1s;
  233. animation-delay: -1s;
  234. }
  235. .spinner .rect4 {
  236. -webkit-animation-delay: -0.9s;
  237. animation-delay: -0.9s;
  238. }
  239. .spinner .rect5 {
  240. -webkit-animation-delay: -0.8s;
  241. animation-delay: -0.8s;
  242. }
  243. @-webkit-keyframes stretchdelay {
  244. 0%,
  245. 40%,
  246. 100% {
  247. -webkit-transform: scaleY(0.4);
  248. }
  249. 20% {
  250. -webkit-transform: scaleY(1);
  251. }
  252. }
  253. @keyframes stretchdelay {
  254. 0%,
  255. 40%,
  256. 100% {
  257. transform: scaleY(0.4);
  258. -webkit-transform: scaleY(0.4);
  259. }
  260. 20% {
  261. transform: scaleY(1);
  262. -webkit-transform: scaleY(1);
  263. }
  264. }
  265. .new-plate-number {
  266. margin-bottom: 70rpx;
  267. }
  268. .message-input-wrap {
  269. margin: 0 -40rpx;
  270. }
  271. .message-input-wrap /deep/ .u-input ~ uni-view:last-of-type .u-char-item {
  272. background-color: #e8ffe8;
  273. }
  274. .really-license-txt {
  275. color: #008cff;
  276. }
  277. .really-license-txt1 {
  278. color: #008cff;
  279. margin: 20rpx;
  280. }
  281. .popup-vehicleNo-title {
  282. font-size: 48rpx;
  283. text-align: center;
  284. padding-top: 20rpx;
  285. }
  286. .popup-vehicleNo-center {
  287. width: 95%;
  288. height: 2rpx;
  289. border-top: solid rgb(146, 146, 146) 2rpx;
  290. margin: 30rpx 20rpx 50rpx 20rpx;
  291. }
  292. .popup-vehicleNo-select {
  293. text-align: center;
  294. color: #777777;
  295. }
  296. .vehicleNo-btn {
  297. display: flex;
  298. margin: 40rpx 0;
  299. }
  300. .parking-lock-pay-attention {
  301. margin: 50rpx;
  302. line-height: 48rpx;
  303. color: #777777;
  304. }