clock.wxss 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. /* pages/clock/clock.wxss */
  2. page {
  3. background: rgba(245, 245, 245, 1);
  4. font-family: PingFangSC-Regular, PingFang SC;
  5. padding-bottom: 30rpx;
  6. }
  7. .video {
  8. width: 710rpx;
  9. height: 268rpx;
  10. margin: 20rpx;
  11. box-shadow: 0rpx 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06);
  12. }
  13. .no-pass,
  14. .no-authentication {
  15. position: relative;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. flex-direction: column;
  20. }
  21. .header {
  22. width: 100%;
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. z-index: -1;
  27. }
  28. .no-pass-bg,
  29. .no-authentication-bg {
  30. width: 100%;
  31. }
  32. .no-pass-content,
  33. .no-authentication-content {
  34. width: 690rpx;
  35. height: 840rpx;
  36. background: rgba(255, 255, 255, 1);
  37. box-shadow: 0px 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06);
  38. border-radius: 32rpx;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. flex-direction: column;
  43. margin-top: 70rpx;
  44. }
  45. .no-passs-img,
  46. .no-authentication-img {
  47. height: 269rpx;
  48. width: 360rpx;
  49. }
  50. .no-pass-content-text,
  51. .no-authentication-content-text {
  52. margin-top: 57rpx;
  53. }
  54. .no-pass-content-text view:first-child,
  55. .no-authentication-content-text view:first-child {
  56. text-align: center;
  57. font-size: 42rpx;
  58. color: #000;
  59. font-family: PingFangSC-Medium, PingFang SC;
  60. font-weight: 500;
  61. }
  62. .no-pass-content-text view:last-child,
  63. .no-authentication-content-text view:last-child {
  64. text-align: center;
  65. font-size: 24rpx;
  66. color: #666;
  67. font-family: PingFangSC-Regular, PingFang SC;
  68. font-weight: 400;
  69. margin-top: 20rpx;
  70. }
  71. .no-pass-content-button,
  72. .no-authentication-content-button {
  73. width: 560rpx;
  74. height: 88rpx;
  75. color: #fff;
  76. font-family: PingFangSC-Semibold, PingFang SC;
  77. font-weight: 600;
  78. line-height: 88rpx;
  79. text-align: center;
  80. background: rgba(0, 122, 255, 1);
  81. border-radius: 10rpx;
  82. border: 2rpx solid rgba(0, 122, 255, 1);
  83. margin-top: 88rpx;
  84. }
  85. .pass {
  86. display: flex;
  87. align-items: center;
  88. flex-direction: column;
  89. }
  90. .pass-header {
  91. width: 100%;
  92. display: flex;
  93. align-items: center;
  94. justify-content: center;
  95. flex-direction: column;
  96. position: relative;
  97. }
  98. .pass-header-bg {
  99. position: absolute;
  100. left: 0;
  101. top: 0;
  102. width: 100%;
  103. z-index: -1;
  104. }
  105. .pass-header-content {
  106. width: 70%;
  107. font-size: 28rpx;
  108. font-family: PingFangSC-Regular, PingFang SC;
  109. font-weight: 400;
  110. color: #fff;
  111. display: flex;
  112. align-items: center;
  113. justify-content: space-between;
  114. margin-top: 100rpx;
  115. }
  116. .number {
  117. font-size: 68rpx;
  118. font-family: DINCondensed-Bold, DINCondensed;
  119. font-weight: bold;
  120. color: #FFFFFF;
  121. }
  122. .unit {
  123. font-size: 28rpx;
  124. }
  125. .pass-header-message {
  126. font-size: 22rpx;
  127. font-family: PingFangSC-Medium, PingFang SC;
  128. font-weight: 500;
  129. color: rgba(255, 255, 255, 0.7);
  130. margin-top: 20rpx;
  131. }
  132. .pass-header-footer {
  133. width: 690rpx;
  134. height: 164rpx;
  135. display: flex;
  136. align-items: center;
  137. justify-content: space-around;
  138. background: #FFFFFF;
  139. box-shadow: 0px 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06);
  140. border-radius: 32rpx;
  141. margin-top: 20rpx;
  142. }
  143. .pass-header-footer-view {
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. flex-direction: column;
  148. }
  149. .pass-header-footer-view image {
  150. width: 48rpx;
  151. height: 52rpx;
  152. }
  153. .pass-header-footer-view text {
  154. font-size: 24rpx;
  155. font-family: PingFangSC-Regular, PingFang SC;
  156. font-weight: 400;
  157. color: #666666;
  158. margin-top: 16rpx;
  159. }
  160. .pass-content {
  161. width: 690rpx;
  162. height: 748rpx;
  163. background: #FFFFFF;
  164. box-shadow: 0px 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06);
  165. border-radius: 32rpx;
  166. margin-top: 20rpx;
  167. padding: 30rpx 27rpx;
  168. box-sizing: border-box;
  169. }
  170. .status {
  171. width: 100%;
  172. display: flex;
  173. align-items: center;
  174. justify-content: space-between;
  175. }
  176. .clock-in,
  177. .clock-out {
  178. width: 310rpx;
  179. height: 98rpx;
  180. font-size: 28rpx;
  181. font-family: PingFangSC-Regular, PingFang SC;
  182. font-weight: 400;
  183. color: #000000;
  184. background: #F5F5F5;
  185. box-sizing: border-box;
  186. padding-left: 30rpx;
  187. border-radius: 10rpx;
  188. display: flex;
  189. flex-direction: column;
  190. justify-content: center;
  191. }
  192. .clock-time {
  193. display: flex;
  194. align-items: center;
  195. }
  196. .clock-time image {
  197. width: 22rpx;
  198. height: 22rpx;
  199. margin-right: 10rpx;
  200. }
  201. .status-text {
  202. font-size: 26rpx;
  203. font-family: PingFangSC-Regular, PingFang SC;
  204. font-weight: 400;
  205. color: #999999;
  206. }
  207. .rule-messgae {
  208. width: 100%;
  209. font-size: 24rpx;
  210. font-family: PingFangSC-Regular, PingFang SC;
  211. font-weight: 400;
  212. color: #999999;
  213. margin-top: 20rpx;
  214. padding-bottom: 100rpx;
  215. }
  216. .image {
  217. height: 260rpx;
  218. width: 260rpx;
  219. display: flex;
  220. align-items: center;
  221. justify-content: center;
  222. margin: 0 auto;
  223. }
  224. .image image {
  225. height: 260rpx;
  226. width: 260rpx;
  227. }
  228. .clock-status {
  229. font-size: 26rpx;
  230. font-family: PingFangSC-Regular, PingFang SC;
  231. font-weight: 400;
  232. color: #666666;
  233. padding-top: 70rpx;
  234. display: flex;
  235. align-items: center;
  236. justify-content: center;
  237. }
  238. .clock-status image {
  239. height: 30rpx;
  240. width: 30rpx;
  241. margin-right: 12rpx;
  242. }
  243. .reload-location {
  244. font-size: 26rpx;
  245. font-family: PingFangSC-Semibold, PingFang SC;
  246. font-weight: 600;
  247. color: #007AFF;
  248. padding-top: 40rpx;
  249. display: flex;
  250. justify-content: center;
  251. align-items: center;
  252. }
  253. .reload-location image {
  254. height: 24rpx;
  255. width: 24rpx;
  256. margin-right: 15rpx;
  257. }
  258. .prepayable {
  259. width: 100%;
  260. font-size: 26rpx;
  261. font-family: PingFangSC-Regular, PingFang SC;
  262. font-weight: 400;
  263. color: #000000;
  264. display: flex;
  265. align-items: center;
  266. justify-content: space-between;
  267. margin-top: 164rpx;
  268. }
  269. .prepayable-number {
  270. font-size: 58rpx;
  271. font-family: DINCondensed-Bold, DINCondensed;
  272. font-weight: bold;
  273. color: #0177FF;
  274. }
  275. .prepayable-unit {
  276. font-family: PingFangSC-Semibold, PingFang SC;
  277. margin-left: 8rpx;
  278. }
  279. .height {
  280. height: 894rpx;
  281. }
  282. .cover {
  283. position: fixed;
  284. left: 0;
  285. top: 0;
  286. height: 100%;
  287. width: 100%;
  288. background: rgba(0, 0, 0, 0.6);
  289. display: flex;
  290. align-items: center;
  291. justify-content: center;
  292. }
  293. .cover-kefu {
  294. width: 600rpx;
  295. height: 504rpx;
  296. background: #FFFFFF;
  297. border-radius: 30rpx;
  298. display: flex;
  299. align-items: center;
  300. justify-content: center;
  301. flex-direction: column;
  302. }
  303. .cover-kefu-title {
  304. font-size: 34rpx;
  305. font-family: PingFangSC-Medium, PingFang SC;
  306. font-weight: 500;
  307. color: #333333;
  308. }
  309. .cover-kefu-number {
  310. font-size: 48rpx;
  311. font-family: PingFangSC-Medium, PingFang SC;
  312. font-weight: 500;
  313. color: #333333;
  314. margin-top: 30rpx;
  315. margin-bottom: 20rpx;
  316. }
  317. .cover-kefu-tips {
  318. font-size: 28rpx;
  319. font-family: PingFangSC-Regular, PingFang SC;
  320. font-weight: 400;
  321. color: #666666;
  322. }
  323. .cover-kefu-button {
  324. width: 392rpx;
  325. height: 88rpx;
  326. font-size: 34rpx;
  327. font-family: PingFangSC-Medium, PingFang SC;
  328. font-weight: 500;
  329. color: #FFFFFF;
  330. background: #007AFF;
  331. border-radius: 44rpx;
  332. margin-top: 72rpx;
  333. display: flex;
  334. align-items: center;
  335. justify-content: center;
  336. }
  337. .cover-kefu-button image {
  338. width: 36rpx;
  339. height: 35rpx;
  340. margin-right: 20rpx;
  341. }