123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881 |
- @charset "UTF-8";
- /* BEM support Func
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* Break-points
- -------------------------- */
- /* Scrollbar
- -------------------------- */
- /* Placeholder
- -------------------------- */
- /* BEM
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* BEM support Func
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* Break-points
- -------------------------- */
- /* Scrollbar
- -------------------------- */
- /* Placeholder
- -------------------------- */
- /* BEM
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- .el-checkbox {
- color: #606266;
- font-weight: 500;
- font-size: 14px;
- position: relative;
- cursor: pointer;
- display: inline-block;
- white-space: nowrap;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- margin-right: 30px; }
- .el-checkbox.is-bordered {
- padding: 9px 20px 9px 10px;
- border-radius: 4px;
- border: 1px solid #DCDFE6;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- line-height: normal;
- height: 40px; }
- .el-checkbox.is-bordered.is-checked {
- border-color: #5075FC; }
- .el-checkbox.is-bordered.is-disabled {
- border-color: #EBEEF5;
- cursor: not-allowed; }
- .el-checkbox.is-bordered + .el-checkbox.is-bordered {
- margin-left: 10px; }
- .el-checkbox.is-bordered.el-checkbox--medium {
- padding: 7px 20px 7px 10px;
- border-radius: 4px;
- height: 36px; }
- .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label {
- line-height: 17px;
- font-size: 14px; }
- .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner {
- height: 14px;
- width: 14px; }
- .el-checkbox.is-bordered.el-checkbox--small {
- padding: 5px 15px 5px 10px;
- border-radius: 3px;
- height: 32px; }
- .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label {
- line-height: 15px;
- font-size: 12px; }
- .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner {
- height: 12px;
- width: 12px; }
- .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after {
- height: 6px;
- width: 2px; }
- .el-checkbox.is-bordered.el-checkbox--mini {
- padding: 3px 15px 3px 10px;
- border-radius: 3px;
- height: 28px; }
- .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label {
- line-height: 12px;
- font-size: 12px; }
- .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner {
- height: 12px;
- width: 12px; }
- .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after {
- height: 6px;
- width: 2px; }
- .el-checkbox__input {
- white-space: nowrap;
- cursor: pointer;
- outline: none;
- display: inline-block;
- line-height: 1;
- position: relative;
- vertical-align: middle; }
- .el-checkbox__input.is-disabled .el-checkbox__inner {
- background-color: #edf2fc;
- border-color: #DCDFE6;
- cursor: not-allowed; }
- .el-checkbox__input.is-disabled .el-checkbox__inner::after {
- cursor: not-allowed;
- border-color: #C0C4CC; }
- .el-checkbox__input.is-disabled .el-checkbox__inner + .el-checkbox__label {
- cursor: not-allowed; }
- .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
- background-color: #F2F6FC;
- border-color: #DCDFE6; }
- .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after {
- border-color: #C0C4CC; }
- .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner {
- background-color: #F2F6FC;
- border-color: #DCDFE6; }
- .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before {
- background-color: #C0C4CC;
- border-color: #C0C4CC; }
- .el-checkbox__input.is-disabled + span.el-checkbox__label {
- color: #C0C4CC;
- cursor: not-allowed; }
- .el-checkbox__input.is-checked .el-checkbox__inner {
- background-color: #5075FC;
- border-color: #5075FC; }
- .el-checkbox__input.is-checked .el-checkbox__inner::after {
- -webkit-transform: rotate(45deg) scaleY(1);
- transform: rotate(45deg) scaleY(1); }
- .el-checkbox__input.is-checked + .el-checkbox__label {
- color: #5075FC; }
- .el-checkbox__input.is-focus {
- /*focus时 视觉上区分*/ }
- .el-checkbox__input.is-focus .el-checkbox__inner {
- border-color: #5075FC; }
- .el-checkbox__input.is-indeterminate .el-checkbox__inner {
- background-color: #5075FC;
- border-color: #5075FC; }
- .el-checkbox__input.is-indeterminate .el-checkbox__inner::before {
- content: '';
- position: absolute;
- display: block;
- background-color: #FFFFFF;
- height: 2px;
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- left: 0;
- right: 0;
- top: 5px; }
- .el-checkbox__input.is-indeterminate .el-checkbox__inner::after {
- display: none; }
- .el-checkbox__inner {
- display: inline-block;
- position: relative;
- border: 1px solid #DCDFE6;
- border-radius: 2px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- width: 14px;
- height: 14px;
- background-color: #FFFFFF;
- z-index: 1;
- -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);
- 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); }
- .el-checkbox__inner:hover {
- border-color: #5075FC; }
- .el-checkbox__inner::after {
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- content: "";
- border: 1px solid #FFFFFF;
- border-left: 0;
- border-top: 0;
- height: 7px;
- left: 4px;
- position: absolute;
- top: 1px;
- -webkit-transform: rotate(45deg) scaleY(0);
- transform: rotate(45deg) scaleY(0);
- width: 3px;
- -webkit-transition: -webkit-transform .15s ease-in .05s;
- transition: -webkit-transform .15s ease-in .05s;
- transition: transform .15s ease-in .05s;
- transition: transform .15s ease-in .05s, -webkit-transform .15s ease-in .05s;
- -webkit-transform-origin: center;
- transform-origin: center; }
- .el-checkbox__original {
- opacity: 0;
- outline: none;
- position: absolute;
- margin: 0;
- width: 0;
- height: 0;
- z-index: -1; }
- .el-checkbox__label {
- display: inline-block;
- padding-left: 10px;
- line-height: 19px;
- font-size: 14px; }
- .el-checkbox:last-of-type {
- margin-right: 0; }
- .el-checkbox-button {
- position: relative;
- display: inline-block; }
- .el-checkbox-button__inner {
- display: inline-block;
- line-height: 1;
- font-weight: 500;
- white-space: nowrap;
- vertical-align: middle;
- cursor: pointer;
- background: #FFFFFF;
- border: 1px solid #DCDFE6;
- border-left: 0;
- color: #606266;
- -webkit-appearance: none;
- text-align: center;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- outline: none;
- margin: 0;
- position: relative;
- -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- padding: 12px 20px;
- font-size: 14px;
- border-radius: 0; }
- .el-checkbox-button__inner.is-round {
- padding: 12px 20px; }
- .el-checkbox-button__inner:hover {
- color: #5075FC; }
- .el-checkbox-button__inner [class*="el-icon-"] {
- line-height: 0.9; }
- .el-checkbox-button__inner [class*="el-icon-"] + span {
- margin-left: 5px; }
- .el-checkbox-button__original {
- opacity: 0;
- outline: none;
- position: absolute;
- margin: 0;
- z-index: -1; }
- .el-checkbox-button.is-checked .el-checkbox-button__inner {
- color: #FFFFFF;
- background-color: #5075FC;
- border-color: #5075FC;
- -webkit-box-shadow: -1px 0 0 0 #96acfd;
- box-shadow: -1px 0 0 0 #96acfd; }
- .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner {
- border-left-color: #5075FC; }
- .el-checkbox-button.is-disabled .el-checkbox-button__inner {
- color: #C0C4CC;
- cursor: not-allowed;
- background-image: none;
- background-color: #FFFFFF;
- border-color: #EBEEF5;
- -webkit-box-shadow: none;
- box-shadow: none; }
- .el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner {
- border-left-color: #EBEEF5; }
- .el-checkbox-button:first-child .el-checkbox-button__inner {
- border-left: 1px solid #DCDFE6;
- border-radius: 4px 0 0 4px;
- -webkit-box-shadow: none !important;
- box-shadow: none !important; }
- .el-checkbox-button.is-focus .el-checkbox-button__inner {
- border-color: #5075FC; }
- .el-checkbox-button:last-child .el-checkbox-button__inner {
- border-radius: 0 4px 4px 0; }
- .el-checkbox-button--medium .el-checkbox-button__inner {
- padding: 10px 20px;
- font-size: 14px;
- border-radius: 0; }
- .el-checkbox-button--medium .el-checkbox-button__inner.is-round {
- padding: 10px 20px; }
- .el-checkbox-button--small .el-checkbox-button__inner {
- padding: 9px 15px;
- font-size: 12px;
- border-radius: 0; }
- .el-checkbox-button--small .el-checkbox-button__inner.is-round {
- padding: 9px 15px; }
- .el-checkbox-button--mini .el-checkbox-button__inner {
- padding: 7px 15px;
- font-size: 12px;
- border-radius: 0; }
- .el-checkbox-button--mini .el-checkbox-button__inner.is-round {
- padding: 7px 15px; }
- .el-checkbox-group {
- font-size: 0; }
- /* BEM support Func
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* Break-points
- -------------------------- */
- /* Scrollbar
- -------------------------- */
- /* Placeholder
- -------------------------- */
- /* BEM
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- .el-radio {
- color: #606266;
- font-weight: 500;
- line-height: 1;
- position: relative;
- cursor: pointer;
- display: inline-block;
- white-space: nowrap;
- outline: none;
- font-size: 14px;
- margin-right: 30px;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none; }
- .el-radio.is-bordered {
- padding: 12px 20px 0 10px;
- border-radius: 4px;
- border: 1px solid #DCDFE6;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- height: 40px; }
- .el-radio.is-bordered.is-checked {
- border-color: #5075FC; }
- .el-radio.is-bordered.is-disabled {
- cursor: not-allowed;
- border-color: #EBEEF5; }
- .el-radio.is-bordered + .el-radio.is-bordered {
- margin-left: 10px; }
- .el-radio--medium.is-bordered {
- padding: 10px 20px 0 10px;
- border-radius: 4px;
- height: 36px; }
- .el-radio--medium.is-bordered .el-radio__label {
- font-size: 14px; }
- .el-radio--medium.is-bordered .el-radio__inner {
- height: 14px;
- width: 14px; }
- .el-radio--small.is-bordered {
- padding: 8px 15px 0 10px;
- border-radius: 3px;
- height: 32px; }
- .el-radio--small.is-bordered .el-radio__label {
- font-size: 12px; }
- .el-radio--small.is-bordered .el-radio__inner {
- height: 12px;
- width: 12px; }
- .el-radio--mini.is-bordered {
- padding: 6px 15px 0 10px;
- border-radius: 3px;
- height: 28px; }
- .el-radio--mini.is-bordered .el-radio__label {
- font-size: 12px; }
- .el-radio--mini.is-bordered .el-radio__inner {
- height: 12px;
- width: 12px; }
- .el-radio:last-child {
- margin-right: 0; }
- .el-radio__input {
- white-space: nowrap;
- cursor: pointer;
- outline: none;
- display: inline-block;
- line-height: 1;
- position: relative;
- vertical-align: middle; }
- .el-radio__input.is-disabled .el-radio__inner {
- background-color: #F5F7FA;
- border-color: #E4E7ED;
- cursor: not-allowed; }
- .el-radio__input.is-disabled .el-radio__inner::after {
- cursor: not-allowed;
- background-color: #F5F7FA; }
- .el-radio__input.is-disabled .el-radio__inner + .el-radio__label {
- cursor: not-allowed; }
- .el-radio__input.is-disabled.is-checked .el-radio__inner {
- background-color: #F5F7FA;
- border-color: #E4E7ED; }
- .el-radio__input.is-disabled.is-checked .el-radio__inner::after {
- background-color: #C0C4CC; }
- .el-radio__input.is-disabled + span.el-radio__label {
- color: #C0C4CC;
- cursor: not-allowed; }
- .el-radio__input.is-checked .el-radio__inner {
- border-color: #5075FC;
- background: #5075FC; }
- .el-radio__input.is-checked .el-radio__inner::after {
- -webkit-transform: translate(-50%, -50%) scale(1);
- transform: translate(-50%, -50%) scale(1); }
- .el-radio__input.is-checked + .el-radio__label {
- color: #5075FC; }
- .el-radio__input.is-focus .el-radio__inner {
- border-color: #5075FC; }
- .el-radio__inner {
- border: 1px solid #DCDFE6;
- border-radius: 100%;
- width: 14px;
- height: 14px;
- background-color: #FFFFFF;
- position: relative;
- cursor: pointer;
- display: inline-block;
- -webkit-box-sizing: border-box;
- box-sizing: border-box; }
- .el-radio__inner:hover {
- border-color: #5075FC; }
- .el-radio__inner::after {
- width: 4px;
- height: 4px;
- border-radius: 100%;
- background-color: #FFFFFF;
- content: "";
- position: absolute;
- left: 50%;
- top: 50%;
- -webkit-transform: translate(-50%, -50%) scale(0);
- transform: translate(-50%, -50%) scale(0);
- -webkit-transition: -webkit-transform .15s ease-in;
- transition: -webkit-transform .15s ease-in;
- transition: transform .15s ease-in;
- transition: transform .15s ease-in, -webkit-transform .15s ease-in; }
- .el-radio__original {
- opacity: 0;
- outline: none;
- position: absolute;
- z-index: -1;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: 0; }
- .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) {
- /*获得焦点时 样式提醒*/ }
- .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
- -webkit-box-shadow: 0 0 2px 2px #5075FC;
- box-shadow: 0 0 2px 2px #5075FC; }
- .el-radio__label {
- font-size: 14px;
- padding-left: 10px; }
- /* BEM support Func
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- /* Break-points
- -------------------------- */
- /* Scrollbar
- -------------------------- */
- /* Placeholder
- -------------------------- */
- /* BEM
- -------------------------- */
- /* Element Chalk Variables */
- /* Transition
- -------------------------- */
- /* Color
- -------------------------- */
- /* 53a8ff */
- /* 66b1ff */
- /* 79bbff */
- /* 8cc5ff */
- /* a0cfff */
- /* b3d8ff */
- /* c6e2ff */
- /* d9ecff */
- /* ecf5ff */
- /* Link
- -------------------------- */
- /* Border
- -------------------------- */
- /* Fill
- -------------------------- */
- /* Typography
- -------------------------- */
- /* Size
- -------------------------- */
- /* z-index
- -------------------------- */
- /* Disable base
- -------------------------- */
- /* Icon
- -------------------------- */
- /* Checkbox
- -------------------------- */
- /* Radio
- -------------------------- */
- /* Select
- -------------------------- */
- /* Alert
- -------------------------- */
- /* MessageBox
- -------------------------- */
- /* Message
- -------------------------- */
- /* Notification
- -------------------------- */
- /* Input
- -------------------------- */
- /* Cascader
- -------------------------- */
- /* Group
- -------------------------- */
- /* Tab
- -------------------------- */
- /* Button
- -------------------------- */
- /* cascader
- -------------------------- */
- /* Switch
- -------------------------- */
- /* Dialog
- -------------------------- */
- /* Table
- -------------------------- */
- /* Pagination
- -------------------------- */
- /* Popup
- -------------------------- */
- /* Popover
- -------------------------- */
- /* Tooltip
- -------------------------- */
- /* Tag
- -------------------------- */
- /* Tree
- -------------------------- */
- /* Dropdown
- -------------------------- */
- /* Badge
- -------------------------- */
- /* Card
- --------------------------*/
- /* Slider
- --------------------------*/
- /* Steps
- --------------------------*/
- /* Menu
- --------------------------*/
- /* Rate
- --------------------------*/
- /* DatePicker
- --------------------------*/
- /* Loading
- --------------------------*/
- /* Scrollbar
- --------------------------*/
- /* Carousel
- --------------------------*/
- /* Collapse
- --------------------------*/
- /* Transfer
- --------------------------*/
- /* Header
- --------------------------*/
- /* Footer
- --------------------------*/
- /* Main
- --------------------------*/
- /* Timeline
- --------------------------*/
- /* Backtop
- --------------------------*/
- /* Link
- --------------------------*/
- /* Calendar
- --------------------------*/
- /* Form
- -------------------------- */
- /* Avatar
- --------------------------*/
- /* Empty
- -------------------------- */
- /* Descriptions
- -------------------------- */
- /* Skeleton
- --------------------------*/
- /* Svg
- --------------- */
- /* Result
- -------------------------- */
- /* Break-point
- --------------------------*/
- .el-scrollbar {
- overflow: hidden;
- position: relative; }
- .el-scrollbar:hover > .el-scrollbar__bar, .el-scrollbar:active > .el-scrollbar__bar, .el-scrollbar:focus > .el-scrollbar__bar {
- opacity: 1;
- -webkit-transition: opacity 340ms ease-out;
- transition: opacity 340ms ease-out; }
- .el-scrollbar__wrap {
- overflow: scroll;
- height: 100%; }
- .el-scrollbar__wrap--hidden-default {
- scrollbar-width: none; }
- .el-scrollbar__wrap--hidden-default::-webkit-scrollbar {
- width: 0;
- height: 0; }
- .el-scrollbar__thumb {
- position: relative;
- display: block;
- width: 0;
- height: 0;
- cursor: pointer;
- border-radius: inherit;
- background-color: rgba(144, 147, 153, 0.3);
- -webkit-transition: .3s background-color;
- transition: .3s background-color; }
- .el-scrollbar__thumb:hover {
- background-color: rgba(144, 147, 153, 0.5); }
- .el-scrollbar__bar {
- position: absolute;
- right: 2px;
- bottom: 2px;
- z-index: 1;
- border-radius: 4px;
- opacity: 0;
- -webkit-transition: opacity 120ms ease-out;
- transition: opacity 120ms ease-out; }
- .el-scrollbar__bar.is-vertical {
- width: 6px;
- top: 2px; }
- .el-scrollbar__bar.is-vertical > div {
- width: 100%; }
- .el-scrollbar__bar.is-horizontal {
- height: 6px;
- left: 2px; }
- .el-scrollbar__bar.is-horizontal > div {
- height: 100%; }
- .el-cascader-panel {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- border-radius: 4px;
- font-size: 14px; }
- .el-cascader-panel.is-bordered {
- border: solid 1px #E4E7ED;
- border-radius: 4px; }
- .el-cascader-menu {
- min-width: 180px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- color: #606266;
- border-right: solid 1px #E4E7ED; }
- .el-cascader-menu:last-child {
- border-right: none; }
- .el-cascader-menu:last-child .el-cascader-node {
- padding-right: 20px; }
- .el-cascader-menu__wrap {
- height: 204px; }
- .el-cascader-menu__list {
- position: relative;
- min-height: 100%;
- margin: 0;
- padding: 6px 0;
- list-style: none;
- -webkit-box-sizing: border-box;
- box-sizing: border-box; }
- .el-cascader-menu__hover-zone {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- pointer-events: none; }
- .el-cascader-menu__empty-text {
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- text-align: center;
- color: #C0C4CC; }
- .el-cascader-node {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- padding: 0 30px 0 20px;
- height: 34px;
- line-height: 34px;
- outline: none; }
- .el-cascader-node.is-selectable.in-active-path {
- color: #606266; }
- .el-cascader-node.in-active-path, .el-cascader-node.is-selectable.in-checked-path, .el-cascader-node.is-active {
- color: #5075FC;
- font-weight: bold; }
- .el-cascader-node:not(.is-disabled) {
- cursor: pointer; }
- .el-cascader-node:not(.is-disabled):hover, .el-cascader-node:not(.is-disabled):focus {
- background: #F5F7FA; }
- .el-cascader-node.is-disabled {
- color: #C0C4CC;
- cursor: not-allowed; }
- .el-cascader-node__prefix {
- position: absolute;
- left: 10px; }
- .el-cascader-node__postfix {
- position: absolute;
- right: 10px; }
- .el-cascader-node__label {
- -webkit-box-flex: 1;
- -ms-flex: 1;
- flex: 1;
- padding: 0 10px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis; }
- .el-cascader-node > .el-radio {
- margin-right: 0; }
- .el-cascader-node > .el-radio .el-radio__label {
- padding-left: 0; }
|