您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

deviceLogOff.wxss 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. .signing {
  2. box-sizing: border-box;
  3. width: 100vw;
  4. height: 100vh;
  5. background-color: #F6F6F6;
  6. }
  7. .signing_verticalLine {
  8. display: flex;
  9. flex-direction: row;
  10. align-items: center;
  11. font-size: 32rpx;
  12. font-weight: 500;
  13. color: #333333;
  14. }
  15. .signing_verticalLine__line {
  16. margin-right: 16rpx;
  17. width: 4px;
  18. height: 14px;
  19. background-color: #00B38B;
  20. border-radius: 2px;
  21. }
  22. .signing_list {
  23. font-size: 30rpx;
  24. color: #EBEBEB;
  25. }
  26. .signing_list .item {
  27. display: flex;
  28. flex-direction: row;
  29. justify-content: space-between;
  30. border-bottom: 1px solid;
  31. align-items: center;
  32. height: 90rpx;
  33. line-height: 90rpx;
  34. }
  35. .signing_list .item:last-child {
  36. border: none;
  37. }
  38. .signing_list .item .label {
  39. color: #666666;
  40. }
  41. .signing_list .item .value {
  42. color: #333333;
  43. padding-left: 74rpx;
  44. flex: 1;
  45. text-align: right;
  46. }
  47. .signing_list .item .value .van-cell {
  48. padding: 0;
  49. font-size: 30rpx;
  50. color: #333333;
  51. }
  52. .signing_list .item .value .status {
  53. padding: 0 16rpx;
  54. border: 1px solid #00B38B;
  55. height: 44rpx;
  56. line-height: 44rpx;
  57. color: #00B38B;
  58. font-size: 26rpx;
  59. background-color: #EEF9F6;
  60. border-radius: 8rpx;
  61. margin-left: 16rpx;
  62. }
  63. .signing_footer {
  64. position: fixed;
  65. bottom: 0;
  66. width: 100%;
  67. height: 166rpx;
  68. background-color: #ffffff;
  69. text-align: center;
  70. }
  71. .signing_footer .van-button {
  72. width: 674rpx;
  73. height: 98rpx;
  74. margin-top: 24rpx;
  75. font-size: 28rpx;
  76. }
  77. .signing_infoSure .container {
  78. margin-top: 22rpx;
  79. background-color: #ffffff;
  80. padding: 32rpx 26rpx;
  81. }
  82. .signing_middle {
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: center;
  86. align-items: center;
  87. background-color: #ffffff;
  88. width: 100%;
  89. box-sizing: border-box;
  90. padding: 32rpx;
  91. }
  92. .signing_middle__identification {
  93. text-align: center;
  94. margin-top: 112rpx;
  95. }
  96. .signing_middle__identification .name {
  97. margin-top: 40rpx;
  98. font-size: 32rpx;
  99. color: #333333;
  100. }
  101. .signing_middle .tips {
  102. margin-top: 40rpx;
  103. font-size: 28rpx;
  104. color: #999999;
  105. }
  106. .signing_upload {
  107. display: flex;
  108. flex-direction: row;
  109. justify-content: space-around;
  110. padding-top: 32rpx;
  111. }
  112. .signing_upload__item .group {
  113. display: flex;
  114. align-items: center;
  115. min-height: 100rpx;
  116. justify-content: space-between;
  117. }
  118. .signing_upload__item .group .flex-sub {
  119. display: flex;
  120. justify-content: center;
  121. }
  122. .signing_upload__item .group .flex-sub .bg-img {
  123. position: relative;
  124. }
  125. .signing_upload__item .group .flex-sub .image-show {
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. }
  130. .signing_upload__item .group .flex-sub .photo {
  131. position: absolute;
  132. }
  133. .signing_upload__item .group .flex-sub .position-right {
  134. position: absolute;
  135. right: 0;
  136. top: 0;
  137. }
  138. .signing_upload__item .tip {
  139. font-family: PingFang SC, PingFang SC;
  140. font-weight: 400;
  141. font-size: 28rpx;
  142. color: #333;
  143. text-align: center;
  144. }
  145. .signing_upload__item .tip .tl {
  146. font-size: 24rpx;
  147. font-weight: 400;
  148. color: #999999;
  149. }
  150. .signing_step {
  151. display: flex;
  152. flex-direction: row;
  153. padding: 0 70rpx 32rpx;
  154. font-size: 28rpx;
  155. }
  156. .signing_step__item {
  157. display: flex;
  158. flex-direction: row;
  159. justify-content: center;
  160. align-items: center;
  161. }
  162. .signing_step__item .list .number {
  163. display: inline-block;
  164. width: 36rpx;
  165. height: 36rpx;
  166. line-height: 36rpx;
  167. text-align: center;
  168. border-radius: 36rpx;
  169. background-color: #999999;
  170. color: #fff;
  171. margin-right: 12rpx;
  172. }
  173. .signing_step__item .list .name {
  174. display: inline-block;
  175. color: #999999;
  176. font-weight: 400;
  177. }
  178. .signing_step__line {
  179. width: 32rpx;
  180. height: 4rpx;
  181. background-color: #D8D8D8;
  182. margin: 0 16rpx;
  183. }
  184. .signing_step__passed .list .number {
  185. background-color: #00B38B;
  186. }
  187. .signing_step__active .list .number {
  188. background-color: #00B38B;
  189. }
  190. .signing_step__active .list .name {
  191. color: #00B38B;
  192. }
  193. .device-log-off {
  194. position: relative;
  195. background-color: #F8F8F8;
  196. }
  197. .device-log-off .content {
  198. width: 100%;
  199. height: 100%;
  200. margin: 52rpx 0 20rpx;
  201. }
  202. .device-log-off .content .split-line {
  203. background-color: #F8F8F8;
  204. height: 20rpx;
  205. }
  206. .device-log-off .content .card {
  207. background-color: #fff;
  208. }
  209. .device-log-off .content .card .title-section {
  210. width: 100%;
  211. display: flex;
  212. justify-content: space-between;
  213. align-items: center;
  214. font-weight: 500;
  215. font-size: 32rpx;
  216. color: #333333;
  217. line-height: 39rpx;
  218. padding: 26rpx;
  219. }
  220. .device-log-off .content .card .title-section .line {
  221. display: inline-block;
  222. width: 8rpx;
  223. height: 28rpx;
  224. background: #08BA81;
  225. border-radius: 4rpx 4rpx 4rpx 4rpx;
  226. margin-right: 12rpx;
  227. }
  228. .device-log-off .content .card .title-section .right-tip {
  229. font-weight: 400;
  230. font-size: 24rpx;
  231. color: #00B38B;
  232. line-height: 34rpx;
  233. }
  234. .device-log-off .content .card .card-content {
  235. font-weight: 400;
  236. font-size: 26rpx;
  237. color: #999999;
  238. }
  239. .device-log-off .content .card .card-content .car-text {
  240. color: #999999;
  241. line-height: 50rpx;
  242. }
  243. .device-log-off .content .card .card-content .desc {
  244. color: #333333;
  245. margin-left: 74rpx;
  246. }
  247. .device-log-off .content .card .card-content .id-text {
  248. color: #323435;
  249. line-height: 50rpx;
  250. margin-top: 10rpx;
  251. margin-bottom: 20rpx;
  252. }
  253. .device-log-off .content .card .card-content .id-name {
  254. color: #F65B5B;
  255. }
  256. .device-log-off .content .card .card-content .uplaodIdCard {
  257. margin-top: 20rpx;
  258. }
  259. .device-log-off .content .card .card-content .money-tip {
  260. color: #999999;
  261. }
  262. .device-log-off .content .card .msg {
  263. margin-top: 60rpx;
  264. font-weight: 400;
  265. font-size: 24rpx;
  266. color: #888888;
  267. line-height: 40rpx;
  268. text-align: left;
  269. }
  270. .device-log-off .content .card .card-content-uplaod {
  271. display: flex;
  272. justify-content: center;
  273. }
  274. .device-log-off .content .card .msg2 {
  275. margin-top: 10rpx;
  276. }
  277. .device-log-off .notify {
  278. position: absolute;
  279. bottom: 150rpx;
  280. height: 65rpx;
  281. width: 100%;
  282. background-color: #F8E8E8;
  283. color: #F65B5B;
  284. padding-left: 20rpx;
  285. line-height: 65rpx;
  286. font-weight: 400;
  287. font-size: 24rpx;
  288. }
  289. .device-log-off .btn {
  290. display: flex;
  291. justify-content: center;
  292. background: #fff;
  293. }
  294. .device-log-off .vDialog .msg-view {
  295. margin-top: 40rpx;
  296. padding: 0 40rpx 20rpx;
  297. }
  298. .device-log-off .vDialog .content_input {
  299. height: 92rpx;
  300. background: #fff;
  301. display: flex;
  302. align-items: center;
  303. margin: 0 40rpx;
  304. border: 1rpx solid #DDDDDD;
  305. }
  306. .device-log-off .vDialog .confirm-view {
  307. background-color: #00B38B;
  308. color: #fff;
  309. display: flex;
  310. justify-content: center;
  311. margin: 60rpx auto;
  312. width: 232rpx;
  313. height: 71rpx;
  314. line-height: 71rpx;
  315. border-radius: 15rpx;
  316. }