style.scss 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. .container {
  2. overflow-x: scroll;
  3. background: #ffffff;
  4. .bl-user-con {
  5. position: relative;
  6. .user-bg {
  7. @include WH(100%, 100px);
  8. background: linear-gradient(135deg, #e6f7ff, #d5f1ff);
  9. .icon-maotouying {
  10. @include FONT(#eaf8ff, 118px, 400);
  11. margin-top: -20px;
  12. margin-left: 5px;
  13. display: inline-block;
  14. }
  15. }
  16. .user-info {
  17. padding: 0 20px 16px;
  18. margin-top: -12px;
  19. background: #f9f9f9;
  20. border-top-left-radius: 10px;
  21. border-top-right-radius: 10px;
  22. position: relative;
  23. .user-avatar {
  24. @include WH(80px, 80px);
  25. border-radius: 50%;
  26. border: 3px solid #ffffff;
  27. margin: -40px 0 0 0;
  28. }
  29. .user-name {
  30. margin-top: 4px;
  31. display: flex;
  32. flex-direction: column;
  33. text-align: left;
  34. span:nth-child(1) {
  35. @include FLEX(flex, row, flex-start, center);
  36. .name {
  37. @include FONT(#333333, 18px, 500);
  38. }
  39. .icon-boy,
  40. .icon-girl {
  41. margin: 0 5px 0 10px;
  42. @include FONT(#26baee, 18px, 400);
  43. }
  44. .icon-girl {
  45. color: #ff8673;
  46. }
  47. .age {
  48. @include FONT(#999999, 14px, 400);
  49. }
  50. }
  51. span:nth-child(2) {
  52. @include FONT(#999999, 14px, 400);
  53. margin-top: 6px;
  54. }
  55. }
  56. .chart-btn {
  57. position: absolute;
  58. right: 16px;
  59. top: 5px;
  60. img {
  61. @include WH(50px, 50px);
  62. display: block;
  63. margin: 0 auto;
  64. }
  65. .btn {
  66. @include WH(auto, 20px);
  67. border: 1px solid #ededed;
  68. border-radius: 20px;
  69. @include FONT(#999999, 12px, 400);
  70. text-align: center;
  71. line-height: 20px;
  72. padding: 0 5px;
  73. display: block;
  74. margin-top: 8px;
  75. }
  76. }
  77. }
  78. .change-user {
  79. width: 90px;
  80. height: 32px;
  81. background: #9ad8f2;
  82. border-radius: 50px 0px 0px 50px;
  83. @include FONT(#ffffff, 12px, 400);
  84. @include FLEX(flex, row, center, center);
  85. position: absolute;
  86. top: 30px;
  87. right: 0;
  88. .icon-qiehuan {
  89. font-size: 16px;
  90. margin-right: 4px;
  91. }
  92. }
  93. }
  94. .date-box {
  95. border-bottom: 1px solid #ededed;
  96. .date-bar {
  97. width: 100%;
  98. white-space: nowrap;
  99. .date-item {
  100. width: 40px;
  101. height: 40px;
  102. padding: 0 6px;
  103. border-radius: 6px;
  104. background: rgba(237, 237, 237, 0.06);
  105. border: 1px solid #ededed;
  106. @include FONT(#999999, 12px, 600);
  107. display: inline-block;
  108. margin: 10px 0 6px 10px;
  109. overflow: hidden;
  110. span {
  111. height: 40px;
  112. @include FLEX(flex, column, center, center);
  113. }
  114. }
  115. .date-item:last-child {
  116. margin-right: 6px;
  117. }
  118. .checked {
  119. background: rgba(3, 159, 222, 0.06);
  120. border-color: #039fde;
  121. color: #039fde;
  122. }
  123. }
  124. }
  125. .date-box::-webkit-scrollbar {
  126. height: 0 !important;
  127. }
  128. .date-box {
  129. -ms-overflow-style: none;
  130. }
  131. .date-box {
  132. overflow: -moz-scrollbars-none;
  133. }
  134. .school-box {
  135. height: 80px;
  136. background: #ccf3ed;
  137. border-radius: 10px;
  138. margin: 12px 16px;
  139. padding: 9px 12px;
  140. box-sizing: border-box;
  141. .title {
  142. @include FONT(#333333, 12px, 500);
  143. }
  144. .center {
  145. @include FONT(#333333, 16px, 500);
  146. text-align: center;
  147. span:last-child {
  148. font-size: 14px;
  149. margin-top: 2px;
  150. display: block;
  151. }
  152. }
  153. }
  154. .result-memo {
  155. // margin: 0 10px 10px 10px;
  156. @include FONT(#999999, 12px, 400);
  157. @include FLEX(flex, row, flex-start, flex-start);
  158. .label {
  159. min-width: 60px;
  160. }
  161. .text {
  162. @include FONT(#333333, 14px, 400);
  163. display: block;
  164. }
  165. }
  166. .report-box {
  167. .cell-item {
  168. padding: 16px;
  169. .title {
  170. @include FONT(#333333, 14px, 500);
  171. margin-bottom: 16px;
  172. }
  173. .eye-grid {
  174. @include FLEX(flex, row, space-between, center);
  175. padding: 0 60px;
  176. span {
  177. display: block;
  178. text-align: center;
  179. @include FONT(#666666, 12px, 400);
  180. line-height: 25px;
  181. }
  182. span:nth-child(2) {
  183. @include FONT(#333333, 18px, 500);
  184. }
  185. .line {
  186. width: 80px;
  187. height: 4px;
  188. background: #00caa2;
  189. border-radius: 4px;
  190. }
  191. .red {
  192. background: #ff3500;
  193. }
  194. .green {
  195. background: #00caa2;
  196. }
  197. }
  198. .eye-table {
  199. .th {
  200. @include FLEX(flex, row, space-between, center);
  201. @include FONT(#666666, 12px, 400);
  202. // border-bottom: 1px solid #ededed;
  203. padding: 8px 0;
  204. span:first-child {
  205. margin-right: 10px;
  206. }
  207. span {
  208. width: 100%;
  209. text-align: left;
  210. i {
  211. display: block;
  212. }
  213. }
  214. }
  215. .tr {
  216. @include FLEX(flex, row, space-between, flex-start);
  217. // border-bottom: 1px solid #ededed;
  218. padding: 12px 0;
  219. .td:first-child {
  220. margin-right: 10px;
  221. @include FLEX(flex, column, center, flex-start);
  222. @include FONT(#999999, 12px, 400);
  223. .td-label {
  224. text-decoration: underline;
  225. }
  226. .note {
  227. font-size: 12px;
  228. color: #666666;
  229. }
  230. }
  231. .td {
  232. width: 100%;
  233. text-align: left;
  234. @include FONT(#666666, 12px, 400);
  235. }
  236. }
  237. }
  238. .eye-table:last-child {
  239. .tr:last-child {
  240. border-bottom: 0;
  241. }
  242. }
  243. }
  244. .result-tips {
  245. padding: 16px 10px;
  246. @include FONT(#999999, 12px, 400);
  247. border-top: 1px solid #ededed;
  248. }
  249. }
  250. }
  251. .popup-content {
  252. width: 270px;
  253. background: #ffffff;
  254. border-radius: 12px;
  255. .close-btn {
  256. width: 40px;
  257. height: 40px;
  258. line-height: 40px;
  259. text-align: center;
  260. position: absolute;
  261. top: 5px;
  262. right: 5px;
  263. i {
  264. @include FONT(#949494, 15px, 400);
  265. }
  266. }
  267. .bl-describe-con {
  268. padding: 21px 15px;
  269. .describe-title {
  270. @include FONT(#000000, 17px, 600);
  271. text-align: center;
  272. }
  273. .describe-box {
  274. margin-top: 20px;
  275. .describe-tag {
  276. @include WH(100%, 21px);
  277. border-bottom: 1rpx solid #10aeff;
  278. span {
  279. line-height: 21px;
  280. padding: 0 13px;
  281. box-sizing: border-box;
  282. text-align: center;
  283. transform: skew(-20deg);
  284. background: #10aeff;
  285. display: inline-block;
  286. margin: 1px 0 0 4px;
  287. i {
  288. @include FONT(#ffffff, 14px, 600);
  289. transform: skew(20deg);
  290. display: inline-block;
  291. }
  292. }
  293. }
  294. .describe-img {
  295. @include WH(80px, 80px);
  296. border-radius: 12px;
  297. margin-top: 12px;
  298. }
  299. .describe-text {
  300. @include FONT(#666666, 14px, 400);
  301. margin-top: 12px;
  302. }
  303. .jm-table {
  304. @include FLEX(flex, column, center, center);
  305. border: 1px solid #666666;
  306. @include FONT(#666666, 12px, 400);
  307. margin: 10px 0;
  308. div:nth-child(1) {
  309. @include FLEX(flex, row, space-between, center);
  310. width: 100%;
  311. text-align: center;
  312. span {
  313. width: 100%;
  314. height: 33px;
  315. @include FLEX(flex, row, center, center);
  316. border-left: 1px solid #666666;
  317. border-bottom: 1px solid #666666;
  318. }
  319. span:first-child {
  320. border-left: none;
  321. }
  322. }
  323. div:nth-child(2) {
  324. @include FLEX(flex, row, space-between, center);
  325. width: 100%;
  326. text-align: center;
  327. span {
  328. width: 100%;
  329. height: 33px;
  330. @include FLEX(flex, row, center, center);
  331. border-left: 1px solid #666666;
  332. }
  333. span:first-child {
  334. border-left: none;
  335. }
  336. }
  337. }
  338. }
  339. }
  340. }
  341. .popup-btn {
  342. height: 50px;
  343. background: #ffffff;
  344. padding: 0 16px;
  345. border-bottom: 1px solid #ededed;
  346. @include FLEX(flex, row, space-between, center);
  347. span {
  348. @include FONT(#999999, 14px, 400);
  349. }
  350. span:last-child {
  351. @include FONT(#10aeff, 14px, 400);
  352. }
  353. }
  354. .picker-view {
  355. width: 100%;
  356. height: 200px;
  357. background: #ffffff;
  358. /deep/.indicator-class {
  359. height: 50px;
  360. }
  361. .item {
  362. height: 50px !important;
  363. display: flex;
  364. align-items: center;
  365. justify-content: center;
  366. text-align: center;
  367. }
  368. }
  369. .null-box {
  370. position: absolute;
  371. top: 0;
  372. bottom: 0;
  373. left: 0;
  374. right: 0;
  375. background: #f5f5f5;
  376. @include FONT(#999999, 12px, 400);
  377. @include FLEX(flex, row, center, center);
  378. .center-box {
  379. @include FLEX(flex, column, center, center);
  380. .icon-shoucang {
  381. @include FONT(#dedede, 60px, 400);
  382. margin-bottom: 4px;
  383. }
  384. }
  385. }
  386. // 悬浮客服按钮
  387. .custom-movable-area {
  388. pointer-events: none;
  389. height: 100%;
  390. width: 100%;
  391. position: fixed;
  392. left: 0;
  393. top: 0;
  394. z-index: 9;
  395. .custom-movable-view {
  396. pointer-events: auto;
  397. width: 50px;
  398. height: 50px;
  399. top: auto;
  400. left: auto;
  401. bottom: 120px;
  402. right: 5px;
  403. z-index: 999;
  404. transition: all 0.3s;
  405. .contact-box {
  406. .contact-btn {
  407. border: 0;
  408. padding: 0;
  409. background: #9ad8f2;
  410. width: 50px;
  411. height: 50px;
  412. border-radius: 50%;
  413. line-height: 50px;
  414. img {
  415. @include WH(60px, 60px);
  416. }
  417. .icon-rexianicon {
  418. font-size: 30px;
  419. color: #ffffff;
  420. text-align: center;
  421. }
  422. }
  423. }
  424. }
  425. }