utils.scss 14 KB

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