utils.scss 14 KB

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