clock.wxss 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. /* pages/clock/clock.wxss */
  2. page {
  3. background: rgba(245, 245, 245, 1);
  4. font-family: PingFangSC-Regular, PingFang SC;
  5. /* padding-bottom: 20rpx; */
  6. }
  7. .video {
  8. width: 710rpx;
  9. height: 248rpx;
  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: 16rpx;
  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: 16rpx;
  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. margin-left: 10rpx;
  125. }
  126. .pass-header-message {
  127. font-size: 22rpx;
  128. font-family: PingFangSC-Medium, PingFang SC;
  129. font-weight: 500;
  130. color: rgba(255, 255, 255, 0.7);
  131. margin-top: 20rpx;
  132. }
  133. .pass-header-footer {
  134. width: 690rpx;
  135. height: 164rpx;
  136. display: flex;
  137. align-items: center;
  138. justify-content: space-around;
  139. background: #FFFFFF;
  140. /* box-shadow: 0px 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06); */
  141. border-radius: 16rpx;
  142. margin-top: 60rpx;
  143. }
  144. .pass-header-footer-view {
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. flex-direction: column;
  149. }
  150. .pass-header-footer-view image {
  151. width: 48rpx;
  152. height: 52rpx;
  153. }
  154. .pass-header-footer-view text {
  155. font-size: 24rpx;
  156. font-family: PingFangSC-Regular, PingFang SC;
  157. font-weight: 400;
  158. color: #666666;
  159. margin-top: 16rpx;
  160. }
  161. .pass-content {
  162. width: 690rpx;
  163. min-height: 748rpx;
  164. background: #fff;
  165. /* box-shadow: 0px 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06); */
  166. border-radius: 16rpx;
  167. margin-top: 20rpx;
  168. padding: 30rpx 27rpx;
  169. padding-bottom: 0;
  170. box-sizing: border-box;
  171. }
  172. .status {
  173. width: 100%;
  174. display: flex;
  175. align-items: center;
  176. justify-content: space-between;
  177. }
  178. .clock-in,
  179. .clock-out {
  180. width: 310rpx;
  181. height: 98rpx;
  182. font-size: 28rpx;
  183. font-family: PingFangSC-Regular, PingFang SC;
  184. font-weight: 400;
  185. color: #000000;
  186. background: #F5F5F5;
  187. box-sizing: border-box;
  188. padding-left: 30rpx;
  189. border-radius: 8rpx;
  190. display: flex;
  191. flex-direction: column;
  192. justify-content: center;
  193. }
  194. .clock-time {
  195. display: flex;
  196. align-items: center;
  197. }
  198. .clock-time image {
  199. width: 22rpx;
  200. height: 22rpx;
  201. margin-right: 10rpx;
  202. }
  203. .status-text {
  204. font-size: 26rpx;
  205. font-family: PingFangSC-Regular, PingFang SC;
  206. font-weight: 400;
  207. color: #999999;
  208. }
  209. .rule-messgae {
  210. width: 100%;
  211. font-size: 24rpx;
  212. font-family: PingFangSC-Regular, PingFang SC;
  213. font-weight: 400;
  214. color: #999999;
  215. margin-top: 20rpx;
  216. padding-bottom: 100rpx;
  217. }
  218. .image {
  219. height: 260rpx;
  220. width: 260rpx;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. margin: 0 auto;
  225. }
  226. .image image {
  227. height: 260rpx;
  228. width: 260rpx;
  229. }
  230. .clock-status {
  231. font-size: 26rpx;
  232. font-family: PingFangSC-Regular, PingFang SC;
  233. font-weight: 400;
  234. color: #666666;
  235. padding-top: 70rpx;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. }
  240. .clock-status image {
  241. height: 30rpx;
  242. width: 30rpx;
  243. margin-right: 12rpx;
  244. }
  245. .reload-location {
  246. font-size: 26rpx;
  247. font-family: PingFangSC-Semibold, PingFang SC;
  248. font-weight: 600;
  249. color: #007AFF;
  250. padding-top: 40rpx;
  251. padding-bottom: 70rpx;
  252. display: flex;
  253. justify-content: center;
  254. align-items: center;
  255. }
  256. .reload-location image {
  257. height: 24rpx;
  258. width: 24rpx;
  259. margin-right: 15rpx;
  260. }
  261. .prepayable {
  262. width: 100%;
  263. font-size: 26rpx;
  264. font-family: PingFangSC-Regular, PingFang SC;
  265. font-weight: 400;
  266. color: #000000;
  267. display: flex;
  268. align-items: center;
  269. justify-content: space-between;
  270. margin-top: 151rpx;
  271. padding-bottom: 40rpx;
  272. }
  273. .prepayable-number {
  274. font-size: 58rpx;
  275. font-family: DINCondensed-Bold, DINCondensed;
  276. font-weight: bold;
  277. color: #0177FF;
  278. }
  279. .prepayable-unit {
  280. font-family: PingFangSC-Semibold, PingFang SC;
  281. margin-left: 8rpx;
  282. }
  283. .cover {
  284. position: fixed;
  285. left: 0;
  286. top: 0;
  287. height: 100%;
  288. width: 100%;
  289. background: rgba(0, 0, 0, 0.6);
  290. display: flex;
  291. align-items: center;
  292. justify-content: center;
  293. }
  294. .cover-kefu {
  295. width: 600rpx;
  296. height: 504rpx;
  297. background: #FFFFFF;
  298. border-radius: 16rpx;
  299. display: flex;
  300. align-items: center;
  301. justify-content: center;
  302. flex-direction: column;
  303. }
  304. .cover-kefu-title {
  305. font-size: 34rpx;
  306. font-family: PingFangSC-Medium, PingFang SC;
  307. font-weight: 500;
  308. color: #333333;
  309. }
  310. .cover-kefu-number {
  311. font-size: 48rpx;
  312. font-family: PingFangSC-Medium, PingFang SC;
  313. font-weight: 500;
  314. color: #333333;
  315. margin-top: 30rpx;
  316. margin-bottom: 20rpx;
  317. }
  318. .cover-kefu-tips {
  319. font-size: 28rpx;
  320. font-family: PingFangSC-Regular, PingFang SC;
  321. font-weight: 400;
  322. color: #666666;
  323. }
  324. .cover-kefu-button {
  325. width: 392rpx;
  326. height: 88rpx;
  327. font-size: 34rpx;
  328. font-family: PingFangSC-Medium, PingFang SC;
  329. font-weight: 500;
  330. color: #FFFFFF;
  331. background: #007AFF;
  332. border-radius: 16rpx;
  333. margin-top: 72rpx;
  334. display: flex;
  335. align-items: center;
  336. justify-content: center;
  337. }
  338. .cover-kefu-button image {
  339. width: 36rpx;
  340. height: 35rpx;
  341. margin-right: 20rpx;
  342. }
  343. .settingVisible{
  344. color: #000;
  345. font-size: 34rpx;
  346. font-weight: 600;
  347. }