index.module.less 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. .tenantAllData {
  2. padding: 0 12px;
  3. min-height: 100vh;
  4. box-sizing: border-box;
  5. .topWrap {
  6. padding-top: 16px;
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. justify-content: space-between;
  11. .topHead {
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. font-size: 17px;
  16. font-weight: 600;
  17. color: #333333;
  18. line-height: 24px;
  19. .topDot {
  20. width: 4px;
  21. height: 14px;
  22. margin-right: 6px;
  23. }
  24. .sanIcon {
  25. margin-left: 6px;
  26. }
  27. }
  28. .timerWrap {
  29. display: flex;
  30. flex-direction: row;
  31. align-items: center;
  32. font-size: 14px;
  33. font-weight: 400;
  34. color: #333333;
  35. .sanIcon {
  36. width: 12px;
  37. height: 12px;
  38. margin-left: 5px;
  39. }
  40. }
  41. }
  42. .cardWrap {
  43. display: flex;
  44. flex-direction: row;
  45. align-items: center;
  46. justify-content: space-between;
  47. margin-top: 18px;
  48. .cardItem {
  49. padding: 8px 16px;
  50. width: 110px;
  51. height: 70px;
  52. background: #ffffff;
  53. border-radius: 10px;
  54. overflow: hidden;
  55. position: relative;
  56. .cardLine {
  57. width: 6px;
  58. height: 70px;
  59. background: #fe6f25;
  60. opacity: 0.24;
  61. position: absolute;
  62. left: 0;
  63. top: 0;
  64. }
  65. }
  66. .cardNum {
  67. font-size: 24px;
  68. font-family: DINAlternate-Bold, DINAlternate;
  69. font-weight: bold;
  70. color: #fe6f25;
  71. line-height: 28px;
  72. }
  73. .studentCard {
  74. .cardLine {
  75. background: #259cfe;
  76. color: #fe6f25;
  77. }
  78. .cardNum {
  79. color: #259cfe;
  80. }
  81. }
  82. .memberCard {
  83. .cardLine {
  84. background: rgba(254, 37, 37, 1);
  85. color: rgba(254, 37, 37, 1);
  86. }
  87. .cardNum {
  88. color: rgba(254, 37, 37, 1);
  89. }
  90. }
  91. .classCard {
  92. .cardLine {
  93. background: #5FC5A7;
  94. color: #5FC5A7;
  95. }
  96. .cardNum {
  97. color: #5FC5A7;
  98. }
  99. }
  100. .cardInfo {
  101. margin-top: 5px;
  102. display: flex;
  103. flex-direction: row;
  104. align-items: center;
  105. font-size: 15px;
  106. font-weight: 400;
  107. color: #777777;
  108. line-height: 21px;
  109. img {
  110. width: 16px;
  111. height: 16px;
  112. }
  113. }
  114. }
  115. .searchWrap {
  116. display: flex;
  117. flex-direction: row;
  118. align-items: center;
  119. .allDataWrap {
  120. padding-left: 0px !important;
  121. }
  122. .searechInfo {
  123. width: 273px;
  124. }
  125. }
  126. .sanIcon {
  127. width: 12px;
  128. height: 12px;
  129. }
  130. .routeSan {
  131. transform: rotate(180deg);
  132. transition: 0.2;
  133. }
  134. .schoolItem {
  135. // display: flex;
  136. // flex-direction: row;
  137. // align-items: center;
  138. // justify-content: space-between;
  139. background-color: #fff;
  140. margin-bottom: 12px;
  141. padding: 12px;
  142. border-radius: 10px;
  143. min-height: 73px;
  144. .title {
  145. font-weight: 400;
  146. color: #777777;
  147. line-height: 17px;
  148. font-size: 12px;
  149. margin-bottom: 6px;
  150. }
  151. .schoolName {
  152. max-width: 305px;
  153. white-space: nowrap;
  154. overflow: hidden;
  155. text-overflow: ellipsis;
  156. font-size: 14px;
  157. font-weight: 500;
  158. color: #333333;
  159. line-height: 20px;
  160. }
  161. .personNum {
  162. font-size: 20px;
  163. font-family: DINAlternate-Bold, DINAlternate;
  164. font-weight: bold;
  165. color: #ff5a56;
  166. line-height: 24px;
  167. text-align: center;
  168. }
  169. .schoolCountWrap {
  170. display: flex;
  171. flex-direction: row;
  172. align-items: center;
  173. &>div {
  174. flex: 1;
  175. padding-top: 14px;
  176. }
  177. .title {
  178. padding-top: 6px;
  179. text-align: center;
  180. }
  181. .personNum {
  182. font-weight: bold;
  183. font-size: 24px;
  184. color: #FF5A56;
  185. line-height: 28px;
  186. font-family: DINAlternate-Bold,
  187. DINAlternate;
  188. img {
  189. width: 30px;
  190. height: 30px;
  191. vertical-align: middle;
  192. }
  193. }
  194. // .arrow {
  195. // width: 6px;
  196. // height: 12px;
  197. // margin-left: 17px;
  198. // }
  199. }
  200. }
  201. }
  202. .topHeadSchool {
  203. font-size: 14px;
  204. display: flex;
  205. flex-direction: row;
  206. align-items: center;
  207. .sanIcon {
  208. margin-left: 5px;
  209. }
  210. }
  211. .detailCard {
  212. width: 100% !important;
  213. }
  214. .studentItem {
  215. display: flex;
  216. flex-direction: row;
  217. // align-items: center;
  218. justify-content: space-between;
  219. background-color: #fff;
  220. margin-bottom: 12px;
  221. padding: 12px;
  222. border-radius: 10px;
  223. .studentNameWrap {
  224. .title {
  225. font-size: 16px;
  226. font-weight: 500;
  227. color: #333333;
  228. line-height: 22px;
  229. margin-bottom: 4px;
  230. max-width: 175px;
  231. white-space: nowrap;
  232. text-overflow: ellipsis;
  233. overflow: hidden;
  234. }
  235. .studentPhone {
  236. font-size: 14px;
  237. font-weight: 400;
  238. color: #777777;
  239. line-height: 20px;
  240. }
  241. }
  242. .studentCountWrap {
  243. font-size: 14px;
  244. font-weight: 400;
  245. color: #777777;
  246. line-height: 20px;
  247. }
  248. }
  249. .emptyC {
  250. padding-bottom: 0;
  251. min-height: calc(100vh - 190px);
  252. }
  253. .refreshC {
  254. min-height: calc(100vh - 190px);
  255. }
  256. .refreshD {
  257. min-height: calc(100vh - 185px);
  258. }
  259. .emptyD {
  260. padding-bottom: 0;
  261. min-height: calc(100vh - 175px);
  262. }
  263. .top {
  264. background-color: #f6f8f9;
  265. padding: 0 12px;
  266. }
  267. .timerWrap {
  268. font-size: 14px;
  269. width: 120px;
  270. }
  271. .schoolList {
  272. display: block;
  273. }
  274. .popupQrcode {
  275. background: transparent;
  276. overflow: visible;
  277. // position: relative;
  278. .iconClose {
  279. position: absolute;
  280. display: inline-block;
  281. width: 32px;
  282. height: 32px;
  283. background: url('./images/icon-close.png') no-repeat center;
  284. background-size: contain;
  285. top: -32px;
  286. right: -9px;
  287. }
  288. .qrcodeBg {
  289. // position: absolute;
  290. // left: 0;
  291. // right: 0;
  292. // top: -40px;
  293. width: 310px;
  294. // margin-top: -40px;
  295. }
  296. .shareContaienr {
  297. width: 310px;
  298. position: relative;
  299. text-align: center;
  300. border-radius: 16px;
  301. text-align: center;
  302. line-height: 0;
  303. font-size: 0;
  304. // margin-top: 40px;
  305. overflow: hidden;
  306. .qrcodeSection {
  307. width: 155px;
  308. height: 155px;
  309. margin: 0 auto;
  310. position: relative;
  311. overflow: hidden;
  312. .qrbg {
  313. position: absolute;
  314. left: 0;
  315. top: 0;
  316. width: 100%;
  317. height: 100%;
  318. }
  319. .mqrcode {
  320. width: 136px !important;
  321. height: 136px !important;
  322. margin: 12px;
  323. }
  324. }
  325. .sectionGroup {
  326. padding: 0 28px 40px;
  327. background: linear-gradient(90deg, #C5ECF8 0%, #D9F9DC 100%);
  328. margin-top: -45px;
  329. position: relative;
  330. z-index: 9;
  331. }
  332. .section {
  333. border-radius: 12px;
  334. background-color: #fff;
  335. padding-bottom: 30px;
  336. }
  337. }
  338. .memo {
  339. padding: 20px 15px;
  340. font-size: 14px;
  341. margin: 0 auto;
  342. font-weight: 500;
  343. font-size: 15px;
  344. color: #000000;
  345. line-height: 21px;
  346. word-break: break-all;
  347. }
  348. .downloadBtn {
  349. margin-top: 29px;
  350. background: linear-gradient(73deg, #5BECFF 0%, #259CFE 100%);
  351. border: none;
  352. border-radius: 10px;
  353. height: 47px;
  354. max-width: 264px;
  355. margin: 29px auto 0;
  356. }
  357. }