time-picker.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  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. .fade-in-linear-enter-active,
  402. .fade-in-linear-leave-active {
  403. -webkit-transition: opacity 200ms linear;
  404. transition: opacity 200ms linear; }
  405. .fade-in-linear-enter,
  406. .fade-in-linear-leave,
  407. .fade-in-linear-leave-active {
  408. opacity: 0; }
  409. .el-fade-in-linear-enter-active,
  410. .el-fade-in-linear-leave-active {
  411. -webkit-transition: opacity 200ms linear;
  412. transition: opacity 200ms linear; }
  413. .el-fade-in-linear-enter,
  414. .el-fade-in-linear-leave,
  415. .el-fade-in-linear-leave-active {
  416. opacity: 0; }
  417. .el-fade-in-enter-active,
  418. .el-fade-in-leave-active {
  419. -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  420. transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
  421. .el-fade-in-enter,
  422. .el-fade-in-leave-active {
  423. opacity: 0; }
  424. .el-zoom-in-center-enter-active,
  425. .el-zoom-in-center-leave-active {
  426. -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  427. transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
  428. .el-zoom-in-center-enter,
  429. .el-zoom-in-center-leave-active {
  430. opacity: 0;
  431. -webkit-transform: scaleX(0);
  432. transform: scaleX(0); }
  433. .el-zoom-in-top-enter-active,
  434. .el-zoom-in-top-leave-active {
  435. opacity: 1;
  436. -webkit-transform: scaleY(1);
  437. transform: scaleY(1);
  438. -webkit-transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  439. transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  440. transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  441. transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  442. -webkit-transform-origin: center top;
  443. transform-origin: center top; }
  444. .el-zoom-in-top-enter,
  445. .el-zoom-in-top-leave-active {
  446. opacity: 0;
  447. -webkit-transform: scaleY(0);
  448. transform: scaleY(0); }
  449. .el-zoom-in-bottom-enter-active,
  450. .el-zoom-in-bottom-leave-active {
  451. opacity: 1;
  452. -webkit-transform: scaleY(1);
  453. transform: scaleY(1);
  454. -webkit-transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  455. transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  456. transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  457. transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  458. -webkit-transform-origin: center bottom;
  459. transform-origin: center bottom; }
  460. .el-zoom-in-bottom-enter,
  461. .el-zoom-in-bottom-leave-active {
  462. opacity: 0;
  463. -webkit-transform: scaleY(0);
  464. transform: scaleY(0); }
  465. .el-zoom-in-left-enter-active,
  466. .el-zoom-in-left-leave-active {
  467. opacity: 1;
  468. -webkit-transform: scale(1, 1);
  469. transform: scale(1, 1);
  470. -webkit-transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  471. transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  472. transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  473. transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  474. -webkit-transform-origin: top left;
  475. transform-origin: top left; }
  476. .el-zoom-in-left-enter,
  477. .el-zoom-in-left-leave-active {
  478. opacity: 0;
  479. -webkit-transform: scale(0.45, 0.45);
  480. transform: scale(0.45, 0.45); }
  481. .collapse-transition {
  482. -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out;
  483. transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out; }
  484. .horizontal-collapse-transition {
  485. -webkit-transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, 0.3s padding-right ease-in-out;
  486. transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, 0.3s padding-right ease-in-out; }
  487. .el-list-enter-active,
  488. .el-list-leave-active {
  489. -webkit-transition: all 1s;
  490. transition: all 1s; }
  491. .el-list-enter, .el-list-leave-active {
  492. opacity: 0;
  493. -webkit-transform: translateY(-30px);
  494. transform: translateY(-30px); }
  495. .el-opacity-transition {
  496. -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  497. transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
  498. .el-date-editor {
  499. position: relative;
  500. display: inline-block;
  501. text-align: left; }
  502. .el-date-editor.el-input, .el-date-editor.el-input__inner {
  503. width: 220px; }
  504. .el-date-editor--monthrange.el-input, .el-date-editor--monthrange.el-input__inner {
  505. width: 300px; }
  506. .el-date-editor--daterange.el-input, .el-date-editor--daterange.el-input__inner, .el-date-editor--timerange.el-input, .el-date-editor--timerange.el-input__inner {
  507. width: 350px; }
  508. .el-date-editor--datetimerange.el-input, .el-date-editor--datetimerange.el-input__inner {
  509. width: 400px; }
  510. .el-date-editor--dates .el-input__inner {
  511. text-overflow: ellipsis;
  512. white-space: nowrap; }
  513. .el-date-editor .el-icon-circle-close {
  514. cursor: pointer; }
  515. .el-date-editor .el-range__icon {
  516. font-size: 14px;
  517. margin-left: -5px;
  518. color: #C0C4CC;
  519. float: left;
  520. line-height: 32px; }
  521. .el-date-editor .el-range-input {
  522. -webkit-appearance: none;
  523. -moz-appearance: none;
  524. appearance: none;
  525. border: none;
  526. outline: none;
  527. display: inline-block;
  528. height: 100%;
  529. margin: 0;
  530. padding: 0;
  531. width: 39%;
  532. text-align: center;
  533. font-size: 14px;
  534. color: #606266; }
  535. .el-date-editor .el-range-input::-webkit-input-placeholder {
  536. color: #C0C4CC; }
  537. .el-date-editor .el-range-input::-moz-placeholder {
  538. color: #C0C4CC; }
  539. .el-date-editor .el-range-input:-ms-input-placeholder {
  540. color: #C0C4CC; }
  541. .el-date-editor .el-range-input::-ms-input-placeholder {
  542. color: #C0C4CC; }
  543. .el-date-editor .el-range-input::placeholder {
  544. color: #C0C4CC; }
  545. .el-date-editor .el-range-separator {
  546. display: inline-block;
  547. height: 100%;
  548. padding: 0 5px;
  549. margin: 0;
  550. text-align: center;
  551. line-height: 32px;
  552. font-size: 14px;
  553. width: 5%;
  554. color: #303133; }
  555. .el-date-editor .el-range__close-icon {
  556. font-size: 14px;
  557. color: #C0C4CC;
  558. width: 25px;
  559. display: inline-block;
  560. float: right;
  561. line-height: 32px; }
  562. .el-range-editor.el-input__inner {
  563. display: -webkit-inline-box;
  564. display: -ms-inline-flexbox;
  565. display: inline-flex;
  566. -webkit-box-align: center;
  567. -ms-flex-align: center;
  568. align-items: center;
  569. padding: 3px 10px; }
  570. .el-range-editor .el-range-input {
  571. line-height: 1; }
  572. .el-range-editor.is-active {
  573. border-color: #5075FC; }
  574. .el-range-editor.is-active:hover {
  575. border-color: #5075FC; }
  576. .el-range-editor--medium.el-input__inner {
  577. height: 36px; }
  578. .el-range-editor--medium .el-range-separator {
  579. line-height: 28px;
  580. font-size: 14px; }
  581. .el-range-editor--medium .el-range-input {
  582. font-size: 14px; }
  583. .el-range-editor--medium .el-range__icon,
  584. .el-range-editor--medium .el-range__close-icon {
  585. line-height: 28px; }
  586. .el-range-editor--small.el-input__inner {
  587. height: 32px; }
  588. .el-range-editor--small .el-range-separator {
  589. line-height: 24px;
  590. font-size: 13px; }
  591. .el-range-editor--small .el-range-input {
  592. font-size: 13px; }
  593. .el-range-editor--small .el-range__icon,
  594. .el-range-editor--small .el-range__close-icon {
  595. line-height: 24px; }
  596. .el-range-editor--mini.el-input__inner {
  597. height: 28px; }
  598. .el-range-editor--mini .el-range-separator {
  599. line-height: 20px;
  600. font-size: 12px; }
  601. .el-range-editor--mini .el-range-input {
  602. font-size: 12px; }
  603. .el-range-editor--mini .el-range__icon,
  604. .el-range-editor--mini .el-range__close-icon {
  605. line-height: 20px; }
  606. .el-range-editor.is-disabled {
  607. background-color: #F5F7FA;
  608. border-color: #E4E7ED;
  609. color: #C0C4CC;
  610. cursor: not-allowed; }
  611. .el-range-editor.is-disabled:hover, .el-range-editor.is-disabled:focus {
  612. border-color: #E4E7ED; }
  613. .el-range-editor.is-disabled input {
  614. background-color: #F5F7FA;
  615. color: #C0C4CC;
  616. cursor: not-allowed; }
  617. .el-range-editor.is-disabled input::-webkit-input-placeholder {
  618. color: #C0C4CC; }
  619. .el-range-editor.is-disabled input::-moz-placeholder {
  620. color: #C0C4CC; }
  621. .el-range-editor.is-disabled input:-ms-input-placeholder {
  622. color: #C0C4CC; }
  623. .el-range-editor.is-disabled input::-ms-input-placeholder {
  624. color: #C0C4CC; }
  625. .el-range-editor.is-disabled input::placeholder {
  626. color: #C0C4CC; }
  627. .el-range-editor.is-disabled .el-range-separator {
  628. color: #C0C4CC; }
  629. /* Element Chalk Variables */
  630. /* Transition
  631. -------------------------- */
  632. /* Color
  633. -------------------------- */
  634. /* 53a8ff */
  635. /* 66b1ff */
  636. /* 79bbff */
  637. /* 8cc5ff */
  638. /* a0cfff */
  639. /* b3d8ff */
  640. /* c6e2ff */
  641. /* d9ecff */
  642. /* ecf5ff */
  643. /* Link
  644. -------------------------- */
  645. /* Border
  646. -------------------------- */
  647. /* Fill
  648. -------------------------- */
  649. /* Typography
  650. -------------------------- */
  651. /* Size
  652. -------------------------- */
  653. /* z-index
  654. -------------------------- */
  655. /* Disable base
  656. -------------------------- */
  657. /* Icon
  658. -------------------------- */
  659. /* Checkbox
  660. -------------------------- */
  661. /* Radio
  662. -------------------------- */
  663. /* Select
  664. -------------------------- */
  665. /* Alert
  666. -------------------------- */
  667. /* MessageBox
  668. -------------------------- */
  669. /* Message
  670. -------------------------- */
  671. /* Notification
  672. -------------------------- */
  673. /* Input
  674. -------------------------- */
  675. /* Cascader
  676. -------------------------- */
  677. /* Group
  678. -------------------------- */
  679. /* Tab
  680. -------------------------- */
  681. /* Button
  682. -------------------------- */
  683. /* cascader
  684. -------------------------- */
  685. /* Switch
  686. -------------------------- */
  687. /* Dialog
  688. -------------------------- */
  689. /* Table
  690. -------------------------- */
  691. /* Pagination
  692. -------------------------- */
  693. /* Popup
  694. -------------------------- */
  695. /* Popover
  696. -------------------------- */
  697. /* Tooltip
  698. -------------------------- */
  699. /* Tag
  700. -------------------------- */
  701. /* Tree
  702. -------------------------- */
  703. /* Dropdown
  704. -------------------------- */
  705. /* Badge
  706. -------------------------- */
  707. /* Card
  708. --------------------------*/
  709. /* Slider
  710. --------------------------*/
  711. /* Steps
  712. --------------------------*/
  713. /* Menu
  714. --------------------------*/
  715. /* Rate
  716. --------------------------*/
  717. /* DatePicker
  718. --------------------------*/
  719. /* Loading
  720. --------------------------*/
  721. /* Scrollbar
  722. --------------------------*/
  723. /* Carousel
  724. --------------------------*/
  725. /* Collapse
  726. --------------------------*/
  727. /* Transfer
  728. --------------------------*/
  729. /* Header
  730. --------------------------*/
  731. /* Footer
  732. --------------------------*/
  733. /* Main
  734. --------------------------*/
  735. /* Timeline
  736. --------------------------*/
  737. /* Backtop
  738. --------------------------*/
  739. /* Link
  740. --------------------------*/
  741. /* Calendar
  742. --------------------------*/
  743. /* Form
  744. -------------------------- */
  745. /* Avatar
  746. --------------------------*/
  747. /* Empty
  748. -------------------------- */
  749. /* Descriptions
  750. -------------------------- */
  751. /* Skeleton
  752. --------------------------*/
  753. /* Svg
  754. --------------- */
  755. /* Result
  756. -------------------------- */
  757. /* Break-point
  758. --------------------------*/
  759. .el-picker-panel {
  760. color: #606266;
  761. border: 1px solid #E4E7ED;
  762. -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  763. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  764. background: #FFFFFF;
  765. border-radius: 4px;
  766. line-height: 30px;
  767. margin: 5px 0; }
  768. .el-picker-panel__body::after, .el-picker-panel__body-wrapper::after {
  769. content: "";
  770. display: table;
  771. clear: both; }
  772. .el-picker-panel__content {
  773. position: relative;
  774. margin: 15px; }
  775. .el-picker-panel__footer {
  776. border-top: 1px solid #e4e4e4;
  777. padding: 4px;
  778. text-align: right;
  779. background-color: #FFFFFF;
  780. position: relative;
  781. font-size: 0; }
  782. .el-picker-panel__shortcut {
  783. display: block;
  784. width: 100%;
  785. border: 0;
  786. background-color: transparent;
  787. line-height: 28px;
  788. font-size: 14px;
  789. color: #606266;
  790. padding-left: 12px;
  791. text-align: left;
  792. outline: none;
  793. cursor: pointer; }
  794. .el-picker-panel__shortcut:hover {
  795. color: #5075FC; }
  796. .el-picker-panel__shortcut.active {
  797. background-color: #e6f1fe;
  798. color: #5075FC; }
  799. .el-picker-panel__btn {
  800. border: 1px solid #dcdcdc;
  801. color: #333;
  802. line-height: 24px;
  803. border-radius: 2px;
  804. padding: 0 20px;
  805. cursor: pointer;
  806. background-color: transparent;
  807. outline: none;
  808. font-size: 12px; }
  809. .el-picker-panel__btn[disabled] {
  810. color: #cccccc;
  811. cursor: not-allowed; }
  812. .el-picker-panel__icon-btn {
  813. font-size: 12px;
  814. color: #303133;
  815. border: 0;
  816. background: transparent;
  817. cursor: pointer;
  818. outline: none;
  819. margin-top: 8px; }
  820. .el-picker-panel__icon-btn:hover {
  821. color: #5075FC; }
  822. .el-picker-panel__icon-btn.is-disabled {
  823. color: #bbb; }
  824. .el-picker-panel__icon-btn.is-disabled:hover {
  825. cursor: not-allowed; }
  826. .el-picker-panel__link-btn {
  827. vertical-align: middle; }
  828. .el-picker-panel *[slot=sidebar],
  829. .el-picker-panel__sidebar {
  830. position: absolute;
  831. top: 0;
  832. bottom: 0;
  833. width: 110px;
  834. border-right: 1px solid #e4e4e4;
  835. -webkit-box-sizing: border-box;
  836. box-sizing: border-box;
  837. padding-top: 6px;
  838. background-color: #FFFFFF;
  839. overflow: auto; }
  840. .el-picker-panel *[slot=sidebar] + .el-picker-panel__body,
  841. .el-picker-panel__sidebar + .el-picker-panel__body {
  842. margin-left: 110px; }
  843. /* Element Chalk Variables */
  844. /* Transition
  845. -------------------------- */
  846. /* Color
  847. -------------------------- */
  848. /* 53a8ff */
  849. /* 66b1ff */
  850. /* 79bbff */
  851. /* 8cc5ff */
  852. /* a0cfff */
  853. /* b3d8ff */
  854. /* c6e2ff */
  855. /* d9ecff */
  856. /* ecf5ff */
  857. /* Link
  858. -------------------------- */
  859. /* Border
  860. -------------------------- */
  861. /* Fill
  862. -------------------------- */
  863. /* Typography
  864. -------------------------- */
  865. /* Size
  866. -------------------------- */
  867. /* z-index
  868. -------------------------- */
  869. /* Disable base
  870. -------------------------- */
  871. /* Icon
  872. -------------------------- */
  873. /* Checkbox
  874. -------------------------- */
  875. /* Radio
  876. -------------------------- */
  877. /* Select
  878. -------------------------- */
  879. /* Alert
  880. -------------------------- */
  881. /* MessageBox
  882. -------------------------- */
  883. /* Message
  884. -------------------------- */
  885. /* Notification
  886. -------------------------- */
  887. /* Input
  888. -------------------------- */
  889. /* Cascader
  890. -------------------------- */
  891. /* Group
  892. -------------------------- */
  893. /* Tab
  894. -------------------------- */
  895. /* Button
  896. -------------------------- */
  897. /* cascader
  898. -------------------------- */
  899. /* Switch
  900. -------------------------- */
  901. /* Dialog
  902. -------------------------- */
  903. /* Table
  904. -------------------------- */
  905. /* Pagination
  906. -------------------------- */
  907. /* Popup
  908. -------------------------- */
  909. /* Popover
  910. -------------------------- */
  911. /* Tooltip
  912. -------------------------- */
  913. /* Tag
  914. -------------------------- */
  915. /* Tree
  916. -------------------------- */
  917. /* Dropdown
  918. -------------------------- */
  919. /* Badge
  920. -------------------------- */
  921. /* Card
  922. --------------------------*/
  923. /* Slider
  924. --------------------------*/
  925. /* Steps
  926. --------------------------*/
  927. /* Menu
  928. --------------------------*/
  929. /* Rate
  930. --------------------------*/
  931. /* DatePicker
  932. --------------------------*/
  933. /* Loading
  934. --------------------------*/
  935. /* Scrollbar
  936. --------------------------*/
  937. /* Carousel
  938. --------------------------*/
  939. /* Collapse
  940. --------------------------*/
  941. /* Transfer
  942. --------------------------*/
  943. /* Header
  944. --------------------------*/
  945. /* Footer
  946. --------------------------*/
  947. /* Main
  948. --------------------------*/
  949. /* Timeline
  950. --------------------------*/
  951. /* Backtop
  952. --------------------------*/
  953. /* Link
  954. --------------------------*/
  955. /* Calendar
  956. --------------------------*/
  957. /* Form
  958. -------------------------- */
  959. /* Avatar
  960. --------------------------*/
  961. /* Empty
  962. -------------------------- */
  963. /* Descriptions
  964. -------------------------- */
  965. /* Skeleton
  966. --------------------------*/
  967. /* Svg
  968. --------------- */
  969. /* Result
  970. -------------------------- */
  971. /* Break-point
  972. --------------------------*/
  973. .el-time-spinner.has-seconds .el-time-spinner__wrapper {
  974. width: 33.3%; }
  975. .el-time-spinner__wrapper {
  976. max-height: 190px;
  977. overflow: auto;
  978. display: inline-block;
  979. width: 50%;
  980. vertical-align: top;
  981. position: relative; }
  982. .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
  983. padding-bottom: 15px; }
  984. .el-time-spinner__wrapper.is-arrow {
  985. -webkit-box-sizing: border-box;
  986. box-sizing: border-box;
  987. text-align: center;
  988. overflow: hidden; }
  989. .el-time-spinner__wrapper.is-arrow .el-time-spinner__list {
  990. -webkit-transform: translateY(-32px);
  991. transform: translateY(-32px); }
  992. .el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active) {
  993. background: #FFFFFF;
  994. cursor: default; }
  995. .el-time-spinner__arrow {
  996. font-size: 12px;
  997. color: #909399;
  998. position: absolute;
  999. left: 0;
  1000. width: 100%;
  1001. z-index: 1;
  1002. text-align: center;
  1003. height: 30px;
  1004. line-height: 30px;
  1005. cursor: pointer; }
  1006. .el-time-spinner__arrow:hover {
  1007. color: #5075FC; }
  1008. .el-time-spinner__arrow.el-icon-arrow-up {
  1009. top: 10px; }
  1010. .el-time-spinner__arrow.el-icon-arrow-down {
  1011. bottom: 10px; }
  1012. .el-time-spinner__input.el-input {
  1013. width: 70%; }
  1014. .el-time-spinner__input.el-input .el-input__inner {
  1015. padding: 0;
  1016. text-align: center; }
  1017. .el-time-spinner__list {
  1018. padding: 0;
  1019. margin: 0;
  1020. list-style: none;
  1021. text-align: center; }
  1022. .el-time-spinner__list::after, .el-time-spinner__list::before {
  1023. content: '';
  1024. display: block;
  1025. width: 100%;
  1026. height: 80px; }
  1027. .el-time-spinner__item {
  1028. height: 32px;
  1029. line-height: 32px;
  1030. font-size: 12px;
  1031. color: #606266; }
  1032. .el-time-spinner__item:hover:not(.disabled):not(.active) {
  1033. background: #F5F7FA;
  1034. cursor: pointer; }
  1035. .el-time-spinner__item.active:not(.disabled) {
  1036. color: #303133;
  1037. font-weight: bold; }
  1038. .el-time-spinner__item.disabled {
  1039. color: #C0C4CC;
  1040. cursor: not-allowed; }
  1041. /* Element Chalk Variables */
  1042. /* Transition
  1043. -------------------------- */
  1044. /* Color
  1045. -------------------------- */
  1046. /* 53a8ff */
  1047. /* 66b1ff */
  1048. /* 79bbff */
  1049. /* 8cc5ff */
  1050. /* a0cfff */
  1051. /* b3d8ff */
  1052. /* c6e2ff */
  1053. /* d9ecff */
  1054. /* ecf5ff */
  1055. /* Link
  1056. -------------------------- */
  1057. /* Border
  1058. -------------------------- */
  1059. /* Fill
  1060. -------------------------- */
  1061. /* Typography
  1062. -------------------------- */
  1063. /* Size
  1064. -------------------------- */
  1065. /* z-index
  1066. -------------------------- */
  1067. /* Disable base
  1068. -------------------------- */
  1069. /* Icon
  1070. -------------------------- */
  1071. /* Checkbox
  1072. -------------------------- */
  1073. /* Radio
  1074. -------------------------- */
  1075. /* Select
  1076. -------------------------- */
  1077. /* Alert
  1078. -------------------------- */
  1079. /* MessageBox
  1080. -------------------------- */
  1081. /* Message
  1082. -------------------------- */
  1083. /* Notification
  1084. -------------------------- */
  1085. /* Input
  1086. -------------------------- */
  1087. /* Cascader
  1088. -------------------------- */
  1089. /* Group
  1090. -------------------------- */
  1091. /* Tab
  1092. -------------------------- */
  1093. /* Button
  1094. -------------------------- */
  1095. /* cascader
  1096. -------------------------- */
  1097. /* Switch
  1098. -------------------------- */
  1099. /* Dialog
  1100. -------------------------- */
  1101. /* Table
  1102. -------------------------- */
  1103. /* Pagination
  1104. -------------------------- */
  1105. /* Popup
  1106. -------------------------- */
  1107. /* Popover
  1108. -------------------------- */
  1109. /* Tooltip
  1110. -------------------------- */
  1111. /* Tag
  1112. -------------------------- */
  1113. /* Tree
  1114. -------------------------- */
  1115. /* Dropdown
  1116. -------------------------- */
  1117. /* Badge
  1118. -------------------------- */
  1119. /* Card
  1120. --------------------------*/
  1121. /* Slider
  1122. --------------------------*/
  1123. /* Steps
  1124. --------------------------*/
  1125. /* Menu
  1126. --------------------------*/
  1127. /* Rate
  1128. --------------------------*/
  1129. /* DatePicker
  1130. --------------------------*/
  1131. /* Loading
  1132. --------------------------*/
  1133. /* Scrollbar
  1134. --------------------------*/
  1135. /* Carousel
  1136. --------------------------*/
  1137. /* Collapse
  1138. --------------------------*/
  1139. /* Transfer
  1140. --------------------------*/
  1141. /* Header
  1142. --------------------------*/
  1143. /* Footer
  1144. --------------------------*/
  1145. /* Main
  1146. --------------------------*/
  1147. /* Timeline
  1148. --------------------------*/
  1149. /* Backtop
  1150. --------------------------*/
  1151. /* Link
  1152. --------------------------*/
  1153. /* Calendar
  1154. --------------------------*/
  1155. /* Form
  1156. -------------------------- */
  1157. /* Avatar
  1158. --------------------------*/
  1159. /* Empty
  1160. -------------------------- */
  1161. /* Descriptions
  1162. -------------------------- */
  1163. /* Skeleton
  1164. --------------------------*/
  1165. /* Svg
  1166. --------------- */
  1167. /* Result
  1168. -------------------------- */
  1169. /* Break-point
  1170. --------------------------*/
  1171. .el-time-panel {
  1172. margin: 5px 0;
  1173. border: solid 1px #E4E7ED;
  1174. background-color: #FFFFFF;
  1175. -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1176. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1177. border-radius: 2px;
  1178. position: absolute;
  1179. width: 180px;
  1180. left: 0;
  1181. z-index: 1000;
  1182. -webkit-user-select: none;
  1183. -moz-user-select: none;
  1184. -ms-user-select: none;
  1185. user-select: none;
  1186. -webkit-box-sizing: content-box;
  1187. box-sizing: content-box; }
  1188. .el-time-panel__content {
  1189. font-size: 0;
  1190. position: relative;
  1191. overflow: hidden; }
  1192. .el-time-panel__content::after, .el-time-panel__content::before {
  1193. content: "";
  1194. top: 50%;
  1195. position: absolute;
  1196. margin-top: -15px;
  1197. height: 32px;
  1198. z-index: -1;
  1199. left: 0;
  1200. right: 0;
  1201. -webkit-box-sizing: border-box;
  1202. box-sizing: border-box;
  1203. padding-top: 6px;
  1204. text-align: left;
  1205. border-top: 1px solid #E4E7ED;
  1206. border-bottom: 1px solid #E4E7ED; }
  1207. .el-time-panel__content::after {
  1208. left: 50%;
  1209. margin-left: 12%;
  1210. margin-right: 12%; }
  1211. .el-time-panel__content::before {
  1212. padding-left: 50%;
  1213. margin-right: 12%;
  1214. margin-left: 12%; }
  1215. .el-time-panel__content.has-seconds::after {
  1216. left: calc(100% / 3 * 2); }
  1217. .el-time-panel__content.has-seconds::before {
  1218. padding-left: calc(100% / 3); }
  1219. .el-time-panel__footer {
  1220. border-top: 1px solid #e4e4e4;
  1221. padding: 4px;
  1222. height: 36px;
  1223. line-height: 25px;
  1224. text-align: right;
  1225. -webkit-box-sizing: border-box;
  1226. box-sizing: border-box; }
  1227. .el-time-panel__btn {
  1228. border: none;
  1229. line-height: 28px;
  1230. padding: 0 5px;
  1231. margin: 0 5px;
  1232. cursor: pointer;
  1233. background-color: transparent;
  1234. outline: none;
  1235. font-size: 12px;
  1236. color: #303133; }
  1237. .el-time-panel__btn.confirm {
  1238. font-weight: 800;
  1239. color: #5075FC; }
  1240. /* Element Chalk Variables */
  1241. /* Transition
  1242. -------------------------- */
  1243. /* Color
  1244. -------------------------- */
  1245. /* 53a8ff */
  1246. /* 66b1ff */
  1247. /* 79bbff */
  1248. /* 8cc5ff */
  1249. /* a0cfff */
  1250. /* b3d8ff */
  1251. /* c6e2ff */
  1252. /* d9ecff */
  1253. /* ecf5ff */
  1254. /* Link
  1255. -------------------------- */
  1256. /* Border
  1257. -------------------------- */
  1258. /* Fill
  1259. -------------------------- */
  1260. /* Typography
  1261. -------------------------- */
  1262. /* Size
  1263. -------------------------- */
  1264. /* z-index
  1265. -------------------------- */
  1266. /* Disable base
  1267. -------------------------- */
  1268. /* Icon
  1269. -------------------------- */
  1270. /* Checkbox
  1271. -------------------------- */
  1272. /* Radio
  1273. -------------------------- */
  1274. /* Select
  1275. -------------------------- */
  1276. /* Alert
  1277. -------------------------- */
  1278. /* MessageBox
  1279. -------------------------- */
  1280. /* Message
  1281. -------------------------- */
  1282. /* Notification
  1283. -------------------------- */
  1284. /* Input
  1285. -------------------------- */
  1286. /* Cascader
  1287. -------------------------- */
  1288. /* Group
  1289. -------------------------- */
  1290. /* Tab
  1291. -------------------------- */
  1292. /* Button
  1293. -------------------------- */
  1294. /* cascader
  1295. -------------------------- */
  1296. /* Switch
  1297. -------------------------- */
  1298. /* Dialog
  1299. -------------------------- */
  1300. /* Table
  1301. -------------------------- */
  1302. /* Pagination
  1303. -------------------------- */
  1304. /* Popup
  1305. -------------------------- */
  1306. /* Popover
  1307. -------------------------- */
  1308. /* Tooltip
  1309. -------------------------- */
  1310. /* Tag
  1311. -------------------------- */
  1312. /* Tree
  1313. -------------------------- */
  1314. /* Dropdown
  1315. -------------------------- */
  1316. /* Badge
  1317. -------------------------- */
  1318. /* Card
  1319. --------------------------*/
  1320. /* Slider
  1321. --------------------------*/
  1322. /* Steps
  1323. --------------------------*/
  1324. /* Menu
  1325. --------------------------*/
  1326. /* Rate
  1327. --------------------------*/
  1328. /* DatePicker
  1329. --------------------------*/
  1330. /* Loading
  1331. --------------------------*/
  1332. /* Scrollbar
  1333. --------------------------*/
  1334. /* Carousel
  1335. --------------------------*/
  1336. /* Collapse
  1337. --------------------------*/
  1338. /* Transfer
  1339. --------------------------*/
  1340. /* Header
  1341. --------------------------*/
  1342. /* Footer
  1343. --------------------------*/
  1344. /* Main
  1345. --------------------------*/
  1346. /* Timeline
  1347. --------------------------*/
  1348. /* Backtop
  1349. --------------------------*/
  1350. /* Link
  1351. --------------------------*/
  1352. /* Calendar
  1353. --------------------------*/
  1354. /* Form
  1355. -------------------------- */
  1356. /* Avatar
  1357. --------------------------*/
  1358. /* Empty
  1359. -------------------------- */
  1360. /* Descriptions
  1361. -------------------------- */
  1362. /* Skeleton
  1363. --------------------------*/
  1364. /* Svg
  1365. --------------- */
  1366. /* Result
  1367. -------------------------- */
  1368. /* Break-point
  1369. --------------------------*/
  1370. .el-time-range-picker {
  1371. width: 354px;
  1372. overflow: visible; }
  1373. .el-time-range-picker__content {
  1374. position: relative;
  1375. text-align: center;
  1376. padding: 10px; }
  1377. .el-time-range-picker__cell {
  1378. -webkit-box-sizing: border-box;
  1379. box-sizing: border-box;
  1380. margin: 0;
  1381. padding: 4px 7px 7px;
  1382. width: 50%;
  1383. display: inline-block; }
  1384. .el-time-range-picker__header {
  1385. margin-bottom: 5px;
  1386. text-align: center;
  1387. font-size: 14px; }
  1388. .el-time-range-picker__body {
  1389. border-radius: 2px;
  1390. border: 1px solid #E4E7ED; }
  1391. /* BEM support Func
  1392. -------------------------- */
  1393. /* Element Chalk Variables */
  1394. /* Transition
  1395. -------------------------- */
  1396. /* Color
  1397. -------------------------- */
  1398. /* 53a8ff */
  1399. /* 66b1ff */
  1400. /* 79bbff */
  1401. /* 8cc5ff */
  1402. /* a0cfff */
  1403. /* b3d8ff */
  1404. /* c6e2ff */
  1405. /* d9ecff */
  1406. /* ecf5ff */
  1407. /* Link
  1408. -------------------------- */
  1409. /* Border
  1410. -------------------------- */
  1411. /* Fill
  1412. -------------------------- */
  1413. /* Typography
  1414. -------------------------- */
  1415. /* Size
  1416. -------------------------- */
  1417. /* z-index
  1418. -------------------------- */
  1419. /* Disable base
  1420. -------------------------- */
  1421. /* Icon
  1422. -------------------------- */
  1423. /* Checkbox
  1424. -------------------------- */
  1425. /* Radio
  1426. -------------------------- */
  1427. /* Select
  1428. -------------------------- */
  1429. /* Alert
  1430. -------------------------- */
  1431. /* MessageBox
  1432. -------------------------- */
  1433. /* Message
  1434. -------------------------- */
  1435. /* Notification
  1436. -------------------------- */
  1437. /* Input
  1438. -------------------------- */
  1439. /* Cascader
  1440. -------------------------- */
  1441. /* Group
  1442. -------------------------- */
  1443. /* Tab
  1444. -------------------------- */
  1445. /* Button
  1446. -------------------------- */
  1447. /* cascader
  1448. -------------------------- */
  1449. /* Switch
  1450. -------------------------- */
  1451. /* Dialog
  1452. -------------------------- */
  1453. /* Table
  1454. -------------------------- */
  1455. /* Pagination
  1456. -------------------------- */
  1457. /* Popup
  1458. -------------------------- */
  1459. /* Popover
  1460. -------------------------- */
  1461. /* Tooltip
  1462. -------------------------- */
  1463. /* Tag
  1464. -------------------------- */
  1465. /* Tree
  1466. -------------------------- */
  1467. /* Dropdown
  1468. -------------------------- */
  1469. /* Badge
  1470. -------------------------- */
  1471. /* Card
  1472. --------------------------*/
  1473. /* Slider
  1474. --------------------------*/
  1475. /* Steps
  1476. --------------------------*/
  1477. /* Menu
  1478. --------------------------*/
  1479. /* Rate
  1480. --------------------------*/
  1481. /* DatePicker
  1482. --------------------------*/
  1483. /* Loading
  1484. --------------------------*/
  1485. /* Scrollbar
  1486. --------------------------*/
  1487. /* Carousel
  1488. --------------------------*/
  1489. /* Collapse
  1490. --------------------------*/
  1491. /* Transfer
  1492. --------------------------*/
  1493. /* Header
  1494. --------------------------*/
  1495. /* Footer
  1496. --------------------------*/
  1497. /* Main
  1498. --------------------------*/
  1499. /* Timeline
  1500. --------------------------*/
  1501. /* Backtop
  1502. --------------------------*/
  1503. /* Link
  1504. --------------------------*/
  1505. /* Calendar
  1506. --------------------------*/
  1507. /* Form
  1508. -------------------------- */
  1509. /* Avatar
  1510. --------------------------*/
  1511. /* Empty
  1512. -------------------------- */
  1513. /* Descriptions
  1514. -------------------------- */
  1515. /* Skeleton
  1516. --------------------------*/
  1517. /* Svg
  1518. --------------- */
  1519. /* Result
  1520. -------------------------- */
  1521. /* Break-point
  1522. --------------------------*/
  1523. /* Break-points
  1524. -------------------------- */
  1525. /* Scrollbar
  1526. -------------------------- */
  1527. /* Placeholder
  1528. -------------------------- */
  1529. /* BEM
  1530. -------------------------- */
  1531. /* Element Chalk Variables */
  1532. /* Transition
  1533. -------------------------- */
  1534. /* Color
  1535. -------------------------- */
  1536. /* 53a8ff */
  1537. /* 66b1ff */
  1538. /* 79bbff */
  1539. /* 8cc5ff */
  1540. /* a0cfff */
  1541. /* b3d8ff */
  1542. /* c6e2ff */
  1543. /* d9ecff */
  1544. /* ecf5ff */
  1545. /* Link
  1546. -------------------------- */
  1547. /* Border
  1548. -------------------------- */
  1549. /* Fill
  1550. -------------------------- */
  1551. /* Typography
  1552. -------------------------- */
  1553. /* Size
  1554. -------------------------- */
  1555. /* z-index
  1556. -------------------------- */
  1557. /* Disable base
  1558. -------------------------- */
  1559. /* Icon
  1560. -------------------------- */
  1561. /* Checkbox
  1562. -------------------------- */
  1563. /* Radio
  1564. -------------------------- */
  1565. /* Select
  1566. -------------------------- */
  1567. /* Alert
  1568. -------------------------- */
  1569. /* MessageBox
  1570. -------------------------- */
  1571. /* Message
  1572. -------------------------- */
  1573. /* Notification
  1574. -------------------------- */
  1575. /* Input
  1576. -------------------------- */
  1577. /* Cascader
  1578. -------------------------- */
  1579. /* Group
  1580. -------------------------- */
  1581. /* Tab
  1582. -------------------------- */
  1583. /* Button
  1584. -------------------------- */
  1585. /* cascader
  1586. -------------------------- */
  1587. /* Switch
  1588. -------------------------- */
  1589. /* Dialog
  1590. -------------------------- */
  1591. /* Table
  1592. -------------------------- */
  1593. /* Pagination
  1594. -------------------------- */
  1595. /* Popup
  1596. -------------------------- */
  1597. /* Popover
  1598. -------------------------- */
  1599. /* Tooltip
  1600. -------------------------- */
  1601. /* Tag
  1602. -------------------------- */
  1603. /* Tree
  1604. -------------------------- */
  1605. /* Dropdown
  1606. -------------------------- */
  1607. /* Badge
  1608. -------------------------- */
  1609. /* Card
  1610. --------------------------*/
  1611. /* Slider
  1612. --------------------------*/
  1613. /* Steps
  1614. --------------------------*/
  1615. /* Menu
  1616. --------------------------*/
  1617. /* Rate
  1618. --------------------------*/
  1619. /* DatePicker
  1620. --------------------------*/
  1621. /* Loading
  1622. --------------------------*/
  1623. /* Scrollbar
  1624. --------------------------*/
  1625. /* Carousel
  1626. --------------------------*/
  1627. /* Collapse
  1628. --------------------------*/
  1629. /* Transfer
  1630. --------------------------*/
  1631. /* Header
  1632. --------------------------*/
  1633. /* Footer
  1634. --------------------------*/
  1635. /* Main
  1636. --------------------------*/
  1637. /* Timeline
  1638. --------------------------*/
  1639. /* Backtop
  1640. --------------------------*/
  1641. /* Link
  1642. --------------------------*/
  1643. /* Calendar
  1644. --------------------------*/
  1645. /* Form
  1646. -------------------------- */
  1647. /* Avatar
  1648. --------------------------*/
  1649. /* Empty
  1650. -------------------------- */
  1651. /* Descriptions
  1652. -------------------------- */
  1653. /* Skeleton
  1654. --------------------------*/
  1655. /* Svg
  1656. --------------- */
  1657. /* Result
  1658. -------------------------- */
  1659. /* Break-point
  1660. --------------------------*/
  1661. .el-textarea {
  1662. position: relative;
  1663. display: inline-block;
  1664. width: 100%;
  1665. vertical-align: bottom;
  1666. font-size: 14px; }
  1667. .el-textarea__inner {
  1668. display: block;
  1669. resize: vertical;
  1670. padding: 5px 15px;
  1671. line-height: 1.5;
  1672. -webkit-box-sizing: border-box;
  1673. box-sizing: border-box;
  1674. width: 100%;
  1675. font-size: inherit;
  1676. color: #606266;
  1677. background-color: #FFFFFF;
  1678. background-image: none;
  1679. border: 1px solid #DCDFE6;
  1680. border-radius: 4px;
  1681. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1682. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
  1683. .el-textarea__inner::-webkit-input-placeholder {
  1684. color: #C0C4CC; }
  1685. .el-textarea__inner::-moz-placeholder {
  1686. color: #C0C4CC; }
  1687. .el-textarea__inner:-ms-input-placeholder {
  1688. color: #C0C4CC; }
  1689. .el-textarea__inner::-ms-input-placeholder {
  1690. color: #C0C4CC; }
  1691. .el-textarea__inner::placeholder {
  1692. color: #C0C4CC; }
  1693. .el-textarea__inner:hover {
  1694. border-color: #C0C4CC; }
  1695. .el-textarea__inner:focus {
  1696. outline: none;
  1697. border-color: #5075FC; }
  1698. .el-textarea .el-input__count {
  1699. color: #909399;
  1700. background: #FFFFFF;
  1701. position: absolute;
  1702. font-size: 12px;
  1703. bottom: 5px;
  1704. right: 10px; }
  1705. .el-textarea.is-disabled .el-textarea__inner {
  1706. background-color: #F5F7FA;
  1707. border-color: #E4E7ED;
  1708. color: #C0C4CC;
  1709. cursor: not-allowed; }
  1710. .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder {
  1711. color: #C0C4CC; }
  1712. .el-textarea.is-disabled .el-textarea__inner::-moz-placeholder {
  1713. color: #C0C4CC; }
  1714. .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder {
  1715. color: #C0C4CC; }
  1716. .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder {
  1717. color: #C0C4CC; }
  1718. .el-textarea.is-disabled .el-textarea__inner::placeholder {
  1719. color: #C0C4CC; }
  1720. .el-textarea.is-exceed .el-textarea__inner {
  1721. border-color: #F56C6C; }
  1722. .el-textarea.is-exceed .el-input__count {
  1723. color: #F56C6C; }
  1724. .el-input {
  1725. position: relative;
  1726. font-size: 14px;
  1727. display: inline-block;
  1728. width: 100%; }
  1729. .el-input::-webkit-scrollbar {
  1730. z-index: 11;
  1731. width: 6px; }
  1732. .el-input::-webkit-scrollbar:horizontal {
  1733. height: 6px; }
  1734. .el-input::-webkit-scrollbar-thumb {
  1735. border-radius: 5px;
  1736. width: 6px;
  1737. background: #b4bccc; }
  1738. .el-input::-webkit-scrollbar-corner {
  1739. background: #fff; }
  1740. .el-input::-webkit-scrollbar-track {
  1741. background: #fff; }
  1742. .el-input::-webkit-scrollbar-track-piece {
  1743. background: #fff;
  1744. width: 6px; }
  1745. .el-input .el-input__clear {
  1746. color: #C0C4CC;
  1747. font-size: 14px;
  1748. cursor: pointer;
  1749. -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1750. transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
  1751. .el-input .el-input__clear:hover {
  1752. color: #909399; }
  1753. .el-input .el-input__count {
  1754. height: 100%;
  1755. display: -webkit-inline-box;
  1756. display: -ms-inline-flexbox;
  1757. display: inline-flex;
  1758. -webkit-box-align: center;
  1759. -ms-flex-align: center;
  1760. align-items: center;
  1761. color: #909399;
  1762. font-size: 12px; }
  1763. .el-input .el-input__count .el-input__count-inner {
  1764. background: #FFFFFF;
  1765. line-height: initial;
  1766. display: inline-block;
  1767. padding: 0 5px; }
  1768. .el-input__inner {
  1769. -webkit-appearance: none;
  1770. background-color: #FFFFFF;
  1771. background-image: none;
  1772. border-radius: 4px;
  1773. border: 1px solid #DCDFE6;
  1774. -webkit-box-sizing: border-box;
  1775. box-sizing: border-box;
  1776. color: #606266;
  1777. display: inline-block;
  1778. font-size: inherit;
  1779. height: 40px;
  1780. line-height: 40px;
  1781. outline: none;
  1782. padding: 0 15px;
  1783. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1784. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  1785. width: 100%; }
  1786. .el-input__inner::-ms-reveal {
  1787. display: none; }
  1788. .el-input__inner::-webkit-input-placeholder {
  1789. color: #C0C4CC; }
  1790. .el-input__inner::-moz-placeholder {
  1791. color: #C0C4CC; }
  1792. .el-input__inner:-ms-input-placeholder {
  1793. color: #C0C4CC; }
  1794. .el-input__inner::-ms-input-placeholder {
  1795. color: #C0C4CC; }
  1796. .el-input__inner::placeholder {
  1797. color: #C0C4CC; }
  1798. .el-input__inner:hover {
  1799. border-color: #C0C4CC; }
  1800. .el-input__inner:focus {
  1801. outline: none;
  1802. border-color: #5075FC; }
  1803. .el-input__suffix {
  1804. position: absolute;
  1805. height: 100%;
  1806. right: 5px;
  1807. top: 0;
  1808. text-align: center;
  1809. color: #C0C4CC;
  1810. -webkit-transition: all .3s;
  1811. transition: all .3s;
  1812. pointer-events: none; }
  1813. .el-input__suffix-inner {
  1814. pointer-events: all; }
  1815. .el-input__prefix {
  1816. position: absolute;
  1817. height: 100%;
  1818. left: 5px;
  1819. top: 0;
  1820. text-align: center;
  1821. color: #C0C4CC;
  1822. -webkit-transition: all .3s;
  1823. transition: all .3s; }
  1824. .el-input__icon {
  1825. height: 100%;
  1826. width: 25px;
  1827. text-align: center;
  1828. -webkit-transition: all .3s;
  1829. transition: all .3s;
  1830. line-height: 40px; }
  1831. .el-input__icon:after {
  1832. content: '';
  1833. height: 100%;
  1834. width: 0;
  1835. display: inline-block;
  1836. vertical-align: middle; }
  1837. .el-input__validateIcon {
  1838. pointer-events: none; }
  1839. .el-input.is-active .el-input__inner {
  1840. outline: none;
  1841. border-color: #5075FC; }
  1842. .el-input.is-disabled .el-input__inner {
  1843. background-color: #F5F7FA;
  1844. border-color: #E4E7ED;
  1845. color: #C0C4CC;
  1846. cursor: not-allowed; }
  1847. .el-input.is-disabled .el-input__inner::-webkit-input-placeholder {
  1848. color: #C0C4CC; }
  1849. .el-input.is-disabled .el-input__inner::-moz-placeholder {
  1850. color: #C0C4CC; }
  1851. .el-input.is-disabled .el-input__inner:-ms-input-placeholder {
  1852. color: #C0C4CC; }
  1853. .el-input.is-disabled .el-input__inner::-ms-input-placeholder {
  1854. color: #C0C4CC; }
  1855. .el-input.is-disabled .el-input__inner::placeholder {
  1856. color: #C0C4CC; }
  1857. .el-input.is-disabled .el-input__icon {
  1858. cursor: not-allowed; }
  1859. .el-input.is-exceed .el-input__inner {
  1860. border-color: #F56C6C; }
  1861. .el-input.is-exceed .el-input__suffix .el-input__count {
  1862. color: #F56C6C; }
  1863. .el-input--suffix .el-input__inner {
  1864. padding-right: 30px; }
  1865. .el-input--prefix .el-input__inner {
  1866. padding-left: 30px; }
  1867. .el-input--medium {
  1868. font-size: 14px; }
  1869. .el-input--medium .el-input__inner {
  1870. height: 36px;
  1871. line-height: 36px; }
  1872. .el-input--medium .el-input__icon {
  1873. line-height: 36px; }
  1874. .el-input--small {
  1875. font-size: 13px; }
  1876. .el-input--small .el-input__inner {
  1877. height: 32px;
  1878. line-height: 32px; }
  1879. .el-input--small .el-input__icon {
  1880. line-height: 32px; }
  1881. .el-input--mini {
  1882. font-size: 12px; }
  1883. .el-input--mini .el-input__inner {
  1884. height: 28px;
  1885. line-height: 28px; }
  1886. .el-input--mini .el-input__icon {
  1887. line-height: 28px; }
  1888. .el-input-group {
  1889. line-height: normal;
  1890. display: inline-table;
  1891. width: 100%;
  1892. border-collapse: separate;
  1893. border-spacing: 0; }
  1894. .el-input-group > .el-input__inner {
  1895. vertical-align: middle;
  1896. display: table-cell; }
  1897. .el-input-group__append, .el-input-group__prepend {
  1898. background-color: #F5F7FA;
  1899. color: #909399;
  1900. vertical-align: middle;
  1901. display: table-cell;
  1902. position: relative;
  1903. border: 1px solid #DCDFE6;
  1904. border-radius: 4px;
  1905. padding: 0 20px;
  1906. width: 1px;
  1907. white-space: nowrap; }
  1908. .el-input-group__append:focus, .el-input-group__prepend:focus {
  1909. outline: none; }
  1910. .el-input-group__append .el-select,
  1911. .el-input-group__append .el-button, .el-input-group__prepend .el-select,
  1912. .el-input-group__prepend .el-button {
  1913. display: inline-block;
  1914. margin: -10px -20px; }
  1915. .el-input-group__append button.el-button,
  1916. .el-input-group__append div.el-select .el-input__inner,
  1917. .el-input-group__append div.el-select:hover .el-input__inner, .el-input-group__prepend button.el-button,
  1918. .el-input-group__prepend div.el-select .el-input__inner,
  1919. .el-input-group__prepend div.el-select:hover .el-input__inner {
  1920. border-color: transparent;
  1921. background-color: transparent;
  1922. color: inherit;
  1923. border-top: 0;
  1924. border-bottom: 0; }
  1925. .el-input-group__append .el-button,
  1926. .el-input-group__append .el-input, .el-input-group__prepend .el-button,
  1927. .el-input-group__prepend .el-input {
  1928. font-size: inherit; }
  1929. .el-input-group__prepend {
  1930. border-right: 0;
  1931. border-top-right-radius: 0;
  1932. border-bottom-right-radius: 0; }
  1933. .el-input-group__append {
  1934. border-left: 0;
  1935. border-top-left-radius: 0;
  1936. border-bottom-left-radius: 0; }
  1937. .el-input-group--prepend .el-input__inner {
  1938. border-top-left-radius: 0;
  1939. border-bottom-left-radius: 0; }
  1940. .el-input-group--prepend .el-select .el-input.is-focus .el-input__inner {
  1941. border-color: transparent; }
  1942. .el-input-group--append .el-input__inner {
  1943. border-top-right-radius: 0;
  1944. border-bottom-right-radius: 0; }
  1945. .el-input-group--append .el-select .el-input.is-focus .el-input__inner {
  1946. border-color: transparent; }
  1947. /** disalbe default clear on IE */
  1948. .el-input__inner::-ms-clear {
  1949. display: none;
  1950. width: 0;
  1951. height: 0; }
  1952. /* BEM support Func
  1953. -------------------------- */
  1954. /* Element Chalk Variables */
  1955. /* Transition
  1956. -------------------------- */
  1957. /* Color
  1958. -------------------------- */
  1959. /* 53a8ff */
  1960. /* 66b1ff */
  1961. /* 79bbff */
  1962. /* 8cc5ff */
  1963. /* a0cfff */
  1964. /* b3d8ff */
  1965. /* c6e2ff */
  1966. /* d9ecff */
  1967. /* ecf5ff */
  1968. /* Link
  1969. -------------------------- */
  1970. /* Border
  1971. -------------------------- */
  1972. /* Fill
  1973. -------------------------- */
  1974. /* Typography
  1975. -------------------------- */
  1976. /* Size
  1977. -------------------------- */
  1978. /* z-index
  1979. -------------------------- */
  1980. /* Disable base
  1981. -------------------------- */
  1982. /* Icon
  1983. -------------------------- */
  1984. /* Checkbox
  1985. -------------------------- */
  1986. /* Radio
  1987. -------------------------- */
  1988. /* Select
  1989. -------------------------- */
  1990. /* Alert
  1991. -------------------------- */
  1992. /* MessageBox
  1993. -------------------------- */
  1994. /* Message
  1995. -------------------------- */
  1996. /* Notification
  1997. -------------------------- */
  1998. /* Input
  1999. -------------------------- */
  2000. /* Cascader
  2001. -------------------------- */
  2002. /* Group
  2003. -------------------------- */
  2004. /* Tab
  2005. -------------------------- */
  2006. /* Button
  2007. -------------------------- */
  2008. /* cascader
  2009. -------------------------- */
  2010. /* Switch
  2011. -------------------------- */
  2012. /* Dialog
  2013. -------------------------- */
  2014. /* Table
  2015. -------------------------- */
  2016. /* Pagination
  2017. -------------------------- */
  2018. /* Popup
  2019. -------------------------- */
  2020. /* Popover
  2021. -------------------------- */
  2022. /* Tooltip
  2023. -------------------------- */
  2024. /* Tag
  2025. -------------------------- */
  2026. /* Tree
  2027. -------------------------- */
  2028. /* Dropdown
  2029. -------------------------- */
  2030. /* Badge
  2031. -------------------------- */
  2032. /* Card
  2033. --------------------------*/
  2034. /* Slider
  2035. --------------------------*/
  2036. /* Steps
  2037. --------------------------*/
  2038. /* Menu
  2039. --------------------------*/
  2040. /* Rate
  2041. --------------------------*/
  2042. /* DatePicker
  2043. --------------------------*/
  2044. /* Loading
  2045. --------------------------*/
  2046. /* Scrollbar
  2047. --------------------------*/
  2048. /* Carousel
  2049. --------------------------*/
  2050. /* Collapse
  2051. --------------------------*/
  2052. /* Transfer
  2053. --------------------------*/
  2054. /* Header
  2055. --------------------------*/
  2056. /* Footer
  2057. --------------------------*/
  2058. /* Main
  2059. --------------------------*/
  2060. /* Timeline
  2061. --------------------------*/
  2062. /* Backtop
  2063. --------------------------*/
  2064. /* Link
  2065. --------------------------*/
  2066. /* Calendar
  2067. --------------------------*/
  2068. /* Form
  2069. -------------------------- */
  2070. /* Avatar
  2071. --------------------------*/
  2072. /* Empty
  2073. -------------------------- */
  2074. /* Descriptions
  2075. -------------------------- */
  2076. /* Skeleton
  2077. --------------------------*/
  2078. /* Svg
  2079. --------------- */
  2080. /* Result
  2081. -------------------------- */
  2082. /* Break-point
  2083. --------------------------*/
  2084. /* Break-points
  2085. -------------------------- */
  2086. /* Scrollbar
  2087. -------------------------- */
  2088. /* Placeholder
  2089. -------------------------- */
  2090. /* BEM
  2091. -------------------------- */
  2092. /* Element Chalk Variables */
  2093. /* Transition
  2094. -------------------------- */
  2095. /* Color
  2096. -------------------------- */
  2097. /* 53a8ff */
  2098. /* 66b1ff */
  2099. /* 79bbff */
  2100. /* 8cc5ff */
  2101. /* a0cfff */
  2102. /* b3d8ff */
  2103. /* c6e2ff */
  2104. /* d9ecff */
  2105. /* ecf5ff */
  2106. /* Link
  2107. -------------------------- */
  2108. /* Border
  2109. -------------------------- */
  2110. /* Fill
  2111. -------------------------- */
  2112. /* Typography
  2113. -------------------------- */
  2114. /* Size
  2115. -------------------------- */
  2116. /* z-index
  2117. -------------------------- */
  2118. /* Disable base
  2119. -------------------------- */
  2120. /* Icon
  2121. -------------------------- */
  2122. /* Checkbox
  2123. -------------------------- */
  2124. /* Radio
  2125. -------------------------- */
  2126. /* Select
  2127. -------------------------- */
  2128. /* Alert
  2129. -------------------------- */
  2130. /* MessageBox
  2131. -------------------------- */
  2132. /* Message
  2133. -------------------------- */
  2134. /* Notification
  2135. -------------------------- */
  2136. /* Input
  2137. -------------------------- */
  2138. /* Cascader
  2139. -------------------------- */
  2140. /* Group
  2141. -------------------------- */
  2142. /* Tab
  2143. -------------------------- */
  2144. /* Button
  2145. -------------------------- */
  2146. /* cascader
  2147. -------------------------- */
  2148. /* Switch
  2149. -------------------------- */
  2150. /* Dialog
  2151. -------------------------- */
  2152. /* Table
  2153. -------------------------- */
  2154. /* Pagination
  2155. -------------------------- */
  2156. /* Popup
  2157. -------------------------- */
  2158. /* Popover
  2159. -------------------------- */
  2160. /* Tooltip
  2161. -------------------------- */
  2162. /* Tag
  2163. -------------------------- */
  2164. /* Tree
  2165. -------------------------- */
  2166. /* Dropdown
  2167. -------------------------- */
  2168. /* Badge
  2169. -------------------------- */
  2170. /* Card
  2171. --------------------------*/
  2172. /* Slider
  2173. --------------------------*/
  2174. /* Steps
  2175. --------------------------*/
  2176. /* Menu
  2177. --------------------------*/
  2178. /* Rate
  2179. --------------------------*/
  2180. /* DatePicker
  2181. --------------------------*/
  2182. /* Loading
  2183. --------------------------*/
  2184. /* Scrollbar
  2185. --------------------------*/
  2186. /* Carousel
  2187. --------------------------*/
  2188. /* Collapse
  2189. --------------------------*/
  2190. /* Transfer
  2191. --------------------------*/
  2192. /* Header
  2193. --------------------------*/
  2194. /* Footer
  2195. --------------------------*/
  2196. /* Main
  2197. --------------------------*/
  2198. /* Timeline
  2199. --------------------------*/
  2200. /* Backtop
  2201. --------------------------*/
  2202. /* Link
  2203. --------------------------*/
  2204. /* Calendar
  2205. --------------------------*/
  2206. /* Form
  2207. -------------------------- */
  2208. /* Avatar
  2209. --------------------------*/
  2210. /* Empty
  2211. -------------------------- */
  2212. /* Descriptions
  2213. -------------------------- */
  2214. /* Skeleton
  2215. --------------------------*/
  2216. /* Svg
  2217. --------------- */
  2218. /* Result
  2219. -------------------------- */
  2220. /* Break-point
  2221. --------------------------*/
  2222. .el-scrollbar {
  2223. overflow: hidden;
  2224. position: relative; }
  2225. .el-scrollbar:hover > .el-scrollbar__bar, .el-scrollbar:active > .el-scrollbar__bar, .el-scrollbar:focus > .el-scrollbar__bar {
  2226. opacity: 1;
  2227. -webkit-transition: opacity 340ms ease-out;
  2228. transition: opacity 340ms ease-out; }
  2229. .el-scrollbar__wrap {
  2230. overflow: scroll;
  2231. height: 100%; }
  2232. .el-scrollbar__wrap--hidden-default {
  2233. scrollbar-width: none; }
  2234. .el-scrollbar__wrap--hidden-default::-webkit-scrollbar {
  2235. width: 0;
  2236. height: 0; }
  2237. .el-scrollbar__thumb {
  2238. position: relative;
  2239. display: block;
  2240. width: 0;
  2241. height: 0;
  2242. cursor: pointer;
  2243. border-radius: inherit;
  2244. background-color: rgba(144, 147, 153, 0.3);
  2245. -webkit-transition: .3s background-color;
  2246. transition: .3s background-color; }
  2247. .el-scrollbar__thumb:hover {
  2248. background-color: rgba(144, 147, 153, 0.5); }
  2249. .el-scrollbar__bar {
  2250. position: absolute;
  2251. right: 2px;
  2252. bottom: 2px;
  2253. z-index: 1;
  2254. border-radius: 4px;
  2255. opacity: 0;
  2256. -webkit-transition: opacity 120ms ease-out;
  2257. transition: opacity 120ms ease-out; }
  2258. .el-scrollbar__bar.is-vertical {
  2259. width: 6px;
  2260. top: 2px; }
  2261. .el-scrollbar__bar.is-vertical > div {
  2262. width: 100%; }
  2263. .el-scrollbar__bar.is-horizontal {
  2264. height: 6px;
  2265. left: 2px; }
  2266. .el-scrollbar__bar.is-horizontal > div {
  2267. height: 100%; }
  2268. /* BEM support Func
  2269. -------------------------- */
  2270. /* Element Chalk Variables */
  2271. /* Transition
  2272. -------------------------- */
  2273. /* Color
  2274. -------------------------- */
  2275. /* 53a8ff */
  2276. /* 66b1ff */
  2277. /* 79bbff */
  2278. /* 8cc5ff */
  2279. /* a0cfff */
  2280. /* b3d8ff */
  2281. /* c6e2ff */
  2282. /* d9ecff */
  2283. /* ecf5ff */
  2284. /* Link
  2285. -------------------------- */
  2286. /* Border
  2287. -------------------------- */
  2288. /* Fill
  2289. -------------------------- */
  2290. /* Typography
  2291. -------------------------- */
  2292. /* Size
  2293. -------------------------- */
  2294. /* z-index
  2295. -------------------------- */
  2296. /* Disable base
  2297. -------------------------- */
  2298. /* Icon
  2299. -------------------------- */
  2300. /* Checkbox
  2301. -------------------------- */
  2302. /* Radio
  2303. -------------------------- */
  2304. /* Select
  2305. -------------------------- */
  2306. /* Alert
  2307. -------------------------- */
  2308. /* MessageBox
  2309. -------------------------- */
  2310. /* Message
  2311. -------------------------- */
  2312. /* Notification
  2313. -------------------------- */
  2314. /* Input
  2315. -------------------------- */
  2316. /* Cascader
  2317. -------------------------- */
  2318. /* Group
  2319. -------------------------- */
  2320. /* Tab
  2321. -------------------------- */
  2322. /* Button
  2323. -------------------------- */
  2324. /* cascader
  2325. -------------------------- */
  2326. /* Switch
  2327. -------------------------- */
  2328. /* Dialog
  2329. -------------------------- */
  2330. /* Table
  2331. -------------------------- */
  2332. /* Pagination
  2333. -------------------------- */
  2334. /* Popup
  2335. -------------------------- */
  2336. /* Popover
  2337. -------------------------- */
  2338. /* Tooltip
  2339. -------------------------- */
  2340. /* Tag
  2341. -------------------------- */
  2342. /* Tree
  2343. -------------------------- */
  2344. /* Dropdown
  2345. -------------------------- */
  2346. /* Badge
  2347. -------------------------- */
  2348. /* Card
  2349. --------------------------*/
  2350. /* Slider
  2351. --------------------------*/
  2352. /* Steps
  2353. --------------------------*/
  2354. /* Menu
  2355. --------------------------*/
  2356. /* Rate
  2357. --------------------------*/
  2358. /* DatePicker
  2359. --------------------------*/
  2360. /* Loading
  2361. --------------------------*/
  2362. /* Scrollbar
  2363. --------------------------*/
  2364. /* Carousel
  2365. --------------------------*/
  2366. /* Collapse
  2367. --------------------------*/
  2368. /* Transfer
  2369. --------------------------*/
  2370. /* Header
  2371. --------------------------*/
  2372. /* Footer
  2373. --------------------------*/
  2374. /* Main
  2375. --------------------------*/
  2376. /* Timeline
  2377. --------------------------*/
  2378. /* Backtop
  2379. --------------------------*/
  2380. /* Link
  2381. --------------------------*/
  2382. /* Calendar
  2383. --------------------------*/
  2384. /* Form
  2385. -------------------------- */
  2386. /* Avatar
  2387. --------------------------*/
  2388. /* Empty
  2389. -------------------------- */
  2390. /* Descriptions
  2391. -------------------------- */
  2392. /* Skeleton
  2393. --------------------------*/
  2394. /* Svg
  2395. --------------- */
  2396. /* Result
  2397. -------------------------- */
  2398. /* Break-point
  2399. --------------------------*/
  2400. /* Break-points
  2401. -------------------------- */
  2402. /* Scrollbar
  2403. -------------------------- */
  2404. /* Placeholder
  2405. -------------------------- */
  2406. /* BEM
  2407. -------------------------- */
  2408. /* Element Chalk Variables */
  2409. /* Transition
  2410. -------------------------- */
  2411. /* Color
  2412. -------------------------- */
  2413. /* 53a8ff */
  2414. /* 66b1ff */
  2415. /* 79bbff */
  2416. /* 8cc5ff */
  2417. /* a0cfff */
  2418. /* b3d8ff */
  2419. /* c6e2ff */
  2420. /* d9ecff */
  2421. /* ecf5ff */
  2422. /* Link
  2423. -------------------------- */
  2424. /* Border
  2425. -------------------------- */
  2426. /* Fill
  2427. -------------------------- */
  2428. /* Typography
  2429. -------------------------- */
  2430. /* Size
  2431. -------------------------- */
  2432. /* z-index
  2433. -------------------------- */
  2434. /* Disable base
  2435. -------------------------- */
  2436. /* Icon
  2437. -------------------------- */
  2438. /* Checkbox
  2439. -------------------------- */
  2440. /* Radio
  2441. -------------------------- */
  2442. /* Select
  2443. -------------------------- */
  2444. /* Alert
  2445. -------------------------- */
  2446. /* MessageBox
  2447. -------------------------- */
  2448. /* Message
  2449. -------------------------- */
  2450. /* Notification
  2451. -------------------------- */
  2452. /* Input
  2453. -------------------------- */
  2454. /* Cascader
  2455. -------------------------- */
  2456. /* Group
  2457. -------------------------- */
  2458. /* Tab
  2459. -------------------------- */
  2460. /* Button
  2461. -------------------------- */
  2462. /* cascader
  2463. -------------------------- */
  2464. /* Switch
  2465. -------------------------- */
  2466. /* Dialog
  2467. -------------------------- */
  2468. /* Table
  2469. -------------------------- */
  2470. /* Pagination
  2471. -------------------------- */
  2472. /* Popup
  2473. -------------------------- */
  2474. /* Popover
  2475. -------------------------- */
  2476. /* Tooltip
  2477. -------------------------- */
  2478. /* Tag
  2479. -------------------------- */
  2480. /* Tree
  2481. -------------------------- */
  2482. /* Dropdown
  2483. -------------------------- */
  2484. /* Badge
  2485. -------------------------- */
  2486. /* Card
  2487. --------------------------*/
  2488. /* Slider
  2489. --------------------------*/
  2490. /* Steps
  2491. --------------------------*/
  2492. /* Menu
  2493. --------------------------*/
  2494. /* Rate
  2495. --------------------------*/
  2496. /* DatePicker
  2497. --------------------------*/
  2498. /* Loading
  2499. --------------------------*/
  2500. /* Scrollbar
  2501. --------------------------*/
  2502. /* Carousel
  2503. --------------------------*/
  2504. /* Collapse
  2505. --------------------------*/
  2506. /* Transfer
  2507. --------------------------*/
  2508. /* Header
  2509. --------------------------*/
  2510. /* Footer
  2511. --------------------------*/
  2512. /* Main
  2513. --------------------------*/
  2514. /* Timeline
  2515. --------------------------*/
  2516. /* Backtop
  2517. --------------------------*/
  2518. /* Link
  2519. --------------------------*/
  2520. /* Calendar
  2521. --------------------------*/
  2522. /* Form
  2523. -------------------------- */
  2524. /* Avatar
  2525. --------------------------*/
  2526. /* Empty
  2527. -------------------------- */
  2528. /* Descriptions
  2529. -------------------------- */
  2530. /* Skeleton
  2531. --------------------------*/
  2532. /* Svg
  2533. --------------- */
  2534. /* Result
  2535. -------------------------- */
  2536. /* Break-point
  2537. --------------------------*/
  2538. .el-popper .popper__arrow,
  2539. .el-popper .popper__arrow::after {
  2540. position: absolute;
  2541. display: block;
  2542. width: 0;
  2543. height: 0;
  2544. border-color: transparent;
  2545. border-style: solid; }
  2546. .el-popper .popper__arrow {
  2547. border-width: 6px;
  2548. -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
  2549. filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); }
  2550. .el-popper .popper__arrow::after {
  2551. content: " ";
  2552. border-width: 6px; }
  2553. .el-popper[x-placement^="top"] {
  2554. margin-bottom: 12px; }
  2555. .el-popper[x-placement^="top"] .popper__arrow {
  2556. bottom: -6px;
  2557. left: 50%;
  2558. margin-right: 3px;
  2559. border-top-color: #EBEEF5;
  2560. border-bottom-width: 0; }
  2561. .el-popper[x-placement^="top"] .popper__arrow::after {
  2562. bottom: 1px;
  2563. margin-left: -6px;
  2564. border-top-color: #FFFFFF;
  2565. border-bottom-width: 0; }
  2566. .el-popper[x-placement^="bottom"] {
  2567. margin-top: 12px; }
  2568. .el-popper[x-placement^="bottom"] .popper__arrow {
  2569. top: -6px;
  2570. left: 50%;
  2571. margin-right: 3px;
  2572. border-top-width: 0;
  2573. border-bottom-color: #EBEEF5; }
  2574. .el-popper[x-placement^="bottom"] .popper__arrow::after {
  2575. top: 1px;
  2576. margin-left: -6px;
  2577. border-top-width: 0;
  2578. border-bottom-color: #FFFFFF; }
  2579. .el-popper[x-placement^="right"] {
  2580. margin-left: 12px; }
  2581. .el-popper[x-placement^="right"] .popper__arrow {
  2582. top: 50%;
  2583. left: -6px;
  2584. margin-bottom: 3px;
  2585. border-right-color: #EBEEF5;
  2586. border-left-width: 0; }
  2587. .el-popper[x-placement^="right"] .popper__arrow::after {
  2588. bottom: -6px;
  2589. left: 1px;
  2590. border-right-color: #FFFFFF;
  2591. border-left-width: 0; }
  2592. .el-popper[x-placement^="left"] {
  2593. margin-right: 12px; }
  2594. .el-popper[x-placement^="left"] .popper__arrow {
  2595. top: 50%;
  2596. right: -6px;
  2597. margin-bottom: 3px;
  2598. border-right-width: 0;
  2599. border-left-color: #EBEEF5; }
  2600. .el-popper[x-placement^="left"] .popper__arrow::after {
  2601. right: 1px;
  2602. bottom: -6px;
  2603. margin-left: -6px;
  2604. border-right-width: 0;
  2605. border-left-color: #FFFFFF; }