signIn.css 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287
  1. body {
  2. color: #333;
  3. font-size: 14px;
  4. background: #f0f0f0;
  5. }
  6. #root {
  7. width: 100%;
  8. height: 100%;
  9. min-width: 960px;
  10. }
  11. #root .wrap {
  12. height: 100%;
  13. }
  14. .header {
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. height: 100px;
  19. width: 100%;
  20. background: #fff;
  21. box-shadow: 0 2px 6px 0px #ccc;
  22. }
  23. .clearfix:before,
  24. .clearfix:after {
  25. content: ".";
  26. display: block;
  27. height: 0;
  28. clear: both;
  29. visibility: hidden;
  30. overflow: hidden;
  31. }
  32. .footer {
  33. border-top: 1px solid #d8d8d8;
  34. }
  35. .wrap {
  36. width: 100%;
  37. height: 100%;
  38. min-height: 700px;
  39. margin: 0 auto;
  40. position: relative;
  41. background-image: url(image/bg.jpg);
  42. }
  43. .wrap .login-header {
  44. background: #fff;
  45. box-shadow: 0 2px 6px 0px #ccc;
  46. }
  47. .wrap .login-header .login-logo {
  48. padding: 20px;
  49. overflow: hidden;
  50. width: 960px;
  51. margin: 0 auto;
  52. }
  53. .wrap .login-header .login-logo .logo {
  54. width: 80px;
  55. padding-top: 60px;
  56. float: left;
  57. border-right: 1px solid #eee;
  58. position: relative;
  59. overflow: hidden;
  60. }
  61. .wrap .login-header .login-logo .logo img {
  62. position: absolute;
  63. top: 0;
  64. left: 0;
  65. height: 60px;
  66. width: 60px;
  67. }
  68. .wrap .login-header .login-logo .logo-text {
  69. width: 835px;
  70. float: left;
  71. line-height: 60px;
  72. font-size: 24px;
  73. }
  74. .wrap .login-header .login-logo .logo-text .back {
  75. float: right;
  76. font-size: 16px;
  77. line-height: 60px;
  78. }
  79. .wrap .login-header .login-logo .logo-text .back a {
  80. color: #333;
  81. }
  82. .wrap .login-header .login-logo .logo-text span {
  83. margin-left: 24px;
  84. }
  85. .wrap .content {
  86. width: 960px;
  87. height: 100%;
  88. margin: 0 auto;
  89. margin-top: 5%;
  90. }
  91. .wrap .content .login-left {
  92. display: none;
  93. float: left;
  94. margin-top: 54px;
  95. background: #fff;
  96. }
  97. .wrap .content .login-left img {
  98. width: 520px;
  99. height: 340px;
  100. }
  101. .wrap .content .login-right {
  102. float: right;
  103. width: 340px;
  104. border: 1px solid #d8d8d8;
  105. margin: 40px;
  106. }
  107. .wrap .content .login-right .tabtwo {
  108. margin-left: 40px;
  109. }
  110. .wrap .content .login-right .ant-tabs {
  111. background: #fff;
  112. }
  113. .wrap .content .login-form .ant-checkbox-wrapper {
  114. width: 50%;
  115. margin-right: 0;
  116. }
  117. .wrap .content .login-form button {
  118. width: 100%;
  119. margin: 20px 0;
  120. }
  121. .wrap .content .login-form .login-form-forgot {
  122. float: right;
  123. }
  124. .wrap .content .login-form .antd-spin {
  125. position: fixed;
  126. left: 0;
  127. top: 0;
  128. height: 100%;
  129. width: 100%;
  130. }
  131. .wrap .content .login-other {
  132. padding: 0 20px;
  133. border-top: 1px solid #eee;
  134. background: #fff;
  135. }
  136. .wrap .content .login-other ul {
  137. width: 100%;
  138. float: left;
  139. }
  140. .wrap .content .login-other ul li {
  141. cursor: pointer;
  142. width: 22%;
  143. float: left;
  144. padding: 14px 10px 14px 0px;
  145. }
  146. .wrap .content .login-other ul li img {
  147. height: 18px;
  148. vertical-align: middle;
  149. float: left;
  150. }
  151. .wrap .content .login-other ul li p {
  152. font-size: 14px;
  153. line-height: 18px;
  154. float: left;
  155. margin-left: 4px;
  156. }
  157. .wrap .content .login-other ul .join {
  158. width: 34%;
  159. padding: 14px 0 14px 12px;
  160. }
  161. .wrap .content .login-other ul .join p {
  162. margin-left: 6px;
  163. font-size: 16px;
  164. color: #ea0862;
  165. }
  166. .wrap .footer {
  167. position: absolute;
  168. bottom: 0;
  169. left: 0;
  170. width: 100%;
  171. padding-top: 20px;
  172. text-align: center;
  173. background: #fff;
  174. }
  175. .wrap .footer p {
  176. margin: 10px 0;
  177. }
  178. /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
  179. /**
  180. * 1. Change the default font family in all browsers (opinionated).
  181. * 2. Correct the line height in all browsers.
  182. * 3. Prevent adjustments of font size after orientation changes in
  183. * IE on Windows Phone and in iOS.
  184. */
  185. /* Document
  186. ========================================================================== */
  187. html {
  188. font-family: sans-serif;
  189. /* 1 */
  190. line-height: 1.15;
  191. /* 2 */
  192. -ms-text-size-adjust: 100%;
  193. /* 3 */
  194. -webkit-text-size-adjust: 100%;
  195. /* 3 */
  196. }
  197. /* Sections
  198. ========================================================================== */
  199. /**
  200. * Remove the margin in all browsers (opinionated).
  201. */
  202. body {
  203. margin: 0;
  204. }
  205. /**
  206. * Add the correct display in IE 9-.
  207. */
  208. article,
  209. aside,
  210. footer,
  211. header,
  212. nav,
  213. section {
  214. display: block;
  215. }
  216. /**
  217. * Correct the font size and margin on `h1` elements within `section` and
  218. * `article` contexts in Chrome, Firefox, and Safari.
  219. */
  220. h1 {
  221. font-size: 2em;
  222. margin: 0.67em 0;
  223. }
  224. /* Grouping content
  225. ========================================================================== */
  226. /**
  227. * Add the correct display in IE 9-.
  228. * 1. Add the correct display in IE.
  229. */
  230. figcaption,
  231. figure,
  232. main {
  233. /* 1 */
  234. display: block;
  235. }
  236. /**
  237. * Add the correct margin in IE 8.
  238. */
  239. figure {
  240. margin: 1em 40px;
  241. }
  242. /**
  243. * 1. Add the correct box sizing in Firefox.
  244. * 2. Show the overflow in Edge and IE.
  245. */
  246. hr {
  247. box-sizing: content-box;
  248. /* 1 */
  249. height: 0;
  250. /* 1 */
  251. overflow: visible;
  252. /* 2 */
  253. }
  254. /**
  255. * 1. Correct the inheritance and scaling of font size in all browsers.
  256. * 2. Correct the odd `em` font sizing in all browsers.
  257. */
  258. pre {
  259. font-family: monospace, monospace;
  260. /* 1 */
  261. font-size: 1em;
  262. /* 2 */
  263. }
  264. /* Text-level semantics
  265. ========================================================================== */
  266. /**
  267. * 1. Remove the gray background on active links in IE 10.
  268. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  269. */
  270. a {
  271. background-color: transparent;
  272. /* 1 */
  273. -webkit-text-decoration-skip: objects;
  274. /* 2 */
  275. }
  276. /**
  277. * Remove the outline on focused links when they are also active or hovered
  278. * in all browsers (opinionated).
  279. */
  280. a:active,
  281. a:hover {
  282. outline-width: 0;
  283. }
  284. /**
  285. * 1. Remove the bottom border in Firefox 39-.
  286. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  287. */
  288. abbr[title] {
  289. border-bottom: none;
  290. /* 1 */
  291. text-decoration: underline;
  292. /* 2 */
  293. text-decoration: underline dotted;
  294. /* 2 */
  295. }
  296. /**
  297. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  298. */
  299. b,
  300. strong {
  301. font-weight: inherit;
  302. }
  303. /**
  304. * Add the correct font weight in Chrome, Edge, and Safari.
  305. */
  306. b,
  307. strong {
  308. font-weight: bolder;
  309. }
  310. /**
  311. * 1. Correct the inheritance and scaling of font size in all browsers.
  312. * 2. Correct the odd `em` font sizing in all browsers.
  313. */
  314. code,
  315. kbd,
  316. samp {
  317. font-family: monospace, monospace;
  318. /* 1 */
  319. font-size: 1em;
  320. /* 2 */
  321. }
  322. /**
  323. * Add the correct font style in Android 4.3-.
  324. */
  325. dfn {
  326. font-style: italic;
  327. }
  328. /**
  329. * Add the correct background and color in IE 9-.
  330. */
  331. mark {
  332. background-color: #ff0;
  333. color: #000;
  334. }
  335. /**
  336. * Add the correct font size in all browsers.
  337. */
  338. small {
  339. font-size: 80%;
  340. }
  341. /**
  342. * Prevent `sub` and `sup` elements from affecting the line height in
  343. * all browsers.
  344. */
  345. sub,
  346. sup {
  347. font-size: 75%;
  348. line-height: 0;
  349. position: relative;
  350. vertical-align: baseline;
  351. }
  352. sub {
  353. bottom: -0.25em;
  354. }
  355. sup {
  356. top: -0.5em;
  357. }
  358. /* Embedded content
  359. ========================================================================== */
  360. /**
  361. * Add the correct display in IE 9-.
  362. */
  363. audio,
  364. video {
  365. display: inline-block;
  366. }
  367. /**
  368. * Add the correct display in iOS 4-7.
  369. */
  370. audio:not([controls]) {
  371. display: none;
  372. height: 0;
  373. }
  374. /**
  375. * Remove the border on images inside links in IE 10-.
  376. */
  377. img {
  378. border-style: none;
  379. }
  380. /**
  381. * Hide the overflow in IE.
  382. */
  383. svg:not(:root) {
  384. overflow: hidden;
  385. }
  386. /* Forms
  387. ========================================================================== */
  388. /**
  389. * 1. Change the font styles in all browsers (opinionated).
  390. * 2. Remove the margin in Firefox and Safari.
  391. */
  392. button,
  393. input,
  394. optgroup,
  395. select,
  396. textarea {
  397. font-family: sans-serif;
  398. /* 1 */
  399. font-size: 100%;
  400. /* 1 */
  401. line-height: 1.15;
  402. /* 1 */
  403. margin: 0;
  404. /* 2 */
  405. }
  406. /**
  407. * Show the overflow in IE.
  408. * 1. Show the overflow in Edge.
  409. */
  410. button,
  411. input {
  412. /* 1 */
  413. overflow: visible;
  414. }
  415. /**
  416. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  417. * 1. Remove the inheritance of text transform in Firefox.
  418. */
  419. button,
  420. select {
  421. /* 1 */
  422. text-transform: none;
  423. }
  424. /**
  425. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  426. * controls in Android 4.
  427. * 2. Correct the inability to style clickable types in iOS and Safari.
  428. */
  429. button,
  430. html [type="button"],
  431. [type="reset"],
  432. [type="submit"] {
  433. -webkit-appearance: button;
  434. /* 2 */
  435. }
  436. /**
  437. * Remove the inner border and padding in Firefox.
  438. */
  439. button::-moz-focus-inner,
  440. [type="button"]::-moz-focus-inner,
  441. [type="reset"]::-moz-focus-inner,
  442. [type="submit"]::-moz-focus-inner {
  443. border-style: none;
  444. padding: 0;
  445. }
  446. /**
  447. * Restore the focus styles unset by the previous rule.
  448. */
  449. button:-moz-focusring,
  450. [type="button"]:-moz-focusring,
  451. [type="reset"]:-moz-focusring,
  452. [type="submit"]:-moz-focusring {
  453. outline: 1px dotted ButtonText;
  454. }
  455. /**
  456. * Change the border, margin, and padding in all browsers (opinionated).
  457. */
  458. fieldset {
  459. border: 1px solid #c0c0c0;
  460. margin: 0 2px;
  461. padding: 0.35em 0.625em 0.75em;
  462. }
  463. /**
  464. * 1. Correct the text wrapping in Edge and IE.
  465. * 2. Correct the color inheritance from `fieldset` elements in IE.
  466. * 3. Remove the padding so developers are not caught out when they zero out
  467. * `fieldset` elements in all browsers.
  468. */
  469. legend {
  470. box-sizing: border-box;
  471. /* 1 */
  472. color: inherit;
  473. /* 2 */
  474. display: table;
  475. /* 1 */
  476. max-width: 100%;
  477. /* 1 */
  478. padding: 0;
  479. /* 3 */
  480. white-space: normal;
  481. /* 1 */
  482. }
  483. /**
  484. * 1. Add the correct display in IE 9-.
  485. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  486. */
  487. progress {
  488. display: inline-block;
  489. /* 1 */
  490. vertical-align: baseline;
  491. /* 2 */
  492. }
  493. /**
  494. * Remove the default vertical scrollbar in IE.
  495. */
  496. textarea {
  497. overflow: auto;
  498. }
  499. /**
  500. * 1. Add the correct box sizing in IE 10-.
  501. * 2. Remove the padding in IE 10-.
  502. */
  503. [type="checkbox"],
  504. [type="radio"] {
  505. box-sizing: border-box;
  506. /* 1 */
  507. padding: 0;
  508. /* 2 */
  509. }
  510. /**
  511. * Correct the cursor style of increment and decrement buttons in Chrome.
  512. */
  513. [type="number"]::-webkit-inner-spin-button,
  514. [type="number"]::-webkit-outer-spin-button {
  515. height: auto;
  516. }
  517. /**
  518. * 1. Correct the odd appearance in Chrome and Safari.
  519. * 2. Correct the outline style in Safari.
  520. */
  521. [type="search"] {
  522. -webkit-appearance: textfield;
  523. /* 1 */
  524. outline-offset: -2px;
  525. /* 2 */
  526. }
  527. /**
  528. * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  529. */
  530. [type="search"]::-webkit-search-cancel-button,
  531. [type="search"]::-webkit-search-decoration {
  532. -webkit-appearance: none;
  533. }
  534. /**
  535. * 1. Correct the inability to style clickable types in iOS and Safari.
  536. * 2. Change font properties to `inherit` in Safari.
  537. */
  538. ::-webkit-file-upload-button {
  539. -webkit-appearance: button;
  540. /* 1 */
  541. font: inherit;
  542. /* 2 */
  543. }
  544. /* Interactive
  545. ========================================================================== */
  546. /*
  547. * Add the correct display in IE 9-.
  548. * 1. Add the correct display in Edge, IE, and Firefox.
  549. */
  550. details,
  551. menu {
  552. display: block;
  553. }
  554. /*
  555. * Add the correct display in all browsers.
  556. */
  557. summary {
  558. display: list-item;
  559. }
  560. /* Scripting
  561. ========================================================================== */
  562. /**
  563. * Add the correct display in IE 9-.
  564. */
  565. canvas {
  566. display: inline-block;
  567. }
  568. /**
  569. * Add the correct display in IE.
  570. */
  571. template {
  572. display: none;
  573. }
  574. /* Hidden
  575. ========================================================================== */
  576. /**
  577. * Add the correct display in IE 10-.
  578. */
  579. [hidden] {
  580. display: none;
  581. }
  582. * {
  583. box-sizing: border-box;
  584. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  585. }
  586. *:before,
  587. *:after {
  588. box-sizing: border-box;
  589. }
  590. html,
  591. body {
  592. width: 100%;
  593. height: 100%;
  594. }
  595. body {
  596. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
  597. font-size: 12px;
  598. line-height: 1.5;
  599. color: #666;
  600. background-color: #fff;
  601. }
  602. body,
  603. div,
  604. dl,
  605. dt,
  606. dd,
  607. ul,
  608. ol,
  609. li,
  610. h1,
  611. h2,
  612. h3,
  613. h4,
  614. h5,
  615. h6,
  616. pre,
  617. code,
  618. form,
  619. fieldset,
  620. legend,
  621. input,
  622. textarea,
  623. p,
  624. blockquote,
  625. th,
  626. td,
  627. hr,
  628. button,
  629. article,
  630. aside,
  631. details,
  632. figcaption,
  633. figure,
  634. footer,
  635. header,
  636. hgroup,
  637. menu,
  638. nav,
  639. section {
  640. margin: 0;
  641. padding: 0;
  642. }
  643. button,
  644. input,
  645. select,
  646. textarea {
  647. font-family: inherit;
  648. font-size: inherit;
  649. line-height: inherit;
  650. color: inherit;
  651. }
  652. ul,
  653. ol {
  654. list-style: none;
  655. }
  656. input::-ms-clear,
  657. input::-ms-reveal {
  658. display: none;
  659. }
  660. ::selection {
  661. background: #58a3ff;
  662. color: #fff;
  663. }
  664. a {
  665. color: #58a3ff;
  666. background: transparent;
  667. text-decoration: none;
  668. outline: none;
  669. cursor: pointer;
  670. transition: color .3s ease;
  671. }
  672. a:hover {
  673. color: #79b5ff;
  674. }
  675. a:active {
  676. color: #549bf2;
  677. }
  678. a:active,
  679. a:hover {
  680. outline: 0;
  681. text-decoration: none;
  682. }
  683. a[disabled] {
  684. color: #ccc;
  685. cursor: not-allowed;
  686. pointer-events: none;
  687. }
  688. .ant-divider {
  689. margin: 0 6px;
  690. display: inline-block;
  691. height: 8px;
  692. width: 1px;
  693. background: #ccc;
  694. }
  695. code,
  696. kbd,
  697. pre,
  698. samp {
  699. font-family: Consolas, Menlo, Courier, monospace;
  700. }
  701. .clearfix {
  702. zoom: 1;
  703. }
  704. .clearfix:before,
  705. .clearfix:after {
  706. content: " ";
  707. display: table;
  708. }
  709. .clearfix:after {
  710. clear: both;
  711. visibility: hidden;
  712. font-size: 0;
  713. height: 0;
  714. }
  715. @font-face {
  716. font-family: 'anticon';
  717. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot');
  718. /* IE9*/
  719. 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');
  720. /* iOS 4.1- */
  721. }
  722. .anticon {
  723. display: inline-block;
  724. font-style: normal;
  725. vertical-align: baseline;
  726. text-align: center;
  727. text-transform: none;
  728. text-rendering: auto;
  729. line-height: 1;
  730. text-rendering: optimizeLegibility;
  731. -webkit-font-smoothing: antialiased;
  732. -moz-osx-font-smoothing: grayscale;
  733. }
  734. .anticon:before {
  735. display: block;
  736. font-family: "anticon" !important;
  737. }
  738. .anticon-step-forward:before {
  739. content: "\E600";
  740. }
  741. .anticon-step-backward:before {
  742. content: "\E601";
  743. }
  744. .anticon-forward:before {
  745. content: "\E602";
  746. }
  747. .anticon-backward:before {
  748. content: "\E603";
  749. }
  750. .anticon-caret-right:before {
  751. content: "\E604";
  752. }
  753. .anticon-caret-left:before {
  754. content: "\E605";
  755. }
  756. .anticon-caret-down:before {
  757. content: "\E606";
  758. }
  759. .anticon-caret-up:before {
  760. content: "\E607";
  761. }
  762. .anticon-right-circle:before {
  763. content: "\E608";
  764. }
  765. .anticon-circle-right:before {
  766. content: "\E608";
  767. }
  768. .anticon-caret-circle-right:before {
  769. content: "\E608";
  770. }
  771. .anticon-left-circle:before {
  772. content: "\E609";
  773. }
  774. .anticon-circle-left:before {
  775. content: "\E609";
  776. }
  777. .anticon-caret-circle-left:before {
  778. content: "\E609";
  779. }
  780. .anticon-up-circle:before {
  781. content: "\E60A";
  782. }
  783. .anticon-circle-up:before {
  784. content: "\E60A";
  785. }
  786. .anticon-caret-circle-up:before {
  787. content: "\E60A";
  788. }
  789. .anticon-down-circle:before {
  790. content: "\E60B";
  791. }
  792. .anticon-circle-down:before {
  793. content: "\E60B";
  794. }
  795. .anticon-caret-circle-down:before {
  796. content: "\E60B";
  797. }
  798. .anticon-right-circle-o:before {
  799. content: "\E60C";
  800. }
  801. .anticon-circle-o-right:before {
  802. content: "\E60C";
  803. }
  804. .anticon-caret-circle-o-right:before {
  805. content: "\E60C";
  806. }
  807. .anticon-left-circle-o:before {
  808. content: "\E60D";
  809. }
  810. .anticon-circle-o-left:before {
  811. content: "\E60D";
  812. }
  813. .anticon-caret-circle-o-left:before {
  814. content: "\E60D";
  815. }
  816. .anticon-up-circle-o:before {
  817. content: "\E60E";
  818. }
  819. .anticon-circle-o-up:before {
  820. content: "\E60E";
  821. }
  822. .anticon-caret-circle-o-up:before {
  823. content: "\E60E";
  824. }
  825. .anticon-down-circle-o:before {
  826. content: "\E60F";
  827. }
  828. .anticon-circle-o-down:before {
  829. content: "\E60F";
  830. }
  831. .anticon-caret-circle-o-down:before {
  832. content: "\E60F";
  833. }
  834. .anticon-verticle-left:before {
  835. content: "\E610";
  836. }
  837. .anticon-verticle-right:before {
  838. content: "\E611";
  839. }
  840. .anticon-rollback:before {
  841. content: "\E612";
  842. }
  843. .anticon-retweet:before {
  844. content: "\E613";
  845. }
  846. .anticon-shrink:before {
  847. content: "\E614";
  848. }
  849. .anticon-arrows-alt:before {
  850. content: "\E615";
  851. }
  852. .anticon-arrow-salt:before {
  853. content: "\E615";
  854. }
  855. .anticon-reload:before {
  856. content: "\E616";
  857. }
  858. .anticon-double-right:before {
  859. content: "\E617";
  860. }
  861. .anticon-double-left:before {
  862. content: "\E618";
  863. }
  864. .anticon-arrow-down:before {
  865. content: "\E619";
  866. }
  867. .anticon-arrow-up:before {
  868. content: "\E61A";
  869. }
  870. .anticon-arrow-right:before {
  871. content: "\E61B";
  872. }
  873. .anticon-arrow-left:before {
  874. content: "\E61C";
  875. }
  876. .anticon-down:before {
  877. content: "\E61D";
  878. }
  879. .anticon-up:before {
  880. content: "\E61E";
  881. }
  882. .anticon-right:before {
  883. content: "\E61F";
  884. }
  885. .anticon-left:before {
  886. content: "\E620";
  887. }
  888. .anticon-minus-square-o:before {
  889. content: "\E621";
  890. }
  891. .anticon-minus-circle:before {
  892. content: "\E622";
  893. }
  894. .anticon-minus-circle-o:before {
  895. content: "\E623";
  896. }
  897. .anticon-minus:before {
  898. content: "\E624";
  899. }
  900. .anticon-plus-circle-o:before {
  901. content: "\E625";
  902. }
  903. .anticon-plus-circle:before {
  904. content: "\E626";
  905. }
  906. .anticon-plus:before {
  907. content: "\E627";
  908. }
  909. .anticon-info-circle:before {
  910. content: "\E628";
  911. }
  912. .anticon-info-circle-o:before {
  913. content: "\E629";
  914. }
  915. .anticon-info:before {
  916. content: "\E62A";
  917. }
  918. .anticon-exclamation:before {
  919. content: "\E62B";
  920. }
  921. .anticon-exclamation-circle:before {
  922. content: "\E62C";
  923. }
  924. .anticon-exclamation-circle-o:before {
  925. content: "\E62D";
  926. }
  927. .anticon-close-circle:before {
  928. content: "\E62E";
  929. }
  930. .anticon-cross-circle:before {
  931. content: "\E62E";
  932. }
  933. .anticon-close-circle-o:before {
  934. content: "\E62F";
  935. }
  936. .anticon-cross-circle-o:before {
  937. content: "\E62F";
  938. }
  939. .anticon-check-circle:before {
  940. content: "\E630";
  941. }
  942. .anticon-check-circle-o:before {
  943. content: "\E631";
  944. }
  945. .anticon-check:before {
  946. content: "\E632";
  947. }
  948. .anticon-close:before {
  949. content: "\E633";
  950. }
  951. .anticon-cross:before {
  952. content: "\E633";
  953. }
  954. .anticon-customer-service:before {
  955. content: "\E634";
  956. }
  957. .anticon-customerservice:before {
  958. content: "\E634";
  959. }
  960. .anticon-credit-card:before {
  961. content: "\E635";
  962. }
  963. .anticon-code-o:before {
  964. content: "\E636";
  965. }
  966. .anticon-book:before {
  967. content: "\E637";
  968. }
  969. .anticon-bar-chart:before {
  970. content: "\E638";
  971. }
  972. .anticon-bars:before {
  973. content: "\E639";
  974. }
  975. .anticon-question:before {
  976. content: "\E63A";
  977. }
  978. .anticon-question-circle:before {
  979. content: "\E63B";
  980. }
  981. .anticon-question-circle-o:before {
  982. content: "\E63C";
  983. }
  984. .anticon-pause:before {
  985. content: "\E63D";
  986. }
  987. .anticon-pause-circle:before {
  988. content: "\E63E";
  989. }
  990. .anticon-pause-circle-o:before {
  991. content: "\E63F";
  992. }
  993. .anticon-clock-circle:before {
  994. content: "\E640";
  995. }
  996. .anticon-clock-circle-o:before {
  997. content: "\E641";
  998. }
  999. .anticon-swap:before {
  1000. content: "\E642";
  1001. }
  1002. .anticon-swap-left:before {
  1003. content: "\E643";
  1004. }
  1005. .anticon-swap-right:before {
  1006. content: "\E644";
  1007. }
  1008. .anticon-plus-square-o:before {
  1009. content: "\E645";
  1010. }
  1011. .anticon-frown:before {
  1012. content: "\E646";
  1013. }
  1014. .anticon-frown-circle:before {
  1015. content: "\E646";
  1016. }
  1017. .anticon-ellipsis:before {
  1018. content: "\E647";
  1019. }
  1020. .anticon-copy:before {
  1021. content: "\E648";
  1022. }
  1023. .anticon-menu-fold:before {
  1024. content: "\E658";
  1025. }
  1026. .anticon-mail:before {
  1027. content: "\E659";
  1028. }
  1029. .anticon-logout:before {
  1030. content: "\E65A";
  1031. }
  1032. .anticon-link:before {
  1033. content: "\E65B";
  1034. }
  1035. .anticon-area-chart:before {
  1036. content: "\E65C";
  1037. }
  1038. .anticon-line-chart:before {
  1039. content: "\E65D";
  1040. }
  1041. .anticon-home:before {
  1042. content: "\E65E";
  1043. }
  1044. .anticon-laptop:before {
  1045. content: "\E65F";
  1046. }
  1047. .anticon-star:before {
  1048. content: "\E660";
  1049. }
  1050. .anticon-star-o:before {
  1051. content: "\E661";
  1052. }
  1053. .anticon-folder:before {
  1054. content: "\E662";
  1055. }
  1056. .anticon-filter:before {
  1057. content: "\E663";
  1058. }
  1059. .anticon-file:before {
  1060. content: "\E664";
  1061. }
  1062. .anticon-exception:before {
  1063. content: "\E665";
  1064. }
  1065. .anticon-meh:before {
  1066. content: "\E666";
  1067. }
  1068. .anticon-meh-circle:before {
  1069. content: "\E666";
  1070. }
  1071. .anticon-meh-o:before {
  1072. content: "\E667";
  1073. }
  1074. .anticon-shopping-cart:before {
  1075. content: "\E668";
  1076. }
  1077. .anticon-save:before {
  1078. content: "\E669";
  1079. }
  1080. .anticon-user:before {
  1081. content: "\E66A";
  1082. }
  1083. .anticon-video-camera:before {
  1084. content: "\E66B";
  1085. }
  1086. .anticon-to-top:before {
  1087. content: "\E66C";
  1088. }
  1089. .anticon-team:before {
  1090. content: "\E66D";
  1091. }
  1092. .anticon-tablet:before {
  1093. content: "\E66E";
  1094. }
  1095. .anticon-solution:before {
  1096. content: "\E66F";
  1097. }
  1098. .anticon-search:before {
  1099. content: "\E670";
  1100. }
  1101. .anticon-share-alt:before {
  1102. content: "\E671";
  1103. }
  1104. .anticon-setting:before {
  1105. content: "\E672";
  1106. }
  1107. .anticon-poweroff:before {
  1108. content: "\E6D5";
  1109. }
  1110. .anticon-picture:before {
  1111. content: "\E674";
  1112. }
  1113. .anticon-phone:before {
  1114. content: "\E675";
  1115. }
  1116. .anticon-paper-clip:before {
  1117. content: "\E676";
  1118. }
  1119. .anticon-notification:before {
  1120. content: "\E677";
  1121. }
  1122. .anticon-mobile:before {
  1123. content: "\E678";
  1124. }
  1125. .anticon-menu-unfold:before {
  1126. content: "\E679";
  1127. }
  1128. .anticon-inbox:before {
  1129. content: "\E67A";
  1130. }
  1131. .anticon-lock:before {
  1132. content: "\E67B";
  1133. }
  1134. .anticon-qrcode:before {
  1135. content: "\E67C";
  1136. }
  1137. .anticon-play-circle:before {
  1138. content: "\E6D0";
  1139. }
  1140. .anticon-play-circle-o:before {
  1141. content: "\E6D1";
  1142. }
  1143. .anticon-tag:before {
  1144. content: "\E6D2";
  1145. }
  1146. .anticon-tag-o:before {
  1147. content: "\E6D3";
  1148. }
  1149. .anticon-tags:before {
  1150. content: "\E67D";
  1151. }
  1152. .anticon-tags-o:before {
  1153. content: "\E67E";
  1154. }
  1155. .anticon-cloud-o:before {
  1156. content: "\E67F";
  1157. }
  1158. .anticon-cloud:before {
  1159. content: "\E680";
  1160. }
  1161. .anticon-cloud-upload:before {
  1162. content: "\E681";
  1163. }
  1164. .anticon-cloud-download:before {
  1165. content: "\E682";
  1166. }
  1167. .anticon-cloud-download-o:before {
  1168. content: "\E683";
  1169. }
  1170. .anticon-cloud-upload-o:before {
  1171. content: "\E684";
  1172. }
  1173. .anticon-environment:before {
  1174. content: "\E685";
  1175. }
  1176. .anticon-environment-o:before {
  1177. content: "\E686";
  1178. }
  1179. .anticon-eye:before {
  1180. content: "\E687";
  1181. }
  1182. .anticon-eye-o:before {
  1183. content: "\E688";
  1184. }
  1185. .anticon-camera:before {
  1186. content: "\E689";
  1187. }
  1188. .anticon-camera-o:before {
  1189. content: "\E68A";
  1190. }
  1191. .anticon-windows:before {
  1192. content: "\E68B";
  1193. }
  1194. .anticon-apple:before {
  1195. content: "\E68C";
  1196. }
  1197. .anticon-apple-o:before {
  1198. content: "\E6D4";
  1199. }
  1200. .anticon-android:before {
  1201. content: "\E68D";
  1202. }
  1203. .anticon-aliwangwang:before {
  1204. content: "\E68E";
  1205. }
  1206. .anticon-aliwangwang-o:before {
  1207. content: "\E68F";
  1208. }
  1209. .anticon-export:before {
  1210. content: "\E691";
  1211. }
  1212. .anticon-edit:before {
  1213. content: "\E692";
  1214. }
  1215. .anticon-circle-down-o:before {
  1216. content: "\E693";
  1217. }
  1218. .anticon-circle-down-:before {
  1219. content: "\E694";
  1220. }
  1221. .anticon-appstore-o:before {
  1222. content: "\E695";
  1223. }
  1224. .anticon-appstore:before {
  1225. content: "\E696";
  1226. }
  1227. .anticon-scan:before {
  1228. content: "\E697";
  1229. }
  1230. .anticon-file-text:before {
  1231. content: "\E698";
  1232. }
  1233. .anticon-folder-open:before {
  1234. content: "\E699";
  1235. }
  1236. .anticon-hdd:before {
  1237. content: "\E69A";
  1238. }
  1239. .anticon-ie:before {
  1240. content: "\E69B";
  1241. }
  1242. .anticon-file-jpg:before {
  1243. content: "\E69C";
  1244. }
  1245. .anticon-like:before {
  1246. content: "\E64C";
  1247. }
  1248. .anticon-like-o:before {
  1249. content: "\E69D";
  1250. }
  1251. .anticon-dislike:before {
  1252. content: "\E64B";
  1253. }
  1254. .anticon-dislike-o:before {
  1255. content: "\E69E";
  1256. }
  1257. .anticon-delete:before {
  1258. content: "\E69F";
  1259. }
  1260. .anticon-enter:before {
  1261. content: "\E6A0";
  1262. }
  1263. .anticon-pushpin-o:before {
  1264. content: "\E6A1";
  1265. }
  1266. .anticon-pushpin:before {
  1267. content: "\E6A2";
  1268. }
  1269. .anticon-heart:before {
  1270. content: "\E6A3";
  1271. }
  1272. .anticon-heart-o:before {
  1273. content: "\E6A4";
  1274. }
  1275. .anticon-pay-circle:before {
  1276. content: "\E6A5";
  1277. }
  1278. .anticon-pay-circle-o:before {
  1279. content: "\E6A6";
  1280. }
  1281. .anticon-smile:before {
  1282. content: "\E6A7";
  1283. }
  1284. .anticon-smile-circle:before {
  1285. content: "\E6A7";
  1286. }
  1287. .anticon-smile-o:before {
  1288. content: "\E6A8";
  1289. }
  1290. .anticon-frown-o:before {
  1291. content: "\E6A9";
  1292. }
  1293. .anticon-calculator:before {
  1294. content: "\E6AA";
  1295. }
  1296. .anticon-message:before {
  1297. content: "\E6AB";
  1298. }
  1299. .anticon-chrome:before {
  1300. content: "\E6AC";
  1301. }
  1302. .anticon-github:before {
  1303. content: "\E6AD";
  1304. }
  1305. .anticon-file-unknown:before {
  1306. content: "\E6AF";
  1307. }
  1308. .anticon-file-excel:before {
  1309. content: "\E6B0";
  1310. }
  1311. .anticon-file-ppt:before {
  1312. content: "\E6B1";
  1313. }
  1314. .anticon-file-word:before {
  1315. content: "\E6B2";
  1316. }
  1317. .anticon-file-pdf:before {
  1318. content: "\E6B3";
  1319. }
  1320. .anticon-desktop:before {
  1321. content: "\E6B4";
  1322. }
  1323. .anticon-upload:before {
  1324. content: "\E6B6";
  1325. }
  1326. .anticon-download:before {
  1327. content: "\E6B7";
  1328. }
  1329. .anticon-pie-chart:before {
  1330. content: "\E6B8";
  1331. }
  1332. .anticon-unlock:before {
  1333. content: "\E6BA";
  1334. }
  1335. .anticon-calendar:before {
  1336. content: "\E6BB";
  1337. }
  1338. .anticon-windows-o:before {
  1339. content: "\E6BC";
  1340. }
  1341. .anticon-dot-chart:before {
  1342. content: "\E6BD";
  1343. }
  1344. .anticon-bar-chart:before {
  1345. content: "\E6BE";
  1346. }
  1347. .anticon-code:before {
  1348. content: "\E6BF";
  1349. }
  1350. .anticon-plus-square:before {
  1351. content: "\E6C0";
  1352. }
  1353. .anticon-minus-square:before {
  1354. content: "\E6C1";
  1355. }
  1356. .anticon-close-square:before {
  1357. content: "\E6C2";
  1358. }
  1359. .anticon-close-square-o:before {
  1360. content: "\E6C3";
  1361. }
  1362. .anticon-check-square:before {
  1363. content: "\E6C4";
  1364. }
  1365. .anticon-check-square-o:before {
  1366. content: "\E6C5";
  1367. }
  1368. .anticon-fast-backward:before {
  1369. content: "\E6C6";
  1370. }
  1371. .anticon-fast-forward:before {
  1372. content: "\E6C7";
  1373. }
  1374. .anticon-up-square:before {
  1375. content: "\E6C8";
  1376. }
  1377. .anticon-down-square:before {
  1378. content: "\E6C9";
  1379. }
  1380. .anticon-left-square:before {
  1381. content: "\E6CA";
  1382. }
  1383. .anticon-right-square:before {
  1384. content: "\E6CB";
  1385. }
  1386. .anticon-right-square-o:before {
  1387. content: "\E6CC";
  1388. }
  1389. .anticon-left-square-o:before {
  1390. content: "\E6CD";
  1391. }
  1392. .anticon-down-square-o:before {
  1393. content: "\E6CE";
  1394. }
  1395. .anticon-up-square-o:before {
  1396. content: "\E6CF";
  1397. }
  1398. .anticon-loading:before {
  1399. content: "\E64D";
  1400. }
  1401. .anticon-loading-3-quarters:before {
  1402. content: "\E6AE";
  1403. }
  1404. .anticon-bulb:before {
  1405. content: "\E649";
  1406. }
  1407. .anticon-select:before {
  1408. content: "\E64A";
  1409. }
  1410. .anticon-addfile:before {
  1411. content: "\E910";
  1412. }
  1413. .anticon-addfolder:before {
  1414. content: "\E914";
  1415. }
  1416. .anticon-switcher:before {
  1417. content: "\E913";
  1418. }
  1419. .anticon-rocket:before {
  1420. content: "\E90F";
  1421. }
  1422. .anticon-dingding:before {
  1423. content: "\E923";
  1424. }
  1425. .anticon-dingding-o:before {
  1426. content: "\E925";
  1427. }
  1428. .anticon-spin:before {
  1429. display: inline-block;
  1430. animation: loadingCircle 1s infinite linear;
  1431. }
  1432. .fade-enter,
  1433. .fade-appear {
  1434. animation-duration: 0.2s;
  1435. animation-fill-mode: both;
  1436. animation-play-state: paused;
  1437. }
  1438. .fade-leave {
  1439. animation-duration: 0.2s;
  1440. animation-fill-mode: both;
  1441. animation-play-state: paused;
  1442. }
  1443. .fade-enter.fade-enter-active,
  1444. .fade-appear.fade-appear-active {
  1445. animation-name: antFadeIn;
  1446. animation-play-state: running;
  1447. }
  1448. .fade-leave.fade-leave-active {
  1449. animation-name: antFadeOut;
  1450. animation-play-state: running;
  1451. }
  1452. .fade-enter,
  1453. .fade-appear {
  1454. opacity: 0;
  1455. animation-timing-function: linear;
  1456. }
  1457. .fade-leave {
  1458. animation-timing-function: linear;
  1459. }
  1460. @keyframes antFadeIn {
  1461. 0% {
  1462. opacity: 0;
  1463. }
  1464. 100% {
  1465. opacity: 1;
  1466. }
  1467. }
  1468. @keyframes antFadeOut {
  1469. 0% {
  1470. opacity: 1;
  1471. }
  1472. 100% {
  1473. opacity: 0;
  1474. }
  1475. }
  1476. .move-up-enter,
  1477. .move-up-appear {
  1478. animation-duration: 0.2s;
  1479. animation-fill-mode: both;
  1480. animation-play-state: paused;
  1481. }
  1482. .move-up-leave {
  1483. animation-duration: 0.2s;
  1484. animation-fill-mode: both;
  1485. animation-play-state: paused;
  1486. }
  1487. .move-up-enter.move-up-enter-active,
  1488. .move-up-appear.move-up-appear-active {
  1489. animation-name: antMoveUpIn;
  1490. animation-play-state: running;
  1491. }
  1492. .move-up-leave.move-up-leave-active {
  1493. animation-name: antMoveUpOut;
  1494. animation-play-state: running;
  1495. }
  1496. .move-up-enter,
  1497. .move-up-appear {
  1498. opacity: 0;
  1499. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1500. }
  1501. .move-up-leave {
  1502. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1503. }
  1504. .move-down-enter,
  1505. .move-down-appear {
  1506. animation-duration: 0.2s;
  1507. animation-fill-mode: both;
  1508. animation-play-state: paused;
  1509. }
  1510. .move-down-leave {
  1511. animation-duration: 0.2s;
  1512. animation-fill-mode: both;
  1513. animation-play-state: paused;
  1514. }
  1515. .move-down-enter.move-down-enter-active,
  1516. .move-down-appear.move-down-appear-active {
  1517. animation-name: antMoveDownIn;
  1518. animation-play-state: running;
  1519. }
  1520. .move-down-leave.move-down-leave-active {
  1521. animation-name: antMoveDownOut;
  1522. animation-play-state: running;
  1523. }
  1524. .move-down-enter,
  1525. .move-down-appear {
  1526. opacity: 0;
  1527. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1528. }
  1529. .move-down-leave {
  1530. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1531. }
  1532. .move-left-enter,
  1533. .move-left-appear {
  1534. animation-duration: 0.2s;
  1535. animation-fill-mode: both;
  1536. animation-play-state: paused;
  1537. }
  1538. .move-left-leave {
  1539. animation-duration: 0.2s;
  1540. animation-fill-mode: both;
  1541. animation-play-state: paused;
  1542. }
  1543. .move-left-enter.move-left-enter-active,
  1544. .move-left-appear.move-left-appear-active {
  1545. animation-name: antMoveLeftIn;
  1546. animation-play-state: running;
  1547. }
  1548. .move-left-leave.move-left-leave-active {
  1549. animation-name: antMoveLeftOut;
  1550. animation-play-state: running;
  1551. }
  1552. .move-left-enter,
  1553. .move-left-appear {
  1554. opacity: 0;
  1555. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1556. }
  1557. .move-left-leave {
  1558. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1559. }
  1560. .move-right-enter,
  1561. .move-right-appear {
  1562. animation-duration: 0.2s;
  1563. animation-fill-mode: both;
  1564. animation-play-state: paused;
  1565. }
  1566. .move-right-leave {
  1567. animation-duration: 0.2s;
  1568. animation-fill-mode: both;
  1569. animation-play-state: paused;
  1570. }
  1571. .move-right-enter.move-right-enter-active,
  1572. .move-right-appear.move-right-appear-active {
  1573. animation-name: antMoveRightIn;
  1574. animation-play-state: running;
  1575. }
  1576. .move-right-leave.move-right-leave-active {
  1577. animation-name: antMoveRightOut;
  1578. animation-play-state: running;
  1579. }
  1580. .move-right-enter,
  1581. .move-right-appear {
  1582. opacity: 0;
  1583. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1584. }
  1585. .move-right-leave {
  1586. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1587. }
  1588. @keyframes antMoveDownIn {
  1589. 0% {
  1590. transform-origin: 0 0;
  1591. transform: translateY(100%);
  1592. opacity: 0;
  1593. }
  1594. 100% {
  1595. transform-origin: 0 0;
  1596. transform: translateY(0%);
  1597. opacity: 1;
  1598. }
  1599. }
  1600. @keyframes antMoveDownOut {
  1601. 0% {
  1602. transform-origin: 0 0;
  1603. transform: translateY(0%);
  1604. opacity: 1;
  1605. }
  1606. 100% {
  1607. transform-origin: 0 0;
  1608. transform: translateY(100%);
  1609. opacity: 0;
  1610. }
  1611. }
  1612. @keyframes antMoveLeftIn {
  1613. 0% {
  1614. transform-origin: 0 0;
  1615. transform: translateX(-100%);
  1616. opacity: 0;
  1617. }
  1618. 100% {
  1619. transform-origin: 0 0;
  1620. transform: translateX(0%);
  1621. opacity: 1;
  1622. }
  1623. }
  1624. @keyframes antMoveLeftOut {
  1625. 0% {
  1626. transform-origin: 0 0;
  1627. transform: translateX(0%);
  1628. opacity: 1;
  1629. }
  1630. 100% {
  1631. transform-origin: 0 0;
  1632. transform: translateX(-100%);
  1633. opacity: 0;
  1634. }
  1635. }
  1636. @keyframes antMoveRightIn {
  1637. 0% {
  1638. opacity: 0;
  1639. transform-origin: 0 0;
  1640. transform: translateX(100%);
  1641. }
  1642. 100% {
  1643. opacity: 1;
  1644. transform-origin: 0 0;
  1645. transform: translateX(0%);
  1646. }
  1647. }
  1648. @keyframes antMoveRightOut {
  1649. 0% {
  1650. transform-origin: 0 0;
  1651. transform: translateX(0%);
  1652. opacity: 1;
  1653. }
  1654. 100% {
  1655. transform-origin: 0 0;
  1656. transform: translateX(100%);
  1657. opacity: 0;
  1658. }
  1659. }
  1660. @keyframes antMoveUpIn {
  1661. 0% {
  1662. transform-origin: 0 0;
  1663. transform: translateY(-100%);
  1664. opacity: 0;
  1665. }
  1666. 100% {
  1667. transform-origin: 0 0;
  1668. transform: translateY(0%);
  1669. opacity: 1;
  1670. }
  1671. }
  1672. @keyframes antMoveUpOut {
  1673. 0% {
  1674. transform-origin: 0 0;
  1675. transform: translateY(0%);
  1676. opacity: 1;
  1677. }
  1678. 100% {
  1679. transform-origin: 0 0;
  1680. transform: translateY(-100%);
  1681. opacity: 0;
  1682. }
  1683. }
  1684. @keyframes loadingCircle {
  1685. 0% {
  1686. transform-origin: 50% 50%;
  1687. transform: rotate(0deg);
  1688. }
  1689. 100% {
  1690. transform-origin: 50% 50%;
  1691. transform: rotate(360deg);
  1692. }
  1693. }
  1694. .slide-up-enter,
  1695. .slide-up-appear {
  1696. animation-duration: 0.2s;
  1697. animation-fill-mode: both;
  1698. animation-play-state: paused;
  1699. }
  1700. .slide-up-leave {
  1701. animation-duration: 0.2s;
  1702. animation-fill-mode: both;
  1703. animation-play-state: paused;
  1704. }
  1705. .slide-up-enter.slide-up-enter-active,
  1706. .slide-up-appear.slide-up-appear-active {
  1707. animation-name: antSlideUpIn;
  1708. animation-play-state: running;
  1709. }
  1710. .slide-up-leave.slide-up-leave-active {
  1711. animation-name: antSlideUpOut;
  1712. animation-play-state: running;
  1713. }
  1714. .slide-up-enter,
  1715. .slide-up-appear {
  1716. opacity: 0;
  1717. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1718. }
  1719. .slide-up-leave {
  1720. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1721. }
  1722. .slide-down-enter,
  1723. .slide-down-appear {
  1724. animation-duration: 0.2s;
  1725. animation-fill-mode: both;
  1726. animation-play-state: paused;
  1727. }
  1728. .slide-down-leave {
  1729. animation-duration: 0.2s;
  1730. animation-fill-mode: both;
  1731. animation-play-state: paused;
  1732. }
  1733. .slide-down-enter.slide-down-enter-active,
  1734. .slide-down-appear.slide-down-appear-active {
  1735. animation-name: antSlideDownIn;
  1736. animation-play-state: running;
  1737. }
  1738. .slide-down-leave.slide-down-leave-active {
  1739. animation-name: antSlideDownOut;
  1740. animation-play-state: running;
  1741. }
  1742. .slide-down-enter,
  1743. .slide-down-appear {
  1744. opacity: 0;
  1745. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1746. }
  1747. .slide-down-leave {
  1748. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1749. }
  1750. .slide-left-enter,
  1751. .slide-left-appear {
  1752. animation-duration: 0.2s;
  1753. animation-fill-mode: both;
  1754. animation-play-state: paused;
  1755. }
  1756. .slide-left-leave {
  1757. animation-duration: 0.2s;
  1758. animation-fill-mode: both;
  1759. animation-play-state: paused;
  1760. }
  1761. .slide-left-enter.slide-left-enter-active,
  1762. .slide-left-appear.slide-left-appear-active {
  1763. animation-name: antSlideLeftIn;
  1764. animation-play-state: running;
  1765. }
  1766. .slide-left-leave.slide-left-leave-active {
  1767. animation-name: antSlideLeftOut;
  1768. animation-play-state: running;
  1769. }
  1770. .slide-left-enter,
  1771. .slide-left-appear {
  1772. opacity: 0;
  1773. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1774. }
  1775. .slide-left-leave {
  1776. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1777. }
  1778. .slide-right-enter,
  1779. .slide-right-appear {
  1780. animation-duration: 0.2s;
  1781. animation-fill-mode: both;
  1782. animation-play-state: paused;
  1783. }
  1784. .slide-right-leave {
  1785. animation-duration: 0.2s;
  1786. animation-fill-mode: both;
  1787. animation-play-state: paused;
  1788. }
  1789. .slide-right-enter.slide-right-enter-active,
  1790. .slide-right-appear.slide-right-appear-active {
  1791. animation-name: antSlideRightIn;
  1792. animation-play-state: running;
  1793. }
  1794. .slide-right-leave.slide-right-leave-active {
  1795. animation-name: antSlideRightOut;
  1796. animation-play-state: running;
  1797. }
  1798. .slide-right-enter,
  1799. .slide-right-appear {
  1800. opacity: 0;
  1801. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1802. }
  1803. .slide-right-leave {
  1804. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1805. }
  1806. @keyframes antSlideUpIn {
  1807. 0% {
  1808. opacity: 0;
  1809. transform-origin: 0% 0%;
  1810. transform: scaleY(0.8);
  1811. }
  1812. 100% {
  1813. opacity: 1;
  1814. transform-origin: 0% 0%;
  1815. transform: scaleY(1);
  1816. }
  1817. }
  1818. @keyframes antSlideUpOut {
  1819. 0% {
  1820. opacity: 1;
  1821. transform-origin: 0% 0%;
  1822. transform: scaleY(1);
  1823. }
  1824. 100% {
  1825. opacity: 0;
  1826. transform-origin: 0% 0%;
  1827. transform: scaleY(0.8);
  1828. }
  1829. }
  1830. @keyframes antSlideDownIn {
  1831. 0% {
  1832. opacity: 0;
  1833. transform-origin: 100% 100%;
  1834. transform: scaleY(0.8);
  1835. }
  1836. 100% {
  1837. opacity: 1;
  1838. transform-origin: 100% 100%;
  1839. transform: scaleY(1);
  1840. }
  1841. }
  1842. @keyframes antSlideDownOut {
  1843. 0% {
  1844. opacity: 1;
  1845. transform-origin: 100% 100%;
  1846. transform: scaleY(1);
  1847. }
  1848. 100% {
  1849. opacity: 0;
  1850. transform-origin: 100% 100%;
  1851. transform: scaleY(0.8);
  1852. }
  1853. }
  1854. @keyframes antSlideLeftIn {
  1855. 0% {
  1856. opacity: 0;
  1857. transform-origin: 0% 0%;
  1858. transform: scaleX(0.8);
  1859. }
  1860. 100% {
  1861. opacity: 1;
  1862. transform-origin: 0% 0%;
  1863. transform: scaleX(1);
  1864. }
  1865. }
  1866. @keyframes antSlideLeftOut {
  1867. 0% {
  1868. opacity: 1;
  1869. transform-origin: 0% 0%;
  1870. transform: scaleX(1);
  1871. }
  1872. 100% {
  1873. opacity: 0;
  1874. transform-origin: 0% 0%;
  1875. transform: scaleX(0.8);
  1876. }
  1877. }
  1878. @keyframes antSlideRightIn {
  1879. 0% {
  1880. opacity: 0;
  1881. transform-origin: 100% 0%;
  1882. transform: scaleX(0.8);
  1883. }
  1884. 100% {
  1885. opacity: 1;
  1886. transform-origin: 100% 0%;
  1887. transform: scaleX(1);
  1888. }
  1889. }
  1890. @keyframes antSlideRightOut {
  1891. 0% {
  1892. opacity: 1;
  1893. transform-origin: 100% 0%;
  1894. transform: scaleX(1);
  1895. }
  1896. 100% {
  1897. opacity: 0;
  1898. transform-origin: 100% 0%;
  1899. transform: scaleX(0.8);
  1900. }
  1901. }
  1902. .swing-enter,
  1903. .swing-appear {
  1904. animation-duration: 0.2s;
  1905. animation-fill-mode: both;
  1906. animation-play-state: paused;
  1907. }
  1908. .swing-enter.swing-enter-active,
  1909. .swing-appear.swing-appear-active {
  1910. animation-name: antSwingIn;
  1911. animation-play-state: running;
  1912. }
  1913. @keyframes antSwingIn {
  1914. 0%,
  1915. 100% {
  1916. transform: translateX(0px);
  1917. }
  1918. 20% {
  1919. transform: translateX(-10px);
  1920. }
  1921. 40% {
  1922. transform: translateX(10px);
  1923. }
  1924. 60% {
  1925. transform: translateX(-5px);
  1926. }
  1927. 80% {
  1928. transform: translateX(5px);
  1929. }
  1930. }
  1931. .zoom-enter,
  1932. .zoom-appear {
  1933. animation-duration: 0.2s;
  1934. animation-fill-mode: both;
  1935. animation-play-state: paused;
  1936. }
  1937. .zoom-leave {
  1938. animation-duration: 0.2s;
  1939. animation-fill-mode: both;
  1940. animation-play-state: paused;
  1941. }
  1942. .zoom-enter.zoom-enter-active,
  1943. .zoom-appear.zoom-appear-active {
  1944. animation-name: antZoomIn;
  1945. animation-play-state: running;
  1946. }
  1947. .zoom-leave.zoom-leave-active {
  1948. animation-name: antZoomOut;
  1949. animation-play-state: running;
  1950. }
  1951. .zoom-enter,
  1952. .zoom-appear {
  1953. transform: scale(0);
  1954. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1955. }
  1956. .zoom-leave {
  1957. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1958. }
  1959. .zoom-big-enter,
  1960. .zoom-big-appear {
  1961. animation-duration: 0.2s;
  1962. animation-fill-mode: both;
  1963. animation-play-state: paused;
  1964. }
  1965. .zoom-big-leave {
  1966. animation-duration: 0.2s;
  1967. animation-fill-mode: both;
  1968. animation-play-state: paused;
  1969. }
  1970. .zoom-big-enter.zoom-big-enter-active,
  1971. .zoom-big-appear.zoom-big-appear-active {
  1972. animation-name: antZoomBigIn;
  1973. animation-play-state: running;
  1974. }
  1975. .zoom-big-leave.zoom-big-leave-active {
  1976. animation-name: antZoomBigOut;
  1977. animation-play-state: running;
  1978. }
  1979. .zoom-big-enter,
  1980. .zoom-big-appear {
  1981. transform: scale(0);
  1982. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1983. }
  1984. .zoom-big-leave {
  1985. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1986. }
  1987. .zoom-big-fast-enter,
  1988. .zoom-big-fast-appear {
  1989. animation-duration: 0.1s;
  1990. animation-fill-mode: both;
  1991. animation-play-state: paused;
  1992. }
  1993. .zoom-big-fast-leave {
  1994. animation-duration: 0.1s;
  1995. animation-fill-mode: both;
  1996. animation-play-state: paused;
  1997. }
  1998. .zoom-big-fast-enter.zoom-big-fast-enter-active,
  1999. .zoom-big-fast-appear.zoom-big-fast-appear-active {
  2000. animation-name: antZoomBigIn;
  2001. animation-play-state: running;
  2002. }
  2003. .zoom-big-fast-leave.zoom-big-fast-leave-active {
  2004. animation-name: antZoomBigOut;
  2005. animation-play-state: running;
  2006. }
  2007. .zoom-big-fast-enter,
  2008. .zoom-big-fast-appear {
  2009. transform: scale(0);
  2010. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  2011. }
  2012. .zoom-big-fast-leave {
  2013. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2014. }
  2015. .zoom-up-enter,
  2016. .zoom-up-appear {
  2017. animation-duration: 0.2s;
  2018. animation-fill-mode: both;
  2019. animation-play-state: paused;
  2020. }
  2021. .zoom-up-leave {
  2022. animation-duration: 0.2s;
  2023. animation-fill-mode: both;
  2024. animation-play-state: paused;
  2025. }
  2026. .zoom-up-enter.zoom-up-enter-active,
  2027. .zoom-up-appear.zoom-up-appear-active {
  2028. animation-name: antZoomUpIn;
  2029. animation-play-state: running;
  2030. }
  2031. .zoom-up-leave.zoom-up-leave-active {
  2032. animation-name: antZoomUpOut;
  2033. animation-play-state: running;
  2034. }
  2035. .zoom-up-enter,
  2036. .zoom-up-appear {
  2037. transform: scale(0);
  2038. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  2039. }
  2040. .zoom-up-leave {
  2041. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2042. }
  2043. .zoom-down-enter,
  2044. .zoom-down-appear {
  2045. animation-duration: 0.2s;
  2046. animation-fill-mode: both;
  2047. animation-play-state: paused;
  2048. }
  2049. .zoom-down-leave {
  2050. animation-duration: 0.2s;
  2051. animation-fill-mode: both;
  2052. animation-play-state: paused;
  2053. }
  2054. .zoom-down-enter.zoom-down-enter-active,
  2055. .zoom-down-appear.zoom-down-appear-active {
  2056. animation-name: antZoomDownIn;
  2057. animation-play-state: running;
  2058. }
  2059. .zoom-down-leave.zoom-down-leave-active {
  2060. animation-name: antZoomDownOut;
  2061. animation-play-state: running;
  2062. }
  2063. .zoom-down-enter,
  2064. .zoom-down-appear {
  2065. transform: scale(0);
  2066. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  2067. }
  2068. .zoom-down-leave {
  2069. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2070. }
  2071. .zoom-left-enter,
  2072. .zoom-left-appear {
  2073. animation-duration: 0.2s;
  2074. animation-fill-mode: both;
  2075. animation-play-state: paused;
  2076. }
  2077. .zoom-left-leave {
  2078. animation-duration: 0.2s;
  2079. animation-fill-mode: both;
  2080. animation-play-state: paused;
  2081. }
  2082. .zoom-left-enter.zoom-left-enter-active,
  2083. .zoom-left-appear.zoom-left-appear-active {
  2084. animation-name: antZoomLeftIn;
  2085. animation-play-state: running;
  2086. }
  2087. .zoom-left-leave.zoom-left-leave-active {
  2088. animation-name: antZoomLeftOut;
  2089. animation-play-state: running;
  2090. }
  2091. .zoom-left-enter,
  2092. .zoom-left-appear {
  2093. transform: scale(0);
  2094. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  2095. }
  2096. .zoom-left-leave {
  2097. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2098. }
  2099. .zoom-right-enter,
  2100. .zoom-right-appear {
  2101. animation-duration: 0.2s;
  2102. animation-fill-mode: both;
  2103. animation-play-state: paused;
  2104. }
  2105. .zoom-right-leave {
  2106. animation-duration: 0.2s;
  2107. animation-fill-mode: both;
  2108. animation-play-state: paused;
  2109. }
  2110. .zoom-right-enter.zoom-right-enter-active,
  2111. .zoom-right-appear.zoom-right-appear-active {
  2112. animation-name: antZoomRightIn;
  2113. animation-play-state: running;
  2114. }
  2115. .zoom-right-leave.zoom-right-leave-active {
  2116. animation-name: antZoomRightOut;
  2117. animation-play-state: running;
  2118. }
  2119. .zoom-right-enter,
  2120. .zoom-right-appear {
  2121. transform: scale(0);
  2122. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  2123. }
  2124. .zoom-right-leave {
  2125. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2126. }
  2127. @keyframes antZoomIn {
  2128. 0% {
  2129. opacity: 0;
  2130. transform: scale(0.2);
  2131. }
  2132. 100% {
  2133. opacity: 1;
  2134. transform: scale(1);
  2135. }
  2136. }
  2137. @keyframes antZoomOut {
  2138. 0% {
  2139. transform: scale(1);
  2140. }
  2141. 100% {
  2142. opacity: 0;
  2143. transform: scale(0.2);
  2144. }
  2145. }
  2146. @keyframes antZoomBigIn {
  2147. 0% {
  2148. opacity: 0;
  2149. transform: scale(0.8);
  2150. }
  2151. 100% {
  2152. transform: scale(1);
  2153. }
  2154. }
  2155. @keyframes antZoomBigOut {
  2156. 0% {
  2157. transform: scale(1);
  2158. }
  2159. 100% {
  2160. opacity: 0;
  2161. transform: scale(0.8);
  2162. }
  2163. }
  2164. @keyframes antZoomUpIn {
  2165. 0% {
  2166. opacity: 0;
  2167. transform-origin: 50% 0%;
  2168. transform: scale(0.8);
  2169. }
  2170. 100% {
  2171. transform-origin: 50% 0%;
  2172. transform: scale(1);
  2173. }
  2174. }
  2175. @keyframes antZoomUpOut {
  2176. 0% {
  2177. transform-origin: 50% 0%;
  2178. transform: scale(1);
  2179. }
  2180. 100% {
  2181. opacity: 0;
  2182. transform-origin: 50% 0%;
  2183. transform: scale(0.8);
  2184. }
  2185. }
  2186. @keyframes antZoomLeftIn {
  2187. 0% {
  2188. opacity: 0;
  2189. transform-origin: 0% 50%;
  2190. transform: scale(0.8);
  2191. }
  2192. 100% {
  2193. transform-origin: 0% 50%;
  2194. transform: scale(1);
  2195. }
  2196. }
  2197. @keyframes antZoomLeftOut {
  2198. 0% {
  2199. transform-origin: 0% 50%;
  2200. transform: scale(1);
  2201. }
  2202. 100% {
  2203. opacity: 0;
  2204. transform-origin: 0% 50%;
  2205. transform: scale(0.8);
  2206. }
  2207. }
  2208. @keyframes antZoomRightIn {
  2209. 0% {
  2210. opacity: 0;
  2211. transform-origin: 100% 50%;
  2212. transform: scale(0.8);
  2213. }
  2214. 100% {
  2215. transform-origin: 100% 50%;
  2216. transform: scale(1);
  2217. }
  2218. }
  2219. @keyframes antZoomRightOut {
  2220. 0% {
  2221. transform-origin: 100% 50%;
  2222. transform: scale(1);
  2223. }
  2224. 100% {
  2225. opacity: 0;
  2226. transform-origin: 100% 50%;
  2227. transform: scale(0.8);
  2228. }
  2229. }
  2230. @keyframes antZoomDownIn {
  2231. 0% {
  2232. opacity: 0;
  2233. transform-origin: 50% 100%;
  2234. transform: scale(0.8);
  2235. }
  2236. 100% {
  2237. transform-origin: 50% 100%;
  2238. transform: scale(1);
  2239. }
  2240. }
  2241. @keyframes antZoomDownOut {
  2242. 0% {
  2243. transform-origin: 50% 100%;
  2244. transform: scale(1);
  2245. }
  2246. 100% {
  2247. opacity: 0;
  2248. transform-origin: 50% 100%;
  2249. transform: scale(0.8);
  2250. }
  2251. }
  2252. .ant-motion-collapse {
  2253. overflow: hidden;
  2254. }
  2255. .ant-motion-collapse-active {
  2256. transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  2257. }
  2258. .ant-spin {
  2259. color: #58a3ff;
  2260. vertical-align: middle;
  2261. text-align: center;
  2262. opacity: 0;
  2263. position: absolute;
  2264. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2265. font-size: 12px;
  2266. display: none;
  2267. }
  2268. .ant-spin-spinning {
  2269. opacity: 1;
  2270. position: static;
  2271. display: inline-block;
  2272. }
  2273. .ant-spin-nested-loading {
  2274. position: relative;
  2275. }
  2276. .ant-spin-nested-loading .ant-spin {
  2277. position: absolute;
  2278. height: 100%;
  2279. width: 100%;
  2280. z-index: 4;
  2281. }
  2282. .ant-spin-nested-loading .ant-spin-dot {
  2283. position: absolute;
  2284. top: 50%;
  2285. left: 50%;
  2286. margin: -10px;
  2287. }
  2288. .ant-spin-nested-loading .ant-spin-sm .ant-spin-dot {
  2289. margin: -7px;
  2290. }
  2291. .ant-spin-nested-loading .ant-spin-lg .ant-spin-dot {
  2292. margin: -15px;
  2293. }
  2294. .ant-spin-nested-loading .ant-spin-show-text .ant-spin-dot {
  2295. margin: -16px;
  2296. }
  2297. .ant-spin-nested-loading .ant-spin-show-text.ant-spin-sm .ant-spin-dot {
  2298. margin: -13px;
  2299. }
  2300. .ant-spin-nested-loading .ant-spin-show-text.ant-spin-lg .ant-spin-dot {
  2301. margin: -21px;
  2302. }
  2303. .ant-spin-nested-loading .ant-spin-text {
  2304. position: absolute;
  2305. top: 50%;
  2306. width: 100%;
  2307. padding-top: 4px;
  2308. }
  2309. .ant-spin-nested-loading .ant-spin-sm .ant-spin-text {
  2310. padding-top: 1px;
  2311. }
  2312. .ant-spin-nested-loading .ant-spin-lg .ant-spin-text {
  2313. padding-top: 9px;
  2314. }
  2315. .ant-spin-container {
  2316. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2317. position: relative;
  2318. }
  2319. .ant-spin-blur {
  2320. opacity: 0.7;
  2321. -webkit-filter: blur(1px);
  2322. filter: blur(1px);
  2323. filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
  2324. /* IE6~IE9 */
  2325. }
  2326. .ant-spin-blur:after {
  2327. content: '';
  2328. position: absolute;
  2329. left: 0;
  2330. right: 0;
  2331. top: 0;
  2332. bottom: 0;
  2333. background: transparent;
  2334. }
  2335. .ant-spin-tip {
  2336. color: #999;
  2337. }
  2338. .ant-spin-dot {
  2339. position: relative;
  2340. display: block;
  2341. width: 20px;
  2342. height: 20px;
  2343. transform: rotate(45deg);
  2344. animation: antRotate 3.2s infinite linear;
  2345. }
  2346. .ant-spin-dot i {
  2347. width: 8px;
  2348. height: 8px;
  2349. border-radius: 50%;
  2350. background-color: #58a3ff;
  2351. transform: scale(0.6);
  2352. display: block;
  2353. position: absolute;
  2354. opacity: 0.3;
  2355. animation: antSpinMove .8s infinite linear alternate;
  2356. transform-origin: 0 0;
  2357. }
  2358. .ant-spin-dot i:nth-child(1) {
  2359. left: 0;
  2360. top: 0;
  2361. }
  2362. .ant-spin-dot i:nth-child(2) {
  2363. right: 0;
  2364. top: 0;
  2365. animation-delay: 0.4s;
  2366. }
  2367. .ant-spin-dot i:nth-child(3) {
  2368. right: 0;
  2369. bottom: 0;
  2370. animation-delay: 0.8s;
  2371. }
  2372. .ant-spin-dot i:nth-child(4) {
  2373. left: 0;
  2374. bottom: 0;
  2375. animation-delay: 1.2s;
  2376. }
  2377. .ant-spin-sm .ant-spin-dot {
  2378. width: 14px;
  2379. height: 14px;
  2380. }
  2381. .ant-spin-sm .ant-spin-dot i {
  2382. width: 6px;
  2383. height: 6px;
  2384. }
  2385. .ant-spin-lg .ant-spin-dot {
  2386. width: 30px;
  2387. height: 30px;
  2388. }
  2389. .ant-spin-lg .ant-spin-dot i {
  2390. width: 12px;
  2391. height: 12px;
  2392. }
  2393. .ant-spin.ant-spin-show-text .ant-spin-text {
  2394. display: block;
  2395. }
  2396. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  2397. /* IE10+ */
  2398. .ant-spin-blur {
  2399. background: #fff;
  2400. opacity: 0.5;
  2401. }
  2402. }
  2403. @keyframes antSpinMove {
  2404. to {
  2405. transform: scale(1);
  2406. opacity: 1;
  2407. }
  2408. }
  2409. @keyframes antRotate {
  2410. to {
  2411. transform: rotate(405deg);
  2412. }
  2413. }
  2414. .ant-tabs {
  2415. box-sizing: border-box;
  2416. position: relative;
  2417. overflow: hidden;
  2418. zoom: 1;
  2419. color: #666;
  2420. }
  2421. .ant-tabs:before,
  2422. .ant-tabs:after {
  2423. content: " ";
  2424. display: table;
  2425. }
  2426. .ant-tabs:after {
  2427. clear: both;
  2428. visibility: hidden;
  2429. font-size: 0;
  2430. height: 0;
  2431. }
  2432. .ant-tabs-bar {
  2433. outline: none;
  2434. }
  2435. .ant-tabs-ink-bar {
  2436. z-index: 1;
  2437. position: absolute;
  2438. left: 0;
  2439. bottom: 1px;
  2440. box-sizing: border-box;
  2441. height: 2px;
  2442. background-color: #58a3ff;
  2443. transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2444. transform-origin: 0 0;
  2445. }
  2446. .ant-tabs-bar {
  2447. border-bottom: 1px solid #d9d9d9;
  2448. margin-bottom: 16px;
  2449. }
  2450. .ant-tabs-nav-container {
  2451. overflow: hidden;
  2452. font-size: 14px;
  2453. line-height: 1.5;
  2454. box-sizing: border-box;
  2455. position: relative;
  2456. white-space: nowrap;
  2457. margin-bottom: -1px;
  2458. zoom: 1;
  2459. }
  2460. .ant-tabs-nav-container:before,
  2461. .ant-tabs-nav-container:after {
  2462. content: " ";
  2463. display: table;
  2464. }
  2465. .ant-tabs-nav-container:after {
  2466. clear: both;
  2467. visibility: hidden;
  2468. font-size: 0;
  2469. height: 0;
  2470. }
  2471. .ant-tabs-nav-container-scrolling {
  2472. padding-left: 32px;
  2473. padding-right: 32px;
  2474. }
  2475. .ant-tabs-tab-prev,
  2476. .ant-tabs-tab-next {
  2477. user-select: none;
  2478. z-index: 2;
  2479. margin-right: -2px;
  2480. margin-top: 3px;
  2481. width: 32px;
  2482. height: 100%;
  2483. line-height: 32px;
  2484. cursor: pointer;
  2485. border: 0;
  2486. background-color: transparent;
  2487. position: absolute;
  2488. text-align: center;
  2489. color: #999;
  2490. transition: color 0.3s ease;
  2491. }
  2492. .ant-tabs-tab-prev:hover,
  2493. .ant-tabs-tab-next:hover {
  2494. color: #666;
  2495. }
  2496. .ant-tabs-tab-prev-icon,
  2497. .ant-tabs-tab-next-icon {
  2498. position: relative;
  2499. font-style: normal;
  2500. font-weight: bold;
  2501. font-variant: normal;
  2502. line-height: inherit;
  2503. vertical-align: baseline;
  2504. text-align: center;
  2505. text-transform: none;
  2506. font-family: sans-serif;
  2507. display: inline-block;
  2508. font-size: 12px;
  2509. font-size: 10px \9;
  2510. transform: scale(0.83333333) rotate(0deg);
  2511. /* IE6-IE8 */
  2512. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  2513. zoom: 1;
  2514. }
  2515. :root .ant-tabs-tab-prev-icon,
  2516. :root .ant-tabs-tab-next-icon {
  2517. filter: none;
  2518. }
  2519. :root .ant-tabs-tab-prev-icon,
  2520. :root .ant-tabs-tab-next-icon {
  2521. font-size: 12px;
  2522. }
  2523. .ant-tabs-tab-prev-icon:before,
  2524. .ant-tabs-tab-next-icon:before {
  2525. display: block;
  2526. font-family: "anticon" !important;
  2527. }
  2528. .ant-tabs-tab-btn-disabled {
  2529. cursor: not-allowed;
  2530. }
  2531. .ant-tabs-tab-btn-disabled,
  2532. .ant-tabs-tab-btn-disabled:hover {
  2533. color: #ccc;
  2534. }
  2535. .ant-tabs-tab-next {
  2536. right: 2px;
  2537. }
  2538. .ant-tabs-tab-next-icon:before {
  2539. content: "\E61F";
  2540. }
  2541. .ant-tabs-tab-prev {
  2542. left: 0;
  2543. }
  2544. .ant-tabs-tab-prev-icon:before {
  2545. content: "\E620";
  2546. }
  2547. :root .ant-tabs-tab-prev {
  2548. filter: none;
  2549. }
  2550. .ant-tabs-nav-wrap {
  2551. overflow: hidden;
  2552. margin-bottom: -1px;
  2553. }
  2554. .ant-tabs-nav-scroll {
  2555. overflow: hidden;
  2556. white-space: nowrap;
  2557. }
  2558. .ant-tabs-nav {
  2559. box-sizing: border-box;
  2560. padding-left: 0;
  2561. transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  2562. position: relative;
  2563. margin: 0;
  2564. list-style: none;
  2565. float: left;
  2566. }
  2567. .ant-tabs-nav:before,
  2568. .ant-tabs-nav:after {
  2569. display: table;
  2570. content: " ";
  2571. }
  2572. .ant-tabs-nav:after {
  2573. clear: both;
  2574. }
  2575. .ant-tabs-nav .ant-tabs-tab-disabled {
  2576. pointer-events: none;
  2577. cursor: default;
  2578. color: #ccc;
  2579. }
  2580. .ant-tabs-nav .ant-tabs-tab {
  2581. display: inline-block;
  2582. height: 100%;
  2583. margin-right: 24px;
  2584. box-sizing: border-box;
  2585. position: relative;
  2586. padding: 8px 20px;
  2587. transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2588. cursor: pointer;
  2589. text-decoration: none;
  2590. }
  2591. .ant-tabs-nav .ant-tabs-tab:hover {
  2592. color: #79b5ff;
  2593. }
  2594. .ant-tabs-nav .ant-tabs-tab:active {
  2595. color: #549bf2;
  2596. }
  2597. .ant-tabs-nav .ant-tabs-tab .anticon {
  2598. width: 14px;
  2599. height: 14px;
  2600. margin-right: 8px;
  2601. }
  2602. .ant-tabs-nav .ant-tabs-tab-active {
  2603. color: #58a3ff;
  2604. }
  2605. .ant-tabs-mini .ant-tabs-nav-container {
  2606. font-size: 12px;
  2607. }
  2608. .ant-tabs-mini .ant-tabs-tab {
  2609. margin-right: 0;
  2610. padding: 8px 16px;
  2611. }
  2612. .ant-tabs:not(.ant-tabs-vertical) .ant-tabs-content {
  2613. width: 100%;
  2614. }
  2615. .ant-tabs:not(.ant-tabs-vertical) .ant-tabs-content-animated {
  2616. display: flex;
  2617. flex-direction: row;
  2618. will-change: margin-left;
  2619. transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2620. }
  2621. .ant-tabs:not(.ant-tabs-vertical) .ant-tabs-tabpane {
  2622. flex-shrink: 0;
  2623. width: 100%;
  2624. transition: opacity 0.3s;
  2625. opacity: 1;
  2626. }
  2627. .ant-tabs:not(.ant-tabs-vertical) .ant-tabs-tabpane-inactive {
  2628. opacity: 0;
  2629. height: 0;
  2630. }
  2631. .ant-tabs-vertical > .ant-tabs-bar {
  2632. border-bottom: 0;
  2633. }
  2634. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-tab {
  2635. float: none;
  2636. margin-right: 0;
  2637. margin-bottom: 16px;
  2638. display: block;
  2639. padding: 8px 24px;
  2640. }
  2641. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-tab:last-child {
  2642. margin-bottom: 0;
  2643. }
  2644. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-nav-scroll {
  2645. width: auto;
  2646. }
  2647. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-nav-container {
  2648. margin-bottom: 0;
  2649. }
  2650. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-nav-wrap {
  2651. margin-bottom: 0;
  2652. }
  2653. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-ink-bar {
  2654. width: 2px;
  2655. left: auto;
  2656. height: auto;
  2657. top: 0;
  2658. }
  2659. .ant-tabs-vertical > .ant-tabs-content {
  2660. overflow: hidden;
  2661. width: auto;
  2662. margin-top: 0!important;
  2663. }
  2664. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar {
  2665. float: left;
  2666. border-right: 1px solid #e9e9e9;
  2667. margin-right: -1px;
  2668. margin-bottom: 0;
  2669. }
  2670. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-tab {
  2671. text-align: right;
  2672. }
  2673. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-nav-container {
  2674. margin-right: -1px;
  2675. }
  2676. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-nav-wrap {
  2677. margin-right: -1px;
  2678. }
  2679. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-ink-bar {
  2680. right: 1px;
  2681. }
  2682. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-content {
  2683. padding-left: 24px;
  2684. border-left: 1px solid #e9e9e9;
  2685. }
  2686. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar {
  2687. float: right;
  2688. border-left: 1px solid #e9e9e9;
  2689. margin-left: -1px;
  2690. margin-bottom: 0;
  2691. }
  2692. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar .ant-tabs-nav-container {
  2693. margin-left: -1px;
  2694. }
  2695. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar .ant-tabs-nav-wrap {
  2696. margin-left: -1px;
  2697. }
  2698. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar .ant-tabs-ink-bar {
  2699. left: 1px;
  2700. }
  2701. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-content {
  2702. padding-right: 24px;
  2703. border-right: 1px solid #e9e9e9;
  2704. }
  2705. .ant-tabs-bottom > .ant-tabs-bar {
  2706. margin-bottom: 0;
  2707. margin-top: 16px;
  2708. }
  2709. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
  2710. height: 32px;
  2711. }
  2712. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-ink-bar {
  2713. visibility: hidden;
  2714. }
  2715. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  2716. margin: 0;
  2717. border: 1px solid #d9d9d9;
  2718. border-bottom: 0;
  2719. border-radius: 6px 6px 0 0;
  2720. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2721. background: #f9f9f9;
  2722. margin-right: 2px;
  2723. }
  2724. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  2725. padding: 5px 16px 4px;
  2726. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2727. }
  2728. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
  2729. background: #fff;
  2730. transform: translateZ(0);
  2731. border-color: #d9d9d9;
  2732. color: #58a3ff;
  2733. }
  2734. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
  2735. padding-bottom: 5px;
  2736. transform: translateZ(0);
  2737. }
  2738. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-wrap {
  2739. margin-bottom: 0;
  2740. }
  2741. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close {
  2742. margin-right: 0;
  2743. color: #999;
  2744. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2745. display: inline-block;
  2746. font-size: 12px;
  2747. font-size: 9px \9;
  2748. transform: scale(0.75) rotate(0deg);
  2749. /* IE6-IE8 */
  2750. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  2751. zoom: 1;
  2752. transform-origin: 100% 50%;
  2753. width: 0;
  2754. text-align: right;
  2755. vertical-align: middle;
  2756. overflow: hidden;
  2757. }
  2758. :root .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close {
  2759. filter: none;
  2760. }
  2761. :root .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close {
  2762. font-size: 12px;
  2763. }
  2764. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close:hover {
  2765. color: #404040;
  2766. font-weight: bold;
  2767. }
  2768. .ant-tabs.ant-tabs-editable-card > .ant-tabs-bar .ant-tabs-tab:not(.ant-tabs-tab-active):hover {
  2769. padding-left: 8px;
  2770. padding-right: 8px;
  2771. }
  2772. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active .anticon-close,
  2773. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab:hover .anticon-close {
  2774. width: 16px;
  2775. transform: translateZ(0);
  2776. }
  2777. .ant-tabs-extra-content {
  2778. float: right;
  2779. line-height: 32px;
  2780. }
  2781. .ant-tabs-extra-content .ant-tabs-new-tab {
  2782. width: 20px;
  2783. height: 20px;
  2784. line-height: 20px;
  2785. text-align: center;
  2786. cursor: pointer;
  2787. border-radius: 3px;
  2788. border: 1px solid #d9d9d9;
  2789. display: inline-block;
  2790. font-size: 12px;
  2791. font-size: 10px \9;
  2792. transform: scale(0.83333333) rotate(0deg);
  2793. /* IE6-IE8 */
  2794. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  2795. zoom: 1;
  2796. color: #999;
  2797. transition: color 0.3s ease;
  2798. }
  2799. :root .ant-tabs-extra-content .ant-tabs-new-tab {
  2800. filter: none;
  2801. }
  2802. :root .ant-tabs-extra-content .ant-tabs-new-tab {
  2803. font-size: 12px;
  2804. }
  2805. .ant-tabs-extra-content .ant-tabs-new-tab:hover {
  2806. color: #404040;
  2807. }
  2808. .no-flex .ant-tabs-content-animated,
  2809. .ant-tabs-no-animation .ant-tabs-content-animated,
  2810. .ant-tabs-vertical .ant-tabs-content-animated {
  2811. transform: none!important;
  2812. }
  2813. .no-flex .ant-tabs-content > .ant-tabs-tabpane-inactive,
  2814. .ant-tabs-no-animation .ant-tabs-content > .ant-tabs-tabpane-inactive,
  2815. .ant-tabs-vertical .ant-tabs-content > .ant-tabs-tabpane-inactive {
  2816. display: none;
  2817. }
  2818. .ant-btn {
  2819. display: inline-block;
  2820. margin-bottom: 0;
  2821. font-weight: 500;
  2822. text-align: center;
  2823. touch-action: manipulation;
  2824. cursor: pointer;
  2825. background-image: none;
  2826. border: 1px solid transparent;
  2827. white-space: nowrap;
  2828. line-height: 1.5;
  2829. padding: 4px 15px;
  2830. font-size: 12px;
  2831. border-radius: 4px;
  2832. user-select: none;
  2833. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2834. position: relative;
  2835. color: #666;
  2836. background-color: #f7f7f7;
  2837. border-color: #d9d9d9;
  2838. }
  2839. .ant-btn > .anticon {
  2840. line-height: 1;
  2841. }
  2842. .ant-btn,
  2843. .ant-btn:active,
  2844. .ant-btn:focus {
  2845. outline: 0;
  2846. }
  2847. .ant-btn:not([disabled]):hover {
  2848. text-decoration: none;
  2849. }
  2850. .ant-btn:not([disabled]):active {
  2851. outline: 0;
  2852. transition: none;
  2853. }
  2854. .ant-btn.disabled,
  2855. .ant-btn[disabled] {
  2856. cursor: not-allowed;
  2857. }
  2858. .ant-btn.disabled > *,
  2859. .ant-btn[disabled] > * {
  2860. pointer-events: none;
  2861. }
  2862. .ant-btn-lg {
  2863. padding: 4px 15px 5px 15px;
  2864. font-size: 14px;
  2865. border-radius: 4px;
  2866. }
  2867. .ant-btn-sm {
  2868. padding: 1px 7px;
  2869. font-size: 12px;
  2870. border-radius: 2px;
  2871. }
  2872. .ant-btn > a:only-child {
  2873. color: currentColor;
  2874. }
  2875. .ant-btn > a:only-child:after {
  2876. content: '';
  2877. position: absolute;
  2878. top: 0;
  2879. left: 0;
  2880. bottom: 0;
  2881. right: 0;
  2882. background: transparent;
  2883. }
  2884. .ant-btn:hover,
  2885. .ant-btn:focus {
  2886. color: #79b5ff;
  2887. background-color: #f7f7f7;
  2888. border-color: #79b5ff;
  2889. }
  2890. .ant-btn:hover > a:only-child,
  2891. .ant-btn:focus > a:only-child {
  2892. color: currentColor;
  2893. }
  2894. .ant-btn:hover > a:only-child:after,
  2895. .ant-btn:focus > a:only-child:after {
  2896. content: '';
  2897. position: absolute;
  2898. top: 0;
  2899. left: 0;
  2900. bottom: 0;
  2901. right: 0;
  2902. background: transparent;
  2903. }
  2904. .ant-btn:active,
  2905. .ant-btn.active {
  2906. color: #549bf2;
  2907. background-color: #f7f7f7;
  2908. border-color: #549bf2;
  2909. }
  2910. .ant-btn:active > a:only-child,
  2911. .ant-btn.active > a:only-child {
  2912. color: currentColor;
  2913. }
  2914. .ant-btn:active > a:only-child:after,
  2915. .ant-btn.active > a:only-child:after {
  2916. content: '';
  2917. position: absolute;
  2918. top: 0;
  2919. left: 0;
  2920. bottom: 0;
  2921. right: 0;
  2922. background: transparent;
  2923. }
  2924. .ant-btn.disabled,
  2925. .ant-btn[disabled],
  2926. .ant-btn.disabled:hover,
  2927. .ant-btn[disabled]:hover,
  2928. .ant-btn.disabled:focus,
  2929. .ant-btn[disabled]:focus,
  2930. .ant-btn.disabled:active,
  2931. .ant-btn[disabled]:active,
  2932. .ant-btn.disabled.active,
  2933. .ant-btn[disabled].active {
  2934. color: #ccc;
  2935. background-color: #f7f7f7;
  2936. border-color: #d9d9d9;
  2937. }
  2938. .ant-btn.disabled > a:only-child,
  2939. .ant-btn[disabled] > a:only-child,
  2940. .ant-btn.disabled:hover > a:only-child,
  2941. .ant-btn[disabled]:hover > a:only-child,
  2942. .ant-btn.disabled:focus > a:only-child,
  2943. .ant-btn[disabled]:focus > a:only-child,
  2944. .ant-btn.disabled:active > a:only-child,
  2945. .ant-btn[disabled]:active > a:only-child,
  2946. .ant-btn.disabled.active > a:only-child,
  2947. .ant-btn[disabled].active > a:only-child {
  2948. color: currentColor;
  2949. }
  2950. .ant-btn.disabled > a:only-child:after,
  2951. .ant-btn[disabled] > a:only-child:after,
  2952. .ant-btn.disabled:hover > a:only-child:after,
  2953. .ant-btn[disabled]:hover > a:only-child:after,
  2954. .ant-btn.disabled:focus > a:only-child:after,
  2955. .ant-btn[disabled]:focus > a:only-child:after,
  2956. .ant-btn.disabled:active > a:only-child:after,
  2957. .ant-btn[disabled]:active > a:only-child:after,
  2958. .ant-btn.disabled.active > a:only-child:after,
  2959. .ant-btn[disabled].active > a:only-child:after {
  2960. content: '';
  2961. position: absolute;
  2962. top: 0;
  2963. left: 0;
  2964. bottom: 0;
  2965. right: 0;
  2966. background: transparent;
  2967. }
  2968. .ant-btn:hover,
  2969. .ant-btn:focus,
  2970. .ant-btn:active,
  2971. .ant-btn.active {
  2972. background: #fff;
  2973. }
  2974. .ant-btn-primary {
  2975. color: #fff;
  2976. background-color: #58a3ff;
  2977. border-color: #58a3ff;
  2978. }
  2979. .ant-btn-primary > a:only-child {
  2980. color: currentColor;
  2981. }
  2982. .ant-btn-primary > a:only-child:after {
  2983. content: '';
  2984. position: absolute;
  2985. top: 0;
  2986. left: 0;
  2987. bottom: 0;
  2988. right: 0;
  2989. background: transparent;
  2990. }
  2991. .ant-btn-primary:hover,
  2992. .ant-btn-primary:focus {
  2993. color: #fff;
  2994. background-color: #79b5ff;
  2995. border-color: #79b5ff;
  2996. }
  2997. .ant-btn-primary:hover > a:only-child,
  2998. .ant-btn-primary:focus > a:only-child {
  2999. color: currentColor;
  3000. }
  3001. .ant-btn-primary:hover > a:only-child:after,
  3002. .ant-btn-primary:focus > a:only-child:after {
  3003. content: '';
  3004. position: absolute;
  3005. top: 0;
  3006. left: 0;
  3007. bottom: 0;
  3008. right: 0;
  3009. background: transparent;
  3010. }
  3011. .ant-btn-primary:active,
  3012. .ant-btn-primary.active {
  3013. color: #fff;
  3014. background-color: #549bf2;
  3015. border-color: #549bf2;
  3016. }
  3017. .ant-btn-primary:active > a:only-child,
  3018. .ant-btn-primary.active > a:only-child {
  3019. color: currentColor;
  3020. }
  3021. .ant-btn-primary:active > a:only-child:after,
  3022. .ant-btn-primary.active > a:only-child:after {
  3023. content: '';
  3024. position: absolute;
  3025. top: 0;
  3026. left: 0;
  3027. bottom: 0;
  3028. right: 0;
  3029. background: transparent;
  3030. }
  3031. .ant-btn-primary.disabled,
  3032. .ant-btn-primary[disabled],
  3033. .ant-btn-primary.disabled:hover,
  3034. .ant-btn-primary[disabled]:hover,
  3035. .ant-btn-primary.disabled:focus,
  3036. .ant-btn-primary[disabled]:focus,
  3037. .ant-btn-primary.disabled:active,
  3038. .ant-btn-primary[disabled]:active,
  3039. .ant-btn-primary.disabled.active,
  3040. .ant-btn-primary[disabled].active {
  3041. color: #ccc;
  3042. background-color: #f7f7f7;
  3043. border-color: #d9d9d9;
  3044. }
  3045. .ant-btn-primary.disabled > a:only-child,
  3046. .ant-btn-primary[disabled] > a:only-child,
  3047. .ant-btn-primary.disabled:hover > a:only-child,
  3048. .ant-btn-primary[disabled]:hover > a:only-child,
  3049. .ant-btn-primary.disabled:focus > a:only-child,
  3050. .ant-btn-primary[disabled]:focus > a:only-child,
  3051. .ant-btn-primary.disabled:active > a:only-child,
  3052. .ant-btn-primary[disabled]:active > a:only-child,
  3053. .ant-btn-primary.disabled.active > a:only-child,
  3054. .ant-btn-primary[disabled].active > a:only-child {
  3055. color: currentColor;
  3056. }
  3057. .ant-btn-primary.disabled > a:only-child:after,
  3058. .ant-btn-primary[disabled] > a:only-child:after,
  3059. .ant-btn-primary.disabled:hover > a:only-child:after,
  3060. .ant-btn-primary[disabled]:hover > a:only-child:after,
  3061. .ant-btn-primary.disabled:focus > a:only-child:after,
  3062. .ant-btn-primary[disabled]:focus > a:only-child:after,
  3063. .ant-btn-primary.disabled:active > a:only-child:after,
  3064. .ant-btn-primary[disabled]:active > a:only-child:after,
  3065. .ant-btn-primary.disabled.active > a:only-child:after,
  3066. .ant-btn-primary[disabled].active > a:only-child:after {
  3067. content: '';
  3068. position: absolute;
  3069. top: 0;
  3070. left: 0;
  3071. bottom: 0;
  3072. right: 0;
  3073. background: transparent;
  3074. }
  3075. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  3076. border-right-color: #549bf2;
  3077. border-left-color: #549bf2;
  3078. }
  3079. .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  3080. border-right-color: #549bf2;
  3081. }
  3082. .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  3083. border-right-color: #d9d9d9;
  3084. }
  3085. .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
  3086. .ant-btn-group .ant-btn-primary + .ant-btn {
  3087. border-left-color: #549bf2;
  3088. }
  3089. .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
  3090. .ant-btn-group .ant-btn-primary + .ant-btn[disabled] {
  3091. border-left-color: #d9d9d9;
  3092. }
  3093. .ant-btn-ghost {
  3094. color: #666;
  3095. background-color: transparent;
  3096. border-color: #d9d9d9;
  3097. }
  3098. .ant-btn-ghost > a:only-child {
  3099. color: currentColor;
  3100. }
  3101. .ant-btn-ghost > a:only-child:after {
  3102. content: '';
  3103. position: absolute;
  3104. top: 0;
  3105. left: 0;
  3106. bottom: 0;
  3107. right: 0;
  3108. background: transparent;
  3109. }
  3110. .ant-btn-ghost:hover,
  3111. .ant-btn-ghost:focus {
  3112. color: #79b5ff;
  3113. background-color: transparent;
  3114. border-color: #79b5ff;
  3115. }
  3116. .ant-btn-ghost:hover > a:only-child,
  3117. .ant-btn-ghost:focus > a:only-child {
  3118. color: currentColor;
  3119. }
  3120. .ant-btn-ghost:hover > a:only-child:after,
  3121. .ant-btn-ghost:focus > a:only-child:after {
  3122. content: '';
  3123. position: absolute;
  3124. top: 0;
  3125. left: 0;
  3126. bottom: 0;
  3127. right: 0;
  3128. background: transparent;
  3129. }
  3130. .ant-btn-ghost:active,
  3131. .ant-btn-ghost.active {
  3132. color: #549bf2;
  3133. background-color: transparent;
  3134. border-color: #549bf2;
  3135. }
  3136. .ant-btn-ghost:active > a:only-child,
  3137. .ant-btn-ghost.active > a:only-child {
  3138. color: currentColor;
  3139. }
  3140. .ant-btn-ghost:active > a:only-child:after,
  3141. .ant-btn-ghost.active > a:only-child:after {
  3142. content: '';
  3143. position: absolute;
  3144. top: 0;
  3145. left: 0;
  3146. bottom: 0;
  3147. right: 0;
  3148. background: transparent;
  3149. }
  3150. .ant-btn-ghost.disabled,
  3151. .ant-btn-ghost[disabled],
  3152. .ant-btn-ghost.disabled:hover,
  3153. .ant-btn-ghost[disabled]:hover,
  3154. .ant-btn-ghost.disabled:focus,
  3155. .ant-btn-ghost[disabled]:focus,
  3156. .ant-btn-ghost.disabled:active,
  3157. .ant-btn-ghost[disabled]:active,
  3158. .ant-btn-ghost.disabled.active,
  3159. .ant-btn-ghost[disabled].active {
  3160. color: #ccc;
  3161. background-color: #f7f7f7;
  3162. border-color: #d9d9d9;
  3163. }
  3164. .ant-btn-ghost.disabled > a:only-child,
  3165. .ant-btn-ghost[disabled] > a:only-child,
  3166. .ant-btn-ghost.disabled:hover > a:only-child,
  3167. .ant-btn-ghost[disabled]:hover > a:only-child,
  3168. .ant-btn-ghost.disabled:focus > a:only-child,
  3169. .ant-btn-ghost[disabled]:focus > a:only-child,
  3170. .ant-btn-ghost.disabled:active > a:only-child,
  3171. .ant-btn-ghost[disabled]:active > a:only-child,
  3172. .ant-btn-ghost.disabled.active > a:only-child,
  3173. .ant-btn-ghost[disabled].active > a:only-child {
  3174. color: currentColor;
  3175. }
  3176. .ant-btn-ghost.disabled > a:only-child:after,
  3177. .ant-btn-ghost[disabled] > a:only-child:after,
  3178. .ant-btn-ghost.disabled:hover > a:only-child:after,
  3179. .ant-btn-ghost[disabled]:hover > a:only-child:after,
  3180. .ant-btn-ghost.disabled:focus > a:only-child:after,
  3181. .ant-btn-ghost[disabled]:focus > a:only-child:after,
  3182. .ant-btn-ghost.disabled:active > a:only-child:after,
  3183. .ant-btn-ghost[disabled]:active > a:only-child:after,
  3184. .ant-btn-ghost.disabled.active > a:only-child:after,
  3185. .ant-btn-ghost[disabled].active > a:only-child:after {
  3186. content: '';
  3187. position: absolute;
  3188. top: 0;
  3189. left: 0;
  3190. bottom: 0;
  3191. right: 0;
  3192. background: transparent;
  3193. }
  3194. .ant-btn-dashed {
  3195. color: #666;
  3196. background-color: transparent;
  3197. border-color: #d9d9d9;
  3198. border-style: dashed;
  3199. }
  3200. .ant-btn-dashed > a:only-child {
  3201. color: currentColor;
  3202. }
  3203. .ant-btn-dashed > a:only-child:after {
  3204. content: '';
  3205. position: absolute;
  3206. top: 0;
  3207. left: 0;
  3208. bottom: 0;
  3209. right: 0;
  3210. background: transparent;
  3211. }
  3212. .ant-btn-dashed:hover,
  3213. .ant-btn-dashed:focus {
  3214. color: #79b5ff;
  3215. background-color: transparent;
  3216. border-color: #79b5ff;
  3217. }
  3218. .ant-btn-dashed:hover > a:only-child,
  3219. .ant-btn-dashed:focus > a:only-child {
  3220. color: currentColor;
  3221. }
  3222. .ant-btn-dashed:hover > a:only-child:after,
  3223. .ant-btn-dashed:focus > a:only-child:after {
  3224. content: '';
  3225. position: absolute;
  3226. top: 0;
  3227. left: 0;
  3228. bottom: 0;
  3229. right: 0;
  3230. background: transparent;
  3231. }
  3232. .ant-btn-dashed:active,
  3233. .ant-btn-dashed.active {
  3234. color: #549bf2;
  3235. background-color: transparent;
  3236. border-color: #549bf2;
  3237. }
  3238. .ant-btn-dashed:active > a:only-child,
  3239. .ant-btn-dashed.active > a:only-child {
  3240. color: currentColor;
  3241. }
  3242. .ant-btn-dashed:active > a:only-child:after,
  3243. .ant-btn-dashed.active > a:only-child:after {
  3244. content: '';
  3245. position: absolute;
  3246. top: 0;
  3247. left: 0;
  3248. bottom: 0;
  3249. right: 0;
  3250. background: transparent;
  3251. }
  3252. .ant-btn-dashed.disabled,
  3253. .ant-btn-dashed[disabled],
  3254. .ant-btn-dashed.disabled:hover,
  3255. .ant-btn-dashed[disabled]:hover,
  3256. .ant-btn-dashed.disabled:focus,
  3257. .ant-btn-dashed[disabled]:focus,
  3258. .ant-btn-dashed.disabled:active,
  3259. .ant-btn-dashed[disabled]:active,
  3260. .ant-btn-dashed.disabled.active,
  3261. .ant-btn-dashed[disabled].active {
  3262. color: #ccc;
  3263. background-color: #f7f7f7;
  3264. border-color: #d9d9d9;
  3265. }
  3266. .ant-btn-dashed.disabled > a:only-child,
  3267. .ant-btn-dashed[disabled] > a:only-child,
  3268. .ant-btn-dashed.disabled:hover > a:only-child,
  3269. .ant-btn-dashed[disabled]:hover > a:only-child,
  3270. .ant-btn-dashed.disabled:focus > a:only-child,
  3271. .ant-btn-dashed[disabled]:focus > a:only-child,
  3272. .ant-btn-dashed.disabled:active > a:only-child,
  3273. .ant-btn-dashed[disabled]:active > a:only-child,
  3274. .ant-btn-dashed.disabled.active > a:only-child,
  3275. .ant-btn-dashed[disabled].active > a:only-child {
  3276. color: currentColor;
  3277. }
  3278. .ant-btn-dashed.disabled > a:only-child:after,
  3279. .ant-btn-dashed[disabled] > a:only-child:after,
  3280. .ant-btn-dashed.disabled:hover > a:only-child:after,
  3281. .ant-btn-dashed[disabled]:hover > a:only-child:after,
  3282. .ant-btn-dashed.disabled:focus > a:only-child:after,
  3283. .ant-btn-dashed[disabled]:focus > a:only-child:after,
  3284. .ant-btn-dashed.disabled:active > a:only-child:after,
  3285. .ant-btn-dashed[disabled]:active > a:only-child:after,
  3286. .ant-btn-dashed.disabled.active > a:only-child:after,
  3287. .ant-btn-dashed[disabled].active > a:only-child:after {
  3288. content: '';
  3289. position: absolute;
  3290. top: 0;
  3291. left: 0;
  3292. bottom: 0;
  3293. right: 0;
  3294. background: transparent;
  3295. }
  3296. .ant-btn-circle,
  3297. .ant-btn-circle-outline {
  3298. width: 28px;
  3299. height: 28px;
  3300. padding: 0;
  3301. font-size: 14px;
  3302. border-radius: 50%;
  3303. }
  3304. .ant-btn-circle.ant-btn-lg,
  3305. .ant-btn-circle-outline.ant-btn-lg {
  3306. width: 32px;
  3307. height: 32px;
  3308. padding: 0;
  3309. font-size: 16px;
  3310. border-radius: 50%;
  3311. }
  3312. .ant-btn-circle.ant-btn-sm,
  3313. .ant-btn-circle-outline.ant-btn-sm {
  3314. width: 22px;
  3315. height: 22px;
  3316. padding: 0;
  3317. font-size: 12px;
  3318. border-radius: 50%;
  3319. }
  3320. .ant-btn:before {
  3321. position: absolute;
  3322. top: -1px;
  3323. left: -1px;
  3324. bottom: -1px;
  3325. right: -1px;
  3326. background: #fff;
  3327. opacity: 0.35;
  3328. content: '';
  3329. border-radius: inherit;
  3330. z-index: 1;
  3331. transition: opacity .2s;
  3332. pointer-events: none;
  3333. display: none;
  3334. }
  3335. .ant-btn.ant-btn-loading {
  3336. padding-left: 29px;
  3337. pointer-events: none;
  3338. position: relative;
  3339. }
  3340. .ant-btn.ant-btn-loading .anticon {
  3341. margin-left: -14px;
  3342. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  3343. }
  3344. .ant-btn.ant-btn-loading:before {
  3345. display: block;
  3346. }
  3347. .ant-btn-sm.ant-btn-loading {
  3348. padding-left: 24px;
  3349. }
  3350. .ant-btn-sm.ant-btn-loading .anticon {
  3351. margin-left: -17px;
  3352. }
  3353. .ant-btn-group {
  3354. position: relative;
  3355. display: inline-block;
  3356. }
  3357. .ant-btn-group > .ant-btn {
  3358. position: relative;
  3359. }
  3360. .ant-btn-group > .ant-btn:hover,
  3361. .ant-btn-group > .ant-btn:focus,
  3362. .ant-btn-group > .ant-btn:active,
  3363. .ant-btn-group > .ant-btn.active {
  3364. z-index: 2;
  3365. }
  3366. .ant-btn-group-lg > .ant-btn {
  3367. padding: 4px 15px 5px 15px;
  3368. font-size: 14px;
  3369. border-radius: 4px;
  3370. }
  3371. .ant-btn-group-sm > .ant-btn {
  3372. padding: 1px 7px;
  3373. font-size: 12px;
  3374. border-radius: 2px;
  3375. }
  3376. .ant-btn-group-sm > .ant-btn > .anticon {
  3377. font-size: 12px;
  3378. }
  3379. .ant-btn-group .ant-btn + .ant-btn,
  3380. .ant-btn + .ant-btn-group,
  3381. .ant-btn-group + .ant-btn,
  3382. .ant-btn-group + .ant-btn-group {
  3383. margin-left: -1px;
  3384. }
  3385. .ant-btn-group .ant-btn:not(:first-child):not(:last-child) {
  3386. border-radius: 0;
  3387. padding-left: 8px;
  3388. padding-right: 8px;
  3389. }
  3390. .ant-btn-group > .ant-btn:first-child {
  3391. margin-left: 0;
  3392. }
  3393. .ant-btn-group > .ant-btn:first-child:not(:last-child) {
  3394. border-bottom-right-radius: 0;
  3395. border-top-right-radius: 0;
  3396. padding-right: 8px;
  3397. }
  3398. .ant-btn-group > .ant-btn:last-child:not(:first-child) {
  3399. border-bottom-left-radius: 0;
  3400. border-top-left-radius: 0;
  3401. padding-left: 8px;
  3402. }
  3403. .ant-btn-group > .ant-btn-group {
  3404. float: left;
  3405. }
  3406. .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  3407. border-radius: 0;
  3408. }
  3409. .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  3410. border-bottom-right-radius: 0;
  3411. border-top-right-radius: 0;
  3412. padding-right: 8px;
  3413. }
  3414. .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  3415. border-bottom-left-radius: 0;
  3416. border-top-left-radius: 0;
  3417. padding-left: 8px;
  3418. }
  3419. .ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline).ant-btn-icon-only {
  3420. padding-left: 8px;
  3421. padding-right: 8px;
  3422. }
  3423. .ant-btn > .anticon + span,
  3424. .ant-btn > span + .anticon {
  3425. margin-left: 0.5em;
  3426. }
  3427. .ant-btn-clicked:after {
  3428. content: '';
  3429. position: absolute;
  3430. top: -1px;
  3431. left: -1px;
  3432. bottom: -1px;
  3433. right: -1px;
  3434. border-radius: inherit;
  3435. border: 0 solid #58a3ff;
  3436. opacity: 0.4;
  3437. animation: buttonEffect 0.36s ease-out forwards;
  3438. display: block;
  3439. }
  3440. @keyframes buttonEffect {
  3441. to {
  3442. opacity: 0;
  3443. top: -6px;
  3444. left: -6px;
  3445. bottom: -6px;
  3446. right: -6px;
  3447. border-width: 6px;
  3448. }
  3449. }
  3450. .ant-checkbox {
  3451. white-space: nowrap;
  3452. cursor: pointer;
  3453. outline: none;
  3454. display: inline-block;
  3455. line-height: 1;
  3456. position: relative;
  3457. vertical-align: middle;
  3458. }
  3459. .ant-checkbox-wrapper:hover .ant-checkbox .ant-checkbox-inner,
  3460. .ant-checkbox:hover .ant-checkbox-inner,
  3461. .ant-checkbox-focused .ant-checkbox-inner {
  3462. border-color: #58a3ff;
  3463. }
  3464. .ant-checkbox-inner {
  3465. position: relative;
  3466. top: 0;
  3467. left: 0;
  3468. display: inline-block;
  3469. width: 14px;
  3470. height: 14px;
  3471. border: 1px solid #d9d9d9;
  3472. border-radius: 3px;
  3473. background-color: #fff;
  3474. transition: all .3s;
  3475. }
  3476. .ant-checkbox-inner:after {
  3477. transform: rotate(45deg) scale(0);
  3478. position: absolute;
  3479. left: 4px;
  3480. top: 1px;
  3481. display: table;
  3482. width: 5px;
  3483. height: 8px;
  3484. border: 2px solid #fff;
  3485. border-top: 0;
  3486. border-left: 0;
  3487. content: ' ';
  3488. transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  3489. }
  3490. .ant-checkbox-input {
  3491. position: absolute;
  3492. left: 0;
  3493. z-index: 1;
  3494. cursor: pointer;
  3495. opacity: 0;
  3496. filter: alpha(opacity=0);
  3497. top: 0;
  3498. bottom: 0;
  3499. right: 0;
  3500. width: 100%;
  3501. height: 100%;
  3502. }
  3503. .ant-checkbox-indeterminate .ant-checkbox-inner:after {
  3504. content: ' ';
  3505. transform: scale(1);
  3506. position: absolute;
  3507. left: 2px;
  3508. top: 5px;
  3509. width: 8px;
  3510. height: 1px;
  3511. }
  3512. .ant-checkbox-checked .ant-checkbox-inner:after {
  3513. transform: rotate(45deg) scale(1);
  3514. position: absolute;
  3515. left: 4px;
  3516. top: 1px;
  3517. display: table;
  3518. width: 5px;
  3519. height: 8px;
  3520. border: 2px solid #fff;
  3521. border-top: 0;
  3522. border-left: 0;
  3523. content: ' ';
  3524. transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  3525. }
  3526. .ant-checkbox-checked .ant-checkbox-inner,
  3527. .ant-checkbox-indeterminate .ant-checkbox-inner {
  3528. background-color: #58a3ff;
  3529. border-color: #58a3ff;
  3530. }
  3531. .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
  3532. animation-name: none;
  3533. border-color: #ccc;
  3534. }
  3535. .ant-checkbox-disabled .ant-checkbox-inner {
  3536. border-color: #d9d9d9 !important;
  3537. background-color: #f3f3f3;
  3538. }
  3539. .ant-checkbox-disabled .ant-checkbox-inner:after {
  3540. animation-name: none;
  3541. border-color: #f3f3f3;
  3542. }
  3543. .ant-checkbox-disabled + span {
  3544. color: #ccc;
  3545. cursor: not-allowed;
  3546. }
  3547. .ant-checkbox-wrapper {
  3548. cursor: pointer;
  3549. font-size: 12px;
  3550. display: inline-block;
  3551. }
  3552. .ant-checkbox-wrapper:not(:last-child) {
  3553. margin-right: 8px;
  3554. }
  3555. .ant-checkbox-wrapper + span,
  3556. .ant-checkbox + span {
  3557. padding-left: 8px;
  3558. padding-right: 8px;
  3559. }
  3560. .ant-checkbox-group {
  3561. font-size: 12px;
  3562. }
  3563. .ant-checkbox-group-item {
  3564. display: inline-block;
  3565. }
  3566. @media \0screen {
  3567. .ant-checkbox-checked .ant-checkbox-inner:before,
  3568. .ant-checkbox-checked .ant-checkbox-inner:after {
  3569. font-family: 'anticon';
  3570. text-rendering: optimizeLegibility;
  3571. -webkit-font-smoothing: antialiased;
  3572. -moz-osx-font-smoothing: grayscale;
  3573. content: "\E632";
  3574. font-weight: bold;
  3575. font-size: 8px;
  3576. border: 0;
  3577. color: #fff;
  3578. left: 2px;
  3579. top: 3px;
  3580. position: absolute;
  3581. }
  3582. }
  3583. .ant-input-search-wrapper {
  3584. display: inline-block;
  3585. position: relative;
  3586. }
  3587. .ant-input-search-wrapper .ant-input-search {
  3588. transition: all .3s ease;
  3589. }
  3590. .ant-input-search-wrapper .ant-input-search-icon {
  3591. position: absolute;
  3592. right: 8px;
  3593. cursor: pointer;
  3594. transition: all .3s ease;
  3595. font-size: 14px;
  3596. height: 20px;
  3597. line-height: 20px;
  3598. top: 50%;
  3599. margin-top: -10px;
  3600. }
  3601. .ant-input-search-wrapper .ant-input-search-icon:hover {
  3602. color: #58a3ff;
  3603. }
  3604. .ant-input-search-wrapper:hover .ant-input-search:not[disabled] {
  3605. border: 1px solid #58a3ff;
  3606. }
  3607. .ant-search-input-wrapper {
  3608. display: inline-block;
  3609. vertical-align: middle;
  3610. }
  3611. .ant-search-input.ant-input-group .ant-input:first-child,
  3612. .ant-search-input.ant-input-group .ant-select:first-child {
  3613. border-radius: 4px;
  3614. position: absolute;
  3615. top: -1px;
  3616. width: 100%;
  3617. }
  3618. .ant-search-input.ant-input-group .ant-input:first-child {
  3619. padding-right: 36px;
  3620. }
  3621. .ant-search-input .ant-search-btn {
  3622. color: #666;
  3623. background-color: #f7f7f7;
  3624. border-color: #d9d9d9;
  3625. border-radius: 0 3px 3px 0;
  3626. left: -1px;
  3627. position: relative;
  3628. border-width: 0 0 0 1px;
  3629. z-index: 2;
  3630. padding-left: 8px;
  3631. padding-right: 8px;
  3632. }
  3633. .ant-search-input .ant-search-btn > a:only-child {
  3634. color: currentColor;
  3635. }
  3636. .ant-search-input .ant-search-btn > a:only-child:after {
  3637. content: '';
  3638. position: absolute;
  3639. top: 0;
  3640. left: 0;
  3641. bottom: 0;
  3642. right: 0;
  3643. background: transparent;
  3644. }
  3645. .ant-search-input .ant-search-btn:hover,
  3646. .ant-search-input .ant-search-btn:focus {
  3647. color: #79b5ff;
  3648. background-color: #f7f7f7;
  3649. border-color: #79b5ff;
  3650. }
  3651. .ant-search-input .ant-search-btn:hover > a:only-child,
  3652. .ant-search-input .ant-search-btn:focus > a:only-child {
  3653. color: currentColor;
  3654. }
  3655. .ant-search-input .ant-search-btn:hover > a:only-child:after,
  3656. .ant-search-input .ant-search-btn:focus > a:only-child:after {
  3657. content: '';
  3658. position: absolute;
  3659. top: 0;
  3660. left: 0;
  3661. bottom: 0;
  3662. right: 0;
  3663. background: transparent;
  3664. }
  3665. .ant-search-input .ant-search-btn:active,
  3666. .ant-search-input .ant-search-btn.active {
  3667. color: #549bf2;
  3668. background-color: #f7f7f7;
  3669. border-color: #549bf2;
  3670. }
  3671. .ant-search-input .ant-search-btn:active > a:only-child,
  3672. .ant-search-input .ant-search-btn.active > a:only-child {
  3673. color: currentColor;
  3674. }
  3675. .ant-search-input .ant-search-btn:active > a:only-child:after,
  3676. .ant-search-input .ant-search-btn.active > a:only-child:after {
  3677. content: '';
  3678. position: absolute;
  3679. top: 0;
  3680. left: 0;
  3681. bottom: 0;
  3682. right: 0;
  3683. background: transparent;
  3684. }
  3685. .ant-search-input .ant-search-btn.disabled,
  3686. .ant-search-input .ant-search-btn[disabled],
  3687. .ant-search-input .ant-search-btn.disabled:hover,
  3688. .ant-search-input .ant-search-btn[disabled]:hover,
  3689. .ant-search-input .ant-search-btn.disabled:focus,
  3690. .ant-search-input .ant-search-btn[disabled]:focus,
  3691. .ant-search-input .ant-search-btn.disabled:active,
  3692. .ant-search-input .ant-search-btn[disabled]:active,
  3693. .ant-search-input .ant-search-btn.disabled.active,
  3694. .ant-search-input .ant-search-btn[disabled].active {
  3695. color: #ccc;
  3696. background-color: #f7f7f7;
  3697. border-color: #d9d9d9;
  3698. }
  3699. .ant-search-input .ant-search-btn.disabled > a:only-child,
  3700. .ant-search-input .ant-search-btn[disabled] > a:only-child,
  3701. .ant-search-input .ant-search-btn.disabled:hover > a:only-child,
  3702. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child,
  3703. .ant-search-input .ant-search-btn.disabled:focus > a:only-child,
  3704. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child,
  3705. .ant-search-input .ant-search-btn.disabled:active > a:only-child,
  3706. .ant-search-input .ant-search-btn[disabled]:active > a:only-child,
  3707. .ant-search-input .ant-search-btn.disabled.active > a:only-child,
  3708. .ant-search-input .ant-search-btn[disabled].active > a:only-child {
  3709. color: currentColor;
  3710. }
  3711. .ant-search-input .ant-search-btn.disabled > a:only-child:after,
  3712. .ant-search-input .ant-search-btn[disabled] > a:only-child:after,
  3713. .ant-search-input .ant-search-btn.disabled:hover > a:only-child:after,
  3714. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child:after,
  3715. .ant-search-input .ant-search-btn.disabled:focus > a:only-child:after,
  3716. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child:after,
  3717. .ant-search-input .ant-search-btn.disabled:active > a:only-child:after,
  3718. .ant-search-input .ant-search-btn[disabled]:active > a:only-child:after,
  3719. .ant-search-input .ant-search-btn.disabled.active > a:only-child:after,
  3720. .ant-search-input .ant-search-btn[disabled].active > a:only-child:after {
  3721. content: '';
  3722. position: absolute;
  3723. top: 0;
  3724. left: 0;
  3725. bottom: 0;
  3726. right: 0;
  3727. background: transparent;
  3728. }
  3729. .ant-search-input .ant-search-btn:hover,
  3730. .ant-search-input .ant-search-btn:focus,
  3731. .ant-search-input .ant-search-btn:active,
  3732. .ant-search-input .ant-search-btn.active {
  3733. background: #fff;
  3734. }
  3735. .ant-search-input .ant-search-btn:hover {
  3736. border-color: #d9d9d9;
  3737. }
  3738. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty,
  3739. .ant-search-input:hover .ant-search-btn-noempty {
  3740. color: #fff;
  3741. background-color: #58a3ff;
  3742. border-color: #58a3ff;
  3743. }
  3744. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child,
  3745. .ant-search-input:hover .ant-search-btn-noempty > a:only-child {
  3746. color: currentColor;
  3747. }
  3748. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child:after,
  3749. .ant-search-input:hover .ant-search-btn-noempty > a:only-child:after {
  3750. content: '';
  3751. position: absolute;
  3752. top: 0;
  3753. left: 0;
  3754. bottom: 0;
  3755. right: 0;
  3756. background: transparent;
  3757. }
  3758. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover,
  3759. .ant-search-input:hover .ant-search-btn-noempty:hover,
  3760. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus,
  3761. .ant-search-input:hover .ant-search-btn-noempty:focus {
  3762. color: #fff;
  3763. background-color: #79b5ff;
  3764. border-color: #79b5ff;
  3765. }
  3766. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child,
  3767. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child,
  3768. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child,
  3769. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child {
  3770. color: currentColor;
  3771. }
  3772. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child:after,
  3773. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child:after,
  3774. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child:after,
  3775. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child:after {
  3776. content: '';
  3777. position: absolute;
  3778. top: 0;
  3779. left: 0;
  3780. bottom: 0;
  3781. right: 0;
  3782. background: transparent;
  3783. }
  3784. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active,
  3785. .ant-search-input:hover .ant-search-btn-noempty:active,
  3786. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active,
  3787. .ant-search-input:hover .ant-search-btn-noempty.active {
  3788. color: #fff;
  3789. background-color: #549bf2;
  3790. border-color: #549bf2;
  3791. }
  3792. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child,
  3793. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child,
  3794. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child,
  3795. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child {
  3796. color: currentColor;
  3797. }
  3798. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child:after,
  3799. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child:after,
  3800. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child:after,
  3801. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child:after {
  3802. content: '';
  3803. position: absolute;
  3804. top: 0;
  3805. left: 0;
  3806. bottom: 0;
  3807. right: 0;
  3808. background: transparent;
  3809. }
  3810. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled,
  3811. .ant-search-input:hover .ant-search-btn-noempty.disabled,
  3812. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled],
  3813. .ant-search-input:hover .ant-search-btn-noempty[disabled],
  3814. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover,
  3815. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover,
  3816. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover,
  3817. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover,
  3818. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus,
  3819. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus,
  3820. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus,
  3821. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus,
  3822. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active,
  3823. .ant-search-input:hover .ant-search-btn-noempty.disabled:active,
  3824. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active,
  3825. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active,
  3826. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active,
  3827. .ant-search-input:hover .ant-search-btn-noempty.disabled.active,
  3828. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active,
  3829. .ant-search-input:hover .ant-search-btn-noempty[disabled].active {
  3830. color: #ccc;
  3831. background-color: #f7f7f7;
  3832. border-color: #d9d9d9;
  3833. }
  3834. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child,
  3835. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child,
  3836. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child,
  3837. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child,
  3838. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child,
  3839. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child,
  3840. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3841. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3842. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child,
  3843. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child,
  3844. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3845. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3846. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child,
  3847. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child,
  3848. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child,
  3849. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child,
  3850. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child,
  3851. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child,
  3852. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child,
  3853. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child {
  3854. color: currentColor;
  3855. }
  3856. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child:after,
  3857. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child:after,
  3858. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child:after,
  3859. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child:after,
  3860. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3861. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3862. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3863. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3864. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3865. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3866. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3867. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3868. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3869. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3870. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3871. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3872. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3873. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3874. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child:after,
  3875. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child:after {
  3876. content: '';
  3877. position: absolute;
  3878. top: 0;
  3879. left: 0;
  3880. bottom: 0;
  3881. right: 0;
  3882. background: transparent;
  3883. }
  3884. .ant-search-input .ant-select-combobox .ant-select-selection__rendered {
  3885. margin-right: 29px;
  3886. }
  3887. .ant-input {
  3888. position: relative;
  3889. display: inline-block;
  3890. padding: 4px 7px;
  3891. width: 100%;
  3892. height: 28px;
  3893. cursor: text;
  3894. font-size: 12px;
  3895. line-height: 1.5;
  3896. color: #666;
  3897. background-color: #fff;
  3898. background-image: none;
  3899. border: 1px solid #d9d9d9;
  3900. border-radius: 4px;
  3901. transition: all .3s;
  3902. }
  3903. .ant-input::-moz-placeholder {
  3904. color: #ccc;
  3905. opacity: 1;
  3906. }
  3907. .ant-input:-ms-input-placeholder {
  3908. color: #ccc;
  3909. }
  3910. .ant-input::-webkit-input-placeholder {
  3911. color: #ccc;
  3912. }
  3913. .ant-input:hover {
  3914. border-color: #79b5ff;
  3915. }
  3916. .ant-input:focus {
  3917. border-color: #79b5ff;
  3918. outline: 0;
  3919. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  3920. }
  3921. .ant-input[disabled] {
  3922. background-color: #f7f7f7;
  3923. opacity: 1;
  3924. cursor: not-allowed;
  3925. color: #ccc;
  3926. }
  3927. .ant-input[disabled]:hover {
  3928. border-color: #e1e1e1;
  3929. }
  3930. textarea.ant-input {
  3931. max-width: 100%;
  3932. height: auto;
  3933. vertical-align: bottom;
  3934. }
  3935. .ant-input-lg {
  3936. padding: 6px 7px;
  3937. height: 32px;
  3938. }
  3939. .ant-input-sm {
  3940. padding: 1px 7px;
  3941. height: 22px;
  3942. border-radius: 2px;
  3943. }
  3944. .ant-input-group {
  3945. position: relative;
  3946. display: table;
  3947. border-collapse: separate;
  3948. border-spacing: 0;
  3949. width: 100%;
  3950. }
  3951. .ant-input-group[class*="col-"] {
  3952. float: none;
  3953. padding-left: 0;
  3954. padding-right: 0;
  3955. }
  3956. .ant-input-group > [class*="col-"] {
  3957. padding-right: 8px;
  3958. }
  3959. .ant-input-group-addon,
  3960. .ant-input-group-wrap,
  3961. .ant-input-group > .ant-input {
  3962. display: table-cell;
  3963. }
  3964. .ant-input-group-addon:not(:first-child):not(:last-child),
  3965. .ant-input-group-wrap:not(:first-child):not(:last-child),
  3966. .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  3967. border-radius: 0;
  3968. }
  3969. .ant-input-group-addon,
  3970. .ant-input-group-wrap {
  3971. width: 1px;
  3972. white-space: nowrap;
  3973. vertical-align: middle;
  3974. }
  3975. .ant-input-group-wrap > * {
  3976. display: block !important;
  3977. }
  3978. .ant-input-group .ant-input {
  3979. position: relative;
  3980. z-index: 2;
  3981. float: left;
  3982. width: 100%;
  3983. margin-bottom: 0;
  3984. }
  3985. .ant-input-group-addon {
  3986. padding: 4px 7px;
  3987. font-size: 12px;
  3988. font-weight: normal;
  3989. line-height: 1;
  3990. color: #666;
  3991. text-align: center;
  3992. background-color: #eee;
  3993. border: 1px solid #d9d9d9;
  3994. border-radius: 4px;
  3995. position: relative;
  3996. transition: all .3s;
  3997. }
  3998. .ant-input-group-addon .ant-select {
  3999. margin: -5px -7px;
  4000. }
  4001. .ant-input-group-addon .ant-select .ant-select-selection {
  4002. background-color: inherit;
  4003. border: 0;
  4004. margin: -1px;
  4005. border: 1px solid transparent;
  4006. box-shadow: none;
  4007. }
  4008. .ant-input-group-addon .ant-select-open .ant-select-selection,
  4009. .ant-input-group-addon .ant-select-focused .ant-select-selection {
  4010. color: #58a3ff;
  4011. }
  4012. .ant-input-group-addon > i:only-child:after {
  4013. position: absolute;
  4014. content: '';
  4015. top: 0;
  4016. left: 0;
  4017. right: 0;
  4018. bottom: 0;
  4019. }
  4020. .ant-input-group > span > .ant-input:first-child,
  4021. .ant-input-group > .ant-input:first-child,
  4022. .ant-input-group-addon:first-child {
  4023. border-bottom-right-radius: 0;
  4024. border-top-right-radius: 0;
  4025. }
  4026. .ant-input-group > span > .ant-input:first-child .ant-select .ant-select-selection,
  4027. .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
  4028. .ant-input-group-addon:first-child .ant-select .ant-select-selection {
  4029. border-bottom-right-radius: 0;
  4030. border-top-right-radius: 0;
  4031. }
  4032. .ant-input-group-addon:first-child {
  4033. border-right: 0;
  4034. }
  4035. .ant-input-group-addon:last-child {
  4036. border-left: 0;
  4037. }
  4038. .ant-input-group > .ant-input:last-child,
  4039. .ant-input-group-addon:last-child {
  4040. border-bottom-left-radius: 0;
  4041. border-top-left-radius: 0;
  4042. }
  4043. .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
  4044. .ant-input-group-addon:last-child .ant-select .ant-select-selection {
  4045. border-bottom-left-radius: 0;
  4046. border-top-left-radius: 0;
  4047. }
  4048. .ant-input-group-lg .ant-input,
  4049. .ant-input-group-lg > .ant-input-group-addon {
  4050. padding: 6px 7px;
  4051. height: 32px;
  4052. }
  4053. .ant-input-group-sm .ant-input,
  4054. .ant-input-group-sm > .ant-input-group-addon {
  4055. padding: 1px 7px;
  4056. height: 22px;
  4057. border-radius: 2px;
  4058. }
  4059. .ant-message {
  4060. font-size: 12px;
  4061. position: fixed;
  4062. z-index: 1010;
  4063. width: 100%;
  4064. top: 16px;
  4065. left: 0;
  4066. }
  4067. .ant-message-notice {
  4068. width: auto;
  4069. vertical-align: middle;
  4070. position: absolute;
  4071. left: 50%;
  4072. }
  4073. .ant-message-notice-content {
  4074. position: relative;
  4075. right: 50%;
  4076. padding: 8px 16px;
  4077. border-radius: 4px;
  4078. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  4079. background: #fff;
  4080. display: block;
  4081. }
  4082. .ant-message-success .anticon {
  4083. color: #87d068;
  4084. }
  4085. .ant-message-error .anticon {
  4086. color: #f50;
  4087. }
  4088. .ant-message-warning .anticon {
  4089. color: #fa0;
  4090. }
  4091. .ant-message-info .anticon,
  4092. .ant-message-loading .anticon {
  4093. color: #58a3ff;
  4094. }
  4095. .ant-message .anticon {
  4096. margin-right: 8px;
  4097. font-size: 14px;
  4098. top: 1px;
  4099. position: relative;
  4100. }
  4101. legend {
  4102. display: block;
  4103. width: 100%;
  4104. padding: 0;
  4105. margin-bottom: 20px;
  4106. font-size: 14px;
  4107. line-height: inherit;
  4108. color: #999;
  4109. border: 0;
  4110. border-bottom: 1px solid #d9d9d9;
  4111. }
  4112. label {
  4113. font-size: 12px;
  4114. }
  4115. input[type="search"] {
  4116. box-sizing: border-box;
  4117. }
  4118. input[type="radio"],
  4119. input[type="checkbox"] {
  4120. line-height: normal;
  4121. }
  4122. input[type="file"] {
  4123. display: block;
  4124. }
  4125. input[type="range"] {
  4126. display: block;
  4127. width: 100%;
  4128. }
  4129. select[multiple],
  4130. select[size] {
  4131. height: auto;
  4132. }
  4133. input[type="file"]:focus,
  4134. input[type="radio"]:focus,
  4135. input[type="checkbox"]:focus {
  4136. outline: thin dotted;
  4137. outline: 5px auto -webkit-focus-ring-color;
  4138. outline-offset: -2px;
  4139. }
  4140. output {
  4141. display: block;
  4142. padding-top: 15px;
  4143. font-size: 12px;
  4144. line-height: 1.5;
  4145. color: #666;
  4146. }
  4147. label {
  4148. position: relative;
  4149. }
  4150. label > .anticon {
  4151. vertical-align: top;
  4152. font-size: 12px;
  4153. }
  4154. .ant-form-item-required:before {
  4155. display: inline-block;
  4156. margin-right: 4px;
  4157. content: "*";
  4158. font-family: SimSun;
  4159. font-size: 12px;
  4160. color: #f50;
  4161. }
  4162. input[type="radio"][disabled],
  4163. input[type="checkbox"][disabled],
  4164. input[type="radio"].disabled,
  4165. input[type="checkbox"].disabled {
  4166. cursor: not-allowed;
  4167. }
  4168. .ant-radio-inline.disabled,
  4169. .ant-radio-vertical.disabled,
  4170. .ant-checkbox-inline.disabled,
  4171. .ant-checkbox-vertical.disabled {
  4172. cursor: not-allowed;
  4173. }
  4174. .ant-radio.disabled label,
  4175. .ant-checkbox.disabled label {
  4176. cursor: not-allowed;
  4177. }
  4178. .ant-form-item {
  4179. font-size: 12px;
  4180. margin-bottom: 24px;
  4181. color: #666;
  4182. vertical-align: top;
  4183. }
  4184. .ant-form-item > .ant-form-item,
  4185. .ant-form-item :not(.ant-form) > .ant-form-item {
  4186. margin-bottom: -24px;
  4187. }
  4188. .ant-form-item-control {
  4189. line-height: 32px;
  4190. position: relative;
  4191. zoom: 1;
  4192. }
  4193. .ant-form-item-control:before,
  4194. .ant-form-item-control:after {
  4195. content: " ";
  4196. display: table;
  4197. }
  4198. .ant-form-item-control:after {
  4199. clear: both;
  4200. visibility: hidden;
  4201. font-size: 0;
  4202. height: 0;
  4203. }
  4204. .ant-form-item-with-help {
  4205. margin-bottom: 6px;
  4206. }
  4207. .ant-form-item-label {
  4208. text-align: right;
  4209. vertical-align: middle;
  4210. padding: 7px 0;
  4211. display: inline-block;
  4212. overflow: hidden;
  4213. text-overflow: ellipsis;
  4214. white-space: nowrap;
  4215. }
  4216. .ant-form-item-label label {
  4217. color: #666;
  4218. }
  4219. .ant-form-item-label label:after {
  4220. content: ":";
  4221. margin: 0 8px 0 2px;
  4222. position: relative;
  4223. top: -0.5px;
  4224. }
  4225. .ant-form-item .ant-switch {
  4226. margin: 4px 0;
  4227. }
  4228. .ant-form-item-no-colon .ant-form-item-label label:after {
  4229. content: " ";
  4230. }
  4231. .ant-form-explain {
  4232. line-height: 1.5;
  4233. }
  4234. .ant-form-explain,
  4235. .ant-form-extra {
  4236. color: #999;
  4237. }
  4238. .ant-form-text {
  4239. display: inline-block;
  4240. padding-right: 8px;
  4241. }
  4242. .ant-form-split {
  4243. display: block;
  4244. text-align: center;
  4245. }
  4246. form .has-feedback .ant-input {
  4247. padding-right: 24px;
  4248. }
  4249. form textarea.ant-input {
  4250. height: auto;
  4251. }
  4252. form .ant-upload {
  4253. background: transparent;
  4254. }
  4255. form input[type="radio"],
  4256. form input[type="checkbox"] {
  4257. width: 14px;
  4258. height: 14px;
  4259. }
  4260. form .ant-radio-inline,
  4261. form .ant-checkbox-inline {
  4262. display: inline-block;
  4263. vertical-align: middle;
  4264. font-weight: normal;
  4265. cursor: pointer;
  4266. margin-left: 8px;
  4267. }
  4268. form .ant-radio-inline:first-child,
  4269. form .ant-checkbox-inline:first-child {
  4270. margin-left: 0;
  4271. }
  4272. form .ant-checkbox-vertical,
  4273. form .ant-radio-vertical {
  4274. display: block;
  4275. }
  4276. form .ant-checkbox-vertical + .ant-checkbox-vertical,
  4277. form .ant-radio-vertical + .ant-radio-vertical {
  4278. margin-left: 0;
  4279. }
  4280. form .ant-input-number {
  4281. margin-top: -1px;
  4282. margin-right: 8px;
  4283. }
  4284. form .ant-select,
  4285. form .ant-cascader-picker {
  4286. width: 100%;
  4287. }
  4288. .ant-input-group-wrap .ant-select-selection {
  4289. border-bottom-left-radius: 0;
  4290. border-top-left-radius: 0;
  4291. }
  4292. .ant-input-group-wrap .ant-select-selection:hover {
  4293. border-color: #d9d9d9;
  4294. }
  4295. .ant-input-group-wrap .ant-select-selection--single {
  4296. margin-left: -1px;
  4297. height: 32px;
  4298. background-color: #eee;
  4299. }
  4300. .ant-input-group-wrap .ant-select-selection--single .ant-select-selection__rendered {
  4301. padding-left: 8px;
  4302. padding-right: 25px;
  4303. line-height: 30px;
  4304. }
  4305. .ant-input-group-wrap .ant-select-open .ant-select-selection {
  4306. border-color: #d9d9d9;
  4307. box-shadow: none;
  4308. }
  4309. .ant-form-horizontal .ant-form-item {
  4310. position: relative;
  4311. margin-left: 0;
  4312. margin-right: 0;
  4313. height: auto;
  4314. zoom: 1;
  4315. }
  4316. .ant-form-horizontal .ant-form-item:before,
  4317. .ant-form-horizontal .ant-form-item:after {
  4318. content: " ";
  4319. display: table;
  4320. }
  4321. .ant-form-horizontal .ant-form-item:after {
  4322. clear: both;
  4323. visibility: hidden;
  4324. font-size: 0;
  4325. height: 0;
  4326. }
  4327. .ant-form-horizontal .ant-radio-inline,
  4328. .ant-form-horizontal .ant-checkbox-inline {
  4329. vertical-align: baseline;
  4330. }
  4331. .ant-form-vertical .ant-form-item-label {
  4332. padding: 0 0 8px;
  4333. }
  4334. .ant-form-vertical .ant-form-item-label label:after {
  4335. content: '';
  4336. }
  4337. .ant-form-inline .ant-form-item {
  4338. display: inline-block;
  4339. margin-right: 10px;
  4340. margin-bottom: 0;
  4341. }
  4342. .ant-form-inline .ant-form-item-with-help {
  4343. margin-bottom: 24px;
  4344. }
  4345. .ant-form-inline .ant-form-item > div {
  4346. display: inline-block;
  4347. vertical-align: middle;
  4348. }
  4349. .ant-form-inline .ant-form-text {
  4350. display: inline-block;
  4351. }
  4352. .ant-form-inline .has-feedback {
  4353. display: inline-block;
  4354. }
  4355. .ant-form-inline .ant-form-explain {
  4356. position: absolute;
  4357. }
  4358. .ant-form-horizontal label > input[type="radio"],
  4359. .ant-form-inline label > input[type="radio"],
  4360. .ant-form-horizontal label > input[type="checkbox"],
  4361. .ant-form-inline label > input[type="checkbox"] {
  4362. margin-right: 4px;
  4363. }
  4364. .has-success.has-feedback:after,
  4365. .has-warning.has-feedback:after,
  4366. .has-error.has-feedback:after,
  4367. .is-validating.has-feedback:after {
  4368. position: absolute;
  4369. top: 0;
  4370. right: 0;
  4371. visibility: visible;
  4372. pointer-events: none;
  4373. width: 32px;
  4374. height: 32px;
  4375. line-height: 32px;
  4376. text-align: center;
  4377. font-size: 14px;
  4378. animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  4379. font-family: 'anticon';
  4380. text-rendering: optimizeLegibility;
  4381. -webkit-font-smoothing: antialiased;
  4382. -moz-osx-font-smoothing: grayscale;
  4383. content: "";
  4384. }
  4385. .has-success.has-feedback:after {
  4386. animation-name: diffZoomIn1 !important;
  4387. }
  4388. .has-error.has-feedback:after {
  4389. animation-name: diffZoomIn2 !important;
  4390. }
  4391. .has-warning.has-feedback:after {
  4392. animation-name: diffZoomIn3 !important;
  4393. }
  4394. .has-success.has-feedback:after {
  4395. content: '\E630';
  4396. color: #87d068;
  4397. }
  4398. .has-warning .ant-form-explain,
  4399. .has-warning .ant-form-split {
  4400. color: #fa0;
  4401. }
  4402. .has-warning .ant-input,
  4403. .has-warning .ant-input:hover {
  4404. border-color: #fa0;
  4405. }
  4406. .has-warning .ant-input:focus {
  4407. border-color: #ffbb33;
  4408. outline: 0;
  4409. box-shadow: 0 0 0 2px rgba(255, 170, 0, 0.2);
  4410. }
  4411. .has-warning .ant-input:not([disabled]):hover {
  4412. border-color: #fa0;
  4413. }
  4414. .has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
  4415. border-color: #ffbb33;
  4416. outline: 0;
  4417. box-shadow: 0 0 0 2px rgba(255, 170, 0, 0.2);
  4418. }
  4419. .has-warning .ant-input-group-addon {
  4420. color: #fa0;
  4421. border-color: #fa0;
  4422. background-color: #fff;
  4423. }
  4424. .has-warning .has-feedback {
  4425. color: #fa0;
  4426. }
  4427. .has-warning.has-feedback:after {
  4428. content: '\E62C';
  4429. color: #fa0;
  4430. }
  4431. .has-warning .ant-select-selection {
  4432. border-color: #fa0;
  4433. }
  4434. .has-warning .ant-select-open .ant-select-selection,
  4435. .has-warning .ant-select-focused .ant-select-selection {
  4436. border-color: #ffbb33;
  4437. outline: 0;
  4438. box-shadow: 0 0 0 2px rgba(255, 170, 0, 0.2);
  4439. }
  4440. .has-warning .ant-calendar-picker-icon:after,
  4441. .has-warning .ant-picker-icon:after,
  4442. .has-warning .ant-select-arrow,
  4443. .has-warning .ant-cascader-picker-arrow {
  4444. color: #fa0;
  4445. }
  4446. .has-warning .ant-input-number,
  4447. .has-warning .ant-time-picker-input {
  4448. border-color: #fa0;
  4449. }
  4450. .has-warning .ant-input-number-focused,
  4451. .has-warning .ant-time-picker-input-focused,
  4452. .has-warning .ant-input-number:focus,
  4453. .has-warning .ant-time-picker-input:focus {
  4454. border-color: #ffbb33;
  4455. outline: 0;
  4456. box-shadow: 0 0 0 2px rgba(255, 170, 0, 0.2);
  4457. }
  4458. .has-warning .ant-input-number:not([disabled]):hover,
  4459. .has-warning .ant-time-picker-input:not([disabled]):hover {
  4460. border-color: #fa0;
  4461. }
  4462. .has-error .ant-form-explain,
  4463. .has-error .ant-form-split {
  4464. color: #f50;
  4465. }
  4466. .has-error .ant-input,
  4467. .has-error .ant-input:hover {
  4468. border-color: #f50;
  4469. }
  4470. .has-error .ant-input:focus {
  4471. border-color: #ff7733;
  4472. outline: 0;
  4473. box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.2);
  4474. }
  4475. .has-error .ant-input:not([disabled]):hover {
  4476. border-color: #f50;
  4477. }
  4478. .has-error .ant-calendar-picker-open .ant-calendar-picker-input {
  4479. border-color: #ff7733;
  4480. outline: 0;
  4481. box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.2);
  4482. }
  4483. .has-error .ant-input-group-addon {
  4484. color: #f50;
  4485. border-color: #f50;
  4486. background-color: #fff;
  4487. }
  4488. .has-error .has-feedback {
  4489. color: #f50;
  4490. }
  4491. .has-error.has-feedback:after {
  4492. content: '\E62E';
  4493. color: #f50;
  4494. }
  4495. .has-error .ant-select-selection {
  4496. border-color: #f50;
  4497. }
  4498. .has-error .ant-select-open .ant-select-selection,
  4499. .has-error .ant-select-focused .ant-select-selection {
  4500. border-color: #ff7733;
  4501. outline: 0;
  4502. box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.2);
  4503. }
  4504. .has-error .ant-calendar-picker-icon:after,
  4505. .has-error .ant-picker-icon:after,
  4506. .has-error .ant-select-arrow,
  4507. .has-error .ant-cascader-picker-arrow {
  4508. color: #f50;
  4509. }
  4510. .has-error .ant-input-number,
  4511. .has-error .ant-time-picker-input {
  4512. border-color: #f50;
  4513. }
  4514. .has-error .ant-input-number-focused,
  4515. .has-error .ant-time-picker-input-focused,
  4516. .has-error .ant-input-number:focus,
  4517. .has-error .ant-time-picker-input:focus {
  4518. border-color: #ff7733;
  4519. outline: 0;
  4520. box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.2);
  4521. }
  4522. .has-error .ant-input-number:not([disabled]):hover,
  4523. .has-error .ant-time-picker-input:not([disabled]):hover {
  4524. border-color: #f50;
  4525. }
  4526. .has-error .ant-mention-wrapper .ant-mention-editor,
  4527. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover {
  4528. border-color: #f50;
  4529. }
  4530. .has-error .ant-mention-wrapper.active .ant-mention-editor,
  4531. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
  4532. border-color: #ff7733;
  4533. outline: 0;
  4534. box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.2);
  4535. }
  4536. .is-validating.has-feedback:after {
  4537. display: inline-block;
  4538. animation: loadingCircle 1s infinite linear;
  4539. content: "\E6AE";
  4540. color: #999;
  4541. }
  4542. .ant-advanced-search-form .ant-form-item {
  4543. margin-bottom: 16px;
  4544. }
  4545. .ant-advanced-search-form .ant-input,
  4546. .ant-advanced-search-form .ant-input-group .ant-input,
  4547. .ant-advanced-search-form .ant-input-group .ant-input-group-addon {
  4548. height: 28px;
  4549. }
  4550. @keyframes diffZoomIn1 {
  4551. 0% {
  4552. transform: scale(0);
  4553. }
  4554. 100% {
  4555. transform: scale(1);
  4556. }
  4557. }
  4558. @keyframes diffZoomIn2 {
  4559. 0% {
  4560. transform: scale(0);
  4561. }
  4562. 100% {
  4563. transform: scale(1);
  4564. }
  4565. }
  4566. @keyframes diffZoomIn3 {
  4567. 0% {
  4568. transform: scale(0);
  4569. }
  4570. 100% {
  4571. transform: scale(1);
  4572. }
  4573. }
  4574. .ant-row {
  4575. position: relative;
  4576. margin-left: 0;
  4577. margin-right: 0;
  4578. height: auto;
  4579. zoom: 1;
  4580. display: block;
  4581. }
  4582. .ant-row:before,
  4583. .ant-row:after {
  4584. content: " ";
  4585. display: table;
  4586. }
  4587. .ant-row:after {
  4588. clear: both;
  4589. visibility: hidden;
  4590. font-size: 0;
  4591. height: 0;
  4592. }
  4593. .ant-row-flex {
  4594. display: flex;
  4595. flex-direction: row;
  4596. flex-wrap: wrap;
  4597. }
  4598. .ant-row-flex:before,
  4599. .ant-row-flex:after {
  4600. display: flex;
  4601. }
  4602. .ant-row-flex-start {
  4603. justify-content: flex-start;
  4604. }
  4605. .ant-row-flex-center {
  4606. justify-content: center;
  4607. }
  4608. .ant-row-flex-end {
  4609. justify-content: flex-end;
  4610. }
  4611. .ant-row-flex-space-between {
  4612. justify-content: space-between;
  4613. }
  4614. .ant-row-flex-space-around {
  4615. justify-content: space-around;
  4616. }
  4617. .ant-row-flex-top {
  4618. align-items: flex-start;
  4619. }
  4620. .ant-row-flex-middle {
  4621. align-items: center;
  4622. }
  4623. .ant-row-flex-bottom {
  4624. align-items: flex-end;
  4625. }
  4626. .ant-col {
  4627. position: relative;
  4628. display: block;
  4629. }
  4630. .ant-col-1, .ant-col-xs-1, .ant-col-sm-1, .ant-col-md-1, .ant-col-lg-1, .ant-col-2, .ant-col-xs-2, .ant-col-sm-2, .ant-col-md-2, .ant-col-lg-2, .ant-col-3, .ant-col-xs-3, .ant-col-sm-3, .ant-col-md-3, .ant-col-lg-3, .ant-col-4, .ant-col-xs-4, .ant-col-sm-4, .ant-col-md-4, .ant-col-lg-4, .ant-col-5, .ant-col-xs-5, .ant-col-sm-5, .ant-col-md-5, .ant-col-lg-5, .ant-col-6, .ant-col-xs-6, .ant-col-sm-6, .ant-col-md-6, .ant-col-lg-6, .ant-col-7, .ant-col-xs-7, .ant-col-sm-7, .ant-col-md-7, .ant-col-lg-7, .ant-col-8, .ant-col-xs-8, .ant-col-sm-8, .ant-col-md-8, .ant-col-lg-8, .ant-col-9, .ant-col-xs-9, .ant-col-sm-9, .ant-col-md-9, .ant-col-lg-9, .ant-col-10, .ant-col-xs-10, .ant-col-sm-10, .ant-col-md-10, .ant-col-lg-10, .ant-col-11, .ant-col-xs-11, .ant-col-sm-11, .ant-col-md-11, .ant-col-lg-11, .ant-col-12, .ant-col-xs-12, .ant-col-sm-12, .ant-col-md-12, .ant-col-lg-12, .ant-col-13, .ant-col-xs-13, .ant-col-sm-13, .ant-col-md-13, .ant-col-lg-13, .ant-col-14, .ant-col-xs-14, .ant-col-sm-14, .ant-col-md-14, .ant-col-lg-14, .ant-col-15, .ant-col-xs-15, .ant-col-sm-15, .ant-col-md-15, .ant-col-lg-15, .ant-col-16, .ant-col-xs-16, .ant-col-sm-16, .ant-col-md-16, .ant-col-lg-16, .ant-col-17, .ant-col-xs-17, .ant-col-sm-17, .ant-col-md-17, .ant-col-lg-17, .ant-col-18, .ant-col-xs-18, .ant-col-sm-18, .ant-col-md-18, .ant-col-lg-18, .ant-col-19, .ant-col-xs-19, .ant-col-sm-19, .ant-col-md-19, .ant-col-lg-19, .ant-col-20, .ant-col-xs-20, .ant-col-sm-20, .ant-col-md-20, .ant-col-lg-20, .ant-col-21, .ant-col-xs-21, .ant-col-sm-21, .ant-col-md-21, .ant-col-lg-21, .ant-col-22, .ant-col-xs-22, .ant-col-sm-22, .ant-col-md-22, .ant-col-lg-22, .ant-col-23, .ant-col-xs-23, .ant-col-sm-23, .ant-col-md-23, .ant-col-lg-23, .ant-col-24, .ant-col-xs-24, .ant-col-sm-24, .ant-col-md-24, .ant-col-lg-24 {
  4631. position: relative;
  4632. min-height: 1px;
  4633. padding-left: 0;
  4634. padding-right: 0;
  4635. }
  4636. .ant-col-1, .ant-col-2, .ant-col-3, .ant-col-4, .ant-col-5, .ant-col-6, .ant-col-7, .ant-col-8, .ant-col-9, .ant-col-10, .ant-col-11, .ant-col-12, .ant-col-13, .ant-col-14, .ant-col-15, .ant-col-16, .ant-col-17, .ant-col-18, .ant-col-19, .ant-col-20, .ant-col-21, .ant-col-22, .ant-col-23, .ant-col-24 {
  4637. float: left;
  4638. flex: 0 0 auto;
  4639. }
  4640. .ant-col-24 {
  4641. display: block;
  4642. width: 100%;
  4643. }
  4644. .ant-col-push-24 {
  4645. left: 100%;
  4646. }
  4647. .ant-col-pull-24 {
  4648. right: 100%;
  4649. }
  4650. .ant-col-offset-24 {
  4651. margin-left: 100%;
  4652. }
  4653. .ant-col-order-24 {
  4654. order: 24;
  4655. }
  4656. .ant-col-23 {
  4657. display: block;
  4658. width: 95.83333333%;
  4659. }
  4660. .ant-col-push-23 {
  4661. left: 95.83333333%;
  4662. }
  4663. .ant-col-pull-23 {
  4664. right: 95.83333333%;
  4665. }
  4666. .ant-col-offset-23 {
  4667. margin-left: 95.83333333%;
  4668. }
  4669. .ant-col-order-23 {
  4670. order: 23;
  4671. }
  4672. .ant-col-22 {
  4673. display: block;
  4674. width: 91.66666667%;
  4675. }
  4676. .ant-col-push-22 {
  4677. left: 91.66666667%;
  4678. }
  4679. .ant-col-pull-22 {
  4680. right: 91.66666667%;
  4681. }
  4682. .ant-col-offset-22 {
  4683. margin-left: 91.66666667%;
  4684. }
  4685. .ant-col-order-22 {
  4686. order: 22;
  4687. }
  4688. .ant-col-21 {
  4689. display: block;
  4690. width: 87.5%;
  4691. }
  4692. .ant-col-push-21 {
  4693. left: 87.5%;
  4694. }
  4695. .ant-col-pull-21 {
  4696. right: 87.5%;
  4697. }
  4698. .ant-col-offset-21 {
  4699. margin-left: 87.5%;
  4700. }
  4701. .ant-col-order-21 {
  4702. order: 21;
  4703. }
  4704. .ant-col-20 {
  4705. display: block;
  4706. width: 83.33333333%;
  4707. }
  4708. .ant-col-push-20 {
  4709. left: 83.33333333%;
  4710. }
  4711. .ant-col-pull-20 {
  4712. right: 83.33333333%;
  4713. }
  4714. .ant-col-offset-20 {
  4715. margin-left: 83.33333333%;
  4716. }
  4717. .ant-col-order-20 {
  4718. order: 20;
  4719. }
  4720. .ant-col-19 {
  4721. display: block;
  4722. width: 79.16666667%;
  4723. }
  4724. .ant-col-push-19 {
  4725. left: 79.16666667%;
  4726. }
  4727. .ant-col-pull-19 {
  4728. right: 79.16666667%;
  4729. }
  4730. .ant-col-offset-19 {
  4731. margin-left: 79.16666667%;
  4732. }
  4733. .ant-col-order-19 {
  4734. order: 19;
  4735. }
  4736. .ant-col-18 {
  4737. display: block;
  4738. width: 75%;
  4739. }
  4740. .ant-col-push-18 {
  4741. left: 75%;
  4742. }
  4743. .ant-col-pull-18 {
  4744. right: 75%;
  4745. }
  4746. .ant-col-offset-18 {
  4747. margin-left: 75%;
  4748. }
  4749. .ant-col-order-18 {
  4750. order: 18;
  4751. }
  4752. .ant-col-17 {
  4753. display: block;
  4754. width: 70.83333333%;
  4755. }
  4756. .ant-col-push-17 {
  4757. left: 70.83333333%;
  4758. }
  4759. .ant-col-pull-17 {
  4760. right: 70.83333333%;
  4761. }
  4762. .ant-col-offset-17 {
  4763. margin-left: 70.83333333%;
  4764. }
  4765. .ant-col-order-17 {
  4766. order: 17;
  4767. }
  4768. .ant-col-16 {
  4769. display: block;
  4770. width: 66.66666667%;
  4771. }
  4772. .ant-col-push-16 {
  4773. left: 66.66666667%;
  4774. }
  4775. .ant-col-pull-16 {
  4776. right: 66.66666667%;
  4777. }
  4778. .ant-col-offset-16 {
  4779. margin-left: 66.66666667%;
  4780. }
  4781. .ant-col-order-16 {
  4782. order: 16;
  4783. }
  4784. .ant-col-15 {
  4785. display: block;
  4786. width: 62.5%;
  4787. }
  4788. .ant-col-push-15 {
  4789. left: 62.5%;
  4790. }
  4791. .ant-col-pull-15 {
  4792. right: 62.5%;
  4793. }
  4794. .ant-col-offset-15 {
  4795. margin-left: 62.5%;
  4796. }
  4797. .ant-col-order-15 {
  4798. order: 15;
  4799. }
  4800. .ant-col-14 {
  4801. display: block;
  4802. width: 58.33333333%;
  4803. }
  4804. .ant-col-push-14 {
  4805. left: 58.33333333%;
  4806. }
  4807. .ant-col-pull-14 {
  4808. right: 58.33333333%;
  4809. }
  4810. .ant-col-offset-14 {
  4811. margin-left: 58.33333333%;
  4812. }
  4813. .ant-col-order-14 {
  4814. order: 14;
  4815. }
  4816. .ant-col-13 {
  4817. display: block;
  4818. width: 54.16666667%;
  4819. }
  4820. .ant-col-push-13 {
  4821. left: 54.16666667%;
  4822. }
  4823. .ant-col-pull-13 {
  4824. right: 54.16666667%;
  4825. }
  4826. .ant-col-offset-13 {
  4827. margin-left: 54.16666667%;
  4828. }
  4829. .ant-col-order-13 {
  4830. order: 13;
  4831. }
  4832. .ant-col-12 {
  4833. display: block;
  4834. width: 50%;
  4835. }
  4836. .ant-col-push-12 {
  4837. left: 50%;
  4838. }
  4839. .ant-col-pull-12 {
  4840. right: 50%;
  4841. }
  4842. .ant-col-offset-12 {
  4843. margin-left: 50%;
  4844. }
  4845. .ant-col-order-12 {
  4846. order: 12;
  4847. }
  4848. .ant-col-11 {
  4849. display: block;
  4850. width: 45.83333333%;
  4851. }
  4852. .ant-col-push-11 {
  4853. left: 45.83333333%;
  4854. }
  4855. .ant-col-pull-11 {
  4856. right: 45.83333333%;
  4857. }
  4858. .ant-col-offset-11 {
  4859. margin-left: 45.83333333%;
  4860. }
  4861. .ant-col-order-11 {
  4862. order: 11;
  4863. }
  4864. .ant-col-10 {
  4865. display: block;
  4866. width: 41.66666667%;
  4867. }
  4868. .ant-col-push-10 {
  4869. left: 41.66666667%;
  4870. }
  4871. .ant-col-pull-10 {
  4872. right: 41.66666667%;
  4873. }
  4874. .ant-col-offset-10 {
  4875. margin-left: 41.66666667%;
  4876. }
  4877. .ant-col-order-10 {
  4878. order: 10;
  4879. }
  4880. .ant-col-9 {
  4881. display: block;
  4882. width: 37.5%;
  4883. }
  4884. .ant-col-push-9 {
  4885. left: 37.5%;
  4886. }
  4887. .ant-col-pull-9 {
  4888. right: 37.5%;
  4889. }
  4890. .ant-col-offset-9 {
  4891. margin-left: 37.5%;
  4892. }
  4893. .ant-col-order-9 {
  4894. order: 9;
  4895. }
  4896. .ant-col-8 {
  4897. display: block;
  4898. width: 33.33333333%;
  4899. }
  4900. .ant-col-push-8 {
  4901. left: 33.33333333%;
  4902. }
  4903. .ant-col-pull-8 {
  4904. right: 33.33333333%;
  4905. }
  4906. .ant-col-offset-8 {
  4907. margin-left: 33.33333333%;
  4908. }
  4909. .ant-col-order-8 {
  4910. order: 8;
  4911. }
  4912. .ant-col-7 {
  4913. display: block;
  4914. width: 29.16666667%;
  4915. }
  4916. .ant-col-push-7 {
  4917. left: 29.16666667%;
  4918. }
  4919. .ant-col-pull-7 {
  4920. right: 29.16666667%;
  4921. }
  4922. .ant-col-offset-7 {
  4923. margin-left: 29.16666667%;
  4924. }
  4925. .ant-col-order-7 {
  4926. order: 7;
  4927. }
  4928. .ant-col-6 {
  4929. display: block;
  4930. width: 25%;
  4931. }
  4932. .ant-col-push-6 {
  4933. left: 25%;
  4934. }
  4935. .ant-col-pull-6 {
  4936. right: 25%;
  4937. }
  4938. .ant-col-offset-6 {
  4939. margin-left: 25%;
  4940. }
  4941. .ant-col-order-6 {
  4942. order: 6;
  4943. }
  4944. .ant-col-5 {
  4945. display: block;
  4946. width: 20.83333333%;
  4947. }
  4948. .ant-col-push-5 {
  4949. left: 20.83333333%;
  4950. }
  4951. .ant-col-pull-5 {
  4952. right: 20.83333333%;
  4953. }
  4954. .ant-col-offset-5 {
  4955. margin-left: 20.83333333%;
  4956. }
  4957. .ant-col-order-5 {
  4958. order: 5;
  4959. }
  4960. .ant-col-4 {
  4961. display: block;
  4962. width: 16.66666667%;
  4963. }
  4964. .ant-col-push-4 {
  4965. left: 16.66666667%;
  4966. }
  4967. .ant-col-pull-4 {
  4968. right: 16.66666667%;
  4969. }
  4970. .ant-col-offset-4 {
  4971. margin-left: 16.66666667%;
  4972. }
  4973. .ant-col-order-4 {
  4974. order: 4;
  4975. }
  4976. .ant-col-3 {
  4977. display: block;
  4978. width: 12.5%;
  4979. }
  4980. .ant-col-push-3 {
  4981. left: 12.5%;
  4982. }
  4983. .ant-col-pull-3 {
  4984. right: 12.5%;
  4985. }
  4986. .ant-col-offset-3 {
  4987. margin-left: 12.5%;
  4988. }
  4989. .ant-col-order-3 {
  4990. order: 3;
  4991. }
  4992. .ant-col-2 {
  4993. display: block;
  4994. width: 8.33333333%;
  4995. }
  4996. .ant-col-push-2 {
  4997. left: 8.33333333%;
  4998. }
  4999. .ant-col-pull-2 {
  5000. right: 8.33333333%;
  5001. }
  5002. .ant-col-offset-2 {
  5003. margin-left: 8.33333333%;
  5004. }
  5005. .ant-col-order-2 {
  5006. order: 2;
  5007. }
  5008. .ant-col-1 {
  5009. display: block;
  5010. width: 4.16666667%;
  5011. }
  5012. .ant-col-push-1 {
  5013. left: 4.16666667%;
  5014. }
  5015. .ant-col-pull-1 {
  5016. right: 4.16666667%;
  5017. }
  5018. .ant-col-offset-1 {
  5019. margin-left: 4.16666667%;
  5020. }
  5021. .ant-col-order-1 {
  5022. order: 1;
  5023. }
  5024. .ant-col-0 {
  5025. display: none;
  5026. }
  5027. .ant-col-push-0 {
  5028. left: auto;
  5029. }
  5030. .ant-col-pull-0 {
  5031. right: auto;
  5032. }
  5033. .ant-col-xs-1, .ant-col-xs-2, .ant-col-xs-3, .ant-col-xs-4, .ant-col-xs-5, .ant-col-xs-6, .ant-col-xs-7, .ant-col-xs-8, .ant-col-xs-9, .ant-col-xs-10, .ant-col-xs-11, .ant-col-xs-12, .ant-col-xs-13, .ant-col-xs-14, .ant-col-xs-15, .ant-col-xs-16, .ant-col-xs-17, .ant-col-xs-18, .ant-col-xs-19, .ant-col-xs-20, .ant-col-xs-21, .ant-col-xs-22, .ant-col-xs-23, .ant-col-xs-24 {
  5034. float: left;
  5035. flex: 0 0 auto;
  5036. }
  5037. .ant-col-xs-24 {
  5038. display: block;
  5039. width: 100%;
  5040. }
  5041. .ant-col-xs-push-24 {
  5042. left: 100%;
  5043. }
  5044. .ant-col-xs-pull-24 {
  5045. right: 100%;
  5046. }
  5047. .ant-col-xs-offset-24 {
  5048. margin-left: 100%;
  5049. }
  5050. .ant-col-xs-order-24 {
  5051. order: 24;
  5052. }
  5053. .ant-col-xs-23 {
  5054. display: block;
  5055. width: 95.83333333%;
  5056. }
  5057. .ant-col-xs-push-23 {
  5058. left: 95.83333333%;
  5059. }
  5060. .ant-col-xs-pull-23 {
  5061. right: 95.83333333%;
  5062. }
  5063. .ant-col-xs-offset-23 {
  5064. margin-left: 95.83333333%;
  5065. }
  5066. .ant-col-xs-order-23 {
  5067. order: 23;
  5068. }
  5069. .ant-col-xs-22 {
  5070. display: block;
  5071. width: 91.66666667%;
  5072. }
  5073. .ant-col-xs-push-22 {
  5074. left: 91.66666667%;
  5075. }
  5076. .ant-col-xs-pull-22 {
  5077. right: 91.66666667%;
  5078. }
  5079. .ant-col-xs-offset-22 {
  5080. margin-left: 91.66666667%;
  5081. }
  5082. .ant-col-xs-order-22 {
  5083. order: 22;
  5084. }
  5085. .ant-col-xs-21 {
  5086. display: block;
  5087. width: 87.5%;
  5088. }
  5089. .ant-col-xs-push-21 {
  5090. left: 87.5%;
  5091. }
  5092. .ant-col-xs-pull-21 {
  5093. right: 87.5%;
  5094. }
  5095. .ant-col-xs-offset-21 {
  5096. margin-left: 87.5%;
  5097. }
  5098. .ant-col-xs-order-21 {
  5099. order: 21;
  5100. }
  5101. .ant-col-xs-20 {
  5102. display: block;
  5103. width: 83.33333333%;
  5104. }
  5105. .ant-col-xs-push-20 {
  5106. left: 83.33333333%;
  5107. }
  5108. .ant-col-xs-pull-20 {
  5109. right: 83.33333333%;
  5110. }
  5111. .ant-col-xs-offset-20 {
  5112. margin-left: 83.33333333%;
  5113. }
  5114. .ant-col-xs-order-20 {
  5115. order: 20;
  5116. }
  5117. .ant-col-xs-19 {
  5118. display: block;
  5119. width: 79.16666667%;
  5120. }
  5121. .ant-col-xs-push-19 {
  5122. left: 79.16666667%;
  5123. }
  5124. .ant-col-xs-pull-19 {
  5125. right: 79.16666667%;
  5126. }
  5127. .ant-col-xs-offset-19 {
  5128. margin-left: 79.16666667%;
  5129. }
  5130. .ant-col-xs-order-19 {
  5131. order: 19;
  5132. }
  5133. .ant-col-xs-18 {
  5134. display: block;
  5135. width: 75%;
  5136. }
  5137. .ant-col-xs-push-18 {
  5138. left: 75%;
  5139. }
  5140. .ant-col-xs-pull-18 {
  5141. right: 75%;
  5142. }
  5143. .ant-col-xs-offset-18 {
  5144. margin-left: 75%;
  5145. }
  5146. .ant-col-xs-order-18 {
  5147. order: 18;
  5148. }
  5149. .ant-col-xs-17 {
  5150. display: block;
  5151. width: 70.83333333%;
  5152. }
  5153. .ant-col-xs-push-17 {
  5154. left: 70.83333333%;
  5155. }
  5156. .ant-col-xs-pull-17 {
  5157. right: 70.83333333%;
  5158. }
  5159. .ant-col-xs-offset-17 {
  5160. margin-left: 70.83333333%;
  5161. }
  5162. .ant-col-xs-order-17 {
  5163. order: 17;
  5164. }
  5165. .ant-col-xs-16 {
  5166. display: block;
  5167. width: 66.66666667%;
  5168. }
  5169. .ant-col-xs-push-16 {
  5170. left: 66.66666667%;
  5171. }
  5172. .ant-col-xs-pull-16 {
  5173. right: 66.66666667%;
  5174. }
  5175. .ant-col-xs-offset-16 {
  5176. margin-left: 66.66666667%;
  5177. }
  5178. .ant-col-xs-order-16 {
  5179. order: 16;
  5180. }
  5181. .ant-col-xs-15 {
  5182. display: block;
  5183. width: 62.5%;
  5184. }
  5185. .ant-col-xs-push-15 {
  5186. left: 62.5%;
  5187. }
  5188. .ant-col-xs-pull-15 {
  5189. right: 62.5%;
  5190. }
  5191. .ant-col-xs-offset-15 {
  5192. margin-left: 62.5%;
  5193. }
  5194. .ant-col-xs-order-15 {
  5195. order: 15;
  5196. }
  5197. .ant-col-xs-14 {
  5198. display: block;
  5199. width: 58.33333333%;
  5200. }
  5201. .ant-col-xs-push-14 {
  5202. left: 58.33333333%;
  5203. }
  5204. .ant-col-xs-pull-14 {
  5205. right: 58.33333333%;
  5206. }
  5207. .ant-col-xs-offset-14 {
  5208. margin-left: 58.33333333%;
  5209. }
  5210. .ant-col-xs-order-14 {
  5211. order: 14;
  5212. }
  5213. .ant-col-xs-13 {
  5214. display: block;
  5215. width: 54.16666667%;
  5216. }
  5217. .ant-col-xs-push-13 {
  5218. left: 54.16666667%;
  5219. }
  5220. .ant-col-xs-pull-13 {
  5221. right: 54.16666667%;
  5222. }
  5223. .ant-col-xs-offset-13 {
  5224. margin-left: 54.16666667%;
  5225. }
  5226. .ant-col-xs-order-13 {
  5227. order: 13;
  5228. }
  5229. .ant-col-xs-12 {
  5230. display: block;
  5231. width: 50%;
  5232. }
  5233. .ant-col-xs-push-12 {
  5234. left: 50%;
  5235. }
  5236. .ant-col-xs-pull-12 {
  5237. right: 50%;
  5238. }
  5239. .ant-col-xs-offset-12 {
  5240. margin-left: 50%;
  5241. }
  5242. .ant-col-xs-order-12 {
  5243. order: 12;
  5244. }
  5245. .ant-col-xs-11 {
  5246. display: block;
  5247. width: 45.83333333%;
  5248. }
  5249. .ant-col-xs-push-11 {
  5250. left: 45.83333333%;
  5251. }
  5252. .ant-col-xs-pull-11 {
  5253. right: 45.83333333%;
  5254. }
  5255. .ant-col-xs-offset-11 {
  5256. margin-left: 45.83333333%;
  5257. }
  5258. .ant-col-xs-order-11 {
  5259. order: 11;
  5260. }
  5261. .ant-col-xs-10 {
  5262. display: block;
  5263. width: 41.66666667%;
  5264. }
  5265. .ant-col-xs-push-10 {
  5266. left: 41.66666667%;
  5267. }
  5268. .ant-col-xs-pull-10 {
  5269. right: 41.66666667%;
  5270. }
  5271. .ant-col-xs-offset-10 {
  5272. margin-left: 41.66666667%;
  5273. }
  5274. .ant-col-xs-order-10 {
  5275. order: 10;
  5276. }
  5277. .ant-col-xs-9 {
  5278. display: block;
  5279. width: 37.5%;
  5280. }
  5281. .ant-col-xs-push-9 {
  5282. left: 37.5%;
  5283. }
  5284. .ant-col-xs-pull-9 {
  5285. right: 37.5%;
  5286. }
  5287. .ant-col-xs-offset-9 {
  5288. margin-left: 37.5%;
  5289. }
  5290. .ant-col-xs-order-9 {
  5291. order: 9;
  5292. }
  5293. .ant-col-xs-8 {
  5294. display: block;
  5295. width: 33.33333333%;
  5296. }
  5297. .ant-col-xs-push-8 {
  5298. left: 33.33333333%;
  5299. }
  5300. .ant-col-xs-pull-8 {
  5301. right: 33.33333333%;
  5302. }
  5303. .ant-col-xs-offset-8 {
  5304. margin-left: 33.33333333%;
  5305. }
  5306. .ant-col-xs-order-8 {
  5307. order: 8;
  5308. }
  5309. .ant-col-xs-7 {
  5310. display: block;
  5311. width: 29.16666667%;
  5312. }
  5313. .ant-col-xs-push-7 {
  5314. left: 29.16666667%;
  5315. }
  5316. .ant-col-xs-pull-7 {
  5317. right: 29.16666667%;
  5318. }
  5319. .ant-col-xs-offset-7 {
  5320. margin-left: 29.16666667%;
  5321. }
  5322. .ant-col-xs-order-7 {
  5323. order: 7;
  5324. }
  5325. .ant-col-xs-6 {
  5326. display: block;
  5327. width: 25%;
  5328. }
  5329. .ant-col-xs-push-6 {
  5330. left: 25%;
  5331. }
  5332. .ant-col-xs-pull-6 {
  5333. right: 25%;
  5334. }
  5335. .ant-col-xs-offset-6 {
  5336. margin-left: 25%;
  5337. }
  5338. .ant-col-xs-order-6 {
  5339. order: 6;
  5340. }
  5341. .ant-col-xs-5 {
  5342. display: block;
  5343. width: 20.83333333%;
  5344. }
  5345. .ant-col-xs-push-5 {
  5346. left: 20.83333333%;
  5347. }
  5348. .ant-col-xs-pull-5 {
  5349. right: 20.83333333%;
  5350. }
  5351. .ant-col-xs-offset-5 {
  5352. margin-left: 20.83333333%;
  5353. }
  5354. .ant-col-xs-order-5 {
  5355. order: 5;
  5356. }
  5357. .ant-col-xs-4 {
  5358. display: block;
  5359. width: 16.66666667%;
  5360. }
  5361. .ant-col-xs-push-4 {
  5362. left: 16.66666667%;
  5363. }
  5364. .ant-col-xs-pull-4 {
  5365. right: 16.66666667%;
  5366. }
  5367. .ant-col-xs-offset-4 {
  5368. margin-left: 16.66666667%;
  5369. }
  5370. .ant-col-xs-order-4 {
  5371. order: 4;
  5372. }
  5373. .ant-col-xs-3 {
  5374. display: block;
  5375. width: 12.5%;
  5376. }
  5377. .ant-col-xs-push-3 {
  5378. left: 12.5%;
  5379. }
  5380. .ant-col-xs-pull-3 {
  5381. right: 12.5%;
  5382. }
  5383. .ant-col-xs-offset-3 {
  5384. margin-left: 12.5%;
  5385. }
  5386. .ant-col-xs-order-3 {
  5387. order: 3;
  5388. }
  5389. .ant-col-xs-2 {
  5390. display: block;
  5391. width: 8.33333333%;
  5392. }
  5393. .ant-col-xs-push-2 {
  5394. left: 8.33333333%;
  5395. }
  5396. .ant-col-xs-pull-2 {
  5397. right: 8.33333333%;
  5398. }
  5399. .ant-col-xs-offset-2 {
  5400. margin-left: 8.33333333%;
  5401. }
  5402. .ant-col-xs-order-2 {
  5403. order: 2;
  5404. }
  5405. .ant-col-xs-1 {
  5406. display: block;
  5407. width: 4.16666667%;
  5408. }
  5409. .ant-col-xs-push-1 {
  5410. left: 4.16666667%;
  5411. }
  5412. .ant-col-xs-pull-1 {
  5413. right: 4.16666667%;
  5414. }
  5415. .ant-col-xs-offset-1 {
  5416. margin-left: 4.16666667%;
  5417. }
  5418. .ant-col-xs-order-1 {
  5419. order: 1;
  5420. }
  5421. .ant-col-xs-0 {
  5422. display: none;
  5423. }
  5424. .ant-col-push-0 {
  5425. left: auto;
  5426. }
  5427. .ant-col-pull-0 {
  5428. right: auto;
  5429. }
  5430. @media (min-width: 768px) {
  5431. .ant-col-sm-1, .ant-col-sm-2, .ant-col-sm-3, .ant-col-sm-4, .ant-col-sm-5, .ant-col-sm-6, .ant-col-sm-7, .ant-col-sm-8, .ant-col-sm-9, .ant-col-sm-10, .ant-col-sm-11, .ant-col-sm-12, .ant-col-sm-13, .ant-col-sm-14, .ant-col-sm-15, .ant-col-sm-16, .ant-col-sm-17, .ant-col-sm-18, .ant-col-sm-19, .ant-col-sm-20, .ant-col-sm-21, .ant-col-sm-22, .ant-col-sm-23, .ant-col-sm-24 {
  5432. float: left;
  5433. flex: 0 0 auto;
  5434. }
  5435. .ant-col-sm-24 {
  5436. display: block;
  5437. width: 100%;
  5438. }
  5439. .ant-col-sm-push-24 {
  5440. left: 100%;
  5441. }
  5442. .ant-col-sm-pull-24 {
  5443. right: 100%;
  5444. }
  5445. .ant-col-sm-offset-24 {
  5446. margin-left: 100%;
  5447. }
  5448. .ant-col-sm-order-24 {
  5449. order: 24;
  5450. }
  5451. .ant-col-sm-23 {
  5452. display: block;
  5453. width: 95.83333333%;
  5454. }
  5455. .ant-col-sm-push-23 {
  5456. left: 95.83333333%;
  5457. }
  5458. .ant-col-sm-pull-23 {
  5459. right: 95.83333333%;
  5460. }
  5461. .ant-col-sm-offset-23 {
  5462. margin-left: 95.83333333%;
  5463. }
  5464. .ant-col-sm-order-23 {
  5465. order: 23;
  5466. }
  5467. .ant-col-sm-22 {
  5468. display: block;
  5469. width: 91.66666667%;
  5470. }
  5471. .ant-col-sm-push-22 {
  5472. left: 91.66666667%;
  5473. }
  5474. .ant-col-sm-pull-22 {
  5475. right: 91.66666667%;
  5476. }
  5477. .ant-col-sm-offset-22 {
  5478. margin-left: 91.66666667%;
  5479. }
  5480. .ant-col-sm-order-22 {
  5481. order: 22;
  5482. }
  5483. .ant-col-sm-21 {
  5484. display: block;
  5485. width: 87.5%;
  5486. }
  5487. .ant-col-sm-push-21 {
  5488. left: 87.5%;
  5489. }
  5490. .ant-col-sm-pull-21 {
  5491. right: 87.5%;
  5492. }
  5493. .ant-col-sm-offset-21 {
  5494. margin-left: 87.5%;
  5495. }
  5496. .ant-col-sm-order-21 {
  5497. order: 21;
  5498. }
  5499. .ant-col-sm-20 {
  5500. display: block;
  5501. width: 83.33333333%;
  5502. }
  5503. .ant-col-sm-push-20 {
  5504. left: 83.33333333%;
  5505. }
  5506. .ant-col-sm-pull-20 {
  5507. right: 83.33333333%;
  5508. }
  5509. .ant-col-sm-offset-20 {
  5510. margin-left: 83.33333333%;
  5511. }
  5512. .ant-col-sm-order-20 {
  5513. order: 20;
  5514. }
  5515. .ant-col-sm-19 {
  5516. display: block;
  5517. width: 79.16666667%;
  5518. }
  5519. .ant-col-sm-push-19 {
  5520. left: 79.16666667%;
  5521. }
  5522. .ant-col-sm-pull-19 {
  5523. right: 79.16666667%;
  5524. }
  5525. .ant-col-sm-offset-19 {
  5526. margin-left: 79.16666667%;
  5527. }
  5528. .ant-col-sm-order-19 {
  5529. order: 19;
  5530. }
  5531. .ant-col-sm-18 {
  5532. display: block;
  5533. width: 75%;
  5534. }
  5535. .ant-col-sm-push-18 {
  5536. left: 75%;
  5537. }
  5538. .ant-col-sm-pull-18 {
  5539. right: 75%;
  5540. }
  5541. .ant-col-sm-offset-18 {
  5542. margin-left: 75%;
  5543. }
  5544. .ant-col-sm-order-18 {
  5545. order: 18;
  5546. }
  5547. .ant-col-sm-17 {
  5548. display: block;
  5549. width: 70.83333333%;
  5550. }
  5551. .ant-col-sm-push-17 {
  5552. left: 70.83333333%;
  5553. }
  5554. .ant-col-sm-pull-17 {
  5555. right: 70.83333333%;
  5556. }
  5557. .ant-col-sm-offset-17 {
  5558. margin-left: 70.83333333%;
  5559. }
  5560. .ant-col-sm-order-17 {
  5561. order: 17;
  5562. }
  5563. .ant-col-sm-16 {
  5564. display: block;
  5565. width: 66.66666667%;
  5566. }
  5567. .ant-col-sm-push-16 {
  5568. left: 66.66666667%;
  5569. }
  5570. .ant-col-sm-pull-16 {
  5571. right: 66.66666667%;
  5572. }
  5573. .ant-col-sm-offset-16 {
  5574. margin-left: 66.66666667%;
  5575. }
  5576. .ant-col-sm-order-16 {
  5577. order: 16;
  5578. }
  5579. .ant-col-sm-15 {
  5580. display: block;
  5581. width: 62.5%;
  5582. }
  5583. .ant-col-sm-push-15 {
  5584. left: 62.5%;
  5585. }
  5586. .ant-col-sm-pull-15 {
  5587. right: 62.5%;
  5588. }
  5589. .ant-col-sm-offset-15 {
  5590. margin-left: 62.5%;
  5591. }
  5592. .ant-col-sm-order-15 {
  5593. order: 15;
  5594. }
  5595. .ant-col-sm-14 {
  5596. display: block;
  5597. width: 58.33333333%;
  5598. }
  5599. .ant-col-sm-push-14 {
  5600. left: 58.33333333%;
  5601. }
  5602. .ant-col-sm-pull-14 {
  5603. right: 58.33333333%;
  5604. }
  5605. .ant-col-sm-offset-14 {
  5606. margin-left: 58.33333333%;
  5607. }
  5608. .ant-col-sm-order-14 {
  5609. order: 14;
  5610. }
  5611. .ant-col-sm-13 {
  5612. display: block;
  5613. width: 54.16666667%;
  5614. }
  5615. .ant-col-sm-push-13 {
  5616. left: 54.16666667%;
  5617. }
  5618. .ant-col-sm-pull-13 {
  5619. right: 54.16666667%;
  5620. }
  5621. .ant-col-sm-offset-13 {
  5622. margin-left: 54.16666667%;
  5623. }
  5624. .ant-col-sm-order-13 {
  5625. order: 13;
  5626. }
  5627. .ant-col-sm-12 {
  5628. display: block;
  5629. width: 50%;
  5630. }
  5631. .ant-col-sm-push-12 {
  5632. left: 50%;
  5633. }
  5634. .ant-col-sm-pull-12 {
  5635. right: 50%;
  5636. }
  5637. .ant-col-sm-offset-12 {
  5638. margin-left: 50%;
  5639. }
  5640. .ant-col-sm-order-12 {
  5641. order: 12;
  5642. }
  5643. .ant-col-sm-11 {
  5644. display: block;
  5645. width: 45.83333333%;
  5646. }
  5647. .ant-col-sm-push-11 {
  5648. left: 45.83333333%;
  5649. }
  5650. .ant-col-sm-pull-11 {
  5651. right: 45.83333333%;
  5652. }
  5653. .ant-col-sm-offset-11 {
  5654. margin-left: 45.83333333%;
  5655. }
  5656. .ant-col-sm-order-11 {
  5657. order: 11;
  5658. }
  5659. .ant-col-sm-10 {
  5660. display: block;
  5661. width: 41.66666667%;
  5662. }
  5663. .ant-col-sm-push-10 {
  5664. left: 41.66666667%;
  5665. }
  5666. .ant-col-sm-pull-10 {
  5667. right: 41.66666667%;
  5668. }
  5669. .ant-col-sm-offset-10 {
  5670. margin-left: 41.66666667%;
  5671. }
  5672. .ant-col-sm-order-10 {
  5673. order: 10;
  5674. }
  5675. .ant-col-sm-9 {
  5676. display: block;
  5677. width: 37.5%;
  5678. }
  5679. .ant-col-sm-push-9 {
  5680. left: 37.5%;
  5681. }
  5682. .ant-col-sm-pull-9 {
  5683. right: 37.5%;
  5684. }
  5685. .ant-col-sm-offset-9 {
  5686. margin-left: 37.5%;
  5687. }
  5688. .ant-col-sm-order-9 {
  5689. order: 9;
  5690. }
  5691. .ant-col-sm-8 {
  5692. display: block;
  5693. width: 33.33333333%;
  5694. }
  5695. .ant-col-sm-push-8 {
  5696. left: 33.33333333%;
  5697. }
  5698. .ant-col-sm-pull-8 {
  5699. right: 33.33333333%;
  5700. }
  5701. .ant-col-sm-offset-8 {
  5702. margin-left: 33.33333333%;
  5703. }
  5704. .ant-col-sm-order-8 {
  5705. order: 8;
  5706. }
  5707. .ant-col-sm-7 {
  5708. display: block;
  5709. width: 29.16666667%;
  5710. }
  5711. .ant-col-sm-push-7 {
  5712. left: 29.16666667%;
  5713. }
  5714. .ant-col-sm-pull-7 {
  5715. right: 29.16666667%;
  5716. }
  5717. .ant-col-sm-offset-7 {
  5718. margin-left: 29.16666667%;
  5719. }
  5720. .ant-col-sm-order-7 {
  5721. order: 7;
  5722. }
  5723. .ant-col-sm-6 {
  5724. display: block;
  5725. width: 25%;
  5726. }
  5727. .ant-col-sm-push-6 {
  5728. left: 25%;
  5729. }
  5730. .ant-col-sm-pull-6 {
  5731. right: 25%;
  5732. }
  5733. .ant-col-sm-offset-6 {
  5734. margin-left: 25%;
  5735. }
  5736. .ant-col-sm-order-6 {
  5737. order: 6;
  5738. }
  5739. .ant-col-sm-5 {
  5740. display: block;
  5741. width: 20.83333333%;
  5742. }
  5743. .ant-col-sm-push-5 {
  5744. left: 20.83333333%;
  5745. }
  5746. .ant-col-sm-pull-5 {
  5747. right: 20.83333333%;
  5748. }
  5749. .ant-col-sm-offset-5 {
  5750. margin-left: 20.83333333%;
  5751. }
  5752. .ant-col-sm-order-5 {
  5753. order: 5;
  5754. }
  5755. .ant-col-sm-4 {
  5756. display: block;
  5757. width: 16.66666667%;
  5758. }
  5759. .ant-col-sm-push-4 {
  5760. left: 16.66666667%;
  5761. }
  5762. .ant-col-sm-pull-4 {
  5763. right: 16.66666667%;
  5764. }
  5765. .ant-col-sm-offset-4 {
  5766. margin-left: 16.66666667%;
  5767. }
  5768. .ant-col-sm-order-4 {
  5769. order: 4;
  5770. }
  5771. .ant-col-sm-3 {
  5772. display: block;
  5773. width: 12.5%;
  5774. }
  5775. .ant-col-sm-push-3 {
  5776. left: 12.5%;
  5777. }
  5778. .ant-col-sm-pull-3 {
  5779. right: 12.5%;
  5780. }
  5781. .ant-col-sm-offset-3 {
  5782. margin-left: 12.5%;
  5783. }
  5784. .ant-col-sm-order-3 {
  5785. order: 3;
  5786. }
  5787. .ant-col-sm-2 {
  5788. display: block;
  5789. width: 8.33333333%;
  5790. }
  5791. .ant-col-sm-push-2 {
  5792. left: 8.33333333%;
  5793. }
  5794. .ant-col-sm-pull-2 {
  5795. right: 8.33333333%;
  5796. }
  5797. .ant-col-sm-offset-2 {
  5798. margin-left: 8.33333333%;
  5799. }
  5800. .ant-col-sm-order-2 {
  5801. order: 2;
  5802. }
  5803. .ant-col-sm-1 {
  5804. display: block;
  5805. width: 4.16666667%;
  5806. }
  5807. .ant-col-sm-push-1 {
  5808. left: 4.16666667%;
  5809. }
  5810. .ant-col-sm-pull-1 {
  5811. right: 4.16666667%;
  5812. }
  5813. .ant-col-sm-offset-1 {
  5814. margin-left: 4.16666667%;
  5815. }
  5816. .ant-col-sm-order-1 {
  5817. order: 1;
  5818. }
  5819. .ant-col-sm-0 {
  5820. display: none;
  5821. }
  5822. .ant-col-push-0 {
  5823. left: auto;
  5824. }
  5825. .ant-col-pull-0 {
  5826. right: auto;
  5827. }
  5828. }
  5829. @media (min-width: 992px) {
  5830. .ant-col-md-1, .ant-col-md-2, .ant-col-md-3, .ant-col-md-4, .ant-col-md-5, .ant-col-md-6, .ant-col-md-7, .ant-col-md-8, .ant-col-md-9, .ant-col-md-10, .ant-col-md-11, .ant-col-md-12, .ant-col-md-13, .ant-col-md-14, .ant-col-md-15, .ant-col-md-16, .ant-col-md-17, .ant-col-md-18, .ant-col-md-19, .ant-col-md-20, .ant-col-md-21, .ant-col-md-22, .ant-col-md-23, .ant-col-md-24 {
  5831. float: left;
  5832. flex: 0 0 auto;
  5833. }
  5834. .ant-col-md-24 {
  5835. display: block;
  5836. width: 100%;
  5837. }
  5838. .ant-col-md-push-24 {
  5839. left: 100%;
  5840. }
  5841. .ant-col-md-pull-24 {
  5842. right: 100%;
  5843. }
  5844. .ant-col-md-offset-24 {
  5845. margin-left: 100%;
  5846. }
  5847. .ant-col-md-order-24 {
  5848. order: 24;
  5849. }
  5850. .ant-col-md-23 {
  5851. display: block;
  5852. width: 95.83333333%;
  5853. }
  5854. .ant-col-md-push-23 {
  5855. left: 95.83333333%;
  5856. }
  5857. .ant-col-md-pull-23 {
  5858. right: 95.83333333%;
  5859. }
  5860. .ant-col-md-offset-23 {
  5861. margin-left: 95.83333333%;
  5862. }
  5863. .ant-col-md-order-23 {
  5864. order: 23;
  5865. }
  5866. .ant-col-md-22 {
  5867. display: block;
  5868. width: 91.66666667%;
  5869. }
  5870. .ant-col-md-push-22 {
  5871. left: 91.66666667%;
  5872. }
  5873. .ant-col-md-pull-22 {
  5874. right: 91.66666667%;
  5875. }
  5876. .ant-col-md-offset-22 {
  5877. margin-left: 91.66666667%;
  5878. }
  5879. .ant-col-md-order-22 {
  5880. order: 22;
  5881. }
  5882. .ant-col-md-21 {
  5883. display: block;
  5884. width: 87.5%;
  5885. }
  5886. .ant-col-md-push-21 {
  5887. left: 87.5%;
  5888. }
  5889. .ant-col-md-pull-21 {
  5890. right: 87.5%;
  5891. }
  5892. .ant-col-md-offset-21 {
  5893. margin-left: 87.5%;
  5894. }
  5895. .ant-col-md-order-21 {
  5896. order: 21;
  5897. }
  5898. .ant-col-md-20 {
  5899. display: block;
  5900. width: 83.33333333%;
  5901. }
  5902. .ant-col-md-push-20 {
  5903. left: 83.33333333%;
  5904. }
  5905. .ant-col-md-pull-20 {
  5906. right: 83.33333333%;
  5907. }
  5908. .ant-col-md-offset-20 {
  5909. margin-left: 83.33333333%;
  5910. }
  5911. .ant-col-md-order-20 {
  5912. order: 20;
  5913. }
  5914. .ant-col-md-19 {
  5915. display: block;
  5916. width: 79.16666667%;
  5917. }
  5918. .ant-col-md-push-19 {
  5919. left: 79.16666667%;
  5920. }
  5921. .ant-col-md-pull-19 {
  5922. right: 79.16666667%;
  5923. }
  5924. .ant-col-md-offset-19 {
  5925. margin-left: 79.16666667%;
  5926. }
  5927. .ant-col-md-order-19 {
  5928. order: 19;
  5929. }
  5930. .ant-col-md-18 {
  5931. display: block;
  5932. width: 75%;
  5933. }
  5934. .ant-col-md-push-18 {
  5935. left: 75%;
  5936. }
  5937. .ant-col-md-pull-18 {
  5938. right: 75%;
  5939. }
  5940. .ant-col-md-offset-18 {
  5941. margin-left: 75%;
  5942. }
  5943. .ant-col-md-order-18 {
  5944. order: 18;
  5945. }
  5946. .ant-col-md-17 {
  5947. display: block;
  5948. width: 70.83333333%;
  5949. }
  5950. .ant-col-md-push-17 {
  5951. left: 70.83333333%;
  5952. }
  5953. .ant-col-md-pull-17 {
  5954. right: 70.83333333%;
  5955. }
  5956. .ant-col-md-offset-17 {
  5957. margin-left: 70.83333333%;
  5958. }
  5959. .ant-col-md-order-17 {
  5960. order: 17;
  5961. }
  5962. .ant-col-md-16 {
  5963. display: block;
  5964. width: 66.66666667%;
  5965. }
  5966. .ant-col-md-push-16 {
  5967. left: 66.66666667%;
  5968. }
  5969. .ant-col-md-pull-16 {
  5970. right: 66.66666667%;
  5971. }
  5972. .ant-col-md-offset-16 {
  5973. margin-left: 66.66666667%;
  5974. }
  5975. .ant-col-md-order-16 {
  5976. order: 16;
  5977. }
  5978. .ant-col-md-15 {
  5979. display: block;
  5980. width: 62.5%;
  5981. }
  5982. .ant-col-md-push-15 {
  5983. left: 62.5%;
  5984. }
  5985. .ant-col-md-pull-15 {
  5986. right: 62.5%;
  5987. }
  5988. .ant-col-md-offset-15 {
  5989. margin-left: 62.5%;
  5990. }
  5991. .ant-col-md-order-15 {
  5992. order: 15;
  5993. }
  5994. .ant-col-md-14 {
  5995. display: block;
  5996. width: 58.33333333%;
  5997. }
  5998. .ant-col-md-push-14 {
  5999. left: 58.33333333%;
  6000. }
  6001. .ant-col-md-pull-14 {
  6002. right: 58.33333333%;
  6003. }
  6004. .ant-col-md-offset-14 {
  6005. margin-left: 58.33333333%;
  6006. }
  6007. .ant-col-md-order-14 {
  6008. order: 14;
  6009. }
  6010. .ant-col-md-13 {
  6011. display: block;
  6012. width: 54.16666667%;
  6013. }
  6014. .ant-col-md-push-13 {
  6015. left: 54.16666667%;
  6016. }
  6017. .ant-col-md-pull-13 {
  6018. right: 54.16666667%;
  6019. }
  6020. .ant-col-md-offset-13 {
  6021. margin-left: 54.16666667%;
  6022. }
  6023. .ant-col-md-order-13 {
  6024. order: 13;
  6025. }
  6026. .ant-col-md-12 {
  6027. display: block;
  6028. width: 50%;
  6029. }
  6030. .ant-col-md-push-12 {
  6031. left: 50%;
  6032. }
  6033. .ant-col-md-pull-12 {
  6034. right: 50%;
  6035. }
  6036. .ant-col-md-offset-12 {
  6037. margin-left: 50%;
  6038. }
  6039. .ant-col-md-order-12 {
  6040. order: 12;
  6041. }
  6042. .ant-col-md-11 {
  6043. display: block;
  6044. width: 45.83333333%;
  6045. }
  6046. .ant-col-md-push-11 {
  6047. left: 45.83333333%;
  6048. }
  6049. .ant-col-md-pull-11 {
  6050. right: 45.83333333%;
  6051. }
  6052. .ant-col-md-offset-11 {
  6053. margin-left: 45.83333333%;
  6054. }
  6055. .ant-col-md-order-11 {
  6056. order: 11;
  6057. }
  6058. .ant-col-md-10 {
  6059. display: block;
  6060. width: 41.66666667%;
  6061. }
  6062. .ant-col-md-push-10 {
  6063. left: 41.66666667%;
  6064. }
  6065. .ant-col-md-pull-10 {
  6066. right: 41.66666667%;
  6067. }
  6068. .ant-col-md-offset-10 {
  6069. margin-left: 41.66666667%;
  6070. }
  6071. .ant-col-md-order-10 {
  6072. order: 10;
  6073. }
  6074. .ant-col-md-9 {
  6075. display: block;
  6076. width: 37.5%;
  6077. }
  6078. .ant-col-md-push-9 {
  6079. left: 37.5%;
  6080. }
  6081. .ant-col-md-pull-9 {
  6082. right: 37.5%;
  6083. }
  6084. .ant-col-md-offset-9 {
  6085. margin-left: 37.5%;
  6086. }
  6087. .ant-col-md-order-9 {
  6088. order: 9;
  6089. }
  6090. .ant-col-md-8 {
  6091. display: block;
  6092. width: 33.33333333%;
  6093. }
  6094. .ant-col-md-push-8 {
  6095. left: 33.33333333%;
  6096. }
  6097. .ant-col-md-pull-8 {
  6098. right: 33.33333333%;
  6099. }
  6100. .ant-col-md-offset-8 {
  6101. margin-left: 33.33333333%;
  6102. }
  6103. .ant-col-md-order-8 {
  6104. order: 8;
  6105. }
  6106. .ant-col-md-7 {
  6107. display: block;
  6108. width: 29.16666667%;
  6109. }
  6110. .ant-col-md-push-7 {
  6111. left: 29.16666667%;
  6112. }
  6113. .ant-col-md-pull-7 {
  6114. right: 29.16666667%;
  6115. }
  6116. .ant-col-md-offset-7 {
  6117. margin-left: 29.16666667%;
  6118. }
  6119. .ant-col-md-order-7 {
  6120. order: 7;
  6121. }
  6122. .ant-col-md-6 {
  6123. display: block;
  6124. width: 25%;
  6125. }
  6126. .ant-col-md-push-6 {
  6127. left: 25%;
  6128. }
  6129. .ant-col-md-pull-6 {
  6130. right: 25%;
  6131. }
  6132. .ant-col-md-offset-6 {
  6133. margin-left: 25%;
  6134. }
  6135. .ant-col-md-order-6 {
  6136. order: 6;
  6137. }
  6138. .ant-col-md-5 {
  6139. display: block;
  6140. width: 20.83333333%;
  6141. }
  6142. .ant-col-md-push-5 {
  6143. left: 20.83333333%;
  6144. }
  6145. .ant-col-md-pull-5 {
  6146. right: 20.83333333%;
  6147. }
  6148. .ant-col-md-offset-5 {
  6149. margin-left: 20.83333333%;
  6150. }
  6151. .ant-col-md-order-5 {
  6152. order: 5;
  6153. }
  6154. .ant-col-md-4 {
  6155. display: block;
  6156. width: 16.66666667%;
  6157. }
  6158. .ant-col-md-push-4 {
  6159. left: 16.66666667%;
  6160. }
  6161. .ant-col-md-pull-4 {
  6162. right: 16.66666667%;
  6163. }
  6164. .ant-col-md-offset-4 {
  6165. margin-left: 16.66666667%;
  6166. }
  6167. .ant-col-md-order-4 {
  6168. order: 4;
  6169. }
  6170. .ant-col-md-3 {
  6171. display: block;
  6172. width: 12.5%;
  6173. }
  6174. .ant-col-md-push-3 {
  6175. left: 12.5%;
  6176. }
  6177. .ant-col-md-pull-3 {
  6178. right: 12.5%;
  6179. }
  6180. .ant-col-md-offset-3 {
  6181. margin-left: 12.5%;
  6182. }
  6183. .ant-col-md-order-3 {
  6184. order: 3;
  6185. }
  6186. .ant-col-md-2 {
  6187. display: block;
  6188. width: 8.33333333%;
  6189. }
  6190. .ant-col-md-push-2 {
  6191. left: 8.33333333%;
  6192. }
  6193. .ant-col-md-pull-2 {
  6194. right: 8.33333333%;
  6195. }
  6196. .ant-col-md-offset-2 {
  6197. margin-left: 8.33333333%;
  6198. }
  6199. .ant-col-md-order-2 {
  6200. order: 2;
  6201. }
  6202. .ant-col-md-1 {
  6203. display: block;
  6204. width: 4.16666667%;
  6205. }
  6206. .ant-col-md-push-1 {
  6207. left: 4.16666667%;
  6208. }
  6209. .ant-col-md-pull-1 {
  6210. right: 4.16666667%;
  6211. }
  6212. .ant-col-md-offset-1 {
  6213. margin-left: 4.16666667%;
  6214. }
  6215. .ant-col-md-order-1 {
  6216. order: 1;
  6217. }
  6218. .ant-col-md-0 {
  6219. display: none;
  6220. }
  6221. .ant-col-push-0 {
  6222. left: auto;
  6223. }
  6224. .ant-col-pull-0 {
  6225. right: auto;
  6226. }
  6227. }
  6228. @media (min-width: 1200px) {
  6229. .ant-col-lg-1, .ant-col-lg-2, .ant-col-lg-3, .ant-col-lg-4, .ant-col-lg-5, .ant-col-lg-6, .ant-col-lg-7, .ant-col-lg-8, .ant-col-lg-9, .ant-col-lg-10, .ant-col-lg-11, .ant-col-lg-12, .ant-col-lg-13, .ant-col-lg-14, .ant-col-lg-15, .ant-col-lg-16, .ant-col-lg-17, .ant-col-lg-18, .ant-col-lg-19, .ant-col-lg-20, .ant-col-lg-21, .ant-col-lg-22, .ant-col-lg-23, .ant-col-lg-24 {
  6230. float: left;
  6231. flex: 0 0 auto;
  6232. }
  6233. .ant-col-lg-24 {
  6234. display: block;
  6235. width: 100%;
  6236. }
  6237. .ant-col-lg-push-24 {
  6238. left: 100%;
  6239. }
  6240. .ant-col-lg-pull-24 {
  6241. right: 100%;
  6242. }
  6243. .ant-col-lg-offset-24 {
  6244. margin-left: 100%;
  6245. }
  6246. .ant-col-lg-order-24 {
  6247. order: 24;
  6248. }
  6249. .ant-col-lg-23 {
  6250. display: block;
  6251. width: 95.83333333%;
  6252. }
  6253. .ant-col-lg-push-23 {
  6254. left: 95.83333333%;
  6255. }
  6256. .ant-col-lg-pull-23 {
  6257. right: 95.83333333%;
  6258. }
  6259. .ant-col-lg-offset-23 {
  6260. margin-left: 95.83333333%;
  6261. }
  6262. .ant-col-lg-order-23 {
  6263. order: 23;
  6264. }
  6265. .ant-col-lg-22 {
  6266. display: block;
  6267. width: 91.66666667%;
  6268. }
  6269. .ant-col-lg-push-22 {
  6270. left: 91.66666667%;
  6271. }
  6272. .ant-col-lg-pull-22 {
  6273. right: 91.66666667%;
  6274. }
  6275. .ant-col-lg-offset-22 {
  6276. margin-left: 91.66666667%;
  6277. }
  6278. .ant-col-lg-order-22 {
  6279. order: 22;
  6280. }
  6281. .ant-col-lg-21 {
  6282. display: block;
  6283. width: 87.5%;
  6284. }
  6285. .ant-col-lg-push-21 {
  6286. left: 87.5%;
  6287. }
  6288. .ant-col-lg-pull-21 {
  6289. right: 87.5%;
  6290. }
  6291. .ant-col-lg-offset-21 {
  6292. margin-left: 87.5%;
  6293. }
  6294. .ant-col-lg-order-21 {
  6295. order: 21;
  6296. }
  6297. .ant-col-lg-20 {
  6298. display: block;
  6299. width: 83.33333333%;
  6300. }
  6301. .ant-col-lg-push-20 {
  6302. left: 83.33333333%;
  6303. }
  6304. .ant-col-lg-pull-20 {
  6305. right: 83.33333333%;
  6306. }
  6307. .ant-col-lg-offset-20 {
  6308. margin-left: 83.33333333%;
  6309. }
  6310. .ant-col-lg-order-20 {
  6311. order: 20;
  6312. }
  6313. .ant-col-lg-19 {
  6314. display: block;
  6315. width: 79.16666667%;
  6316. }
  6317. .ant-col-lg-push-19 {
  6318. left: 79.16666667%;
  6319. }
  6320. .ant-col-lg-pull-19 {
  6321. right: 79.16666667%;
  6322. }
  6323. .ant-col-lg-offset-19 {
  6324. margin-left: 79.16666667%;
  6325. }
  6326. .ant-col-lg-order-19 {
  6327. order: 19;
  6328. }
  6329. .ant-col-lg-18 {
  6330. display: block;
  6331. width: 75%;
  6332. }
  6333. .ant-col-lg-push-18 {
  6334. left: 75%;
  6335. }
  6336. .ant-col-lg-pull-18 {
  6337. right: 75%;
  6338. }
  6339. .ant-col-lg-offset-18 {
  6340. margin-left: 75%;
  6341. }
  6342. .ant-col-lg-order-18 {
  6343. order: 18;
  6344. }
  6345. .ant-col-lg-17 {
  6346. display: block;
  6347. width: 70.83333333%;
  6348. }
  6349. .ant-col-lg-push-17 {
  6350. left: 70.83333333%;
  6351. }
  6352. .ant-col-lg-pull-17 {
  6353. right: 70.83333333%;
  6354. }
  6355. .ant-col-lg-offset-17 {
  6356. margin-left: 70.83333333%;
  6357. }
  6358. .ant-col-lg-order-17 {
  6359. order: 17;
  6360. }
  6361. .ant-col-lg-16 {
  6362. display: block;
  6363. width: 66.66666667%;
  6364. }
  6365. .ant-col-lg-push-16 {
  6366. left: 66.66666667%;
  6367. }
  6368. .ant-col-lg-pull-16 {
  6369. right: 66.66666667%;
  6370. }
  6371. .ant-col-lg-offset-16 {
  6372. margin-left: 66.66666667%;
  6373. }
  6374. .ant-col-lg-order-16 {
  6375. order: 16;
  6376. }
  6377. .ant-col-lg-15 {
  6378. display: block;
  6379. width: 62.5%;
  6380. }
  6381. .ant-col-lg-push-15 {
  6382. left: 62.5%;
  6383. }
  6384. .ant-col-lg-pull-15 {
  6385. right: 62.5%;
  6386. }
  6387. .ant-col-lg-offset-15 {
  6388. margin-left: 62.5%;
  6389. }
  6390. .ant-col-lg-order-15 {
  6391. order: 15;
  6392. }
  6393. .ant-col-lg-14 {
  6394. display: block;
  6395. width: 58.33333333%;
  6396. }
  6397. .ant-col-lg-push-14 {
  6398. left: 58.33333333%;
  6399. }
  6400. .ant-col-lg-pull-14 {
  6401. right: 58.33333333%;
  6402. }
  6403. .ant-col-lg-offset-14 {
  6404. margin-left: 58.33333333%;
  6405. }
  6406. .ant-col-lg-order-14 {
  6407. order: 14;
  6408. }
  6409. .ant-col-lg-13 {
  6410. display: block;
  6411. width: 54.16666667%;
  6412. }
  6413. .ant-col-lg-push-13 {
  6414. left: 54.16666667%;
  6415. }
  6416. .ant-col-lg-pull-13 {
  6417. right: 54.16666667%;
  6418. }
  6419. .ant-col-lg-offset-13 {
  6420. margin-left: 54.16666667%;
  6421. }
  6422. .ant-col-lg-order-13 {
  6423. order: 13;
  6424. }
  6425. .ant-col-lg-12 {
  6426. display: block;
  6427. width: 50%;
  6428. }
  6429. .ant-col-lg-push-12 {
  6430. left: 50%;
  6431. }
  6432. .ant-col-lg-pull-12 {
  6433. right: 50%;
  6434. }
  6435. .ant-col-lg-offset-12 {
  6436. margin-left: 50%;
  6437. }
  6438. .ant-col-lg-order-12 {
  6439. order: 12;
  6440. }
  6441. .ant-col-lg-11 {
  6442. display: block;
  6443. width: 45.83333333%;
  6444. }
  6445. .ant-col-lg-push-11 {
  6446. left: 45.83333333%;
  6447. }
  6448. .ant-col-lg-pull-11 {
  6449. right: 45.83333333%;
  6450. }
  6451. .ant-col-lg-offset-11 {
  6452. margin-left: 45.83333333%;
  6453. }
  6454. .ant-col-lg-order-11 {
  6455. order: 11;
  6456. }
  6457. .ant-col-lg-10 {
  6458. display: block;
  6459. width: 41.66666667%;
  6460. }
  6461. .ant-col-lg-push-10 {
  6462. left: 41.66666667%;
  6463. }
  6464. .ant-col-lg-pull-10 {
  6465. right: 41.66666667%;
  6466. }
  6467. .ant-col-lg-offset-10 {
  6468. margin-left: 41.66666667%;
  6469. }
  6470. .ant-col-lg-order-10 {
  6471. order: 10;
  6472. }
  6473. .ant-col-lg-9 {
  6474. display: block;
  6475. width: 37.5%;
  6476. }
  6477. .ant-col-lg-push-9 {
  6478. left: 37.5%;
  6479. }
  6480. .ant-col-lg-pull-9 {
  6481. right: 37.5%;
  6482. }
  6483. .ant-col-lg-offset-9 {
  6484. margin-left: 37.5%;
  6485. }
  6486. .ant-col-lg-order-9 {
  6487. order: 9;
  6488. }
  6489. .ant-col-lg-8 {
  6490. display: block;
  6491. width: 33.33333333%;
  6492. }
  6493. .ant-col-lg-push-8 {
  6494. left: 33.33333333%;
  6495. }
  6496. .ant-col-lg-pull-8 {
  6497. right: 33.33333333%;
  6498. }
  6499. .ant-col-lg-offset-8 {
  6500. margin-left: 33.33333333%;
  6501. }
  6502. .ant-col-lg-order-8 {
  6503. order: 8;
  6504. }
  6505. .ant-col-lg-7 {
  6506. display: block;
  6507. width: 29.16666667%;
  6508. }
  6509. .ant-col-lg-push-7 {
  6510. left: 29.16666667%;
  6511. }
  6512. .ant-col-lg-pull-7 {
  6513. right: 29.16666667%;
  6514. }
  6515. .ant-col-lg-offset-7 {
  6516. margin-left: 29.16666667%;
  6517. }
  6518. .ant-col-lg-order-7 {
  6519. order: 7;
  6520. }
  6521. .ant-col-lg-6 {
  6522. display: block;
  6523. width: 25%;
  6524. }
  6525. .ant-col-lg-push-6 {
  6526. left: 25%;
  6527. }
  6528. .ant-col-lg-pull-6 {
  6529. right: 25%;
  6530. }
  6531. .ant-col-lg-offset-6 {
  6532. margin-left: 25%;
  6533. }
  6534. .ant-col-lg-order-6 {
  6535. order: 6;
  6536. }
  6537. .ant-col-lg-5 {
  6538. display: block;
  6539. width: 20.83333333%;
  6540. }
  6541. .ant-col-lg-push-5 {
  6542. left: 20.83333333%;
  6543. }
  6544. .ant-col-lg-pull-5 {
  6545. right: 20.83333333%;
  6546. }
  6547. .ant-col-lg-offset-5 {
  6548. margin-left: 20.83333333%;
  6549. }
  6550. .ant-col-lg-order-5 {
  6551. order: 5;
  6552. }
  6553. .ant-col-lg-4 {
  6554. display: block;
  6555. width: 16.66666667%;
  6556. }
  6557. .ant-col-lg-push-4 {
  6558. left: 16.66666667%;
  6559. }
  6560. .ant-col-lg-pull-4 {
  6561. right: 16.66666667%;
  6562. }
  6563. .ant-col-lg-offset-4 {
  6564. margin-left: 16.66666667%;
  6565. }
  6566. .ant-col-lg-order-4 {
  6567. order: 4;
  6568. }
  6569. .ant-col-lg-3 {
  6570. display: block;
  6571. width: 12.5%;
  6572. }
  6573. .ant-col-lg-push-3 {
  6574. left: 12.5%;
  6575. }
  6576. .ant-col-lg-pull-3 {
  6577. right: 12.5%;
  6578. }
  6579. .ant-col-lg-offset-3 {
  6580. margin-left: 12.5%;
  6581. }
  6582. .ant-col-lg-order-3 {
  6583. order: 3;
  6584. }
  6585. .ant-col-lg-2 {
  6586. display: block;
  6587. width: 8.33333333%;
  6588. }
  6589. .ant-col-lg-push-2 {
  6590. left: 8.33333333%;
  6591. }
  6592. .ant-col-lg-pull-2 {
  6593. right: 8.33333333%;
  6594. }
  6595. .ant-col-lg-offset-2 {
  6596. margin-left: 8.33333333%;
  6597. }
  6598. .ant-col-lg-order-2 {
  6599. order: 2;
  6600. }
  6601. .ant-col-lg-1 {
  6602. display: block;
  6603. width: 4.16666667%;
  6604. }
  6605. .ant-col-lg-push-1 {
  6606. left: 4.16666667%;
  6607. }
  6608. .ant-col-lg-pull-1 {
  6609. right: 4.16666667%;
  6610. }
  6611. .ant-col-lg-offset-1 {
  6612. margin-left: 4.16666667%;
  6613. }
  6614. .ant-col-lg-order-1 {
  6615. order: 1;
  6616. }
  6617. .ant-col-lg-0 {
  6618. display: none;
  6619. }
  6620. .ant-col-push-0 {
  6621. left: auto;
  6622. }
  6623. .ant-col-pull-0 {
  6624. right: auto;
  6625. }
  6626. }
  6627. .wrap .accounnt-form {
  6628. margin-top: 120px;
  6629. }
  6630. .wrap .accounnt-form .ant-tabs-bar {
  6631. height: 60px;
  6632. margin-bottom: 0;
  6633. border: none;
  6634. }
  6635. .wrap .accounnt-form .ant-tabs-bar .ant-tabs-nav-container {
  6636. height: 60px;
  6637. line-height: 60px;
  6638. font-size: 18px;
  6639. }
  6640. .wrap .accounnt-form .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-nav-scroll {
  6641. width: 100%;
  6642. }
  6643. .wrap .accounnt-form .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-nav-scroll .ant-tabs-nav {
  6644. width: 100%;
  6645. }
  6646. .wrap .accounnt-form .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-nav-scroll .ant-tabs-nav .ant-tabs-tab {
  6647. width: 50%;
  6648. text-align: center;
  6649. border: none;
  6650. background: #f0f0f0;
  6651. margin-bottom: 0;
  6652. padding: 0;
  6653. }
  6654. .wrap .accounnt-form .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-nav-scroll .ant-tabs-nav .ant-tabs-tab-active {
  6655. background: #fff;
  6656. }
  6657. .wrap .accounnt-form .ant-tabs-content .ant-tabs-tabpane {
  6658. background: #fff;
  6659. }
  6660. .ant-select {
  6661. box-sizing: border-box;
  6662. display: inline-block;
  6663. position: relative;
  6664. color: #666;
  6665. font-size: 12px;
  6666. }
  6667. .ant-select > ul > li > a {
  6668. padding: 0;
  6669. background-color: #fff;
  6670. }
  6671. .ant-select-arrow {
  6672. font-style: normal;
  6673. vertical-align: baseline;
  6674. text-align: center;
  6675. text-transform: none;
  6676. text-rendering: auto;
  6677. text-rendering: optimizeLegibility;
  6678. -webkit-font-smoothing: antialiased;
  6679. -moz-osx-font-smoothing: grayscale;
  6680. position: absolute;
  6681. top: 50%;
  6682. right: 8px;
  6683. line-height: 1;
  6684. margin-top: -6px;
  6685. display: inline-block;
  6686. font-size: 12px;
  6687. font-size: 9px \9;
  6688. transform: scale(0.75) rotate(0deg);
  6689. /* IE6-IE8 */
  6690. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  6691. zoom: 1;
  6692. }
  6693. .ant-select-arrow:before {
  6694. display: block;
  6695. font-family: "anticon" !important;
  6696. }
  6697. :root .ant-select-arrow {
  6698. filter: none;
  6699. }
  6700. :root .ant-select-arrow {
  6701. font-size: 12px;
  6702. }
  6703. .ant-select-arrow * {
  6704. display: none;
  6705. }
  6706. .ant-select-arrow:before {
  6707. content: '\E61D';
  6708. transition: transform 0.2s ease;
  6709. }
  6710. .ant-select-selection {
  6711. outline: none;
  6712. user-select: none;
  6713. box-sizing: border-box;
  6714. display: block;
  6715. background-color: #fff;
  6716. border-radius: 4px;
  6717. border: 1px solid #d9d9d9;
  6718. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6719. }
  6720. .ant-select-selection:hover {
  6721. border-color: #79b5ff;
  6722. }
  6723. .ant-select-focused .ant-select-selection,
  6724. .ant-select-selection:focus,
  6725. .ant-select-selection:active {
  6726. border-color: #79b5ff;
  6727. outline: 0;
  6728. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  6729. }
  6730. .ant-select-selection__clear {
  6731. display: inline-block;
  6732. font-style: normal;
  6733. vertical-align: baseline;
  6734. text-align: center;
  6735. text-transform: none;
  6736. text-rendering: auto;
  6737. opacity: 0;
  6738. position: absolute;
  6739. right: 8px;
  6740. z-index: 1;
  6741. background: #fff;
  6742. top: 50%;
  6743. font-size: 12px;
  6744. color: #ccc;
  6745. width: 12px;
  6746. height: 12px;
  6747. margin-top: -6px;
  6748. line-height: 12px;
  6749. cursor: pointer;
  6750. transition: color 0.3s ease, opacity 0.15s ease;
  6751. }
  6752. .ant-select-selection__clear:before {
  6753. display: block;
  6754. font-family: 'anticon';
  6755. text-rendering: optimizeLegibility;
  6756. -webkit-font-smoothing: antialiased;
  6757. -moz-osx-font-smoothing: grayscale;
  6758. content: "\E62E";
  6759. }
  6760. .ant-select-selection__clear:hover {
  6761. color: #999;
  6762. }
  6763. .ant-select-selection:hover .ant-select-selection__clear {
  6764. opacity: 1;
  6765. }
  6766. .ant-select-selection-selected-value {
  6767. float: left;
  6768. overflow: hidden;
  6769. text-overflow: ellipsis;
  6770. white-space: nowrap;
  6771. max-width: 100%;
  6772. padding-right: 14px;
  6773. }
  6774. .ant-select-disabled {
  6775. color: #ccc;
  6776. }
  6777. .ant-select-disabled .ant-select-selection {
  6778. background: #f7f7f7;
  6779. cursor: not-allowed;
  6780. }
  6781. .ant-select-disabled .ant-select-selection:hover,
  6782. .ant-select-disabled .ant-select-selection:focus,
  6783. .ant-select-disabled .ant-select-selection:active {
  6784. border-color: #d9d9d9;
  6785. box-shadow: none;
  6786. }
  6787. .ant-select-disabled .ant-select-selection__clear {
  6788. display: none;
  6789. visibility: hidden;
  6790. pointer-events: none;
  6791. }
  6792. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
  6793. background: #e9e9e9;
  6794. color: #aaa;
  6795. padding-right: 10px;
  6796. }
  6797. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6798. display: none;
  6799. }
  6800. .ant-select-selection--single {
  6801. height: 28px;
  6802. position: relative;
  6803. cursor: pointer;
  6804. }
  6805. .ant-select-selection__rendered {
  6806. display: block;
  6807. margin-left: 8px;
  6808. margin-right: 8px;
  6809. position: relative;
  6810. line-height: 26px;
  6811. }
  6812. .ant-select-selection__rendered:after {
  6813. content: '.';
  6814. visibility: hidden;
  6815. pointer-events: none;
  6816. display: inline-block;
  6817. width: 0;
  6818. }
  6819. .ant-select-lg .ant-select-selection--single {
  6820. height: 32px;
  6821. }
  6822. .ant-select-lg .ant-select-selection__rendered {
  6823. line-height: 30px;
  6824. }
  6825. .ant-select-lg .ant-select-selection--multiple {
  6826. min-height: 32px;
  6827. }
  6828. .ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li {
  6829. height: 24px;
  6830. line-height: 24px;
  6831. }
  6832. .ant-select-sm .ant-select-selection {
  6833. border-radius: 2px;
  6834. }
  6835. .ant-select-sm .ant-select-selection--single {
  6836. height: 22px;
  6837. }
  6838. .ant-select-sm .ant-select-selection__rendered {
  6839. line-height: 20px;
  6840. }
  6841. .ant-select-sm .ant-select-selection--multiple {
  6842. min-height: 22px;
  6843. }
  6844. .ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li {
  6845. height: 14px;
  6846. line-height: 14px;
  6847. }
  6848. .ant-select-disabled .ant-select-selection__choice__remove {
  6849. color: #ccc;
  6850. cursor: default;
  6851. }
  6852. .ant-select-disabled .ant-select-selection__choice__remove:hover {
  6853. color: #ccc;
  6854. }
  6855. .ant-select-search__field__wrap {
  6856. display: inline-block;
  6857. position: relative;
  6858. }
  6859. .ant-select-selection__placeholder,
  6860. .ant-select-search__field__placeholder {
  6861. position: absolute;
  6862. top: 50%;
  6863. left: 0;
  6864. right: 9px;
  6865. color: #ccc;
  6866. line-height: 20px;
  6867. height: 20px;
  6868. max-width: 100%;
  6869. margin-top: -10px;
  6870. overflow: hidden;
  6871. text-overflow: ellipsis;
  6872. white-space: nowrap;
  6873. }
  6874. .ant-select-search__field__placeholder {
  6875. left: 8px;
  6876. }
  6877. .ant-select-search--inline {
  6878. position: absolute;
  6879. height: 100%;
  6880. }
  6881. .ant-select-selection--multiple .ant-select-search--inline {
  6882. float: left;
  6883. position: static;
  6884. }
  6885. .ant-select-search--inline .ant-select-search__field__wrap {
  6886. width: 100%;
  6887. height: 100%;
  6888. }
  6889. .ant-select-search--inline .ant-select-search__field {
  6890. border: 0;
  6891. font-size: 100%;
  6892. height: 100%;
  6893. width: 100%;
  6894. background: transparent;
  6895. outline: 0;
  6896. border-radius: 4px;
  6897. }
  6898. .ant-select-search--inline .ant-select-search__field__mirror {
  6899. position: absolute;
  6900. top: 0;
  6901. left: -9999px;
  6902. white-space: pre;
  6903. pointer-events: none;
  6904. }
  6905. .ant-select-search--inline > i {
  6906. float: right;
  6907. }
  6908. .ant-select-selection--multiple {
  6909. min-height: 28px;
  6910. cursor: text;
  6911. padding-bottom: 3px;
  6912. zoom: 1;
  6913. }
  6914. .ant-select-selection--multiple:before,
  6915. .ant-select-selection--multiple:after {
  6916. content: " ";
  6917. display: table;
  6918. }
  6919. .ant-select-selection--multiple:after {
  6920. clear: both;
  6921. visibility: hidden;
  6922. font-size: 0;
  6923. height: 0;
  6924. }
  6925. .ant-select-selection--multiple .ant-select-search--inline {
  6926. width: auto;
  6927. padding: 0;
  6928. }
  6929. .ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  6930. width: 0.75em;
  6931. }
  6932. .ant-select-selection--multiple .ant-select-selection__rendered {
  6933. margin-left: 5px;
  6934. margin-bottom: -3px;
  6935. height: auto;
  6936. }
  6937. .ant-select-selection--multiple > ul > li,
  6938. .ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  6939. margin-top: 3px;
  6940. height: 20px;
  6941. line-height: 20px;
  6942. }
  6943. .ant-select-selection--multiple .ant-select-selection__choice {
  6944. background-color: #f3f3f3;
  6945. border-radius: 4px;
  6946. cursor: default;
  6947. float: left;
  6948. padding: 0 16px;
  6949. margin-right: 4px;
  6950. max-width: 99%;
  6951. position: relative;
  6952. overflow: hidden;
  6953. transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6954. padding: 0 20px 0 10px;
  6955. }
  6956. .ant-select-selection--multiple .ant-select-selection__choice__disabled {
  6957. padding: 0 10px;
  6958. }
  6959. .ant-select-selection--multiple .ant-select-selection__choice__content {
  6960. display: inline-block;
  6961. white-space: nowrap;
  6962. overflow: hidden;
  6963. text-overflow: ellipsis;
  6964. max-width: 100%;
  6965. transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6966. }
  6967. .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6968. font-style: normal;
  6969. vertical-align: baseline;
  6970. text-align: center;
  6971. text-transform: none;
  6972. text-rendering: auto;
  6973. line-height: 1;
  6974. text-rendering: optimizeLegibility;
  6975. -webkit-font-smoothing: antialiased;
  6976. -moz-osx-font-smoothing: grayscale;
  6977. color: #999;
  6978. line-height: inherit;
  6979. cursor: pointer;
  6980. font-weight: bold;
  6981. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6982. display: inline-block;
  6983. font-size: 12px;
  6984. font-size: 8px \9;
  6985. transform: scale(0.66666667) rotate(0deg);
  6986. /* IE6-IE8 */
  6987. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  6988. zoom: 1;
  6989. position: absolute;
  6990. right: 4px;
  6991. padding: 0 0 0 8px;
  6992. }
  6993. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  6994. display: block;
  6995. font-family: "anticon" !important;
  6996. }
  6997. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6998. filter: none;
  6999. }
  7000. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7001. font-size: 12px;
  7002. }
  7003. .ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
  7004. color: #404040;
  7005. }
  7006. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  7007. content: "\E633";
  7008. }
  7009. .ant-select-open .ant-select-arrow {
  7010. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  7011. -ms-transform: rotate(180deg);
  7012. }
  7013. .ant-select-open .ant-select-arrow:before {
  7014. transform: rotate(180deg);
  7015. }
  7016. .ant-select-open .ant-select-selection {
  7017. border-color: #79b5ff;
  7018. outline: 0;
  7019. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  7020. }
  7021. .ant-select-combobox .ant-select-arrow {
  7022. display: none;
  7023. }
  7024. .ant-select-combobox .ant-select-search--inline {
  7025. height: 100%;
  7026. width: 100%;
  7027. float: none;
  7028. }
  7029. .ant-select-combobox .ant-select-search__field__wrap {
  7030. width: 100%;
  7031. height: 100%;
  7032. }
  7033. .ant-select-combobox .ant-select-search__field {
  7034. width: 100%;
  7035. height: 100%;
  7036. position: relative;
  7037. z-index: 1;
  7038. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7039. box-shadow: none;
  7040. }
  7041. .ant-select-dropdown {
  7042. background-color: #fff;
  7043. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  7044. border-radius: 4px;
  7045. box-sizing: border-box;
  7046. z-index: 1050;
  7047. left: -9999px;
  7048. top: -9999px;
  7049. position: absolute;
  7050. outline: none;
  7051. overflow: hidden;
  7052. font-size: 12px;
  7053. }
  7054. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
  7055. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  7056. animation-name: antSlideUpIn;
  7057. }
  7058. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
  7059. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  7060. animation-name: antSlideDownIn;
  7061. }
  7062. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  7063. animation-name: antSlideUpOut;
  7064. }
  7065. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  7066. animation-name: antSlideDownOut;
  7067. }
  7068. .ant-select-dropdown-hidden {
  7069. display: none;
  7070. }
  7071. .ant-select-dropdown-menu {
  7072. outline: none;
  7073. margin-bottom: 0;
  7074. padding-left: 0;
  7075. list-style: none;
  7076. max-height: 250px;
  7077. overflow: auto;
  7078. }
  7079. .ant-select-dropdown-menu-item-group-list {
  7080. margin: 0;
  7081. padding: 0;
  7082. }
  7083. .ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item {
  7084. padding-left: 24px;
  7085. }
  7086. .ant-select-dropdown-menu-item-group-title {
  7087. color: #999;
  7088. line-height: 1.5;
  7089. padding: 8px 16px;
  7090. }
  7091. .ant-select-dropdown-menu-item {
  7092. position: relative;
  7093. display: block;
  7094. padding: 7px 16px;
  7095. font-weight: normal;
  7096. color: #666;
  7097. cursor: pointer;
  7098. white-space: nowrap;
  7099. overflow: hidden;
  7100. transition: background 0.3s ease;
  7101. }
  7102. .ant-select-dropdown-menu-item:hover,
  7103. .ant-select-dropdown-menu-item-active {
  7104. background-color: #eef6ff;
  7105. }
  7106. .ant-select-dropdown-menu-item-disabled {
  7107. color: #ccc;
  7108. cursor: not-allowed;
  7109. }
  7110. .ant-select-dropdown-menu-item-disabled:hover {
  7111. color: #ccc;
  7112. background-color: #fff;
  7113. cursor: not-allowed;
  7114. }
  7115. .ant-select-dropdown-menu-item-selected,
  7116. .ant-select-dropdown-menu-item-selected:hover {
  7117. background-color: #f7f7f7;
  7118. font-weight: bold;
  7119. color: #666;
  7120. }
  7121. .ant-select-dropdown-menu-item-divider {
  7122. height: 1px;
  7123. margin: 1px 0;
  7124. overflow: hidden;
  7125. background-color: #e5e5e5;
  7126. line-height: 0;
  7127. }
  7128. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7129. font-family: 'anticon';
  7130. text-rendering: optimizeLegibility;
  7131. -webkit-font-smoothing: antialiased;
  7132. -moz-osx-font-smoothing: grayscale;
  7133. content: "\E632";
  7134. color: transparent;
  7135. display: inline-block;
  7136. font-size: 12px;
  7137. font-size: 10px \9;
  7138. transform: scale(0.83333333) rotate(0deg);
  7139. /* IE6-IE8 */
  7140. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7141. zoom: 1;
  7142. transition: all 0.2s ease;
  7143. position: absolute;
  7144. top: 50%;
  7145. transform: translateY(-50%);
  7146. right: 16px;
  7147. font-weight: bold;
  7148. text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  7149. }
  7150. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7151. filter: none;
  7152. }
  7153. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7154. font-size: 12px;
  7155. }
  7156. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover:after {
  7157. color: #ddd;
  7158. }
  7159. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled:after {
  7160. display: none;
  7161. }
  7162. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:after,
  7163. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover:after {
  7164. color: #58a3ff;
  7165. display: inline-block;
  7166. }
  7167. .ant-select-dropdown-container-open .ant-select-dropdown,
  7168. .ant-select-dropdown-open .ant-select-dropdown {
  7169. display: block;
  7170. }
  7171. .account-content {
  7172. margin-top: 50px;
  7173. height: 580px;
  7174. }
  7175. .account-content .account-left {
  7176. width: 540px;
  7177. float: left;
  7178. }
  7179. .account-content .account-left .acc-getVcode {
  7180. height: 32px;
  7181. width: 100%;
  7182. padding-top: 32px;
  7183. position: relative;
  7184. overflow: hidden;
  7185. }
  7186. .account-content .account-left .acc-getVcode img {
  7187. position: absolute;
  7188. top: 0;
  7189. left: 0;
  7190. width: 100%;
  7191. height: 32px;
  7192. }
  7193. .account-content .account-left .ant-form-extra {
  7194. color: #ccc;
  7195. }
  7196. .account-content .account-left .ant-form-extra span {
  7197. margin-left: 2px;
  7198. }
  7199. .account-content .account-left .redFont {
  7200. color: #ea0862;
  7201. }
  7202. .account-content .account-left button {
  7203. width: 100%;
  7204. }
  7205. .account-content .account-left .ant-checkbox-wrapper span {
  7206. line-height: 32px;
  7207. }
  7208. .account-content .account-right {
  7209. width: 400px;
  7210. float: left;
  7211. }
  7212. .account-content .account-right .title {
  7213. color: #333;
  7214. }
  7215. .account-content .account-right button {
  7216. width: 132px;
  7217. border-radius: 4px;
  7218. margin-top: 10px;
  7219. }
  7220. .account-content .account-right .haveID {
  7221. margin-bottom: 60px;
  7222. }
  7223. .account-content .account-right .relateID {
  7224. margin-bottom: 30px;
  7225. }
  7226. .account-content .account-right .relateID p img {
  7227. width: 20px;
  7228. vertical-align: middle;
  7229. }
  7230. .account-content .account-right .relateID p span {
  7231. margin-left: 4px;
  7232. }
  7233. .account-content .account-right .relateID .relateqq {
  7234. color: #fff;
  7235. background: #3174c2;
  7236. }
  7237. .account-content .account-right .relateID .relateweibo {
  7238. color: #fff;
  7239. background: #ce321c;
  7240. }
  7241. .account-content .account-right .relateID .relateweixin {
  7242. color: #fff;
  7243. background: #13bb20;
  7244. }
  7245. .account-content .account-right .about {
  7246. padding-right: 40px;
  7247. }
  7248. .account-content .account-right .about p {
  7249. margin-bottom: 10px;
  7250. }
  7251. .group {
  7252. margin: 50px 210px 0;
  7253. height: 680px;
  7254. }
  7255. .group .account-left {
  7256. width: 540px;
  7257. }
  7258. .group .account-left .acc-getVcode {
  7259. height: 32px;
  7260. width: 100%;
  7261. padding-top: 32px;
  7262. position: relative;
  7263. overflow: hidden;
  7264. }
  7265. .group .account-left .acc-getVcode img {
  7266. position: absolute;
  7267. top: 0;
  7268. left: 0;
  7269. width: 100%;
  7270. height: 32px;
  7271. }
  7272. .group .account-left .ant-form-extra {
  7273. color: #ccc;
  7274. }
  7275. .group .account-left .ant-form-extra span {
  7276. margin-left: 2px;
  7277. }
  7278. .group .account-left .redFont {
  7279. color: #ea0862;
  7280. }
  7281. .group .account-left button {
  7282. width: 100%;
  7283. }
  7284. .group .account-left .ant-checkbox-wrapper span {
  7285. line-height: 32px;
  7286. }