cascader.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504
  1. @charset "UTF-8";
  2. /* BEM support Func
  3. -------------------------- */
  4. /* Element Chalk Variables */
  5. /* Transition
  6. -------------------------- */
  7. /* Color
  8. -------------------------- */
  9. /* 53a8ff */
  10. /* 66b1ff */
  11. /* 79bbff */
  12. /* 8cc5ff */
  13. /* a0cfff */
  14. /* b3d8ff */
  15. /* c6e2ff */
  16. /* d9ecff */
  17. /* ecf5ff */
  18. /* Link
  19. -------------------------- */
  20. /* Border
  21. -------------------------- */
  22. /* Fill
  23. -------------------------- */
  24. /* Typography
  25. -------------------------- */
  26. /* Size
  27. -------------------------- */
  28. /* z-index
  29. -------------------------- */
  30. /* Disable base
  31. -------------------------- */
  32. /* Icon
  33. -------------------------- */
  34. /* Checkbox
  35. -------------------------- */
  36. /* Radio
  37. -------------------------- */
  38. /* Select
  39. -------------------------- */
  40. /* Alert
  41. -------------------------- */
  42. /* MessageBox
  43. -------------------------- */
  44. /* Message
  45. -------------------------- */
  46. /* Notification
  47. -------------------------- */
  48. /* Input
  49. -------------------------- */
  50. /* Cascader
  51. -------------------------- */
  52. /* Group
  53. -------------------------- */
  54. /* Tab
  55. -------------------------- */
  56. /* Button
  57. -------------------------- */
  58. /* cascader
  59. -------------------------- */
  60. /* Switch
  61. -------------------------- */
  62. /* Dialog
  63. -------------------------- */
  64. /* Table
  65. -------------------------- */
  66. /* Pagination
  67. -------------------------- */
  68. /* Popup
  69. -------------------------- */
  70. /* Popover
  71. -------------------------- */
  72. /* Tooltip
  73. -------------------------- */
  74. /* Tag
  75. -------------------------- */
  76. /* Tree
  77. -------------------------- */
  78. /* Dropdown
  79. -------------------------- */
  80. /* Badge
  81. -------------------------- */
  82. /* Card
  83. --------------------------*/
  84. /* Slider
  85. --------------------------*/
  86. /* Steps
  87. --------------------------*/
  88. /* Menu
  89. --------------------------*/
  90. /* Rate
  91. --------------------------*/
  92. /* DatePicker
  93. --------------------------*/
  94. /* Loading
  95. --------------------------*/
  96. /* Scrollbar
  97. --------------------------*/
  98. /* Carousel
  99. --------------------------*/
  100. /* Collapse
  101. --------------------------*/
  102. /* Transfer
  103. --------------------------*/
  104. /* Header
  105. --------------------------*/
  106. /* Footer
  107. --------------------------*/
  108. /* Main
  109. --------------------------*/
  110. /* Timeline
  111. --------------------------*/
  112. /* Backtop
  113. --------------------------*/
  114. /* Link
  115. --------------------------*/
  116. /* Calendar
  117. --------------------------*/
  118. /* Form
  119. -------------------------- */
  120. /* Avatar
  121. --------------------------*/
  122. /* Break-point
  123. --------------------------*/
  124. /* Break-points
  125. -------------------------- */
  126. /* Scrollbar
  127. -------------------------- */
  128. /* Placeholder
  129. -------------------------- */
  130. /* BEM
  131. -------------------------- */
  132. /* Element Chalk Variables */
  133. /* Transition
  134. -------------------------- */
  135. /* Color
  136. -------------------------- */
  137. /* 53a8ff */
  138. /* 66b1ff */
  139. /* 79bbff */
  140. /* 8cc5ff */
  141. /* a0cfff */
  142. /* b3d8ff */
  143. /* c6e2ff */
  144. /* d9ecff */
  145. /* ecf5ff */
  146. /* Link
  147. -------------------------- */
  148. /* Border
  149. -------------------------- */
  150. /* Fill
  151. -------------------------- */
  152. /* Typography
  153. -------------------------- */
  154. /* Size
  155. -------------------------- */
  156. /* z-index
  157. -------------------------- */
  158. /* Disable base
  159. -------------------------- */
  160. /* Icon
  161. -------------------------- */
  162. /* Checkbox
  163. -------------------------- */
  164. /* Radio
  165. -------------------------- */
  166. /* Select
  167. -------------------------- */
  168. /* Alert
  169. -------------------------- */
  170. /* MessageBox
  171. -------------------------- */
  172. /* Message
  173. -------------------------- */
  174. /* Notification
  175. -------------------------- */
  176. /* Input
  177. -------------------------- */
  178. /* Cascader
  179. -------------------------- */
  180. /* Group
  181. -------------------------- */
  182. /* Tab
  183. -------------------------- */
  184. /* Button
  185. -------------------------- */
  186. /* cascader
  187. -------------------------- */
  188. /* Switch
  189. -------------------------- */
  190. /* Dialog
  191. -------------------------- */
  192. /* Table
  193. -------------------------- */
  194. /* Pagination
  195. -------------------------- */
  196. /* Popup
  197. -------------------------- */
  198. /* Popover
  199. -------------------------- */
  200. /* Tooltip
  201. -------------------------- */
  202. /* Tag
  203. -------------------------- */
  204. /* Tree
  205. -------------------------- */
  206. /* Dropdown
  207. -------------------------- */
  208. /* Badge
  209. -------------------------- */
  210. /* Card
  211. --------------------------*/
  212. /* Slider
  213. --------------------------*/
  214. /* Steps
  215. --------------------------*/
  216. /* Menu
  217. --------------------------*/
  218. /* Rate
  219. --------------------------*/
  220. /* DatePicker
  221. --------------------------*/
  222. /* Loading
  223. --------------------------*/
  224. /* Scrollbar
  225. --------------------------*/
  226. /* Carousel
  227. --------------------------*/
  228. /* Collapse
  229. --------------------------*/
  230. /* Transfer
  231. --------------------------*/
  232. /* Header
  233. --------------------------*/
  234. /* Footer
  235. --------------------------*/
  236. /* Main
  237. --------------------------*/
  238. /* Timeline
  239. --------------------------*/
  240. /* Backtop
  241. --------------------------*/
  242. /* Link
  243. --------------------------*/
  244. /* Calendar
  245. --------------------------*/
  246. /* Form
  247. -------------------------- */
  248. /* Avatar
  249. --------------------------*/
  250. /* Break-point
  251. --------------------------*/
  252. /* BEM support Func
  253. -------------------------- */
  254. /* Element Chalk Variables */
  255. /* Transition
  256. -------------------------- */
  257. /* Color
  258. -------------------------- */
  259. /* 53a8ff */
  260. /* 66b1ff */
  261. /* 79bbff */
  262. /* 8cc5ff */
  263. /* a0cfff */
  264. /* b3d8ff */
  265. /* c6e2ff */
  266. /* d9ecff */
  267. /* ecf5ff */
  268. /* Link
  269. -------------------------- */
  270. /* Border
  271. -------------------------- */
  272. /* Fill
  273. -------------------------- */
  274. /* Typography
  275. -------------------------- */
  276. /* Size
  277. -------------------------- */
  278. /* z-index
  279. -------------------------- */
  280. /* Disable base
  281. -------------------------- */
  282. /* Icon
  283. -------------------------- */
  284. /* Checkbox
  285. -------------------------- */
  286. /* Radio
  287. -------------------------- */
  288. /* Select
  289. -------------------------- */
  290. /* Alert
  291. -------------------------- */
  292. /* MessageBox
  293. -------------------------- */
  294. /* Message
  295. -------------------------- */
  296. /* Notification
  297. -------------------------- */
  298. /* Input
  299. -------------------------- */
  300. /* Cascader
  301. -------------------------- */
  302. /* Group
  303. -------------------------- */
  304. /* Tab
  305. -------------------------- */
  306. /* Button
  307. -------------------------- */
  308. /* cascader
  309. -------------------------- */
  310. /* Switch
  311. -------------------------- */
  312. /* Dialog
  313. -------------------------- */
  314. /* Table
  315. -------------------------- */
  316. /* Pagination
  317. -------------------------- */
  318. /* Popup
  319. -------------------------- */
  320. /* Popover
  321. -------------------------- */
  322. /* Tooltip
  323. -------------------------- */
  324. /* Tag
  325. -------------------------- */
  326. /* Tree
  327. -------------------------- */
  328. /* Dropdown
  329. -------------------------- */
  330. /* Badge
  331. -------------------------- */
  332. /* Card
  333. --------------------------*/
  334. /* Slider
  335. --------------------------*/
  336. /* Steps
  337. --------------------------*/
  338. /* Menu
  339. --------------------------*/
  340. /* Rate
  341. --------------------------*/
  342. /* DatePicker
  343. --------------------------*/
  344. /* Loading
  345. --------------------------*/
  346. /* Scrollbar
  347. --------------------------*/
  348. /* Carousel
  349. --------------------------*/
  350. /* Collapse
  351. --------------------------*/
  352. /* Transfer
  353. --------------------------*/
  354. /* Header
  355. --------------------------*/
  356. /* Footer
  357. --------------------------*/
  358. /* Main
  359. --------------------------*/
  360. /* Timeline
  361. --------------------------*/
  362. /* Backtop
  363. --------------------------*/
  364. /* Link
  365. --------------------------*/
  366. /* Calendar
  367. --------------------------*/
  368. /* Form
  369. -------------------------- */
  370. /* Avatar
  371. --------------------------*/
  372. /* Break-point
  373. --------------------------*/
  374. /* Break-points
  375. -------------------------- */
  376. /* Scrollbar
  377. -------------------------- */
  378. /* Placeholder
  379. -------------------------- */
  380. /* BEM
  381. -------------------------- */
  382. /* Element Chalk Variables */
  383. /* Transition
  384. -------------------------- */
  385. /* Color
  386. -------------------------- */
  387. /* 53a8ff */
  388. /* 66b1ff */
  389. /* 79bbff */
  390. /* 8cc5ff */
  391. /* a0cfff */
  392. /* b3d8ff */
  393. /* c6e2ff */
  394. /* d9ecff */
  395. /* ecf5ff */
  396. /* Link
  397. -------------------------- */
  398. /* Border
  399. -------------------------- */
  400. /* Fill
  401. -------------------------- */
  402. /* Typography
  403. -------------------------- */
  404. /* Size
  405. -------------------------- */
  406. /* z-index
  407. -------------------------- */
  408. /* Disable base
  409. -------------------------- */
  410. /* Icon
  411. -------------------------- */
  412. /* Checkbox
  413. -------------------------- */
  414. /* Radio
  415. -------------------------- */
  416. /* Select
  417. -------------------------- */
  418. /* Alert
  419. -------------------------- */
  420. /* MessageBox
  421. -------------------------- */
  422. /* Message
  423. -------------------------- */
  424. /* Notification
  425. -------------------------- */
  426. /* Input
  427. -------------------------- */
  428. /* Cascader
  429. -------------------------- */
  430. /* Group
  431. -------------------------- */
  432. /* Tab
  433. -------------------------- */
  434. /* Button
  435. -------------------------- */
  436. /* cascader
  437. -------------------------- */
  438. /* Switch
  439. -------------------------- */
  440. /* Dialog
  441. -------------------------- */
  442. /* Table
  443. -------------------------- */
  444. /* Pagination
  445. -------------------------- */
  446. /* Popup
  447. -------------------------- */
  448. /* Popover
  449. -------------------------- */
  450. /* Tooltip
  451. -------------------------- */
  452. /* Tag
  453. -------------------------- */
  454. /* Tree
  455. -------------------------- */
  456. /* Dropdown
  457. -------------------------- */
  458. /* Badge
  459. -------------------------- */
  460. /* Card
  461. --------------------------*/
  462. /* Slider
  463. --------------------------*/
  464. /* Steps
  465. --------------------------*/
  466. /* Menu
  467. --------------------------*/
  468. /* Rate
  469. --------------------------*/
  470. /* DatePicker
  471. --------------------------*/
  472. /* Loading
  473. --------------------------*/
  474. /* Scrollbar
  475. --------------------------*/
  476. /* Carousel
  477. --------------------------*/
  478. /* Collapse
  479. --------------------------*/
  480. /* Transfer
  481. --------------------------*/
  482. /* Header
  483. --------------------------*/
  484. /* Footer
  485. --------------------------*/
  486. /* Main
  487. --------------------------*/
  488. /* Timeline
  489. --------------------------*/
  490. /* Backtop
  491. --------------------------*/
  492. /* Link
  493. --------------------------*/
  494. /* Calendar
  495. --------------------------*/
  496. /* Form
  497. -------------------------- */
  498. /* Avatar
  499. --------------------------*/
  500. /* Break-point
  501. --------------------------*/
  502. .el-textarea {
  503. position: relative;
  504. display: inline-block;
  505. width: 100%;
  506. vertical-align: bottom;
  507. font-size: 14px; }
  508. .el-textarea__inner {
  509. display: block;
  510. resize: vertical;
  511. padding: 5px 15px;
  512. line-height: 1.5;
  513. -webkit-box-sizing: border-box;
  514. box-sizing: border-box;
  515. width: 100%;
  516. font-size: inherit;
  517. color: #606266;
  518. background-color: #FFFFFF;
  519. background-image: none;
  520. border: 1px solid #DCDFE6;
  521. border-radius: 4px;
  522. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  523. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
  524. .el-textarea__inner::-webkit-input-placeholder {
  525. color: #C0C4CC; }
  526. .el-textarea__inner::-moz-placeholder {
  527. color: #C0C4CC; }
  528. .el-textarea__inner::-ms-input-placeholder {
  529. color: #C0C4CC; }
  530. .el-textarea__inner::placeholder {
  531. color: #C0C4CC; }
  532. .el-textarea__inner:hover {
  533. border-color: #C0C4CC; }
  534. .el-textarea__inner:focus {
  535. outline: none;
  536. border-color: #2D74E7; }
  537. .el-textarea .el-input__count {
  538. color: #909399;
  539. background: #FFFFFF;
  540. position: absolute;
  541. font-size: 12px;
  542. bottom: 5px;
  543. right: 10px; }
  544. .el-textarea.is-disabled .el-textarea__inner {
  545. background-color: #F5F7FA;
  546. border-color: #E4E7ED;
  547. color: #C0C4CC;
  548. cursor: not-allowed; }
  549. .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder {
  550. color: #C0C4CC; }
  551. .el-textarea.is-disabled .el-textarea__inner::-moz-placeholder {
  552. color: #C0C4CC; }
  553. .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder {
  554. color: #C0C4CC; }
  555. .el-textarea.is-disabled .el-textarea__inner::placeholder {
  556. color: #C0C4CC; }
  557. .el-textarea.is-exceed .el-textarea__inner {
  558. border-color: #e7304e; }
  559. .el-textarea.is-exceed .el-input__count {
  560. color: #e7304e; }
  561. .el-input {
  562. position: relative;
  563. font-size: 14px;
  564. display: inline-block;
  565. width: 100%; }
  566. .el-input::-webkit-scrollbar {
  567. z-index: 11;
  568. width: 6px; }
  569. .el-input::-webkit-scrollbar:horizontal {
  570. height: 6px; }
  571. .el-input::-webkit-scrollbar-thumb {
  572. border-radius: 5px;
  573. width: 6px;
  574. background: #b4bccc; }
  575. .el-input::-webkit-scrollbar-corner {
  576. background: #fff; }
  577. .el-input::-webkit-scrollbar-track {
  578. background: #fff; }
  579. .el-input::-webkit-scrollbar-track-piece {
  580. background: #fff;
  581. width: 6px; }
  582. .el-input .el-input__clear {
  583. color: #C0C4CC;
  584. font-size: 14px;
  585. cursor: pointer;
  586. -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  587. transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
  588. .el-input .el-input__clear:hover {
  589. color: #909399; }
  590. .el-input .el-input__count {
  591. height: 100%;
  592. display: -webkit-inline-box;
  593. display: -ms-inline-flexbox;
  594. display: inline-flex;
  595. -webkit-box-align: center;
  596. -ms-flex-align: center;
  597. align-items: center;
  598. color: #909399;
  599. font-size: 12px; }
  600. .el-input .el-input__count .el-input__count-inner {
  601. background: #FFFFFF;
  602. line-height: initial;
  603. display: inline-block;
  604. padding: 0 5px; }
  605. .el-input__inner {
  606. -webkit-appearance: none;
  607. background-color: #FFFFFF;
  608. background-image: none;
  609. border-radius: 4px;
  610. border: 1px solid #DCDFE6;
  611. -webkit-box-sizing: border-box;
  612. box-sizing: border-box;
  613. color: #606266;
  614. display: inline-block;
  615. font-size: inherit;
  616. height: 40px;
  617. line-height: 40px;
  618. outline: none;
  619. padding: 0 15px;
  620. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  621. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  622. width: 100%; }
  623. .el-input__inner::-webkit-input-placeholder {
  624. color: #C0C4CC; }
  625. .el-input__inner::-moz-placeholder {
  626. color: #C0C4CC; }
  627. .el-input__inner::-ms-input-placeholder {
  628. color: #C0C4CC; }
  629. .el-input__inner::placeholder {
  630. color: #C0C4CC; }
  631. .el-input__inner:hover {
  632. border-color: #C0C4CC; }
  633. .el-input__inner:focus {
  634. outline: none;
  635. border-color: #2D74E7; }
  636. .el-input__suffix {
  637. position: absolute;
  638. height: 100%;
  639. right: 5px;
  640. top: 0;
  641. text-align: center;
  642. color: #C0C4CC;
  643. -webkit-transition: all .3s;
  644. transition: all .3s;
  645. pointer-events: none; }
  646. .el-input__suffix-inner {
  647. pointer-events: all; }
  648. .el-input__prefix {
  649. position: absolute;
  650. height: 100%;
  651. left: 5px;
  652. top: 0;
  653. text-align: center;
  654. color: #C0C4CC;
  655. -webkit-transition: all .3s;
  656. transition: all .3s; }
  657. .el-input__icon {
  658. height: 100%;
  659. width: 25px;
  660. text-align: center;
  661. -webkit-transition: all .3s;
  662. transition: all .3s;
  663. line-height: 40px; }
  664. .el-input__icon:after {
  665. content: '';
  666. height: 100%;
  667. width: 0;
  668. display: inline-block;
  669. vertical-align: middle; }
  670. .el-input__validateIcon {
  671. pointer-events: none; }
  672. .el-input.is-active .el-input__inner {
  673. outline: none;
  674. border-color: #2D74E7; }
  675. .el-input.is-disabled .el-input__inner {
  676. background-color: #F5F7FA;
  677. border-color: #E4E7ED;
  678. color: #C0C4CC;
  679. cursor: not-allowed; }
  680. .el-input.is-disabled .el-input__inner::-webkit-input-placeholder {
  681. color: #C0C4CC; }
  682. .el-input.is-disabled .el-input__inner::-moz-placeholder {
  683. color: #C0C4CC; }
  684. .el-input.is-disabled .el-input__inner::-ms-input-placeholder {
  685. color: #C0C4CC; }
  686. .el-input.is-disabled .el-input__inner::placeholder {
  687. color: #C0C4CC; }
  688. .el-input.is-disabled .el-input__icon {
  689. cursor: not-allowed; }
  690. .el-input.is-exceed .el-input__inner {
  691. border-color: #e7304e; }
  692. .el-input.is-exceed .el-input__suffix .el-input__count {
  693. color: #e7304e; }
  694. .el-input--suffix .el-input__inner {
  695. padding-right: 30px; }
  696. .el-input--prefix .el-input__inner {
  697. padding-left: 30px; }
  698. .el-input--medium {
  699. font-size: 14px; }
  700. .el-input--medium .el-input__inner {
  701. height: 36px;
  702. line-height: 36px; }
  703. .el-input--medium .el-input__icon {
  704. line-height: 36px; }
  705. .el-input--small {
  706. font-size: 13px; }
  707. .el-input--small .el-input__inner {
  708. height: 32px;
  709. line-height: 32px; }
  710. .el-input--small .el-input__icon {
  711. line-height: 32px; }
  712. .el-input--mini {
  713. font-size: 12px; }
  714. .el-input--mini .el-input__inner {
  715. height: 28px;
  716. line-height: 28px; }
  717. .el-input--mini .el-input__icon {
  718. line-height: 28px; }
  719. .el-input-group {
  720. line-height: normal;
  721. display: inline-table;
  722. width: 100%;
  723. border-collapse: separate;
  724. border-spacing: 0; }
  725. .el-input-group > .el-input__inner {
  726. vertical-align: middle;
  727. display: table-cell; }
  728. .el-input-group__append, .el-input-group__prepend {
  729. background-color: #F5F7FA;
  730. color: #909399;
  731. vertical-align: middle;
  732. display: table-cell;
  733. position: relative;
  734. border: 1px solid #DCDFE6;
  735. border-radius: 4px;
  736. padding: 0 20px;
  737. width: 1px;
  738. white-space: nowrap; }
  739. .el-input-group__append:focus, .el-input-group__prepend:focus {
  740. outline: none; }
  741. .el-input-group__append .el-select,
  742. .el-input-group__append .el-button, .el-input-group__prepend .el-select,
  743. .el-input-group__prepend .el-button {
  744. display: inline-block;
  745. margin: -10px -20px; }
  746. .el-input-group__append button.el-button,
  747. .el-input-group__append div.el-select .el-input__inner,
  748. .el-input-group__append div.el-select:hover .el-input__inner, .el-input-group__prepend button.el-button,
  749. .el-input-group__prepend div.el-select .el-input__inner,
  750. .el-input-group__prepend div.el-select:hover .el-input__inner {
  751. border-color: transparent;
  752. background-color: transparent;
  753. color: inherit;
  754. border-top: 0;
  755. border-bottom: 0; }
  756. .el-input-group__append .el-button,
  757. .el-input-group__append .el-input, .el-input-group__prepend .el-button,
  758. .el-input-group__prepend .el-input {
  759. font-size: inherit; }
  760. .el-input-group__prepend {
  761. border-right: 0;
  762. border-top-right-radius: 0;
  763. border-bottom-right-radius: 0; }
  764. .el-input-group__append {
  765. border-left: 0;
  766. border-top-left-radius: 0;
  767. border-bottom-left-radius: 0; }
  768. .el-input-group--prepend .el-input__inner {
  769. border-top-left-radius: 0;
  770. border-bottom-left-radius: 0; }
  771. .el-input-group--prepend .el-select .el-input.is-focus .el-input__inner {
  772. border-color: transparent; }
  773. .el-input-group--append .el-input__inner {
  774. border-top-right-radius: 0;
  775. border-bottom-right-radius: 0; }
  776. .el-input-group--append .el-select .el-input.is-focus .el-input__inner {
  777. border-color: transparent; }
  778. /** disalbe default clear on IE */
  779. .el-input__inner::-ms-clear {
  780. display: none;
  781. width: 0;
  782. height: 0; }
  783. /* BEM support Func
  784. -------------------------- */
  785. /* Element Chalk Variables */
  786. /* Transition
  787. -------------------------- */
  788. /* Color
  789. -------------------------- */
  790. /* 53a8ff */
  791. /* 66b1ff */
  792. /* 79bbff */
  793. /* 8cc5ff */
  794. /* a0cfff */
  795. /* b3d8ff */
  796. /* c6e2ff */
  797. /* d9ecff */
  798. /* ecf5ff */
  799. /* Link
  800. -------------------------- */
  801. /* Border
  802. -------------------------- */
  803. /* Fill
  804. -------------------------- */
  805. /* Typography
  806. -------------------------- */
  807. /* Size
  808. -------------------------- */
  809. /* z-index
  810. -------------------------- */
  811. /* Disable base
  812. -------------------------- */
  813. /* Icon
  814. -------------------------- */
  815. /* Checkbox
  816. -------------------------- */
  817. /* Radio
  818. -------------------------- */
  819. /* Select
  820. -------------------------- */
  821. /* Alert
  822. -------------------------- */
  823. /* MessageBox
  824. -------------------------- */
  825. /* Message
  826. -------------------------- */
  827. /* Notification
  828. -------------------------- */
  829. /* Input
  830. -------------------------- */
  831. /* Cascader
  832. -------------------------- */
  833. /* Group
  834. -------------------------- */
  835. /* Tab
  836. -------------------------- */
  837. /* Button
  838. -------------------------- */
  839. /* cascader
  840. -------------------------- */
  841. /* Switch
  842. -------------------------- */
  843. /* Dialog
  844. -------------------------- */
  845. /* Table
  846. -------------------------- */
  847. /* Pagination
  848. -------------------------- */
  849. /* Popup
  850. -------------------------- */
  851. /* Popover
  852. -------------------------- */
  853. /* Tooltip
  854. -------------------------- */
  855. /* Tag
  856. -------------------------- */
  857. /* Tree
  858. -------------------------- */
  859. /* Dropdown
  860. -------------------------- */
  861. /* Badge
  862. -------------------------- */
  863. /* Card
  864. --------------------------*/
  865. /* Slider
  866. --------------------------*/
  867. /* Steps
  868. --------------------------*/
  869. /* Menu
  870. --------------------------*/
  871. /* Rate
  872. --------------------------*/
  873. /* DatePicker
  874. --------------------------*/
  875. /* Loading
  876. --------------------------*/
  877. /* Scrollbar
  878. --------------------------*/
  879. /* Carousel
  880. --------------------------*/
  881. /* Collapse
  882. --------------------------*/
  883. /* Transfer
  884. --------------------------*/
  885. /* Header
  886. --------------------------*/
  887. /* Footer
  888. --------------------------*/
  889. /* Main
  890. --------------------------*/
  891. /* Timeline
  892. --------------------------*/
  893. /* Backtop
  894. --------------------------*/
  895. /* Link
  896. --------------------------*/
  897. /* Calendar
  898. --------------------------*/
  899. /* Form
  900. -------------------------- */
  901. /* Avatar
  902. --------------------------*/
  903. /* Break-point
  904. --------------------------*/
  905. /* Break-points
  906. -------------------------- */
  907. /* Scrollbar
  908. -------------------------- */
  909. /* Placeholder
  910. -------------------------- */
  911. /* BEM
  912. -------------------------- */
  913. /* Element Chalk Variables */
  914. /* Transition
  915. -------------------------- */
  916. /* Color
  917. -------------------------- */
  918. /* 53a8ff */
  919. /* 66b1ff */
  920. /* 79bbff */
  921. /* 8cc5ff */
  922. /* a0cfff */
  923. /* b3d8ff */
  924. /* c6e2ff */
  925. /* d9ecff */
  926. /* ecf5ff */
  927. /* Link
  928. -------------------------- */
  929. /* Border
  930. -------------------------- */
  931. /* Fill
  932. -------------------------- */
  933. /* Typography
  934. -------------------------- */
  935. /* Size
  936. -------------------------- */
  937. /* z-index
  938. -------------------------- */
  939. /* Disable base
  940. -------------------------- */
  941. /* Icon
  942. -------------------------- */
  943. /* Checkbox
  944. -------------------------- */
  945. /* Radio
  946. -------------------------- */
  947. /* Select
  948. -------------------------- */
  949. /* Alert
  950. -------------------------- */
  951. /* MessageBox
  952. -------------------------- */
  953. /* Message
  954. -------------------------- */
  955. /* Notification
  956. -------------------------- */
  957. /* Input
  958. -------------------------- */
  959. /* Cascader
  960. -------------------------- */
  961. /* Group
  962. -------------------------- */
  963. /* Tab
  964. -------------------------- */
  965. /* Button
  966. -------------------------- */
  967. /* cascader
  968. -------------------------- */
  969. /* Switch
  970. -------------------------- */
  971. /* Dialog
  972. -------------------------- */
  973. /* Table
  974. -------------------------- */
  975. /* Pagination
  976. -------------------------- */
  977. /* Popup
  978. -------------------------- */
  979. /* Popover
  980. -------------------------- */
  981. /* Tooltip
  982. -------------------------- */
  983. /* Tag
  984. -------------------------- */
  985. /* Tree
  986. -------------------------- */
  987. /* Dropdown
  988. -------------------------- */
  989. /* Badge
  990. -------------------------- */
  991. /* Card
  992. --------------------------*/
  993. /* Slider
  994. --------------------------*/
  995. /* Steps
  996. --------------------------*/
  997. /* Menu
  998. --------------------------*/
  999. /* Rate
  1000. --------------------------*/
  1001. /* DatePicker
  1002. --------------------------*/
  1003. /* Loading
  1004. --------------------------*/
  1005. /* Scrollbar
  1006. --------------------------*/
  1007. /* Carousel
  1008. --------------------------*/
  1009. /* Collapse
  1010. --------------------------*/
  1011. /* Transfer
  1012. --------------------------*/
  1013. /* Header
  1014. --------------------------*/
  1015. /* Footer
  1016. --------------------------*/
  1017. /* Main
  1018. --------------------------*/
  1019. /* Timeline
  1020. --------------------------*/
  1021. /* Backtop
  1022. --------------------------*/
  1023. /* Link
  1024. --------------------------*/
  1025. /* Calendar
  1026. --------------------------*/
  1027. /* Form
  1028. -------------------------- */
  1029. /* Avatar
  1030. --------------------------*/
  1031. /* Break-point
  1032. --------------------------*/
  1033. .el-popper .popper__arrow,
  1034. .el-popper .popper__arrow::after {
  1035. position: absolute;
  1036. display: block;
  1037. width: 0;
  1038. height: 0;
  1039. border-color: transparent;
  1040. border-style: solid; }
  1041. .el-popper .popper__arrow {
  1042. border-width: 6px;
  1043. -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
  1044. filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); }
  1045. .el-popper .popper__arrow::after {
  1046. content: " ";
  1047. border-width: 6px; }
  1048. .el-popper[x-placement^="top"] {
  1049. margin-bottom: 12px; }
  1050. .el-popper[x-placement^="top"] .popper__arrow {
  1051. bottom: -6px;
  1052. left: 50%;
  1053. margin-right: 3px;
  1054. border-top-color: #EBEEF5;
  1055. border-bottom-width: 0; }
  1056. .el-popper[x-placement^="top"] .popper__arrow::after {
  1057. bottom: 1px;
  1058. margin-left: -6px;
  1059. border-top-color: #FFFFFF;
  1060. border-bottom-width: 0; }
  1061. .el-popper[x-placement^="bottom"] {
  1062. margin-top: 12px; }
  1063. .el-popper[x-placement^="bottom"] .popper__arrow {
  1064. top: -6px;
  1065. left: 50%;
  1066. margin-right: 3px;
  1067. border-top-width: 0;
  1068. border-bottom-color: #EBEEF5; }
  1069. .el-popper[x-placement^="bottom"] .popper__arrow::after {
  1070. top: 1px;
  1071. margin-left: -6px;
  1072. border-top-width: 0;
  1073. border-bottom-color: #FFFFFF; }
  1074. .el-popper[x-placement^="right"] {
  1075. margin-left: 12px; }
  1076. .el-popper[x-placement^="right"] .popper__arrow {
  1077. top: 50%;
  1078. left: -6px;
  1079. margin-bottom: 3px;
  1080. border-right-color: #EBEEF5;
  1081. border-left-width: 0; }
  1082. .el-popper[x-placement^="right"] .popper__arrow::after {
  1083. bottom: -6px;
  1084. left: 1px;
  1085. border-right-color: #FFFFFF;
  1086. border-left-width: 0; }
  1087. .el-popper[x-placement^="left"] {
  1088. margin-right: 12px; }
  1089. .el-popper[x-placement^="left"] .popper__arrow {
  1090. top: 50%;
  1091. right: -6px;
  1092. margin-bottom: 3px;
  1093. border-right-width: 0;
  1094. border-left-color: #EBEEF5; }
  1095. .el-popper[x-placement^="left"] .popper__arrow::after {
  1096. right: 1px;
  1097. bottom: -6px;
  1098. margin-left: -6px;
  1099. border-right-width: 0;
  1100. border-left-color: #FFFFFF; }
  1101. /* BEM support Func
  1102. -------------------------- */
  1103. /* Element Chalk Variables */
  1104. /* Transition
  1105. -------------------------- */
  1106. /* Color
  1107. -------------------------- */
  1108. /* 53a8ff */
  1109. /* 66b1ff */
  1110. /* 79bbff */
  1111. /* 8cc5ff */
  1112. /* a0cfff */
  1113. /* b3d8ff */
  1114. /* c6e2ff */
  1115. /* d9ecff */
  1116. /* ecf5ff */
  1117. /* Link
  1118. -------------------------- */
  1119. /* Border
  1120. -------------------------- */
  1121. /* Fill
  1122. -------------------------- */
  1123. /* Typography
  1124. -------------------------- */
  1125. /* Size
  1126. -------------------------- */
  1127. /* z-index
  1128. -------------------------- */
  1129. /* Disable base
  1130. -------------------------- */
  1131. /* Icon
  1132. -------------------------- */
  1133. /* Checkbox
  1134. -------------------------- */
  1135. /* Radio
  1136. -------------------------- */
  1137. /* Select
  1138. -------------------------- */
  1139. /* Alert
  1140. -------------------------- */
  1141. /* MessageBox
  1142. -------------------------- */
  1143. /* Message
  1144. -------------------------- */
  1145. /* Notification
  1146. -------------------------- */
  1147. /* Input
  1148. -------------------------- */
  1149. /* Cascader
  1150. -------------------------- */
  1151. /* Group
  1152. -------------------------- */
  1153. /* Tab
  1154. -------------------------- */
  1155. /* Button
  1156. -------------------------- */
  1157. /* cascader
  1158. -------------------------- */
  1159. /* Switch
  1160. -------------------------- */
  1161. /* Dialog
  1162. -------------------------- */
  1163. /* Table
  1164. -------------------------- */
  1165. /* Pagination
  1166. -------------------------- */
  1167. /* Popup
  1168. -------------------------- */
  1169. /* Popover
  1170. -------------------------- */
  1171. /* Tooltip
  1172. -------------------------- */
  1173. /* Tag
  1174. -------------------------- */
  1175. /* Tree
  1176. -------------------------- */
  1177. /* Dropdown
  1178. -------------------------- */
  1179. /* Badge
  1180. -------------------------- */
  1181. /* Card
  1182. --------------------------*/
  1183. /* Slider
  1184. --------------------------*/
  1185. /* Steps
  1186. --------------------------*/
  1187. /* Menu
  1188. --------------------------*/
  1189. /* Rate
  1190. --------------------------*/
  1191. /* DatePicker
  1192. --------------------------*/
  1193. /* Loading
  1194. --------------------------*/
  1195. /* Scrollbar
  1196. --------------------------*/
  1197. /* Carousel
  1198. --------------------------*/
  1199. /* Collapse
  1200. --------------------------*/
  1201. /* Transfer
  1202. --------------------------*/
  1203. /* Header
  1204. --------------------------*/
  1205. /* Footer
  1206. --------------------------*/
  1207. /* Main
  1208. --------------------------*/
  1209. /* Timeline
  1210. --------------------------*/
  1211. /* Backtop
  1212. --------------------------*/
  1213. /* Link
  1214. --------------------------*/
  1215. /* Calendar
  1216. --------------------------*/
  1217. /* Form
  1218. -------------------------- */
  1219. /* Avatar
  1220. --------------------------*/
  1221. /* Break-point
  1222. --------------------------*/
  1223. /* Break-points
  1224. -------------------------- */
  1225. /* Scrollbar
  1226. -------------------------- */
  1227. /* Placeholder
  1228. -------------------------- */
  1229. /* BEM
  1230. -------------------------- */
  1231. /* Element Chalk Variables */
  1232. /* Transition
  1233. -------------------------- */
  1234. /* Color
  1235. -------------------------- */
  1236. /* 53a8ff */
  1237. /* 66b1ff */
  1238. /* 79bbff */
  1239. /* 8cc5ff */
  1240. /* a0cfff */
  1241. /* b3d8ff */
  1242. /* c6e2ff */
  1243. /* d9ecff */
  1244. /* ecf5ff */
  1245. /* Link
  1246. -------------------------- */
  1247. /* Border
  1248. -------------------------- */
  1249. /* Fill
  1250. -------------------------- */
  1251. /* Typography
  1252. -------------------------- */
  1253. /* Size
  1254. -------------------------- */
  1255. /* z-index
  1256. -------------------------- */
  1257. /* Disable base
  1258. -------------------------- */
  1259. /* Icon
  1260. -------------------------- */
  1261. /* Checkbox
  1262. -------------------------- */
  1263. /* Radio
  1264. -------------------------- */
  1265. /* Select
  1266. -------------------------- */
  1267. /* Alert
  1268. -------------------------- */
  1269. /* MessageBox
  1270. -------------------------- */
  1271. /* Message
  1272. -------------------------- */
  1273. /* Notification
  1274. -------------------------- */
  1275. /* Input
  1276. -------------------------- */
  1277. /* Cascader
  1278. -------------------------- */
  1279. /* Group
  1280. -------------------------- */
  1281. /* Tab
  1282. -------------------------- */
  1283. /* Button
  1284. -------------------------- */
  1285. /* cascader
  1286. -------------------------- */
  1287. /* Switch
  1288. -------------------------- */
  1289. /* Dialog
  1290. -------------------------- */
  1291. /* Table
  1292. -------------------------- */
  1293. /* Pagination
  1294. -------------------------- */
  1295. /* Popup
  1296. -------------------------- */
  1297. /* Popover
  1298. -------------------------- */
  1299. /* Tooltip
  1300. -------------------------- */
  1301. /* Tag
  1302. -------------------------- */
  1303. /* Tree
  1304. -------------------------- */
  1305. /* Dropdown
  1306. -------------------------- */
  1307. /* Badge
  1308. -------------------------- */
  1309. /* Card
  1310. --------------------------*/
  1311. /* Slider
  1312. --------------------------*/
  1313. /* Steps
  1314. --------------------------*/
  1315. /* Menu
  1316. --------------------------*/
  1317. /* Rate
  1318. --------------------------*/
  1319. /* DatePicker
  1320. --------------------------*/
  1321. /* Loading
  1322. --------------------------*/
  1323. /* Scrollbar
  1324. --------------------------*/
  1325. /* Carousel
  1326. --------------------------*/
  1327. /* Collapse
  1328. --------------------------*/
  1329. /* Transfer
  1330. --------------------------*/
  1331. /* Header
  1332. --------------------------*/
  1333. /* Footer
  1334. --------------------------*/
  1335. /* Main
  1336. --------------------------*/
  1337. /* Timeline
  1338. --------------------------*/
  1339. /* Backtop
  1340. --------------------------*/
  1341. /* Link
  1342. --------------------------*/
  1343. /* Calendar
  1344. --------------------------*/
  1345. /* Form
  1346. -------------------------- */
  1347. /* Avatar
  1348. --------------------------*/
  1349. /* Break-point
  1350. --------------------------*/
  1351. .el-tag {
  1352. background-color: #eaf1fd;
  1353. border-color: #d5e3fa;
  1354. color: #2d74e7;
  1355. display: inline-block;
  1356. height: 32px;
  1357. padding: 0 10px;
  1358. line-height: 30px;
  1359. font-size: 12px;
  1360. color: #2D74E7;
  1361. border-width: 1px;
  1362. border-style: solid;
  1363. border-radius: 4px;
  1364. -webkit-box-sizing: border-box;
  1365. box-sizing: border-box;
  1366. white-space: nowrap; }
  1367. .el-tag.is-hit {
  1368. border-color: #2D74E7; }
  1369. .el-tag .el-tag__close {
  1370. color: #2d74e7; }
  1371. .el-tag .el-tag__close:hover {
  1372. color: #FFFFFF;
  1373. background-color: #2d74e7; }
  1374. .el-tag.el-tag--info {
  1375. background-color: #f4f4f5;
  1376. border-color: #e9e9eb;
  1377. color: #909399; }
  1378. .el-tag.el-tag--info.is-hit {
  1379. border-color: #909399; }
  1380. .el-tag.el-tag--info .el-tag__close {
  1381. color: #909399; }
  1382. .el-tag.el-tag--info .el-tag__close:hover {
  1383. color: #FFFFFF;
  1384. background-color: #909399; }
  1385. .el-tag.el-tag--success {
  1386. background-color: #f0f9eb;
  1387. border-color: #e1f3d8;
  1388. color: #67c23a; }
  1389. .el-tag.el-tag--success.is-hit {
  1390. border-color: #67C23A; }
  1391. .el-tag.el-tag--success .el-tag__close {
  1392. color: #67c23a; }
  1393. .el-tag.el-tag--success .el-tag__close:hover {
  1394. color: #FFFFFF;
  1395. background-color: #67c23a; }
  1396. .el-tag.el-tag--warning {
  1397. background-color: #fdf6ec;
  1398. border-color: #faecd8;
  1399. color: #e6a23c; }
  1400. .el-tag.el-tag--warning.is-hit {
  1401. border-color: #E6A23C; }
  1402. .el-tag.el-tag--warning .el-tag__close {
  1403. color: #e6a23c; }
  1404. .el-tag.el-tag--warning .el-tag__close:hover {
  1405. color: #FFFFFF;
  1406. background-color: #e6a23c; }
  1407. .el-tag.el-tag--danger {
  1408. background-color: #fdeaed;
  1409. border-color: #fad6dc;
  1410. color: #e7304e; }
  1411. .el-tag.el-tag--danger.is-hit {
  1412. border-color: #e7304e; }
  1413. .el-tag.el-tag--danger .el-tag__close {
  1414. color: #e7304e; }
  1415. .el-tag.el-tag--danger .el-tag__close:hover {
  1416. color: #FFFFFF;
  1417. background-color: #e7304e; }
  1418. .el-tag .el-icon-close {
  1419. border-radius: 50%;
  1420. text-align: center;
  1421. position: relative;
  1422. cursor: pointer;
  1423. font-size: 12px;
  1424. height: 16px;
  1425. width: 16px;
  1426. line-height: 16px;
  1427. vertical-align: middle;
  1428. top: -1px;
  1429. right: -5px; }
  1430. .el-tag .el-icon-close::before {
  1431. display: block; }
  1432. .el-tag--dark {
  1433. background-color: #2d74e7;
  1434. border-color: #2d74e7;
  1435. color: white; }
  1436. .el-tag--dark.is-hit {
  1437. border-color: #2D74E7; }
  1438. .el-tag--dark .el-tag__close {
  1439. color: white; }
  1440. .el-tag--dark .el-tag__close:hover {
  1441. color: #FFFFFF;
  1442. background-color: #5790ec; }
  1443. .el-tag--dark.el-tag--info {
  1444. background-color: #909399;
  1445. border-color: #909399;
  1446. color: white; }
  1447. .el-tag--dark.el-tag--info.is-hit {
  1448. border-color: #909399; }
  1449. .el-tag--dark.el-tag--info .el-tag__close {
  1450. color: white; }
  1451. .el-tag--dark.el-tag--info .el-tag__close:hover {
  1452. color: #FFFFFF;
  1453. background-color: #a6a9ad; }
  1454. .el-tag--dark.el-tag--success {
  1455. background-color: #67c23a;
  1456. border-color: #67c23a;
  1457. color: white; }
  1458. .el-tag--dark.el-tag--success.is-hit {
  1459. border-color: #67C23A; }
  1460. .el-tag--dark.el-tag--success .el-tag__close {
  1461. color: white; }
  1462. .el-tag--dark.el-tag--success .el-tag__close:hover {
  1463. color: #FFFFFF;
  1464. background-color: #85ce61; }
  1465. .el-tag--dark.el-tag--warning {
  1466. background-color: #e6a23c;
  1467. border-color: #e6a23c;
  1468. color: white; }
  1469. .el-tag--dark.el-tag--warning.is-hit {
  1470. border-color: #E6A23C; }
  1471. .el-tag--dark.el-tag--warning .el-tag__close {
  1472. color: white; }
  1473. .el-tag--dark.el-tag--warning .el-tag__close:hover {
  1474. color: #FFFFFF;
  1475. background-color: #ebb563; }
  1476. .el-tag--dark.el-tag--danger {
  1477. background-color: #e7304e;
  1478. border-color: #e7304e;
  1479. color: white; }
  1480. .el-tag--dark.el-tag--danger.is-hit {
  1481. border-color: #e7304e; }
  1482. .el-tag--dark.el-tag--danger .el-tag__close {
  1483. color: white; }
  1484. .el-tag--dark.el-tag--danger .el-tag__close:hover {
  1485. color: #FFFFFF;
  1486. background-color: #ec5971; }
  1487. .el-tag--plain {
  1488. background-color: white;
  1489. border-color: #abc7f5;
  1490. color: #2d74e7; }
  1491. .el-tag--plain.is-hit {
  1492. border-color: #2D74E7; }
  1493. .el-tag--plain .el-tag__close {
  1494. color: #2d74e7; }
  1495. .el-tag--plain .el-tag__close:hover {
  1496. color: #FFFFFF;
  1497. background-color: #2d74e7; }
  1498. .el-tag--plain.el-tag--info {
  1499. background-color: white;
  1500. border-color: #d3d4d6;
  1501. color: #909399; }
  1502. .el-tag--plain.el-tag--info.is-hit {
  1503. border-color: #909399; }
  1504. .el-tag--plain.el-tag--info .el-tag__close {
  1505. color: #909399; }
  1506. .el-tag--plain.el-tag--info .el-tag__close:hover {
  1507. color: #FFFFFF;
  1508. background-color: #909399; }
  1509. .el-tag--plain.el-tag--success {
  1510. background-color: white;
  1511. border-color: #c2e7b0;
  1512. color: #67c23a; }
  1513. .el-tag--plain.el-tag--success.is-hit {
  1514. border-color: #67C23A; }
  1515. .el-tag--plain.el-tag--success .el-tag__close {
  1516. color: #67c23a; }
  1517. .el-tag--plain.el-tag--success .el-tag__close:hover {
  1518. color: #FFFFFF;
  1519. background-color: #67c23a; }
  1520. .el-tag--plain.el-tag--warning {
  1521. background-color: white;
  1522. border-color: #f5dab1;
  1523. color: #e6a23c; }
  1524. .el-tag--plain.el-tag--warning.is-hit {
  1525. border-color: #E6A23C; }
  1526. .el-tag--plain.el-tag--warning .el-tag__close {
  1527. color: #e6a23c; }
  1528. .el-tag--plain.el-tag--warning .el-tag__close:hover {
  1529. color: #FFFFFF;
  1530. background-color: #e6a23c; }
  1531. .el-tag--plain.el-tag--danger {
  1532. background-color: white;
  1533. border-color: #f5acb8;
  1534. color: #e7304e; }
  1535. .el-tag--plain.el-tag--danger.is-hit {
  1536. border-color: #e7304e; }
  1537. .el-tag--plain.el-tag--danger .el-tag__close {
  1538. color: #e7304e; }
  1539. .el-tag--plain.el-tag--danger .el-tag__close:hover {
  1540. color: #FFFFFF;
  1541. background-color: #e7304e; }
  1542. .el-tag--medium {
  1543. height: 28px;
  1544. line-height: 26px; }
  1545. .el-tag--medium .el-icon-close {
  1546. -webkit-transform: scale(0.8);
  1547. transform: scale(0.8); }
  1548. .el-tag--small {
  1549. height: 24px;
  1550. padding: 0 8px;
  1551. line-height: 22px; }
  1552. .el-tag--small .el-icon-close {
  1553. -webkit-transform: scale(0.8);
  1554. transform: scale(0.8); }
  1555. .el-tag--mini {
  1556. height: 20px;
  1557. padding: 0 5px;
  1558. line-height: 19px; }
  1559. .el-tag--mini .el-icon-close {
  1560. margin-left: -3px;
  1561. -webkit-transform: scale(0.7);
  1562. transform: scale(0.7); }
  1563. /* BEM support Func
  1564. -------------------------- */
  1565. /* Element Chalk Variables */
  1566. /* Transition
  1567. -------------------------- */
  1568. /* Color
  1569. -------------------------- */
  1570. /* 53a8ff */
  1571. /* 66b1ff */
  1572. /* 79bbff */
  1573. /* 8cc5ff */
  1574. /* a0cfff */
  1575. /* b3d8ff */
  1576. /* c6e2ff */
  1577. /* d9ecff */
  1578. /* ecf5ff */
  1579. /* Link
  1580. -------------------------- */
  1581. /* Border
  1582. -------------------------- */
  1583. /* Fill
  1584. -------------------------- */
  1585. /* Typography
  1586. -------------------------- */
  1587. /* Size
  1588. -------------------------- */
  1589. /* z-index
  1590. -------------------------- */
  1591. /* Disable base
  1592. -------------------------- */
  1593. /* Icon
  1594. -------------------------- */
  1595. /* Checkbox
  1596. -------------------------- */
  1597. /* Radio
  1598. -------------------------- */
  1599. /* Select
  1600. -------------------------- */
  1601. /* Alert
  1602. -------------------------- */
  1603. /* MessageBox
  1604. -------------------------- */
  1605. /* Message
  1606. -------------------------- */
  1607. /* Notification
  1608. -------------------------- */
  1609. /* Input
  1610. -------------------------- */
  1611. /* Cascader
  1612. -------------------------- */
  1613. /* Group
  1614. -------------------------- */
  1615. /* Tab
  1616. -------------------------- */
  1617. /* Button
  1618. -------------------------- */
  1619. /* cascader
  1620. -------------------------- */
  1621. /* Switch
  1622. -------------------------- */
  1623. /* Dialog
  1624. -------------------------- */
  1625. /* Table
  1626. -------------------------- */
  1627. /* Pagination
  1628. -------------------------- */
  1629. /* Popup
  1630. -------------------------- */
  1631. /* Popover
  1632. -------------------------- */
  1633. /* Tooltip
  1634. -------------------------- */
  1635. /* Tag
  1636. -------------------------- */
  1637. /* Tree
  1638. -------------------------- */
  1639. /* Dropdown
  1640. -------------------------- */
  1641. /* Badge
  1642. -------------------------- */
  1643. /* Card
  1644. --------------------------*/
  1645. /* Slider
  1646. --------------------------*/
  1647. /* Steps
  1648. --------------------------*/
  1649. /* Menu
  1650. --------------------------*/
  1651. /* Rate
  1652. --------------------------*/
  1653. /* DatePicker
  1654. --------------------------*/
  1655. /* Loading
  1656. --------------------------*/
  1657. /* Scrollbar
  1658. --------------------------*/
  1659. /* Carousel
  1660. --------------------------*/
  1661. /* Collapse
  1662. --------------------------*/
  1663. /* Transfer
  1664. --------------------------*/
  1665. /* Header
  1666. --------------------------*/
  1667. /* Footer
  1668. --------------------------*/
  1669. /* Main
  1670. --------------------------*/
  1671. /* Timeline
  1672. --------------------------*/
  1673. /* Backtop
  1674. --------------------------*/
  1675. /* Link
  1676. --------------------------*/
  1677. /* Calendar
  1678. --------------------------*/
  1679. /* Form
  1680. -------------------------- */
  1681. /* Avatar
  1682. --------------------------*/
  1683. /* Break-point
  1684. --------------------------*/
  1685. /* Break-points
  1686. -------------------------- */
  1687. /* Scrollbar
  1688. -------------------------- */
  1689. /* Placeholder
  1690. -------------------------- */
  1691. /* BEM
  1692. -------------------------- */
  1693. /* Element Chalk Variables */
  1694. /* Transition
  1695. -------------------------- */
  1696. /* Color
  1697. -------------------------- */
  1698. /* 53a8ff */
  1699. /* 66b1ff */
  1700. /* 79bbff */
  1701. /* 8cc5ff */
  1702. /* a0cfff */
  1703. /* b3d8ff */
  1704. /* c6e2ff */
  1705. /* d9ecff */
  1706. /* ecf5ff */
  1707. /* Link
  1708. -------------------------- */
  1709. /* Border
  1710. -------------------------- */
  1711. /* Fill
  1712. -------------------------- */
  1713. /* Typography
  1714. -------------------------- */
  1715. /* Size
  1716. -------------------------- */
  1717. /* z-index
  1718. -------------------------- */
  1719. /* Disable base
  1720. -------------------------- */
  1721. /* Icon
  1722. -------------------------- */
  1723. /* Checkbox
  1724. -------------------------- */
  1725. /* Radio
  1726. -------------------------- */
  1727. /* Select
  1728. -------------------------- */
  1729. /* Alert
  1730. -------------------------- */
  1731. /* MessageBox
  1732. -------------------------- */
  1733. /* Message
  1734. -------------------------- */
  1735. /* Notification
  1736. -------------------------- */
  1737. /* Input
  1738. -------------------------- */
  1739. /* Cascader
  1740. -------------------------- */
  1741. /* Group
  1742. -------------------------- */
  1743. /* Tab
  1744. -------------------------- */
  1745. /* Button
  1746. -------------------------- */
  1747. /* cascader
  1748. -------------------------- */
  1749. /* Switch
  1750. -------------------------- */
  1751. /* Dialog
  1752. -------------------------- */
  1753. /* Table
  1754. -------------------------- */
  1755. /* Pagination
  1756. -------------------------- */
  1757. /* Popup
  1758. -------------------------- */
  1759. /* Popover
  1760. -------------------------- */
  1761. /* Tooltip
  1762. -------------------------- */
  1763. /* Tag
  1764. -------------------------- */
  1765. /* Tree
  1766. -------------------------- */
  1767. /* Dropdown
  1768. -------------------------- */
  1769. /* Badge
  1770. -------------------------- */
  1771. /* Card
  1772. --------------------------*/
  1773. /* Slider
  1774. --------------------------*/
  1775. /* Steps
  1776. --------------------------*/
  1777. /* Menu
  1778. --------------------------*/
  1779. /* Rate
  1780. --------------------------*/
  1781. /* DatePicker
  1782. --------------------------*/
  1783. /* Loading
  1784. --------------------------*/
  1785. /* Scrollbar
  1786. --------------------------*/
  1787. /* Carousel
  1788. --------------------------*/
  1789. /* Collapse
  1790. --------------------------*/
  1791. /* Transfer
  1792. --------------------------*/
  1793. /* Header
  1794. --------------------------*/
  1795. /* Footer
  1796. --------------------------*/
  1797. /* Main
  1798. --------------------------*/
  1799. /* Timeline
  1800. --------------------------*/
  1801. /* Backtop
  1802. --------------------------*/
  1803. /* Link
  1804. --------------------------*/
  1805. /* Calendar
  1806. --------------------------*/
  1807. /* Form
  1808. -------------------------- */
  1809. /* Avatar
  1810. --------------------------*/
  1811. /* Break-point
  1812. --------------------------*/
  1813. /* Element Chalk Variables */
  1814. /* Transition
  1815. -------------------------- */
  1816. /* Color
  1817. -------------------------- */
  1818. /* 53a8ff */
  1819. /* 66b1ff */
  1820. /* 79bbff */
  1821. /* 8cc5ff */
  1822. /* a0cfff */
  1823. /* b3d8ff */
  1824. /* c6e2ff */
  1825. /* d9ecff */
  1826. /* ecf5ff */
  1827. /* Link
  1828. -------------------------- */
  1829. /* Border
  1830. -------------------------- */
  1831. /* Fill
  1832. -------------------------- */
  1833. /* Typography
  1834. -------------------------- */
  1835. /* Size
  1836. -------------------------- */
  1837. /* z-index
  1838. -------------------------- */
  1839. /* Disable base
  1840. -------------------------- */
  1841. /* Icon
  1842. -------------------------- */
  1843. /* Checkbox
  1844. -------------------------- */
  1845. /* Radio
  1846. -------------------------- */
  1847. /* Select
  1848. -------------------------- */
  1849. /* Alert
  1850. -------------------------- */
  1851. /* MessageBox
  1852. -------------------------- */
  1853. /* Message
  1854. -------------------------- */
  1855. /* Notification
  1856. -------------------------- */
  1857. /* Input
  1858. -------------------------- */
  1859. /* Cascader
  1860. -------------------------- */
  1861. /* Group
  1862. -------------------------- */
  1863. /* Tab
  1864. -------------------------- */
  1865. /* Button
  1866. -------------------------- */
  1867. /* cascader
  1868. -------------------------- */
  1869. /* Switch
  1870. -------------------------- */
  1871. /* Dialog
  1872. -------------------------- */
  1873. /* Table
  1874. -------------------------- */
  1875. /* Pagination
  1876. -------------------------- */
  1877. /* Popup
  1878. -------------------------- */
  1879. /* Popover
  1880. -------------------------- */
  1881. /* Tooltip
  1882. -------------------------- */
  1883. /* Tag
  1884. -------------------------- */
  1885. /* Tree
  1886. -------------------------- */
  1887. /* Dropdown
  1888. -------------------------- */
  1889. /* Badge
  1890. -------------------------- */
  1891. /* Card
  1892. --------------------------*/
  1893. /* Slider
  1894. --------------------------*/
  1895. /* Steps
  1896. --------------------------*/
  1897. /* Menu
  1898. --------------------------*/
  1899. /* Rate
  1900. --------------------------*/
  1901. /* DatePicker
  1902. --------------------------*/
  1903. /* Loading
  1904. --------------------------*/
  1905. /* Scrollbar
  1906. --------------------------*/
  1907. /* Carousel
  1908. --------------------------*/
  1909. /* Collapse
  1910. --------------------------*/
  1911. /* Transfer
  1912. --------------------------*/
  1913. /* Header
  1914. --------------------------*/
  1915. /* Footer
  1916. --------------------------*/
  1917. /* Main
  1918. --------------------------*/
  1919. /* Timeline
  1920. --------------------------*/
  1921. /* Backtop
  1922. --------------------------*/
  1923. /* Link
  1924. --------------------------*/
  1925. /* Calendar
  1926. --------------------------*/
  1927. /* Form
  1928. -------------------------- */
  1929. /* Avatar
  1930. --------------------------*/
  1931. /* Break-point
  1932. --------------------------*/
  1933. /* BEM support Func
  1934. -------------------------- */
  1935. /* Element Chalk Variables */
  1936. /* Transition
  1937. -------------------------- */
  1938. /* Color
  1939. -------------------------- */
  1940. /* 53a8ff */
  1941. /* 66b1ff */
  1942. /* 79bbff */
  1943. /* 8cc5ff */
  1944. /* a0cfff */
  1945. /* b3d8ff */
  1946. /* c6e2ff */
  1947. /* d9ecff */
  1948. /* ecf5ff */
  1949. /* Link
  1950. -------------------------- */
  1951. /* Border
  1952. -------------------------- */
  1953. /* Fill
  1954. -------------------------- */
  1955. /* Typography
  1956. -------------------------- */
  1957. /* Size
  1958. -------------------------- */
  1959. /* z-index
  1960. -------------------------- */
  1961. /* Disable base
  1962. -------------------------- */
  1963. /* Icon
  1964. -------------------------- */
  1965. /* Checkbox
  1966. -------------------------- */
  1967. /* Radio
  1968. -------------------------- */
  1969. /* Select
  1970. -------------------------- */
  1971. /* Alert
  1972. -------------------------- */
  1973. /* MessageBox
  1974. -------------------------- */
  1975. /* Message
  1976. -------------------------- */
  1977. /* Notification
  1978. -------------------------- */
  1979. /* Input
  1980. -------------------------- */
  1981. /* Cascader
  1982. -------------------------- */
  1983. /* Group
  1984. -------------------------- */
  1985. /* Tab
  1986. -------------------------- */
  1987. /* Button
  1988. -------------------------- */
  1989. /* cascader
  1990. -------------------------- */
  1991. /* Switch
  1992. -------------------------- */
  1993. /* Dialog
  1994. -------------------------- */
  1995. /* Table
  1996. -------------------------- */
  1997. /* Pagination
  1998. -------------------------- */
  1999. /* Popup
  2000. -------------------------- */
  2001. /* Popover
  2002. -------------------------- */
  2003. /* Tooltip
  2004. -------------------------- */
  2005. /* Tag
  2006. -------------------------- */
  2007. /* Tree
  2008. -------------------------- */
  2009. /* Dropdown
  2010. -------------------------- */
  2011. /* Badge
  2012. -------------------------- */
  2013. /* Card
  2014. --------------------------*/
  2015. /* Slider
  2016. --------------------------*/
  2017. /* Steps
  2018. --------------------------*/
  2019. /* Menu
  2020. --------------------------*/
  2021. /* Rate
  2022. --------------------------*/
  2023. /* DatePicker
  2024. --------------------------*/
  2025. /* Loading
  2026. --------------------------*/
  2027. /* Scrollbar
  2028. --------------------------*/
  2029. /* Carousel
  2030. --------------------------*/
  2031. /* Collapse
  2032. --------------------------*/
  2033. /* Transfer
  2034. --------------------------*/
  2035. /* Header
  2036. --------------------------*/
  2037. /* Footer
  2038. --------------------------*/
  2039. /* Main
  2040. --------------------------*/
  2041. /* Timeline
  2042. --------------------------*/
  2043. /* Backtop
  2044. --------------------------*/
  2045. /* Link
  2046. --------------------------*/
  2047. /* Calendar
  2048. --------------------------*/
  2049. /* Form
  2050. -------------------------- */
  2051. /* Avatar
  2052. --------------------------*/
  2053. /* Break-point
  2054. --------------------------*/
  2055. /* Break-points
  2056. -------------------------- */
  2057. /* Scrollbar
  2058. -------------------------- */
  2059. /* Placeholder
  2060. -------------------------- */
  2061. /* BEM
  2062. -------------------------- */
  2063. /* Element Chalk Variables */
  2064. /* Transition
  2065. -------------------------- */
  2066. /* Color
  2067. -------------------------- */
  2068. /* 53a8ff */
  2069. /* 66b1ff */
  2070. /* 79bbff */
  2071. /* 8cc5ff */
  2072. /* a0cfff */
  2073. /* b3d8ff */
  2074. /* c6e2ff */
  2075. /* d9ecff */
  2076. /* ecf5ff */
  2077. /* Link
  2078. -------------------------- */
  2079. /* Border
  2080. -------------------------- */
  2081. /* Fill
  2082. -------------------------- */
  2083. /* Typography
  2084. -------------------------- */
  2085. /* Size
  2086. -------------------------- */
  2087. /* z-index
  2088. -------------------------- */
  2089. /* Disable base
  2090. -------------------------- */
  2091. /* Icon
  2092. -------------------------- */
  2093. /* Checkbox
  2094. -------------------------- */
  2095. /* Radio
  2096. -------------------------- */
  2097. /* Select
  2098. -------------------------- */
  2099. /* Alert
  2100. -------------------------- */
  2101. /* MessageBox
  2102. -------------------------- */
  2103. /* Message
  2104. -------------------------- */
  2105. /* Notification
  2106. -------------------------- */
  2107. /* Input
  2108. -------------------------- */
  2109. /* Cascader
  2110. -------------------------- */
  2111. /* Group
  2112. -------------------------- */
  2113. /* Tab
  2114. -------------------------- */
  2115. /* Button
  2116. -------------------------- */
  2117. /* cascader
  2118. -------------------------- */
  2119. /* Switch
  2120. -------------------------- */
  2121. /* Dialog
  2122. -------------------------- */
  2123. /* Table
  2124. -------------------------- */
  2125. /* Pagination
  2126. -------------------------- */
  2127. /* Popup
  2128. -------------------------- */
  2129. /* Popover
  2130. -------------------------- */
  2131. /* Tooltip
  2132. -------------------------- */
  2133. /* Tag
  2134. -------------------------- */
  2135. /* Tree
  2136. -------------------------- */
  2137. /* Dropdown
  2138. -------------------------- */
  2139. /* Badge
  2140. -------------------------- */
  2141. /* Card
  2142. --------------------------*/
  2143. /* Slider
  2144. --------------------------*/
  2145. /* Steps
  2146. --------------------------*/
  2147. /* Menu
  2148. --------------------------*/
  2149. /* Rate
  2150. --------------------------*/
  2151. /* DatePicker
  2152. --------------------------*/
  2153. /* Loading
  2154. --------------------------*/
  2155. /* Scrollbar
  2156. --------------------------*/
  2157. /* Carousel
  2158. --------------------------*/
  2159. /* Collapse
  2160. --------------------------*/
  2161. /* Transfer
  2162. --------------------------*/
  2163. /* Header
  2164. --------------------------*/
  2165. /* Footer
  2166. --------------------------*/
  2167. /* Main
  2168. --------------------------*/
  2169. /* Timeline
  2170. --------------------------*/
  2171. /* Backtop
  2172. --------------------------*/
  2173. /* Link
  2174. --------------------------*/
  2175. /* Calendar
  2176. --------------------------*/
  2177. /* Form
  2178. -------------------------- */
  2179. /* Avatar
  2180. --------------------------*/
  2181. /* Break-point
  2182. --------------------------*/
  2183. .el-checkbox {
  2184. color: #606266;
  2185. font-weight: 500;
  2186. font-size: 14px;
  2187. position: relative;
  2188. cursor: pointer;
  2189. display: inline-block;
  2190. white-space: nowrap;
  2191. -webkit-user-select: none;
  2192. -moz-user-select: none;
  2193. -ms-user-select: none;
  2194. user-select: none;
  2195. margin-right: 30px; }
  2196. .el-checkbox.is-bordered {
  2197. padding: 9px 20px 9px 10px;
  2198. border-radius: 4px;
  2199. border: 1px solid #DCDFE6;
  2200. -webkit-box-sizing: border-box;
  2201. box-sizing: border-box;
  2202. line-height: normal;
  2203. height: 40px; }
  2204. .el-checkbox.is-bordered.is-checked {
  2205. border-color: #2D74E7; }
  2206. .el-checkbox.is-bordered.is-disabled {
  2207. border-color: #EBEEF5;
  2208. cursor: not-allowed; }
  2209. .el-checkbox.is-bordered + .el-checkbox.is-bordered {
  2210. margin-left: 10px; }
  2211. .el-checkbox.is-bordered.el-checkbox--medium {
  2212. padding: 7px 20px 7px 10px;
  2213. border-radius: 4px;
  2214. height: 36px; }
  2215. .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label {
  2216. line-height: 17px;
  2217. font-size: 14px; }
  2218. .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner {
  2219. height: 14px;
  2220. width: 14px; }
  2221. .el-checkbox.is-bordered.el-checkbox--small {
  2222. padding: 5px 15px 5px 10px;
  2223. border-radius: 3px;
  2224. height: 32px; }
  2225. .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label {
  2226. line-height: 15px;
  2227. font-size: 12px; }
  2228. .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner {
  2229. height: 12px;
  2230. width: 12px; }
  2231. .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after {
  2232. height: 6px;
  2233. width: 2px; }
  2234. .el-checkbox.is-bordered.el-checkbox--mini {
  2235. padding: 3px 15px 3px 10px;
  2236. border-radius: 3px;
  2237. height: 28px; }
  2238. .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label {
  2239. line-height: 12px;
  2240. font-size: 12px; }
  2241. .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner {
  2242. height: 12px;
  2243. width: 12px; }
  2244. .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after {
  2245. height: 6px;
  2246. width: 2px; }
  2247. .el-checkbox__input {
  2248. white-space: nowrap;
  2249. cursor: pointer;
  2250. outline: none;
  2251. display: inline-block;
  2252. line-height: 1;
  2253. position: relative;
  2254. vertical-align: middle; }
  2255. .el-checkbox__input.is-disabled .el-checkbox__inner {
  2256. background-color: #edf2fc;
  2257. border-color: #DCDFE6;
  2258. cursor: not-allowed; }
  2259. .el-checkbox__input.is-disabled .el-checkbox__inner::after {
  2260. cursor: not-allowed;
  2261. border-color: #C0C4CC; }
  2262. .el-checkbox__input.is-disabled .el-checkbox__inner + .el-checkbox__label {
  2263. cursor: not-allowed; }
  2264. .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
  2265. background-color: #F2F6FC;
  2266. border-color: #DCDFE6; }
  2267. .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after {
  2268. border-color: #C0C4CC; }
  2269. .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner {
  2270. background-color: #F2F6FC;
  2271. border-color: #DCDFE6; }
  2272. .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before {
  2273. background-color: #C0C4CC;
  2274. border-color: #C0C4CC; }
  2275. .el-checkbox__input.is-disabled + span.el-checkbox__label {
  2276. color: #C0C4CC;
  2277. cursor: not-allowed; }
  2278. .el-checkbox__input.is-checked .el-checkbox__inner {
  2279. background-color: #2D74E7;
  2280. border-color: #2D74E7; }
  2281. .el-checkbox__input.is-checked .el-checkbox__inner::after {
  2282. -webkit-transform: rotate(45deg) scaleY(1);
  2283. transform: rotate(45deg) scaleY(1); }
  2284. .el-checkbox__input.is-checked + .el-checkbox__label {
  2285. color: #2D74E7; }
  2286. .el-checkbox__input.is-focus {
  2287. /*focus时 视觉上区分*/ }
  2288. .el-checkbox__input.is-focus .el-checkbox__inner {
  2289. border-color: #2D74E7; }
  2290. .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  2291. background-color: #2D74E7;
  2292. border-color: #2D74E7; }
  2293. .el-checkbox__input.is-indeterminate .el-checkbox__inner::before {
  2294. content: '';
  2295. position: absolute;
  2296. display: block;
  2297. background-color: #FFFFFF;
  2298. height: 2px;
  2299. -webkit-transform: scale(0.5);
  2300. transform: scale(0.5);
  2301. left: 0;
  2302. right: 0;
  2303. top: 5px; }
  2304. .el-checkbox__input.is-indeterminate .el-checkbox__inner::after {
  2305. display: none; }
  2306. .el-checkbox__inner {
  2307. display: inline-block;
  2308. position: relative;
  2309. border: 1px solid #DCDFE6;
  2310. border-radius: 2px;
  2311. -webkit-box-sizing: border-box;
  2312. box-sizing: border-box;
  2313. width: 14px;
  2314. height: 14px;
  2315. background-color: #FFFFFF;
  2316. z-index: 1;
  2317. -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  2318. transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); }
  2319. .el-checkbox__inner:hover {
  2320. border-color: #2D74E7; }
  2321. .el-checkbox__inner::after {
  2322. -webkit-box-sizing: content-box;
  2323. box-sizing: content-box;
  2324. content: "";
  2325. border: 1px solid #FFFFFF;
  2326. border-left: 0;
  2327. border-top: 0;
  2328. height: 7px;
  2329. left: 4px;
  2330. position: absolute;
  2331. top: 1px;
  2332. -webkit-transform: rotate(45deg) scaleY(0);
  2333. transform: rotate(45deg) scaleY(0);
  2334. width: 3px;
  2335. -webkit-transition: -webkit-transform .15s ease-in .05s;
  2336. transition: -webkit-transform .15s ease-in .05s;
  2337. transition: transform .15s ease-in .05s;
  2338. transition: transform .15s ease-in .05s, -webkit-transform .15s ease-in .05s;
  2339. -webkit-transform-origin: center;
  2340. transform-origin: center; }
  2341. .el-checkbox__original {
  2342. opacity: 0;
  2343. outline: none;
  2344. position: absolute;
  2345. margin: 0;
  2346. width: 0;
  2347. height: 0;
  2348. z-index: -1; }
  2349. .el-checkbox__label {
  2350. display: inline-block;
  2351. padding-left: 10px;
  2352. line-height: 19px;
  2353. font-size: 14px; }
  2354. .el-checkbox:last-of-type {
  2355. margin-right: 0; }
  2356. .el-checkbox-button {
  2357. position: relative;
  2358. display: inline-block; }
  2359. .el-checkbox-button__inner {
  2360. display: inline-block;
  2361. line-height: 1;
  2362. font-weight: 500;
  2363. white-space: nowrap;
  2364. vertical-align: middle;
  2365. cursor: pointer;
  2366. background: #FFFFFF;
  2367. border: 1px solid #DCDFE6;
  2368. border-left: 0;
  2369. color: #606266;
  2370. -webkit-appearance: none;
  2371. text-align: center;
  2372. -webkit-box-sizing: border-box;
  2373. box-sizing: border-box;
  2374. outline: none;
  2375. margin: 0;
  2376. position: relative;
  2377. -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2378. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2379. -moz-user-select: none;
  2380. -webkit-user-select: none;
  2381. -ms-user-select: none;
  2382. padding: 12px 20px;
  2383. font-size: 14px;
  2384. border-radius: 0; }
  2385. .el-checkbox-button__inner.is-round {
  2386. padding: 12px 20px; }
  2387. .el-checkbox-button__inner:hover {
  2388. color: #2D74E7; }
  2389. .el-checkbox-button__inner [class*="el-icon-"] {
  2390. line-height: 0.9; }
  2391. .el-checkbox-button__inner [class*="el-icon-"] + span {
  2392. margin-left: 5px; }
  2393. .el-checkbox-button__original {
  2394. opacity: 0;
  2395. outline: none;
  2396. position: absolute;
  2397. margin: 0;
  2398. z-index: -1; }
  2399. .el-checkbox-button.is-checked .el-checkbox-button__inner {
  2400. color: #FFFFFF;
  2401. background-color: #2D74E7;
  2402. border-color: #2D74E7;
  2403. -webkit-box-shadow: -1px 0 0 0 #81acf1;
  2404. box-shadow: -1px 0 0 0 #81acf1; }
  2405. .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner {
  2406. border-left-color: #2D74E7; }
  2407. .el-checkbox-button.is-disabled .el-checkbox-button__inner {
  2408. color: #C0C4CC;
  2409. cursor: not-allowed;
  2410. background-image: none;
  2411. background-color: #FFFFFF;
  2412. border-color: #EBEEF5;
  2413. -webkit-box-shadow: none;
  2414. box-shadow: none; }
  2415. .el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner {
  2416. border-left-color: #EBEEF5; }
  2417. .el-checkbox-button:first-child .el-checkbox-button__inner {
  2418. border-left: 1px solid #DCDFE6;
  2419. border-radius: 4px 0 0 4px;
  2420. -webkit-box-shadow: none !important;
  2421. box-shadow: none !important; }
  2422. .el-checkbox-button.is-focus .el-checkbox-button__inner {
  2423. border-color: #2D74E7; }
  2424. .el-checkbox-button:last-child .el-checkbox-button__inner {
  2425. border-radius: 0 4px 4px 0; }
  2426. .el-checkbox-button--medium .el-checkbox-button__inner {
  2427. padding: 10px 20px;
  2428. font-size: 14px;
  2429. border-radius: 0; }
  2430. .el-checkbox-button--medium .el-checkbox-button__inner.is-round {
  2431. padding: 10px 20px; }
  2432. .el-checkbox-button--small .el-checkbox-button__inner {
  2433. padding: 9px 15px;
  2434. font-size: 12px;
  2435. border-radius: 0; }
  2436. .el-checkbox-button--small .el-checkbox-button__inner.is-round {
  2437. padding: 9px 15px; }
  2438. .el-checkbox-button--mini .el-checkbox-button__inner {
  2439. padding: 7px 15px;
  2440. font-size: 12px;
  2441. border-radius: 0; }
  2442. .el-checkbox-button--mini .el-checkbox-button__inner.is-round {
  2443. padding: 7px 15px; }
  2444. .el-checkbox-group {
  2445. font-size: 0; }
  2446. /* BEM support Func
  2447. -------------------------- */
  2448. /* Element Chalk Variables */
  2449. /* Transition
  2450. -------------------------- */
  2451. /* Color
  2452. -------------------------- */
  2453. /* 53a8ff */
  2454. /* 66b1ff */
  2455. /* 79bbff */
  2456. /* 8cc5ff */
  2457. /* a0cfff */
  2458. /* b3d8ff */
  2459. /* c6e2ff */
  2460. /* d9ecff */
  2461. /* ecf5ff */
  2462. /* Link
  2463. -------------------------- */
  2464. /* Border
  2465. -------------------------- */
  2466. /* Fill
  2467. -------------------------- */
  2468. /* Typography
  2469. -------------------------- */
  2470. /* Size
  2471. -------------------------- */
  2472. /* z-index
  2473. -------------------------- */
  2474. /* Disable base
  2475. -------------------------- */
  2476. /* Icon
  2477. -------------------------- */
  2478. /* Checkbox
  2479. -------------------------- */
  2480. /* Radio
  2481. -------------------------- */
  2482. /* Select
  2483. -------------------------- */
  2484. /* Alert
  2485. -------------------------- */
  2486. /* MessageBox
  2487. -------------------------- */
  2488. /* Message
  2489. -------------------------- */
  2490. /* Notification
  2491. -------------------------- */
  2492. /* Input
  2493. -------------------------- */
  2494. /* Cascader
  2495. -------------------------- */
  2496. /* Group
  2497. -------------------------- */
  2498. /* Tab
  2499. -------------------------- */
  2500. /* Button
  2501. -------------------------- */
  2502. /* cascader
  2503. -------------------------- */
  2504. /* Switch
  2505. -------------------------- */
  2506. /* Dialog
  2507. -------------------------- */
  2508. /* Table
  2509. -------------------------- */
  2510. /* Pagination
  2511. -------------------------- */
  2512. /* Popup
  2513. -------------------------- */
  2514. /* Popover
  2515. -------------------------- */
  2516. /* Tooltip
  2517. -------------------------- */
  2518. /* Tag
  2519. -------------------------- */
  2520. /* Tree
  2521. -------------------------- */
  2522. /* Dropdown
  2523. -------------------------- */
  2524. /* Badge
  2525. -------------------------- */
  2526. /* Card
  2527. --------------------------*/
  2528. /* Slider
  2529. --------------------------*/
  2530. /* Steps
  2531. --------------------------*/
  2532. /* Menu
  2533. --------------------------*/
  2534. /* Rate
  2535. --------------------------*/
  2536. /* DatePicker
  2537. --------------------------*/
  2538. /* Loading
  2539. --------------------------*/
  2540. /* Scrollbar
  2541. --------------------------*/
  2542. /* Carousel
  2543. --------------------------*/
  2544. /* Collapse
  2545. --------------------------*/
  2546. /* Transfer
  2547. --------------------------*/
  2548. /* Header
  2549. --------------------------*/
  2550. /* Footer
  2551. --------------------------*/
  2552. /* Main
  2553. --------------------------*/
  2554. /* Timeline
  2555. --------------------------*/
  2556. /* Backtop
  2557. --------------------------*/
  2558. /* Link
  2559. --------------------------*/
  2560. /* Calendar
  2561. --------------------------*/
  2562. /* Form
  2563. -------------------------- */
  2564. /* Avatar
  2565. --------------------------*/
  2566. /* Break-point
  2567. --------------------------*/
  2568. /* Break-points
  2569. -------------------------- */
  2570. /* Scrollbar
  2571. -------------------------- */
  2572. /* Placeholder
  2573. -------------------------- */
  2574. /* BEM
  2575. -------------------------- */
  2576. /* Element Chalk Variables */
  2577. /* Transition
  2578. -------------------------- */
  2579. /* Color
  2580. -------------------------- */
  2581. /* 53a8ff */
  2582. /* 66b1ff */
  2583. /* 79bbff */
  2584. /* 8cc5ff */
  2585. /* a0cfff */
  2586. /* b3d8ff */
  2587. /* c6e2ff */
  2588. /* d9ecff */
  2589. /* ecf5ff */
  2590. /* Link
  2591. -------------------------- */
  2592. /* Border
  2593. -------------------------- */
  2594. /* Fill
  2595. -------------------------- */
  2596. /* Typography
  2597. -------------------------- */
  2598. /* Size
  2599. -------------------------- */
  2600. /* z-index
  2601. -------------------------- */
  2602. /* Disable base
  2603. -------------------------- */
  2604. /* Icon
  2605. -------------------------- */
  2606. /* Checkbox
  2607. -------------------------- */
  2608. /* Radio
  2609. -------------------------- */
  2610. /* Select
  2611. -------------------------- */
  2612. /* Alert
  2613. -------------------------- */
  2614. /* MessageBox
  2615. -------------------------- */
  2616. /* Message
  2617. -------------------------- */
  2618. /* Notification
  2619. -------------------------- */
  2620. /* Input
  2621. -------------------------- */
  2622. /* Cascader
  2623. -------------------------- */
  2624. /* Group
  2625. -------------------------- */
  2626. /* Tab
  2627. -------------------------- */
  2628. /* Button
  2629. -------------------------- */
  2630. /* cascader
  2631. -------------------------- */
  2632. /* Switch
  2633. -------------------------- */
  2634. /* Dialog
  2635. -------------------------- */
  2636. /* Table
  2637. -------------------------- */
  2638. /* Pagination
  2639. -------------------------- */
  2640. /* Popup
  2641. -------------------------- */
  2642. /* Popover
  2643. -------------------------- */
  2644. /* Tooltip
  2645. -------------------------- */
  2646. /* Tag
  2647. -------------------------- */
  2648. /* Tree
  2649. -------------------------- */
  2650. /* Dropdown
  2651. -------------------------- */
  2652. /* Badge
  2653. -------------------------- */
  2654. /* Card
  2655. --------------------------*/
  2656. /* Slider
  2657. --------------------------*/
  2658. /* Steps
  2659. --------------------------*/
  2660. /* Menu
  2661. --------------------------*/
  2662. /* Rate
  2663. --------------------------*/
  2664. /* DatePicker
  2665. --------------------------*/
  2666. /* Loading
  2667. --------------------------*/
  2668. /* Scrollbar
  2669. --------------------------*/
  2670. /* Carousel
  2671. --------------------------*/
  2672. /* Collapse
  2673. --------------------------*/
  2674. /* Transfer
  2675. --------------------------*/
  2676. /* Header
  2677. --------------------------*/
  2678. /* Footer
  2679. --------------------------*/
  2680. /* Main
  2681. --------------------------*/
  2682. /* Timeline
  2683. --------------------------*/
  2684. /* Backtop
  2685. --------------------------*/
  2686. /* Link
  2687. --------------------------*/
  2688. /* Calendar
  2689. --------------------------*/
  2690. /* Form
  2691. -------------------------- */
  2692. /* Avatar
  2693. --------------------------*/
  2694. /* Break-point
  2695. --------------------------*/
  2696. /* Element Chalk Variables */
  2697. /* Transition
  2698. -------------------------- */
  2699. /* Color
  2700. -------------------------- */
  2701. /* 53a8ff */
  2702. /* 66b1ff */
  2703. /* 79bbff */
  2704. /* 8cc5ff */
  2705. /* a0cfff */
  2706. /* b3d8ff */
  2707. /* c6e2ff */
  2708. /* d9ecff */
  2709. /* ecf5ff */
  2710. /* Link
  2711. -------------------------- */
  2712. /* Border
  2713. -------------------------- */
  2714. /* Fill
  2715. -------------------------- */
  2716. /* Typography
  2717. -------------------------- */
  2718. /* Size
  2719. -------------------------- */
  2720. /* z-index
  2721. -------------------------- */
  2722. /* Disable base
  2723. -------------------------- */
  2724. /* Icon
  2725. -------------------------- */
  2726. /* Checkbox
  2727. -------------------------- */
  2728. /* Radio
  2729. -------------------------- */
  2730. /* Select
  2731. -------------------------- */
  2732. /* Alert
  2733. -------------------------- */
  2734. /* MessageBox
  2735. -------------------------- */
  2736. /* Message
  2737. -------------------------- */
  2738. /* Notification
  2739. -------------------------- */
  2740. /* Input
  2741. -------------------------- */
  2742. /* Cascader
  2743. -------------------------- */
  2744. /* Group
  2745. -------------------------- */
  2746. /* Tab
  2747. -------------------------- */
  2748. /* Button
  2749. -------------------------- */
  2750. /* cascader
  2751. -------------------------- */
  2752. /* Switch
  2753. -------------------------- */
  2754. /* Dialog
  2755. -------------------------- */
  2756. /* Table
  2757. -------------------------- */
  2758. /* Pagination
  2759. -------------------------- */
  2760. /* Popup
  2761. -------------------------- */
  2762. /* Popover
  2763. -------------------------- */
  2764. /* Tooltip
  2765. -------------------------- */
  2766. /* Tag
  2767. -------------------------- */
  2768. /* Tree
  2769. -------------------------- */
  2770. /* Dropdown
  2771. -------------------------- */
  2772. /* Badge
  2773. -------------------------- */
  2774. /* Card
  2775. --------------------------*/
  2776. /* Slider
  2777. --------------------------*/
  2778. /* Steps
  2779. --------------------------*/
  2780. /* Menu
  2781. --------------------------*/
  2782. /* Rate
  2783. --------------------------*/
  2784. /* DatePicker
  2785. --------------------------*/
  2786. /* Loading
  2787. --------------------------*/
  2788. /* Scrollbar
  2789. --------------------------*/
  2790. /* Carousel
  2791. --------------------------*/
  2792. /* Collapse
  2793. --------------------------*/
  2794. /* Transfer
  2795. --------------------------*/
  2796. /* Header
  2797. --------------------------*/
  2798. /* Footer
  2799. --------------------------*/
  2800. /* Main
  2801. --------------------------*/
  2802. /* Timeline
  2803. --------------------------*/
  2804. /* Backtop
  2805. --------------------------*/
  2806. /* Link
  2807. --------------------------*/
  2808. /* Calendar
  2809. --------------------------*/
  2810. /* Form
  2811. -------------------------- */
  2812. /* Avatar
  2813. --------------------------*/
  2814. /* Break-point
  2815. --------------------------*/
  2816. .el-radio {
  2817. color: #606266;
  2818. font-weight: 500;
  2819. line-height: 1;
  2820. position: relative;
  2821. cursor: pointer;
  2822. display: inline-block;
  2823. white-space: nowrap;
  2824. outline: none;
  2825. font-size: 14px;
  2826. margin-right: 30px;
  2827. -moz-user-select: none;
  2828. -webkit-user-select: none;
  2829. -ms-user-select: none; }
  2830. .el-radio.is-bordered {
  2831. padding: 12px 20px 0 10px;
  2832. border-radius: 4px;
  2833. border: 1px solid #DCDFE6;
  2834. -webkit-box-sizing: border-box;
  2835. box-sizing: border-box;
  2836. height: 40px; }
  2837. .el-radio.is-bordered.is-checked {
  2838. border-color: #2D74E7; }
  2839. .el-radio.is-bordered.is-disabled {
  2840. cursor: not-allowed;
  2841. border-color: #EBEEF5; }
  2842. .el-radio.is-bordered + .el-radio.is-bordered {
  2843. margin-left: 10px; }
  2844. .el-radio--medium.is-bordered {
  2845. padding: 10px 20px 0 10px;
  2846. border-radius: 4px;
  2847. height: 36px; }
  2848. .el-radio--medium.is-bordered .el-radio__label {
  2849. font-size: 14px; }
  2850. .el-radio--medium.is-bordered .el-radio__inner {
  2851. height: 14px;
  2852. width: 14px; }
  2853. .el-radio--small.is-bordered {
  2854. padding: 8px 15px 0 10px;
  2855. border-radius: 3px;
  2856. height: 32px; }
  2857. .el-radio--small.is-bordered .el-radio__label {
  2858. font-size: 12px; }
  2859. .el-radio--small.is-bordered .el-radio__inner {
  2860. height: 12px;
  2861. width: 12px; }
  2862. .el-radio--mini.is-bordered {
  2863. padding: 6px 15px 0 10px;
  2864. border-radius: 3px;
  2865. height: 28px; }
  2866. .el-radio--mini.is-bordered .el-radio__label {
  2867. font-size: 12px; }
  2868. .el-radio--mini.is-bordered .el-radio__inner {
  2869. height: 12px;
  2870. width: 12px; }
  2871. .el-radio:last-child {
  2872. margin-right: 0; }
  2873. .el-radio__input {
  2874. white-space: nowrap;
  2875. cursor: pointer;
  2876. outline: none;
  2877. display: inline-block;
  2878. line-height: 1;
  2879. position: relative;
  2880. vertical-align: middle; }
  2881. .el-radio__input.is-disabled .el-radio__inner {
  2882. background-color: #F5F7FA;
  2883. border-color: #E4E7ED;
  2884. cursor: not-allowed; }
  2885. .el-radio__input.is-disabled .el-radio__inner::after {
  2886. cursor: not-allowed;
  2887. background-color: #F5F7FA; }
  2888. .el-radio__input.is-disabled .el-radio__inner + .el-radio__label {
  2889. cursor: not-allowed; }
  2890. .el-radio__input.is-disabled.is-checked .el-radio__inner {
  2891. background-color: #F5F7FA;
  2892. border-color: #E4E7ED; }
  2893. .el-radio__input.is-disabled.is-checked .el-radio__inner::after {
  2894. background-color: #C0C4CC; }
  2895. .el-radio__input.is-disabled + span.el-radio__label {
  2896. color: #C0C4CC;
  2897. cursor: not-allowed; }
  2898. .el-radio__input.is-checked .el-radio__inner {
  2899. border-color: #2D74E7;
  2900. background: #2D74E7; }
  2901. .el-radio__input.is-checked .el-radio__inner::after {
  2902. -webkit-transform: translate(-50%, -50%) scale(1);
  2903. transform: translate(-50%, -50%) scale(1); }
  2904. .el-radio__input.is-checked + .el-radio__label {
  2905. color: #2D74E7; }
  2906. .el-radio__input.is-focus .el-radio__inner {
  2907. border-color: #2D74E7; }
  2908. .el-radio__inner {
  2909. border: 1px solid #DCDFE6;
  2910. border-radius: 100%;
  2911. width: 14px;
  2912. height: 14px;
  2913. background-color: #FFFFFF;
  2914. position: relative;
  2915. cursor: pointer;
  2916. display: inline-block;
  2917. -webkit-box-sizing: border-box;
  2918. box-sizing: border-box; }
  2919. .el-radio__inner:hover {
  2920. border-color: #2D74E7; }
  2921. .el-radio__inner::after {
  2922. width: 4px;
  2923. height: 4px;
  2924. border-radius: 100%;
  2925. background-color: #FFFFFF;
  2926. content: "";
  2927. position: absolute;
  2928. left: 50%;
  2929. top: 50%;
  2930. -webkit-transform: translate(-50%, -50%) scale(0);
  2931. transform: translate(-50%, -50%) scale(0);
  2932. -webkit-transition: -webkit-transform .15s ease-in;
  2933. transition: -webkit-transform .15s ease-in;
  2934. transition: transform .15s ease-in;
  2935. transition: transform .15s ease-in, -webkit-transform .15s ease-in; }
  2936. .el-radio__original {
  2937. opacity: 0;
  2938. outline: none;
  2939. position: absolute;
  2940. z-index: -1;
  2941. top: 0;
  2942. left: 0;
  2943. right: 0;
  2944. bottom: 0;
  2945. margin: 0; }
  2946. .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) {
  2947. /*获得焦点时 样式提醒*/ }
  2948. .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
  2949. -webkit-box-shadow: 0 0 2px 2px #2D74E7;
  2950. box-shadow: 0 0 2px 2px #2D74E7; }
  2951. .el-radio__label {
  2952. font-size: 14px;
  2953. padding-left: 10px; }
  2954. /* BEM support Func
  2955. -------------------------- */
  2956. /* Element Chalk Variables */
  2957. /* Transition
  2958. -------------------------- */
  2959. /* Color
  2960. -------------------------- */
  2961. /* 53a8ff */
  2962. /* 66b1ff */
  2963. /* 79bbff */
  2964. /* 8cc5ff */
  2965. /* a0cfff */
  2966. /* b3d8ff */
  2967. /* c6e2ff */
  2968. /* d9ecff */
  2969. /* ecf5ff */
  2970. /* Link
  2971. -------------------------- */
  2972. /* Border
  2973. -------------------------- */
  2974. /* Fill
  2975. -------------------------- */
  2976. /* Typography
  2977. -------------------------- */
  2978. /* Size
  2979. -------------------------- */
  2980. /* z-index
  2981. -------------------------- */
  2982. /* Disable base
  2983. -------------------------- */
  2984. /* Icon
  2985. -------------------------- */
  2986. /* Checkbox
  2987. -------------------------- */
  2988. /* Radio
  2989. -------------------------- */
  2990. /* Select
  2991. -------------------------- */
  2992. /* Alert
  2993. -------------------------- */
  2994. /* MessageBox
  2995. -------------------------- */
  2996. /* Message
  2997. -------------------------- */
  2998. /* Notification
  2999. -------------------------- */
  3000. /* Input
  3001. -------------------------- */
  3002. /* Cascader
  3003. -------------------------- */
  3004. /* Group
  3005. -------------------------- */
  3006. /* Tab
  3007. -------------------------- */
  3008. /* Button
  3009. -------------------------- */
  3010. /* cascader
  3011. -------------------------- */
  3012. /* Switch
  3013. -------------------------- */
  3014. /* Dialog
  3015. -------------------------- */
  3016. /* Table
  3017. -------------------------- */
  3018. /* Pagination
  3019. -------------------------- */
  3020. /* Popup
  3021. -------------------------- */
  3022. /* Popover
  3023. -------------------------- */
  3024. /* Tooltip
  3025. -------------------------- */
  3026. /* Tag
  3027. -------------------------- */
  3028. /* Tree
  3029. -------------------------- */
  3030. /* Dropdown
  3031. -------------------------- */
  3032. /* Badge
  3033. -------------------------- */
  3034. /* Card
  3035. --------------------------*/
  3036. /* Slider
  3037. --------------------------*/
  3038. /* Steps
  3039. --------------------------*/
  3040. /* Menu
  3041. --------------------------*/
  3042. /* Rate
  3043. --------------------------*/
  3044. /* DatePicker
  3045. --------------------------*/
  3046. /* Loading
  3047. --------------------------*/
  3048. /* Scrollbar
  3049. --------------------------*/
  3050. /* Carousel
  3051. --------------------------*/
  3052. /* Collapse
  3053. --------------------------*/
  3054. /* Transfer
  3055. --------------------------*/
  3056. /* Header
  3057. --------------------------*/
  3058. /* Footer
  3059. --------------------------*/
  3060. /* Main
  3061. --------------------------*/
  3062. /* Timeline
  3063. --------------------------*/
  3064. /* Backtop
  3065. --------------------------*/
  3066. /* Link
  3067. --------------------------*/
  3068. /* Calendar
  3069. --------------------------*/
  3070. /* Form
  3071. -------------------------- */
  3072. /* Avatar
  3073. --------------------------*/
  3074. /* Break-point
  3075. --------------------------*/
  3076. /* Break-points
  3077. -------------------------- */
  3078. /* Scrollbar
  3079. -------------------------- */
  3080. /* Placeholder
  3081. -------------------------- */
  3082. /* BEM
  3083. -------------------------- */
  3084. /* Element Chalk Variables */
  3085. /* Transition
  3086. -------------------------- */
  3087. /* Color
  3088. -------------------------- */
  3089. /* 53a8ff */
  3090. /* 66b1ff */
  3091. /* 79bbff */
  3092. /* 8cc5ff */
  3093. /* a0cfff */
  3094. /* b3d8ff */
  3095. /* c6e2ff */
  3096. /* d9ecff */
  3097. /* ecf5ff */
  3098. /* Link
  3099. -------------------------- */
  3100. /* Border
  3101. -------------------------- */
  3102. /* Fill
  3103. -------------------------- */
  3104. /* Typography
  3105. -------------------------- */
  3106. /* Size
  3107. -------------------------- */
  3108. /* z-index
  3109. -------------------------- */
  3110. /* Disable base
  3111. -------------------------- */
  3112. /* Icon
  3113. -------------------------- */
  3114. /* Checkbox
  3115. -------------------------- */
  3116. /* Radio
  3117. -------------------------- */
  3118. /* Select
  3119. -------------------------- */
  3120. /* Alert
  3121. -------------------------- */
  3122. /* MessageBox
  3123. -------------------------- */
  3124. /* Message
  3125. -------------------------- */
  3126. /* Notification
  3127. -------------------------- */
  3128. /* Input
  3129. -------------------------- */
  3130. /* Cascader
  3131. -------------------------- */
  3132. /* Group
  3133. -------------------------- */
  3134. /* Tab
  3135. -------------------------- */
  3136. /* Button
  3137. -------------------------- */
  3138. /* cascader
  3139. -------------------------- */
  3140. /* Switch
  3141. -------------------------- */
  3142. /* Dialog
  3143. -------------------------- */
  3144. /* Table
  3145. -------------------------- */
  3146. /* Pagination
  3147. -------------------------- */
  3148. /* Popup
  3149. -------------------------- */
  3150. /* Popover
  3151. -------------------------- */
  3152. /* Tooltip
  3153. -------------------------- */
  3154. /* Tag
  3155. -------------------------- */
  3156. /* Tree
  3157. -------------------------- */
  3158. /* Dropdown
  3159. -------------------------- */
  3160. /* Badge
  3161. -------------------------- */
  3162. /* Card
  3163. --------------------------*/
  3164. /* Slider
  3165. --------------------------*/
  3166. /* Steps
  3167. --------------------------*/
  3168. /* Menu
  3169. --------------------------*/
  3170. /* Rate
  3171. --------------------------*/
  3172. /* DatePicker
  3173. --------------------------*/
  3174. /* Loading
  3175. --------------------------*/
  3176. /* Scrollbar
  3177. --------------------------*/
  3178. /* Carousel
  3179. --------------------------*/
  3180. /* Collapse
  3181. --------------------------*/
  3182. /* Transfer
  3183. --------------------------*/
  3184. /* Header
  3185. --------------------------*/
  3186. /* Footer
  3187. --------------------------*/
  3188. /* Main
  3189. --------------------------*/
  3190. /* Timeline
  3191. --------------------------*/
  3192. /* Backtop
  3193. --------------------------*/
  3194. /* Link
  3195. --------------------------*/
  3196. /* Calendar
  3197. --------------------------*/
  3198. /* Form
  3199. -------------------------- */
  3200. /* Avatar
  3201. --------------------------*/
  3202. /* Break-point
  3203. --------------------------*/
  3204. .el-scrollbar {
  3205. overflow: hidden;
  3206. position: relative; }
  3207. .el-scrollbar:hover > .el-scrollbar__bar, .el-scrollbar:active > .el-scrollbar__bar, .el-scrollbar:focus > .el-scrollbar__bar {
  3208. opacity: 1;
  3209. -webkit-transition: opacity 340ms ease-out;
  3210. transition: opacity 340ms ease-out; }
  3211. .el-scrollbar__wrap {
  3212. overflow: scroll;
  3213. height: 100%; }
  3214. .el-scrollbar__wrap--hidden-default {
  3215. scrollbar-width: none; }
  3216. .el-scrollbar__wrap--hidden-default::-webkit-scrollbar {
  3217. width: 0;
  3218. height: 0; }
  3219. .el-scrollbar__thumb {
  3220. position: relative;
  3221. display: block;
  3222. width: 0;
  3223. height: 0;
  3224. cursor: pointer;
  3225. border-radius: inherit;
  3226. background-color: rgba(144, 147, 153, 0.3);
  3227. -webkit-transition: .3s background-color;
  3228. transition: .3s background-color; }
  3229. .el-scrollbar__thumb:hover {
  3230. background-color: rgba(144, 147, 153, 0.5); }
  3231. .el-scrollbar__bar {
  3232. position: absolute;
  3233. right: 2px;
  3234. bottom: 2px;
  3235. z-index: 1;
  3236. border-radius: 4px;
  3237. opacity: 0;
  3238. -webkit-transition: opacity 120ms ease-out;
  3239. transition: opacity 120ms ease-out; }
  3240. .el-scrollbar__bar.is-vertical {
  3241. width: 6px;
  3242. top: 2px; }
  3243. .el-scrollbar__bar.is-vertical > div {
  3244. width: 100%; }
  3245. .el-scrollbar__bar.is-horizontal {
  3246. height: 6px;
  3247. left: 2px; }
  3248. .el-scrollbar__bar.is-horizontal > div {
  3249. height: 100%; }
  3250. .el-cascader-panel {
  3251. display: -webkit-box;
  3252. display: -ms-flexbox;
  3253. display: flex;
  3254. border-radius: 4px;
  3255. font-size: 14px; }
  3256. .el-cascader-panel.is-bordered {
  3257. border: solid 1px #E4E7ED;
  3258. border-radius: 4px; }
  3259. .el-cascader-menu {
  3260. min-width: 180px;
  3261. -webkit-box-sizing: border-box;
  3262. box-sizing: border-box;
  3263. color: #606266;
  3264. border-right: solid 1px #E4E7ED; }
  3265. .el-cascader-menu:last-child {
  3266. border-right: none; }
  3267. .el-cascader-menu:last-child .el-cascader-node {
  3268. padding-right: 20px; }
  3269. .el-cascader-menu__wrap {
  3270. height: 204px; }
  3271. .el-cascader-menu__list {
  3272. position: relative;
  3273. min-height: 100%;
  3274. margin: 0;
  3275. padding: 6px 0;
  3276. list-style: none;
  3277. -webkit-box-sizing: border-box;
  3278. box-sizing: border-box; }
  3279. .el-cascader-menu__hover-zone {
  3280. position: absolute;
  3281. top: 0;
  3282. left: 0;
  3283. width: 100%;
  3284. height: 100%;
  3285. pointer-events: none; }
  3286. .el-cascader-menu__empty-text {
  3287. position: absolute;
  3288. top: 50%;
  3289. left: 50%;
  3290. -webkit-transform: translate(-50%, -50%);
  3291. transform: translate(-50%, -50%);
  3292. text-align: center;
  3293. color: #C0C4CC; }
  3294. .el-cascader-node {
  3295. position: relative;
  3296. display: -webkit-box;
  3297. display: -ms-flexbox;
  3298. display: flex;
  3299. -webkit-box-align: center;
  3300. -ms-flex-align: center;
  3301. align-items: center;
  3302. padding: 0 30px 0 20px;
  3303. height: 34px;
  3304. line-height: 34px;
  3305. outline: none; }
  3306. .el-cascader-node.is-selectable.in-active-path {
  3307. color: #606266; }
  3308. .el-cascader-node.in-active-path, .el-cascader-node.is-selectable.in-checked-path, .el-cascader-node.is-active {
  3309. color: #2D74E7;
  3310. font-weight: bold; }
  3311. .el-cascader-node:not(.is-disabled) {
  3312. cursor: pointer; }
  3313. .el-cascader-node:not(.is-disabled):hover, .el-cascader-node:not(.is-disabled):focus {
  3314. background: #F5F7FA; }
  3315. .el-cascader-node.is-disabled {
  3316. color: #C0C4CC;
  3317. cursor: not-allowed; }
  3318. .el-cascader-node__prefix {
  3319. position: absolute;
  3320. left: 10px; }
  3321. .el-cascader-node__postfix {
  3322. position: absolute;
  3323. right: 10px; }
  3324. .el-cascader-node__label {
  3325. -webkit-box-flex: 1;
  3326. -ms-flex: 1;
  3327. flex: 1;
  3328. padding: 0 10px;
  3329. white-space: nowrap;
  3330. overflow: hidden;
  3331. text-overflow: ellipsis; }
  3332. .el-cascader-node > .el-radio {
  3333. margin-right: 0; }
  3334. .el-cascader-node > .el-radio .el-radio__label {
  3335. padding-left: 0; }
  3336. .el-cascader {
  3337. display: inline-block;
  3338. position: relative;
  3339. font-size: 14px;
  3340. line-height: 40px; }
  3341. .el-cascader:not(.is-disabled):hover .el-input__inner {
  3342. cursor: pointer;
  3343. border-color: #C0C4CC; }
  3344. .el-cascader .el-input {
  3345. cursor: pointer; }
  3346. .el-cascader .el-input .el-input__inner {
  3347. text-overflow: ellipsis; }
  3348. .el-cascader .el-input .el-input__inner:focus {
  3349. border-color: #2D74E7; }
  3350. .el-cascader .el-input .el-icon-arrow-down {
  3351. -webkit-transition: -webkit-transform .3s;
  3352. transition: -webkit-transform .3s;
  3353. transition: transform .3s;
  3354. transition: transform .3s, -webkit-transform .3s;
  3355. font-size: 14px; }
  3356. .el-cascader .el-input .el-icon-arrow-down.is-reverse {
  3357. -webkit-transform: rotateZ(180deg);
  3358. transform: rotateZ(180deg); }
  3359. .el-cascader .el-input .el-icon-circle-close:hover {
  3360. color: #909399; }
  3361. .el-cascader .el-input.is-focus .el-input__inner {
  3362. border-color: #2D74E7; }
  3363. .el-cascader--medium {
  3364. font-size: 14px;
  3365. line-height: 36px; }
  3366. .el-cascader--small {
  3367. font-size: 13px;
  3368. line-height: 32px; }
  3369. .el-cascader--mini {
  3370. font-size: 12px;
  3371. line-height: 28px; }
  3372. .el-cascader.is-disabled .el-cascader__label {
  3373. z-index: 2;
  3374. color: #C0C4CC; }
  3375. .el-cascader__dropdown {
  3376. margin: 5px 0;
  3377. font-size: 14px;
  3378. background: #FFFFFF;
  3379. border: solid 1px #E4E7ED;
  3380. border-radius: 4px;
  3381. -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  3382. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); }
  3383. .el-cascader__tags {
  3384. position: absolute;
  3385. left: 0;
  3386. right: 30px;
  3387. top: 50%;
  3388. -webkit-transform: translateY(-50%);
  3389. transform: translateY(-50%);
  3390. display: -webkit-box;
  3391. display: -ms-flexbox;
  3392. display: flex;
  3393. -ms-flex-wrap: wrap;
  3394. flex-wrap: wrap;
  3395. line-height: normal;
  3396. text-align: left;
  3397. -webkit-box-sizing: border-box;
  3398. box-sizing: border-box; }
  3399. .el-cascader__tags .el-tag {
  3400. display: -webkit-inline-box;
  3401. display: -ms-inline-flexbox;
  3402. display: inline-flex;
  3403. -webkit-box-align: center;
  3404. -ms-flex-align: center;
  3405. align-items: center;
  3406. max-width: 100%;
  3407. margin: 2px 0 2px 6px;
  3408. text-overflow: ellipsis;
  3409. background: #f0f2f5; }
  3410. .el-cascader__tags .el-tag:not(.is-hit) {
  3411. border-color: transparent; }
  3412. .el-cascader__tags .el-tag > span {
  3413. -webkit-box-flex: 1;
  3414. -ms-flex: 1;
  3415. flex: 1;
  3416. overflow: hidden;
  3417. text-overflow: ellipsis; }
  3418. .el-cascader__tags .el-tag .el-icon-close {
  3419. -webkit-box-flex: 0;
  3420. -ms-flex: none;
  3421. flex: none;
  3422. background-color: #C0C4CC;
  3423. color: #FFFFFF; }
  3424. .el-cascader__tags .el-tag .el-icon-close:hover {
  3425. background-color: #909399; }
  3426. .el-cascader__suggestion-panel {
  3427. border-radius: 4px; }
  3428. .el-cascader__suggestion-list {
  3429. max-height: 204px;
  3430. margin: 0;
  3431. padding: 6px 0;
  3432. font-size: 14px;
  3433. color: #606266;
  3434. text-align: center; }
  3435. .el-cascader__suggestion-item {
  3436. display: -webkit-box;
  3437. display: -ms-flexbox;
  3438. display: flex;
  3439. -webkit-box-pack: justify;
  3440. -ms-flex-pack: justify;
  3441. justify-content: space-between;
  3442. -webkit-box-align: center;
  3443. -ms-flex-align: center;
  3444. align-items: center;
  3445. height: 34px;
  3446. padding: 0 15px;
  3447. text-align: left;
  3448. outline: none;
  3449. cursor: pointer; }
  3450. .el-cascader__suggestion-item:hover, .el-cascader__suggestion-item:focus {
  3451. background: #F5F7FA; }
  3452. .el-cascader__suggestion-item.is-checked {
  3453. color: #2D74E7;
  3454. font-weight: bold; }
  3455. .el-cascader__suggestion-item > span {
  3456. margin-right: 10px; }
  3457. .el-cascader__empty-text {
  3458. margin: 10px 0;
  3459. color: #C0C4CC; }
  3460. .el-cascader__search-input {
  3461. -webkit-box-flex: 1;
  3462. -ms-flex: 1;
  3463. flex: 1;
  3464. height: 24px;
  3465. min-width: 60px;
  3466. margin: 2px 0 2px 15px;
  3467. padding: 0;
  3468. color: #606266;
  3469. border: none;
  3470. outline: none;
  3471. -webkit-box-sizing: border-box;
  3472. box-sizing: border-box; }
  3473. .el-cascader__search-input::-webkit-input-placeholder {
  3474. color: #C0C4CC; }
  3475. .el-cascader__search-input::-moz-placeholder {
  3476. color: #C0C4CC; }
  3477. .el-cascader__search-input::-ms-input-placeholder {
  3478. color: #C0C4CC; }
  3479. .el-cascader__search-input::placeholder {
  3480. color: #C0C4CC; }