| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435 |
- /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
- /**
- * 1. Change the default font family in all browsers (opinionated).
- * 2. Correct the line height in all browsers.
- * 3. Prevent adjustments of font size after orientation changes in
- * IE on Windows Phone and in iOS.
- */
- /* Document
- ========================================================================== */
- html {
- font-family: sans-serif;
- /* 1 */
- line-height: 1.15;
- /* 2 */
- -ms-text-size-adjust: 100%;
- /* 3 */
- -webkit-text-size-adjust: 100%;
- /* 3 */
- }
- /* Sections
- ========================================================================== */
- /**
- * Remove the margin in all browsers (opinionated).
- */
- body {
- margin: 0;
- }
- /**
- * Add the correct display in IE 9-.
- */
- article,
- aside,
- footer,
- header,
- nav,
- section {
- display: block;
- }
- /**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- /* Grouping content
- ========================================================================== */
- /**
- * Add the correct display in IE 9-.
- * 1. Add the correct display in IE.
- */
- figcaption,
- figure,
- main {
- /* 1 */
- display: block;
- }
- /**
- * Add the correct margin in IE 8.
- */
- figure {
- margin: 1em 40px;
- }
- /**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
- hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- pre {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /* Text-level semantics
- ========================================================================== */
- /**
- * 1. Remove the gray background on active links in IE 10.
- * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
- */
- a {
- background-color: transparent;
- /* 1 */
- -webkit-text-decoration-skip: objects;
- /* 2 */
- }
- /**
- * Remove the outline on focused links when they are also active or hovered
- * in all browsers (opinionated).
- */
- a:active,
- a:hover {
- outline-width: 0;
- }
- /**
- * 1. Remove the bottom border in Firefox 39-.
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
- abbr[title] {
- border-bottom: none;
- /* 1 */
- text-decoration: underline;
- /* 2 */
- text-decoration: underline dotted;
- /* 2 */
- }
- /**
- * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
- */
- b,
- strong {
- font-weight: inherit;
- }
- /**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
- b,
- strong {
- font-weight: bolder;
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- code,
- kbd,
- samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /**
- * Add the correct font style in Android 4.3-.
- */
- dfn {
- font-style: italic;
- }
- /**
- * Add the correct background and color in IE 9-.
- */
- mark {
- background-color: #ff0;
- color: #000;
- }
- /**
- * Add the correct font size in all browsers.
- */
- small {
- font-size: 80%;
- }
- /**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sub {
- bottom: -0.25em;
- }
- sup {
- top: -0.5em;
- }
- /* Embedded content
- ========================================================================== */
- /**
- * Add the correct display in IE 9-.
- */
- audio,
- video {
- display: inline-block;
- }
- /**
- * Add the correct display in iOS 4-7.
- */
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- /**
- * Remove the border on images inside links in IE 10-.
- */
- img {
- border-style: none;
- }
- /**
- * Hide the overflow in IE.
- */
- svg:not(:root) {
- overflow: hidden;
- }
- /* Forms
- ========================================================================== */
- /**
- * 1. Change the font styles in all browsers (opinionated).
- * 2. Remove the margin in Firefox and Safari.
- */
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: sans-serif;
- /* 1 */
- font-size: 100%;
- /* 1 */
- line-height: 1.15;
- /* 1 */
- margin: 0;
- /* 2 */
- }
- /**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
- button,
- input {
- /* 1 */
- overflow: visible;
- }
- /**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
- button,
- select {
- /* 1 */
- text-transform: none;
- }
- /**
- * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
- * controls in Android 4.
- * 2. Correct the inability to style clickable types in iOS and Safari.
- */
- button,
- html [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- /* 2 */
- }
- /**
- * Remove the inner border and padding in Firefox.
- */
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
- /**
- * Restore the focus styles unset by the previous rule.
- */
- button:-moz-focusring,
- [type="button"]:-moz-focusring,
- [type="reset"]:-moz-focusring,
- [type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
- /**
- * Change the border, margin, and padding in all browsers (opinionated).
- */
- fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
- }
- /**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
- legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */
- }
- /**
- * 1. Add the correct display in IE 9-.
- * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
- progress {
- display: inline-block;
- /* 1 */
- vertical-align: baseline;
- /* 2 */
- }
- /**
- * Remove the default vertical scrollbar in IE.
- */
- textarea {
- overflow: auto;
- }
- /**
- * 1. Add the correct box sizing in IE 10-.
- * 2. Remove the padding in IE 10-.
- */
- [type="checkbox"],
- [type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */
- }
- /**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- /**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
- [type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */
- }
- /**
- * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
- */
- [type="search"]::-webkit-search-cancel-button,
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- /**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
- ::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */
- }
- /* Interactive
- ========================================================================== */
- /*
- * Add the correct display in IE 9-.
- * 1. Add the correct display in Edge, IE, and Firefox.
- */
- details,
- menu {
- display: block;
- }
- /*
- * Add the correct display in all browsers.
- */
- summary {
- display: list-item;
- }
- /* Scripting
- ========================================================================== */
- /**
- * Add the correct display in IE 9-.
- */
- canvas {
- display: inline-block;
- }
- /**
- * Add the correct display in IE.
- */
- template {
- display: none;
- }
- /* Hidden
- ========================================================================== */
- /**
- * Add the correct display in IE 10-.
- */
- [hidden] {
- display: none;
- }
- * {
- box-sizing: border-box;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- *:before,
- *:after {
- box-sizing: border-box;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
- font-size: 12px;
- line-height: 1.5;
- color: #666;
- background-color: #fff;
- }
- body,
- div,
- dl,
- dt,
- dd,
- ul,
- ol,
- li,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- pre,
- code,
- form,
- fieldset,
- legend,
- input,
- textarea,
- p,
- blockquote,
- th,
- td,
- hr,
- button,
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- menu,
- nav,
- section {
- margin: 0;
- padding: 0;
- }
- button,
- input,
- select,
- textarea {
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
- color: inherit;
- }
- ul,
- ol {
- list-style: none;
- }
- input::-ms-clear,
- input::-ms-reveal {
- display: none;
- }
- ::selection {
- background: #58a3ff;
- color: #fff;
- }
- a {
- color: #58a3ff;
- background: transparent;
- text-decoration: none;
- outline: none;
- cursor: pointer;
- transition: color .3s ease;
- }
- a:hover {
- color: #79b5ff;
- }
- a:active {
- color: #549bf2;
- }
- a:active,
- a:hover {
- outline: 0;
- text-decoration: none;
- }
- a[disabled] {
- color: #ccc;
- cursor: not-allowed;
- pointer-events: none;
- }
- .ant-divider {
- margin: 0 6px;
- display: inline-block;
- height: 8px;
- width: 1px;
- background: #ccc;
- }
- code,
- kbd,
- pre,
- samp {
- font-family: Consolas, Menlo, Courier, monospace;
- }
- .clearfix {
- zoom: 1;
- }
- .clearfix:before,
- .clearfix:after {
- content: " ";
- display: table;
- }
- .clearfix:after {
- clear: both;
- visibility: hidden;
- font-size: 0;
- height: 0;
- }
- @font-face {
- font-family: 'anticon';
- src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot');
- /* IE9*/
- src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.woff') format('woff'), /* chrome、firefox */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.svg#iconfont') format('svg');
- /* iOS 4.1- */
- }
- .anticon {
- display: inline-block;
- font-style: normal;
- vertical-align: baseline;
- text-align: center;
- text-transform: none;
- text-rendering: auto;
- line-height: 1;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .anticon:before {
- display: block;
- font-family: "anticon" !important;
- }
- .anticon-step-forward:before {
- content: "\E600";
- }
- .anticon-step-backward:before {
- content: "\E601";
- }
- .anticon-forward:before {
- content: "\E602";
- }
- .anticon-backward:before {
- content: "\E603";
- }
- .anticon-caret-right:before {
- content: "\E604";
- }
- .anticon-caret-left:before {
- content: "\E605";
- }
- .anticon-caret-down:before {
- content: "\E606";
- }
- .anticon-caret-up:before {
- content: "\E607";
- }
- .anticon-right-circle:before {
- content: "\E608";
- }
- .anticon-circle-right:before {
- content: "\E608";
- }
- .anticon-caret-circle-right:before {
- content: "\E608";
- }
- .anticon-left-circle:before {
- content: "\E609";
- }
- .anticon-circle-left:before {
- content: "\E609";
- }
- .anticon-caret-circle-left:before {
- content: "\E609";
- }
- .anticon-up-circle:before {
- content: "\E60A";
- }
- .anticon-circle-up:before {
- content: "\E60A";
- }
- .anticon-caret-circle-up:before {
- content: "\E60A";
- }
- .anticon-down-circle:before {
- content: "\E60B";
- }
- .anticon-circle-down:before {
- content: "\E60B";
- }
- .anticon-caret-circle-down:before {
- content: "\E60B";
- }
- .anticon-right-circle-o:before {
- content: "\E60C";
- }
- .anticon-circle-o-right:before {
- content: "\E60C";
- }
- .anticon-caret-circle-o-right:before {
- content: "\E60C";
- }
- .anticon-left-circle-o:before {
- content: "\E60D";
- }
- .anticon-circle-o-left:before {
- content: "\E60D";
- }
- .anticon-caret-circle-o-left:before {
- content: "\E60D";
- }
- .anticon-up-circle-o:before {
- content: "\E60E";
- }
- .anticon-circle-o-up:before {
- content: "\E60E";
- }
- .anticon-caret-circle-o-up:before {
- content: "\E60E";
- }
- .anticon-down-circle-o:before {
- content: "\E60F";
- }
- .anticon-circle-o-down:before {
- content: "\E60F";
- }
- .anticon-caret-circle-o-down:before {
- content: "\E60F";
- }
- .anticon-verticle-left:before {
- content: "\E610";
- }
- .anticon-verticle-right:before {
- content: "\E611";
- }
- .anticon-rollback:before {
- content: "\E612";
- }
- .anticon-retweet:before {
- content: "\E613";
- }
- .anticon-shrink:before {
- content: "\E614";
- }
- .anticon-arrows-alt:before {
- content: "\E615";
- }
- .anticon-arrow-salt:before {
- content: "\E615";
- }
- .anticon-reload:before {
- content: "\E616";
- }
- .anticon-double-right:before {
- content: "\E617";
- }
- .anticon-double-left:before {
- content: "\E618";
- }
- .anticon-arrow-down:before {
- content: "\E619";
- }
- .anticon-arrow-up:before {
- content: "\E61A";
- }
- .anticon-arrow-right:before {
- content: "\E61B";
- }
- .anticon-arrow-left:before {
- content: "\E61C";
- }
- .anticon-down:before {
- content: "\E61D";
- }
- .anticon-up:before {
- content: "\E61E";
- }
- .anticon-right:before {
- content: "\E61F";
- }
- .anticon-left:before {
- content: "\E620";
- }
- .anticon-minus-square-o:before {
- content: "\E621";
- }
- .anticon-minus-circle:before {
- content: "\E622";
- }
- .anticon-minus-circle-o:before {
- content: "\E623";
- }
- .anticon-minus:before {
- content: "\E624";
- }
- .anticon-plus-circle-o:before {
- content: "\E625";
- }
- .anticon-plus-circle:before {
- content: "\E626";
- }
- .anticon-plus:before {
- content: "\E627";
- }
- .anticon-info-circle:before {
- content: "\E628";
- }
- .anticon-info-circle-o:before {
- content: "\E629";
- }
- .anticon-info:before {
- content: "\E62A";
- }
- .anticon-exclamation:before {
- content: "\E62B";
- }
- .anticon-exclamation-circle:before {
- content: "\E62C";
- }
- .anticon-exclamation-circle-o:before {
- content: "\E62D";
- }
- .anticon-close-circle:before {
- content: "\E62E";
- }
- .anticon-cross-circle:before {
- content: "\E62E";
- }
- .anticon-close-circle-o:before {
- content: "\E62F";
- }
- .anticon-cross-circle-o:before {
- content: "\E62F";
- }
- .anticon-check-circle:before {
- content: "\E630";
- }
- .anticon-check-circle-o:before {
- content: "\E631";
- }
- .anticon-check:before {
- content: "\E632";
- }
- .anticon-close:before {
- content: "\E633";
- }
- .anticon-cross:before {
- content: "\E633";
- }
- .anticon-customer-service:before {
- content: "\E634";
- }
- .anticon-customerservice:before {
- content: "\E634";
- }
- .anticon-credit-card:before {
- content: "\E635";
- }
- .anticon-code-o:before {
- content: "\E636";
- }
- .anticon-book:before {
- content: "\E637";
- }
- .anticon-bar-chart:before {
- content: "\E638";
- }
- .anticon-bars:before {
- content: "\E639";
- }
- .anticon-question:before {
- content: "\E63A";
- }
- .anticon-question-circle:before {
- content: "\E63B";
- }
- .anticon-question-circle-o:before {
- content: "\E63C";
- }
- .anticon-pause:before {
- content: "\E63D";
- }
- .anticon-pause-circle:before {
- content: "\E63E";
- }
- .anticon-pause-circle-o:before {
- content: "\E63F";
- }
- .anticon-clock-circle:before {
- content: "\E640";
- }
- .anticon-clock-circle-o:before {
- content: "\E641";
- }
- .anticon-swap:before {
- content: "\E642";
- }
- .anticon-swap-left:before {
- content: "\E643";
- }
- .anticon-swap-right:before {
- content: "\E644";
- }
- .anticon-plus-square-o:before {
- content: "\E645";
- }
- .anticon-frown:before {
- content: "\E646";
- }
- .anticon-frown-circle:before {
- content: "\E646";
- }
- .anticon-ellipsis:before {
- content: "\E647";
- }
- .anticon-copy:before {
- content: "\E648";
- }
- .anticon-menu-fold:before {
- content: "\E658";
- }
- .anticon-mail:before {
- content: "\E659";
- }
- .anticon-logout:before {
- content: "\E65A";
- }
- .anticon-link:before {
- content: "\E65B";
- }
- .anticon-area-chart:before {
- content: "\E65C";
- }
- .anticon-line-chart:before {
- content: "\E65D";
- }
- .anticon-home:before {
- content: "\E65E";
- }
- .anticon-laptop:before {
- content: "\E65F";
- }
- .anticon-star:before {
- content: "\E660";
- }
- .anticon-star-o:before {
- content: "\E661";
- }
- .anticon-folder:before {
- content: "\E662";
- }
- .anticon-filter:before {
- content: "\E663";
- }
- .anticon-file:before {
- content: "\E664";
- }
- .anticon-exception:before {
- content: "\E665";
- }
- .anticon-meh:before {
- content: "\E666";
- }
- .anticon-meh-circle:before {
- content: "\E666";
- }
- .anticon-meh-o:before {
- content: "\E667";
- }
- .anticon-shopping-cart:before {
- content: "\E668";
- }
- .anticon-save:before {
- content: "\E669";
- }
- .anticon-user:before {
- content: "\E66A";
- }
- .anticon-video-camera:before {
- content: "\E66B";
- }
- .anticon-to-top:before {
- content: "\E66C";
- }
- .anticon-team:before {
- content: "\E66D";
- }
- .anticon-tablet:before {
- content: "\E66E";
- }
- .anticon-solution:before {
- content: "\E66F";
- }
- .anticon-search:before {
- content: "\E670";
- }
- .anticon-share-alt:before {
- content: "\E671";
- }
- .anticon-setting:before {
- content: "\E672";
- }
- .anticon-poweroff:before {
- content: "\E6D5";
- }
- .anticon-picture:before {
- content: "\E674";
- }
- .anticon-phone:before {
- content: "\E675";
- }
- .anticon-paper-clip:before {
- content: "\E676";
- }
- .anticon-notification:before {
- content: "\E677";
- }
- .anticon-mobile:before {
- content: "\E678";
- }
- .anticon-menu-unfold:before {
- content: "\E679";
- }
- .anticon-inbox:before {
- content: "\E67A";
- }
- .anticon-lock:before {
- content: "\E67B";
- }
- .anticon-qrcode:before {
- content: "\E67C";
- }
- .anticon-play-circle:before {
- content: "\E6D0";
- }
- .anticon-play-circle-o:before {
- content: "\E6D1";
- }
- .anticon-tag:before {
- content: "\E6D2";
- }
- .anticon-tag-o:before {
- content: "\E6D3";
- }
- .anticon-tags:before {
- content: "\E67D";
- }
- .anticon-tags-o:before {
- content: "\E67E";
- }
- .anticon-cloud-o:before {
- content: "\E67F";
- }
- .anticon-cloud:before {
- content: "\E680";
- }
- .anticon-cloud-upload:before {
- content: "\E681";
- }
- .anticon-cloud-download:before {
- content: "\E682";
- }
- .anticon-cloud-download-o:before {
- content: "\E683";
- }
- .anticon-cloud-upload-o:before {
- content: "\E684";
- }
- .anticon-environment:before {
- content: "\E685";
- }
- .anticon-environment-o:before {
- content: "\E686";
- }
- .anticon-eye:before {
- content: "\E687";
- }
- .anticon-eye-o:before {
- content: "\E688";
- }
- .anticon-camera:before {
- content: "\E689";
- }
- .anticon-camera-o:before {
- content: "\E68A";
- }
- .anticon-windows:before {
- content: "\E68B";
- }
- .anticon-apple:before {
- content: "\E68C";
- }
- .anticon-apple-o:before {
- content: "\E6D4";
- }
- .anticon-android:before {
- content: "\E68D";
- }
- .anticon-aliwangwang:before {
- content: "\E68E";
- }
- .anticon-aliwangwang-o:before {
- content: "\E68F";
- }
- .anticon-export:before {
- content: "\E691";
- }
- .anticon-edit:before {
- content: "\E692";
- }
- .anticon-circle-down-o:before {
- content: "\E693";
- }
- .anticon-circle-down-:before {
- content: "\E694";
- }
- .anticon-appstore-o:before {
- content: "\E695";
- }
- .anticon-appstore:before {
- content: "\E696";
- }
- .anticon-scan:before {
- content: "\E697";
- }
- .anticon-file-text:before {
- content: "\E698";
- }
- .anticon-folder-open:before {
- content: "\E699";
- }
- .anticon-hdd:before {
- content: "\E69A";
- }
- .anticon-ie:before {
- content: "\E69B";
- }
- .anticon-file-jpg:before {
- content: "\E69C";
- }
- .anticon-like:before {
- content: "\E64C";
- }
- .anticon-like-o:before {
- content: "\E69D";
- }
- .anticon-dislike:before {
- content: "\E64B";
- }
- .anticon-dislike-o:before {
- content: "\E69E";
- }
- .anticon-delete:before {
- content: "\E69F";
- }
- .anticon-enter:before {
- content: "\E6A0";
- }
- .anticon-pushpin-o:before {
- content: "\E6A1";
- }
- .anticon-pushpin:before {
- content: "\E6A2";
- }
- .anticon-heart:before {
- content: "\E6A3";
- }
- .anticon-heart-o:before {
- content: "\E6A4";
- }
- .anticon-pay-circle:before {
- content: "\E6A5";
- }
- .anticon-pay-circle-o:before {
- content: "\E6A6";
- }
- .anticon-smile:before {
- content: "\E6A7";
- }
- .anticon-smile-circle:before {
- content: "\E6A7";
- }
- .anticon-smile-o:before {
- content: "\E6A8";
- }
- .anticon-frown-o:before {
- content: "\E6A9";
- }
- .anticon-calculator:before {
- content: "\E6AA";
- }
- .anticon-message:before {
- content: "\E6AB";
- }
- .anticon-chrome:before {
- content: "\E6AC";
- }
- .anticon-github:before {
- content: "\E6AD";
- }
- .anticon-file-unknown:before {
- content: "\E6AF";
- }
- .anticon-file-excel:before {
- content: "\E6B0";
- }
- .anticon-file-ppt:before {
- content: "\E6B1";
- }
- .anticon-file-word:before {
- content: "\E6B2";
- }
- .anticon-file-pdf:before {
- content: "\E6B3";
- }
- .anticon-desktop:before {
- content: "\E6B4";
- }
- .anticon-upload:before {
- content: "\E6B6";
- }
- .anticon-download:before {
- content: "\E6B7";
- }
- .anticon-pie-chart:before {
- content: "\E6B8";
- }
- .anticon-unlock:before {
- content: "\E6BA";
- }
- .anticon-calendar:before {
- content: "\E6BB";
- }
- .anticon-windows-o:before {
- content: "\E6BC";
- }
- .anticon-dot-chart:before {
- content: "\E6BD";
- }
- .anticon-bar-chart:before {
- content: "\E6BE";
- }
- .anticon-code:before {
- content: "\E6BF";
- }
- .anticon-plus-square:before {
- content: "\E6C0";
- }
- .anticon-minus-square:before {
- content: "\E6C1";
- }
- .anticon-close-square:before {
- content: "\E6C2";
- }
- .anticon-close-square-o:before {
- content: "\E6C3";
- }
- .anticon-check-square:before {
- content: "\E6C4";
- }
- .anticon-check-square-o:before {
- content: "\E6C5";
- }
- .anticon-fast-backward:before {
- content: "\E6C6";
- }
- .anticon-fast-forward:before {
- content: "\E6C7";
- }
- .anticon-up-square:before {
- content: "\E6C8";
- }
- .anticon-down-square:before {
- content: "\E6C9";
- }
- .anticon-left-square:before {
- content: "\E6CA";
- }
- .anticon-right-square:before {
- content: "\E6CB";
- }
- .anticon-right-square-o:before {
- content: "\E6CC";
- }
- .anticon-left-square-o:before {
- content: "\E6CD";
- }
- .anticon-down-square-o:before {
- content: "\E6CE";
- }
- .anticon-up-square-o:before {
- content: "\E6CF";
- }
- .anticon-loading:before {
- content: "\E64D";
- }
- .anticon-loading-3-quarters:before {
- content: "\E6AE";
- }
- .anticon-bulb:before {
- content: "\E649";
- }
- .anticon-select:before {
- content: "\E64A";
- }
- .anticon-addfile:before {
- content: "\E910";
- }
- .anticon-addfolder:before {
- content: "\E914";
- }
- .anticon-switcher:before {
- content: "\E913";
- }
- .anticon-rocket:before {
- content: "\E90F";
- }
- .anticon-dingding:before {
- content: "\E923";
- }
- .anticon-dingding-o:before {
- content: "\E925";
- }
- .anticon-spin:before {
- display: inline-block;
- animation: loadingCircle 1s infinite linear;
- }
- .fade-enter,
- .fade-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .fade-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .fade-enter.fade-enter-active,
- .fade-appear.fade-appear-active {
- animation-name: antFadeIn;
- animation-play-state: running;
- }
- .fade-leave.fade-leave-active {
- animation-name: antFadeOut;
- animation-play-state: running;
- }
- .fade-enter,
- .fade-appear {
- opacity: 0;
- animation-timing-function: linear;
- }
- .fade-leave {
- animation-timing-function: linear;
- }
- @keyframes antFadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes antFadeOut {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- .move-up-enter,
- .move-up-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-up-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-up-enter.move-up-enter-active,
- .move-up-appear.move-up-appear-active {
- animation-name: antMoveUpIn;
- animation-play-state: running;
- }
- .move-up-leave.move-up-leave-active {
- animation-name: antMoveUpOut;
- animation-play-state: running;
- }
- .move-up-enter,
- .move-up-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .move-up-leave {
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
- }
- .move-down-enter,
- .move-down-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-down-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-down-enter.move-down-enter-active,
- .move-down-appear.move-down-appear-active {
- animation-name: antMoveDownIn;
- animation-play-state: running;
- }
- .move-down-leave.move-down-leave-active {
- animation-name: antMoveDownOut;
- animation-play-state: running;
- }
- .move-down-enter,
- .move-down-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .move-down-leave {
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
- }
- .move-left-enter,
- .move-left-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-left-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-left-enter.move-left-enter-active,
- .move-left-appear.move-left-appear-active {
- animation-name: antMoveLeftIn;
- animation-play-state: running;
- }
- .move-left-leave.move-left-leave-active {
- animation-name: antMoveLeftOut;
- animation-play-state: running;
- }
- .move-left-enter,
- .move-left-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .move-left-leave {
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
- }
- .move-right-enter,
- .move-right-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-right-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .move-right-enter.move-right-enter-active,
- .move-right-appear.move-right-appear-active {
- animation-name: antMoveRightIn;
- animation-play-state: running;
- }
- .move-right-leave.move-right-leave-active {
- animation-name: antMoveRightOut;
- animation-play-state: running;
- }
- .move-right-enter,
- .move-right-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .move-right-leave {
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
- }
- @keyframes antMoveDownIn {
- 0% {
- transform-origin: 0 0;
- transform: translateY(100%);
- opacity: 0;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateY(0%);
- opacity: 1;
- }
- }
- @keyframes antMoveDownOut {
- 0% {
- transform-origin: 0 0;
- transform: translateY(0%);
- opacity: 1;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateY(100%);
- opacity: 0;
- }
- }
- @keyframes antMoveLeftIn {
- 0% {
- transform-origin: 0 0;
- transform: translateX(-100%);
- opacity: 0;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateX(0%);
- opacity: 1;
- }
- }
- @keyframes antMoveLeftOut {
- 0% {
- transform-origin: 0 0;
- transform: translateX(0%);
- opacity: 1;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateX(-100%);
- opacity: 0;
- }
- }
- @keyframes antMoveRightIn {
- 0% {
- opacity: 0;
- transform-origin: 0 0;
- transform: translateX(100%);
- }
- 100% {
- opacity: 1;
- transform-origin: 0 0;
- transform: translateX(0%);
- }
- }
- @keyframes antMoveRightOut {
- 0% {
- transform-origin: 0 0;
- transform: translateX(0%);
- opacity: 1;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateX(100%);
- opacity: 0;
- }
- }
- @keyframes antMoveUpIn {
- 0% {
- transform-origin: 0 0;
- transform: translateY(-100%);
- opacity: 0;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateY(0%);
- opacity: 1;
- }
- }
- @keyframes antMoveUpOut {
- 0% {
- transform-origin: 0 0;
- transform: translateY(0%);
- opacity: 1;
- }
- 100% {
- transform-origin: 0 0;
- transform: translateY(-100%);
- opacity: 0;
- }
- }
- @keyframes loadingCircle {
- 0% {
- transform-origin: 50% 50%;
- transform: rotate(0deg);
- }
- 100% {
- transform-origin: 50% 50%;
- transform: rotate(360deg);
- }
- }
- .slide-up-enter,
- .slide-up-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-up-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-up-enter.slide-up-enter-active,
- .slide-up-appear.slide-up-appear-active {
- animation-name: antSlideUpIn;
- animation-play-state: running;
- }
- .slide-up-leave.slide-up-leave-active {
- animation-name: antSlideUpOut;
- animation-play-state: running;
- }
- .slide-up-enter,
- .slide-up-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
- }
- .slide-up-leave {
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
- }
- .slide-down-enter,
- .slide-down-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-down-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-down-enter.slide-down-enter-active,
- .slide-down-appear.slide-down-appear-active {
- animation-name: antSlideDownIn;
- animation-play-state: running;
- }
- .slide-down-leave.slide-down-leave-active {
- animation-name: antSlideDownOut;
- animation-play-state: running;
- }
- .slide-down-enter,
- .slide-down-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
- }
- .slide-down-leave {
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
- }
- .slide-left-enter,
- .slide-left-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-left-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-left-enter.slide-left-enter-active,
- .slide-left-appear.slide-left-appear-active {
- animation-name: antSlideLeftIn;
- animation-play-state: running;
- }
- .slide-left-leave.slide-left-leave-active {
- animation-name: antSlideLeftOut;
- animation-play-state: running;
- }
- .slide-left-enter,
- .slide-left-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
- }
- .slide-left-leave {
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
- }
- .slide-right-enter,
- .slide-right-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-right-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .slide-right-enter.slide-right-enter-active,
- .slide-right-appear.slide-right-appear-active {
- animation-name: antSlideRightIn;
- animation-play-state: running;
- }
- .slide-right-leave.slide-right-leave-active {
- animation-name: antSlideRightOut;
- animation-play-state: running;
- }
- .slide-right-enter,
- .slide-right-appear {
- opacity: 0;
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
- }
- .slide-right-leave {
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
- }
- @keyframes antSlideUpIn {
- 0% {
- opacity: 0;
- transform-origin: 0% 0%;
- transform: scaleY(0.8);
- }
- 100% {
- opacity: 1;
- transform-origin: 0% 0%;
- transform: scaleY(1);
- }
- }
- @keyframes antSlideUpOut {
- 0% {
- opacity: 1;
- transform-origin: 0% 0%;
- transform: scaleY(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 0% 0%;
- transform: scaleY(0.8);
- }
- }
- @keyframes antSlideDownIn {
- 0% {
- opacity: 0;
- transform-origin: 100% 100%;
- transform: scaleY(0.8);
- }
- 100% {
- opacity: 1;
- transform-origin: 100% 100%;
- transform: scaleY(1);
- }
- }
- @keyframes antSlideDownOut {
- 0% {
- opacity: 1;
- transform-origin: 100% 100%;
- transform: scaleY(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 100% 100%;
- transform: scaleY(0.8);
- }
- }
- @keyframes antSlideLeftIn {
- 0% {
- opacity: 0;
- transform-origin: 0% 0%;
- transform: scaleX(0.8);
- }
- 100% {
- opacity: 1;
- transform-origin: 0% 0%;
- transform: scaleX(1);
- }
- }
- @keyframes antSlideLeftOut {
- 0% {
- opacity: 1;
- transform-origin: 0% 0%;
- transform: scaleX(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 0% 0%;
- transform: scaleX(0.8);
- }
- }
- @keyframes antSlideRightIn {
- 0% {
- opacity: 0;
- transform-origin: 100% 0%;
- transform: scaleX(0.8);
- }
- 100% {
- opacity: 1;
- transform-origin: 100% 0%;
- transform: scaleX(1);
- }
- }
- @keyframes antSlideRightOut {
- 0% {
- opacity: 1;
- transform-origin: 100% 0%;
- transform: scaleX(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 100% 0%;
- transform: scaleX(0.8);
- }
- }
- .swing-enter,
- .swing-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .swing-enter.swing-enter-active,
- .swing-appear.swing-appear-active {
- animation-name: antSwingIn;
- animation-play-state: running;
- }
- @keyframes antSwingIn {
- 0%,
- 100% {
- transform: translateX(0px);
- }
- 20% {
- transform: translateX(-10px);
- }
- 40% {
- transform: translateX(10px);
- }
- 60% {
- transform: translateX(-5px);
- }
- 80% {
- transform: translateX(5px);
- }
- }
- .zoom-enter,
- .zoom-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-enter.zoom-enter-active,
- .zoom-appear.zoom-appear-active {
- animation-name: antZoomIn;
- animation-play-state: running;
- }
- .zoom-leave.zoom-leave-active {
- animation-name: antZoomOut;
- animation-play-state: running;
- }
- .zoom-enter,
- .zoom-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- .zoom-big-enter,
- .zoom-big-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-big-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-big-enter.zoom-big-enter-active,
- .zoom-big-appear.zoom-big-appear-active {
- animation-name: antZoomBigIn;
- animation-play-state: running;
- }
- .zoom-big-leave.zoom-big-leave-active {
- animation-name: antZoomBigOut;
- animation-play-state: running;
- }
- .zoom-big-enter,
- .zoom-big-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-big-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- .zoom-big-fast-enter,
- .zoom-big-fast-appear {
- animation-duration: 0.1s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-big-fast-leave {
- animation-duration: 0.1s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-big-fast-enter.zoom-big-fast-enter-active,
- .zoom-big-fast-appear.zoom-big-fast-appear-active {
- animation-name: antZoomBigIn;
- animation-play-state: running;
- }
- .zoom-big-fast-leave.zoom-big-fast-leave-active {
- animation-name: antZoomBigOut;
- animation-play-state: running;
- }
- .zoom-big-fast-enter,
- .zoom-big-fast-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-big-fast-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- .zoom-up-enter,
- .zoom-up-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-up-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-up-enter.zoom-up-enter-active,
- .zoom-up-appear.zoom-up-appear-active {
- animation-name: antZoomUpIn;
- animation-play-state: running;
- }
- .zoom-up-leave.zoom-up-leave-active {
- animation-name: antZoomUpOut;
- animation-play-state: running;
- }
- .zoom-up-enter,
- .zoom-up-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-up-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- .zoom-down-enter,
- .zoom-down-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-down-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-down-enter.zoom-down-enter-active,
- .zoom-down-appear.zoom-down-appear-active {
- animation-name: antZoomDownIn;
- animation-play-state: running;
- }
- .zoom-down-leave.zoom-down-leave-active {
- animation-name: antZoomDownOut;
- animation-play-state: running;
- }
- .zoom-down-enter,
- .zoom-down-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-down-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- .zoom-left-enter,
- .zoom-left-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-left-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-left-enter.zoom-left-enter-active,
- .zoom-left-appear.zoom-left-appear-active {
- animation-name: antZoomLeftIn;
- animation-play-state: running;
- }
- .zoom-left-leave.zoom-left-leave-active {
- animation-name: antZoomLeftOut;
- animation-play-state: running;
- }
- .zoom-left-enter,
- .zoom-left-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-left-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- .zoom-right-enter,
- .zoom-right-appear {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-right-leave {
- animation-duration: 0.2s;
- animation-fill-mode: both;
- animation-play-state: paused;
- }
- .zoom-right-enter.zoom-right-enter-active,
- .zoom-right-appear.zoom-right-appear-active {
- animation-name: antZoomRightIn;
- animation-play-state: running;
- }
- .zoom-right-leave.zoom-right-leave-active {
- animation-name: antZoomRightOut;
- animation-play-state: running;
- }
- .zoom-right-enter,
- .zoom-right-appear {
- transform: scale(0);
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
- }
- .zoom-right-leave {
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
- }
- @keyframes antZoomIn {
- 0% {
- opacity: 0;
- transform: scale(0.2);
- }
- 100% {
- opacity: 1;
- transform: scale(1);
- }
- }
- @keyframes antZoomOut {
- 0% {
- transform: scale(1);
- }
- 100% {
- opacity: 0;
- transform: scale(0.2);
- }
- }
- @keyframes antZoomBigIn {
- 0% {
- opacity: 0;
- transform: scale(0.8);
- }
- 100% {
- transform: scale(1);
- }
- }
- @keyframes antZoomBigOut {
- 0% {
- transform: scale(1);
- }
- 100% {
- opacity: 0;
- transform: scale(0.8);
- }
- }
- @keyframes antZoomUpIn {
- 0% {
- opacity: 0;
- transform-origin: 50% 0%;
- transform: scale(0.8);
- }
- 100% {
- transform-origin: 50% 0%;
- transform: scale(1);
- }
- }
- @keyframes antZoomUpOut {
- 0% {
- transform-origin: 50% 0%;
- transform: scale(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 50% 0%;
- transform: scale(0.8);
- }
- }
- @keyframes antZoomLeftIn {
- 0% {
- opacity: 0;
- transform-origin: 0% 50%;
- transform: scale(0.8);
- }
- 100% {
- transform-origin: 0% 50%;
- transform: scale(1);
- }
- }
- @keyframes antZoomLeftOut {
- 0% {
- transform-origin: 0% 50%;
- transform: scale(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 0% 50%;
- transform: scale(0.8);
- }
- }
- @keyframes antZoomRightIn {
- 0% {
- opacity: 0;
- transform-origin: 100% 50%;
- transform: scale(0.8);
- }
- 100% {
- transform-origin: 100% 50%;
- transform: scale(1);
- }
- }
- @keyframes antZoomRightOut {
- 0% {
- transform-origin: 100% 50%;
- transform: scale(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 100% 50%;
- transform: scale(0.8);
- }
- }
- @keyframes antZoomDownIn {
- 0% {
- opacity: 0;
- transform-origin: 50% 100%;
- transform: scale(0.8);
- }
- 100% {
- transform-origin: 50% 100%;
- transform: scale(1);
- }
- }
- @keyframes antZoomDownOut {
- 0% {
- transform-origin: 50% 100%;
- transform: scale(1);
- }
- 100% {
- opacity: 0;
- transform-origin: 50% 100%;
- transform: scale(0.8);
- }
- }
- .ant-motion-collapse {
- overflow: hidden;
- }
- .ant-motion-collapse-active {
- transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
- }
- .ant-spin {
- color: #58a3ff;
- vertical-align: middle;
- text-align: center;
- opacity: 0;
- position: absolute;
- transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
- font-size: 12px;
- display: none;
- }
- .ant-spin-spinning {
- opacity: 1;
- position: static;
- display: inline-block;
- }
- .ant-spin-nested-loading {
- position: relative;
- }
- .ant-spin-nested-loading .ant-spin {
- position: absolute;
- height: 100%;
- width: 100%;
- z-index: 4;
- }
- .ant-spin-nested-loading .ant-spin-dot {
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -10px;
- }
- .ant-spin-nested-loading .ant-spin-sm .ant-spin-dot {
- margin: -7px;
- }
- .ant-spin-nested-loading .ant-spin-lg .ant-spin-dot {
- margin: -15px;
- }
- .ant-spin-nested-loading .ant-spin-show-text .ant-spin-dot {
- margin: -16px;
- }
- .ant-spin-nested-loading .ant-spin-show-text.ant-spin-sm .ant-spin-dot {
- margin: -13px;
- }
- .ant-spin-nested-loading .ant-spin-show-text.ant-spin-lg .ant-spin-dot {
- margin: -21px;
- }
- .ant-spin-nested-loading .ant-spin-text {
- position: absolute;
- top: 50%;
- width: 100%;
- padding-top: 4px;
- }
- .ant-spin-nested-loading .ant-spin-sm .ant-spin-text {
- padding-top: 1px;
- }
- .ant-spin-nested-loading .ant-spin-lg .ant-spin-text {
- padding-top: 9px;
- }
- .ant-spin-container {
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- position: relative;
- }
- .ant-spin-blur {
- opacity: 0.7;
- -webkit-filter: blur(1px);
- filter: blur(1px);
- filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
- /* IE6~IE9 */
- }
- .ant-spin-blur:after {
- content: '';
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: transparent;
- }
- .ant-spin-tip {
- color: #999;
- }
- .ant-spin-dot {
- position: relative;
- display: block;
- width: 20px;
- height: 20px;
- transform: rotate(45deg);
- animation: antRotate 3.2s infinite linear;
- }
- .ant-spin-dot i {
- width: 8px;
- height: 8px;
- border-radius: 50%;
- background-color: #58a3ff;
- transform: scale(0.6);
- display: block;
- position: absolute;
- opacity: 0.3;
- animation: antSpinMove .8s infinite linear alternate;
- transform-origin: 0 0;
- }
- .ant-spin-dot i:nth-child(1) {
- left: 0;
- top: 0;
- }
- .ant-spin-dot i:nth-child(2) {
- right: 0;
- top: 0;
- animation-delay: 0.4s;
- }
- .ant-spin-dot i:nth-child(3) {
- right: 0;
- bottom: 0;
- animation-delay: 0.8s;
- }
- .ant-spin-dot i:nth-child(4) {
- left: 0;
- bottom: 0;
- animation-delay: 1.2s;
- }
- .ant-spin-sm .ant-spin-dot {
- width: 14px;
- height: 14px;
- }
- .ant-spin-sm .ant-spin-dot i {
- width: 6px;
- height: 6px;
- }
- .ant-spin-lg .ant-spin-dot {
- width: 30px;
- height: 30px;
- }
- .ant-spin-lg .ant-spin-dot i {
- width: 12px;
- height: 12px;
- }
- .ant-spin.ant-spin-show-text .ant-spin-text {
- display: block;
- }
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
- /* IE10+ */
- .ant-spin-blur {
- background: #fff;
- opacity: 0.5;
- }
- }
- @keyframes antSpinMove {
- to {
- transform: scale(1);
- opacity: 1;
- }
- }
- @keyframes antRotate {
- to {
- transform: rotate(405deg);
- }
- }
- .ant-btn {
- display: inline-block;
- margin-bottom: 0;
- font-weight: 500;
- text-align: center;
- touch-action: manipulation;
- cursor: pointer;
- background-image: none;
- border: 1px solid transparent;
- white-space: nowrap;
- line-height: 1.5;
- padding: 4px 15px;
- font-size: 12px;
- border-radius: 4px;
- user-select: none;
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- position: relative;
- color: #666;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-btn > .anticon {
- line-height: 1;
- }
- .ant-btn,
- .ant-btn:active,
- .ant-btn:focus {
- outline: 0;
- }
- .ant-btn:not([disabled]):hover {
- text-decoration: none;
- }
- .ant-btn:not([disabled]):active {
- outline: 0;
- transition: none;
- }
- .ant-btn.disabled,
- .ant-btn[disabled] {
- cursor: not-allowed;
- }
- .ant-btn.disabled > *,
- .ant-btn[disabled] > * {
- pointer-events: none;
- }
- .ant-btn-lg {
- padding: 4px 15px 5px 15px;
- font-size: 14px;
- border-radius: 4px;
- }
- .ant-btn-sm {
- padding: 1px 7px;
- font-size: 12px;
- border-radius: 2px;
- }
- .ant-btn > a:only-child {
- color: currentColor;
- }
- .ant-btn > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn:hover,
- .ant-btn:focus {
- color: #79b5ff;
- background-color: #f7f7f7;
- border-color: #79b5ff;
- }
- .ant-btn:hover > a:only-child,
- .ant-btn:focus > a:only-child {
- color: currentColor;
- }
- .ant-btn:hover > a:only-child:after,
- .ant-btn:focus > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn:active,
- .ant-btn.active {
- color: #549bf2;
- background-color: #f7f7f7;
- border-color: #549bf2;
- }
- .ant-btn:active > a:only-child,
- .ant-btn.active > a:only-child {
- color: currentColor;
- }
- .ant-btn:active > a:only-child:after,
- .ant-btn.active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn.disabled,
- .ant-btn[disabled],
- .ant-btn.disabled:hover,
- .ant-btn[disabled]:hover,
- .ant-btn.disabled:focus,
- .ant-btn[disabled]:focus,
- .ant-btn.disabled:active,
- .ant-btn[disabled]:active,
- .ant-btn.disabled.active,
- .ant-btn[disabled].active {
- color: #ccc;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-btn.disabled > a:only-child,
- .ant-btn[disabled] > a:only-child,
- .ant-btn.disabled:hover > a:only-child,
- .ant-btn[disabled]:hover > a:only-child,
- .ant-btn.disabled:focus > a:only-child,
- .ant-btn[disabled]:focus > a:only-child,
- .ant-btn.disabled:active > a:only-child,
- .ant-btn[disabled]:active > a:only-child,
- .ant-btn.disabled.active > a:only-child,
- .ant-btn[disabled].active > a:only-child {
- color: currentColor;
- }
- .ant-btn.disabled > a:only-child:after,
- .ant-btn[disabled] > a:only-child:after,
- .ant-btn.disabled:hover > a:only-child:after,
- .ant-btn[disabled]:hover > a:only-child:after,
- .ant-btn.disabled:focus > a:only-child:after,
- .ant-btn[disabled]:focus > a:only-child:after,
- .ant-btn.disabled:active > a:only-child:after,
- .ant-btn[disabled]:active > a:only-child:after,
- .ant-btn.disabled.active > a:only-child:after,
- .ant-btn[disabled].active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn:hover,
- .ant-btn:focus,
- .ant-btn:active,
- .ant-btn.active {
- background: #fff;
- }
- .ant-btn-primary {
- color: #fff;
- background-color: #58a3ff;
- border-color: #58a3ff;
- }
- .ant-btn-primary > a:only-child {
- color: currentColor;
- }
- .ant-btn-primary > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-primary:hover,
- .ant-btn-primary:focus {
- color: #fff;
- background-color: #79b5ff;
- border-color: #79b5ff;
- }
- .ant-btn-primary:hover > a:only-child,
- .ant-btn-primary:focus > a:only-child {
- color: currentColor;
- }
- .ant-btn-primary:hover > a:only-child:after,
- .ant-btn-primary:focus > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-primary:active,
- .ant-btn-primary.active {
- color: #fff;
- background-color: #549bf2;
- border-color: #549bf2;
- }
- .ant-btn-primary:active > a:only-child,
- .ant-btn-primary.active > a:only-child {
- color: currentColor;
- }
- .ant-btn-primary:active > a:only-child:after,
- .ant-btn-primary.active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-primary.disabled,
- .ant-btn-primary[disabled],
- .ant-btn-primary.disabled:hover,
- .ant-btn-primary[disabled]:hover,
- .ant-btn-primary.disabled:focus,
- .ant-btn-primary[disabled]:focus,
- .ant-btn-primary.disabled:active,
- .ant-btn-primary[disabled]:active,
- .ant-btn-primary.disabled.active,
- .ant-btn-primary[disabled].active {
- color: #ccc;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-btn-primary.disabled > a:only-child,
- .ant-btn-primary[disabled] > a:only-child,
- .ant-btn-primary.disabled:hover > a:only-child,
- .ant-btn-primary[disabled]:hover > a:only-child,
- .ant-btn-primary.disabled:focus > a:only-child,
- .ant-btn-primary[disabled]:focus > a:only-child,
- .ant-btn-primary.disabled:active > a:only-child,
- .ant-btn-primary[disabled]:active > a:only-child,
- .ant-btn-primary.disabled.active > a:only-child,
- .ant-btn-primary[disabled].active > a:only-child {
- color: currentColor;
- }
- .ant-btn-primary.disabled > a:only-child:after,
- .ant-btn-primary[disabled] > a:only-child:after,
- .ant-btn-primary.disabled:hover > a:only-child:after,
- .ant-btn-primary[disabled]:hover > a:only-child:after,
- .ant-btn-primary.disabled:focus > a:only-child:after,
- .ant-btn-primary[disabled]:focus > a:only-child:after,
- .ant-btn-primary.disabled:active > a:only-child:after,
- .ant-btn-primary[disabled]:active > a:only-child:after,
- .ant-btn-primary.disabled.active > a:only-child:after,
- .ant-btn-primary[disabled].active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
- border-right-color: #549bf2;
- border-left-color: #549bf2;
- }
- .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
- border-right-color: #549bf2;
- }
- .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
- border-right-color: #d9d9d9;
- }
- .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
- .ant-btn-group .ant-btn-primary + .ant-btn {
- border-left-color: #549bf2;
- }
- .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
- .ant-btn-group .ant-btn-primary + .ant-btn[disabled] {
- border-left-color: #d9d9d9;
- }
- .ant-btn-ghost {
- color: #666;
- background-color: transparent;
- border-color: #d9d9d9;
- }
- .ant-btn-ghost > a:only-child {
- color: currentColor;
- }
- .ant-btn-ghost > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-ghost:hover,
- .ant-btn-ghost:focus {
- color: #79b5ff;
- background-color: transparent;
- border-color: #79b5ff;
- }
- .ant-btn-ghost:hover > a:only-child,
- .ant-btn-ghost:focus > a:only-child {
- color: currentColor;
- }
- .ant-btn-ghost:hover > a:only-child:after,
- .ant-btn-ghost:focus > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-ghost:active,
- .ant-btn-ghost.active {
- color: #549bf2;
- background-color: transparent;
- border-color: #549bf2;
- }
- .ant-btn-ghost:active > a:only-child,
- .ant-btn-ghost.active > a:only-child {
- color: currentColor;
- }
- .ant-btn-ghost:active > a:only-child:after,
- .ant-btn-ghost.active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-ghost.disabled,
- .ant-btn-ghost[disabled],
- .ant-btn-ghost.disabled:hover,
- .ant-btn-ghost[disabled]:hover,
- .ant-btn-ghost.disabled:focus,
- .ant-btn-ghost[disabled]:focus,
- .ant-btn-ghost.disabled:active,
- .ant-btn-ghost[disabled]:active,
- .ant-btn-ghost.disabled.active,
- .ant-btn-ghost[disabled].active {
- color: #ccc;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-btn-ghost.disabled > a:only-child,
- .ant-btn-ghost[disabled] > a:only-child,
- .ant-btn-ghost.disabled:hover > a:only-child,
- .ant-btn-ghost[disabled]:hover > a:only-child,
- .ant-btn-ghost.disabled:focus > a:only-child,
- .ant-btn-ghost[disabled]:focus > a:only-child,
- .ant-btn-ghost.disabled:active > a:only-child,
- .ant-btn-ghost[disabled]:active > a:only-child,
- .ant-btn-ghost.disabled.active > a:only-child,
- .ant-btn-ghost[disabled].active > a:only-child {
- color: currentColor;
- }
- .ant-btn-ghost.disabled > a:only-child:after,
- .ant-btn-ghost[disabled] > a:only-child:after,
- .ant-btn-ghost.disabled:hover > a:only-child:after,
- .ant-btn-ghost[disabled]:hover > a:only-child:after,
- .ant-btn-ghost.disabled:focus > a:only-child:after,
- .ant-btn-ghost[disabled]:focus > a:only-child:after,
- .ant-btn-ghost.disabled:active > a:only-child:after,
- .ant-btn-ghost[disabled]:active > a:only-child:after,
- .ant-btn-ghost.disabled.active > a:only-child:after,
- .ant-btn-ghost[disabled].active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-dashed {
- color: #666;
- background-color: transparent;
- border-color: #d9d9d9;
- border-style: dashed;
- }
- .ant-btn-dashed > a:only-child {
- color: currentColor;
- }
- .ant-btn-dashed > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-dashed:hover,
- .ant-btn-dashed:focus {
- color: #79b5ff;
- background-color: transparent;
- border-color: #79b5ff;
- }
- .ant-btn-dashed:hover > a:only-child,
- .ant-btn-dashed:focus > a:only-child {
- color: currentColor;
- }
- .ant-btn-dashed:hover > a:only-child:after,
- .ant-btn-dashed:focus > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-dashed:active,
- .ant-btn-dashed.active {
- color: #549bf2;
- background-color: transparent;
- border-color: #549bf2;
- }
- .ant-btn-dashed:active > a:only-child,
- .ant-btn-dashed.active > a:only-child {
- color: currentColor;
- }
- .ant-btn-dashed:active > a:only-child:after,
- .ant-btn-dashed.active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-dashed.disabled,
- .ant-btn-dashed[disabled],
- .ant-btn-dashed.disabled:hover,
- .ant-btn-dashed[disabled]:hover,
- .ant-btn-dashed.disabled:focus,
- .ant-btn-dashed[disabled]:focus,
- .ant-btn-dashed.disabled:active,
- .ant-btn-dashed[disabled]:active,
- .ant-btn-dashed.disabled.active,
- .ant-btn-dashed[disabled].active {
- color: #ccc;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-btn-dashed.disabled > a:only-child,
- .ant-btn-dashed[disabled] > a:only-child,
- .ant-btn-dashed.disabled:hover > a:only-child,
- .ant-btn-dashed[disabled]:hover > a:only-child,
- .ant-btn-dashed.disabled:focus > a:only-child,
- .ant-btn-dashed[disabled]:focus > a:only-child,
- .ant-btn-dashed.disabled:active > a:only-child,
- .ant-btn-dashed[disabled]:active > a:only-child,
- .ant-btn-dashed.disabled.active > a:only-child,
- .ant-btn-dashed[disabled].active > a:only-child {
- color: currentColor;
- }
- .ant-btn-dashed.disabled > a:only-child:after,
- .ant-btn-dashed[disabled] > a:only-child:after,
- .ant-btn-dashed.disabled:hover > a:only-child:after,
- .ant-btn-dashed[disabled]:hover > a:only-child:after,
- .ant-btn-dashed.disabled:focus > a:only-child:after,
- .ant-btn-dashed[disabled]:focus > a:only-child:after,
- .ant-btn-dashed.disabled:active > a:only-child:after,
- .ant-btn-dashed[disabled]:active > a:only-child:after,
- .ant-btn-dashed.disabled.active > a:only-child:after,
- .ant-btn-dashed[disabled].active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-btn-circle,
- .ant-btn-circle-outline {
- width: 28px;
- height: 28px;
- padding: 0;
- font-size: 14px;
- border-radius: 50%;
- }
- .ant-btn-circle.ant-btn-lg,
- .ant-btn-circle-outline.ant-btn-lg {
- width: 32px;
- height: 32px;
- padding: 0;
- font-size: 16px;
- border-radius: 50%;
- }
- .ant-btn-circle.ant-btn-sm,
- .ant-btn-circle-outline.ant-btn-sm {
- width: 22px;
- height: 22px;
- padding: 0;
- font-size: 12px;
- border-radius: 50%;
- }
- .ant-btn:before {
- position: absolute;
- top: -1px;
- left: -1px;
- bottom: -1px;
- right: -1px;
- background: #fff;
- opacity: 0.35;
- content: '';
- border-radius: inherit;
- z-index: 1;
- transition: opacity .2s;
- pointer-events: none;
- display: none;
- }
- .ant-btn.ant-btn-loading {
- padding-left: 29px;
- pointer-events: none;
- position: relative;
- }
- .ant-btn.ant-btn-loading .anticon {
- margin-left: -14px;
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- }
- .ant-btn.ant-btn-loading:before {
- display: block;
- }
- .ant-btn-sm.ant-btn-loading {
- padding-left: 24px;
- }
- .ant-btn-sm.ant-btn-loading .anticon {
- margin-left: -17px;
- }
- .ant-btn-group {
- position: relative;
- display: inline-block;
- }
- .ant-btn-group > .ant-btn {
- position: relative;
- }
- .ant-btn-group > .ant-btn:hover,
- .ant-btn-group > .ant-btn:focus,
- .ant-btn-group > .ant-btn:active,
- .ant-btn-group > .ant-btn.active {
- z-index: 2;
- }
- .ant-btn-group-lg > .ant-btn {
- padding: 4px 15px 5px 15px;
- font-size: 14px;
- border-radius: 4px;
- }
- .ant-btn-group-sm > .ant-btn {
- padding: 1px 7px;
- font-size: 12px;
- border-radius: 2px;
- }
- .ant-btn-group-sm > .ant-btn > .anticon {
- font-size: 12px;
- }
- .ant-btn-group .ant-btn + .ant-btn,
- .ant-btn + .ant-btn-group,
- .ant-btn-group + .ant-btn,
- .ant-btn-group + .ant-btn-group {
- margin-left: -1px;
- }
- .ant-btn-group .ant-btn:not(:first-child):not(:last-child) {
- border-radius: 0;
- padding-left: 8px;
- padding-right: 8px;
- }
- .ant-btn-group > .ant-btn:first-child {
- margin-left: 0;
- }
- .ant-btn-group > .ant-btn:first-child:not(:last-child) {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
- padding-right: 8px;
- }
- .ant-btn-group > .ant-btn:last-child:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- padding-left: 8px;
- }
- .ant-btn-group > .ant-btn-group {
- float: left;
- }
- .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
- border-radius: 0;
- }
- .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
- padding-right: 8px;
- }
- .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- padding-left: 8px;
- }
- .ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline).ant-btn-icon-only {
- padding-left: 8px;
- padding-right: 8px;
- }
- .ant-btn > .anticon + span,
- .ant-btn > span + .anticon {
- margin-left: 0.5em;
- }
- .ant-btn-clicked:after {
- content: '';
- position: absolute;
- top: -1px;
- left: -1px;
- bottom: -1px;
- right: -1px;
- border-radius: inherit;
- border: 0 solid #58a3ff;
- opacity: 0.4;
- animation: buttonEffect 0.36s ease-out forwards;
- display: block;
- }
- @keyframes buttonEffect {
- to {
- opacity: 0;
- top: -6px;
- left: -6px;
- bottom: -6px;
- right: -6px;
- border-width: 6px;
- }
- }
- .ant-input-search-wrapper {
- display: inline-block;
- position: relative;
- }
- .ant-input-search-wrapper .ant-input-search {
- transition: all .3s ease;
- }
- .ant-input-search-wrapper .ant-input-search-icon {
- position: absolute;
- right: 8px;
- cursor: pointer;
- transition: all .3s ease;
- font-size: 14px;
- height: 20px;
- line-height: 20px;
- top: 50%;
- margin-top: -10px;
- }
- .ant-input-search-wrapper .ant-input-search-icon:hover {
- color: #58a3ff;
- }
- .ant-input-search-wrapper:hover .ant-input-search:not[disabled] {
- border: 1px solid #58a3ff;
- }
- .ant-search-input-wrapper {
- display: inline-block;
- vertical-align: middle;
- }
- .ant-search-input.ant-input-group .ant-input:first-child,
- .ant-search-input.ant-input-group .ant-select:first-child {
- border-radius: 4px;
- position: absolute;
- top: -1px;
- width: 100%;
- }
- .ant-search-input.ant-input-group .ant-input:first-child {
- padding-right: 36px;
- }
- .ant-search-input .ant-search-btn {
- color: #666;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- border-radius: 0 3px 3px 0;
- left: -1px;
- position: relative;
- border-width: 0 0 0 1px;
- z-index: 2;
- padding-left: 8px;
- padding-right: 8px;
- }
- .ant-search-input .ant-search-btn > a:only-child {
- color: currentColor;
- }
- .ant-search-input .ant-search-btn > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input .ant-search-btn:hover,
- .ant-search-input .ant-search-btn:focus {
- color: #79b5ff;
- background-color: #f7f7f7;
- border-color: #79b5ff;
- }
- .ant-search-input .ant-search-btn:hover > a:only-child,
- .ant-search-input .ant-search-btn:focus > a:only-child {
- color: currentColor;
- }
- .ant-search-input .ant-search-btn:hover > a:only-child:after,
- .ant-search-input .ant-search-btn:focus > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input .ant-search-btn:active,
- .ant-search-input .ant-search-btn.active {
- color: #549bf2;
- background-color: #f7f7f7;
- border-color: #549bf2;
- }
- .ant-search-input .ant-search-btn:active > a:only-child,
- .ant-search-input .ant-search-btn.active > a:only-child {
- color: currentColor;
- }
- .ant-search-input .ant-search-btn:active > a:only-child:after,
- .ant-search-input .ant-search-btn.active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input .ant-search-btn.disabled,
- .ant-search-input .ant-search-btn[disabled],
- .ant-search-input .ant-search-btn.disabled:hover,
- .ant-search-input .ant-search-btn[disabled]:hover,
- .ant-search-input .ant-search-btn.disabled:focus,
- .ant-search-input .ant-search-btn[disabled]:focus,
- .ant-search-input .ant-search-btn.disabled:active,
- .ant-search-input .ant-search-btn[disabled]:active,
- .ant-search-input .ant-search-btn.disabled.active,
- .ant-search-input .ant-search-btn[disabled].active {
- color: #ccc;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-search-input .ant-search-btn.disabled > a:only-child,
- .ant-search-input .ant-search-btn[disabled] > a:only-child,
- .ant-search-input .ant-search-btn.disabled:hover > a:only-child,
- .ant-search-input .ant-search-btn[disabled]:hover > a:only-child,
- .ant-search-input .ant-search-btn.disabled:focus > a:only-child,
- .ant-search-input .ant-search-btn[disabled]:focus > a:only-child,
- .ant-search-input .ant-search-btn.disabled:active > a:only-child,
- .ant-search-input .ant-search-btn[disabled]:active > a:only-child,
- .ant-search-input .ant-search-btn.disabled.active > a:only-child,
- .ant-search-input .ant-search-btn[disabled].active > a:only-child {
- color: currentColor;
- }
- .ant-search-input .ant-search-btn.disabled > a:only-child:after,
- .ant-search-input .ant-search-btn[disabled] > a:only-child:after,
- .ant-search-input .ant-search-btn.disabled:hover > a:only-child:after,
- .ant-search-input .ant-search-btn[disabled]:hover > a:only-child:after,
- .ant-search-input .ant-search-btn.disabled:focus > a:only-child:after,
- .ant-search-input .ant-search-btn[disabled]:focus > a:only-child:after,
- .ant-search-input .ant-search-btn.disabled:active > a:only-child:after,
- .ant-search-input .ant-search-btn[disabled]:active > a:only-child:after,
- .ant-search-input .ant-search-btn.disabled.active > a:only-child:after,
- .ant-search-input .ant-search-btn[disabled].active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input .ant-search-btn:hover,
- .ant-search-input .ant-search-btn:focus,
- .ant-search-input .ant-search-btn:active,
- .ant-search-input .ant-search-btn.active {
- background: #fff;
- }
- .ant-search-input .ant-search-btn:hover {
- border-color: #d9d9d9;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty,
- .ant-search-input:hover .ant-search-btn-noempty {
- color: #fff;
- background-color: #58a3ff;
- border-color: #58a3ff;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty > a:only-child {
- color: currentColor;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover,
- .ant-search-input:hover .ant-search-btn-noempty:hover,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus,
- .ant-search-input:hover .ant-search-btn-noempty:focus {
- color: #fff;
- background-color: #79b5ff;
- border-color: #79b5ff;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child {
- color: currentColor;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active,
- .ant-search-input:hover .ant-search-btn-noempty:active,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active,
- .ant-search-input:hover .ant-search-btn-noempty.active {
- color: #fff;
- background-color: #549bf2;
- border-color: #549bf2;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child {
- color: currentColor;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled,
- .ant-search-input:hover .ant-search-btn-noempty.disabled,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled],
- .ant-search-input:hover .ant-search-btn-noempty[disabled],
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:hover,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:focus,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:active,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:active,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active,
- .ant-search-input:hover .ant-search-btn-noempty.disabled.active,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active,
- .ant-search-input:hover .ant-search-btn-noempty[disabled].active {
- color: #ccc;
- background-color: #f7f7f7;
- border-color: #d9d9d9;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child,
- .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child {
- color: currentColor;
- }
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child:after,
- .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child:after,
- .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child:after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: transparent;
- }
- .ant-search-input .ant-select-combobox .ant-select-selection__rendered {
- margin-right: 29px;
- }
- .ant-input {
- position: relative;
- display: inline-block;
- padding: 4px 7px;
- width: 100%;
- height: 28px;
- cursor: text;
- font-size: 12px;
- line-height: 1.5;
- color: #666;
- background-color: #fff;
- background-image: none;
- border: 1px solid #d9d9d9;
- border-radius: 4px;
- transition: all .3s;
- }
- .ant-input::-moz-placeholder {
- color: #ccc;
- opacity: 1;
- }
- .ant-input:-ms-input-placeholder {
- color: #ccc;
- }
- .ant-input::-webkit-input-placeholder {
- color: #ccc;
- }
- .ant-input:hover {
- border-color: #79b5ff;
- }
- .ant-input:focus {
- border-color: #79b5ff;
- outline: 0;
- box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
- }
- .ant-input[disabled] {
- background-color: #f7f7f7;
- opacity: 1;
- cursor: not-allowed;
- color: #ccc;
- }
- .ant-input[disabled]:hover {
- border-color: #e1e1e1;
- }
- textarea.ant-input {
- max-width: 100%;
- height: auto;
- vertical-align: bottom;
- }
- .ant-input-lg {
- padding: 6px 7px;
- height: 32px;
- }
- .ant-input-sm {
- padding: 1px 7px;
- height: 22px;
- border-radius: 2px;
- }
- .ant-input-group {
- position: relative;
- display: table;
- border-collapse: separate;
- border-spacing: 0;
- width: 100%;
- }
- .ant-input-group[class*="col-"] {
- float: none;
- padding-left: 0;
- padding-right: 0;
- }
- .ant-input-group > [class*="col-"] {
- padding-right: 8px;
- }
- .ant-input-group-addon,
- .ant-input-group-wrap,
- .ant-input-group > .ant-input {
- display: table-cell;
- }
- .ant-input-group-addon:not(:first-child):not(:last-child),
- .ant-input-group-wrap:not(:first-child):not(:last-child),
- .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
- border-radius: 0;
- }
- .ant-input-group-addon,
- .ant-input-group-wrap {
- width: 1px;
- white-space: nowrap;
- vertical-align: middle;
- }
- .ant-input-group-wrap > * {
- display: block !important;
- }
- .ant-input-group .ant-input {
- position: relative;
- z-index: 2;
- float: left;
- width: 100%;
- margin-bottom: 0;
- }
- .ant-input-group-addon {
- padding: 4px 7px;
- font-size: 12px;
- font-weight: normal;
- line-height: 1;
- color: #666;
- text-align: center;
- background-color: #eee;
- border: 1px solid #d9d9d9;
- border-radius: 4px;
- position: relative;
- transition: all .3s;
- }
- .ant-input-group-addon .ant-select {
- margin: -5px -7px;
- }
- .ant-input-group-addon .ant-select .ant-select-selection {
- background-color: inherit;
- border: 0;
- margin: -1px;
- border: 1px solid transparent;
- box-shadow: none;
- }
- .ant-input-group-addon .ant-select-open .ant-select-selection,
- .ant-input-group-addon .ant-select-focused .ant-select-selection {
- color: #58a3ff;
- }
- .ant-input-group-addon > i:only-child:after {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .ant-input-group > span > .ant-input:first-child,
- .ant-input-group > .ant-input:first-child,
- .ant-input-group-addon:first-child {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
- }
- .ant-input-group > span > .ant-input:first-child .ant-select .ant-select-selection,
- .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
- .ant-input-group-addon:first-child .ant-select .ant-select-selection {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
- }
- .ant-input-group-addon:first-child {
- border-right: 0;
- }
- .ant-input-group-addon:last-child {
- border-left: 0;
- }
- .ant-input-group > .ant-input:last-child,
- .ant-input-group-addon:last-child {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- }
- .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
- .ant-input-group-addon:last-child .ant-select .ant-select-selection {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- }
- .ant-input-group-lg .ant-input,
- .ant-input-group-lg > .ant-input-group-addon {
- padding: 6px 7px;
- height: 32px;
- }
- .ant-input-group-sm .ant-input,
- .ant-input-group-sm > .ant-input-group-addon {
- padding: 1px 7px;
- height: 22px;
- border-radius: 2px;
- }
- .ant-message {
- font-size: 12px;
- position: fixed;
- z-index: 1010;
- width: 100%;
- top: 16px;
- left: 0;
- }
- .ant-message-notice {
- width: auto;
- vertical-align: middle;
- position: absolute;
- left: 50%;
- }
- .ant-message-notice-content {
- position: relative;
- right: 50%;
- padding: 8px 16px;
- border-radius: 4px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
- background: #fff;
- display: block;
- }
- .ant-message-success .anticon {
- color: #87d068;
- }
- .ant-message-error .anticon {
- color: #f50;
- }
- .ant-message-warning .anticon {
- color: #fa0;
- }
- .ant-message-info .anticon,
- .ant-message-loading .anticon {
- color: #58a3ff;
- }
- .ant-message .anticon {
- margin-right: 8px;
- font-size: 14px;
- top: 1px;
- position: relative;
- }
- .login-box {
- width: 400px;
- height: 320px;
- padding: 50px 50px 0 50px;
- background: #fff;
- margin: 0 auto;
- }
- .login-box input {
- height: 36px;
- border-radius: 0px;
- }
- .login-box button {
- width: 300px;
- height: 36px;
- }
- .login-box .ant-input-group-addon {
- font-size: 17px;
- }
- .login-box .user-box {
- margin-bottom: 20px;
- }
- .login-box .pw-box {
- margin-bottom: 20px;
- }
- .ant-checkbox-wrapper {
- margin-bottom: 20px;
- font-size: 14px;
- color: #878787;
- }
- .ant-btn {
- font-size: 18px;
- }
- input::-webkit-input-placeholder,
- textarea::-webkit-input-placeholder {
- color: #333;
- }
- input:-moz-placeholder,
- textarea:-moz-placeholder {
- color: #333;
- }
- input::-moz-placeholder,
- textarea::-moz-placeholder {
- color: #333;
- }
- input:-ms-input-placeholder,
- textarea:-ms-input-placeholder {
- color: #333;
- }
|