index.less 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. .punchClock {
  2. position: relative;
  3. background: #F5F5F5;
  4. min-height: calc(100vh - 50px);
  5. padding: 25px;
  6. .item {
  7. width: 100%;
  8. font-size: 28px;
  9. margin-bottom: 15px;
  10. display: flex;
  11. flex-direction: row;
  12. align-items: center;
  13. justify-content: space-between;
  14. .ititle {
  15. display: flex;
  16. flex-direction: row;
  17. align-items: center;
  18. }
  19. }
  20. .items {
  21. width: 100%;
  22. font-size: 28px;
  23. margin-bottom: 15px;
  24. .ititle {
  25. display: flex;
  26. flex-direction: row;
  27. align-items: center;
  28. .input {
  29. width: 140px;
  30. }
  31. }
  32. .ititles {
  33. display: flex;
  34. flex-direction: row;
  35. }
  36. .text {
  37. font-size: 20px;
  38. color: red;
  39. }
  40. }
  41. .header {
  42. background: #FFFFFF;
  43. padding: 30px;
  44. border-radius: 30px;
  45. margin-bottom: 20px;
  46. .skeleton {
  47. padding: 0;
  48. }
  49. .headerContent {
  50. display: flex;
  51. flex-direction: column;
  52. // flex-flow: row nowrap;
  53. align-items: center;
  54. .item {
  55. .item_name {
  56. width: 80%;
  57. margin-right: 5%;
  58. font-size: 32px;
  59. font-weight: bolder;
  60. }
  61. .item_bt {
  62. position: absolute;
  63. right: 0;
  64. }
  65. }
  66. }
  67. .userAvatarUrl {
  68. width: 100px;
  69. height: 100px;
  70. border-radius: 20px;
  71. overflow: hidden;
  72. }
  73. .infor {
  74. padding-left: 15px;
  75. .name {
  76. font-size: 28px;
  77. padding-bottom: 15px;
  78. }
  79. .address {
  80. font-size: 25px;
  81. color: #8e8d8d;
  82. display: flex;
  83. align-items: flex-start;
  84. .nickname {
  85. width: 270px;
  86. color: #4564DC;
  87. }
  88. }
  89. .types {
  90. font-size: 28px;
  91. margin-top: 10px;
  92. font-weight: bold;
  93. }
  94. }
  95. .state {
  96. margin-left: auto;
  97. font-size: 25px;
  98. align-self: flex-start;
  99. }
  100. .switchContent {
  101. display: flex;
  102. align-items: center;
  103. align-content: center;
  104. border-radius: 30px;
  105. border: 1px #999999 solid;
  106. padding: 11px 10px;
  107. margin-top: 28px;
  108. .switchTitle {
  109. font-size: 18px;
  110. color: #999999;
  111. padding-right: 10px;
  112. }
  113. .switchItem {
  114. width: 25px;
  115. height: 25px;
  116. }
  117. }
  118. }
  119. .content {
  120. background: #FFFFFF;
  121. padding: 30px;
  122. border-radius: 30px;
  123. margin: 0 auto;
  124. display: flex;
  125. flex-flow: column nowrap;
  126. align-items: center;
  127. position: relative;
  128. .enterprise {
  129. width: 94%;
  130. background: #eae8e8;
  131. margin: 0 30px;
  132. padding: 20px;
  133. border-radius: 20px;
  134. .entit {
  135. font-size: 30px;
  136. margin-bottom: 8px;
  137. }
  138. .userlist {
  139. display: flex;
  140. flex-direction: row;
  141. justify-content: space-between;
  142. .username {
  143. font-size: 26px;
  144. line-height: 38px;
  145. color: #4564DC;
  146. max-width: 70%;
  147. }
  148. .switch {
  149. display: flex;
  150. align-items: center;
  151. justify-content: center;
  152. border-radius: 30px;
  153. border: 1px solid #999999;
  154. padding: 11px 10px;
  155. height: 24px;
  156. .stxt {
  157. font-size: 18px;
  158. color: #999999;
  159. padding-right: 10px;
  160. }
  161. .sicon {
  162. width: 25px;
  163. height: 25px;
  164. }
  165. }
  166. }
  167. }
  168. .history {
  169. display: flex;
  170. flex-flow: row nowrap;
  171. justify-content: space-between;
  172. align-items: center;
  173. font-size: 30px;
  174. width: 100%;
  175. }
  176. .noData {
  177. display: flex;
  178. flex-flow: column nowrap;
  179. align-items: center;
  180. justify-content: center;
  181. width: 100%;
  182. margin-top: -20px;
  183. padding-bottom: 225px;
  184. .tipsNoData {
  185. font-size: 28px;
  186. color: #969696;
  187. padding-bottom: 20px;
  188. }
  189. .goOut {
  190. font-size: 28px;
  191. color: #007aff;
  192. }
  193. }
  194. .timeContent {
  195. width: 100%;
  196. padding-top: 20px;
  197. display: flex;
  198. flex-flow: row nowrap;
  199. justify-content: space-between;
  200. padding-bottom: 30px;
  201. .timeItem {
  202. background: #eae8e8;
  203. padding: 20px;
  204. border-radius: 20px;
  205. .timeTitle {
  206. font-size: 30px;
  207. padding-bottom: 8px;
  208. }
  209. .timeValue {
  210. font-size: 27px;
  211. color: #767272;
  212. }
  213. }
  214. }
  215. .map {
  216. position: relative;
  217. height: 600px;
  218. width: 100%;
  219. border-radius: 20px;
  220. overflow: hidden;
  221. #map {
  222. height: 600px;
  223. width: 100%
  224. }
  225. }
  226. .tips {
  227. color: #999999;
  228. font-size: 18px;
  229. padding-top: 10px;
  230. align-self: flex-start;
  231. }
  232. .photographUnusual {
  233. width: 100px;
  234. height: 100px;
  235. box-shadow: 1px 1px 15px 1px red;
  236. border-radius: 50px;
  237. display: flex;
  238. align-items: center;
  239. justify-content: center;
  240. font-size: 20px;
  241. color: #FFFFFF;
  242. position: absolute;
  243. right: 30px;
  244. top: 300px;
  245. }
  246. .punchClockContent {
  247. width: 250px;
  248. height: 250px;
  249. border-radius: 250px;
  250. margin-top: 45px;
  251. display: flex;
  252. flex-flow: column nowrap;
  253. justify-content: center;
  254. align-items: center;
  255. margin-bottom: 20px;
  256. .punchClockTitle {
  257. color: white;
  258. font-size: 35px;
  259. padding-bottom: 8px;
  260. }
  261. .punchClockTime {
  262. color: #e8e6e6;
  263. font-size: 25px;
  264. padding-bottom: 8px;
  265. }
  266. .refreshClock {
  267. color: #f5f6f8;
  268. font-size: 25px;
  269. }
  270. .refresh {
  271. position: absolute;
  272. right: 60px;
  273. }
  274. }
  275. .switchposition {
  276. margin-bottom: 50px;
  277. font-size: 30px;
  278. .stxt {
  279. color: #4395ff;
  280. }
  281. }
  282. .photographContent {
  283. display: flex;
  284. flex-flow: row nowrap;
  285. align-items: center;
  286. justify-content: space-between;
  287. width: 100%;
  288. padding-left: 20px;
  289. padding-right: 20px;
  290. padding-bottom: 25px;
  291. .photographTitle {
  292. font-size: 30px;
  293. .tips {
  294. font-size: 18px;
  295. color: #999999;
  296. }
  297. }
  298. .photograph {}
  299. }
  300. }
  301. .locationContent {
  302. position: absolute;
  303. display: flex;
  304. flex-flow: column nowrap;
  305. padding: 35px;
  306. z-index: 999;
  307. .location {
  308. display: inline-block;
  309. padding: 15px 15px 10px 15px;
  310. background: #FFFFFF;
  311. border-radius: 150px;
  312. margin-bottom: 30px;
  313. .locationIcon {
  314. width: 50px;
  315. height: 50px;
  316. }
  317. }
  318. .punchRange {
  319. display: inline-block;
  320. padding: 15px 15px 10px 15px;
  321. background: #FFFFFF;
  322. border-radius: 150px;
  323. .punchRangeIcon {
  324. width: 50px;
  325. height: 50px;
  326. }
  327. }
  328. }
  329. }
  330. .at-radio__title {
  331. font-size: 26px;
  332. }
  333. .picker {
  334. padding: 5px 15px;
  335. border-radius: 100px;
  336. background: #D7D7D7;
  337. }