index.module.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. .statisBody {
  2. min-height: 100vh;
  3. background-size: contain;
  4. padding: 12px;
  5. overflow: hidden;
  6. position: relative;
  7. background: url('./images/qt_bg.png') no-repeat top center #F6F8F9;
  8. background-size: contain;
  9. }
  10. .spColumn {
  11. display: flex;
  12. align-items: center;
  13. background: rgba(255,255,255,0.6);
  14. border-radius: 18px;
  15. border: 1px solid #FFFFFF;
  16. height: 33px;
  17. padding: 0 12px;
  18. p {
  19. flex: 1;
  20. font-size: 15px;
  21. color: #333333;
  22. font-weight: 600;
  23. padding-right: 8px;
  24. text-overflow: ellipsis;
  25. overflow: hidden;
  26. word-break: break-all;
  27. white-space: nowrap;
  28. }
  29. img {
  30. width: 16px;
  31. height: auto;
  32. object-fit: contain;
  33. margin-right: 4px;
  34. }
  35. >i {
  36. background: url('./images/arrow_icon.png') no-repeat center;
  37. background-size: contain;
  38. width: 12px;
  39. height: 12px;
  40. transition: all 0.5s;
  41. }
  42. }
  43. .scContent {
  44. background: url('./images/total_box_icon.png') no-repeat center;
  45. background-size: contain;
  46. width: 100%;
  47. height: 145px;
  48. margin: 8px 0 12px;
  49. max-width: 400px;
  50. position: relative;
  51. left: 50%;
  52. transform: translateX(-50%);
  53. .scTop {
  54. margin: 19px 0 0 24px;
  55. display: inline-block;
  56. align-items: flex-end;
  57. font-size: 14px;
  58. color: #333333;
  59. position: relative;
  60. z-index: 2;
  61. > div {
  62. display: inline-block;
  63. font-weight: 500;
  64. }
  65. > span {
  66. color: #FE3F25;
  67. font-size: 28px;
  68. font-weight: 500;
  69. position: relative;
  70. z-index: 2;
  71. margin: 0 1px 0 4px;
  72. top: 2px;
  73. font-family: DIN;
  74. }
  75. > i {
  76. font-style: normal;
  77. color: #777777;
  78. }
  79. &::before {
  80. content: "";
  81. position: absolute;
  82. z-index: 1;
  83. left: -1px;
  84. bottom: 1px;
  85. width: 106%;
  86. height: 8px;
  87. background: linear-gradient( 90deg, rgba(37,156,254,0.3) 0%, rgba(91,236,255,0.3) 100%);
  88. }
  89. }
  90. .scBottom {
  91. margin-top: 24px;
  92. display: flex;
  93. align-items: center;
  94. position: relative;
  95. li {
  96. position: relative;
  97. flex: 1;
  98. .sNum {
  99. font-size: 20px;
  100. font-weight: 500;
  101. display: flex;
  102. justify-content: center;
  103. align-items: flex-end;
  104. i {
  105. font-weight: normal;
  106. font-style: normal;
  107. color: #777777;
  108. font-size: 12px;
  109. position: relative;
  110. top: -1px;
  111. }
  112. }
  113. .sDesc {
  114. margin-top: 6px;
  115. display: flex;
  116. align-items: center;
  117. justify-content: center;
  118. font-size: 13px;
  119. color: #777777;
  120. img {
  121. width: 16px;
  122. height: 16px;
  123. margin-right: 2px;
  124. }
  125. }
  126. &:nth-child(1)::before,&:nth-child(2)::before {
  127. content: "";
  128. position: absolute;
  129. right: 0;
  130. top: 0;
  131. height: 43px;
  132. width: 1px;
  133. background: url('./images/sc_line.png') no-repeat center;
  134. background-size: contain;
  135. }
  136. &:nth-child(1)::before {
  137. right: 4px;
  138. }
  139. &:nth-child(2)::before {
  140. right: -8px;
  141. z-index: 99;
  142. }
  143. }
  144. }
  145. }
  146. .searechInfo {
  147. background: #fff;
  148. display: flex;
  149. align-items: center;
  150. background: rgba(255,255,255,0.6);
  151. border-radius: 19px;
  152. border: 1px solid #FFFFFF;
  153. padding: 3px 3px 3px 12px;
  154. .searchIcon {
  155. width: 16px;
  156. height: 16px;
  157. margin-right: 4px;
  158. }
  159. .searchBtn {
  160. width: 56px;
  161. height: 28px;
  162. margin-left: 4px;
  163. }
  164. :global {
  165. .van-cell {
  166. padding: 0;
  167. background: transparent;
  168. border: none;
  169. }
  170. .van-cell:after {
  171. display: none;
  172. }
  173. input::placeholder {
  174. color: rgba(0,0,0,0.4);
  175. }
  176. }
  177. }
  178. .sortColumn {
  179. display: flex;
  180. align-items: center;
  181. flex-wrap: nowrap;
  182. overflow-x: scroll;
  183. margin-top: 12px;
  184. &::-webkit-scrollbar {
  185. display: none;
  186. }
  187. // position: sticky;
  188. // top: 0;
  189. >li {
  190. display: flex;
  191. align-items: center;
  192. height: 28px;
  193. box-sizing: border-box;
  194. background: #fff;
  195. border: 1px solid #fff;
  196. border-radius: 14px;
  197. font-size: 12px;
  198. color: #333333;
  199. padding: 0 8px;
  200. margin-right: 10px;
  201. >span {
  202. word-break: keep-all;
  203. }
  204. >i {
  205. background: url('./images/sort_icon1.png') no-repeat center;
  206. background-size: contain;
  207. width: 6px;
  208. height: 10px;
  209. margin-left: 4px;
  210. &.actUp {
  211. background: url('./images/sort_icon2.png') no-repeat center;
  212. background-size: contain;
  213. }
  214. &.actDown {
  215. background: url('./images/sort_icon3.png') no-repeat center;
  216. background-size: contain;
  217. }
  218. }
  219. }
  220. .sortActive {
  221. background: rgba(28,172,241,0.06);
  222. border: 1px solid #2FAFF1;
  223. font-size: 12px;
  224. color: #1CACF1;
  225. font-weight: 600;
  226. }
  227. }
  228. .scList {
  229. .sItem {
  230. margin-top: 12px;
  231. background: #fff;
  232. border-radius: 10px;
  233. padding: 0 10px;
  234. .itemTile {
  235. display: flex;
  236. align-items: center;
  237. padding: 12px 0 8px;
  238. img {
  239. width: 16px;
  240. height: 16px;
  241. }
  242. p {
  243. flex: 1;
  244. font-size: 14px;
  245. color: #333;
  246. font-weight: 500;
  247. padding: 0 8px 0 3px;
  248. text-overflow: ellipsis;
  249. overflow: hidden;
  250. word-break: break-all;
  251. white-space: nowrap;
  252. }
  253. i {
  254. width: 12px;
  255. height: 12px;
  256. background: url('./images/arrow_right.png') no-repeat center;
  257. background-size: contain;
  258. }
  259. }
  260. .itemTileDetail {
  261. padding: 12px 0 10px;
  262. border-bottom: 1px dashed #f0f0f0;
  263. .itRight {
  264. font-size: 12px;
  265. color: #333333;
  266. }
  267. }
  268. .itemDesc {
  269. border-bottom: 1px dashed #f0f0f0;
  270. padding-bottom: 12px;
  271. font-size: 12px;
  272. color: #333333;
  273. span {
  274. font-weight: 500;
  275. }
  276. }
  277. .itemContent {
  278. display: flex;
  279. align-items: center;
  280. >li {
  281. flex: 1;
  282. padding: 12px 0;
  283. .icTop {
  284. text-align: center;
  285. font-size: 18px;
  286. font-weight: 500;
  287. display: flex;
  288. align-items: flex-end;
  289. justify-content: center;
  290. i {
  291. font-style: normal;
  292. font-size: 12px;
  293. color: #777777;
  294. position: relative;
  295. top: -1px;
  296. }
  297. }
  298. >p {
  299. margin-top: 4px;
  300. font-size: 12px;
  301. color: #777777;
  302. text-align: center;
  303. }
  304. }
  305. }
  306. }
  307. }
  308. .sRed {
  309. font-family: DIN;
  310. color: #FE3F25;
  311. }
  312. .sBlue {
  313. font-family: DIN;
  314. color: #259CFE;
  315. }
  316. .sGreen {
  317. font-family: DIN;
  318. color: #24BD90;
  319. }
  320. .sOrange {
  321. font-family: DIN;
  322. color: #FE6F25;
  323. }
  324. // 详情页
  325. .detailBody {
  326. min-height: 100vh;
  327. background: url('./images/dt_bg.png') no-repeat top center #F6F8F9;
  328. background-size: contain;
  329. padding: 20px 12px;
  330. position: relative;
  331. }
  332. .dbTitle {
  333. margin-bottom: 12px;
  334. .dtName {
  335. display: flex;
  336. align-items: center;
  337. margin-bottom: 6px;
  338. img {
  339. width: 16px;
  340. height: 16px;
  341. margin-right: 3px;
  342. }
  343. p {
  344. font-size: 15px;
  345. color: #333333;
  346. font-weight: 500;
  347. text-overflow: ellipsis;
  348. overflow: hidden;
  349. word-break: break-all;
  350. white-space: nowrap;
  351. }
  352. }
  353. .dtDesc {
  354. font-size: 12px;
  355. color: #333333;
  356. span {
  357. font-weight: 500;
  358. color: #FE2525;
  359. }
  360. }
  361. }
  362. .dbStatic {
  363. display: flex;
  364. align-items: center;
  365. .dsItem {
  366. flex: 1;
  367. background: linear-gradient( 157deg, rgba(255,255,255,0.45) 0%, #FFFFFF 100%);
  368. border: 2px solid rgba(179, 224, 236, 0.66);
  369. border-radius: 10px;
  370. position: relative;
  371. overflow: hidden;
  372. padding: 14px 0 16px 16px;
  373. >div {
  374. display: flex;
  375. align-items: flex-end;
  376. font-size: 12px;
  377. color: #777777;
  378. margin-bottom: 5px;
  379. span {
  380. font-size: 22px;
  381. font-weight: 500;
  382. color: #259CFE;
  383. font-family: DIN;
  384. }
  385. i {
  386. position: relative;
  387. top: -2px;
  388. font-style: normal;
  389. }
  390. }
  391. >p {
  392. font-size: 13px;
  393. color: #777777;
  394. }
  395. .dsIcon {
  396. position: absolute;
  397. right: 0;
  398. bottom: 0;
  399. }
  400. .dsIcon1 {
  401. background: url('./images/xz_icon2.png') no-repeat center;
  402. background-size: contain;
  403. width: 44px;
  404. height: 48px;
  405. }
  406. .dsIcon2 {
  407. background: url('./images/xz_icon1.png') no-repeat center;
  408. background-size: contain;
  409. width: 41px;
  410. height: 40px;
  411. }
  412. &:nth-child(1) {
  413. margin-right: 8px;
  414. }
  415. }
  416. }
  417. .gradeColumn {
  418. margin: 12px 0;
  419. background: rgba(255,255,255,0.6);
  420. border-radius: 19px;
  421. border: 1px solid #FFFFFF;
  422. height: 34px;
  423. display: flex;
  424. align-items: center;
  425. padding: 0 12px;
  426. span {
  427. flex: 1;
  428. font-size: 14px;
  429. color: rgba(0,0,0,0.4);
  430. }
  431. .gcText {
  432. color: #333;
  433. }
  434. i {
  435. background: url('./images/arrow_icon.png') no-repeat center;
  436. background-size: contain;
  437. width: 12px;
  438. height: 12px;
  439. transition: all 0.5s;
  440. }
  441. }
  442. .openVal {
  443. i {
  444. transform: rotate(180deg);
  445. }
  446. }
  447. .sTotal {
  448. background: #fff;
  449. border-radius: 10px;
  450. display: flex;
  451. height: 68px;
  452. padding: 8px 0 12px;
  453. margin: 12px 0 10px;
  454. .stOne {
  455. flex: 1;
  456. display: flex;
  457. flex-direction: column;
  458. align-items: center;
  459. justify-content: space-between;
  460. position: relative;
  461. .soTitle {
  462. display: flex;
  463. align-items: flex-end;
  464. font-size: 12px;
  465. color: #777777;
  466. margin-bottom: 6px;
  467. >span {
  468. font-size: 24px;
  469. font-weight: 500;
  470. }
  471. >i {
  472. font-style: normal;
  473. position: relative;
  474. top: -3px;
  475. }
  476. }
  477. .soDesc {
  478. display: flex;
  479. align-items: center;
  480. font-size: 14px;
  481. color: #777777;
  482. line-height: 10px;
  483. img {
  484. font-size: 16px;
  485. height: 16px;
  486. margin-right: 2px;
  487. }
  488. }
  489. }
  490. .stOneLine {
  491. &::before {
  492. content: "";
  493. position: absolute;
  494. right: 0;
  495. top: 6px;
  496. width: 1px;
  497. height: 43px;
  498. background: url('./images/ns_line.png') no-repeat center;
  499. background-size: contain;
  500. }
  501. }
  502. }
  503. .sRing {
  504. display: flex;
  505. margin-bottom: 12px;
  506. .srItem {
  507. flex: 1;
  508. background: #FFFFFF;
  509. border-radius: 10px;
  510. display: flex;
  511. padding: 14px;
  512. .siRight {
  513. height: 60px;
  514. display: flex;
  515. flex-direction: column;
  516. justify-content: space-between;
  517. padding: 10px 0;
  518. margin-left: 6px;
  519. >div {
  520. font-size: 12px;
  521. color: #777777;
  522. span {
  523. font-size: 20px;
  524. font-weight: 500;
  525. }
  526. i {
  527. font-style: normal;
  528. }
  529. }
  530. >p {
  531. font-size: 12px;
  532. color: #777777;
  533. margin-top: 3px;
  534. }
  535. }
  536. .siLeft {
  537. width: 85px;
  538. height: 85px;
  539. position: relative;
  540. >p {
  541. position: absolute;
  542. left: 50%;
  543. bottom: 26px;
  544. transform: translateX(-65%) scale(0.85);
  545. text-align: center;
  546. font-size: 12px;
  547. word-break: keep-all;
  548. color: #777777;
  549. }
  550. canvas {
  551. width: 75px;
  552. height: 75px;
  553. }
  554. }
  555. }
  556. .srItemOne {
  557. margin-right: 8px;
  558. }
  559. }
  560. #circle1, #circle2 {
  561. // width: 80px;
  562. // height: 80px;
  563. margin-right: 4px;
  564. }