血透系统pad前端

style.scss 18KB

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