index.less 5.9 KB

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