index.module.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  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. :global {
  42. .van-dropdown-menu__bar {
  43. padding-bottom: 7Px;
  44. height: auto;
  45. background-color: transparent;
  46. }
  47. .van-dropdown-menu__title {
  48. padding: 0;
  49. &::after {
  50. display: none;
  51. }
  52. }
  53. .van-dropdown-menu__title--active {
  54. .areaWrapActive {
  55. span {
  56. color: #028FF6;
  57. }
  58. .iconArrowActive {
  59. background: url('./images/icon-arrow-active.png') no-repeat center;
  60. background-size: contain;
  61. }
  62. }
  63. }
  64. }
  65. }
  66. .cardWrap {
  67. display: flex;
  68. flex-direction: row;
  69. align-items: center;
  70. flex-wrap: wrap;
  71. justify-content: space-between;
  72. margin-top: 18px;
  73. .cardItem {
  74. // flex: 1;
  75. flex-basis: 48.6%;
  76. padding: 8px 16px;
  77. // width: 110px;
  78. height: 70px;
  79. background: #ffffff;
  80. border-radius: 10px;
  81. overflow: hidden;
  82. position: relative;
  83. margin-bottom: 8px;
  84. // &+.cardItem {
  85. // margin-left: 8px;
  86. // }
  87. // &:nth-child(2n + 2) {
  88. // margin-left: 8px;
  89. // }
  90. .cardLine {
  91. width: 6px;
  92. height: 70px;
  93. background: #fe6f25;
  94. opacity: 0.24;
  95. position: absolute;
  96. left: 0;
  97. top: 0;
  98. }
  99. }
  100. .cardNum {
  101. font-size: 24px;
  102. font-family: DINAlternate-Bold, DINAlternate;
  103. font-weight: bold;
  104. color: #fe6f25;
  105. line-height: 28px;
  106. padding-left: 2px;
  107. }
  108. .studentCard {
  109. .cardLine {
  110. background: #259cfe;
  111. color: #fe6f25;
  112. }
  113. .cardNum {
  114. color: #259cfe;
  115. }
  116. }
  117. .memberCard {
  118. .cardLine {
  119. background: rgba(254, 37, 37, 1);
  120. color: rgba(254, 37, 37, 1);
  121. }
  122. .cardNum {
  123. color: rgba(254, 37, 37, 1);
  124. }
  125. }
  126. .memberRateCard {
  127. .cardLine {
  128. background: #5FC5A7;
  129. color: #5FC5A7;
  130. }
  131. .cardNum {
  132. color: #33B48E;
  133. }
  134. }
  135. .classCard {
  136. .cardLine {
  137. background: #5FC5A7;
  138. color: #5FC5A7;
  139. }
  140. .cardNum {
  141. color: #5FC5A7;
  142. }
  143. }
  144. .cardInfo {
  145. margin-top: 5px;
  146. display: flex;
  147. flex-direction: row;
  148. align-items: center;
  149. font-size: 14px;
  150. font-weight: 400;
  151. color: #777777;
  152. line-height: 21px;
  153. img {
  154. width: 18px;
  155. height: 18px;
  156. margin-right: 3px;
  157. }
  158. }
  159. }
  160. .searchWrap {
  161. display: flex;
  162. flex-direction: row;
  163. align-items: center;
  164. .allDataWrap {
  165. padding-left: 0px !important;
  166. }
  167. .searechInfo {
  168. width: 273px;
  169. }
  170. .timerWrap img {
  171. margin-left: 4px;
  172. flex-shrink: 0;
  173. }
  174. }
  175. .areaWrap {
  176. display: flex;
  177. align-items: center;
  178. justify-content: center;
  179. padding: 8px 10px;
  180. border-radius: 30px;
  181. background-color: #fff;
  182. .iconAddress {
  183. display: inline-block;
  184. width: 16px;
  185. height: 18px;
  186. background: url('./images/icon-address.png') no-repeat center;
  187. background-size: contain;
  188. flex-shrink: 0;
  189. }
  190. span {
  191. padding: 0 4px;
  192. font-weight: 600;
  193. font-size: 15px;
  194. color: #333333;
  195. max-width: 190px;
  196. white-space: nowrap;
  197. overflow: hidden;
  198. text-overflow: ellipsis;
  199. }
  200. .iconArrow {
  201. width: 9px;
  202. height: 5px;
  203. display: inline-block;
  204. background: url('./images/icon-arrow.png') no-repeat center;
  205. background-size: contain;
  206. flex-shrink: 0;
  207. }
  208. }
  209. .topHeadIndex {
  210. padding-bottom: 7Px;
  211. }
  212. .cardWrapIndex {
  213. margin-top: 10px;
  214. }
  215. .sanIcon {
  216. width: 9px;
  217. height: 5px;
  218. }
  219. .routeSan {
  220. transform: rotate(180deg);
  221. transition: 0.2;
  222. }
  223. .schoolItem {
  224. // display: flex;
  225. // flex-direction: row;
  226. // align-items: center;
  227. // justify-content: space-between;
  228. background-color: #fff;
  229. margin-bottom: 12px;
  230. padding: 12px;
  231. border-radius: 10px;
  232. min-height: 73px;
  233. &.schoolItemOther {
  234. padding: 12px 0;
  235. .schoolNameWrap {
  236. padding: 0 12px;
  237. }
  238. }
  239. .title {
  240. font-weight: 400;
  241. color: #777777;
  242. line-height: 17px;
  243. font-size: 12px;
  244. margin-bottom: 6px;
  245. }
  246. .schoolName {
  247. max-width: 305px;
  248. white-space: nowrap;
  249. overflow: hidden;
  250. text-overflow: ellipsis;
  251. font-size: 14px;
  252. font-weight: 500;
  253. color: #333333;
  254. line-height: 20px;
  255. }
  256. .personNum {
  257. font-size: 20px;
  258. font-family: DINAlternate-Bold, DINAlternate;
  259. font-weight: bold;
  260. color: #ff5a56;
  261. line-height: 24px;
  262. display: flex;
  263. align-items: center;
  264. justify-content: center;
  265. }
  266. .schoolCountWrap {
  267. display: flex;
  268. flex-direction: row;
  269. align-items: center;
  270. &>div {
  271. flex: 1;
  272. padding-top: 14px;
  273. }
  274. .title {
  275. padding-top: 6px;
  276. text-align: center;
  277. }
  278. .personNum {
  279. font-weight: bold;
  280. font-size: 24px;
  281. color: #FF5A56;
  282. line-height: 30px;
  283. font-family: DINAlternate-Bold,
  284. DINAlternate;
  285. img {
  286. width: 30px;
  287. height: 30px;
  288. vertical-align: middle;
  289. }
  290. }
  291. // .arrow {
  292. // width: 6px;
  293. // height: 12px;
  294. // margin-left: 17px;
  295. // }
  296. }
  297. }
  298. }
  299. .popSearchList {
  300. width: 128px;
  301. background: #FFFFFF;
  302. box-shadow: 0 2px 12px 0px rgba(50, 50, 51, 0.12);
  303. padding: 0 8px;
  304. border-radius: 8px;
  305. overflow: hidden;
  306. .popSearchItem {
  307. overflow: hidden;
  308. .popSearchItemChild {
  309. margin: 5px 0;
  310. padding: 6px 14px;
  311. font-size: 14px;
  312. color: #323233;
  313. line-height: 20px;
  314. text-shadow: 0 2px 12px rgba(50, 50, 51, 0.12);
  315. border-radius: 4px;
  316. &.popSearchItemActive {
  317. background: #EEF8FF;
  318. font-weight: 500;
  319. color: #028FF6;
  320. }
  321. }
  322. }
  323. }
  324. .topHeadSchool {
  325. font-size: 14px;
  326. display: flex;
  327. flex-direction: row;
  328. align-items: center;
  329. .sanIcon {
  330. margin-left: 5px;
  331. }
  332. }
  333. .detailCard {
  334. width: 100% !important;
  335. }
  336. .studentItem {
  337. display: flex;
  338. flex-direction: row;
  339. // align-items: center;
  340. justify-content: space-between;
  341. background-color: #fff;
  342. margin-bottom: 12px;
  343. padding: 12px;
  344. border-radius: 10px;
  345. .studentNameWrap {
  346. .title {
  347. font-size: 16px;
  348. font-weight: 500;
  349. color: #333333;
  350. line-height: 22px;
  351. margin-bottom: 4px;
  352. max-width: 175px;
  353. white-space: nowrap;
  354. text-overflow: ellipsis;
  355. overflow: hidden;
  356. }
  357. .studentPhone {
  358. font-size: 14px;
  359. font-weight: 400;
  360. color: #777777;
  361. line-height: 20px;
  362. }
  363. }
  364. .studentCountWrap {
  365. font-size: 14px;
  366. font-weight: 400;
  367. color: #777777;
  368. line-height: 20px;
  369. }
  370. }
  371. .emptyC {
  372. padding-bottom: 0;
  373. min-height: calc(100vh - var(--header-height));
  374. }
  375. .refreshC {
  376. min-height: calc(100vh - var(--header-height));
  377. }
  378. .refreshD {
  379. min-height: calc(100vh - 185px);
  380. }
  381. .emptyD {
  382. padding-bottom: 0;
  383. min-height: calc(100vh - 175px);
  384. }
  385. .top {
  386. background-color: #f6f8f9;
  387. padding: 0 12px;
  388. }
  389. .timerWrap {
  390. font-size: 14px;
  391. width: 105px;
  392. display: flex;
  393. align-items: center;
  394. justify-content: center;
  395. &.timerWrapActive {
  396. color: #028FF6;
  397. }
  398. }
  399. .schoolList {
  400. display: block;
  401. }
  402. .popupQrcode {
  403. background: transparent;
  404. overflow: visible;
  405. // position: relative;
  406. .iconClose {
  407. position: absolute;
  408. display: inline-block;
  409. width: 32px;
  410. height: 32px;
  411. background: url('./images/icon-close.png') no-repeat center;
  412. background-size: contain;
  413. top: -32px;
  414. right: -9px;
  415. }
  416. .image {
  417. width: 100%;
  418. }
  419. .btnText {
  420. text-align: center;
  421. padding-top: 30px;
  422. font-size: 16px;
  423. color: #fff;
  424. font-weight: 600;
  425. }
  426. }
  427. .qrcodeBg {
  428. // position: absolute;
  429. // left: 0;
  430. // right: 0;
  431. // top: -40px;
  432. width: 310px;
  433. // margin-top: -40px;
  434. }
  435. .qrcodeBgDom {
  436. width: 310px;
  437. height: 158px;
  438. background: url('./images/qrcode-bg.png') no-repeat center;
  439. background-size: contain;
  440. }
  441. .templateSection {
  442. position: absolute;
  443. z-index: -10;
  444. top: -1000px;
  445. left: 0;
  446. // transform: translateX(9999px);
  447. }
  448. .shareContaienr {
  449. width: 310px;
  450. position: relative;
  451. text-align: center;
  452. border-radius: 16px;
  453. text-align: center;
  454. line-height: 0;
  455. font-size: 0;
  456. // margin-top: 40px;
  457. overflow: hidden;
  458. .qrcodeSection {
  459. width: 155px;
  460. height: 155px;
  461. margin: 0 auto;
  462. position: relative;
  463. overflow: hidden;
  464. .qrbg {
  465. position: absolute;
  466. left: 0;
  467. top: 0;
  468. width: 100%;
  469. height: 100%;
  470. }
  471. .mqrcode {
  472. width: 136px !important;
  473. height: 136px !important;
  474. margin: 12px;
  475. }
  476. }
  477. .sectionGroup {
  478. padding: 0 28px 40px;
  479. background: linear-gradient(90deg, #C5ECF8 0%, #D9F9DC 100%);
  480. margin-top: -45px;
  481. position: relative;
  482. z-index: 9;
  483. }
  484. .section {
  485. border-radius: 12px;
  486. background-color: #fff;
  487. padding-bottom: 30px;
  488. }
  489. }
  490. .memo {
  491. padding: 20px 15px;
  492. font-size: 14px;
  493. margin: 0 auto;
  494. font-weight: 500;
  495. font-size: 15px;
  496. color: #000000;
  497. line-height: 21px;
  498. word-break: break-all;
  499. }
  500. .downloadBtn {
  501. margin-top: 29px;
  502. background: linear-gradient(73deg, #5BECFF 0%, #259CFE 100%);
  503. border: none;
  504. border-radius: 10px;
  505. height: 47px;
  506. max-width: 264px;
  507. margin: 29px auto 0;
  508. }
  509. .areaList {
  510. display: flex;
  511. flex: 1;
  512. overflow-x: hidden;
  513. overflow-y: auto;
  514. min-height: 240px;
  515. max-height: 300px;
  516. .areaItem {
  517. flex: 1;
  518. max-width: 33.33%;
  519. padding: 8px 5px;
  520. }
  521. .areaItemChild {
  522. padding: 0 8px;
  523. border-radius: 6px;
  524. background: #fff;
  525. font-size: 14px;
  526. line-height: 36px;
  527. height: 36px;
  528. color: #333333;
  529. margin-bottom: 4px;
  530. white-space: nowrap;
  531. overflow: hidden;
  532. text-overflow: ellipsis;
  533. display: block;
  534. }
  535. .areaItemChildActive {
  536. font-weight: 500;
  537. color: #028FF6;
  538. background: #EEF8FF;
  539. }
  540. }
  541. .btnGroup {
  542. padding: 9px 13px;
  543. display: flex;
  544. align-items: center;
  545. :global {
  546. .van-button {
  547. height: 44px;
  548. font-weight: 400;
  549. font-size: 16px;
  550. }
  551. .van-button+.van-button {
  552. margin-left: 15px;
  553. }
  554. }
  555. }