parkingLock.scss 6.0 KB

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