utils.scss 14 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  1. .window-box {
  2. width: 100vw;
  3. height: 100vh;
  4. max-width: 100vw;
  5. max-height: 100vh;
  6. overflow: hidden;
  7. }
  8. .text-underline {
  9. text-decoration: underline;
  10. }
  11. .content-container {
  12. padding: 0 41rpx;
  13. }
  14. .container, input {
  15. font-family: "Microsoft YaHei",
  16. sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. }
  19. .b-f {
  20. background: #fff;
  21. }
  22. .tf-180 {
  23. -moz-transform: rotate(-180deg);
  24. -ms-transform: rotate(-180deg);
  25. -o-transform: rotate(-180deg);
  26. transform: rotate(-180deg);
  27. }
  28. .tf-90 {
  29. -moz-transform: rotate(90deg);
  30. -ms-transform: rotate(90deg);
  31. -o-transform: rotate(90deg);
  32. transform: rotate(90deg);
  33. }
  34. .dis-none {
  35. display: none !important;
  36. }
  37. .dis-block {
  38. display: block;
  39. }
  40. .dis-in-block {
  41. display: inline-block;
  42. }
  43. .dis-flex {
  44. display: flex !important;
  45. /* flex-wrap: wrap; */
  46. }
  47. .flex-wrap {
  48. display: flex !important;
  49. flex-wrap: wrap;
  50. }
  51. .flex-nowrap {
  52. display: flex !important;
  53. flex-wrap: nowrap;
  54. }
  55. .flex-box {
  56. flex: 1;
  57. }
  58. .flex-dir-row {
  59. flex-direction: row;
  60. }
  61. .flex-dir-column {
  62. flex-direction: column;
  63. }
  64. .flex-dir-column-reverse {
  65. flex-direction: column-reverse;
  66. }
  67. .flex-x-center {
  68. /* display: flex; */
  69. justify-content: center;
  70. }
  71. .flex-x-between {
  72. justify-content: space-between;
  73. }
  74. .flex-x-around {
  75. justify-content: space-around;
  76. }
  77. .flex-x-evenly {
  78. justify-content: space-evenly;
  79. }
  80. .flex-x-end {
  81. justify-content: flex-end;
  82. }
  83. .flex-y-start {
  84. align-content: flex-start;
  85. }
  86. .flex-y-center {
  87. align-items: center;
  88. }
  89. .flex-y-end {
  90. align-items: flex-end;
  91. }
  92. .flex-y-bline {
  93. align-items: baseline;
  94. }
  95. .flex-y-sb {
  96. justify-content: space-between;
  97. }
  98. .flex-y-se {
  99. justify-content: space-evenly;
  100. }
  101. .flex-center-auto {
  102. display: flex !important;
  103. justify-content: center;
  104. }
  105. .flex-start-center {
  106. display: flex !important;
  107. justify-content: flex-start;
  108. align-items: center;
  109. }
  110. .flex-start-end {
  111. display: flex !important;
  112. justify-content: flex-start;
  113. align-items: flex-end;
  114. }
  115. .flex-center-center {
  116. display: flex !important;
  117. justify-content: center;
  118. align-items: center;
  119. }
  120. .flex-center-end {
  121. display: flex !important;
  122. justify-content: center;
  123. align-items: flex-end;
  124. }
  125. .flex-end-center {
  126. display: flex !important;
  127. justify-content: flex-end;
  128. align-items: center;
  129. }
  130. .flex-end-end {
  131. display: flex !important;
  132. justify-content: flex-end;
  133. align-items: flex-end;
  134. }
  135. .f-e-e {
  136. display: flex !important;
  137. justify-content: flex-end;
  138. align-items: flex-end;
  139. }
  140. .flex-between-center {
  141. display: flex !important;
  142. justify-content: space-between;
  143. align-items: center;
  144. }
  145. .flex-around-center {
  146. display: flex !important;
  147. justify-content: space-around;
  148. align-items: center;
  149. }
  150. .flex-grow {
  151. flex-grow: 1,
  152. }
  153. .flex-two {
  154. box-sizing: border-box;
  155. flex: 0 0 50%;
  156. }
  157. .flex-three {
  158. box-sizing: border-box;
  159. flex: 0 0 33.333333%;
  160. }
  161. .flex-four {
  162. box-sizing: border-box;
  163. flex: 0 0 25%;
  164. }
  165. .t-a-c {
  166. text-align: center;
  167. }
  168. .t-a-l {
  169. text-align: left;
  170. }
  171. .t-a-r {
  172. text-align: right;
  173. }
  174. .p-a {
  175. position: absolute;
  176. }
  177. .p-r {
  178. position: relative;
  179. }
  180. .p-f {
  181. position: fixed;
  182. }
  183. .fl {
  184. float: left;
  185. }
  186. .fr {
  187. float: right;
  188. }
  189. .clearfix::after {
  190. clear: both;
  191. content: " ";
  192. display: table;
  193. }
  194. .oh {
  195. overflow: hidden;
  196. }
  197. .tb-lr-center {
  198. display: -webkit-box;
  199. display: -ms-flexbox;
  200. display: flex !important;
  201. -webkit-box-pack: center;
  202. -ms-flex-pack: center;
  203. justify-content: center;
  204. -webkit-box-align: center;
  205. -ms-flex-align: center;
  206. align-items: center;
  207. }
  208. .f-12 {
  209. font-size: 17rpx;
  210. }
  211. .f-16 {
  212. font-size: 23rpx;
  213. }
  214. .f-18 {
  215. font-size: 25rpx;
  216. }
  217. .f-20 {
  218. font-size: 28rpx;
  219. }
  220. .f-22 {
  221. font-size: 31rpx;
  222. }
  223. .f-24 {
  224. font-size: 34rpx;
  225. }
  226. .f-26 {
  227. font-size: 37rpx;
  228. }
  229. .f-28 {
  230. font-size: 40rpx;
  231. }
  232. .f-32 {
  233. font-size: 45rpx;
  234. }
  235. .f-42 {
  236. font-size: 59rpx;
  237. }
  238. .f-60 {
  239. font-size: 60rpx;
  240. }
  241. .f-64 {
  242. font-size: 89rpx;
  243. }
  244. .f-u-17 {
  245. font-size: 17rpx;
  246. }
  247. .f-u-19 {
  248. font-size: 19rpx;
  249. }
  250. .f-u-21 {
  251. font-size: 21rpx;
  252. }
  253. .f-u-23 {
  254. font-size: 23rpx;
  255. }
  256. .f-u-25 {
  257. font-size: 25rpx;
  258. }
  259. .f-u-27 {
  260. font-size: 27rpx;
  261. }
  262. .f-u-29 {
  263. font-size: 29rpx;
  264. }
  265. .f-u-32 {
  266. font-size: 32rpx;
  267. }
  268. .f-u-35 {
  269. font-size: 35rpx;
  270. }
  271. .f-u-39 {
  272. font-size: 39rpx;
  273. }
  274. .f-u-41 {
  275. font-size: 41rpx;
  276. }
  277. .f-u-43 {
  278. font-size: 43rpx;
  279. }
  280. .f-u-51 {
  281. font-size: 51rpx;
  282. }
  283. .f-u-56 {
  284. font-size: 56rpx;
  285. }
  286. .f-w-4 {
  287. font-weight: 400;
  288. }
  289. .f-w-5 {
  290. font-weight: 500;
  291. }
  292. .f-w-6 {
  293. font-weight: 600;
  294. }
  295. .f-w-7 {
  296. font-weight: 700;
  297. }
  298. .f-w-b {
  299. font-weight: bold;
  300. }
  301. .col-f {
  302. color: #fff;
  303. }
  304. .col-a {
  305. color: #AAAAAA;
  306. }
  307. .col-4a {
  308. color: #4A4A4A;
  309. }
  310. .col-0 {
  311. color: #000000;
  312. }
  313. .col-6 {
  314. color: #666;
  315. }
  316. .col-68 {
  317. color: #686868;
  318. }
  319. .col-c {
  320. color: #cccccc;
  321. }
  322. .col-7 {
  323. color: #777;
  324. }
  325. .col-8 {
  326. color: #888;
  327. }
  328. .col-9 {
  329. color: #999;
  330. }
  331. .col-47 {
  332. color: #474747;
  333. }
  334. .col-51 {
  335. color: #515151;
  336. }
  337. .col-red {
  338. color: red;
  339. }
  340. .col-yellow {
  341. color: yellow;
  342. }
  343. .col-orange {
  344. color: orange;
  345. }
  346. .col-grey {
  347. color: #747474;
  348. }
  349. .col-checked {
  350. color: #1E89FB;
  351. }
  352. .col-m {
  353. color: #fa2209 !important;
  354. }
  355. .col-s {
  356. color: #be0117 !important;
  357. }
  358. .col-green {
  359. color: #0ed339 !important;
  360. }
  361. .cont-box {
  362. padding: 20rpx;
  363. }
  364. .cont-bot {
  365. margin-bottom: 120rpx;
  366. }
  367. .padding-box {
  368. padding: 0 24rpx;
  369. box-sizing: border-box;
  370. }
  371. .p-l-6 {
  372. padding-left: 6rpx;
  373. }
  374. .p-l-12 {
  375. padding-left: 12rpx;
  376. }
  377. .p-r-6 {
  378. padding-right: 6rpx;
  379. }
  380. .p-r-12 {
  381. padding-right: 12rpx;
  382. }
  383. .m-0-auto {
  384. margin: 0 auto;
  385. }
  386. .m-40 {
  387. margin: 40rpx;
  388. }
  389. .m-t-4 {
  390. margin-top: 4rpx;
  391. }
  392. .m-t-5 {
  393. margin-top: 5rpx;
  394. }
  395. .m-t-10 {
  396. margin-top: 10rpx;
  397. }
  398. .m-t-20 {
  399. margin-top: 25rpx;
  400. }
  401. .m-t-30 {
  402. margin-top: 30rpx;
  403. }
  404. .m-t-40 {
  405. margin-top: 40rpx;
  406. }
  407. .m-t-50 {
  408. margin-top: 50rpx;
  409. }
  410. .m-t-60 {
  411. margin-top: 60rpx;
  412. }
  413. .m-t-70 {
  414. margin-top: 70rpx;
  415. }
  416. .m-t-80 {
  417. margin-top: 80rpx;
  418. }
  419. .m-t-90 {
  420. margin-top: 90rpx;
  421. }
  422. .m-t-100 {
  423. margin-top: 100rpx;
  424. }
  425. .m-t-150 {
  426. margin-top: 150rpx;
  427. }
  428. .m-t-200 {
  429. margin-top: 200rpx;
  430. }
  431. .m-l-5 {
  432. margin-left: 5rpx;
  433. }
  434. .m-l-10 {
  435. margin-left: 10rpx;
  436. }
  437. .m-l-20 {
  438. margin-left: 20rpx;
  439. }
  440. .m-l-30 {
  441. margin-left: 30rpx;
  442. }
  443. .m-l-50 {
  444. margin-left: 50rpx;
  445. }
  446. .m-l-80 {
  447. margin-left: 80rpx;
  448. }
  449. .m-l-90 {
  450. margin-left: 90rpx;
  451. }
  452. .m-r-5 {
  453. margin-right: 5rpx;
  454. }
  455. .m-r-10 {
  456. margin-right: 10rpx;
  457. }
  458. .m-r-20 {
  459. margin-right: 20rpx;
  460. }
  461. .m-r-30 {
  462. margin-right: 30rpx;
  463. }
  464. .m-r-40 {
  465. margin-right: 40rpx;
  466. }
  467. .m-r-50 {
  468. margin-right: 50rpx;
  469. }
  470. .m-b-10 {
  471. margin-bottom: 10rpx;
  472. }
  473. .m-b-20 {
  474. margin-bottom: 20rpx;
  475. }
  476. .m-b-30 {
  477. margin-bottom: 30rpx;
  478. }
  479. .m-b-40 {
  480. margin-bottom: 40rpx;
  481. }
  482. .m-b-50 {
  483. margin-bottom: 50rpx;
  484. }
  485. .m-b-60 {
  486. margin-bottom: 60rpx;
  487. }
  488. .m-b-70 {
  489. margin-bottom: 70rpx;
  490. }
  491. .m-b-80 {
  492. margin-bottom: 80rpx;
  493. }
  494. .m-b-90 {
  495. margin-bottom: 90rpx;
  496. }
  497. .m-b-100 {
  498. margin-bottom: 100rpx;
  499. }
  500. .p-5 {
  501. padding: 5rpx;
  502. }
  503. .p-10 {
  504. padding: 10rpx;
  505. }
  506. .p-20 {
  507. padding: 20rpx;
  508. }
  509. .p-30 {
  510. padding: 30rpx;
  511. }
  512. .p-40 {
  513. padding: 40rpx;
  514. }
  515. .p-t-5 {
  516. padding-top: 5rpx;
  517. }
  518. .p-t-10 {
  519. padding-top: 10rpx;
  520. }
  521. .p-t-20 {
  522. padding-top: 20rpx;
  523. }
  524. .p-t-30 {
  525. padding-top: 30rpx;
  526. }
  527. .p-t-40 {
  528. padding-top: 40rpx;
  529. }
  530. .p-t-50 {
  531. padding-top: 50rpx;
  532. }
  533. .p-t-60 {
  534. padding-top: 60rpx;
  535. }
  536. .p-t-70 {
  537. padding-top: 70rpx;
  538. }
  539. .p-t-80 {
  540. padding-top: 80rpx;
  541. }
  542. .p-t-90 {
  543. padding-top: 90rpx;
  544. }
  545. .p-t-100 {
  546. padding-top: 100rpx;
  547. }
  548. .p-b-5 {
  549. padding-bottom: 5rpx;
  550. }
  551. .p-b-10 {
  552. padding-bottom: 10rpx;
  553. }
  554. .p-b-20 {
  555. padding-bottom: 20rpx;
  556. }
  557. .p-b-30 {
  558. padding-bottom: 30rpx;
  559. }
  560. .p-b-40 {
  561. padding-bottom: 40rpx;
  562. }
  563. .p-b-50 {
  564. padding-bottom: 50rpx;
  565. }
  566. .p-b-60 {
  567. padding-bottom: 60rpx;
  568. }
  569. .p-b-70 {
  570. padding-bottom: 70rpx;
  571. }
  572. .p-b-80 {
  573. padding-bottom: 80rpx;
  574. }
  575. .p-b-90 {
  576. padding-bottom: 90rpx;
  577. }
  578. .p-b-100 {
  579. padding-bottom: 100rpx;
  580. }
  581. .p-b-120 {
  582. padding-bottom: 120rpx;
  583. }
  584. .p-b-150 {
  585. padding-bottom: 150rpx;
  586. }
  587. .p-l-10 {
  588. padding-left: 10rpx;
  589. }
  590. .p-l-20 {
  591. padding-left: 20rpx;
  592. }
  593. .p-l-30 {
  594. padding-left: 30rpx;
  595. }
  596. .p-l-40 {
  597. padding-left: 40rpx;
  598. }
  599. .p-l-50 {
  600. padding-left: 50rpx;
  601. }
  602. .p-r-10 {
  603. padding-right: 10rpx;
  604. }
  605. .p-r-20 {
  606. padding-right: 20rpx;
  607. }
  608. .p-r-30 {
  609. padding-right: 30rpx;
  610. }
  611. .p-r-50 {
  612. padding-right: 50rpx;
  613. }
  614. .p-bottom {
  615. margin-bottom: 112rpx;
  616. }
  617. .page-overflow-hidden {
  618. overflow: hidden;
  619. height: 100%;
  620. width: 100%;
  621. }
  622. .oneline-hide {
  623. overflow: hidden;
  624. text-overflow: ellipsis;
  625. white-space: nowrap;
  626. }
  627. .twoline-hide {
  628. display: -webkit-box;
  629. word-break: break-all;
  630. text-overflow: ellipsis;
  631. overflow: hidden;
  632. -webkit-box-orient: vertical;
  633. -webkit-line-clamp: 2;
  634. }
  635. .b-r {
  636. border-right: 2rpx solid #eee;
  637. }
  638. .b-b {
  639. border-bottom: 2rpx solid #eee;
  640. }
  641. .b-b-dashed {
  642. border-bottom: 1rpx dashed #eee;
  643. }
  644. .b-t {
  645. border-top: 2rpx solid #eee;
  646. }
  647. .b-all {
  648. border: 2rpx solid #eee;
  649. }
  650. .ts-1 {
  651. -moz-transition: all 0.1s;
  652. -o-transition: all 0.1s;
  653. transition: all 0.1s;
  654. }
  655. .ts-2 {
  656. -moz-transition: all 0.2s;
  657. -o-transition: all 0.2s;
  658. transition: all 0.2s;
  659. }
  660. .ts-3 {
  661. -moz-transition: all 0.3s;
  662. -o-transition: all 0.3s;
  663. transition: all 0.3s;
  664. }
  665. .ts-5 {
  666. -moz-transition: all 0.5s;
  667. -o-transition: all 0.5s;
  668. transition: all 0.5s;
  669. }
  670. .w10 {
  671. width: 10%;
  672. }
  673. .w20 {
  674. width: 20%;
  675. }
  676. .w30 {
  677. width: 30%;
  678. }
  679. .w40 {
  680. width: 40%;
  681. }
  682. .w45 {
  683. width: 45%;
  684. }
  685. .w48 {
  686. width: 48%;
  687. }
  688. .w50 {
  689. width: 50%;
  690. }
  691. .w60 {
  692. width: 60%;
  693. }
  694. .w70 {
  695. width: 70%;
  696. }
  697. .w80 {
  698. width: 80%;
  699. }
  700. .w90 {
  701. width: 90%;
  702. }
  703. .w95 {
  704. width: 95%;
  705. }
  706. .w100 {
  707. width: 100%;
  708. }
  709. .vw80 {
  710. width: 80vw;
  711. }
  712. .vw90 {
  713. width: 90vw;
  714. }
  715. .vw100 {
  716. width: 100vw;
  717. }
  718. .h50 {
  719. height: 50vh;
  720. }
  721. .h60 {
  722. height: 60vh;
  723. }
  724. .h70 {
  725. height: 70vh;
  726. }
  727. .h80 {
  728. height: 80vh;
  729. }
  730. .h90 {
  731. height: 90vh;
  732. }
  733. .h100 {
  734. height: 100vh;
  735. &.h-no-bottom {
  736. height: calc(100vh - var(--window-bottom));
  737. }
  738. }
  739. .header-custom {
  740. height: var(--window-status-custom-bar);
  741. width: 100vw;
  742. //background-image: linear-gradient(0deg, #77BDF8 0%, #398CFF 99%);
  743. position: fixed;
  744. top: 0;
  745. left: 0;
  746. background: #398CFF; /* 针对不支持渐变的浏览器 */
  747. background: -webkit-linear-gradient(#398CFF, #77BDF8);
  748. /* Safari 5.1 到 6.0 */
  749. background: -o-linear-gradient(#398CFF, #77BDF8);
  750. /* Opera 11.6 到 12.0 */
  751. background: -moz-linear-gradient(#398CFF, #77BDF8);
  752. /* Fx 3.6 到 15 */
  753. background: linear-gradient(#398CFF, #77BDF8);
  754. /* 标准语法(必须是最后一个) */
  755. }
  756. .line {
  757. border-bottom: 1px solid #E9E9E9;
  758. }
  759. .position-relative {
  760. position: relative;
  761. }
  762. .position-top {
  763. position: fixed;
  764. left: 0;
  765. right: 0;
  766. top: 0;
  767. z-index: 15;
  768. width: 100vw;
  769. }
  770. .position-bottom {
  771. position: fixed;
  772. bottom: 0;
  773. left: 0;
  774. z-index: 15;
  775. width: 100vw;
  776. padding: 20rpx 30rpx 20rpx;
  777. box-sizing: border-box;
  778. border-top: 1px solid #eeeeee;
  779. background: #FFFFFF;
  780. }
  781. .bottom-placeholder {
  782. padding: 100rpx 0 100rpx;
  783. }
  784. .overflow-clamp {
  785. overflow: hidden;
  786. text-overflow: ellipsis;
  787. display: -webkit-box;
  788. -webkit-box-orient: vertical;
  789. &.overflow-clamp-3 {
  790. -webkit-line-clamp: 3;
  791. }
  792. }
  793. .cancel {
  794. width: 40rpx;
  795. height: 40rpx;
  796. line-height: 38rpx;
  797. border: 2rpx solid #EDF2F5;
  798. background-color: #EDF2F5;
  799. border-radius: 50%;
  800. position: absolute; /* 父组件赋予属性relative生效 */
  801. }
  802. .cancel::before,
  803. .cancel::after {
  804. content: "";
  805. position: absolute;
  806. height: 70%;
  807. width: 2rpx;
  808. top: 15%; /* 使X处于圆中心 */
  809. left: calc(50% - 1rpx); /* 使X处于圆中心 */
  810. background-color: #353535;
  811. }
  812. .cancel::before {
  813. transform: rotate(45deg);
  814. }
  815. .cancel::after {
  816. transform: rotate(-45deg);
  817. }
  818. .l-h-n {
  819. line-height: normal;
  820. }
  821. //新增
  822. .line-height { //隔行线
  823. height: 20rpx;
  824. width: 100%;
  825. background: #F7F7FD !important;
  826. }
  827. .line-height10 { //隔行线
  828. height: 10rpx;
  829. width: 100%;
  830. background: #F7F7FD !important;
  831. }
  832. .line-height5 { //隔行线
  833. height: 5rpx;
  834. width: 100%;
  835. background: #F7F7FD !important;
  836. }
  837. .color-theme { //主题颜色
  838. color: #398CFF;
  839. }
  840. .title-shuline { //小标题左竖线
  841. border-left: 6rpx solid #398CFF;
  842. background: linear-gradient(90deg, #DEECFF 40%, rgba(0, 0, 0, 0) 60%);
  843. display: inline-block;
  844. padding-left: 10rpx;
  845. height: 40rpx;
  846. line-height: 40rpx;
  847. }
  848. .placeholder-color { //默认颜色
  849. color: #989797;
  850. }
  851. .b-r-theme { //主题边框
  852. border-right: 2rpx solid #398CFF;
  853. }
  854. .b-b-theme { //主题边框
  855. border-bottom: 2rpx solid #398CFF;
  856. }
  857. .b-t-theme { //主题边框
  858. border-top: 2rpx solid #398CFF;
  859. }
  860. .b-all-theme { //主题边框
  861. border: 2rpx solid #398CFF;
  862. }
  863. .b-r-10 {
  864. border-radius: 10rpx;
  865. }
  866. .b-r-15 {
  867. border-radius: 15rpx;
  868. }
  869. .b-t-r {
  870. border-radius: 10rpx 10rpx 0 0;
  871. }
  872. .b-b-r {
  873. border-radius: 0 0 10rpx 10rpx;
  874. }
  875. .box-shadow {
  876. box-shadow: 0px -2px 50px 7px #54617c0f;
  877. }
  878. .ly-form {
  879. &-item {
  880. display: flex;
  881. width: 100%;
  882. border-bottom: 2rpx solid #eee;
  883. height: 95rpx;
  884. line-height: 95rpx;
  885. &:last-child {
  886. border-bottom: none;
  887. }
  888. &-label {
  889. width: 150rpx;
  890. font-weight: 400;
  891. font-size: 28rpx;
  892. color: #0F0F0F;
  893. }
  894. &-content {
  895. flex: 1;
  896. font-size: 25rpx;
  897. display: flex;
  898. align-items: center;
  899. justify-content: flex-end;
  900. .ly-form-item-input {
  901. > > > .u-input__content__field-wrapper__field {
  902. line-height: 95rpx;
  903. }
  904. }
  905. }
  906. }
  907. }
  908. > > > uni-modal {
  909. z-index: 999999;
  910. }
  911. .arrow-top {
  912. transition: -webkit-transform .3s;
  913. transition: transform .3s;
  914. transition: transform .3s, -webkit-transform .3s;
  915. }
  916. .arrow-down {
  917. -webkit-transform: rotate(180deg);
  918. transform: rotate(180deg);
  919. }
  920. .reoprt-bg {
  921. background-color: #63b4ff;
  922. }
  923. .gray-bg {
  924. background-color: #f1eded;
  925. }
  926. .w-bg {
  927. background-color: #FFFFFF;
  928. }
  929. .b-box {
  930. box-sizing: border-box;
  931. }
  932. .bluetooth {
  933. color: #FFFFFF;
  934. padding: 5px;
  935. border-radius: 50%;
  936. width: 60rpx;
  937. height: 60rpx;
  938. display: flex;
  939. justify-content: center;
  940. align-items: center;
  941. &-icon {
  942. background: #BFBFBF;
  943. width: 95%;
  944. height: 95%;
  945. border-radius: 50%;
  946. display: flex;
  947. justify-content: center;
  948. align-items: center;
  949. }
  950. &.action {
  951. background: #5C8AFF50;
  952. .bluetooth-icon {
  953. background: #5C8AFF;
  954. }
  955. }
  956. &.warning {
  957. background: transparent;
  958. .bluetooth-icon {
  959. background: red;
  960. }
  961. }
  962. }
  963. .common-title {
  964. height: 80rpx;
  965. }