index.module.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  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. padding-bottom: 1px;
  185. &::-webkit-scrollbar {
  186. display: none;
  187. }
  188. // position: sticky;
  189. // top: 0;
  190. >li {
  191. display: flex;
  192. align-items: center;
  193. height: 28px;
  194. // box-sizing: border-box;
  195. background: #fff;
  196. border: 1px solid #fff;
  197. border-radius: 14px;
  198. font-size: 12px;
  199. color: #333333;
  200. padding: 0 8px;
  201. margin-right: 6px;
  202. box-sizing: content-box;
  203. >span {
  204. word-break: keep-all;
  205. }
  206. >i {
  207. background: url('./images/sort_icon1.png') no-repeat center;
  208. background-size: contain;
  209. width: 6px;
  210. height: 10px;
  211. margin-left: 4px;
  212. &.actUp {
  213. background: url('./images/sort_icon2.png') no-repeat center;
  214. background-size: contain;
  215. }
  216. &.actDown {
  217. background: url('./images/sort_icon3.png') no-repeat center;
  218. background-size: contain;
  219. }
  220. }
  221. }
  222. .sortActive {
  223. background: rgba(28,172,241,0.06);
  224. border: 1PX solid #2FAFF1;
  225. font-size: 12px;
  226. color: #1CACF1;
  227. font-weight: 600;
  228. }
  229. }
  230. .scList {
  231. .sItem {
  232. margin-top: 12px;
  233. background: #fff;
  234. border-radius: 10px;
  235. padding: 0 10px;
  236. position: relative;
  237. .shareIcon {
  238. position: absolute;
  239. right: 0;
  240. top: 0;
  241. width: 54px;
  242. height: 29px;
  243. }
  244. .itemTile {
  245. display: flex;
  246. align-items: center;
  247. padding: 12px 0 8px;
  248. img {
  249. width: 16px;
  250. height: 16px;
  251. }
  252. p {
  253. flex: 1;
  254. font-size: 14px;
  255. color: #333;
  256. font-weight: 500;
  257. padding: 0 8px 0 3px;
  258. text-overflow: ellipsis;
  259. overflow: hidden;
  260. word-break: break-all;
  261. white-space: nowrap;
  262. }
  263. i {
  264. width: 12px;
  265. height: 12px;
  266. background: url('./images/arrow_right.png') no-repeat center;
  267. background-size: contain;
  268. }
  269. }
  270. .itemTileDetail {
  271. padding: 12px 0 10px;
  272. border-bottom: 1px dashed #f0f0f0;
  273. .itRight {
  274. font-size: 12px;
  275. color: #333333;
  276. }
  277. }
  278. .itemDesc {
  279. border-bottom: 1px dashed #f0f0f0;
  280. padding-bottom: 12px;
  281. font-size: 12px;
  282. color: #333333;
  283. span {
  284. font-weight: 500;
  285. }
  286. }
  287. .itemContent {
  288. display: flex;
  289. align-items: center;
  290. >li {
  291. flex: 1;
  292. padding: 12px 0;
  293. .icTop {
  294. text-align: center;
  295. font-size: 18px;
  296. font-weight: 500;
  297. display: flex;
  298. align-items: flex-end;
  299. justify-content: center;
  300. i {
  301. font-style: normal;
  302. font-size: 12px;
  303. color: #777777;
  304. position: relative;
  305. top: -1px;
  306. }
  307. }
  308. >p {
  309. margin-top: 4px;
  310. font-size: 12px;
  311. color: #777777;
  312. text-align: center;
  313. }
  314. }
  315. }
  316. }
  317. }
  318. .sRed {
  319. font-family: DIN;
  320. color: #FE3F25;
  321. }
  322. .sBlue {
  323. font-family: DIN;
  324. color: #259CFE;
  325. }
  326. .sGreen {
  327. font-family: DIN;
  328. color: #24BD90;
  329. }
  330. .sOrange {
  331. font-family: DIN;
  332. color: #FE6F25;
  333. }
  334. // 详情页
  335. .detailBody {
  336. min-height: 100vh;
  337. background: url('./images/dt_bg.png') no-repeat top center #F6F8F9;
  338. background-size: contain;
  339. padding: 20px 12px;
  340. position: relative;
  341. }
  342. .dbTitle {
  343. margin-bottom: 12px;
  344. .dtName {
  345. display: flex;
  346. align-items: center;
  347. margin-bottom: 6px;
  348. img {
  349. width: 16px;
  350. height: 16px;
  351. margin-right: 3px;
  352. }
  353. p {
  354. font-size: 15px;
  355. color: #333333;
  356. font-weight: 500;
  357. text-overflow: ellipsis;
  358. overflow: hidden;
  359. word-break: break-all;
  360. white-space: nowrap;
  361. }
  362. }
  363. .dtDesc {
  364. font-size: 12px;
  365. color: #333333;
  366. span {
  367. font-weight: 500;
  368. color: #FE2525;
  369. }
  370. }
  371. }
  372. .dbStatic {
  373. display: flex;
  374. align-items: center;
  375. .dsItem {
  376. flex: 1;
  377. background: linear-gradient( 157deg, rgba(255,255,255,0.45) 0%, #FFFFFF 100%);
  378. border: 2px solid rgba(179, 224, 236, 0.66);
  379. border-radius: 10px;
  380. position: relative;
  381. overflow: hidden;
  382. padding: 14px 0 16px 16px;
  383. >div {
  384. display: flex;
  385. align-items: flex-end;
  386. font-size: 12px;
  387. color: #777777;
  388. margin-bottom: 5px;
  389. span {
  390. font-size: 22px;
  391. font-weight: 500;
  392. color: #259CFE;
  393. font-family: DIN;
  394. }
  395. i {
  396. position: relative;
  397. top: -2px;
  398. font-style: normal;
  399. }
  400. }
  401. >p {
  402. font-size: 13px;
  403. color: #777777;
  404. }
  405. .dsIcon {
  406. position: absolute;
  407. right: 0;
  408. bottom: 0;
  409. }
  410. .dsIcon1 {
  411. background: url('./images/xz_icon2.png') no-repeat center;
  412. background-size: contain;
  413. width: 44px;
  414. height: 48px;
  415. }
  416. .dsIcon2 {
  417. background: url('./images/xz_icon1.png') no-repeat center;
  418. background-size: contain;
  419. width: 41px;
  420. height: 40px;
  421. }
  422. &:nth-child(1) {
  423. margin-right: 8px;
  424. }
  425. }
  426. }
  427. .gradeColumn {
  428. margin: 12px 0;
  429. background: rgba(255,255,255,0.6);
  430. border-radius: 19px;
  431. border: 1px solid #FFFFFF;
  432. height: 34px;
  433. display: flex;
  434. align-items: center;
  435. padding: 0 12px;
  436. span {
  437. flex: 1;
  438. font-size: 14px;
  439. color: rgba(0,0,0,0.4);
  440. }
  441. .gcText {
  442. color: #333;
  443. }
  444. i {
  445. background: url('./images/arrow_icon.png') no-repeat center;
  446. background-size: contain;
  447. width: 12px;
  448. height: 12px;
  449. transition: all 0.5s;
  450. }
  451. }
  452. .openVal {
  453. i {
  454. transform: rotate(180deg);
  455. }
  456. }
  457. .sTotal {
  458. background: #fff;
  459. border-radius: 10px;
  460. display: flex;
  461. height: 68px;
  462. padding: 8px 0 12px;
  463. margin: 12px 0 10px;
  464. .stOne {
  465. flex: 1;
  466. display: flex;
  467. flex-direction: column;
  468. align-items: center;
  469. justify-content: space-between;
  470. position: relative;
  471. .soTitle {
  472. display: flex;
  473. align-items: flex-end;
  474. font-size: 12px;
  475. color: #777777;
  476. margin-bottom: 6px;
  477. >span {
  478. font-size: 24px;
  479. font-weight: 500;
  480. }
  481. >i {
  482. font-style: normal;
  483. position: relative;
  484. top: -3px;
  485. }
  486. }
  487. .soDesc {
  488. display: flex;
  489. align-items: center;
  490. font-size: 14px;
  491. color: #777777;
  492. line-height: 10px;
  493. img {
  494. font-size: 16px;
  495. height: 16px;
  496. margin-right: 2px;
  497. }
  498. }
  499. }
  500. .stOneLine {
  501. &::before {
  502. content: "";
  503. position: absolute;
  504. right: 0;
  505. top: 6px;
  506. width: 1px;
  507. height: 43px;
  508. background: url('./images/ns_line.png') no-repeat center;
  509. background-size: contain;
  510. }
  511. }
  512. }
  513. .sRing {
  514. display: flex;
  515. margin-bottom: 12px;
  516. .srItem {
  517. flex: 1;
  518. background: #FFFFFF;
  519. border-radius: 10px;
  520. display: flex;
  521. padding: 14px 4px 8px 14px;
  522. .siRight {
  523. height: 60px;
  524. display: flex;
  525. flex-direction: column;
  526. justify-content: space-between;
  527. padding: 18px 0;
  528. margin-left: 2px;
  529. >div {
  530. font-size: 12px;
  531. color: #777777;
  532. span {
  533. font-size: 18px;
  534. font-weight: 500;
  535. }
  536. i {
  537. font-style: normal;
  538. }
  539. }
  540. >p {
  541. font-size: 12px;
  542. color: #777777;
  543. margin-top: 3px;
  544. }
  545. }
  546. .siLeft {
  547. width: 80px;
  548. height: 80px;
  549. position: relative;
  550. >p {
  551. position: absolute;
  552. left: 50%;
  553. bottom: 23px;
  554. transform: translateX(-58%) scale(0.85);
  555. text-align: center;
  556. font-size: 12px;
  557. word-break: keep-all;
  558. color: #777777;
  559. }
  560. canvas {
  561. width: 75px;
  562. height: 75px;
  563. }
  564. }
  565. }
  566. .srItemOne {
  567. margin-right: 8px;
  568. }
  569. }
  570. #circle1, #circle2 {
  571. // width: 80px;
  572. // height: 80px;
  573. margin-right: 4px;
  574. }