layout.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041
  1. .pear-container {
  2. margin: 10px;
  3. background-color: whitesmoke;
  4. width: calc(100vw - 20px);
  5. }
  6. body::-webkit-scrollbar {
  7. width: 0px;
  8. height: 0px;
  9. }
  10. body::-webkit-scrollbar {
  11. width: 6px;
  12. height: 6px;
  13. }
  14. body::-webkit-scrollbar-track {
  15. background: white;
  16. border-radius: 2px;
  17. }
  18. body::-webkit-scrollbar-thumb {
  19. background: #E6E6E6;
  20. border-radius: 2px;
  21. }
  22. body::-webkit-scrollbar-thumb:hover {
  23. background: #E6E6E6;
  24. }
  25. body::-webkit-scrollbar-corner {
  26. background: #f6f6f6;
  27. }
  28. .mainBox::-webkit-scrollbar {
  29. width: 0px;
  30. height: 0px;
  31. }
  32. .mainBox::-webkit-scrollbar {
  33. width: 6px;
  34. height: 6px;
  35. }
  36. .mainBox::-webkit-scrollbar-track {
  37. background: white;
  38. border-radius: 2px;
  39. }
  40. .mainBox::-webkit-scrollbar-thumb {
  41. background: #E6E6E6;
  42. border-radius: 2px;
  43. }
  44. .mainBox::-webkit-scrollbar-thumb:hover {
  45. background: #E6E6E6;
  46. }
  47. .mainBox::-webkit-scrollbar-corner {
  48. background: #f6f6f6;
  49. }
  50. .mainBox {
  51. width: 100%;
  52. position: absolute;
  53. top: 0px;
  54. left: 0px;
  55. bottom: 50px;
  56. overflow: auto;
  57. }
  58. .bottom {
  59. width: 100%;
  60. position: absolute;
  61. bottom: 0px;
  62. left: 0px;
  63. height: 50px;
  64. line-height: 50px;
  65. background-color: #F8F8F8;
  66. border-top: 1px solid #eee;
  67. }
  68. .button-container {
  69. position: absolute;
  70. right: 15px;
  71. }
  72. .main-container {
  73. margin: 15px;
  74. }
  75. .main-container .layui-form-item {
  76. margin-bottom: 15px !important;
  77. margin-top: 10px !important;
  78. }
  79. .pear-row::before,
  80. .pear-row::after {
  81. content: "";
  82. display: table;
  83. clear: both;
  84. }
  85. .pear-col {
  86. float: left;
  87. min-height: 1px;
  88. }
  89. .pear-row * {
  90. box-sizing: border-box
  91. }
  92. .pear-col-md1 {
  93. width: 4.16%;
  94. }
  95. .pear-col-md2 {
  96. width: 8.33%;
  97. }
  98. .pear-col-md3 {
  99. width: 12.5%;
  100. }
  101. .pear-col-md4 {
  102. width: 16.66%;
  103. }
  104. .pear-col-md5 {
  105. width: 20.83%;
  106. }
  107. .pear-col-md6 {
  108. width: 25%;
  109. }
  110. .pear-col-md7 {
  111. width: 29.16%;
  112. }
  113. .pear-col-md8 {
  114. width: 33.33%;
  115. }
  116. .pear-col-md9 {
  117. width: 37.5%;
  118. }
  119. .pear-col-md10 {
  120. width: 41.66%;
  121. }
  122. .pear-col-md11 {
  123. width: 45.83%;
  124. }
  125. .pear-col-md12 {
  126. width: 50%;
  127. }
  128. .pear-col-md13 {
  129. width: 54.16%;
  130. }
  131. .pear-col-md14 {
  132. width: 58.33%;
  133. }
  134. .pear-col-md15 {
  135. width: 62.5%;
  136. }
  137. .pear-col-md16 {
  138. width: 66.66%;
  139. }
  140. .pear-col-md17 {
  141. width: 70.83%;
  142. }
  143. .pear-col-md18 {
  144. width: 75%;
  145. }
  146. .pear-col-md19 {
  147. width: 79.16%;
  148. }
  149. .pear-col-md20 {
  150. width: 83.33%;
  151. }
  152. .pear-col-md21 {
  153. width: 87.5%;
  154. }
  155. .pear-col-md22 {
  156. width: 91.66%;
  157. }
  158. .pear-col-md23 {
  159. width: 95.83%;
  160. }
  161. .pear-col-md24 {
  162. width: 100%;
  163. }
  164. @media all and (min-width:993px) and (max-width:1199px) {
  165. .pear-col-md-offset1 {
  166. margin-left: 4.16%;
  167. }
  168. .pear-col-md-offset2 {
  169. margin-left: 8.33%;
  170. }
  171. .pear-col-md-offset3 {
  172. margin-left: 12.5%;
  173. }
  174. .pear-col-md-offset4 {
  175. margin-left: 16.66%;
  176. }
  177. .pear-col-md-offset5 {
  178. margin-left: 20.83%;
  179. }
  180. .pear-col-md-offset6 {
  181. margin-left: 25%;
  182. }
  183. .pear-col-md-offset7 {
  184. margin-left: 29.16%;
  185. }
  186. .pear-col-md-offset8 {
  187. margin-left: 33.33%;
  188. }
  189. .pear-col-md-offset9 {
  190. margin-left: 37.5%;
  191. }
  192. .pear-col-md-offset10 {
  193. margin-left: 41.66%;
  194. }
  195. .pear-col-md-offset11 {
  196. margin-left: 45.83%;
  197. }
  198. .pear-col-md-offset12 {
  199. margin-left: 50%;
  200. }
  201. .pear-col-md-offset13 {
  202. margin-left: 54.16%;
  203. }
  204. .pear-col-md-offset14 {
  205. margin-left: 58.33%;
  206. }
  207. .pear-col-md-offset15 {
  208. margin-left: 62.5%;
  209. }
  210. .pear-col-md-offset16 {
  211. margin-left: 66.66%;
  212. }
  213. .pear-col-md-offset17 {
  214. margin-left: 70.83%;
  215. }
  216. .pear-col-md-offset18 {
  217. margin-left: 75%;
  218. }
  219. .pear-col-md-offset19 {
  220. margin-left: 79.16%;
  221. }
  222. .pear-col-md-offset20 {
  223. margin-left: 83.33%;
  224. }
  225. .pear-col-md-offset21 {
  226. margin-left: 87.5%;
  227. }
  228. .pear-col-md-offset22 {
  229. margin-left: 91.66%;
  230. }
  231. .pear-col-md-offset23 {
  232. margin-left: 95.83%;
  233. }
  234. .pear-col-md-offset24 {
  235. margin-left: 100%;
  236. }
  237. }
  238. @media all and (max-width:768px) {
  239. .pear-col-xs1 {
  240. width: 4.16%;
  241. }
  242. .pear-col-xs2 {
  243. width: 8.33%;
  244. }
  245. .pear-col-xs3 {
  246. width: 12.5%;
  247. }
  248. .pear-col-xs4 {
  249. width: 16.66%;
  250. }
  251. .pear-col-xs5 {
  252. width: 20.83%;
  253. }
  254. .pear-col-xs6 {
  255. width: 25%;
  256. }
  257. .pear-col-xs7 {
  258. width: 29.16%;
  259. }
  260. .pear-col-xs8 {
  261. width: 33.33%;
  262. }
  263. .pear-col-xs9 {
  264. width: 37.5%;
  265. }
  266. .pear-col-xs10 {
  267. width: 41.66%;
  268. }
  269. .pear-col-xs11 {
  270. width: 45.83%;
  271. }
  272. .pear-col-xs12 {
  273. width: 50%;
  274. }
  275. .pear-col-xs13 {
  276. width: 54.16%;
  277. }
  278. .pear-col-xs14 {
  279. width: 58.33%;
  280. }
  281. .pear-col-xs15 {
  282. width: 62.5%;
  283. }
  284. .pear-col-xs16 {
  285. width: 66.66%;
  286. }
  287. .pear-col-xs17 {
  288. width: 70.83%;
  289. }
  290. .pear-col-xs18 {
  291. width: 75%;
  292. }
  293. .pear-col-xs19 {
  294. width: 79.16%;
  295. }
  296. .pear-col-xs20 {
  297. width: 83.33%;
  298. }
  299. .pear-col-xs21 {
  300. width: 87.5%;
  301. }
  302. .pear-col-xs22 {
  303. width: 91.66%;
  304. }
  305. .pear-col-xs23 {
  306. width: 95.83%;
  307. }
  308. .pear-col-xs24 {
  309. width: 100%;
  310. }
  311. .pear-col-xs-offset1 {
  312. margin-left: 4.16%;
  313. }
  314. .pear-col-xs-offset2 {
  315. margin-left: 8.33%;
  316. }
  317. .pear-col-xs-offset3 {
  318. margin-left: 12.5%;
  319. }
  320. .pear-col-xs-offset4 {
  321. margin-left: 16.66%;
  322. }
  323. .pear-col-xs-offset5 {
  324. margin-left: 20.83%;
  325. }
  326. .pear-col-xs-offset6 {
  327. margin-left: 25%;
  328. }
  329. .pear-col-xs-offset7 {
  330. margin-left: 29.16%;
  331. }
  332. .pear-col-xs-offset8 {
  333. margin-left: 33.33%;
  334. }
  335. .pear-col-xs-offset9 {
  336. margin-left: 37.5%;
  337. }
  338. .pear-col-xs-offset10 {
  339. margin-left: 41.66%;
  340. }
  341. .pear-col-xs-offset11 {
  342. margin-left: 45.83%;
  343. }
  344. .pear-col-xs-offset12 {
  345. margin-left: 50%;
  346. }
  347. .pear-col-xs-offset13 {
  348. margin-left: 54.16%;
  349. }
  350. .pear-col-xs-offset14 {
  351. margin-left: 58.33%;
  352. }
  353. .pear-col-xs-offset15 {
  354. margin-left: 62.5%;
  355. }
  356. .pear-col-xs-offset16 {
  357. margin-left: 66.66%;
  358. }
  359. .pear-col-xs-offset17 {
  360. margin-left: 70.83%;
  361. }
  362. .pear-col-xs-offset18 {
  363. margin-left: 75%;
  364. }
  365. .pear-col-xs-offset19 {
  366. margin-left: 79.16%;
  367. }
  368. .pear-col-xs-offset20 {
  369. margin-left: 83.33%;
  370. }
  371. .pear-col-xs-offset21 {
  372. margin-left: 87.5%;
  373. }
  374. .pear-col-xs-offset22 {
  375. margin-left: 91.66%;
  376. }
  377. .pear-col-xs-offset23 {
  378. margin-left: 95.83%;
  379. }
  380. .pear-col-xs-offset24 {
  381. margin-left: 100%;
  382. }
  383. }
  384. @media all and (min-width:768px) and (max-width:992px) {
  385. .pear-col-sm1 {
  386. width: 4.16%;
  387. }
  388. .pear-col-sm2 {
  389. width: 8.33%;
  390. }
  391. .pear-col-sm3 {
  392. width: 12.5%;
  393. }
  394. .pear-col-sm4 {
  395. width: 16.66%;
  396. }
  397. .pear-col-sm5 {
  398. width: 20.83%;
  399. }
  400. .pear-col-sm6 {
  401. width: 25%;
  402. }
  403. .pear-col-sm7 {
  404. width: 29.16%;
  405. }
  406. .pear-col-sm8 {
  407. width: 33.33%;
  408. }
  409. .pear-col-sm9 {
  410. width: 37.5%;
  411. }
  412. .pear-col-sm10 {
  413. width: 41.66%;
  414. }
  415. .pear-col-sm11 {
  416. width: 45.83%;
  417. }
  418. .pear-col-sm12 {
  419. width: 50%;
  420. }
  421. .pear-col-sm13 {
  422. width: 54.16%;
  423. }
  424. .pear-col-sm14 {
  425. width: 58.33%;
  426. }
  427. .pear-col-sm15 {
  428. width: 62.5%;
  429. }
  430. .pear-col-sm16 {
  431. width: 66.66%;
  432. }
  433. .pear-col-sm17 {
  434. width: 70.83%;
  435. }
  436. .pear-col-sm18 {
  437. width: 75%;
  438. }
  439. .pear-col-sm19 {
  440. width: 79.16%;
  441. }
  442. .pear-col-sm20 {
  443. width: 83.33%;
  444. }
  445. .pear-col-sm21 {
  446. width: 87.5%;
  447. }
  448. .pear-col-sm22 {
  449. width: 91.66%;
  450. }
  451. .pear-col-sm23 {
  452. width: 95.83%;
  453. }
  454. .pear-col-sm24 {
  455. width: 100%;
  456. }
  457. .pear-col-sm-offset1 {
  458. margin-left: 4.16%;
  459. }
  460. .pear-col-sm-offset2 {
  461. margin-left: 8.33%;
  462. }
  463. .pear-col-sm-offset3 {
  464. margin-left: 12.5%;
  465. }
  466. .pear-col-sm-offset4 {
  467. margin-left: 16.66%;
  468. }
  469. .pear-col-sm-offset5 {
  470. margin-left: 20.83%;
  471. }
  472. .pear-col-sm-offset6 {
  473. margin-left: 25%;
  474. }
  475. .pear-col-sm-offset7 {
  476. margin-left: 29.16%;
  477. }
  478. .pear-col-sm-offset8 {
  479. margin-left: 33.33%;
  480. }
  481. .pear-col-sm-offset9 {
  482. margin-left: 37.5%;
  483. }
  484. .pear-col-sm-offset10 {
  485. margin-left: 41.66%;
  486. }
  487. .pear-col-sm-offset11 {
  488. margin-left: 45.83%;
  489. }
  490. .pear-col-sm-offset12 {
  491. margin-left: 50%;
  492. }
  493. .pear-col-sm-offset13 {
  494. margin-left: 54.16%;
  495. }
  496. .pear-col-sm-offset14 {
  497. margin-left: 58.33%;
  498. }
  499. .pear-col-sm-offset15 {
  500. margin-left: 62.5%;
  501. }
  502. .pear-col-sm-offset16 {
  503. margin-left: 66.66%;
  504. }
  505. .pear-col-sm-offset17 {
  506. margin-left: 70.83%;
  507. }
  508. .pear-col-sm-offset18 {
  509. margin-left: 75%;
  510. }
  511. .pear-col-sm-offset19 {
  512. margin-left: 79.16%;
  513. }
  514. .pear-col-sm-offset20 {
  515. margin-left: 83.33%;
  516. }
  517. .pear-col-sm-offset21 {
  518. margin-left: 87.5%;
  519. }
  520. .pear-col-sm-offset22 {
  521. margin-left: 91.66%;
  522. }
  523. .pear-col-sm-offset23 {
  524. margin-left: 95.83%;
  525. }
  526. .pear-col-sm-offset24 {
  527. margin-left: 100%;
  528. }
  529. }
  530. @media all and (min-width:1200px) {
  531. .pear-col-lg1 {
  532. width: 4.16%;
  533. }
  534. .pear-col-lg2 {
  535. width: 8.33%;
  536. }
  537. .pear-col-lg3 {
  538. width: 12.5%;
  539. }
  540. .pear-col-lg4 {
  541. width: 16.66%;
  542. }
  543. .pear-col-lg5 {
  544. width: 20.83%;
  545. }
  546. .pear-col-lg6 {
  547. width: 25%;
  548. }
  549. .pear-col-lg7 {
  550. width: 29.16%;
  551. }
  552. .pear-col-lg8 {
  553. width: 33.33%;
  554. }
  555. .pear-col-lg9 {
  556. width: 37.5%;
  557. }
  558. .pear-col-lg10 {
  559. width: 41.66%;
  560. }
  561. .pear-col-lg11 {
  562. width: 45.83%;
  563. }
  564. .pear-col-lg12 {
  565. width: 50%;
  566. }
  567. .pear-col-lg13 {
  568. width: 54.16%;
  569. }
  570. .pear-col-lg14 {
  571. width: 58.33%;
  572. }
  573. .pear-col-lg15 {
  574. width: 62.5%;
  575. }
  576. .pear-col-lg16 {
  577. width: 66.66%;
  578. }
  579. .pear-col-lg17 {
  580. width: 70.83%;
  581. }
  582. .pear-col-lg18 {
  583. width: 75%;
  584. }
  585. .pear-col-lg19 {
  586. width: 79.16%;
  587. }
  588. .pear-col-lg20 {
  589. width: 83.33%;
  590. }
  591. .pear-col-lg21 {
  592. width: 87.5%;
  593. }
  594. .pear-col-lg22 {
  595. width: 91.66%;
  596. }
  597. .pear-col-lg23 {
  598. width: 95.83%;
  599. }
  600. .pear-col-lg24 {
  601. width: 100%;
  602. }
  603. .pear-col-lg-offset1 {
  604. margin-left: 4.16%;
  605. }
  606. .pear-col-lg-offset2 {
  607. margin-left: 8.33%;
  608. }
  609. .pear-col-lg-offset3 {
  610. margin-left: 12.5%;
  611. }
  612. .pear-col-lg-offset4 {
  613. margin-left: 16.66%;
  614. }
  615. .pear-col-lg-offset5 {
  616. margin-left: 20.83%;
  617. }
  618. .pear-col-lg-offset6 {
  619. margin-left: 25%;
  620. }
  621. .pear-col-lg-offset7 {
  622. margin-left: 29.16%;
  623. }
  624. .pear-col-lg-offset8 {
  625. margin-left: 33.33%;
  626. }
  627. .pear-col-lg-offset9 {
  628. margin-left: 37.5%;
  629. }
  630. .pear-col-lg-offset10 {
  631. margin-left: 41.66%;
  632. }
  633. .pear-col-lg-offset11 {
  634. margin-left: 45.83%;
  635. }
  636. .pear-col-lg-offset12 {
  637. margin-left: 50%;
  638. }
  639. .pear-col-lg-offset13 {
  640. margin-left: 54.16%;
  641. }
  642. .pear-col-lg-offset14 {
  643. margin-left: 58.33%;
  644. }
  645. .pear-col-lg-offset15 {
  646. margin-left: 62.5%;
  647. }
  648. .pear-col-lg-offset16 {
  649. margin-left: 66.66%;
  650. }
  651. .pear-col-lg-offset17 {
  652. margin-left: 70.83%;
  653. }
  654. .pear-col-lg-offset18 {
  655. margin-left: 75%;
  656. }
  657. .pear-col-lg-offset19 {
  658. margin-left: 79.16%;
  659. }
  660. .pear-col-lg-offset20 {
  661. margin-left: 83.33%;
  662. }
  663. .pear-col-lg-offset21 {
  664. margin-left: 87.5%;
  665. }
  666. .pear-col-lg-offset22 {
  667. margin-left: 91.66%;
  668. }
  669. .pear-col-lg-offset23 {
  670. margin-left: 95.83%;
  671. }
  672. .pear-col-lg-offset24 {
  673. margin-left: 100%;
  674. }
  675. }
  676. .pear-col-space1 {
  677. margin: -.5px
  678. }
  679. .pear-col-space1>* {
  680. padding: .5px
  681. }
  682. .pear-col-space2 {
  683. margin: -1px
  684. }
  685. .pear-col-space2>* {
  686. padding: 1px
  687. }
  688. .pear-col-space4 {
  689. margin: -2px
  690. }
  691. .pear-col-space4>* {
  692. padding: 2px
  693. }
  694. .pear-col-space5 {
  695. margin: -2.5px
  696. }
  697. .pear-col-space5>* {
  698. padding: 2.5px
  699. }
  700. .pear-col-space6 {
  701. margin: -3px
  702. }
  703. .pear-col-space6>* {
  704. padding: 3px
  705. }
  706. .pear-col-space8 {
  707. margin: -4px
  708. }
  709. .pear-col-space8>* {
  710. padding: 4px
  711. }
  712. .pear-col-space10 {
  713. margin: -5px
  714. }
  715. .pear-col-space10>* {
  716. padding: 5px
  717. }
  718. .pear-col-space12 {
  719. margin: -6px
  720. }
  721. .pear-col-space12>* {
  722. padding: 6px
  723. }
  724. .pear-col-space14 {
  725. margin: -7px
  726. }
  727. .pear-col-space14>* {
  728. padding: 7px
  729. }
  730. .pear-col-space15 {
  731. margin: -7.5px
  732. }
  733. .pear-col-space15>* {
  734. padding: 7.5px
  735. }
  736. .pear-col-space16 {
  737. margin: -8px
  738. }
  739. .pear-col-space16>* {
  740. padding: 8px
  741. }
  742. .pear-col-space18 {
  743. margin: -9px
  744. }
  745. .pear-col-space18>* {
  746. padding: 9px
  747. }
  748. .pear-col-space20 {
  749. margin: -10px
  750. }
  751. .pear-col-space20>* {
  752. padding: 10px
  753. }
  754. .pear-col-space22 {
  755. margin: -11px
  756. }
  757. .pear-col-space22>* {
  758. padding: 11px
  759. }
  760. .pear-col-space24 {
  761. margin: -12px
  762. }
  763. .pear-col-space24>* {
  764. padding: 12px
  765. }
  766. .pear-col-space25 {
  767. margin: -12.5px
  768. }
  769. .pear-col-space25>* {
  770. padding: 12.5px
  771. }
  772. .pear-col-space26 {
  773. margin: -13px
  774. }
  775. .pear-col-space26>* {
  776. padding: 13px
  777. }
  778. .pear-col-space28 {
  779. margin: -14px
  780. }
  781. .pear-col-space28>* {
  782. padding: 14px
  783. }
  784. .pear-col-space30 {
  785. margin: -15px
  786. }
  787. .pear-col-space30>* {
  788. padding: 15px
  789. }