血透系统pad前端

style.scss 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934
  1. .body {
  2. // background: $base-color;
  3. }
  4. html,
  5. body {
  6. height: 100%;
  7. }
  8. #app {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .iconfont {
  13. color: #a8b3ba;
  14. font-size: 0.45rem;
  15. }
  16. .mainBox {
  17. font-size: 0.3rem;
  18. }
  19. .plateTitle {
  20. border-bottom: 1px solid rgba(193, 193, 193, 0.4);
  21. line-height: 1rem;
  22. @include text-align;
  23. font-size: 0.36rem;
  24. color: $main-color;
  25. font-weight: 600;
  26. position: relative;
  27. @include display-flex;
  28. @include align-items-center;
  29. width: 100%;
  30. @include justify-content-center;
  31. @media only screen and (max-width: 767px) {
  32. line-height: 1.2rem;
  33. font-size: 0.45rem;
  34. }
  35. .line {
  36. width: 0.2rem;
  37. height: 0.04rem;
  38. background: $main-color;
  39. z-index: 99;
  40. display: inline-block;
  41. margin: 0 0.2rem;
  42. }
  43. }
  44. .blueBorder {
  45. height: 0.2rem;
  46. line-height: 0.2rem;
  47. background: #f6f8f9;
  48. }
  49. // 数据详情
  50. .plate-box {
  51. background: $text-color;
  52. padding: 0 0 0.3rem 0;
  53. .title {
  54. border-bottom: 1px $border-color solid;
  55. line-height: 1rem;
  56. @include text-align;
  57. font-size: 0.36rem;
  58. color: $main-color;
  59. font-weight: 600;
  60. position: relative;
  61. @include display-flex;
  62. @include align-items-center;
  63. width: 100%;
  64. @include justify-content-center;
  65. @media only screen and (max-width: 767px) {
  66. line-height: 1.2rem;
  67. font-size: 0.45rem;
  68. }
  69. }
  70. .line {
  71. width: 0.2rem;
  72. height: 0.04rem;
  73. background: $main-color;
  74. z-index: 99;
  75. display: inline-block;
  76. margin: 0 0.2rem;
  77. }
  78. .plate {
  79. margin: 0.25rem 1rem;
  80. padding-bottom: 0.28rem;
  81. @include box-sizing;
  82. @include display-flex;
  83. @include align-items-start;
  84. @include justify-content-between;
  85. border-bottom: 1px #e6e6e6 dashed;
  86. ul {
  87. @include flex;
  88. li {
  89. font-size: 0.34rem;
  90. line-height: 0.62rem;
  91. float: left;
  92. width: 5rem;
  93. @media only screen and (min-width: 376px) and (max-width: 413px) {
  94. width: 4.2rem;
  95. }
  96. @media only screen and (min-width: 415px) and (max-width: 767px) {
  97. width: 5.6rem;
  98. font-size: 0.4rem;
  99. }
  100. @media only screen and (min-width: 768px) {
  101. width: 6.6rem;
  102. }
  103. .content {
  104. color: $main-color;
  105. }
  106. .unit {
  107. color: $font-color;
  108. }
  109. }
  110. }
  111. }
  112. .note {
  113. font-size: 0.34rem;
  114. color: $pgh-color;
  115. width: 100%;
  116. padding: 0 1rem;
  117. line-height: 0.5rem;
  118. span {
  119. color: $main-color;
  120. }
  121. }
  122. .border {
  123. border: none;
  124. }
  125. }
  126. // 今日弹出层
  127. .popup-content {
  128. @include box-sizing; // @include display-flex;
  129. // @include flex;
  130. background: $text-color;
  131. border-radius: 6px;
  132. font-size: 0.28rem;
  133. width: 13.2rem;
  134. .title {
  135. border-bottom: 1px $border-color solid;
  136. height: 0.88rem;
  137. line-height: 0.88rem;
  138. @include text-align;
  139. font-size: 0.3rem;
  140. color: $main-color;
  141. font-weight: 700;
  142. position: relative;
  143. @include display-flex;
  144. @include align-items-center;
  145. width: 100%;
  146. @include justify-content-center;
  147. .line {
  148. width: 0.1rem;
  149. height: 0.04rem;
  150. background: $main-color;
  151. z-index: 99;
  152. display: inline-block;
  153. margin: 0 0.14rem;
  154. }
  155. }
  156. .content {
  157. padding: 0 0.36rem;
  158. .cell {
  159. float: left;
  160. width: 3.22rem;
  161. margin: 0.35rem 0.4rem 0 0.4rem;
  162. label {
  163. display: block;
  164. height: 0.55rem;
  165. line-height: 0.55rem;
  166. color: $pgh-color;
  167. }
  168. select {
  169. width: 100%;
  170. padding: 0.2rem 0;
  171. border: 1px $border-color solid;
  172. border-radius: 2px;
  173. padding-left: 5px;
  174. }
  175. .inputBox {
  176. border: 1px $border-color solid;
  177. border-radius: 2px;
  178. padding: 0.18rem 0;
  179. padding-left: 5px;
  180. }
  181. .textarea {
  182. width: 100%;
  183. height: 1.22rem;
  184. border: 1px $border-color solid;
  185. border-radius: 2px;
  186. padding-left: 5px;
  187. }
  188. }
  189. .width {
  190. width: 90%;
  191. label {
  192. display: inline-block;
  193. }
  194. button {
  195. background: $main-color;
  196. color: #fff;
  197. border-radius: 6px;
  198. width: 3.1rem;
  199. height: 0.9rem;
  200. line-height: 0.9rem;
  201. text-align: center;
  202. margin: 0 0 0.9rem 0;
  203. }
  204. }
  205. .center {
  206. text-align: center;
  207. }
  208. }
  209. }
  210. .yzNav {
  211. width: 60%;
  212. margin: 0 auto;
  213. @include display-flex;
  214. @include text-align;
  215. @include align-items-center;
  216. @include justify-content-around;
  217. background: #fff;
  218. span {
  219. height: 1.2rem;
  220. line-height: 1.2rem;
  221. background: #fff;
  222. border-radius: 5px;
  223. border: 1px $border-color solid;
  224. display: inline-block;
  225. @include text-align;
  226. margin: 0.25rem 0;
  227. color: #34495e;
  228. font-size: 0.45rem;
  229. padding: 0 0.16rem;
  230. }
  231. .forbid {
  232. color: $forbid-color;
  233. }
  234. }
  235. // 监控搜索
  236. .search-content {
  237. background: #ebf1f7;
  238. padding: 0.2rem 0.28rem;
  239. .search {
  240. background: $white-bg;
  241. height: 0.7rem;
  242. line-height: 0.7rem;
  243. border-radius: 0.5rem;
  244. @include flex;
  245. @include display-flex;
  246. @include align-items-center;
  247. margin: 0 0.3rem;
  248. padding: 0 0 0 0.3rem;
  249. .iconfont {
  250. color: #a8b3ba;
  251. font-size: 0.4rem;
  252. margin: 0 0.1rem 0 0;
  253. }
  254. .searchInput {
  255. width: 87%;
  256. height: 0.6rem;
  257. line-height: 0.6rem;
  258. border: none;
  259. outline: none;
  260. color: $pgh-color;
  261. font-size: 0.28rem;
  262. }
  263. }
  264. }
  265. // 监控表单
  266. .MonitoringForm {
  267. width: 100%;
  268. overflow: hidden;
  269. font-size: 0.3rem;
  270. border: $border-color;
  271. background: $text-color;
  272. padding: 0 0 0.28rem 0;
  273. tr {
  274. padding: 0;
  275. margin: 0;
  276. padding: 0.1rem 0;
  277. th {
  278. background: $main-color;
  279. border: none;
  280. color: #fff;
  281. padding: 0;
  282. margin: 0;
  283. height: 0.88rem;
  284. line-height: 0.88rem;
  285. font-weight: normal;
  286. }
  287. td {
  288. background: #f0f5fa;
  289. border: none;
  290. padding: 0.3rem 0;
  291. text-align: center;
  292. button {
  293. background: $pink;
  294. color: #fff;
  295. display: inline-block;
  296. width: 40%;
  297. margin: 0 2%;
  298. height: 0.6rem;
  299. line-height: 0.6rem;
  300. border-radius: 4px;
  301. }
  302. }
  303. }
  304. }
  305. .vux-popover {
  306. box-shadow: 0 0 15px #eee;
  307. .popover-demo-content {
  308. ul {
  309. // width: 6.4rem;
  310. padding: 0.28rem;
  311. li {
  312. font-size: 0.32rem;
  313. color: $title-color;
  314. line-height: 0.7rem;
  315. height: 0.7rem;
  316. .iconfont {
  317. float: right;
  318. color: #409eff;
  319. font-size: 0.5rem;
  320. display: inline-block;
  321. }
  322. }
  323. }
  324. }
  325. }
  326. // el
  327. .popover-demo-content {
  328. ul {
  329. li {
  330. font-size: 0.45rem;
  331. color: $title-color;
  332. line-height: 1rem;
  333. height: 1rem;
  334. .iconfont {
  335. float: right;
  336. color: #409eff;
  337. font-size: 0.5rem;
  338. display: inline-block;
  339. }
  340. }
  341. }
  342. }
  343. .tick {
  344. position: relative;
  345. color: $main-color !important;
  346. font-weight: 600;
  347. }
  348. .mainBox {
  349. .mainContent {
  350. // margin: 0 0 0 1.58rem;
  351. }
  352. }
  353. .van-popup {
  354. top: 7% !important;
  355. transform: translate3d(-50%, 0, 0) !important;
  356. }
  357. // 弹窗滚动条
  358. ::-webkit-scrollbar {
  359. width: 0.25rem;
  360. height: 0.25rem;
  361. background-color: #fff;
  362. @media only screen and (max-width: 812px) {
  363. width: 0 !important;
  364. height: 0 !important;
  365. background-color: transparent !important;
  366. }
  367. @media only screen and (min-width: 768px) and (max-width: 1024px) {
  368. width: 0 !important;
  369. }
  370. @media only screen and (min-width: 1024px) {
  371. width: 0 !important;
  372. }
  373. }
  374. ::-webkit-scrollbar-track {
  375. -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  376. background-color: #fff;
  377. @media only screen and (max-width: 812px) {
  378. background-color: transparent !important;
  379. }
  380. }
  381. ::-webkit-scrollbar-thumb {
  382. -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  383. background-color: #e5e5e5;
  384. @media only screen and (max-width: 812px) {
  385. background-color: transparent !important;
  386. }
  387. }
  388. // 弹窗样式
  389. .van-popup {
  390. // max-height:8.6rem !important;
  391. }
  392. .van-popup {
  393. border-radius: 10px !important;
  394. .Dialog {
  395. font-size: 0.36rem;
  396. width: 11.8rem;
  397. @media only screen and (min-width: 415px) and (max-width: 500px) {
  398. width: 10.8rem !important;
  399. }
  400. @media only screen and (min-width: 501px) and (max-width: 737px) {
  401. width: 12.8rem !important;
  402. }
  403. @media only screen and (min-width: 376px) and (max-width: 415px) {
  404. width: 10.8rem !important;
  405. }
  406. @media only screen and (min-width: 769px) and (max-width: 1024px) {
  407. width: 12.8rem !important;
  408. }
  409. @media only screen and (min-width: 1024px) {
  410. width: 15.8rem !important;
  411. }
  412. background: #ebf1f7;
  413. position: relative;
  414. .DialogTit {
  415. @include box-sizing;
  416. @include display-flex;
  417. @include align-items-center;
  418. @include text-align;
  419. @include justify-content-between;
  420. padding: 0.3rem 0.36rem;
  421. z-index: 999;
  422. background: #fff;
  423. box-shadow: 3px 3px 3px #d7dce2;
  424. margin-bottom: 0.24rem;
  425. .iconfont {
  426. font-size: 0.6rem;
  427. color: $main-color;
  428. font-weight: bold;
  429. // @media only screen and (max-width: 812px) {
  430. // font-size: 0.34rem !important;
  431. // }
  432. }
  433. .back {
  434. font-size: 0.45rem;
  435. color: $main-color;
  436. @include display-flex;
  437. @include align-items-center;
  438. font-weight: 600;
  439. .iconfont {
  440. font-size: 0.5rem;
  441. font-weight: 700;
  442. color: $main-color;
  443. margin-top: 0.06rem;
  444. }
  445. }
  446. .name {
  447. font-size: 0.45rem;
  448. color: $main-color;
  449. font-weight: 600;
  450. }
  451. .success {
  452. font-size: 0.45rem;
  453. font-weight: 600;
  454. color: $title-color;
  455. }
  456. }
  457. .line {
  458. height: 0.24rem;
  459. background: #ebf1f7;
  460. }
  461. .gradient {
  462. height: 0.24rem;
  463. background: -webkit-linear-gradient(#dfe4ea, #ebf1f7);
  464. }
  465. .DialogContent {
  466. height: 11.8rem !important;
  467. overflow-y: scroll;
  468. background: #fff;
  469. @media only screen and (max-width: 415px) {
  470. height: 14.8rem !important;
  471. }
  472. @media only screen and (min-width: 415px) and (max-width: 737px) {
  473. height: 14.8rem !important;
  474. }
  475. // @media only screen and (min-width: 666px) and (max-width: 737px) {
  476. // height: 8.8rem !important;
  477. // }
  478. // @media only screen and (min-width: 737px) and (max-width: 768px) {
  479. // height: 14.8rem !important;
  480. // }
  481. @media only screen and (min-width: 768px) {
  482. height: 11.8rem !important;
  483. }
  484. @media only screen and (min-width: 768px) {
  485. height: 9.8rem !important;
  486. }
  487. .item {
  488. padding: 0 0.32rem;
  489. border-bottom: 1px #e5e5e5 solid;
  490. @include box-sizing;
  491. @include display-flex;
  492. @include align-items-center;
  493. @include text-align;
  494. @include justify-content-between;
  495. color: $title-color;
  496. .name {
  497. font-size: 0.45rem;
  498. height: 1.2rem;
  499. line-height: 1.2rem;
  500. color: $title-color;
  501. @media only screen and (max-width: 767px) {
  502. height: 1.4rem;
  503. line-height: 1.4rem;
  504. }
  505. }
  506. .content {
  507. @include flex;
  508. text-align: right;
  509. margin-left: 0.2rem;
  510. .iconfont {
  511. font-size: 0.5rem;
  512. }
  513. input {
  514. height: 1rem;
  515. line-height: 1rem;
  516. border: none;
  517. font-size: 0.45rem;
  518. @include flex;
  519. text-align: right;
  520. width: 100%;
  521. }
  522. .text {
  523. height: 1rem;
  524. line-height: 0.5rem;
  525. font-size: 0.45rem;
  526. }
  527. }
  528. }
  529. }
  530. .footer {
  531. height: 1rem;
  532. line-height: 1rem;
  533. padding-left: 0.36rem;
  534. }
  535. .PrescSubmit {
  536. width: 100%;
  537. padding: 0.2rem 0;
  538. background: #fff;
  539. text-align: center;
  540. button {
  541. padding: 0 0.32rem;
  542. border: $main-color;
  543. font-size: 0.45rem;
  544. text-align: center;
  545. height: 1.3rem;
  546. line-height: 0.7rem;
  547. background: #fff;
  548. border: 1px $main-color solid;
  549. border-radius: 5px;
  550. color: $main-color;
  551. margin: 0 0.11rem;
  552. &.tjcq {
  553. background: $main-color;
  554. color: #fff;
  555. }
  556. }
  557. }
  558. }
  559. }
  560. // 表单样式
  561. .table {
  562. width: 1800px;
  563. @media only screen and (min-width: 415px) and (max-width: 767px) {
  564. width: 2800px;
  565. }
  566. overflow: auto;
  567. font-size: 0.45rem;
  568. text-align: center;
  569. border: $border-color;
  570. padding-bottom: 0.02rem;
  571. border: none;
  572. tr {
  573. padding: 0;
  574. margin: 0;
  575. padding: 0.14rem 0;
  576. th {
  577. background: $main-color;
  578. border: none;
  579. color: #fff;
  580. padding: 0;
  581. margin: 0;
  582. height: 1.2rem;
  583. font-weight: normal;
  584. }
  585. td {
  586. background: #ecf5ff;
  587. border: none;
  588. padding: 0.26rem 0;
  589. .xg {
  590. color: $main-color;
  591. font-size: 0.45rem;
  592. margin-right: 0.2rem;
  593. cursor: pointer;
  594. .iconfont {
  595. margin-right: 0.1rem;
  596. color: $main-color;
  597. font-size: 0.45rem;
  598. }
  599. }
  600. .sc {
  601. color: #ff7979;
  602. margin-right: 0.2rem;
  603. cursor: pointer;
  604. .iconfont {
  605. color: #ff7979;
  606. }
  607. }
  608. }
  609. }
  610. }
  611. .van-checkbox__icon--checked .van-icon {
  612. color: #fff;
  613. border-color: $main-color !important;
  614. background-color: $main-color !important;
  615. @media only screen and (min-width: 768px) {
  616. font-size: 20px !important;
  617. line-height: 30px !important;
  618. width: 30px !important;
  619. height: 30px !important;
  620. }
  621. }
  622. .van-checkbox__icon {
  623. @media only screen and (min-width: 768px) {
  624. line-height: 30px !important;
  625. height: 30px !important;
  626. }
  627. }
  628. .van-checkbox__icon .van-icon {
  629. @media only screen and (min-width: 768px) {
  630. font-size: 20px !important;
  631. line-height: 30px !important;
  632. width: 30px !important;
  633. height: 30px !important;
  634. }
  635. }
  636. // .van-checkbox__icon .van-icon {
  637. // @media only screen and (max-width: 812px) {
  638. // font-size: 14px !important;
  639. // line-height: 16px !important;
  640. // width: 16px !important;
  641. // height: 16px !important;
  642. // }
  643. // }
  644. .CheckBox .van-checkbox__label {
  645. width: 94%;
  646. font-size: 0.45rem;
  647. @media only screen and (max-width: 812px) {
  648. width: 90%;
  649. }
  650. }
  651. .mint-datetime-action {
  652. font-size: 0.45rem;
  653. }
  654. .picker-item {
  655. font-size: 0.45rem;
  656. }
  657. .NoData {
  658. width: 100%;
  659. text-align: center;
  660. background: #fff;
  661. padding: 0.3rem 0;
  662. display: flex;
  663. align-items: center;
  664. justify-content: center;
  665. text-align: center;
  666. img {
  667. width: 180px;
  668. }
  669. }
  670. .el-popper {
  671. margin-top: 0 !important;
  672. }
  673. .CheckBox,
  674. .DialogContent,
  675. .optionsBox,
  676. .el-collapse-item__content {
  677. /* 针对缺省样式 (必须的) */
  678. &::-webkit-scrollbar {
  679. width: 6px;
  680. height: 10px;
  681. }
  682. /* 滚动条的滑轨背景颜色 */
  683. &::-webkit-scrollbar-track {
  684. background-color: #fff;
  685. border-radius: 3px;
  686. -moz-border-radius: 3px;
  687. -webkit-border-radius: 3px;
  688. }
  689. /* 滑块颜色 */
  690. &::-webkit-scrollbar-thumb {
  691. background: #d7dce2;
  692. border-radius: 3px;
  693. -moz-border-radius: 3px;
  694. -webkit-border-radius: 3px;
  695. }
  696. /*内层轨道的颜色*/
  697. &::-webkit-scrollbar-track-piece {
  698. background-color: #fff;
  699. border-radius: 3px;
  700. -moz-border-radius: 3px;
  701. -webkit-border-radius: 3px;
  702. }
  703. /* 滑轨两头的监听按钮颜色 */
  704. &::-webkit-scrollbar-button {
  705. background-color: #eee;
  706. width: 0;
  707. height: 0;
  708. }
  709. /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
  710. &::-webkit-scrollbar-corner {
  711. background-color: #eee;
  712. }
  713. }
  714. .el-form-item__label {
  715. font-size: 0.45rem !important; // width: 90px !important;
  716. @media only screen and (max-width: 812px) {
  717. text-align: left !important;
  718. }
  719. }
  720. .el-radio__label {
  721. font-size: 0.45rem !important;
  722. }
  723. .el-radio + .el-radio {
  724. margin-left: 15px !important;
  725. @media only screen and (max-width: 812px) {
  726. margin-left: 0 !important;
  727. }
  728. }
  729. .el-button--mini {
  730. font-size: 0.32rem !important;
  731. }
  732. .el-form-item__label,
  733. .el-radio,
  734. .van-checkbox__label {
  735. color: $title-color !important;
  736. }
  737. .el-collapse-item__header {
  738. font-size: 0.45rem !important;
  739. color: $pgh-color !important;
  740. height: 64px !important;
  741. line-height: 64px !important;
  742. @media only screen and (max-width: 767px) {
  743. font-size: 0.45rem !important;
  744. height: 48px !important;
  745. line-height: 48px !important;
  746. }
  747. }
  748. .el-collapse-item__arrow {
  749. color: #a8b3ba !important;
  750. line-height: 64px !important;
  751. @media only screen and (max-width: 812px) {
  752. line-height: 48px !important;
  753. }
  754. }
  755. // 搜索全局
  756. .search {
  757. color: #a8b3ba;
  758. width: 6.2rem;
  759. float: right;
  760. font-size: 0.45rem;
  761. .field {
  762. // @media only screen and (max-width: 812px) {
  763. // margin-top: 6px;
  764. // }
  765. }
  766. .iconfont {
  767. color: #a8b3ba;
  768. font-size: 0.42rem;
  769. @media only screen and (max-width: 812px) {
  770. font-size: 0.52rem;
  771. }
  772. }
  773. .field {
  774. background-color: #ebf1f7;
  775. padding: 0 0 0 10px;
  776. border-radius: 30px;
  777. display: flex;
  778. align-items: center;
  779. height: 0.64rem !important;
  780. line-height: 0.64rem !important;
  781. @media only screen and (max-width: 812px) {
  782. padding: 0 0 0 4px;
  783. }
  784. }
  785. }
  786. .van-cell {
  787. // @media only screen and (max-width: 812px) {
  788. // font-size: 12px !important;
  789. // }
  790. }
  791. .van-field__left-icon {
  792. // @media only screen and (max-width: 812px) {
  793. // // margin-right: 0 !important;
  794. // margin-top: -1px;
  795. // }
  796. .van-icon-arrow-down {
  797. @media only screen and (max-width: 812px) {
  798. font-size: 12px !important;
  799. }
  800. }
  801. }
  802. .van-field__button {
  803. @media only screen and (max-width: 812px) {
  804. padding-left: 0 !important;
  805. }
  806. }
  807. .van-switch {
  808. @media only screen and (max-width: 812px) {
  809. font-size: 16px !important;
  810. }
  811. }
  812. .picker-toolbar {
  813. @media only screen and (max-width: 768px) {
  814. height: 40px !important;
  815. }
  816. }
  817. .mint-datetime-action {
  818. @media only screen and (max-width: 768px) {
  819. line-height: 40px !important;
  820. }
  821. }
  822. // 返回
  823. .goBack {
  824. cursor: pointer;
  825. @include display-flex;
  826. @include align-items-center;
  827. @include text-align;
  828. font-size: 0.45rem;
  829. .back {
  830. // color: $main-color;
  831. color: #fff;
  832. margin-right: 0.3rem;
  833. .iconfont {
  834. // color: $main-color;
  835. color: #fff;
  836. font-size: 0.42rem;
  837. }
  838. }
  839. .name {
  840. .iconfont {
  841. margin-left: 0.1rem;
  842. }
  843. }
  844. }
  845. .van-button--small {
  846. font-size: 0.28rem !important;
  847. @media only screen and (max-width: 812px) {
  848. min-width: 36px !important;
  849. }
  850. }
  851. .el-input {
  852. color: #1b2631 !important;
  853. font-size: 0.36rem !important;
  854. }
  855. .el-collapse-item__content {
  856. height: 7.4rem !important;
  857. overflow-y: auto !important;
  858. }
  859. // 顶部导航固定
  860. .top,
  861. .top_row {
  862. position: fixed !important;
  863. top: 0;
  864. left: 0;
  865. right: 0;
  866. z-index: 1000;
  867. background: #fff;
  868. }
  869. // .choice,
  870. // .screening{
  871. // position: fixed;
  872. // top: 63px;
  873. // right: 0;
  874. // z-index: 66;
  875. // left: 1.58rem;
  876. // background: #fff;
  877. // }
  878. .stateBox {
  879. padding-top: 140px;
  880. background: #fff;
  881. min-height: calc(100vh - 2px);
  882. padding-left: 0.45rem;
  883. @media only screen and (min-width: 768px) {
  884. padding-top: 232px;
  885. }
  886. @media only screen and (min-width: 415px) and (max-width: 767px) {
  887. padding-top: 186px;
  888. padding-left: 0.3rem;
  889. }
  890. }
  891. #app {
  892. -webkit-overflow-scrolling: touch;
  893. }