message-box.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. /* BEM support Func
  2. -------------------------- */
  3. /* Element Chalk Variables */
  4. /* Transition
  5. -------------------------- */
  6. /* Color
  7. -------------------------- */
  8. /* 53a8ff */
  9. /* 66b1ff */
  10. /* 79bbff */
  11. /* 8cc5ff */
  12. /* a0cfff */
  13. /* b3d8ff */
  14. /* c6e2ff */
  15. /* d9ecff */
  16. /* ecf5ff */
  17. /* Link
  18. -------------------------- */
  19. /* Border
  20. -------------------------- */
  21. /* Fill
  22. -------------------------- */
  23. /* Typography
  24. -------------------------- */
  25. /* Size
  26. -------------------------- */
  27. /* z-index
  28. -------------------------- */
  29. /* Disable base
  30. -------------------------- */
  31. /* Icon
  32. -------------------------- */
  33. /* Checkbox
  34. -------------------------- */
  35. /* Radio
  36. -------------------------- */
  37. /* Select
  38. -------------------------- */
  39. /* Alert
  40. -------------------------- */
  41. /* MessageBox
  42. -------------------------- */
  43. /* Message
  44. -------------------------- */
  45. /* Notification
  46. -------------------------- */
  47. /* Input
  48. -------------------------- */
  49. /* Cascader
  50. -------------------------- */
  51. /* Group
  52. -------------------------- */
  53. /* Tab
  54. -------------------------- */
  55. /* Button
  56. -------------------------- */
  57. /* cascader
  58. -------------------------- */
  59. /* Switch
  60. -------------------------- */
  61. /* Dialog
  62. -------------------------- */
  63. /* Table
  64. -------------------------- */
  65. /* Pagination
  66. -------------------------- */
  67. /* Popup
  68. -------------------------- */
  69. /* Popover
  70. -------------------------- */
  71. /* Tooltip
  72. -------------------------- */
  73. /* Tag
  74. -------------------------- */
  75. /* Tree
  76. -------------------------- */
  77. /* Dropdown
  78. -------------------------- */
  79. /* Badge
  80. -------------------------- */
  81. /* Card
  82. --------------------------*/
  83. /* Slider
  84. --------------------------*/
  85. /* Steps
  86. --------------------------*/
  87. /* Menu
  88. --------------------------*/
  89. /* Rate
  90. --------------------------*/
  91. /* DatePicker
  92. --------------------------*/
  93. /* Loading
  94. --------------------------*/
  95. /* Scrollbar
  96. --------------------------*/
  97. /* Carousel
  98. --------------------------*/
  99. /* Collapse
  100. --------------------------*/
  101. /* Transfer
  102. --------------------------*/
  103. /* Header
  104. --------------------------*/
  105. /* Footer
  106. --------------------------*/
  107. /* Main
  108. --------------------------*/
  109. /* Timeline
  110. --------------------------*/
  111. /* Backtop
  112. --------------------------*/
  113. /* Link
  114. --------------------------*/
  115. /* Calendar
  116. --------------------------*/
  117. /* Form
  118. -------------------------- */
  119. /* Avatar
  120. --------------------------*/
  121. /* Empty
  122. -------------------------- */
  123. /* Descriptions
  124. -------------------------- */
  125. /* Skeleton
  126. --------------------------*/
  127. /* Svg
  128. --------------- */
  129. /* Result
  130. -------------------------- */
  131. /* Break-point
  132. --------------------------*/
  133. /* Break-points
  134. -------------------------- */
  135. /* Scrollbar
  136. -------------------------- */
  137. /* Placeholder
  138. -------------------------- */
  139. /* BEM
  140. -------------------------- */
  141. /* Element Chalk Variables */
  142. /* Transition
  143. -------------------------- */
  144. /* Color
  145. -------------------------- */
  146. /* 53a8ff */
  147. /* 66b1ff */
  148. /* 79bbff */
  149. /* 8cc5ff */
  150. /* a0cfff */
  151. /* b3d8ff */
  152. /* c6e2ff */
  153. /* d9ecff */
  154. /* ecf5ff */
  155. /* Link
  156. -------------------------- */
  157. /* Border
  158. -------------------------- */
  159. /* Fill
  160. -------------------------- */
  161. /* Typography
  162. -------------------------- */
  163. /* Size
  164. -------------------------- */
  165. /* z-index
  166. -------------------------- */
  167. /* Disable base
  168. -------------------------- */
  169. /* Icon
  170. -------------------------- */
  171. /* Checkbox
  172. -------------------------- */
  173. /* Radio
  174. -------------------------- */
  175. /* Select
  176. -------------------------- */
  177. /* Alert
  178. -------------------------- */
  179. /* MessageBox
  180. -------------------------- */
  181. /* Message
  182. -------------------------- */
  183. /* Notification
  184. -------------------------- */
  185. /* Input
  186. -------------------------- */
  187. /* Cascader
  188. -------------------------- */
  189. /* Group
  190. -------------------------- */
  191. /* Tab
  192. -------------------------- */
  193. /* Button
  194. -------------------------- */
  195. /* cascader
  196. -------------------------- */
  197. /* Switch
  198. -------------------------- */
  199. /* Dialog
  200. -------------------------- */
  201. /* Table
  202. -------------------------- */
  203. /* Pagination
  204. -------------------------- */
  205. /* Popup
  206. -------------------------- */
  207. /* Popover
  208. -------------------------- */
  209. /* Tooltip
  210. -------------------------- */
  211. /* Tag
  212. -------------------------- */
  213. /* Tree
  214. -------------------------- */
  215. /* Dropdown
  216. -------------------------- */
  217. /* Badge
  218. -------------------------- */
  219. /* Card
  220. --------------------------*/
  221. /* Slider
  222. --------------------------*/
  223. /* Steps
  224. --------------------------*/
  225. /* Menu
  226. --------------------------*/
  227. /* Rate
  228. --------------------------*/
  229. /* DatePicker
  230. --------------------------*/
  231. /* Loading
  232. --------------------------*/
  233. /* Scrollbar
  234. --------------------------*/
  235. /* Carousel
  236. --------------------------*/
  237. /* Collapse
  238. --------------------------*/
  239. /* Transfer
  240. --------------------------*/
  241. /* Header
  242. --------------------------*/
  243. /* Footer
  244. --------------------------*/
  245. /* Main
  246. --------------------------*/
  247. /* Timeline
  248. --------------------------*/
  249. /* Backtop
  250. --------------------------*/
  251. /* Link
  252. --------------------------*/
  253. /* Calendar
  254. --------------------------*/
  255. /* Form
  256. -------------------------- */
  257. /* Avatar
  258. --------------------------*/
  259. /* Empty
  260. -------------------------- */
  261. /* Descriptions
  262. -------------------------- */
  263. /* Skeleton
  264. --------------------------*/
  265. /* Svg
  266. --------------- */
  267. /* Result
  268. -------------------------- */
  269. /* Break-point
  270. --------------------------*/
  271. /* Element Chalk Variables */
  272. /* Transition
  273. -------------------------- */
  274. /* Color
  275. -------------------------- */
  276. /* 53a8ff */
  277. /* 66b1ff */
  278. /* 79bbff */
  279. /* 8cc5ff */
  280. /* a0cfff */
  281. /* b3d8ff */
  282. /* c6e2ff */
  283. /* d9ecff */
  284. /* ecf5ff */
  285. /* Link
  286. -------------------------- */
  287. /* Border
  288. -------------------------- */
  289. /* Fill
  290. -------------------------- */
  291. /* Typography
  292. -------------------------- */
  293. /* Size
  294. -------------------------- */
  295. /* z-index
  296. -------------------------- */
  297. /* Disable base
  298. -------------------------- */
  299. /* Icon
  300. -------------------------- */
  301. /* Checkbox
  302. -------------------------- */
  303. /* Radio
  304. -------------------------- */
  305. /* Select
  306. -------------------------- */
  307. /* Alert
  308. -------------------------- */
  309. /* MessageBox
  310. -------------------------- */
  311. /* Message
  312. -------------------------- */
  313. /* Notification
  314. -------------------------- */
  315. /* Input
  316. -------------------------- */
  317. /* Cascader
  318. -------------------------- */
  319. /* Group
  320. -------------------------- */
  321. /* Tab
  322. -------------------------- */
  323. /* Button
  324. -------------------------- */
  325. /* cascader
  326. -------------------------- */
  327. /* Switch
  328. -------------------------- */
  329. /* Dialog
  330. -------------------------- */
  331. /* Table
  332. -------------------------- */
  333. /* Pagination
  334. -------------------------- */
  335. /* Popup
  336. -------------------------- */
  337. /* Popover
  338. -------------------------- */
  339. /* Tooltip
  340. -------------------------- */
  341. /* Tag
  342. -------------------------- */
  343. /* Tree
  344. -------------------------- */
  345. /* Dropdown
  346. -------------------------- */
  347. /* Badge
  348. -------------------------- */
  349. /* Card
  350. --------------------------*/
  351. /* Slider
  352. --------------------------*/
  353. /* Steps
  354. --------------------------*/
  355. /* Menu
  356. --------------------------*/
  357. /* Rate
  358. --------------------------*/
  359. /* DatePicker
  360. --------------------------*/
  361. /* Loading
  362. --------------------------*/
  363. /* Scrollbar
  364. --------------------------*/
  365. /* Carousel
  366. --------------------------*/
  367. /* Collapse
  368. --------------------------*/
  369. /* Transfer
  370. --------------------------*/
  371. /* Header
  372. --------------------------*/
  373. /* Footer
  374. --------------------------*/
  375. /* Main
  376. --------------------------*/
  377. /* Timeline
  378. --------------------------*/
  379. /* Backtop
  380. --------------------------*/
  381. /* Link
  382. --------------------------*/
  383. /* Calendar
  384. --------------------------*/
  385. /* Form
  386. -------------------------- */
  387. /* Avatar
  388. --------------------------*/
  389. /* Empty
  390. -------------------------- */
  391. /* Descriptions
  392. -------------------------- */
  393. /* Skeleton
  394. --------------------------*/
  395. /* Svg
  396. --------------- */
  397. /* Result
  398. -------------------------- */
  399. /* Break-point
  400. --------------------------*/
  401. /* BEM support Func
  402. -------------------------- */
  403. /* Element Chalk Variables */
  404. /* Transition
  405. -------------------------- */
  406. /* Color
  407. -------------------------- */
  408. /* 53a8ff */
  409. /* 66b1ff */
  410. /* 79bbff */
  411. /* 8cc5ff */
  412. /* a0cfff */
  413. /* b3d8ff */
  414. /* c6e2ff */
  415. /* d9ecff */
  416. /* ecf5ff */
  417. /* Link
  418. -------------------------- */
  419. /* Border
  420. -------------------------- */
  421. /* Fill
  422. -------------------------- */
  423. /* Typography
  424. -------------------------- */
  425. /* Size
  426. -------------------------- */
  427. /* z-index
  428. -------------------------- */
  429. /* Disable base
  430. -------------------------- */
  431. /* Icon
  432. -------------------------- */
  433. /* Checkbox
  434. -------------------------- */
  435. /* Radio
  436. -------------------------- */
  437. /* Select
  438. -------------------------- */
  439. /* Alert
  440. -------------------------- */
  441. /* MessageBox
  442. -------------------------- */
  443. /* Message
  444. -------------------------- */
  445. /* Notification
  446. -------------------------- */
  447. /* Input
  448. -------------------------- */
  449. /* Cascader
  450. -------------------------- */
  451. /* Group
  452. -------------------------- */
  453. /* Tab
  454. -------------------------- */
  455. /* Button
  456. -------------------------- */
  457. /* cascader
  458. -------------------------- */
  459. /* Switch
  460. -------------------------- */
  461. /* Dialog
  462. -------------------------- */
  463. /* Table
  464. -------------------------- */
  465. /* Pagination
  466. -------------------------- */
  467. /* Popup
  468. -------------------------- */
  469. /* Popover
  470. -------------------------- */
  471. /* Tooltip
  472. -------------------------- */
  473. /* Tag
  474. -------------------------- */
  475. /* Tree
  476. -------------------------- */
  477. /* Dropdown
  478. -------------------------- */
  479. /* Badge
  480. -------------------------- */
  481. /* Card
  482. --------------------------*/
  483. /* Slider
  484. --------------------------*/
  485. /* Steps
  486. --------------------------*/
  487. /* Menu
  488. --------------------------*/
  489. /* Rate
  490. --------------------------*/
  491. /* DatePicker
  492. --------------------------*/
  493. /* Loading
  494. --------------------------*/
  495. /* Scrollbar
  496. --------------------------*/
  497. /* Carousel
  498. --------------------------*/
  499. /* Collapse
  500. --------------------------*/
  501. /* Transfer
  502. --------------------------*/
  503. /* Header
  504. --------------------------*/
  505. /* Footer
  506. --------------------------*/
  507. /* Main
  508. --------------------------*/
  509. /* Timeline
  510. --------------------------*/
  511. /* Backtop
  512. --------------------------*/
  513. /* Link
  514. --------------------------*/
  515. /* Calendar
  516. --------------------------*/
  517. /* Form
  518. -------------------------- */
  519. /* Avatar
  520. --------------------------*/
  521. /* Empty
  522. -------------------------- */
  523. /* Descriptions
  524. -------------------------- */
  525. /* Skeleton
  526. --------------------------*/
  527. /* Svg
  528. --------------- */
  529. /* Result
  530. -------------------------- */
  531. /* Break-point
  532. --------------------------*/
  533. /* Break-points
  534. -------------------------- */
  535. /* Scrollbar
  536. -------------------------- */
  537. /* Placeholder
  538. -------------------------- */
  539. /* BEM
  540. -------------------------- */
  541. .v-modal-enter {
  542. -webkit-animation: v-modal-in .2s ease;
  543. animation: v-modal-in .2s ease; }
  544. .v-modal-leave {
  545. -webkit-animation: v-modal-out .2s ease forwards;
  546. animation: v-modal-out .2s ease forwards; }
  547. @-webkit-keyframes v-modal-in {
  548. 0% {
  549. opacity: 0; }
  550. 100% { } }
  551. @keyframes v-modal-in {
  552. 0% {
  553. opacity: 0; }
  554. 100% { } }
  555. @-webkit-keyframes v-modal-out {
  556. 0% { }
  557. 100% {
  558. opacity: 0; } }
  559. @keyframes v-modal-out {
  560. 0% { }
  561. 100% {
  562. opacity: 0; } }
  563. .v-modal {
  564. position: fixed;
  565. left: 0;
  566. top: 0;
  567. width: 100%;
  568. height: 100%;
  569. opacity: 0.5;
  570. background: #000000; }
  571. .el-popup-parent--hidden {
  572. overflow: hidden; }
  573. /* Element Chalk Variables */
  574. /* Transition
  575. -------------------------- */
  576. /* Color
  577. -------------------------- */
  578. /* 53a8ff */
  579. /* 66b1ff */
  580. /* 79bbff */
  581. /* 8cc5ff */
  582. /* a0cfff */
  583. /* b3d8ff */
  584. /* c6e2ff */
  585. /* d9ecff */
  586. /* ecf5ff */
  587. /* Link
  588. -------------------------- */
  589. /* Border
  590. -------------------------- */
  591. /* Fill
  592. -------------------------- */
  593. /* Typography
  594. -------------------------- */
  595. /* Size
  596. -------------------------- */
  597. /* z-index
  598. -------------------------- */
  599. /* Disable base
  600. -------------------------- */
  601. /* Icon
  602. -------------------------- */
  603. /* Checkbox
  604. -------------------------- */
  605. /* Radio
  606. -------------------------- */
  607. /* Select
  608. -------------------------- */
  609. /* Alert
  610. -------------------------- */
  611. /* MessageBox
  612. -------------------------- */
  613. /* Message
  614. -------------------------- */
  615. /* Notification
  616. -------------------------- */
  617. /* Input
  618. -------------------------- */
  619. /* Cascader
  620. -------------------------- */
  621. /* Group
  622. -------------------------- */
  623. /* Tab
  624. -------------------------- */
  625. /* Button
  626. -------------------------- */
  627. /* cascader
  628. -------------------------- */
  629. /* Switch
  630. -------------------------- */
  631. /* Dialog
  632. -------------------------- */
  633. /* Table
  634. -------------------------- */
  635. /* Pagination
  636. -------------------------- */
  637. /* Popup
  638. -------------------------- */
  639. /* Popover
  640. -------------------------- */
  641. /* Tooltip
  642. -------------------------- */
  643. /* Tag
  644. -------------------------- */
  645. /* Tree
  646. -------------------------- */
  647. /* Dropdown
  648. -------------------------- */
  649. /* Badge
  650. -------------------------- */
  651. /* Card
  652. --------------------------*/
  653. /* Slider
  654. --------------------------*/
  655. /* Steps
  656. --------------------------*/
  657. /* Menu
  658. --------------------------*/
  659. /* Rate
  660. --------------------------*/
  661. /* DatePicker
  662. --------------------------*/
  663. /* Loading
  664. --------------------------*/
  665. /* Scrollbar
  666. --------------------------*/
  667. /* Carousel
  668. --------------------------*/
  669. /* Collapse
  670. --------------------------*/
  671. /* Transfer
  672. --------------------------*/
  673. /* Header
  674. --------------------------*/
  675. /* Footer
  676. --------------------------*/
  677. /* Main
  678. --------------------------*/
  679. /* Timeline
  680. --------------------------*/
  681. /* Backtop
  682. --------------------------*/
  683. /* Link
  684. --------------------------*/
  685. /* Calendar
  686. --------------------------*/
  687. /* Form
  688. -------------------------- */
  689. /* Avatar
  690. --------------------------*/
  691. /* Empty
  692. -------------------------- */
  693. /* Descriptions
  694. -------------------------- */
  695. /* Skeleton
  696. --------------------------*/
  697. /* Svg
  698. --------------- */
  699. /* Result
  700. -------------------------- */
  701. /* Break-point
  702. --------------------------*/
  703. /* Element Chalk Variables */
  704. /* Transition
  705. -------------------------- */
  706. /* Color
  707. -------------------------- */
  708. /* 53a8ff */
  709. /* 66b1ff */
  710. /* 79bbff */
  711. /* 8cc5ff */
  712. /* a0cfff */
  713. /* b3d8ff */
  714. /* c6e2ff */
  715. /* d9ecff */
  716. /* ecf5ff */
  717. /* Link
  718. -------------------------- */
  719. /* Border
  720. -------------------------- */
  721. /* Fill
  722. -------------------------- */
  723. /* Typography
  724. -------------------------- */
  725. /* Size
  726. -------------------------- */
  727. /* z-index
  728. -------------------------- */
  729. /* Disable base
  730. -------------------------- */
  731. /* Icon
  732. -------------------------- */
  733. /* Checkbox
  734. -------------------------- */
  735. /* Radio
  736. -------------------------- */
  737. /* Select
  738. -------------------------- */
  739. /* Alert
  740. -------------------------- */
  741. /* MessageBox
  742. -------------------------- */
  743. /* Message
  744. -------------------------- */
  745. /* Notification
  746. -------------------------- */
  747. /* Input
  748. -------------------------- */
  749. /* Cascader
  750. -------------------------- */
  751. /* Group
  752. -------------------------- */
  753. /* Tab
  754. -------------------------- */
  755. /* Button
  756. -------------------------- */
  757. /* cascader
  758. -------------------------- */
  759. /* Switch
  760. -------------------------- */
  761. /* Dialog
  762. -------------------------- */
  763. /* Table
  764. -------------------------- */
  765. /* Pagination
  766. -------------------------- */
  767. /* Popup
  768. -------------------------- */
  769. /* Popover
  770. -------------------------- */
  771. /* Tooltip
  772. -------------------------- */
  773. /* Tag
  774. -------------------------- */
  775. /* Tree
  776. -------------------------- */
  777. /* Dropdown
  778. -------------------------- */
  779. /* Badge
  780. -------------------------- */
  781. /* Card
  782. --------------------------*/
  783. /* Slider
  784. --------------------------*/
  785. /* Steps
  786. --------------------------*/
  787. /* Menu
  788. --------------------------*/
  789. /* Rate
  790. --------------------------*/
  791. /* DatePicker
  792. --------------------------*/
  793. /* Loading
  794. --------------------------*/
  795. /* Scrollbar
  796. --------------------------*/
  797. /* Carousel
  798. --------------------------*/
  799. /* Collapse
  800. --------------------------*/
  801. /* Transfer
  802. --------------------------*/
  803. /* Header
  804. --------------------------*/
  805. /* Footer
  806. --------------------------*/
  807. /* Main
  808. --------------------------*/
  809. /* Timeline
  810. --------------------------*/
  811. /* Backtop
  812. --------------------------*/
  813. /* Link
  814. --------------------------*/
  815. /* Calendar
  816. --------------------------*/
  817. /* Form
  818. -------------------------- */
  819. /* Avatar
  820. --------------------------*/
  821. /* Empty
  822. -------------------------- */
  823. /* Descriptions
  824. -------------------------- */
  825. /* Skeleton
  826. --------------------------*/
  827. /* Svg
  828. --------------- */
  829. /* Result
  830. -------------------------- */
  831. /* Break-point
  832. --------------------------*/
  833. /* BEM support Func
  834. -------------------------- */
  835. /* Element Chalk Variables */
  836. /* Transition
  837. -------------------------- */
  838. /* Color
  839. -------------------------- */
  840. /* 53a8ff */
  841. /* 66b1ff */
  842. /* 79bbff */
  843. /* 8cc5ff */
  844. /* a0cfff */
  845. /* b3d8ff */
  846. /* c6e2ff */
  847. /* d9ecff */
  848. /* ecf5ff */
  849. /* Link
  850. -------------------------- */
  851. /* Border
  852. -------------------------- */
  853. /* Fill
  854. -------------------------- */
  855. /* Typography
  856. -------------------------- */
  857. /* Size
  858. -------------------------- */
  859. /* z-index
  860. -------------------------- */
  861. /* Disable base
  862. -------------------------- */
  863. /* Icon
  864. -------------------------- */
  865. /* Checkbox
  866. -------------------------- */
  867. /* Radio
  868. -------------------------- */
  869. /* Select
  870. -------------------------- */
  871. /* Alert
  872. -------------------------- */
  873. /* MessageBox
  874. -------------------------- */
  875. /* Message
  876. -------------------------- */
  877. /* Notification
  878. -------------------------- */
  879. /* Input
  880. -------------------------- */
  881. /* Cascader
  882. -------------------------- */
  883. /* Group
  884. -------------------------- */
  885. /* Tab
  886. -------------------------- */
  887. /* Button
  888. -------------------------- */
  889. /* cascader
  890. -------------------------- */
  891. /* Switch
  892. -------------------------- */
  893. /* Dialog
  894. -------------------------- */
  895. /* Table
  896. -------------------------- */
  897. /* Pagination
  898. -------------------------- */
  899. /* Popup
  900. -------------------------- */
  901. /* Popover
  902. -------------------------- */
  903. /* Tooltip
  904. -------------------------- */
  905. /* Tag
  906. -------------------------- */
  907. /* Tree
  908. -------------------------- */
  909. /* Dropdown
  910. -------------------------- */
  911. /* Badge
  912. -------------------------- */
  913. /* Card
  914. --------------------------*/
  915. /* Slider
  916. --------------------------*/
  917. /* Steps
  918. --------------------------*/
  919. /* Menu
  920. --------------------------*/
  921. /* Rate
  922. --------------------------*/
  923. /* DatePicker
  924. --------------------------*/
  925. /* Loading
  926. --------------------------*/
  927. /* Scrollbar
  928. --------------------------*/
  929. /* Carousel
  930. --------------------------*/
  931. /* Collapse
  932. --------------------------*/
  933. /* Transfer
  934. --------------------------*/
  935. /* Header
  936. --------------------------*/
  937. /* Footer
  938. --------------------------*/
  939. /* Main
  940. --------------------------*/
  941. /* Timeline
  942. --------------------------*/
  943. /* Backtop
  944. --------------------------*/
  945. /* Link
  946. --------------------------*/
  947. /* Calendar
  948. --------------------------*/
  949. /* Form
  950. -------------------------- */
  951. /* Avatar
  952. --------------------------*/
  953. /* Empty
  954. -------------------------- */
  955. /* Descriptions
  956. -------------------------- */
  957. /* Skeleton
  958. --------------------------*/
  959. /* Svg
  960. --------------- */
  961. /* Result
  962. -------------------------- */
  963. /* Break-point
  964. --------------------------*/
  965. /* Break-points
  966. -------------------------- */
  967. /* Scrollbar
  968. -------------------------- */
  969. /* Placeholder
  970. -------------------------- */
  971. /* BEM
  972. -------------------------- */
  973. .el-button {
  974. display: inline-block;
  975. line-height: 1;
  976. white-space: nowrap;
  977. cursor: pointer;
  978. background: #FFFFFF;
  979. border: 1px solid #DCDFE6;
  980. border-color: #DCDFE6;
  981. color: #606266;
  982. -webkit-appearance: none;
  983. text-align: center;
  984. -webkit-box-sizing: border-box;
  985. box-sizing: border-box;
  986. outline: none;
  987. margin: 0;
  988. -webkit-transition: .1s;
  989. transition: .1s;
  990. font-weight: 500;
  991. -moz-user-select: none;
  992. -webkit-user-select: none;
  993. -ms-user-select: none;
  994. padding: 12px 20px;
  995. font-size: 14px;
  996. border-radius: 4px; }
  997. .el-button + .el-button {
  998. margin-left: 10px; }
  999. .el-button.is-round {
  1000. padding: 12px 20px; }
  1001. .el-button:hover, .el-button:focus {
  1002. color: #5075FC;
  1003. border-color: #cbd6fe;
  1004. background-color: #eef1ff; }
  1005. .el-button:active {
  1006. color: #4869e3;
  1007. border-color: #4869e3;
  1008. outline: none; }
  1009. .el-button::-moz-focus-inner {
  1010. border: 0; }
  1011. .el-button [class*="el-icon-"] + span {
  1012. margin-left: 5px; }
  1013. .el-button.is-plain:hover, .el-button.is-plain:focus {
  1014. background: #FFFFFF;
  1015. border-color: #5075FC;
  1016. color: #5075FC; }
  1017. .el-button.is-plain:active {
  1018. background: #FFFFFF;
  1019. border-color: #4869e3;
  1020. color: #4869e3;
  1021. outline: none; }
  1022. .el-button.is-active {
  1023. color: #4869e3;
  1024. border-color: #4869e3; }
  1025. .el-button.is-disabled, .el-button.is-disabled:hover, .el-button.is-disabled:focus {
  1026. color: #C0C4CC;
  1027. cursor: not-allowed;
  1028. background-image: none;
  1029. background-color: #FFFFFF;
  1030. border-color: #EBEEF5; }
  1031. .el-button.is-disabled.el-button--text {
  1032. background-color: transparent; }
  1033. .el-button.is-disabled.is-plain, .el-button.is-disabled.is-plain:hover, .el-button.is-disabled.is-plain:focus {
  1034. background-color: #FFFFFF;
  1035. border-color: #EBEEF5;
  1036. color: #C0C4CC; }
  1037. .el-button.is-loading {
  1038. position: relative;
  1039. pointer-events: none; }
  1040. .el-button.is-loading:before {
  1041. pointer-events: none;
  1042. content: '';
  1043. position: absolute;
  1044. left: -1px;
  1045. top: -1px;
  1046. right: -1px;
  1047. bottom: -1px;
  1048. border-radius: inherit;
  1049. background-color: rgba(255, 255, 255, 0.35); }
  1050. .el-button.is-round {
  1051. border-radius: 20px;
  1052. padding: 12px 23px; }
  1053. .el-button.is-circle {
  1054. border-radius: 50%;
  1055. padding: 12px; }
  1056. .el-button--primary {
  1057. color: #FFFFFF;
  1058. background-color: #5075FC;
  1059. border-color: #5075FC; }
  1060. .el-button--primary:hover, .el-button--primary:focus {
  1061. background: #7391fd;
  1062. border-color: #7391fd;
  1063. color: #FFFFFF; }
  1064. .el-button--primary:active {
  1065. background: #4869e3;
  1066. border-color: #4869e3;
  1067. color: #FFFFFF;
  1068. outline: none; }
  1069. .el-button--primary.is-active {
  1070. background: #4869e3;
  1071. border-color: #4869e3;
  1072. color: #FFFFFF; }
  1073. .el-button--primary.is-disabled, .el-button--primary.is-disabled:hover, .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:active {
  1074. color: #FFFFFF;
  1075. background-color: #a8bafe;
  1076. border-color: #a8bafe; }
  1077. .el-button--primary.is-plain {
  1078. color: #5075FC;
  1079. background: #eef1ff;
  1080. border-color: #b9c8fe; }
  1081. .el-button--primary.is-plain:hover, .el-button--primary.is-plain:focus {
  1082. background: #5075FC;
  1083. border-color: #5075FC;
  1084. color: #FFFFFF; }
  1085. .el-button--primary.is-plain:active {
  1086. background: #4869e3;
  1087. border-color: #4869e3;
  1088. color: #FFFFFF;
  1089. outline: none; }
  1090. .el-button--primary.is-plain.is-disabled, .el-button--primary.is-plain.is-disabled:hover, .el-button--primary.is-plain.is-disabled:focus, .el-button--primary.is-plain.is-disabled:active {
  1091. color: #96acfd;
  1092. background-color: #eef1ff;
  1093. border-color: #dce3fe; }
  1094. .el-button--success {
  1095. color: #FFFFFF;
  1096. background-color: #67C23A;
  1097. border-color: #67C23A; }
  1098. .el-button--success:hover, .el-button--success:focus {
  1099. background: #85ce61;
  1100. border-color: #85ce61;
  1101. color: #FFFFFF; }
  1102. .el-button--success:active {
  1103. background: #5daf34;
  1104. border-color: #5daf34;
  1105. color: #FFFFFF;
  1106. outline: none; }
  1107. .el-button--success.is-active {
  1108. background: #5daf34;
  1109. border-color: #5daf34;
  1110. color: #FFFFFF; }
  1111. .el-button--success.is-disabled, .el-button--success.is-disabled:hover, .el-button--success.is-disabled:focus, .el-button--success.is-disabled:active {
  1112. color: #FFFFFF;
  1113. background-color: #b3e19d;
  1114. border-color: #b3e19d; }
  1115. .el-button--success.is-plain {
  1116. color: #67C23A;
  1117. background: #f0f9eb;
  1118. border-color: #c2e7b0; }
  1119. .el-button--success.is-plain:hover, .el-button--success.is-plain:focus {
  1120. background: #67C23A;
  1121. border-color: #67C23A;
  1122. color: #FFFFFF; }
  1123. .el-button--success.is-plain:active {
  1124. background: #5daf34;
  1125. border-color: #5daf34;
  1126. color: #FFFFFF;
  1127. outline: none; }
  1128. .el-button--success.is-plain.is-disabled, .el-button--success.is-plain.is-disabled:hover, .el-button--success.is-plain.is-disabled:focus, .el-button--success.is-plain.is-disabled:active {
  1129. color: #a4da89;
  1130. background-color: #f0f9eb;
  1131. border-color: #e1f3d8; }
  1132. .el-button--warning {
  1133. color: #FFFFFF;
  1134. background-color: #E6A23C;
  1135. border-color: #E6A23C; }
  1136. .el-button--warning:hover, .el-button--warning:focus {
  1137. background: #ebb563;
  1138. border-color: #ebb563;
  1139. color: #FFFFFF; }
  1140. .el-button--warning:active {
  1141. background: #cf9236;
  1142. border-color: #cf9236;
  1143. color: #FFFFFF;
  1144. outline: none; }
  1145. .el-button--warning.is-active {
  1146. background: #cf9236;
  1147. border-color: #cf9236;
  1148. color: #FFFFFF; }
  1149. .el-button--warning.is-disabled, .el-button--warning.is-disabled:hover, .el-button--warning.is-disabled:focus, .el-button--warning.is-disabled:active {
  1150. color: #FFFFFF;
  1151. background-color: #f3d19e;
  1152. border-color: #f3d19e; }
  1153. .el-button--warning.is-plain {
  1154. color: #E6A23C;
  1155. background: #fdf6ec;
  1156. border-color: #f5dab1; }
  1157. .el-button--warning.is-plain:hover, .el-button--warning.is-plain:focus {
  1158. background: #E6A23C;
  1159. border-color: #E6A23C;
  1160. color: #FFFFFF; }
  1161. .el-button--warning.is-plain:active {
  1162. background: #cf9236;
  1163. border-color: #cf9236;
  1164. color: #FFFFFF;
  1165. outline: none; }
  1166. .el-button--warning.is-plain.is-disabled, .el-button--warning.is-plain.is-disabled:hover, .el-button--warning.is-plain.is-disabled:focus, .el-button--warning.is-plain.is-disabled:active {
  1167. color: #f0c78a;
  1168. background-color: #fdf6ec;
  1169. border-color: #faecd8; }
  1170. .el-button--danger {
  1171. color: #FFFFFF;
  1172. background-color: #F56C6C;
  1173. border-color: #F56C6C; }
  1174. .el-button--danger:hover, .el-button--danger:focus {
  1175. background: #f78989;
  1176. border-color: #f78989;
  1177. color: #FFFFFF; }
  1178. .el-button--danger:active {
  1179. background: #dd6161;
  1180. border-color: #dd6161;
  1181. color: #FFFFFF;
  1182. outline: none; }
  1183. .el-button--danger.is-active {
  1184. background: #dd6161;
  1185. border-color: #dd6161;
  1186. color: #FFFFFF; }
  1187. .el-button--danger.is-disabled, .el-button--danger.is-disabled:hover, .el-button--danger.is-disabled:focus, .el-button--danger.is-disabled:active {
  1188. color: #FFFFFF;
  1189. background-color: #fab6b6;
  1190. border-color: #fab6b6; }
  1191. .el-button--danger.is-plain {
  1192. color: #F56C6C;
  1193. background: #fef0f0;
  1194. border-color: #fbc4c4; }
  1195. .el-button--danger.is-plain:hover, .el-button--danger.is-plain:focus {
  1196. background: #F56C6C;
  1197. border-color: #F56C6C;
  1198. color: #FFFFFF; }
  1199. .el-button--danger.is-plain:active {
  1200. background: #dd6161;
  1201. border-color: #dd6161;
  1202. color: #FFFFFF;
  1203. outline: none; }
  1204. .el-button--danger.is-plain.is-disabled, .el-button--danger.is-plain.is-disabled:hover, .el-button--danger.is-plain.is-disabled:focus, .el-button--danger.is-plain.is-disabled:active {
  1205. color: #f9a7a7;
  1206. background-color: #fef0f0;
  1207. border-color: #fde2e2; }
  1208. .el-button--info {
  1209. color: #FFFFFF;
  1210. background-color: #909399;
  1211. border-color: #909399; }
  1212. .el-button--info:hover, .el-button--info:focus {
  1213. background: #a6a9ad;
  1214. border-color: #a6a9ad;
  1215. color: #FFFFFF; }
  1216. .el-button--info:active {
  1217. background: #82848a;
  1218. border-color: #82848a;
  1219. color: #FFFFFF;
  1220. outline: none; }
  1221. .el-button--info.is-active {
  1222. background: #82848a;
  1223. border-color: #82848a;
  1224. color: #FFFFFF; }
  1225. .el-button--info.is-disabled, .el-button--info.is-disabled:hover, .el-button--info.is-disabled:focus, .el-button--info.is-disabled:active {
  1226. color: #FFFFFF;
  1227. background-color: #c8c9cc;
  1228. border-color: #c8c9cc; }
  1229. .el-button--info.is-plain {
  1230. color: #909399;
  1231. background: #f4f4f5;
  1232. border-color: #d3d4d6; }
  1233. .el-button--info.is-plain:hover, .el-button--info.is-plain:focus {
  1234. background: #909399;
  1235. border-color: #909399;
  1236. color: #FFFFFF; }
  1237. .el-button--info.is-plain:active {
  1238. background: #82848a;
  1239. border-color: #82848a;
  1240. color: #FFFFFF;
  1241. outline: none; }
  1242. .el-button--info.is-plain.is-disabled, .el-button--info.is-plain.is-disabled:hover, .el-button--info.is-plain.is-disabled:focus, .el-button--info.is-plain.is-disabled:active {
  1243. color: #bcbec2;
  1244. background-color: #f4f4f5;
  1245. border-color: #e9e9eb; }
  1246. .el-button--medium {
  1247. padding: 10px 20px;
  1248. font-size: 14px;
  1249. border-radius: 4px; }
  1250. .el-button--medium.is-round {
  1251. padding: 10px 20px; }
  1252. .el-button--medium.is-circle {
  1253. padding: 10px; }
  1254. .el-button--small {
  1255. padding: 9px 15px;
  1256. font-size: 12px;
  1257. border-radius: 3px; }
  1258. .el-button--small.is-round {
  1259. padding: 9px 15px; }
  1260. .el-button--small.is-circle {
  1261. padding: 9px; }
  1262. .el-button--mini {
  1263. padding: 7px 15px;
  1264. font-size: 12px;
  1265. border-radius: 3px; }
  1266. .el-button--mini.is-round {
  1267. padding: 7px 15px; }
  1268. .el-button--mini.is-circle {
  1269. padding: 7px; }
  1270. .el-button--text {
  1271. border-color: transparent;
  1272. color: #5075FC;
  1273. background: transparent;
  1274. padding-left: 0;
  1275. padding-right: 0; }
  1276. .el-button--text:hover, .el-button--text:focus {
  1277. color: #7391fd;
  1278. border-color: transparent;
  1279. background-color: transparent; }
  1280. .el-button--text:active {
  1281. color: #4869e3;
  1282. border-color: transparent;
  1283. background-color: transparent; }
  1284. .el-button--text.is-disabled, .el-button--text.is-disabled:hover, .el-button--text.is-disabled:focus {
  1285. border-color: transparent; }
  1286. .el-button-group {
  1287. display: inline-block;
  1288. vertical-align: middle; }
  1289. .el-button-group::before,
  1290. .el-button-group::after {
  1291. display: table;
  1292. content: ""; }
  1293. .el-button-group::after {
  1294. clear: both; }
  1295. .el-button-group > .el-button {
  1296. float: left;
  1297. position: relative; }
  1298. .el-button-group > .el-button + .el-button {
  1299. margin-left: 0; }
  1300. .el-button-group > .el-button.is-disabled {
  1301. z-index: 1; }
  1302. .el-button-group > .el-button:first-child {
  1303. border-top-right-radius: 0;
  1304. border-bottom-right-radius: 0; }
  1305. .el-button-group > .el-button:last-child {
  1306. border-top-left-radius: 0;
  1307. border-bottom-left-radius: 0; }
  1308. .el-button-group > .el-button:first-child:last-child {
  1309. border-top-right-radius: 4px;
  1310. border-bottom-right-radius: 4px;
  1311. border-top-left-radius: 4px;
  1312. border-bottom-left-radius: 4px; }
  1313. .el-button-group > .el-button:first-child:last-child.is-round {
  1314. border-radius: 20px; }
  1315. .el-button-group > .el-button:first-child:last-child.is-circle {
  1316. border-radius: 50%; }
  1317. .el-button-group > .el-button:not(:first-child):not(:last-child) {
  1318. border-radius: 0; }
  1319. .el-button-group > .el-button:not(:last-child) {
  1320. margin-right: -1px; }
  1321. .el-button-group > .el-button:not(.is-disabled):hover, .el-button-group > .el-button:not(.is-disabled):focus, .el-button-group > .el-button:not(.is-disabled):active {
  1322. z-index: 1; }
  1323. .el-button-group > .el-button.is-active {
  1324. z-index: 1; }
  1325. .el-button-group > .el-dropdown > .el-button {
  1326. border-top-left-radius: 0;
  1327. border-bottom-left-radius: 0;
  1328. border-left-color: rgba(255, 255, 255, 0.5); }
  1329. .el-button-group .el-button--primary:first-child {
  1330. border-right-color: rgba(255, 255, 255, 0.5); }
  1331. .el-button-group .el-button--primary:last-child {
  1332. border-left-color: rgba(255, 255, 255, 0.5); }
  1333. .el-button-group .el-button--primary:not(:first-child):not(:last-child) {
  1334. border-left-color: rgba(255, 255, 255, 0.5);
  1335. border-right-color: rgba(255, 255, 255, 0.5); }
  1336. .el-button-group .el-button--success:first-child {
  1337. border-right-color: rgba(255, 255, 255, 0.5); }
  1338. .el-button-group .el-button--success:last-child {
  1339. border-left-color: rgba(255, 255, 255, 0.5); }
  1340. .el-button-group .el-button--success:not(:first-child):not(:last-child) {
  1341. border-left-color: rgba(255, 255, 255, 0.5);
  1342. border-right-color: rgba(255, 255, 255, 0.5); }
  1343. .el-button-group .el-button--warning:first-child {
  1344. border-right-color: rgba(255, 255, 255, 0.5); }
  1345. .el-button-group .el-button--warning:last-child {
  1346. border-left-color: rgba(255, 255, 255, 0.5); }
  1347. .el-button-group .el-button--warning:not(:first-child):not(:last-child) {
  1348. border-left-color: rgba(255, 255, 255, 0.5);
  1349. border-right-color: rgba(255, 255, 255, 0.5); }
  1350. .el-button-group .el-button--danger:first-child {
  1351. border-right-color: rgba(255, 255, 255, 0.5); }
  1352. .el-button-group .el-button--danger:last-child {
  1353. border-left-color: rgba(255, 255, 255, 0.5); }
  1354. .el-button-group .el-button--danger:not(:first-child):not(:last-child) {
  1355. border-left-color: rgba(255, 255, 255, 0.5);
  1356. border-right-color: rgba(255, 255, 255, 0.5); }
  1357. .el-button-group .el-button--info:first-child {
  1358. border-right-color: rgba(255, 255, 255, 0.5); }
  1359. .el-button-group .el-button--info:last-child {
  1360. border-left-color: rgba(255, 255, 255, 0.5); }
  1361. .el-button-group .el-button--info:not(:first-child):not(:last-child) {
  1362. border-left-color: rgba(255, 255, 255, 0.5);
  1363. border-right-color: rgba(255, 255, 255, 0.5); }
  1364. /* BEM support Func
  1365. -------------------------- */
  1366. /* Element Chalk Variables */
  1367. /* Transition
  1368. -------------------------- */
  1369. /* Color
  1370. -------------------------- */
  1371. /* 53a8ff */
  1372. /* 66b1ff */
  1373. /* 79bbff */
  1374. /* 8cc5ff */
  1375. /* a0cfff */
  1376. /* b3d8ff */
  1377. /* c6e2ff */
  1378. /* d9ecff */
  1379. /* ecf5ff */
  1380. /* Link
  1381. -------------------------- */
  1382. /* Border
  1383. -------------------------- */
  1384. /* Fill
  1385. -------------------------- */
  1386. /* Typography
  1387. -------------------------- */
  1388. /* Size
  1389. -------------------------- */
  1390. /* z-index
  1391. -------------------------- */
  1392. /* Disable base
  1393. -------------------------- */
  1394. /* Icon
  1395. -------------------------- */
  1396. /* Checkbox
  1397. -------------------------- */
  1398. /* Radio
  1399. -------------------------- */
  1400. /* Select
  1401. -------------------------- */
  1402. /* Alert
  1403. -------------------------- */
  1404. /* MessageBox
  1405. -------------------------- */
  1406. /* Message
  1407. -------------------------- */
  1408. /* Notification
  1409. -------------------------- */
  1410. /* Input
  1411. -------------------------- */
  1412. /* Cascader
  1413. -------------------------- */
  1414. /* Group
  1415. -------------------------- */
  1416. /* Tab
  1417. -------------------------- */
  1418. /* Button
  1419. -------------------------- */
  1420. /* cascader
  1421. -------------------------- */
  1422. /* Switch
  1423. -------------------------- */
  1424. /* Dialog
  1425. -------------------------- */
  1426. /* Table
  1427. -------------------------- */
  1428. /* Pagination
  1429. -------------------------- */
  1430. /* Popup
  1431. -------------------------- */
  1432. /* Popover
  1433. -------------------------- */
  1434. /* Tooltip
  1435. -------------------------- */
  1436. /* Tag
  1437. -------------------------- */
  1438. /* Tree
  1439. -------------------------- */
  1440. /* Dropdown
  1441. -------------------------- */
  1442. /* Badge
  1443. -------------------------- */
  1444. /* Card
  1445. --------------------------*/
  1446. /* Slider
  1447. --------------------------*/
  1448. /* Steps
  1449. --------------------------*/
  1450. /* Menu
  1451. --------------------------*/
  1452. /* Rate
  1453. --------------------------*/
  1454. /* DatePicker
  1455. --------------------------*/
  1456. /* Loading
  1457. --------------------------*/
  1458. /* Scrollbar
  1459. --------------------------*/
  1460. /* Carousel
  1461. --------------------------*/
  1462. /* Collapse
  1463. --------------------------*/
  1464. /* Transfer
  1465. --------------------------*/
  1466. /* Header
  1467. --------------------------*/
  1468. /* Footer
  1469. --------------------------*/
  1470. /* Main
  1471. --------------------------*/
  1472. /* Timeline
  1473. --------------------------*/
  1474. /* Backtop
  1475. --------------------------*/
  1476. /* Link
  1477. --------------------------*/
  1478. /* Calendar
  1479. --------------------------*/
  1480. /* Form
  1481. -------------------------- */
  1482. /* Avatar
  1483. --------------------------*/
  1484. /* Empty
  1485. -------------------------- */
  1486. /* Descriptions
  1487. -------------------------- */
  1488. /* Skeleton
  1489. --------------------------*/
  1490. /* Svg
  1491. --------------- */
  1492. /* Result
  1493. -------------------------- */
  1494. /* Break-point
  1495. --------------------------*/
  1496. /* Break-points
  1497. -------------------------- */
  1498. /* Scrollbar
  1499. -------------------------- */
  1500. /* Placeholder
  1501. -------------------------- */
  1502. /* BEM
  1503. -------------------------- */
  1504. /* Element Chalk Variables */
  1505. /* Transition
  1506. -------------------------- */
  1507. /* Color
  1508. -------------------------- */
  1509. /* 53a8ff */
  1510. /* 66b1ff */
  1511. /* 79bbff */
  1512. /* 8cc5ff */
  1513. /* a0cfff */
  1514. /* b3d8ff */
  1515. /* c6e2ff */
  1516. /* d9ecff */
  1517. /* ecf5ff */
  1518. /* Link
  1519. -------------------------- */
  1520. /* Border
  1521. -------------------------- */
  1522. /* Fill
  1523. -------------------------- */
  1524. /* Typography
  1525. -------------------------- */
  1526. /* Size
  1527. -------------------------- */
  1528. /* z-index
  1529. -------------------------- */
  1530. /* Disable base
  1531. -------------------------- */
  1532. /* Icon
  1533. -------------------------- */
  1534. /* Checkbox
  1535. -------------------------- */
  1536. /* Radio
  1537. -------------------------- */
  1538. /* Select
  1539. -------------------------- */
  1540. /* Alert
  1541. -------------------------- */
  1542. /* MessageBox
  1543. -------------------------- */
  1544. /* Message
  1545. -------------------------- */
  1546. /* Notification
  1547. -------------------------- */
  1548. /* Input
  1549. -------------------------- */
  1550. /* Cascader
  1551. -------------------------- */
  1552. /* Group
  1553. -------------------------- */
  1554. /* Tab
  1555. -------------------------- */
  1556. /* Button
  1557. -------------------------- */
  1558. /* cascader
  1559. -------------------------- */
  1560. /* Switch
  1561. -------------------------- */
  1562. /* Dialog
  1563. -------------------------- */
  1564. /* Table
  1565. -------------------------- */
  1566. /* Pagination
  1567. -------------------------- */
  1568. /* Popup
  1569. -------------------------- */
  1570. /* Popover
  1571. -------------------------- */
  1572. /* Tooltip
  1573. -------------------------- */
  1574. /* Tag
  1575. -------------------------- */
  1576. /* Tree
  1577. -------------------------- */
  1578. /* Dropdown
  1579. -------------------------- */
  1580. /* Badge
  1581. -------------------------- */
  1582. /* Card
  1583. --------------------------*/
  1584. /* Slider
  1585. --------------------------*/
  1586. /* Steps
  1587. --------------------------*/
  1588. /* Menu
  1589. --------------------------*/
  1590. /* Rate
  1591. --------------------------*/
  1592. /* DatePicker
  1593. --------------------------*/
  1594. /* Loading
  1595. --------------------------*/
  1596. /* Scrollbar
  1597. --------------------------*/
  1598. /* Carousel
  1599. --------------------------*/
  1600. /* Collapse
  1601. --------------------------*/
  1602. /* Transfer
  1603. --------------------------*/
  1604. /* Header
  1605. --------------------------*/
  1606. /* Footer
  1607. --------------------------*/
  1608. /* Main
  1609. --------------------------*/
  1610. /* Timeline
  1611. --------------------------*/
  1612. /* Backtop
  1613. --------------------------*/
  1614. /* Link
  1615. --------------------------*/
  1616. /* Calendar
  1617. --------------------------*/
  1618. /* Form
  1619. -------------------------- */
  1620. /* Avatar
  1621. --------------------------*/
  1622. /* Empty
  1623. -------------------------- */
  1624. /* Descriptions
  1625. -------------------------- */
  1626. /* Skeleton
  1627. --------------------------*/
  1628. /* Svg
  1629. --------------- */
  1630. /* Result
  1631. -------------------------- */
  1632. /* Break-point
  1633. --------------------------*/
  1634. .el-textarea {
  1635. position: relative;
  1636. display: inline-block;
  1637. width: 100%;
  1638. vertical-align: bottom;
  1639. font-size: 14px; }
  1640. .el-textarea__inner {
  1641. display: block;
  1642. resize: vertical;
  1643. padding: 5px 15px;
  1644. line-height: 1.5;
  1645. -webkit-box-sizing: border-box;
  1646. box-sizing: border-box;
  1647. width: 100%;
  1648. font-size: inherit;
  1649. color: #606266;
  1650. background-color: #FFFFFF;
  1651. background-image: none;
  1652. border: 1px solid #DCDFE6;
  1653. border-radius: 4px;
  1654. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1655. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
  1656. .el-textarea__inner::-webkit-input-placeholder {
  1657. color: #C0C4CC; }
  1658. .el-textarea__inner::-moz-placeholder {
  1659. color: #C0C4CC; }
  1660. .el-textarea__inner:-ms-input-placeholder {
  1661. color: #C0C4CC; }
  1662. .el-textarea__inner::-ms-input-placeholder {
  1663. color: #C0C4CC; }
  1664. .el-textarea__inner::placeholder {
  1665. color: #C0C4CC; }
  1666. .el-textarea__inner:hover {
  1667. border-color: #C0C4CC; }
  1668. .el-textarea__inner:focus {
  1669. outline: none;
  1670. border-color: #5075FC; }
  1671. .el-textarea .el-input__count {
  1672. color: #909399;
  1673. background: #FFFFFF;
  1674. position: absolute;
  1675. font-size: 12px;
  1676. bottom: 5px;
  1677. right: 10px; }
  1678. .el-textarea.is-disabled .el-textarea__inner {
  1679. background-color: #F5F7FA;
  1680. border-color: #E4E7ED;
  1681. color: #C0C4CC;
  1682. cursor: not-allowed; }
  1683. .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder {
  1684. color: #C0C4CC; }
  1685. .el-textarea.is-disabled .el-textarea__inner::-moz-placeholder {
  1686. color: #C0C4CC; }
  1687. .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder {
  1688. color: #C0C4CC; }
  1689. .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder {
  1690. color: #C0C4CC; }
  1691. .el-textarea.is-disabled .el-textarea__inner::placeholder {
  1692. color: #C0C4CC; }
  1693. .el-textarea.is-exceed .el-textarea__inner {
  1694. border-color: #F56C6C; }
  1695. .el-textarea.is-exceed .el-input__count {
  1696. color: #F56C6C; }
  1697. .el-input {
  1698. position: relative;
  1699. font-size: 14px;
  1700. display: inline-block;
  1701. width: 100%; }
  1702. .el-input::-webkit-scrollbar {
  1703. z-index: 11;
  1704. width: 6px; }
  1705. .el-input::-webkit-scrollbar:horizontal {
  1706. height: 6px; }
  1707. .el-input::-webkit-scrollbar-thumb {
  1708. border-radius: 5px;
  1709. width: 6px;
  1710. background: #b4bccc; }
  1711. .el-input::-webkit-scrollbar-corner {
  1712. background: #fff; }
  1713. .el-input::-webkit-scrollbar-track {
  1714. background: #fff; }
  1715. .el-input::-webkit-scrollbar-track-piece {
  1716. background: #fff;
  1717. width: 6px; }
  1718. .el-input .el-input__clear {
  1719. color: #C0C4CC;
  1720. font-size: 14px;
  1721. cursor: pointer;
  1722. -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1723. transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
  1724. .el-input .el-input__clear:hover {
  1725. color: #909399; }
  1726. .el-input .el-input__count {
  1727. height: 100%;
  1728. display: -webkit-inline-box;
  1729. display: -ms-inline-flexbox;
  1730. display: inline-flex;
  1731. -webkit-box-align: center;
  1732. -ms-flex-align: center;
  1733. align-items: center;
  1734. color: #909399;
  1735. font-size: 12px; }
  1736. .el-input .el-input__count .el-input__count-inner {
  1737. background: #FFFFFF;
  1738. line-height: initial;
  1739. display: inline-block;
  1740. padding: 0 5px; }
  1741. .el-input__inner {
  1742. -webkit-appearance: none;
  1743. background-color: #FFFFFF;
  1744. background-image: none;
  1745. border-radius: 4px;
  1746. border: 1px solid #DCDFE6;
  1747. -webkit-box-sizing: border-box;
  1748. box-sizing: border-box;
  1749. color: #606266;
  1750. display: inline-block;
  1751. font-size: inherit;
  1752. height: 40px;
  1753. line-height: 40px;
  1754. outline: none;
  1755. padding: 0 15px;
  1756. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1757. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1758. width: 100%; }
  1759. .el-input__inner::-ms-reveal {
  1760. display: none; }
  1761. .el-input__inner::-webkit-input-placeholder {
  1762. color: #C0C4CC; }
  1763. .el-input__inner::-moz-placeholder {
  1764. color: #C0C4CC; }
  1765. .el-input__inner:-ms-input-placeholder {
  1766. color: #C0C4CC; }
  1767. .el-input__inner::-ms-input-placeholder {
  1768. color: #C0C4CC; }
  1769. .el-input__inner::placeholder {
  1770. color: #C0C4CC; }
  1771. .el-input__inner:hover {
  1772. border-color: #C0C4CC; }
  1773. .el-input__inner:focus {
  1774. outline: none;
  1775. border-color: #5075FC; }
  1776. .el-input__suffix {
  1777. position: absolute;
  1778. height: 100%;
  1779. right: 5px;
  1780. top: 0;
  1781. text-align: center;
  1782. color: #C0C4CC;
  1783. -webkit-transition: all .3s;
  1784. transition: all .3s;
  1785. pointer-events: none; }
  1786. .el-input__suffix-inner {
  1787. pointer-events: all; }
  1788. .el-input__prefix {
  1789. position: absolute;
  1790. height: 100%;
  1791. left: 5px;
  1792. top: 0;
  1793. text-align: center;
  1794. color: #C0C4CC;
  1795. -webkit-transition: all .3s;
  1796. transition: all .3s; }
  1797. .el-input__icon {
  1798. height: 100%;
  1799. width: 25px;
  1800. text-align: center;
  1801. -webkit-transition: all .3s;
  1802. transition: all .3s;
  1803. line-height: 40px; }
  1804. .el-input__icon:after {
  1805. content: '';
  1806. height: 100%;
  1807. width: 0;
  1808. display: inline-block;
  1809. vertical-align: middle; }
  1810. .el-input__validateIcon {
  1811. pointer-events: none; }
  1812. .el-input.is-active .el-input__inner {
  1813. outline: none;
  1814. border-color: #5075FC; }
  1815. .el-input.is-disabled .el-input__inner {
  1816. background-color: #F5F7FA;
  1817. border-color: #E4E7ED;
  1818. color: #C0C4CC;
  1819. cursor: not-allowed; }
  1820. .el-input.is-disabled .el-input__inner::-webkit-input-placeholder {
  1821. color: #C0C4CC; }
  1822. .el-input.is-disabled .el-input__inner::-moz-placeholder {
  1823. color: #C0C4CC; }
  1824. .el-input.is-disabled .el-input__inner:-ms-input-placeholder {
  1825. color: #C0C4CC; }
  1826. .el-input.is-disabled .el-input__inner::-ms-input-placeholder {
  1827. color: #C0C4CC; }
  1828. .el-input.is-disabled .el-input__inner::placeholder {
  1829. color: #C0C4CC; }
  1830. .el-input.is-disabled .el-input__icon {
  1831. cursor: not-allowed; }
  1832. .el-input.is-exceed .el-input__inner {
  1833. border-color: #F56C6C; }
  1834. .el-input.is-exceed .el-input__suffix .el-input__count {
  1835. color: #F56C6C; }
  1836. .el-input--suffix .el-input__inner {
  1837. padding-right: 30px; }
  1838. .el-input--prefix .el-input__inner {
  1839. padding-left: 30px; }
  1840. .el-input--medium {
  1841. font-size: 14px; }
  1842. .el-input--medium .el-input__inner {
  1843. height: 36px;
  1844. line-height: 36px; }
  1845. .el-input--medium .el-input__icon {
  1846. line-height: 36px; }
  1847. .el-input--small {
  1848. font-size: 13px; }
  1849. .el-input--small .el-input__inner {
  1850. height: 32px;
  1851. line-height: 32px; }
  1852. .el-input--small .el-input__icon {
  1853. line-height: 32px; }
  1854. .el-input--mini {
  1855. font-size: 12px; }
  1856. .el-input--mini .el-input__inner {
  1857. height: 28px;
  1858. line-height: 28px; }
  1859. .el-input--mini .el-input__icon {
  1860. line-height: 28px; }
  1861. .el-input-group {
  1862. line-height: normal;
  1863. display: inline-table;
  1864. width: 100%;
  1865. border-collapse: separate;
  1866. border-spacing: 0; }
  1867. .el-input-group > .el-input__inner {
  1868. vertical-align: middle;
  1869. display: table-cell; }
  1870. .el-input-group__append, .el-input-group__prepend {
  1871. background-color: #F5F7FA;
  1872. color: #909399;
  1873. vertical-align: middle;
  1874. display: table-cell;
  1875. position: relative;
  1876. border: 1px solid #DCDFE6;
  1877. border-radius: 4px;
  1878. padding: 0 20px;
  1879. width: 1px;
  1880. white-space: nowrap; }
  1881. .el-input-group__append:focus, .el-input-group__prepend:focus {
  1882. outline: none; }
  1883. .el-input-group__append .el-select,
  1884. .el-input-group__append .el-button, .el-input-group__prepend .el-select,
  1885. .el-input-group__prepend .el-button {
  1886. display: inline-block;
  1887. margin: -10px -20px; }
  1888. .el-input-group__append button.el-button,
  1889. .el-input-group__append div.el-select .el-input__inner,
  1890. .el-input-group__append div.el-select:hover .el-input__inner, .el-input-group__prepend button.el-button,
  1891. .el-input-group__prepend div.el-select .el-input__inner,
  1892. .el-input-group__prepend div.el-select:hover .el-input__inner {
  1893. border-color: transparent;
  1894. background-color: transparent;
  1895. color: inherit;
  1896. border-top: 0;
  1897. border-bottom: 0; }
  1898. .el-input-group__append .el-button,
  1899. .el-input-group__append .el-input, .el-input-group__prepend .el-button,
  1900. .el-input-group__prepend .el-input {
  1901. font-size: inherit; }
  1902. .el-input-group__prepend {
  1903. border-right: 0;
  1904. border-top-right-radius: 0;
  1905. border-bottom-right-radius: 0; }
  1906. .el-input-group__append {
  1907. border-left: 0;
  1908. border-top-left-radius: 0;
  1909. border-bottom-left-radius: 0; }
  1910. .el-input-group--prepend .el-input__inner {
  1911. border-top-left-radius: 0;
  1912. border-bottom-left-radius: 0; }
  1913. .el-input-group--prepend .el-select .el-input.is-focus .el-input__inner {
  1914. border-color: transparent; }
  1915. .el-input-group--append .el-input__inner {
  1916. border-top-right-radius: 0;
  1917. border-bottom-right-radius: 0; }
  1918. .el-input-group--append .el-select .el-input.is-focus .el-input__inner {
  1919. border-color: transparent; }
  1920. /** disalbe default clear on IE */
  1921. .el-input__inner::-ms-clear {
  1922. display: none;
  1923. width: 0;
  1924. height: 0; }
  1925. .el-message-box {
  1926. display: inline-block;
  1927. width: 420px;
  1928. padding-bottom: 10px;
  1929. vertical-align: middle;
  1930. background-color: #FFFFFF;
  1931. border-radius: 4px;
  1932. border: 1px solid #EBEEF5;
  1933. font-size: 18px;
  1934. -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1935. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1936. text-align: left;
  1937. overflow: hidden;
  1938. -webkit-backface-visibility: hidden;
  1939. backface-visibility: hidden; }
  1940. .el-message-box__wrapper {
  1941. position: fixed;
  1942. top: 0;
  1943. bottom: 0;
  1944. left: 0;
  1945. right: 0;
  1946. text-align: center; }
  1947. .el-message-box__wrapper::after {
  1948. content: "";
  1949. display: inline-block;
  1950. height: 100%;
  1951. width: 0;
  1952. vertical-align: middle; }
  1953. .el-message-box__header {
  1954. position: relative;
  1955. padding: 15px;
  1956. padding-bottom: 10px; }
  1957. .el-message-box__title {
  1958. padding-left: 0;
  1959. margin-bottom: 0;
  1960. font-size: 18px;
  1961. line-height: 1;
  1962. color: #303133; }
  1963. .el-message-box__headerbtn {
  1964. position: absolute;
  1965. top: 15px;
  1966. right: 15px;
  1967. padding: 0;
  1968. border: none;
  1969. outline: none;
  1970. background: transparent;
  1971. font-size: 16px;
  1972. cursor: pointer; }
  1973. .el-message-box__headerbtn .el-message-box__close {
  1974. color: #909399; }
  1975. .el-message-box__headerbtn:focus .el-message-box__close, .el-message-box__headerbtn:hover .el-message-box__close {
  1976. color: #5075FC; }
  1977. .el-message-box__content {
  1978. padding: 10px 15px;
  1979. color: #606266;
  1980. font-size: 14px; }
  1981. .el-message-box__container {
  1982. position: relative; }
  1983. .el-message-box__input {
  1984. padding-top: 15px; }
  1985. .el-message-box__input input.invalid {
  1986. border-color: #F56C6C; }
  1987. .el-message-box__input input.invalid:focus {
  1988. border-color: #F56C6C; }
  1989. .el-message-box__status {
  1990. position: absolute;
  1991. top: 50%;
  1992. -webkit-transform: translateY(-50%);
  1993. transform: translateY(-50%);
  1994. font-size: 24px !important; }
  1995. .el-message-box__status::before {
  1996. padding-left: 1px; }
  1997. .el-message-box__status + .el-message-box__message {
  1998. padding-left: 36px;
  1999. padding-right: 12px; }
  2000. .el-message-box__status.el-icon-success {
  2001. color: #67C23A; }
  2002. .el-message-box__status.el-icon-info {
  2003. color: #909399; }
  2004. .el-message-box__status.el-icon-warning {
  2005. color: #E6A23C; }
  2006. .el-message-box__status.el-icon-error {
  2007. color: #F56C6C; }
  2008. .el-message-box__message {
  2009. margin: 0; }
  2010. .el-message-box__message p {
  2011. margin: 0;
  2012. line-height: 24px; }
  2013. .el-message-box__errormsg {
  2014. color: #F56C6C;
  2015. font-size: 12px;
  2016. min-height: 18px;
  2017. margin-top: 2px; }
  2018. .el-message-box__btns {
  2019. padding: 5px 15px 0;
  2020. text-align: right; }
  2021. .el-message-box__btns button:nth-child(2) {
  2022. margin-left: 10px; }
  2023. .el-message-box__btns-reverse {
  2024. -webkit-box-orient: horizontal;
  2025. -webkit-box-direction: reverse;
  2026. -ms-flex-direction: row-reverse;
  2027. flex-direction: row-reverse; }
  2028. .el-message-box--center {
  2029. padding-bottom: 30px; }
  2030. .el-message-box--center .el-message-box__header {
  2031. padding-top: 30px; }
  2032. .el-message-box--center .el-message-box__title {
  2033. position: relative;
  2034. display: -webkit-box;
  2035. display: -ms-flexbox;
  2036. display: flex;
  2037. -webkit-box-align: center;
  2038. -ms-flex-align: center;
  2039. align-items: center;
  2040. -webkit-box-pack: center;
  2041. -ms-flex-pack: center;
  2042. justify-content: center; }
  2043. .el-message-box--center .el-message-box__status {
  2044. position: relative;
  2045. top: auto;
  2046. padding-right: 5px;
  2047. text-align: center;
  2048. -webkit-transform: translateY(-1px);
  2049. transform: translateY(-1px); }
  2050. .el-message-box--center .el-message-box__message {
  2051. margin-left: 0; }
  2052. .el-message-box--center .el-message-box__btns, .el-message-box--center .el-message-box__content {
  2053. text-align: center; }
  2054. .el-message-box--center .el-message-box__content {
  2055. padding-left: 27px;
  2056. padding-right: 27px; }
  2057. .msgbox-fade-enter-active {
  2058. -webkit-animation: msgbox-fade-in .3s;
  2059. animation: msgbox-fade-in .3s; }
  2060. .msgbox-fade-leave-active {
  2061. -webkit-animation: msgbox-fade-out .3s;
  2062. animation: msgbox-fade-out .3s; }
  2063. @-webkit-keyframes msgbox-fade-in {
  2064. 0% {
  2065. -webkit-transform: translate3d(0, -20px, 0);
  2066. transform: translate3d(0, -20px, 0);
  2067. opacity: 0; }
  2068. 100% {
  2069. -webkit-transform: translate3d(0, 0, 0);
  2070. transform: translate3d(0, 0, 0);
  2071. opacity: 1; } }
  2072. @keyframes msgbox-fade-in {
  2073. 0% {
  2074. -webkit-transform: translate3d(0, -20px, 0);
  2075. transform: translate3d(0, -20px, 0);
  2076. opacity: 0; }
  2077. 100% {
  2078. -webkit-transform: translate3d(0, 0, 0);
  2079. transform: translate3d(0, 0, 0);
  2080. opacity: 1; } }
  2081. @-webkit-keyframes msgbox-fade-out {
  2082. 0% {
  2083. -webkit-transform: translate3d(0, 0, 0);
  2084. transform: translate3d(0, 0, 0);
  2085. opacity: 1; }
  2086. 100% {
  2087. -webkit-transform: translate3d(0, -20px, 0);
  2088. transform: translate3d(0, -20px, 0);
  2089. opacity: 0; } }
  2090. @keyframes msgbox-fade-out {
  2091. 0% {
  2092. -webkit-transform: translate3d(0, 0, 0);
  2093. transform: translate3d(0, 0, 0);
  2094. opacity: 1; }
  2095. 100% {
  2096. -webkit-transform: translate3d(0, -20px, 0);
  2097. transform: translate3d(0, -20px, 0);
  2098. opacity: 0; } }