time-picker.css 58 KB

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