copyright.css 280 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402
  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. /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
  36. /**
  37. * 1. Change the default font family in all browsers (opinionated).
  38. * 2. Correct the line height in all browsers.
  39. * 3. Prevent adjustments of font size after orientation changes in
  40. * IE on Windows Phone and in iOS.
  41. */
  42. /* Document
  43. ========================================================================== */
  44. html {
  45. font-family: sans-serif;
  46. /* 1 */
  47. line-height: 1.15;
  48. /* 2 */
  49. -ms-text-size-adjust: 100%;
  50. /* 3 */
  51. -webkit-text-size-adjust: 100%;
  52. /* 3 */
  53. }
  54. /* Sections
  55. ========================================================================== */
  56. /**
  57. * Remove the margin in all browsers (opinionated).
  58. */
  59. body {
  60. margin: 0;
  61. }
  62. /**
  63. * Add the correct display in IE 9-.
  64. */
  65. article,
  66. aside,
  67. footer,
  68. header,
  69. nav,
  70. section {
  71. display: block;
  72. }
  73. /**
  74. * Correct the font size and margin on `h1` elements within `section` and
  75. * `article` contexts in Chrome, Firefox, and Safari.
  76. */
  77. h1 {
  78. font-size: 2em;
  79. margin: 0.67em 0;
  80. }
  81. /* Grouping content
  82. ========================================================================== */
  83. /**
  84. * Add the correct display in IE 9-.
  85. * 1. Add the correct display in IE.
  86. */
  87. figcaption,
  88. figure,
  89. main {
  90. /* 1 */
  91. display: block;
  92. }
  93. /**
  94. * Add the correct margin in IE 8.
  95. */
  96. figure {
  97. margin: 1em 40px;
  98. }
  99. /**
  100. * 1. Add the correct box sizing in Firefox.
  101. * 2. Show the overflow in Edge and IE.
  102. */
  103. hr {
  104. box-sizing: content-box;
  105. /* 1 */
  106. height: 0;
  107. /* 1 */
  108. overflow: visible;
  109. /* 2 */
  110. }
  111. /**
  112. * 1. Correct the inheritance and scaling of font size in all browsers.
  113. * 2. Correct the odd `em` font sizing in all browsers.
  114. */
  115. pre {
  116. font-family: monospace, monospace;
  117. /* 1 */
  118. /* stylelint-disable-line font-family-no-duplicate-names */
  119. font-size: 1em;
  120. /* 2 */
  121. }
  122. /* Text-level semantics
  123. ========================================================================== */
  124. /**
  125. * 1. Remove the gray background on active links in IE 10.
  126. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  127. */
  128. a {
  129. background-color: transparent;
  130. /* 1 */
  131. -webkit-text-decoration-skip: objects;
  132. /* 2 */
  133. }
  134. /**
  135. * Remove the outline on focused links when they are also active or hovered
  136. * in all browsers (opinionated).
  137. */
  138. a:active,
  139. a:hover {
  140. outline-width: 0;
  141. }
  142. /**
  143. * 1. Remove the bottom border in Firefox 39-.
  144. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  145. */
  146. abbr[title] {
  147. border-bottom: none;
  148. /* 1 */
  149. text-decoration: underline;
  150. /* 2 */
  151. text-decoration: underline dotted;
  152. /* 2 */
  153. }
  154. /**
  155. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  156. */
  157. b,
  158. strong {
  159. font-weight: inherit;
  160. }
  161. /**
  162. * Add the correct font weight in Chrome, Edge, and Safari.
  163. */
  164. b,
  165. strong {
  166. font-weight: bolder;
  167. }
  168. /**
  169. * 1. Correct the inheritance and scaling of font size in all browsers.
  170. * 2. Correct the odd `em` font sizing in all browsers.
  171. */
  172. code,
  173. kbd,
  174. samp {
  175. font-family: monospace, monospace;
  176. /* 1 */
  177. /* stylelint-disable-line font-family-no-duplicate-names */
  178. font-size: 1em;
  179. /* 2 */
  180. }
  181. /**
  182. * Add the correct font style in Android 4.3-.
  183. */
  184. dfn {
  185. font-style: italic;
  186. }
  187. /**
  188. * Add the correct background and color in IE 9-.
  189. */
  190. mark {
  191. background-color: #ff0;
  192. color: #000;
  193. }
  194. /**
  195. * Add the correct font size in all browsers.
  196. */
  197. small {
  198. font-size: 80%;
  199. }
  200. /**
  201. * Prevent `sub` and `sup` elements from affecting the line height in
  202. * all browsers.
  203. */
  204. sub,
  205. sup {
  206. font-size: 75%;
  207. line-height: 0;
  208. position: relative;
  209. vertical-align: baseline;
  210. }
  211. sub {
  212. bottom: -0.25em;
  213. }
  214. sup {
  215. top: -0.5em;
  216. }
  217. /* Embedded content
  218. ========================================================================== */
  219. /**
  220. * Add the correct display in IE 9-.
  221. */
  222. audio,
  223. video {
  224. display: inline-block;
  225. }
  226. /**
  227. * Add the correct display in iOS 4-7.
  228. */
  229. audio:not([controls]) {
  230. display: none;
  231. height: 0;
  232. }
  233. /**
  234. * Remove the border on images inside links in IE 10-.
  235. */
  236. img {
  237. border-style: none;
  238. }
  239. /**
  240. * Hide the overflow in IE.
  241. */
  242. svg:not(:root) {
  243. overflow: hidden;
  244. }
  245. /* Forms
  246. ========================================================================== */
  247. /**
  248. * 1. Change the font styles in all browsers (opinionated).
  249. * 2. Remove the margin in Firefox and Safari.
  250. */
  251. button,
  252. input,
  253. optgroup,
  254. select,
  255. textarea {
  256. font-family: sans-serif;
  257. /* 1 */
  258. font-size: 100%;
  259. /* 1 */
  260. line-height: 1.15;
  261. /* 1 */
  262. margin: 0;
  263. /* 2 */
  264. }
  265. /**
  266. * Show the overflow in IE.
  267. * 1. Show the overflow in Edge.
  268. */
  269. button,
  270. input {
  271. /* 1 */
  272. overflow: visible;
  273. }
  274. /**
  275. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  276. * 1. Remove the inheritance of text transform in Firefox.
  277. */
  278. button,
  279. select {
  280. /* 1 */
  281. text-transform: none;
  282. }
  283. /**
  284. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  285. * controls in Android 4.
  286. * 2. Correct the inability to style clickable types in iOS and Safari.
  287. */
  288. button,
  289. html [type="button"],
  290. [type="reset"],
  291. [type="submit"] {
  292. -webkit-appearance: button;
  293. /* 2 */
  294. }
  295. /**
  296. * Remove the inner border and padding in Firefox.
  297. */
  298. button::-moz-focus-inner,
  299. [type="button"]::-moz-focus-inner,
  300. [type="reset"]::-moz-focus-inner,
  301. [type="submit"]::-moz-focus-inner {
  302. border-style: none;
  303. padding: 0;
  304. }
  305. /**
  306. * Restore the focus styles unset by the previous rule.
  307. */
  308. button:-moz-focusring,
  309. [type="button"]:-moz-focusring,
  310. [type="reset"]:-moz-focusring,
  311. [type="submit"]:-moz-focusring {
  312. outline: 1px dotted ButtonText;
  313. }
  314. /**
  315. * Change the border, margin, and padding in all browsers (opinionated).
  316. */
  317. fieldset {
  318. border: 1px solid #c0c0c0;
  319. margin: 0 2px;
  320. padding: 0.35em 0.625em 0.75em;
  321. }
  322. /**
  323. * 1. Correct the text wrapping in Edge and IE.
  324. * 2. Correct the color inheritance from `fieldset` elements in IE.
  325. * 3. Remove the padding so developers are not caught out when they zero out
  326. * `fieldset` elements in all browsers.
  327. */
  328. legend {
  329. box-sizing: border-box;
  330. /* 1 */
  331. color: inherit;
  332. /* 2 */
  333. display: table;
  334. /* 1 */
  335. max-width: 100%;
  336. /* 1 */
  337. padding: 0;
  338. /* 3 */
  339. white-space: normal;
  340. /* 1 */
  341. }
  342. /**
  343. * 1. Add the correct display in IE 9-.
  344. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  345. */
  346. progress {
  347. display: inline-block;
  348. /* 1 */
  349. vertical-align: baseline;
  350. /* 2 */
  351. }
  352. /**
  353. * Remove the default vertical scrollbar in IE.
  354. */
  355. textarea {
  356. overflow: auto;
  357. }
  358. /**
  359. * 1. Add the correct box sizing in IE 10-.
  360. * 2. Remove the padding in IE 10-.
  361. */
  362. [type="checkbox"],
  363. [type="radio"] {
  364. box-sizing: border-box;
  365. /* 1 */
  366. padding: 0;
  367. /* 2 */
  368. }
  369. /**
  370. * Correct the cursor style of increment and decrement buttons in Chrome.
  371. */
  372. [type="number"]::-webkit-inner-spin-button,
  373. [type="number"]::-webkit-outer-spin-button {
  374. height: auto;
  375. }
  376. /**
  377. * 1. Correct the odd appearance in Chrome and Safari.
  378. * 2. Correct the outline style in Safari.
  379. */
  380. [type="search"] {
  381. -webkit-appearance: textfield;
  382. /* 1 */
  383. outline-offset: -2px;
  384. /* 2 */
  385. }
  386. /**
  387. * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  388. */
  389. [type="search"]::-webkit-search-cancel-button,
  390. [type="search"]::-webkit-search-decoration {
  391. -webkit-appearance: none;
  392. }
  393. /**
  394. * 1. Correct the inability to style clickable types in iOS and Safari.
  395. * 2. Change font properties to `inherit` in Safari.
  396. */
  397. ::-webkit-file-upload-button {
  398. -webkit-appearance: button;
  399. /* 1 */
  400. font: inherit;
  401. /* 2 */
  402. }
  403. /* Interactive
  404. ========================================================================== */
  405. /*
  406. * Add the correct display in IE 9-.
  407. * 1. Add the correct display in Edge, IE, and Firefox.
  408. */
  409. details,
  410. menu {
  411. display: block;
  412. }
  413. /*
  414. * Add the correct display in all browsers.
  415. */
  416. summary {
  417. display: list-item;
  418. }
  419. /* Scripting
  420. ========================================================================== */
  421. /**
  422. * Add the correct display in IE 9-.
  423. */
  424. canvas {
  425. display: inline-block;
  426. }
  427. /**
  428. * Add the correct display in IE.
  429. */
  430. template {
  431. display: none;
  432. }
  433. /* Hidden
  434. ========================================================================== */
  435. /**
  436. * Add the correct display in IE 10-.
  437. */
  438. [hidden] {
  439. display: none;
  440. }
  441. * {
  442. box-sizing: border-box;
  443. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  444. }
  445. *:before,
  446. *:after {
  447. box-sizing: border-box;
  448. }
  449. html,
  450. body {
  451. width: 100%;
  452. height: 100%;
  453. }
  454. body {
  455. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  456. font-size: 12px;
  457. line-height: 1.5;
  458. color: rgba(0, 0, 0, 0.65);
  459. background-color: #fff;
  460. }
  461. body,
  462. div,
  463. dl,
  464. dt,
  465. dd,
  466. ul,
  467. ol,
  468. li,
  469. h1,
  470. h2,
  471. h3,
  472. h4,
  473. h5,
  474. h6,
  475. pre,
  476. code,
  477. form,
  478. fieldset,
  479. legend,
  480. input,
  481. textarea,
  482. p,
  483. blockquote,
  484. th,
  485. td,
  486. hr,
  487. button,
  488. article,
  489. aside,
  490. details,
  491. figcaption,
  492. figure,
  493. footer,
  494. header,
  495. hgroup,
  496. menu,
  497. nav,
  498. section {
  499. margin: 0;
  500. padding: 0;
  501. }
  502. button,
  503. input,
  504. select,
  505. textarea {
  506. font-family: inherit;
  507. font-size: inherit;
  508. line-height: inherit;
  509. color: inherit;
  510. }
  511. ul,
  512. ol {
  513. list-style: none;
  514. }
  515. input::-ms-clear,
  516. input::-ms-reveal {
  517. display: none;
  518. }
  519. ::selection {
  520. background: #58a3ff;
  521. color: #fff;
  522. }
  523. a {
  524. color: #58a3ff;
  525. background: transparent;
  526. text-decoration: none;
  527. outline: none;
  528. cursor: pointer;
  529. transition: color .3s ease;
  530. }
  531. a:hover {
  532. color: #80b9ff;
  533. }
  534. a:active {
  535. color: #4386e7;
  536. }
  537. a:active,
  538. a:hover {
  539. outline: 0;
  540. text-decoration: none;
  541. }
  542. a[disabled] {
  543. color: rgba(0, 0, 0, 0.25);
  544. cursor: not-allowed;
  545. pointer-events: none;
  546. }
  547. .ant-divider {
  548. margin: 0 6px;
  549. display: inline-block;
  550. height: 8px;
  551. width: 1px;
  552. background: #ccc;
  553. }
  554. code,
  555. kbd,
  556. pre,
  557. samp {
  558. font-family: Consolas, Menlo, Courier, monospace;
  559. }
  560. .clearfix {
  561. zoom: 1;
  562. }
  563. .clearfix:before,
  564. .clearfix:after {
  565. content: " ";
  566. display: table;
  567. }
  568. .clearfix:after {
  569. clear: both;
  570. visibility: hidden;
  571. font-size: 0;
  572. height: 0;
  573. }
  574. @font-face {
  575. font-family: 'anticon';
  576. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot');
  577. /* IE9*/
  578. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot?#iefix') format('embedded-opentype'), /* chrome、firefox */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.woff') format('woff'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.ttf') format('truetype'), /* iOS 4.1- */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.svg#iconfont') format('svg');
  579. }
  580. .anticon {
  581. display: inline-block;
  582. font-style: normal;
  583. vertical-align: baseline;
  584. text-align: center;
  585. text-transform: none;
  586. line-height: 1;
  587. text-rendering: optimizeLegibility;
  588. -webkit-font-smoothing: antialiased;
  589. -moz-osx-font-smoothing: grayscale;
  590. }
  591. .anticon:before {
  592. display: block;
  593. font-family: "anticon" !important;
  594. }
  595. .anticon-step-forward:before {
  596. content: "\E600";
  597. }
  598. .anticon-step-backward:before {
  599. content: "\E601";
  600. }
  601. .anticon-forward:before {
  602. content: "\E602";
  603. }
  604. .anticon-backward:before {
  605. content: "\E603";
  606. }
  607. .anticon-caret-right:before {
  608. content: "\E604";
  609. }
  610. .anticon-caret-left:before {
  611. content: "\E605";
  612. }
  613. .anticon-caret-down:before {
  614. content: "\E606";
  615. }
  616. .anticon-caret-up:before {
  617. content: "\E607";
  618. }
  619. .anticon-right-circle:before {
  620. content: "\E608";
  621. }
  622. .anticon-circle-right:before {
  623. content: "\E608";
  624. }
  625. .anticon-caret-circle-right:before {
  626. content: "\E608";
  627. }
  628. .anticon-left-circle:before {
  629. content: "\E609";
  630. }
  631. .anticon-circle-left:before {
  632. content: "\E609";
  633. }
  634. .anticon-caret-circle-left:before {
  635. content: "\E609";
  636. }
  637. .anticon-up-circle:before {
  638. content: "\E60A";
  639. }
  640. .anticon-circle-up:before {
  641. content: "\E60A";
  642. }
  643. .anticon-caret-circle-up:before {
  644. content: "\E60A";
  645. }
  646. .anticon-down-circle:before {
  647. content: "\E60B";
  648. }
  649. .anticon-circle-down:before {
  650. content: "\E60B";
  651. }
  652. .anticon-caret-circle-down:before {
  653. content: "\E60B";
  654. }
  655. .anticon-right-circle-o:before {
  656. content: "\E60C";
  657. }
  658. .anticon-circle-o-right:before {
  659. content: "\E60C";
  660. }
  661. .anticon-caret-circle-o-right:before {
  662. content: "\E60C";
  663. }
  664. .anticon-left-circle-o:before {
  665. content: "\E60D";
  666. }
  667. .anticon-circle-o-left:before {
  668. content: "\E60D";
  669. }
  670. .anticon-caret-circle-o-left:before {
  671. content: "\E60D";
  672. }
  673. .anticon-up-circle-o:before {
  674. content: "\E60E";
  675. }
  676. .anticon-circle-o-up:before {
  677. content: "\E60E";
  678. }
  679. .anticon-caret-circle-o-up:before {
  680. content: "\E60E";
  681. }
  682. .anticon-down-circle-o:before {
  683. content: "\E60F";
  684. }
  685. .anticon-circle-o-down:before {
  686. content: "\E60F";
  687. }
  688. .anticon-caret-circle-o-down:before {
  689. content: "\E60F";
  690. }
  691. .anticon-verticle-left:before {
  692. content: "\E610";
  693. }
  694. .anticon-verticle-right:before {
  695. content: "\E611";
  696. }
  697. .anticon-rollback:before {
  698. content: "\E612";
  699. }
  700. .anticon-retweet:before {
  701. content: "\E613";
  702. }
  703. .anticon-shrink:before {
  704. content: "\E614";
  705. }
  706. .anticon-arrows-alt:before {
  707. content: "\E615";
  708. }
  709. .anticon-arrow-salt:before {
  710. content: "\E615";
  711. }
  712. .anticon-reload:before {
  713. content: "\E616";
  714. }
  715. .anticon-double-right:before {
  716. content: "\E617";
  717. }
  718. .anticon-double-left:before {
  719. content: "\E618";
  720. }
  721. .anticon-arrow-down:before {
  722. content: "\E619";
  723. }
  724. .anticon-arrow-up:before {
  725. content: "\E61A";
  726. }
  727. .anticon-arrow-right:before {
  728. content: "\E61B";
  729. }
  730. .anticon-arrow-left:before {
  731. content: "\E61C";
  732. }
  733. .anticon-down:before {
  734. content: "\E61D";
  735. }
  736. .anticon-up:before {
  737. content: "\E61E";
  738. }
  739. .anticon-right:before {
  740. content: "\E61F";
  741. }
  742. .anticon-left:before {
  743. content: "\E620";
  744. }
  745. .anticon-minus-square-o:before {
  746. content: "\E621";
  747. }
  748. .anticon-minus-circle:before {
  749. content: "\E622";
  750. }
  751. .anticon-minus-circle-o:before {
  752. content: "\E623";
  753. }
  754. .anticon-minus:before {
  755. content: "\E624";
  756. }
  757. .anticon-plus-circle-o:before {
  758. content: "\E625";
  759. }
  760. .anticon-plus-circle:before {
  761. content: "\E626";
  762. }
  763. .anticon-plus:before {
  764. content: "\E627";
  765. }
  766. .anticon-info-circle:before {
  767. content: "\E628";
  768. }
  769. .anticon-info-circle-o:before {
  770. content: "\E629";
  771. }
  772. .anticon-info:before {
  773. content: "\E62A";
  774. }
  775. .anticon-exclamation:before {
  776. content: "\E62B";
  777. }
  778. .anticon-exclamation-circle:before {
  779. content: "\E62C";
  780. }
  781. .anticon-exclamation-circle-o:before {
  782. content: "\E62D";
  783. }
  784. .anticon-close-circle:before {
  785. content: "\E62E";
  786. }
  787. .anticon-cross-circle:before {
  788. content: "\E62E";
  789. }
  790. .anticon-close-circle-o:before {
  791. content: "\E62F";
  792. }
  793. .anticon-cross-circle-o:before {
  794. content: "\E62F";
  795. }
  796. .anticon-check-circle:before {
  797. content: "\E630";
  798. }
  799. .anticon-check-circle-o:before {
  800. content: "\E631";
  801. }
  802. .anticon-check:before {
  803. content: "\E632";
  804. }
  805. .anticon-close:before {
  806. content: "\E633";
  807. }
  808. .anticon-cross:before {
  809. content: "\E633";
  810. }
  811. .anticon-customer-service:before {
  812. content: "\E634";
  813. }
  814. .anticon-customerservice:before {
  815. content: "\E634";
  816. }
  817. .anticon-credit-card:before {
  818. content: "\E635";
  819. }
  820. .anticon-code-o:before {
  821. content: "\E636";
  822. }
  823. .anticon-book:before {
  824. content: "\E637";
  825. }
  826. .anticon-bar-chart:before {
  827. content: "\E638";
  828. }
  829. .anticon-bars:before {
  830. content: "\E639";
  831. }
  832. .anticon-question:before {
  833. content: "\E63A";
  834. }
  835. .anticon-question-circle:before {
  836. content: "\E63B";
  837. }
  838. .anticon-question-circle-o:before {
  839. content: "\E63C";
  840. }
  841. .anticon-pause:before {
  842. content: "\E63D";
  843. }
  844. .anticon-pause-circle:before {
  845. content: "\E63E";
  846. }
  847. .anticon-pause-circle-o:before {
  848. content: "\E63F";
  849. }
  850. .anticon-clock-circle:before {
  851. content: "\E640";
  852. }
  853. .anticon-clock-circle-o:before {
  854. content: "\E641";
  855. }
  856. .anticon-swap:before {
  857. content: "\E642";
  858. }
  859. .anticon-swap-left:before {
  860. content: "\E643";
  861. }
  862. .anticon-swap-right:before {
  863. content: "\E644";
  864. }
  865. .anticon-plus-square-o:before {
  866. content: "\E645";
  867. }
  868. .anticon-frown:before {
  869. content: "\E646";
  870. }
  871. .anticon-frown-circle:before {
  872. content: "\E646";
  873. }
  874. .anticon-ellipsis:before {
  875. content: "\E647";
  876. }
  877. .anticon-copy:before {
  878. content: "\E648";
  879. }
  880. .anticon-menu-fold:before {
  881. content: "\E658";
  882. }
  883. .anticon-mail:before {
  884. content: "\E659";
  885. }
  886. .anticon-logout:before {
  887. content: "\E65A";
  888. }
  889. .anticon-link:before {
  890. content: "\E65B";
  891. }
  892. .anticon-area-chart:before {
  893. content: "\E65C";
  894. }
  895. .anticon-line-chart:before {
  896. content: "\E65D";
  897. }
  898. .anticon-home:before {
  899. content: "\E65E";
  900. }
  901. .anticon-laptop:before {
  902. content: "\E65F";
  903. }
  904. .anticon-star:before {
  905. content: "\E660";
  906. }
  907. .anticon-star-o:before {
  908. content: "\E661";
  909. }
  910. .anticon-folder:before {
  911. content: "\E662";
  912. }
  913. .anticon-filter:before {
  914. content: "\E663";
  915. }
  916. .anticon-file:before {
  917. content: "\E664";
  918. }
  919. .anticon-exception:before {
  920. content: "\E665";
  921. }
  922. .anticon-meh:before {
  923. content: "\E666";
  924. }
  925. .anticon-meh-circle:before {
  926. content: "\E666";
  927. }
  928. .anticon-meh-o:before {
  929. content: "\E667";
  930. }
  931. .anticon-shopping-cart:before {
  932. content: "\E668";
  933. }
  934. .anticon-save:before {
  935. content: "\E669";
  936. }
  937. .anticon-user:before {
  938. content: "\E66A";
  939. }
  940. .anticon-video-camera:before {
  941. content: "\E66B";
  942. }
  943. .anticon-to-top:before {
  944. content: "\E66C";
  945. }
  946. .anticon-team:before {
  947. content: "\E66D";
  948. }
  949. .anticon-tablet:before {
  950. content: "\E66E";
  951. }
  952. .anticon-solution:before {
  953. content: "\E66F";
  954. }
  955. .anticon-search:before {
  956. content: "\E670";
  957. }
  958. .anticon-share-alt:before {
  959. content: "\E671";
  960. }
  961. .anticon-setting:before {
  962. content: "\E672";
  963. }
  964. .anticon-poweroff:before {
  965. content: "\E6D5";
  966. }
  967. .anticon-picture:before {
  968. content: "\E674";
  969. }
  970. .anticon-phone:before {
  971. content: "\E675";
  972. }
  973. .anticon-paper-clip:before {
  974. content: "\E676";
  975. }
  976. .anticon-notification:before {
  977. content: "\E677";
  978. }
  979. .anticon-mobile:before {
  980. content: "\E678";
  981. }
  982. .anticon-menu-unfold:before {
  983. content: "\E679";
  984. }
  985. .anticon-inbox:before {
  986. content: "\E67A";
  987. }
  988. .anticon-lock:before {
  989. content: "\E67B";
  990. }
  991. .anticon-qrcode:before {
  992. content: "\E67C";
  993. }
  994. .anticon-play-circle:before {
  995. content: "\E6D0";
  996. }
  997. .anticon-play-circle-o:before {
  998. content: "\E6D1";
  999. }
  1000. .anticon-tag:before {
  1001. content: "\E6D2";
  1002. }
  1003. .anticon-tag-o:before {
  1004. content: "\E6D3";
  1005. }
  1006. .anticon-tags:before {
  1007. content: "\E67D";
  1008. }
  1009. .anticon-tags-o:before {
  1010. content: "\E67E";
  1011. }
  1012. .anticon-cloud-o:before {
  1013. content: "\E67F";
  1014. }
  1015. .anticon-cloud:before {
  1016. content: "\E680";
  1017. }
  1018. .anticon-cloud-upload:before {
  1019. content: "\E681";
  1020. }
  1021. .anticon-cloud-download:before {
  1022. content: "\E682";
  1023. }
  1024. .anticon-cloud-download-o:before {
  1025. content: "\E683";
  1026. }
  1027. .anticon-cloud-upload-o:before {
  1028. content: "\E684";
  1029. }
  1030. .anticon-environment:before {
  1031. content: "\E685";
  1032. }
  1033. .anticon-environment-o:before {
  1034. content: "\E686";
  1035. }
  1036. .anticon-eye:before {
  1037. content: "\E687";
  1038. }
  1039. .anticon-eye-o:before {
  1040. content: "\E688";
  1041. }
  1042. .anticon-camera:before {
  1043. content: "\E689";
  1044. }
  1045. .anticon-camera-o:before {
  1046. content: "\E68A";
  1047. }
  1048. .anticon-windows:before {
  1049. content: "\E68B";
  1050. }
  1051. .anticon-apple:before {
  1052. content: "\E68C";
  1053. }
  1054. .anticon-apple-o:before {
  1055. content: "\E6D4";
  1056. }
  1057. .anticon-android:before {
  1058. content: "\E68D";
  1059. }
  1060. .anticon-aliwangwang:before {
  1061. content: "\E68E";
  1062. }
  1063. .anticon-aliwangwang-o:before {
  1064. content: "\E68F";
  1065. }
  1066. .anticon-export:before {
  1067. content: "\E691";
  1068. }
  1069. .anticon-edit:before {
  1070. content: "\E692";
  1071. }
  1072. .anticon-circle-down-o:before {
  1073. content: "\E693";
  1074. }
  1075. .anticon-circle-down-:before {
  1076. content: "\E694";
  1077. }
  1078. .anticon-appstore-o:before {
  1079. content: "\E695";
  1080. }
  1081. .anticon-appstore:before {
  1082. content: "\E696";
  1083. }
  1084. .anticon-scan:before {
  1085. content: "\E697";
  1086. }
  1087. .anticon-file-text:before {
  1088. content: "\E698";
  1089. }
  1090. .anticon-folder-open:before {
  1091. content: "\E699";
  1092. }
  1093. .anticon-hdd:before {
  1094. content: "\E69A";
  1095. }
  1096. .anticon-ie:before {
  1097. content: "\E69B";
  1098. }
  1099. .anticon-file-jpg:before {
  1100. content: "\E69C";
  1101. }
  1102. .anticon-like:before {
  1103. content: "\E64C";
  1104. }
  1105. .anticon-like-o:before {
  1106. content: "\E69D";
  1107. }
  1108. .anticon-dislike:before {
  1109. content: "\E64B";
  1110. }
  1111. .anticon-dislike-o:before {
  1112. content: "\E69E";
  1113. }
  1114. .anticon-delete:before {
  1115. content: "\E69F";
  1116. }
  1117. .anticon-enter:before {
  1118. content: "\E6A0";
  1119. }
  1120. .anticon-pushpin-o:before {
  1121. content: "\E6A1";
  1122. }
  1123. .anticon-pushpin:before {
  1124. content: "\E6A2";
  1125. }
  1126. .anticon-heart:before {
  1127. content: "\E6A3";
  1128. }
  1129. .anticon-heart-o:before {
  1130. content: "\E6A4";
  1131. }
  1132. .anticon-pay-circle:before {
  1133. content: "\E6A5";
  1134. }
  1135. .anticon-pay-circle-o:before {
  1136. content: "\E6A6";
  1137. }
  1138. .anticon-smile:before {
  1139. content: "\E6A7";
  1140. }
  1141. .anticon-smile-circle:before {
  1142. content: "\E6A7";
  1143. }
  1144. .anticon-smile-o:before {
  1145. content: "\E6A8";
  1146. }
  1147. .anticon-frown-o:before {
  1148. content: "\E6A9";
  1149. }
  1150. .anticon-calculator:before {
  1151. content: "\E6AA";
  1152. }
  1153. .anticon-message:before {
  1154. content: "\E6AB";
  1155. }
  1156. .anticon-chrome:before {
  1157. content: "\E6AC";
  1158. }
  1159. .anticon-github:before {
  1160. content: "\E6AD";
  1161. }
  1162. .anticon-file-unknown:before {
  1163. content: "\E6AF";
  1164. }
  1165. .anticon-file-excel:before {
  1166. content: "\E6B0";
  1167. }
  1168. .anticon-file-ppt:before {
  1169. content: "\E6B1";
  1170. }
  1171. .anticon-file-word:before {
  1172. content: "\E6B2";
  1173. }
  1174. .anticon-file-pdf:before {
  1175. content: "\E6B3";
  1176. }
  1177. .anticon-desktop:before {
  1178. content: "\E6B4";
  1179. }
  1180. .anticon-upload:before {
  1181. content: "\E6B6";
  1182. }
  1183. .anticon-download:before {
  1184. content: "\E6B7";
  1185. }
  1186. .anticon-pie-chart:before {
  1187. content: "\E6B8";
  1188. }
  1189. .anticon-unlock:before {
  1190. content: "\E6BA";
  1191. }
  1192. .anticon-calendar:before {
  1193. content: "\E6BB";
  1194. }
  1195. .anticon-windows-o:before {
  1196. content: "\E6BC";
  1197. }
  1198. .anticon-dot-chart:before {
  1199. content: "\E6BD";
  1200. }
  1201. .anticon-bar-chart:before {
  1202. content: "\E6BE";
  1203. }
  1204. .anticon-code:before {
  1205. content: "\E6BF";
  1206. }
  1207. .anticon-plus-square:before {
  1208. content: "\E6C0";
  1209. }
  1210. .anticon-minus-square:before {
  1211. content: "\E6C1";
  1212. }
  1213. .anticon-close-square:before {
  1214. content: "\E6C2";
  1215. }
  1216. .anticon-close-square-o:before {
  1217. content: "\E6C3";
  1218. }
  1219. .anticon-check-square:before {
  1220. content: "\E6C4";
  1221. }
  1222. .anticon-check-square-o:before {
  1223. content: "\E6C5";
  1224. }
  1225. .anticon-fast-backward:before {
  1226. content: "\E6C6";
  1227. }
  1228. .anticon-fast-forward:before {
  1229. content: "\E6C7";
  1230. }
  1231. .anticon-up-square:before {
  1232. content: "\E6C8";
  1233. }
  1234. .anticon-down-square:before {
  1235. content: "\E6C9";
  1236. }
  1237. .anticon-left-square:before {
  1238. content: "\E6CA";
  1239. }
  1240. .anticon-right-square:before {
  1241. content: "\E6CB";
  1242. }
  1243. .anticon-right-square-o:before {
  1244. content: "\E6CC";
  1245. }
  1246. .anticon-left-square-o:before {
  1247. content: "\E6CD";
  1248. }
  1249. .anticon-down-square-o:before {
  1250. content: "\E6CE";
  1251. }
  1252. .anticon-up-square-o:before {
  1253. content: "\E6CF";
  1254. }
  1255. .anticon-loading:before {
  1256. content: "\E64D";
  1257. }
  1258. .anticon-loading-3-quarters:before {
  1259. content: "\E6AE";
  1260. }
  1261. .anticon-bulb:before {
  1262. content: "\E649";
  1263. }
  1264. .anticon-select:before {
  1265. content: "\E64A";
  1266. }
  1267. .anticon-addfile:before,
  1268. .anticon-file-add:before {
  1269. content: "\E910";
  1270. }
  1271. .anticon-addfolder:before,
  1272. .anticon-folder-add:before {
  1273. content: "\E914";
  1274. }
  1275. .anticon-switcher:before {
  1276. content: "\E913";
  1277. }
  1278. .anticon-rocket:before {
  1279. content: "\E90F";
  1280. }
  1281. .anticon-dingding:before {
  1282. content: "\E923";
  1283. }
  1284. .anticon-dingding-o:before {
  1285. content: "\E925";
  1286. }
  1287. .anticon-spin:before {
  1288. display: inline-block;
  1289. animation: loadingCircle 1s infinite linear;
  1290. }
  1291. .fade-enter,
  1292. .fade-appear {
  1293. animation-duration: 0.2s;
  1294. animation-fill-mode: both;
  1295. animation-play-state: paused;
  1296. }
  1297. .fade-leave {
  1298. animation-duration: 0.2s;
  1299. animation-fill-mode: both;
  1300. animation-play-state: paused;
  1301. }
  1302. .fade-enter.fade-enter-active,
  1303. .fade-appear.fade-appear-active {
  1304. animation-name: antFadeIn;
  1305. animation-play-state: running;
  1306. }
  1307. .fade-leave.fade-leave-active {
  1308. animation-name: antFadeOut;
  1309. animation-play-state: running;
  1310. }
  1311. .fade-enter,
  1312. .fade-appear {
  1313. opacity: 0;
  1314. animation-timing-function: linear;
  1315. }
  1316. .fade-leave {
  1317. animation-timing-function: linear;
  1318. }
  1319. @keyframes antFadeIn {
  1320. 0% {
  1321. opacity: 0;
  1322. }
  1323. 100% {
  1324. opacity: 1;
  1325. }
  1326. }
  1327. @keyframes antFadeOut {
  1328. 0% {
  1329. opacity: 1;
  1330. }
  1331. 100% {
  1332. opacity: 0;
  1333. }
  1334. }
  1335. .move-up-enter,
  1336. .move-up-appear {
  1337. animation-duration: 0.2s;
  1338. animation-fill-mode: both;
  1339. animation-play-state: paused;
  1340. }
  1341. .move-up-leave {
  1342. animation-duration: 0.2s;
  1343. animation-fill-mode: both;
  1344. animation-play-state: paused;
  1345. }
  1346. .move-up-enter.move-up-enter-active,
  1347. .move-up-appear.move-up-appear-active {
  1348. animation-name: antMoveUpIn;
  1349. animation-play-state: running;
  1350. }
  1351. .move-up-leave.move-up-leave-active {
  1352. animation-name: antMoveUpOut;
  1353. animation-play-state: running;
  1354. }
  1355. .move-up-enter,
  1356. .move-up-appear {
  1357. opacity: 0;
  1358. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1359. }
  1360. .move-up-leave {
  1361. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1362. }
  1363. .move-down-enter,
  1364. .move-down-appear {
  1365. animation-duration: 0.2s;
  1366. animation-fill-mode: both;
  1367. animation-play-state: paused;
  1368. }
  1369. .move-down-leave {
  1370. animation-duration: 0.2s;
  1371. animation-fill-mode: both;
  1372. animation-play-state: paused;
  1373. }
  1374. .move-down-enter.move-down-enter-active,
  1375. .move-down-appear.move-down-appear-active {
  1376. animation-name: antMoveDownIn;
  1377. animation-play-state: running;
  1378. }
  1379. .move-down-leave.move-down-leave-active {
  1380. animation-name: antMoveDownOut;
  1381. animation-play-state: running;
  1382. }
  1383. .move-down-enter,
  1384. .move-down-appear {
  1385. opacity: 0;
  1386. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1387. }
  1388. .move-down-leave {
  1389. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1390. }
  1391. .move-left-enter,
  1392. .move-left-appear {
  1393. animation-duration: 0.2s;
  1394. animation-fill-mode: both;
  1395. animation-play-state: paused;
  1396. }
  1397. .move-left-leave {
  1398. animation-duration: 0.2s;
  1399. animation-fill-mode: both;
  1400. animation-play-state: paused;
  1401. }
  1402. .move-left-enter.move-left-enter-active,
  1403. .move-left-appear.move-left-appear-active {
  1404. animation-name: antMoveLeftIn;
  1405. animation-play-state: running;
  1406. }
  1407. .move-left-leave.move-left-leave-active {
  1408. animation-name: antMoveLeftOut;
  1409. animation-play-state: running;
  1410. }
  1411. .move-left-enter,
  1412. .move-left-appear {
  1413. opacity: 0;
  1414. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1415. }
  1416. .move-left-leave {
  1417. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1418. }
  1419. .move-right-enter,
  1420. .move-right-appear {
  1421. animation-duration: 0.2s;
  1422. animation-fill-mode: both;
  1423. animation-play-state: paused;
  1424. }
  1425. .move-right-leave {
  1426. animation-duration: 0.2s;
  1427. animation-fill-mode: both;
  1428. animation-play-state: paused;
  1429. }
  1430. .move-right-enter.move-right-enter-active,
  1431. .move-right-appear.move-right-appear-active {
  1432. animation-name: antMoveRightIn;
  1433. animation-play-state: running;
  1434. }
  1435. .move-right-leave.move-right-leave-active {
  1436. animation-name: antMoveRightOut;
  1437. animation-play-state: running;
  1438. }
  1439. .move-right-enter,
  1440. .move-right-appear {
  1441. opacity: 0;
  1442. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1443. }
  1444. .move-right-leave {
  1445. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1446. }
  1447. @keyframes antMoveDownIn {
  1448. 0% {
  1449. transform-origin: 0 0;
  1450. transform: translateY(100%);
  1451. opacity: 0;
  1452. }
  1453. 100% {
  1454. transform-origin: 0 0;
  1455. transform: translateY(0%);
  1456. opacity: 1;
  1457. }
  1458. }
  1459. @keyframes antMoveDownOut {
  1460. 0% {
  1461. transform-origin: 0 0;
  1462. transform: translateY(0%);
  1463. opacity: 1;
  1464. }
  1465. 100% {
  1466. transform-origin: 0 0;
  1467. transform: translateY(100%);
  1468. opacity: 0;
  1469. }
  1470. }
  1471. @keyframes antMoveLeftIn {
  1472. 0% {
  1473. transform-origin: 0 0;
  1474. transform: translateX(-100%);
  1475. opacity: 0;
  1476. }
  1477. 100% {
  1478. transform-origin: 0 0;
  1479. transform: translateX(0%);
  1480. opacity: 1;
  1481. }
  1482. }
  1483. @keyframes antMoveLeftOut {
  1484. 0% {
  1485. transform-origin: 0 0;
  1486. transform: translateX(0%);
  1487. opacity: 1;
  1488. }
  1489. 100% {
  1490. transform-origin: 0 0;
  1491. transform: translateX(-100%);
  1492. opacity: 0;
  1493. }
  1494. }
  1495. @keyframes antMoveRightIn {
  1496. 0% {
  1497. opacity: 0;
  1498. transform-origin: 0 0;
  1499. transform: translateX(100%);
  1500. }
  1501. 100% {
  1502. opacity: 1;
  1503. transform-origin: 0 0;
  1504. transform: translateX(0%);
  1505. }
  1506. }
  1507. @keyframes antMoveRightOut {
  1508. 0% {
  1509. transform-origin: 0 0;
  1510. transform: translateX(0%);
  1511. opacity: 1;
  1512. }
  1513. 100% {
  1514. transform-origin: 0 0;
  1515. transform: translateX(100%);
  1516. opacity: 0;
  1517. }
  1518. }
  1519. @keyframes antMoveUpIn {
  1520. 0% {
  1521. transform-origin: 0 0;
  1522. transform: translateY(-100%);
  1523. opacity: 0;
  1524. }
  1525. 100% {
  1526. transform-origin: 0 0;
  1527. transform: translateY(0%);
  1528. opacity: 1;
  1529. }
  1530. }
  1531. @keyframes antMoveUpOut {
  1532. 0% {
  1533. transform-origin: 0 0;
  1534. transform: translateY(0%);
  1535. opacity: 1;
  1536. }
  1537. 100% {
  1538. transform-origin: 0 0;
  1539. transform: translateY(-100%);
  1540. opacity: 0;
  1541. }
  1542. }
  1543. @keyframes loadingCircle {
  1544. 0% {
  1545. transform-origin: 50% 50%;
  1546. transform: rotate(0deg);
  1547. }
  1548. 100% {
  1549. transform-origin: 50% 50%;
  1550. transform: rotate(360deg);
  1551. }
  1552. }
  1553. .slide-up-enter,
  1554. .slide-up-appear {
  1555. animation-duration: 0.2s;
  1556. animation-fill-mode: both;
  1557. animation-play-state: paused;
  1558. }
  1559. .slide-up-leave {
  1560. animation-duration: 0.2s;
  1561. animation-fill-mode: both;
  1562. animation-play-state: paused;
  1563. }
  1564. .slide-up-enter.slide-up-enter-active,
  1565. .slide-up-appear.slide-up-appear-active {
  1566. animation-name: antSlideUpIn;
  1567. animation-play-state: running;
  1568. }
  1569. .slide-up-leave.slide-up-leave-active {
  1570. animation-name: antSlideUpOut;
  1571. animation-play-state: running;
  1572. }
  1573. .slide-up-enter,
  1574. .slide-up-appear {
  1575. opacity: 0;
  1576. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1577. }
  1578. .slide-up-leave {
  1579. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1580. }
  1581. .slide-down-enter,
  1582. .slide-down-appear {
  1583. animation-duration: 0.2s;
  1584. animation-fill-mode: both;
  1585. animation-play-state: paused;
  1586. }
  1587. .slide-down-leave {
  1588. animation-duration: 0.2s;
  1589. animation-fill-mode: both;
  1590. animation-play-state: paused;
  1591. }
  1592. .slide-down-enter.slide-down-enter-active,
  1593. .slide-down-appear.slide-down-appear-active {
  1594. animation-name: antSlideDownIn;
  1595. animation-play-state: running;
  1596. }
  1597. .slide-down-leave.slide-down-leave-active {
  1598. animation-name: antSlideDownOut;
  1599. animation-play-state: running;
  1600. }
  1601. .slide-down-enter,
  1602. .slide-down-appear {
  1603. opacity: 0;
  1604. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1605. }
  1606. .slide-down-leave {
  1607. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1608. }
  1609. .slide-left-enter,
  1610. .slide-left-appear {
  1611. animation-duration: 0.2s;
  1612. animation-fill-mode: both;
  1613. animation-play-state: paused;
  1614. }
  1615. .slide-left-leave {
  1616. animation-duration: 0.2s;
  1617. animation-fill-mode: both;
  1618. animation-play-state: paused;
  1619. }
  1620. .slide-left-enter.slide-left-enter-active,
  1621. .slide-left-appear.slide-left-appear-active {
  1622. animation-name: antSlideLeftIn;
  1623. animation-play-state: running;
  1624. }
  1625. .slide-left-leave.slide-left-leave-active {
  1626. animation-name: antSlideLeftOut;
  1627. animation-play-state: running;
  1628. }
  1629. .slide-left-enter,
  1630. .slide-left-appear {
  1631. opacity: 0;
  1632. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1633. }
  1634. .slide-left-leave {
  1635. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1636. }
  1637. .slide-right-enter,
  1638. .slide-right-appear {
  1639. animation-duration: 0.2s;
  1640. animation-fill-mode: both;
  1641. animation-play-state: paused;
  1642. }
  1643. .slide-right-leave {
  1644. animation-duration: 0.2s;
  1645. animation-fill-mode: both;
  1646. animation-play-state: paused;
  1647. }
  1648. .slide-right-enter.slide-right-enter-active,
  1649. .slide-right-appear.slide-right-appear-active {
  1650. animation-name: antSlideRightIn;
  1651. animation-play-state: running;
  1652. }
  1653. .slide-right-leave.slide-right-leave-active {
  1654. animation-name: antSlideRightOut;
  1655. animation-play-state: running;
  1656. }
  1657. .slide-right-enter,
  1658. .slide-right-appear {
  1659. opacity: 0;
  1660. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1661. }
  1662. .slide-right-leave {
  1663. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1664. }
  1665. @keyframes antSlideUpIn {
  1666. 0% {
  1667. opacity: 0;
  1668. transform-origin: 0% 0%;
  1669. transform: scaleY(0.8);
  1670. }
  1671. 100% {
  1672. opacity: 1;
  1673. transform-origin: 0% 0%;
  1674. transform: scaleY(1);
  1675. }
  1676. }
  1677. @keyframes antSlideUpOut {
  1678. 0% {
  1679. opacity: 1;
  1680. transform-origin: 0% 0%;
  1681. transform: scaleY(1);
  1682. }
  1683. 100% {
  1684. opacity: 0;
  1685. transform-origin: 0% 0%;
  1686. transform: scaleY(0.8);
  1687. }
  1688. }
  1689. @keyframes antSlideDownIn {
  1690. 0% {
  1691. opacity: 0;
  1692. transform-origin: 100% 100%;
  1693. transform: scaleY(0.8);
  1694. }
  1695. 100% {
  1696. opacity: 1;
  1697. transform-origin: 100% 100%;
  1698. transform: scaleY(1);
  1699. }
  1700. }
  1701. @keyframes antSlideDownOut {
  1702. 0% {
  1703. opacity: 1;
  1704. transform-origin: 100% 100%;
  1705. transform: scaleY(1);
  1706. }
  1707. 100% {
  1708. opacity: 0;
  1709. transform-origin: 100% 100%;
  1710. transform: scaleY(0.8);
  1711. }
  1712. }
  1713. @keyframes antSlideLeftIn {
  1714. 0% {
  1715. opacity: 0;
  1716. transform-origin: 0% 0%;
  1717. transform: scaleX(0.8);
  1718. }
  1719. 100% {
  1720. opacity: 1;
  1721. transform-origin: 0% 0%;
  1722. transform: scaleX(1);
  1723. }
  1724. }
  1725. @keyframes antSlideLeftOut {
  1726. 0% {
  1727. opacity: 1;
  1728. transform-origin: 0% 0%;
  1729. transform: scaleX(1);
  1730. }
  1731. 100% {
  1732. opacity: 0;
  1733. transform-origin: 0% 0%;
  1734. transform: scaleX(0.8);
  1735. }
  1736. }
  1737. @keyframes antSlideRightIn {
  1738. 0% {
  1739. opacity: 0;
  1740. transform-origin: 100% 0%;
  1741. transform: scaleX(0.8);
  1742. }
  1743. 100% {
  1744. opacity: 1;
  1745. transform-origin: 100% 0%;
  1746. transform: scaleX(1);
  1747. }
  1748. }
  1749. @keyframes antSlideRightOut {
  1750. 0% {
  1751. opacity: 1;
  1752. transform-origin: 100% 0%;
  1753. transform: scaleX(1);
  1754. }
  1755. 100% {
  1756. opacity: 0;
  1757. transform-origin: 100% 0%;
  1758. transform: scaleX(0.8);
  1759. }
  1760. }
  1761. .swing-enter,
  1762. .swing-appear {
  1763. animation-duration: 0.2s;
  1764. animation-fill-mode: both;
  1765. animation-play-state: paused;
  1766. }
  1767. .swing-enter.swing-enter-active,
  1768. .swing-appear.swing-appear-active {
  1769. animation-name: antSwingIn;
  1770. animation-play-state: running;
  1771. }
  1772. @keyframes antSwingIn {
  1773. 0%,
  1774. 100% {
  1775. transform: translateX(0);
  1776. }
  1777. 20% {
  1778. transform: translateX(-10px);
  1779. }
  1780. 40% {
  1781. transform: translateX(10px);
  1782. }
  1783. 60% {
  1784. transform: translateX(-5px);
  1785. }
  1786. 80% {
  1787. transform: translateX(5px);
  1788. }
  1789. }
  1790. .zoom-enter,
  1791. .zoom-appear {
  1792. animation-duration: 0.2s;
  1793. animation-fill-mode: both;
  1794. animation-play-state: paused;
  1795. }
  1796. .zoom-leave {
  1797. animation-duration: 0.2s;
  1798. animation-fill-mode: both;
  1799. animation-play-state: paused;
  1800. }
  1801. .zoom-enter.zoom-enter-active,
  1802. .zoom-appear.zoom-appear-active {
  1803. animation-name: antZoomIn;
  1804. animation-play-state: running;
  1805. }
  1806. .zoom-leave.zoom-leave-active {
  1807. animation-name: antZoomOut;
  1808. animation-play-state: running;
  1809. }
  1810. .zoom-enter,
  1811. .zoom-appear {
  1812. transform: scale(0);
  1813. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1814. }
  1815. .zoom-leave {
  1816. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1817. }
  1818. .zoom-big-enter,
  1819. .zoom-big-appear {
  1820. animation-duration: 0.2s;
  1821. animation-fill-mode: both;
  1822. animation-play-state: paused;
  1823. }
  1824. .zoom-big-leave {
  1825. animation-duration: 0.2s;
  1826. animation-fill-mode: both;
  1827. animation-play-state: paused;
  1828. }
  1829. .zoom-big-enter.zoom-big-enter-active,
  1830. .zoom-big-appear.zoom-big-appear-active {
  1831. animation-name: antZoomBigIn;
  1832. animation-play-state: running;
  1833. }
  1834. .zoom-big-leave.zoom-big-leave-active {
  1835. animation-name: antZoomBigOut;
  1836. animation-play-state: running;
  1837. }
  1838. .zoom-big-enter,
  1839. .zoom-big-appear {
  1840. transform: scale(0);
  1841. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1842. }
  1843. .zoom-big-leave {
  1844. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1845. }
  1846. .zoom-big-fast-enter,
  1847. .zoom-big-fast-appear {
  1848. animation-duration: 0.1s;
  1849. animation-fill-mode: both;
  1850. animation-play-state: paused;
  1851. }
  1852. .zoom-big-fast-leave {
  1853. animation-duration: 0.1s;
  1854. animation-fill-mode: both;
  1855. animation-play-state: paused;
  1856. }
  1857. .zoom-big-fast-enter.zoom-big-fast-enter-active,
  1858. .zoom-big-fast-appear.zoom-big-fast-appear-active {
  1859. animation-name: antZoomBigIn;
  1860. animation-play-state: running;
  1861. }
  1862. .zoom-big-fast-leave.zoom-big-fast-leave-active {
  1863. animation-name: antZoomBigOut;
  1864. animation-play-state: running;
  1865. }
  1866. .zoom-big-fast-enter,
  1867. .zoom-big-fast-appear {
  1868. transform: scale(0);
  1869. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1870. }
  1871. .zoom-big-fast-leave {
  1872. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1873. }
  1874. .zoom-up-enter,
  1875. .zoom-up-appear {
  1876. animation-duration: 0.2s;
  1877. animation-fill-mode: both;
  1878. animation-play-state: paused;
  1879. }
  1880. .zoom-up-leave {
  1881. animation-duration: 0.2s;
  1882. animation-fill-mode: both;
  1883. animation-play-state: paused;
  1884. }
  1885. .zoom-up-enter.zoom-up-enter-active,
  1886. .zoom-up-appear.zoom-up-appear-active {
  1887. animation-name: antZoomUpIn;
  1888. animation-play-state: running;
  1889. }
  1890. .zoom-up-leave.zoom-up-leave-active {
  1891. animation-name: antZoomUpOut;
  1892. animation-play-state: running;
  1893. }
  1894. .zoom-up-enter,
  1895. .zoom-up-appear {
  1896. transform: scale(0);
  1897. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1898. }
  1899. .zoom-up-leave {
  1900. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1901. }
  1902. .zoom-down-enter,
  1903. .zoom-down-appear {
  1904. animation-duration: 0.2s;
  1905. animation-fill-mode: both;
  1906. animation-play-state: paused;
  1907. }
  1908. .zoom-down-leave {
  1909. animation-duration: 0.2s;
  1910. animation-fill-mode: both;
  1911. animation-play-state: paused;
  1912. }
  1913. .zoom-down-enter.zoom-down-enter-active,
  1914. .zoom-down-appear.zoom-down-appear-active {
  1915. animation-name: antZoomDownIn;
  1916. animation-play-state: running;
  1917. }
  1918. .zoom-down-leave.zoom-down-leave-active {
  1919. animation-name: antZoomDownOut;
  1920. animation-play-state: running;
  1921. }
  1922. .zoom-down-enter,
  1923. .zoom-down-appear {
  1924. transform: scale(0);
  1925. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1926. }
  1927. .zoom-down-leave {
  1928. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1929. }
  1930. .zoom-left-enter,
  1931. .zoom-left-appear {
  1932. animation-duration: 0.2s;
  1933. animation-fill-mode: both;
  1934. animation-play-state: paused;
  1935. }
  1936. .zoom-left-leave {
  1937. animation-duration: 0.2s;
  1938. animation-fill-mode: both;
  1939. animation-play-state: paused;
  1940. }
  1941. .zoom-left-enter.zoom-left-enter-active,
  1942. .zoom-left-appear.zoom-left-appear-active {
  1943. animation-name: antZoomLeftIn;
  1944. animation-play-state: running;
  1945. }
  1946. .zoom-left-leave.zoom-left-leave-active {
  1947. animation-name: antZoomLeftOut;
  1948. animation-play-state: running;
  1949. }
  1950. .zoom-left-enter,
  1951. .zoom-left-appear {
  1952. transform: scale(0);
  1953. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1954. }
  1955. .zoom-left-leave {
  1956. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1957. }
  1958. .zoom-right-enter,
  1959. .zoom-right-appear {
  1960. animation-duration: 0.2s;
  1961. animation-fill-mode: both;
  1962. animation-play-state: paused;
  1963. }
  1964. .zoom-right-leave {
  1965. animation-duration: 0.2s;
  1966. animation-fill-mode: both;
  1967. animation-play-state: paused;
  1968. }
  1969. .zoom-right-enter.zoom-right-enter-active,
  1970. .zoom-right-appear.zoom-right-appear-active {
  1971. animation-name: antZoomRightIn;
  1972. animation-play-state: running;
  1973. }
  1974. .zoom-right-leave.zoom-right-leave-active {
  1975. animation-name: antZoomRightOut;
  1976. animation-play-state: running;
  1977. }
  1978. .zoom-right-enter,
  1979. .zoom-right-appear {
  1980. transform: scale(0);
  1981. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1982. }
  1983. .zoom-right-leave {
  1984. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1985. }
  1986. @keyframes antZoomIn {
  1987. 0% {
  1988. opacity: 0;
  1989. transform: scale(0.2);
  1990. }
  1991. 100% {
  1992. opacity: 1;
  1993. transform: scale(1);
  1994. }
  1995. }
  1996. @keyframes antZoomOut {
  1997. 0% {
  1998. transform: scale(1);
  1999. }
  2000. 100% {
  2001. opacity: 0;
  2002. transform: scale(0.2);
  2003. }
  2004. }
  2005. @keyframes antZoomBigIn {
  2006. 0% {
  2007. opacity: 0;
  2008. transform: scale(0.8);
  2009. }
  2010. 100% {
  2011. transform: scale(1);
  2012. }
  2013. }
  2014. @keyframes antZoomBigOut {
  2015. 0% {
  2016. transform: scale(1);
  2017. }
  2018. 100% {
  2019. opacity: 0;
  2020. transform: scale(0.8);
  2021. }
  2022. }
  2023. @keyframes antZoomUpIn {
  2024. 0% {
  2025. opacity: 0;
  2026. transform-origin: 50% 0%;
  2027. transform: scale(0.8);
  2028. }
  2029. 100% {
  2030. transform-origin: 50% 0%;
  2031. transform: scale(1);
  2032. }
  2033. }
  2034. @keyframes antZoomUpOut {
  2035. 0% {
  2036. transform-origin: 50% 0%;
  2037. transform: scale(1);
  2038. }
  2039. 100% {
  2040. opacity: 0;
  2041. transform-origin: 50% 0%;
  2042. transform: scale(0.8);
  2043. }
  2044. }
  2045. @keyframes antZoomLeftIn {
  2046. 0% {
  2047. opacity: 0;
  2048. transform-origin: 0% 50%;
  2049. transform: scale(0.8);
  2050. }
  2051. 100% {
  2052. transform-origin: 0% 50%;
  2053. transform: scale(1);
  2054. }
  2055. }
  2056. @keyframes antZoomLeftOut {
  2057. 0% {
  2058. transform-origin: 0% 50%;
  2059. transform: scale(1);
  2060. }
  2061. 100% {
  2062. opacity: 0;
  2063. transform-origin: 0% 50%;
  2064. transform: scale(0.8);
  2065. }
  2066. }
  2067. @keyframes antZoomRightIn {
  2068. 0% {
  2069. opacity: 0;
  2070. transform-origin: 100% 50%;
  2071. transform: scale(0.8);
  2072. }
  2073. 100% {
  2074. transform-origin: 100% 50%;
  2075. transform: scale(1);
  2076. }
  2077. }
  2078. @keyframes antZoomRightOut {
  2079. 0% {
  2080. transform-origin: 100% 50%;
  2081. transform: scale(1);
  2082. }
  2083. 100% {
  2084. opacity: 0;
  2085. transform-origin: 100% 50%;
  2086. transform: scale(0.8);
  2087. }
  2088. }
  2089. @keyframes antZoomDownIn {
  2090. 0% {
  2091. opacity: 0;
  2092. transform-origin: 50% 100%;
  2093. transform: scale(0.8);
  2094. }
  2095. 100% {
  2096. transform-origin: 50% 100%;
  2097. transform: scale(1);
  2098. }
  2099. }
  2100. @keyframes antZoomDownOut {
  2101. 0% {
  2102. transform-origin: 50% 100%;
  2103. transform: scale(1);
  2104. }
  2105. 100% {
  2106. opacity: 0;
  2107. transform-origin: 50% 100%;
  2108. transform: scale(0.8);
  2109. }
  2110. }
  2111. .ant-motion-collapse {
  2112. overflow: hidden;
  2113. }
  2114. .ant-motion-collapse-active {
  2115. transition: height .2s, opacity .2s;
  2116. }
  2117. .ant-spin {
  2118. color: #58a3ff;
  2119. vertical-align: middle;
  2120. text-align: center;
  2121. opacity: 0;
  2122. position: absolute;
  2123. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2124. font-size: 12px;
  2125. display: none;
  2126. }
  2127. .ant-spin-spinning {
  2128. opacity: 1;
  2129. position: static;
  2130. display: inline-block;
  2131. }
  2132. .ant-spin-nested-loading {
  2133. position: relative;
  2134. }
  2135. .ant-spin-nested-loading > div > .ant-spin {
  2136. position: absolute;
  2137. height: 100%;
  2138. width: 100%;
  2139. z-index: 4;
  2140. }
  2141. .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  2142. position: absolute;
  2143. top: 50%;
  2144. left: 50%;
  2145. margin: -10px;
  2146. }
  2147. .ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  2148. position: absolute;
  2149. top: 50%;
  2150. width: 100%;
  2151. padding-top: 6px;
  2152. }
  2153. .ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  2154. margin-top: -20px;
  2155. }
  2156. .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  2157. margin: -7px;
  2158. }
  2159. .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  2160. padding-top: 3px;
  2161. }
  2162. .ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  2163. margin-top: -17px;
  2164. }
  2165. .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  2166. margin: -16px;
  2167. }
  2168. .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  2169. padding-top: 12px;
  2170. }
  2171. .ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  2172. margin-top: -26px;
  2173. }
  2174. .ant-spin-container {
  2175. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2176. position: relative;
  2177. }
  2178. .ant-spin-blur {
  2179. opacity: 0.7;
  2180. -webkit-filter: blur(0.8px);
  2181. filter: blur(0.8px);
  2182. /* autoprefixer: off */
  2183. filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
  2184. /* autoprefixer: on */
  2185. -webkit-transform: translateZ(0);
  2186. }
  2187. .ant-spin-blur:after {
  2188. content: '';
  2189. position: absolute;
  2190. left: 0;
  2191. right: 0;
  2192. top: 0;
  2193. bottom: 0;
  2194. background: #fff;
  2195. opacity: 0.2;
  2196. transition: all .3s;
  2197. }
  2198. .ant-spin-tip {
  2199. color: rgba(0, 0, 0, 0.43);
  2200. }
  2201. .ant-spin-dot {
  2202. position: relative;
  2203. display: block;
  2204. width: 20px;
  2205. height: 20px;
  2206. transform: rotate(45deg);
  2207. animation: antRotate 2s infinite linear;
  2208. }
  2209. .ant-spin-dot i {
  2210. width: 9px;
  2211. height: 9px;
  2212. border-radius: 100%;
  2213. background-color: #58a3ff;
  2214. transform: scale(0.6);
  2215. display: block;
  2216. position: absolute;
  2217. opacity: 0.3;
  2218. animation: antSpinMove 1s infinite linear alternate;
  2219. transform-origin: 50% 50%;
  2220. }
  2221. .ant-spin-dot i:nth-child(1) {
  2222. left: 0;
  2223. top: 0;
  2224. }
  2225. .ant-spin-dot i:nth-child(2) {
  2226. right: 0;
  2227. top: 0;
  2228. animation-delay: 0.4s;
  2229. }
  2230. .ant-spin-dot i:nth-child(3) {
  2231. right: 0;
  2232. bottom: 0;
  2233. animation-delay: 0.8s;
  2234. }
  2235. .ant-spin-dot i:nth-child(4) {
  2236. left: 0;
  2237. bottom: 0;
  2238. animation-delay: 1.2s;
  2239. }
  2240. .ant-spin-sm .ant-spin-dot {
  2241. width: 14px;
  2242. height: 14px;
  2243. }
  2244. .ant-spin-sm .ant-spin-dot i {
  2245. width: 6px;
  2246. height: 6px;
  2247. }
  2248. .ant-spin-lg .ant-spin-dot {
  2249. width: 32px;
  2250. height: 32px;
  2251. }
  2252. .ant-spin-lg .ant-spin-dot i {
  2253. width: 14px;
  2254. height: 14px;
  2255. }
  2256. .ant-spin.ant-spin-show-text .ant-spin-text {
  2257. display: block;
  2258. }
  2259. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  2260. /* IE10+ */
  2261. .ant-spin-blur {
  2262. background: #fff;
  2263. opacity: 0.5;
  2264. }
  2265. }
  2266. @keyframes antSpinMove {
  2267. to {
  2268. transform: scale(0.9);
  2269. opacity: 1;
  2270. }
  2271. }
  2272. @keyframes antRotate {
  2273. to {
  2274. transform: rotate(405deg);
  2275. }
  2276. }
  2277. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
  2278. height: 32px;
  2279. }
  2280. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-ink-bar {
  2281. visibility: hidden;
  2282. }
  2283. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  2284. margin: 0;
  2285. border: 1px solid #d9d9d9;
  2286. border-bottom: 0;
  2287. border-radius: 4px 4px 0 0;
  2288. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2289. background: #f9f9f9;
  2290. margin-right: 2px;
  2291. }
  2292. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  2293. padding: 5px 16px 4px;
  2294. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2295. }
  2296. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
  2297. background: #fff;
  2298. transform: translateZ(0);
  2299. border-color: #d9d9d9;
  2300. color: #58a3ff;
  2301. }
  2302. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
  2303. padding-bottom: 5px;
  2304. transform: translateZ(0);
  2305. }
  2306. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-wrap {
  2307. margin-bottom: 0;
  2308. }
  2309. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close {
  2310. margin-right: 0;
  2311. color: rgba(0, 0, 0, 0.43);
  2312. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2313. display: inline-block;
  2314. font-size: 12px;
  2315. font-size: 9px \9;
  2316. transform: scale(0.75) rotate(0deg);
  2317. /* IE6-IE8 */
  2318. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  2319. zoom: 1;
  2320. transform-origin: 100% 50%;
  2321. width: 0;
  2322. text-align: right;
  2323. vertical-align: middle;
  2324. overflow: hidden;
  2325. }
  2326. :root .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close {
  2327. filter: none;
  2328. }
  2329. :root .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close {
  2330. font-size: 12px;
  2331. }
  2332. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .anticon-close:hover {
  2333. color: #404040;
  2334. font-weight: bold;
  2335. }
  2336. .ant-tabs.ant-tabs-editable-card > .ant-tabs-bar .ant-tabs-tab:not(.ant-tabs-tab-active):hover {
  2337. padding-left: 8px;
  2338. padding-right: 8px;
  2339. }
  2340. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active .anticon-close,
  2341. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab:hover .anticon-close {
  2342. width: 16px;
  2343. transform: translateZ(0);
  2344. }
  2345. .ant-tabs-extra-content {
  2346. float: right;
  2347. line-height: 32px;
  2348. }
  2349. .ant-tabs-extra-content .ant-tabs-new-tab {
  2350. width: 20px;
  2351. height: 20px;
  2352. line-height: 20px;
  2353. text-align: center;
  2354. cursor: pointer;
  2355. border-radius: 4px;
  2356. border: 1px solid #d9d9d9;
  2357. display: inline-block;
  2358. font-size: 12px;
  2359. font-size: 10px \9;
  2360. transform: scale(0.83333333) rotate(0deg);
  2361. /* IE6-IE8 */
  2362. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  2363. zoom: 1;
  2364. color: rgba(0, 0, 0, 0.43);
  2365. transition: color 0.3s ease;
  2366. }
  2367. :root .ant-tabs-extra-content .ant-tabs-new-tab {
  2368. filter: none;
  2369. }
  2370. :root .ant-tabs-extra-content .ant-tabs-new-tab {
  2371. font-size: 12px;
  2372. }
  2373. .ant-tabs-extra-content .ant-tabs-new-tab:hover {
  2374. color: #404040;
  2375. }
  2376. .ant-tabs-vertical.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
  2377. height: auto;
  2378. }
  2379. .ant-tabs-vertical.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  2380. border-bottom: 1px solid #d9d9d9;
  2381. margin-bottom: 8px;
  2382. }
  2383. .ant-tabs-vertical.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
  2384. padding-bottom: 4px;
  2385. }
  2386. .ant-tabs-vertical.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab:last-child {
  2387. margin-bottom: 8px;
  2388. }
  2389. .ant-tabs-vertical.ant-tabs-card.ant-tabs-left > .ant-tabs-bar .ant-tabs-nav-wrap {
  2390. margin-right: 0;
  2391. }
  2392. .ant-tabs-vertical.ant-tabs-card.ant-tabs-left > .ant-tabs-bar .ant-tabs-tab {
  2393. border-right: 0;
  2394. border-radius: 4px 0 0 4px;
  2395. margin-right: 1px;
  2396. }
  2397. .ant-tabs-vertical.ant-tabs-card.ant-tabs-left > .ant-tabs-bar .ant-tabs-tab-active {
  2398. margin-right: -1px;
  2399. padding-right: 18px;
  2400. }
  2401. .ant-tabs-vertical.ant-tabs-card.ant-tabs-right > .ant-tabs-bar .ant-tabs-nav-wrap {
  2402. margin-left: 0;
  2403. }
  2404. .ant-tabs-vertical.ant-tabs-card.ant-tabs-right > .ant-tabs-bar .ant-tabs-tab {
  2405. border-left: 0;
  2406. border-radius: 0 4px 4px 0;
  2407. margin-left: 1px;
  2408. }
  2409. .ant-tabs-vertical.ant-tabs-card.ant-tabs-right > .ant-tabs-bar .ant-tabs-tab-active {
  2410. margin-left: -1px;
  2411. padding-left: 18px;
  2412. }
  2413. .ant-tabs {
  2414. box-sizing: border-box;
  2415. position: relative;
  2416. overflow: hidden;
  2417. zoom: 1;
  2418. color: rgba(0, 0, 0, 0.65);
  2419. }
  2420. .ant-tabs:before,
  2421. .ant-tabs:after {
  2422. content: " ";
  2423. display: table;
  2424. }
  2425. .ant-tabs:after {
  2426. clear: both;
  2427. visibility: hidden;
  2428. font-size: 0;
  2429. height: 0;
  2430. }
  2431. .ant-tabs-bar {
  2432. outline: none;
  2433. }
  2434. .ant-tabs-ink-bar {
  2435. z-index: 1;
  2436. position: absolute;
  2437. left: 0;
  2438. bottom: 1px;
  2439. box-sizing: border-box;
  2440. height: 2px;
  2441. background-color: #58a3ff;
  2442. transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2443. transform-origin: 0 0;
  2444. }
  2445. .ant-tabs-bar {
  2446. border-bottom: 1px solid #d9d9d9;
  2447. margin-bottom: 16px;
  2448. }
  2449. .ant-tabs-nav-container {
  2450. overflow: hidden;
  2451. font-size: 14px;
  2452. line-height: 1.5;
  2453. box-sizing: border-box;
  2454. position: relative;
  2455. white-space: nowrap;
  2456. margin-bottom: -1px;
  2457. zoom: 1;
  2458. }
  2459. .ant-tabs-nav-container:before,
  2460. .ant-tabs-nav-container:after {
  2461. content: " ";
  2462. display: table;
  2463. }
  2464. .ant-tabs-nav-container:after {
  2465. clear: both;
  2466. visibility: hidden;
  2467. font-size: 0;
  2468. height: 0;
  2469. }
  2470. .ant-tabs-nav-container-scrolling {
  2471. padding-left: 32px;
  2472. padding-right: 32px;
  2473. }
  2474. .ant-tabs-tab-prev,
  2475. .ant-tabs-tab-next {
  2476. user-select: none;
  2477. z-index: 2;
  2478. margin-right: -2px;
  2479. margin-top: 3px;
  2480. width: 32px;
  2481. height: 100%;
  2482. line-height: 32px;
  2483. cursor: pointer;
  2484. border: 0;
  2485. background-color: transparent;
  2486. position: absolute;
  2487. text-align: center;
  2488. color: rgba(0, 0, 0, 0.43);
  2489. transition: color 0.3s ease;
  2490. }
  2491. .ant-tabs-tab-prev:hover,
  2492. .ant-tabs-tab-next:hover {
  2493. color: rgba(0, 0, 0, 0.65);
  2494. }
  2495. .ant-tabs-tab-prev-icon,
  2496. .ant-tabs-tab-next-icon {
  2497. position: relative;
  2498. font-style: normal;
  2499. font-weight: bold;
  2500. font-variant: normal;
  2501. line-height: inherit;
  2502. vertical-align: baseline;
  2503. text-align: center;
  2504. text-transform: none;
  2505. font-family: sans-serif;
  2506. display: inline-block;
  2507. font-size: 12px;
  2508. font-size: 10px \9;
  2509. transform: scale(0.83333333) rotate(0deg);
  2510. /* IE6-IE8 */
  2511. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  2512. zoom: 1;
  2513. }
  2514. :root .ant-tabs-tab-prev-icon,
  2515. :root .ant-tabs-tab-next-icon {
  2516. filter: none;
  2517. }
  2518. :root .ant-tabs-tab-prev-icon,
  2519. :root .ant-tabs-tab-next-icon {
  2520. font-size: 12px;
  2521. }
  2522. .ant-tabs-tab-prev-icon:before,
  2523. .ant-tabs-tab-next-icon:before {
  2524. display: block;
  2525. font-family: "anticon" !important;
  2526. }
  2527. .ant-tabs-tab-btn-disabled {
  2528. cursor: not-allowed;
  2529. }
  2530. .ant-tabs-tab-btn-disabled,
  2531. .ant-tabs-tab-btn-disabled:hover {
  2532. color: rgba(0, 0, 0, 0.25);
  2533. }
  2534. .ant-tabs-tab-next {
  2535. right: 2px;
  2536. }
  2537. .ant-tabs-tab-next-icon:before {
  2538. content: "\E61F";
  2539. }
  2540. .ant-tabs-tab-prev {
  2541. left: 0;
  2542. }
  2543. .ant-tabs-tab-prev-icon:before {
  2544. content: "\E620";
  2545. }
  2546. :root .ant-tabs-tab-prev {
  2547. filter: none;
  2548. }
  2549. .ant-tabs-nav-wrap {
  2550. overflow: hidden;
  2551. margin-bottom: -1px;
  2552. }
  2553. .ant-tabs-nav-scroll {
  2554. overflow: hidden;
  2555. white-space: nowrap;
  2556. }
  2557. .ant-tabs-nav {
  2558. box-sizing: border-box;
  2559. padding-left: 0;
  2560. transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  2561. position: relative;
  2562. margin: 0;
  2563. list-style: none;
  2564. float: left;
  2565. }
  2566. .ant-tabs-nav:before,
  2567. .ant-tabs-nav:after {
  2568. display: table;
  2569. content: " ";
  2570. }
  2571. .ant-tabs-nav:after {
  2572. clear: both;
  2573. }
  2574. .ant-tabs-nav .ant-tabs-tab-disabled {
  2575. pointer-events: none;
  2576. cursor: default;
  2577. color: rgba(0, 0, 0, 0.25);
  2578. }
  2579. .ant-tabs-nav .ant-tabs-tab {
  2580. display: inline-block;
  2581. height: 100%;
  2582. margin-right: 24px;
  2583. box-sizing: border-box;
  2584. position: relative;
  2585. padding: 8px 20px;
  2586. transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2587. cursor: pointer;
  2588. text-decoration: none;
  2589. }
  2590. .ant-tabs-nav .ant-tabs-tab:hover {
  2591. color: #80b9ff;
  2592. }
  2593. .ant-tabs-nav .ant-tabs-tab:active {
  2594. color: #4386e7;
  2595. }
  2596. .ant-tabs-nav .ant-tabs-tab .anticon {
  2597. width: 14px;
  2598. height: 14px;
  2599. margin-right: 8px;
  2600. }
  2601. .ant-tabs-nav .ant-tabs-tab-active {
  2602. color: #58a3ff;
  2603. }
  2604. .ant-tabs-mini .ant-tabs-nav-container {
  2605. font-size: 12px;
  2606. }
  2607. .ant-tabs-mini .ant-tabs-tab {
  2608. margin-right: 0;
  2609. padding: 8px 16px;
  2610. }
  2611. .ant-tabs:not(.ant-tabs-vertical) > .ant-tabs-content {
  2612. width: 100%;
  2613. }
  2614. .ant-tabs:not(.ant-tabs-vertical) > .ant-tabs-content > .ant-tabs-tabpane {
  2615. flex-shrink: 0;
  2616. width: 100%;
  2617. transition: opacity 0.3s;
  2618. opacity: 1;
  2619. }
  2620. .ant-tabs:not(.ant-tabs-vertical) > .ant-tabs-content > .ant-tabs-tabpane-inactive {
  2621. opacity: 0;
  2622. height: 0;
  2623. }
  2624. .ant-tabs:not(.ant-tabs-vertical) > .ant-tabs-content-animated {
  2625. display: flex;
  2626. flex-direction: row;
  2627. will-change: margin-left;
  2628. transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2629. }
  2630. .ant-tabs-vertical > .ant-tabs-bar {
  2631. border-bottom: 0;
  2632. }
  2633. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-tab {
  2634. float: none;
  2635. margin-right: 0;
  2636. margin-bottom: 16px;
  2637. display: block;
  2638. padding: 8px 24px;
  2639. }
  2640. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-tab:last-child {
  2641. margin-bottom: 0;
  2642. }
  2643. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-nav-scroll {
  2644. width: auto;
  2645. }
  2646. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-nav-container {
  2647. margin-bottom: 0;
  2648. }
  2649. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-nav-wrap {
  2650. margin-bottom: 0;
  2651. }
  2652. .ant-tabs-vertical > .ant-tabs-bar .ant-tabs-ink-bar {
  2653. width: 2px;
  2654. left: auto;
  2655. height: auto;
  2656. top: 0;
  2657. }
  2658. .ant-tabs-vertical > .ant-tabs-content {
  2659. overflow: hidden;
  2660. width: auto;
  2661. margin-top: 0!important;
  2662. }
  2663. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar {
  2664. float: left;
  2665. border-right: 1px solid #e9e9e9;
  2666. margin-right: -1px;
  2667. margin-bottom: 0;
  2668. }
  2669. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-tab {
  2670. text-align: right;
  2671. }
  2672. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-nav-container {
  2673. margin-right: -1px;
  2674. }
  2675. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-nav-wrap {
  2676. margin-right: -1px;
  2677. }
  2678. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar .ant-tabs-ink-bar {
  2679. right: 1px;
  2680. }
  2681. .ant-tabs-vertical.ant-tabs-left > .ant-tabs-content {
  2682. padding-left: 24px;
  2683. border-left: 1px solid #e9e9e9;
  2684. }
  2685. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar {
  2686. float: right;
  2687. border-left: 1px solid #e9e9e9;
  2688. margin-left: -1px;
  2689. margin-bottom: 0;
  2690. }
  2691. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar .ant-tabs-nav-container {
  2692. margin-left: -1px;
  2693. }
  2694. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar .ant-tabs-nav-wrap {
  2695. margin-left: -1px;
  2696. }
  2697. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar .ant-tabs-ink-bar {
  2698. left: 1px;
  2699. }
  2700. .ant-tabs-vertical.ant-tabs-right > .ant-tabs-content {
  2701. padding-right: 24px;
  2702. border-right: 1px solid #e9e9e9;
  2703. }
  2704. .ant-tabs-bottom > .ant-tabs-bar {
  2705. margin-bottom: 0;
  2706. margin-top: 16px;
  2707. }
  2708. .no-flex > .ant-tabs-content-animated,
  2709. .ant-tabs-no-animation > .ant-tabs-content-animated,
  2710. .ant-tabs-vertical > .ant-tabs-content-animated {
  2711. transform: none !important;
  2712. margin-left: 0 !important;
  2713. }
  2714. .no-flex > .ant-tabs-content > .ant-tabs-tabpane-inactive,
  2715. .ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-tabpane-inactive,
  2716. .ant-tabs-vertical > .ant-tabs-content > .ant-tabs-tabpane-inactive {
  2717. display: none;
  2718. }
  2719. .ant-btn {
  2720. display: inline-block;
  2721. margin-bottom: 0;
  2722. font-weight: 500;
  2723. text-align: center;
  2724. touch-action: manipulation;
  2725. cursor: pointer;
  2726. background-image: none;
  2727. border: 1px solid transparent;
  2728. white-space: nowrap;
  2729. line-height: 1.5;
  2730. padding: 4px 15px;
  2731. font-size: 12px;
  2732. border-radius: 4px;
  2733. user-select: none;
  2734. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2735. position: relative;
  2736. color: rgba(0, 0, 0, 0.65);
  2737. background-color: #fff;
  2738. border-color: #d9d9d9;
  2739. }
  2740. .ant-btn > .anticon {
  2741. line-height: 1;
  2742. }
  2743. .ant-btn,
  2744. .ant-btn:active,
  2745. .ant-btn:focus {
  2746. outline: 0;
  2747. }
  2748. .ant-btn:not([disabled]):hover {
  2749. text-decoration: none;
  2750. }
  2751. .ant-btn:not([disabled]):active {
  2752. outline: 0;
  2753. transition: none;
  2754. }
  2755. .ant-btn.disabled,
  2756. .ant-btn[disabled] {
  2757. cursor: not-allowed;
  2758. }
  2759. .ant-btn.disabled > *,
  2760. .ant-btn[disabled] > * {
  2761. pointer-events: none;
  2762. }
  2763. .ant-btn-lg {
  2764. padding: 4px 15px 5px 15px;
  2765. font-size: 14px;
  2766. border-radius: 4px;
  2767. }
  2768. .ant-btn-sm {
  2769. padding: 1px 7px;
  2770. font-size: 12px;
  2771. border-radius: 4px;
  2772. }
  2773. .ant-btn > a:only-child {
  2774. color: currentColor;
  2775. }
  2776. .ant-btn > a:only-child:after {
  2777. content: '';
  2778. position: absolute;
  2779. top: 0;
  2780. left: 0;
  2781. bottom: 0;
  2782. right: 0;
  2783. background: transparent;
  2784. }
  2785. .ant-btn:hover,
  2786. .ant-btn:focus {
  2787. color: #80b9ff;
  2788. background-color: #fff;
  2789. border-color: #80b9ff;
  2790. }
  2791. .ant-btn:hover > a:only-child,
  2792. .ant-btn:focus > a:only-child {
  2793. color: currentColor;
  2794. }
  2795. .ant-btn:hover > a:only-child:after,
  2796. .ant-btn:focus > a:only-child:after {
  2797. content: '';
  2798. position: absolute;
  2799. top: 0;
  2800. left: 0;
  2801. bottom: 0;
  2802. right: 0;
  2803. background: transparent;
  2804. }
  2805. .ant-btn:active,
  2806. .ant-btn.active {
  2807. color: #4386e7;
  2808. background-color: #fff;
  2809. border-color: #4386e7;
  2810. }
  2811. .ant-btn:active > a:only-child,
  2812. .ant-btn.active > a:only-child {
  2813. color: currentColor;
  2814. }
  2815. .ant-btn:active > a:only-child:after,
  2816. .ant-btn.active > a:only-child:after {
  2817. content: '';
  2818. position: absolute;
  2819. top: 0;
  2820. left: 0;
  2821. bottom: 0;
  2822. right: 0;
  2823. background: transparent;
  2824. }
  2825. .ant-btn.disabled,
  2826. .ant-btn[disabled],
  2827. .ant-btn.disabled:hover,
  2828. .ant-btn[disabled]:hover,
  2829. .ant-btn.disabled:focus,
  2830. .ant-btn[disabled]:focus,
  2831. .ant-btn.disabled:active,
  2832. .ant-btn[disabled]:active,
  2833. .ant-btn.disabled.active,
  2834. .ant-btn[disabled].active {
  2835. color: rgba(0, 0, 0, 0.25);
  2836. background-color: #f7f7f7;
  2837. border-color: #d9d9d9;
  2838. }
  2839. .ant-btn.disabled > a:only-child,
  2840. .ant-btn[disabled] > a:only-child,
  2841. .ant-btn.disabled:hover > a:only-child,
  2842. .ant-btn[disabled]:hover > a:only-child,
  2843. .ant-btn.disabled:focus > a:only-child,
  2844. .ant-btn[disabled]:focus > a:only-child,
  2845. .ant-btn.disabled:active > a:only-child,
  2846. .ant-btn[disabled]:active > a:only-child,
  2847. .ant-btn.disabled.active > a:only-child,
  2848. .ant-btn[disabled].active > a:only-child {
  2849. color: currentColor;
  2850. }
  2851. .ant-btn.disabled > a:only-child:after,
  2852. .ant-btn[disabled] > a:only-child:after,
  2853. .ant-btn.disabled:hover > a:only-child:after,
  2854. .ant-btn[disabled]:hover > a:only-child:after,
  2855. .ant-btn.disabled:focus > a:only-child:after,
  2856. .ant-btn[disabled]:focus > a:only-child:after,
  2857. .ant-btn.disabled:active > a:only-child:after,
  2858. .ant-btn[disabled]:active > a:only-child:after,
  2859. .ant-btn.disabled.active > a:only-child:after,
  2860. .ant-btn[disabled].active > a:only-child:after {
  2861. content: '';
  2862. position: absolute;
  2863. top: 0;
  2864. left: 0;
  2865. bottom: 0;
  2866. right: 0;
  2867. background: transparent;
  2868. }
  2869. .ant-btn:hover,
  2870. .ant-btn:focus,
  2871. .ant-btn:active,
  2872. .ant-btn.active {
  2873. background: #fff;
  2874. }
  2875. .ant-btn-primary {
  2876. color: #fff;
  2877. background-color: #58a3ff;
  2878. border-color: #58a3ff;
  2879. }
  2880. .ant-btn-primary > a:only-child {
  2881. color: currentColor;
  2882. }
  2883. .ant-btn-primary > a:only-child:after {
  2884. content: '';
  2885. position: absolute;
  2886. top: 0;
  2887. left: 0;
  2888. bottom: 0;
  2889. right: 0;
  2890. background: transparent;
  2891. }
  2892. .ant-btn-primary:hover,
  2893. .ant-btn-primary:focus {
  2894. color: #fff;
  2895. background-color: #80b9ff;
  2896. border-color: #80b9ff;
  2897. }
  2898. .ant-btn-primary:hover > a:only-child,
  2899. .ant-btn-primary:focus > a:only-child {
  2900. color: currentColor;
  2901. }
  2902. .ant-btn-primary:hover > a:only-child:after,
  2903. .ant-btn-primary:focus > a:only-child:after {
  2904. content: '';
  2905. position: absolute;
  2906. top: 0;
  2907. left: 0;
  2908. bottom: 0;
  2909. right: 0;
  2910. background: transparent;
  2911. }
  2912. .ant-btn-primary:active,
  2913. .ant-btn-primary.active {
  2914. color: #fff;
  2915. background-color: #4386e7;
  2916. border-color: #4386e7;
  2917. }
  2918. .ant-btn-primary:active > a:only-child,
  2919. .ant-btn-primary.active > a:only-child {
  2920. color: currentColor;
  2921. }
  2922. .ant-btn-primary:active > a:only-child:after,
  2923. .ant-btn-primary.active > a:only-child:after {
  2924. content: '';
  2925. position: absolute;
  2926. top: 0;
  2927. left: 0;
  2928. bottom: 0;
  2929. right: 0;
  2930. background: transparent;
  2931. }
  2932. .ant-btn-primary.disabled,
  2933. .ant-btn-primary[disabled],
  2934. .ant-btn-primary.disabled:hover,
  2935. .ant-btn-primary[disabled]:hover,
  2936. .ant-btn-primary.disabled:focus,
  2937. .ant-btn-primary[disabled]:focus,
  2938. .ant-btn-primary.disabled:active,
  2939. .ant-btn-primary[disabled]:active,
  2940. .ant-btn-primary.disabled.active,
  2941. .ant-btn-primary[disabled].active {
  2942. color: rgba(0, 0, 0, 0.25);
  2943. background-color: #f7f7f7;
  2944. border-color: #d9d9d9;
  2945. }
  2946. .ant-btn-primary.disabled > a:only-child,
  2947. .ant-btn-primary[disabled] > a:only-child,
  2948. .ant-btn-primary.disabled:hover > a:only-child,
  2949. .ant-btn-primary[disabled]:hover > a:only-child,
  2950. .ant-btn-primary.disabled:focus > a:only-child,
  2951. .ant-btn-primary[disabled]:focus > a:only-child,
  2952. .ant-btn-primary.disabled:active > a:only-child,
  2953. .ant-btn-primary[disabled]:active > a:only-child,
  2954. .ant-btn-primary.disabled.active > a:only-child,
  2955. .ant-btn-primary[disabled].active > a:only-child {
  2956. color: currentColor;
  2957. }
  2958. .ant-btn-primary.disabled > a:only-child:after,
  2959. .ant-btn-primary[disabled] > a:only-child:after,
  2960. .ant-btn-primary.disabled:hover > a:only-child:after,
  2961. .ant-btn-primary[disabled]:hover > a:only-child:after,
  2962. .ant-btn-primary.disabled:focus > a:only-child:after,
  2963. .ant-btn-primary[disabled]:focus > a:only-child:after,
  2964. .ant-btn-primary.disabled:active > a:only-child:after,
  2965. .ant-btn-primary[disabled]:active > a:only-child:after,
  2966. .ant-btn-primary.disabled.active > a:only-child:after,
  2967. .ant-btn-primary[disabled].active > a:only-child:after {
  2968. content: '';
  2969. position: absolute;
  2970. top: 0;
  2971. left: 0;
  2972. bottom: 0;
  2973. right: 0;
  2974. background: transparent;
  2975. }
  2976. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  2977. border-right-color: #4386e7;
  2978. border-left-color: #4386e7;
  2979. }
  2980. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  2981. border-color: #d9d9d9;
  2982. }
  2983. .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  2984. border-right-color: #4386e7;
  2985. }
  2986. .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  2987. border-right-color: #d9d9d9;
  2988. }
  2989. .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
  2990. .ant-btn-group .ant-btn-primary + .ant-btn-primary {
  2991. border-left-color: #4386e7;
  2992. }
  2993. .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
  2994. .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  2995. border-left-color: #d9d9d9;
  2996. }
  2997. .ant-btn-ghost {
  2998. color: rgba(0, 0, 0, 0.65);
  2999. background-color: transparent;
  3000. border-color: #d9d9d9;
  3001. }
  3002. .ant-btn-ghost > a:only-child {
  3003. color: currentColor;
  3004. }
  3005. .ant-btn-ghost > a:only-child:after {
  3006. content: '';
  3007. position: absolute;
  3008. top: 0;
  3009. left: 0;
  3010. bottom: 0;
  3011. right: 0;
  3012. background: transparent;
  3013. }
  3014. .ant-btn-ghost:hover,
  3015. .ant-btn-ghost:focus {
  3016. color: #80b9ff;
  3017. background-color: transparent;
  3018. border-color: #80b9ff;
  3019. }
  3020. .ant-btn-ghost:hover > a:only-child,
  3021. .ant-btn-ghost:focus > a:only-child {
  3022. color: currentColor;
  3023. }
  3024. .ant-btn-ghost:hover > a:only-child:after,
  3025. .ant-btn-ghost:focus > a:only-child:after {
  3026. content: '';
  3027. position: absolute;
  3028. top: 0;
  3029. left: 0;
  3030. bottom: 0;
  3031. right: 0;
  3032. background: transparent;
  3033. }
  3034. .ant-btn-ghost:active,
  3035. .ant-btn-ghost.active {
  3036. color: #4386e7;
  3037. background-color: transparent;
  3038. border-color: #4386e7;
  3039. }
  3040. .ant-btn-ghost:active > a:only-child,
  3041. .ant-btn-ghost.active > a:only-child {
  3042. color: currentColor;
  3043. }
  3044. .ant-btn-ghost:active > a:only-child:after,
  3045. .ant-btn-ghost.active > a:only-child:after {
  3046. content: '';
  3047. position: absolute;
  3048. top: 0;
  3049. left: 0;
  3050. bottom: 0;
  3051. right: 0;
  3052. background: transparent;
  3053. }
  3054. .ant-btn-ghost.disabled,
  3055. .ant-btn-ghost[disabled],
  3056. .ant-btn-ghost.disabled:hover,
  3057. .ant-btn-ghost[disabled]:hover,
  3058. .ant-btn-ghost.disabled:focus,
  3059. .ant-btn-ghost[disabled]:focus,
  3060. .ant-btn-ghost.disabled:active,
  3061. .ant-btn-ghost[disabled]:active,
  3062. .ant-btn-ghost.disabled.active,
  3063. .ant-btn-ghost[disabled].active {
  3064. color: rgba(0, 0, 0, 0.25);
  3065. background-color: #f7f7f7;
  3066. border-color: #d9d9d9;
  3067. }
  3068. .ant-btn-ghost.disabled > a:only-child,
  3069. .ant-btn-ghost[disabled] > a:only-child,
  3070. .ant-btn-ghost.disabled:hover > a:only-child,
  3071. .ant-btn-ghost[disabled]:hover > a:only-child,
  3072. .ant-btn-ghost.disabled:focus > a:only-child,
  3073. .ant-btn-ghost[disabled]:focus > a:only-child,
  3074. .ant-btn-ghost.disabled:active > a:only-child,
  3075. .ant-btn-ghost[disabled]:active > a:only-child,
  3076. .ant-btn-ghost.disabled.active > a:only-child,
  3077. .ant-btn-ghost[disabled].active > a:only-child {
  3078. color: currentColor;
  3079. }
  3080. .ant-btn-ghost.disabled > a:only-child:after,
  3081. .ant-btn-ghost[disabled] > a:only-child:after,
  3082. .ant-btn-ghost.disabled:hover > a:only-child:after,
  3083. .ant-btn-ghost[disabled]:hover > a:only-child:after,
  3084. .ant-btn-ghost.disabled:focus > a:only-child:after,
  3085. .ant-btn-ghost[disabled]:focus > a:only-child:after,
  3086. .ant-btn-ghost.disabled:active > a:only-child:after,
  3087. .ant-btn-ghost[disabled]:active > a:only-child:after,
  3088. .ant-btn-ghost.disabled.active > a:only-child:after,
  3089. .ant-btn-ghost[disabled].active > a:only-child:after {
  3090. content: '';
  3091. position: absolute;
  3092. top: 0;
  3093. left: 0;
  3094. bottom: 0;
  3095. right: 0;
  3096. background: transparent;
  3097. }
  3098. .ant-btn-dashed {
  3099. color: rgba(0, 0, 0, 0.65);
  3100. background-color: #fff;
  3101. border-color: #d9d9d9;
  3102. border-style: dashed;
  3103. }
  3104. .ant-btn-dashed > a:only-child {
  3105. color: currentColor;
  3106. }
  3107. .ant-btn-dashed > a:only-child:after {
  3108. content: '';
  3109. position: absolute;
  3110. top: 0;
  3111. left: 0;
  3112. bottom: 0;
  3113. right: 0;
  3114. background: transparent;
  3115. }
  3116. .ant-btn-dashed:hover,
  3117. .ant-btn-dashed:focus {
  3118. color: #80b9ff;
  3119. background-color: #fff;
  3120. border-color: #80b9ff;
  3121. }
  3122. .ant-btn-dashed:hover > a:only-child,
  3123. .ant-btn-dashed:focus > a:only-child {
  3124. color: currentColor;
  3125. }
  3126. .ant-btn-dashed:hover > a:only-child:after,
  3127. .ant-btn-dashed:focus > a:only-child:after {
  3128. content: '';
  3129. position: absolute;
  3130. top: 0;
  3131. left: 0;
  3132. bottom: 0;
  3133. right: 0;
  3134. background: transparent;
  3135. }
  3136. .ant-btn-dashed:active,
  3137. .ant-btn-dashed.active {
  3138. color: #4386e7;
  3139. background-color: #fff;
  3140. border-color: #4386e7;
  3141. }
  3142. .ant-btn-dashed:active > a:only-child,
  3143. .ant-btn-dashed.active > a:only-child {
  3144. color: currentColor;
  3145. }
  3146. .ant-btn-dashed:active > a:only-child:after,
  3147. .ant-btn-dashed.active > a:only-child:after {
  3148. content: '';
  3149. position: absolute;
  3150. top: 0;
  3151. left: 0;
  3152. bottom: 0;
  3153. right: 0;
  3154. background: transparent;
  3155. }
  3156. .ant-btn-dashed.disabled,
  3157. .ant-btn-dashed[disabled],
  3158. .ant-btn-dashed.disabled:hover,
  3159. .ant-btn-dashed[disabled]:hover,
  3160. .ant-btn-dashed.disabled:focus,
  3161. .ant-btn-dashed[disabled]:focus,
  3162. .ant-btn-dashed.disabled:active,
  3163. .ant-btn-dashed[disabled]:active,
  3164. .ant-btn-dashed.disabled.active,
  3165. .ant-btn-dashed[disabled].active {
  3166. color: rgba(0, 0, 0, 0.25);
  3167. background-color: #f7f7f7;
  3168. border-color: #d9d9d9;
  3169. }
  3170. .ant-btn-dashed.disabled > a:only-child,
  3171. .ant-btn-dashed[disabled] > a:only-child,
  3172. .ant-btn-dashed.disabled:hover > a:only-child,
  3173. .ant-btn-dashed[disabled]:hover > a:only-child,
  3174. .ant-btn-dashed.disabled:focus > a:only-child,
  3175. .ant-btn-dashed[disabled]:focus > a:only-child,
  3176. .ant-btn-dashed.disabled:active > a:only-child,
  3177. .ant-btn-dashed[disabled]:active > a:only-child,
  3178. .ant-btn-dashed.disabled.active > a:only-child,
  3179. .ant-btn-dashed[disabled].active > a:only-child {
  3180. color: currentColor;
  3181. }
  3182. .ant-btn-dashed.disabled > a:only-child:after,
  3183. .ant-btn-dashed[disabled] > a:only-child:after,
  3184. .ant-btn-dashed.disabled:hover > a:only-child:after,
  3185. .ant-btn-dashed[disabled]:hover > a:only-child:after,
  3186. .ant-btn-dashed.disabled:focus > a:only-child:after,
  3187. .ant-btn-dashed[disabled]:focus > a:only-child:after,
  3188. .ant-btn-dashed.disabled:active > a:only-child:after,
  3189. .ant-btn-dashed[disabled]:active > a:only-child:after,
  3190. .ant-btn-dashed.disabled.active > a:only-child:after,
  3191. .ant-btn-dashed[disabled].active > a:only-child:after {
  3192. content: '';
  3193. position: absolute;
  3194. top: 0;
  3195. left: 0;
  3196. bottom: 0;
  3197. right: 0;
  3198. background: transparent;
  3199. }
  3200. .ant-btn-danger {
  3201. color: #fff;
  3202. background-color: #f04134;
  3203. border-color: #f04134;
  3204. }
  3205. .ant-btn-danger > a:only-child {
  3206. color: currentColor;
  3207. }
  3208. .ant-btn-danger > a:only-child:after {
  3209. content: '';
  3210. position: absolute;
  3211. top: 0;
  3212. left: 0;
  3213. bottom: 0;
  3214. right: 0;
  3215. background: transparent;
  3216. }
  3217. .ant-btn-danger:hover,
  3218. .ant-btn-danger:focus {
  3219. color: #fff;
  3220. background-color: #f46e65;
  3221. border-color: #f46e65;
  3222. }
  3223. .ant-btn-danger:hover > a:only-child,
  3224. .ant-btn-danger:focus > a:only-child {
  3225. color: currentColor;
  3226. }
  3227. .ant-btn-danger:hover > a:only-child:after,
  3228. .ant-btn-danger:focus > a:only-child:after {
  3229. content: '';
  3230. position: absolute;
  3231. top: 0;
  3232. left: 0;
  3233. bottom: 0;
  3234. right: 0;
  3235. background: transparent;
  3236. }
  3237. .ant-btn-danger:active,
  3238. .ant-btn-danger.active {
  3239. color: #fff;
  3240. background-color: #d73435;
  3241. border-color: #d73435;
  3242. }
  3243. .ant-btn-danger:active > a:only-child,
  3244. .ant-btn-danger.active > a:only-child {
  3245. color: currentColor;
  3246. }
  3247. .ant-btn-danger:active > a:only-child:after,
  3248. .ant-btn-danger.active > a:only-child:after {
  3249. content: '';
  3250. position: absolute;
  3251. top: 0;
  3252. left: 0;
  3253. bottom: 0;
  3254. right: 0;
  3255. background: transparent;
  3256. }
  3257. .ant-btn-danger.disabled,
  3258. .ant-btn-danger[disabled],
  3259. .ant-btn-danger.disabled:hover,
  3260. .ant-btn-danger[disabled]:hover,
  3261. .ant-btn-danger.disabled:focus,
  3262. .ant-btn-danger[disabled]:focus,
  3263. .ant-btn-danger.disabled:active,
  3264. .ant-btn-danger[disabled]:active,
  3265. .ant-btn-danger.disabled.active,
  3266. .ant-btn-danger[disabled].active {
  3267. color: rgba(0, 0, 0, 0.25);
  3268. background-color: #f7f7f7;
  3269. border-color: #d9d9d9;
  3270. }
  3271. .ant-btn-danger.disabled > a:only-child,
  3272. .ant-btn-danger[disabled] > a:only-child,
  3273. .ant-btn-danger.disabled:hover > a:only-child,
  3274. .ant-btn-danger[disabled]:hover > a:only-child,
  3275. .ant-btn-danger.disabled:focus > a:only-child,
  3276. .ant-btn-danger[disabled]:focus > a:only-child,
  3277. .ant-btn-danger.disabled:active > a:only-child,
  3278. .ant-btn-danger[disabled]:active > a:only-child,
  3279. .ant-btn-danger.disabled.active > a:only-child,
  3280. .ant-btn-danger[disabled].active > a:only-child {
  3281. color: currentColor;
  3282. }
  3283. .ant-btn-danger.disabled > a:only-child:after,
  3284. .ant-btn-danger[disabled] > a:only-child:after,
  3285. .ant-btn-danger.disabled:hover > a:only-child:after,
  3286. .ant-btn-danger[disabled]:hover > a:only-child:after,
  3287. .ant-btn-danger.disabled:focus > a:only-child:after,
  3288. .ant-btn-danger[disabled]:focus > a:only-child:after,
  3289. .ant-btn-danger.disabled:active > a:only-child:after,
  3290. .ant-btn-danger[disabled]:active > a:only-child:after,
  3291. .ant-btn-danger.disabled.active > a:only-child:after,
  3292. .ant-btn-danger[disabled].active > a:only-child:after {
  3293. content: '';
  3294. position: absolute;
  3295. top: 0;
  3296. left: 0;
  3297. bottom: 0;
  3298. right: 0;
  3299. background: transparent;
  3300. }
  3301. .ant-btn-circle,
  3302. .ant-btn-circle-outline {
  3303. width: 28px;
  3304. height: 28px;
  3305. padding: 0;
  3306. font-size: 14px;
  3307. border-radius: 50%;
  3308. }
  3309. .ant-btn-circle.ant-btn-lg,
  3310. .ant-btn-circle-outline.ant-btn-lg {
  3311. width: 32px;
  3312. height: 32px;
  3313. padding: 0;
  3314. font-size: 16px;
  3315. border-radius: 50%;
  3316. }
  3317. .ant-btn-circle.ant-btn-sm,
  3318. .ant-btn-circle-outline.ant-btn-sm {
  3319. width: 22px;
  3320. height: 22px;
  3321. padding: 0;
  3322. font-size: 12px;
  3323. border-radius: 50%;
  3324. }
  3325. .ant-btn:before {
  3326. position: absolute;
  3327. top: -1px;
  3328. left: -1px;
  3329. bottom: -1px;
  3330. right: -1px;
  3331. background: #fff;
  3332. opacity: 0.35;
  3333. content: '';
  3334. border-radius: inherit;
  3335. z-index: 1;
  3336. transition: opacity .2s;
  3337. pointer-events: none;
  3338. display: none;
  3339. }
  3340. .ant-btn.ant-btn-loading:before {
  3341. display: block;
  3342. }
  3343. .ant-btn .anticon {
  3344. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  3345. }
  3346. .ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) {
  3347. padding-left: 29px;
  3348. pointer-events: none;
  3349. position: relative;
  3350. }
  3351. .ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) .anticon {
  3352. margin-left: -14px;
  3353. }
  3354. .ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) {
  3355. padding-left: 24px;
  3356. }
  3357. .ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) .anticon {
  3358. margin-left: -17px;
  3359. }
  3360. .ant-btn-group {
  3361. position: relative;
  3362. display: inline-block;
  3363. }
  3364. .ant-btn-group > .ant-btn {
  3365. position: relative;
  3366. z-index: 1;
  3367. }
  3368. .ant-btn-group > .ant-btn:hover,
  3369. .ant-btn-group > .ant-btn:focus,
  3370. .ant-btn-group > .ant-btn:active,
  3371. .ant-btn-group > .ant-btn.active {
  3372. z-index: 2;
  3373. }
  3374. .ant-btn-group > .ant-btn:disabled {
  3375. z-index: 0;
  3376. }
  3377. .ant-btn-group-lg > .ant-btn {
  3378. padding: 4px 15px 5px 15px;
  3379. font-size: 14px;
  3380. border-radius: 4px;
  3381. }
  3382. .ant-btn-group-sm > .ant-btn {
  3383. padding: 1px 7px;
  3384. font-size: 12px;
  3385. border-radius: 4px;
  3386. }
  3387. .ant-btn-group-sm > .ant-btn > .anticon {
  3388. font-size: 12px;
  3389. }
  3390. .ant-btn-group .ant-btn + .ant-btn,
  3391. .ant-btn + .ant-btn-group,
  3392. .ant-btn-group + .ant-btn,
  3393. .ant-btn-group + .ant-btn-group {
  3394. margin-left: -1px;
  3395. }
  3396. .ant-btn-group .ant-btn:not(:first-child):not(:last-child) {
  3397. border-radius: 0;
  3398. padding-left: 8px;
  3399. padding-right: 8px;
  3400. }
  3401. .ant-btn-group > .ant-btn:first-child {
  3402. margin-left: 0;
  3403. }
  3404. .ant-btn-group > .ant-btn:first-child:not(:last-child) {
  3405. border-bottom-right-radius: 0;
  3406. border-top-right-radius: 0;
  3407. padding-right: 8px;
  3408. }
  3409. .ant-btn-group > .ant-btn:last-child:not(:first-child) {
  3410. border-bottom-left-radius: 0;
  3411. border-top-left-radius: 0;
  3412. padding-left: 8px;
  3413. }
  3414. .ant-btn-group > .ant-btn-group {
  3415. float: left;
  3416. }
  3417. .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  3418. border-radius: 0;
  3419. }
  3420. .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  3421. border-bottom-right-radius: 0;
  3422. border-top-right-radius: 0;
  3423. padding-right: 8px;
  3424. }
  3425. .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  3426. border-bottom-left-radius: 0;
  3427. border-top-left-radius: 0;
  3428. padding-left: 8px;
  3429. }
  3430. .ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline).ant-btn-icon-only {
  3431. padding-left: 8px;
  3432. padding-right: 8px;
  3433. }
  3434. .ant-btn > .anticon + span,
  3435. .ant-btn > span + .anticon {
  3436. margin-left: 0.5em;
  3437. }
  3438. .ant-btn-clicked:after {
  3439. content: '';
  3440. position: absolute;
  3441. top: -1px;
  3442. left: -1px;
  3443. bottom: -1px;
  3444. right: -1px;
  3445. border-radius: inherit;
  3446. border: 0 solid #58a3ff;
  3447. opacity: 0.4;
  3448. animation: buttonEffect .4s;
  3449. display: block;
  3450. }
  3451. .ant-btn-danger.ant-btn-clicked:after {
  3452. border-color: #f04134;
  3453. }
  3454. .ant-btn-background-ghost {
  3455. background: transparent!important;
  3456. border-color: #fff;
  3457. color: #fff;
  3458. }
  3459. .ant-btn-background-ghost.ant-btn-primary {
  3460. color: #58a3ff;
  3461. background-color: transparent;
  3462. border-color: #58a3ff;
  3463. }
  3464. .ant-btn-background-ghost.ant-btn-primary > a:only-child {
  3465. color: currentColor;
  3466. }
  3467. .ant-btn-background-ghost.ant-btn-primary > a:only-child:after {
  3468. content: '';
  3469. position: absolute;
  3470. top: 0;
  3471. left: 0;
  3472. bottom: 0;
  3473. right: 0;
  3474. background: transparent;
  3475. }
  3476. .ant-btn-background-ghost.ant-btn-primary:hover,
  3477. .ant-btn-background-ghost.ant-btn-primary:focus {
  3478. color: #80b9ff;
  3479. background-color: transparent;
  3480. border-color: #80b9ff;
  3481. }
  3482. .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
  3483. .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
  3484. color: currentColor;
  3485. }
  3486. .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child:after,
  3487. .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child:after {
  3488. content: '';
  3489. position: absolute;
  3490. top: 0;
  3491. left: 0;
  3492. bottom: 0;
  3493. right: 0;
  3494. background: transparent;
  3495. }
  3496. .ant-btn-background-ghost.ant-btn-primary:active,
  3497. .ant-btn-background-ghost.ant-btn-primary.active {
  3498. color: #4386e7;
  3499. background-color: transparent;
  3500. border-color: #4386e7;
  3501. }
  3502. .ant-btn-background-ghost.ant-btn-primary:active > a:only-child,
  3503. .ant-btn-background-ghost.ant-btn-primary.active > a:only-child {
  3504. color: currentColor;
  3505. }
  3506. .ant-btn-background-ghost.ant-btn-primary:active > a:only-child:after,
  3507. .ant-btn-background-ghost.ant-btn-primary.active > a:only-child:after {
  3508. content: '';
  3509. position: absolute;
  3510. top: 0;
  3511. left: 0;
  3512. bottom: 0;
  3513. right: 0;
  3514. background: transparent;
  3515. }
  3516. .ant-btn-background-ghost.ant-btn-primary.disabled,
  3517. .ant-btn-background-ghost.ant-btn-primary[disabled],
  3518. .ant-btn-background-ghost.ant-btn-primary.disabled:hover,
  3519. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
  3520. .ant-btn-background-ghost.ant-btn-primary.disabled:focus,
  3521. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
  3522. .ant-btn-background-ghost.ant-btn-primary.disabled:active,
  3523. .ant-btn-background-ghost.ant-btn-primary[disabled]:active,
  3524. .ant-btn-background-ghost.ant-btn-primary.disabled.active,
  3525. .ant-btn-background-ghost.ant-btn-primary[disabled].active {
  3526. color: rgba(0, 0, 0, 0.25);
  3527. background-color: #f7f7f7;
  3528. border-color: #d9d9d9;
  3529. }
  3530. .ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child,
  3531. .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
  3532. .ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child,
  3533. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
  3534. .ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child,
  3535. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
  3536. .ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child,
  3537. .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child,
  3538. .ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child,
  3539. .ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child {
  3540. color: currentColor;
  3541. }
  3542. .ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child:after,
  3543. .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child:after,
  3544. .ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child:after,
  3545. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child:after,
  3546. .ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child:after,
  3547. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child:after,
  3548. .ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child:after,
  3549. .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child:after,
  3550. .ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child:after,
  3551. .ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child:after {
  3552. content: '';
  3553. position: absolute;
  3554. top: 0;
  3555. left: 0;
  3556. bottom: 0;
  3557. right: 0;
  3558. background: transparent;
  3559. }
  3560. @keyframes buttonEffect {
  3561. to {
  3562. opacity: 0;
  3563. top: -6px;
  3564. left: -6px;
  3565. bottom: -6px;
  3566. right: -6px;
  3567. border-width: 6px;
  3568. }
  3569. }
  3570. .ant-checkbox {
  3571. white-space: nowrap;
  3572. cursor: pointer;
  3573. outline: none;
  3574. display: inline-block;
  3575. line-height: 1;
  3576. position: relative;
  3577. vertical-align: middle;
  3578. }
  3579. .ant-checkbox-wrapper:hover .ant-checkbox .ant-checkbox-inner,
  3580. .ant-checkbox:hover .ant-checkbox-inner,
  3581. .ant-checkbox-focused .ant-checkbox-inner {
  3582. border-color: #58a3ff;
  3583. }
  3584. .ant-checkbox-inner {
  3585. position: relative;
  3586. top: 0;
  3587. left: 0;
  3588. display: block;
  3589. width: 14px;
  3590. height: 14px;
  3591. border: 1px solid #d9d9d9;
  3592. border-radius: 2px;
  3593. background-color: #fff;
  3594. transition: all .3s;
  3595. }
  3596. .ant-checkbox-inner:after {
  3597. transform: rotate(45deg) scale(0);
  3598. position: absolute;
  3599. left: 4px;
  3600. top: 1px;
  3601. display: table;
  3602. width: 5px;
  3603. height: 8px;
  3604. border: 2px solid #fff;
  3605. border-top: 0;
  3606. border-left: 0;
  3607. content: ' ';
  3608. transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  3609. }
  3610. .ant-checkbox-input {
  3611. position: absolute;
  3612. left: 0;
  3613. z-index: 1;
  3614. cursor: pointer;
  3615. opacity: 0;
  3616. filter: alpha(opacity=0);
  3617. top: 0;
  3618. bottom: 0;
  3619. right: 0;
  3620. width: 100%;
  3621. height: 100%;
  3622. }
  3623. .ant-checkbox-indeterminate .ant-checkbox-inner:after {
  3624. content: ' ';
  3625. transform: scale(1);
  3626. position: absolute;
  3627. left: 2px;
  3628. top: 5px;
  3629. width: 8px;
  3630. height: 1px;
  3631. }
  3632. .ant-checkbox-checked .ant-checkbox-inner:after {
  3633. transform: rotate(45deg) scale(1);
  3634. position: absolute;
  3635. left: 4px;
  3636. top: 1px;
  3637. display: table;
  3638. width: 5px;
  3639. height: 8px;
  3640. border: 2px solid #fff;
  3641. border-top: 0;
  3642. border-left: 0;
  3643. content: ' ';
  3644. transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  3645. }
  3646. .ant-checkbox-checked .ant-checkbox-inner,
  3647. .ant-checkbox-indeterminate .ant-checkbox-inner {
  3648. background-color: #58a3ff;
  3649. border-color: #58a3ff;
  3650. }
  3651. .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
  3652. animation-name: none;
  3653. border-color: rgba(0, 0, 0, 0.25);
  3654. }
  3655. .ant-checkbox-disabled .ant-checkbox-inner {
  3656. border-color: #d9d9d9 !important;
  3657. background-color: #f3f3f3;
  3658. }
  3659. .ant-checkbox-disabled .ant-checkbox-inner:after {
  3660. animation-name: none;
  3661. border-color: #f3f3f3;
  3662. }
  3663. .ant-checkbox-disabled + span {
  3664. color: rgba(0, 0, 0, 0.25);
  3665. cursor: not-allowed;
  3666. }
  3667. .ant-checkbox-wrapper {
  3668. cursor: pointer;
  3669. font-size: 12px;
  3670. display: inline-block;
  3671. }
  3672. .ant-checkbox-wrapper:not(:last-child) {
  3673. margin-right: 8px;
  3674. }
  3675. .ant-checkbox-wrapper + span,
  3676. .ant-checkbox + span {
  3677. padding-left: 8px;
  3678. padding-right: 8px;
  3679. vertical-align: middle;
  3680. }
  3681. .ant-checkbox-group {
  3682. font-size: 12px;
  3683. }
  3684. .ant-checkbox-group-item {
  3685. display: inline-block;
  3686. }
  3687. @media \0screen {
  3688. .ant-checkbox-checked .ant-checkbox-inner:before,
  3689. .ant-checkbox-checked .ant-checkbox-inner:after {
  3690. font-family: 'anticon';
  3691. text-rendering: optimizeLegibility;
  3692. -webkit-font-smoothing: antialiased;
  3693. -moz-osx-font-smoothing: grayscale;
  3694. content: "\E632";
  3695. font-weight: bold;
  3696. font-size: 8px;
  3697. border: 0;
  3698. color: #fff;
  3699. left: 2px;
  3700. top: 3px;
  3701. position: absolute;
  3702. }
  3703. }
  3704. .ant-input-search-icon {
  3705. cursor: pointer;
  3706. transition: all .3s;
  3707. font-size: 14px;
  3708. }
  3709. .ant-input-search-icon:hover {
  3710. color: #58a3ff;
  3711. }
  3712. .ant-search-input-wrapper {
  3713. display: inline-block;
  3714. vertical-align: middle;
  3715. }
  3716. .ant-search-input.ant-input-group .ant-input:first-child,
  3717. .ant-search-input.ant-input-group .ant-select:first-child {
  3718. border-radius: 4px;
  3719. position: absolute;
  3720. top: -1px;
  3721. width: 100%;
  3722. }
  3723. .ant-search-input.ant-input-group .ant-input:first-child {
  3724. padding-right: 36px;
  3725. }
  3726. .ant-search-input .ant-search-btn {
  3727. color: rgba(0, 0, 0, 0.65);
  3728. background-color: #fff;
  3729. border-color: #d9d9d9;
  3730. border-radius: 0 3px 3px 0;
  3731. left: -1px;
  3732. position: relative;
  3733. border-width: 0 0 0 1px;
  3734. z-index: 2;
  3735. padding-left: 8px;
  3736. padding-right: 8px;
  3737. }
  3738. .ant-search-input .ant-search-btn > a:only-child {
  3739. color: currentColor;
  3740. }
  3741. .ant-search-input .ant-search-btn > a:only-child:after {
  3742. content: '';
  3743. position: absolute;
  3744. top: 0;
  3745. left: 0;
  3746. bottom: 0;
  3747. right: 0;
  3748. background: transparent;
  3749. }
  3750. .ant-search-input .ant-search-btn:hover,
  3751. .ant-search-input .ant-search-btn:focus {
  3752. color: #80b9ff;
  3753. background-color: #fff;
  3754. border-color: #80b9ff;
  3755. }
  3756. .ant-search-input .ant-search-btn:hover > a:only-child,
  3757. .ant-search-input .ant-search-btn:focus > a:only-child {
  3758. color: currentColor;
  3759. }
  3760. .ant-search-input .ant-search-btn:hover > a:only-child:after,
  3761. .ant-search-input .ant-search-btn:focus > a:only-child:after {
  3762. content: '';
  3763. position: absolute;
  3764. top: 0;
  3765. left: 0;
  3766. bottom: 0;
  3767. right: 0;
  3768. background: transparent;
  3769. }
  3770. .ant-search-input .ant-search-btn:active,
  3771. .ant-search-input .ant-search-btn.active {
  3772. color: #4386e7;
  3773. background-color: #fff;
  3774. border-color: #4386e7;
  3775. }
  3776. .ant-search-input .ant-search-btn:active > a:only-child,
  3777. .ant-search-input .ant-search-btn.active > a:only-child {
  3778. color: currentColor;
  3779. }
  3780. .ant-search-input .ant-search-btn:active > a:only-child:after,
  3781. .ant-search-input .ant-search-btn.active > a:only-child:after {
  3782. content: '';
  3783. position: absolute;
  3784. top: 0;
  3785. left: 0;
  3786. bottom: 0;
  3787. right: 0;
  3788. background: transparent;
  3789. }
  3790. .ant-search-input .ant-search-btn.disabled,
  3791. .ant-search-input .ant-search-btn[disabled],
  3792. .ant-search-input .ant-search-btn.disabled:hover,
  3793. .ant-search-input .ant-search-btn[disabled]:hover,
  3794. .ant-search-input .ant-search-btn.disabled:focus,
  3795. .ant-search-input .ant-search-btn[disabled]:focus,
  3796. .ant-search-input .ant-search-btn.disabled:active,
  3797. .ant-search-input .ant-search-btn[disabled]:active,
  3798. .ant-search-input .ant-search-btn.disabled.active,
  3799. .ant-search-input .ant-search-btn[disabled].active {
  3800. color: rgba(0, 0, 0, 0.25);
  3801. background-color: #f7f7f7;
  3802. border-color: #d9d9d9;
  3803. }
  3804. .ant-search-input .ant-search-btn.disabled > a:only-child,
  3805. .ant-search-input .ant-search-btn[disabled] > a:only-child,
  3806. .ant-search-input .ant-search-btn.disabled:hover > a:only-child,
  3807. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child,
  3808. .ant-search-input .ant-search-btn.disabled:focus > a:only-child,
  3809. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child,
  3810. .ant-search-input .ant-search-btn.disabled:active > a:only-child,
  3811. .ant-search-input .ant-search-btn[disabled]:active > a:only-child,
  3812. .ant-search-input .ant-search-btn.disabled.active > a:only-child,
  3813. .ant-search-input .ant-search-btn[disabled].active > a:only-child {
  3814. color: currentColor;
  3815. }
  3816. .ant-search-input .ant-search-btn.disabled > a:only-child:after,
  3817. .ant-search-input .ant-search-btn[disabled] > a:only-child:after,
  3818. .ant-search-input .ant-search-btn.disabled:hover > a:only-child:after,
  3819. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child:after,
  3820. .ant-search-input .ant-search-btn.disabled:focus > a:only-child:after,
  3821. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child:after,
  3822. .ant-search-input .ant-search-btn.disabled:active > a:only-child:after,
  3823. .ant-search-input .ant-search-btn[disabled]:active > a:only-child:after,
  3824. .ant-search-input .ant-search-btn.disabled.active > a:only-child:after,
  3825. .ant-search-input .ant-search-btn[disabled].active > a:only-child:after {
  3826. content: '';
  3827. position: absolute;
  3828. top: 0;
  3829. left: 0;
  3830. bottom: 0;
  3831. right: 0;
  3832. background: transparent;
  3833. }
  3834. .ant-search-input .ant-search-btn:hover,
  3835. .ant-search-input .ant-search-btn:focus,
  3836. .ant-search-input .ant-search-btn:active,
  3837. .ant-search-input .ant-search-btn.active {
  3838. background: #fff;
  3839. }
  3840. .ant-search-input .ant-search-btn:hover {
  3841. border-color: #d9d9d9;
  3842. }
  3843. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty,
  3844. .ant-search-input:hover .ant-search-btn-noempty {
  3845. color: #fff;
  3846. background-color: #58a3ff;
  3847. border-color: #58a3ff;
  3848. }
  3849. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child,
  3850. .ant-search-input:hover .ant-search-btn-noempty > a:only-child {
  3851. color: currentColor;
  3852. }
  3853. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child:after,
  3854. .ant-search-input:hover .ant-search-btn-noempty > a:only-child:after {
  3855. content: '';
  3856. position: absolute;
  3857. top: 0;
  3858. left: 0;
  3859. bottom: 0;
  3860. right: 0;
  3861. background: transparent;
  3862. }
  3863. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover,
  3864. .ant-search-input:hover .ant-search-btn-noempty:hover,
  3865. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus,
  3866. .ant-search-input:hover .ant-search-btn-noempty:focus {
  3867. color: #fff;
  3868. background-color: #80b9ff;
  3869. border-color: #80b9ff;
  3870. }
  3871. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child,
  3872. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child,
  3873. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child,
  3874. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child {
  3875. color: currentColor;
  3876. }
  3877. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child:after,
  3878. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child:after,
  3879. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child:after,
  3880. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child:after {
  3881. content: '';
  3882. position: absolute;
  3883. top: 0;
  3884. left: 0;
  3885. bottom: 0;
  3886. right: 0;
  3887. background: transparent;
  3888. }
  3889. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active,
  3890. .ant-search-input:hover .ant-search-btn-noempty:active,
  3891. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active,
  3892. .ant-search-input:hover .ant-search-btn-noempty.active {
  3893. color: #fff;
  3894. background-color: #4386e7;
  3895. border-color: #4386e7;
  3896. }
  3897. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child,
  3898. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child,
  3899. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child,
  3900. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child {
  3901. color: currentColor;
  3902. }
  3903. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child:after,
  3904. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child:after,
  3905. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child:after,
  3906. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child:after {
  3907. content: '';
  3908. position: absolute;
  3909. top: 0;
  3910. left: 0;
  3911. bottom: 0;
  3912. right: 0;
  3913. background: transparent;
  3914. }
  3915. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled,
  3916. .ant-search-input:hover .ant-search-btn-noempty.disabled,
  3917. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled],
  3918. .ant-search-input:hover .ant-search-btn-noempty[disabled],
  3919. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover,
  3920. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover,
  3921. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover,
  3922. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover,
  3923. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus,
  3924. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus,
  3925. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus,
  3926. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus,
  3927. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active,
  3928. .ant-search-input:hover .ant-search-btn-noempty.disabled:active,
  3929. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active,
  3930. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active,
  3931. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active,
  3932. .ant-search-input:hover .ant-search-btn-noempty.disabled.active,
  3933. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active,
  3934. .ant-search-input:hover .ant-search-btn-noempty[disabled].active {
  3935. color: rgba(0, 0, 0, 0.25);
  3936. background-color: #f7f7f7;
  3937. border-color: #d9d9d9;
  3938. }
  3939. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child,
  3940. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child,
  3941. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child,
  3942. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child,
  3943. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child,
  3944. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child,
  3945. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3946. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3947. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child,
  3948. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child,
  3949. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3950. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3951. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child,
  3952. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child,
  3953. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child,
  3954. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child,
  3955. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child,
  3956. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child,
  3957. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child,
  3958. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child {
  3959. color: currentColor;
  3960. }
  3961. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child:after,
  3962. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child:after,
  3963. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child:after,
  3964. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child:after,
  3965. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3966. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3967. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3968. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3969. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3970. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3971. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3972. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3973. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3974. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3975. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3976. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3977. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3978. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3979. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child:after,
  3980. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child:after {
  3981. content: '';
  3982. position: absolute;
  3983. top: 0;
  3984. left: 0;
  3985. bottom: 0;
  3986. right: 0;
  3987. background: transparent;
  3988. }
  3989. .ant-search-input .ant-select-combobox .ant-select-selection__rendered {
  3990. margin-right: 29px;
  3991. }
  3992. .ant-input {
  3993. position: relative;
  3994. display: inline-block;
  3995. padding: 4px 7px;
  3996. width: 100%;
  3997. height: 28px;
  3998. cursor: text;
  3999. font-size: 12px;
  4000. line-height: 1.5;
  4001. color: rgba(0, 0, 0, 0.65);
  4002. background-color: #fff;
  4003. background-image: none;
  4004. border: 1px solid #d9d9d9;
  4005. border-radius: 4px;
  4006. transition: all .3s;
  4007. }
  4008. .ant-input::-moz-placeholder {
  4009. color: #ccc;
  4010. opacity: 1;
  4011. }
  4012. .ant-input:-ms-input-placeholder {
  4013. color: #ccc;
  4014. }
  4015. .ant-input::-webkit-input-placeholder {
  4016. color: #ccc;
  4017. }
  4018. .ant-input:hover {
  4019. border-color: #80b9ff;
  4020. }
  4021. .ant-input:focus {
  4022. border-color: #80b9ff;
  4023. outline: 0;
  4024. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  4025. }
  4026. .ant-input[disabled] {
  4027. background-color: #f7f7f7;
  4028. opacity: 1;
  4029. cursor: not-allowed;
  4030. color: rgba(0, 0, 0, 0.25);
  4031. }
  4032. .ant-input[disabled]:hover {
  4033. border-color: #e2e2e2;
  4034. }
  4035. textarea.ant-input {
  4036. max-width: 100%;
  4037. height: auto;
  4038. vertical-align: bottom;
  4039. }
  4040. .ant-input-lg {
  4041. padding: 6px 7px;
  4042. height: 32px;
  4043. }
  4044. .ant-input-sm {
  4045. padding: 1px 7px;
  4046. height: 22px;
  4047. }
  4048. .ant-input-group {
  4049. position: relative;
  4050. display: table;
  4051. border-collapse: separate;
  4052. border-spacing: 0;
  4053. width: 100%;
  4054. }
  4055. .ant-input-group[class*="col-"] {
  4056. float: none;
  4057. padding-left: 0;
  4058. padding-right: 0;
  4059. }
  4060. .ant-input-group > [class*="col-"] {
  4061. padding-right: 8px;
  4062. }
  4063. .ant-input-group-addon,
  4064. .ant-input-group-wrap,
  4065. .ant-input-group > .ant-input {
  4066. display: table-cell;
  4067. }
  4068. .ant-input-group-addon:not(:first-child):not(:last-child),
  4069. .ant-input-group-wrap:not(:first-child):not(:last-child),
  4070. .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  4071. border-radius: 0;
  4072. }
  4073. .ant-input-group-addon,
  4074. .ant-input-group-wrap {
  4075. width: 1px;
  4076. white-space: nowrap;
  4077. vertical-align: middle;
  4078. }
  4079. .ant-input-group-wrap > * {
  4080. display: block !important;
  4081. }
  4082. .ant-input-group .ant-input {
  4083. position: relative;
  4084. z-index: 2;
  4085. float: left;
  4086. width: 100%;
  4087. margin-bottom: 0;
  4088. }
  4089. .ant-input-group-addon {
  4090. padding: 4px 7px;
  4091. font-size: 12px;
  4092. font-weight: normal;
  4093. line-height: 1;
  4094. color: rgba(0, 0, 0, 0.65);
  4095. text-align: center;
  4096. background-color: #eee;
  4097. border: 1px solid #d9d9d9;
  4098. border-radius: 4px;
  4099. position: relative;
  4100. transition: all .3s;
  4101. }
  4102. .ant-input-group-addon .ant-select {
  4103. margin: -5px -7px;
  4104. }
  4105. .ant-input-group-addon .ant-select .ant-select-selection {
  4106. background-color: inherit;
  4107. margin: -1px;
  4108. border: 1px solid transparent;
  4109. box-shadow: none;
  4110. }
  4111. .ant-input-group-addon .ant-select-open .ant-select-selection,
  4112. .ant-input-group-addon .ant-select-focused .ant-select-selection {
  4113. color: #58a3ff;
  4114. }
  4115. .ant-input-group-addon > i:only-child:after {
  4116. position: absolute;
  4117. content: '';
  4118. top: 0;
  4119. left: 0;
  4120. right: 0;
  4121. bottom: 0;
  4122. }
  4123. .ant-input-group > span > .ant-input:first-child,
  4124. .ant-input-group > .ant-input:first-child,
  4125. .ant-input-group-addon:first-child {
  4126. border-bottom-right-radius: 0;
  4127. border-top-right-radius: 0;
  4128. }
  4129. .ant-input-group > span > .ant-input:first-child .ant-select .ant-select-selection,
  4130. .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
  4131. .ant-input-group-addon:first-child .ant-select .ant-select-selection {
  4132. border-bottom-right-radius: 0;
  4133. border-top-right-radius: 0;
  4134. }
  4135. .ant-input-group > .ant-input-preSuffix-wrapper:not(:first-child) .ant-input {
  4136. border-bottom-left-radius: 0;
  4137. border-top-left-radius: 0;
  4138. }
  4139. .ant-input-group > .ant-input-preSuffix-wrapper:not(:last-child) .ant-input {
  4140. border-bottom-right-radius: 0;
  4141. border-top-right-radius: 0;
  4142. }
  4143. .ant-input-group-addon:first-child {
  4144. border-right: 0;
  4145. }
  4146. .ant-input-group-addon:last-child {
  4147. border-left: 0;
  4148. }
  4149. .ant-input-group > .ant-input:last-child,
  4150. .ant-input-group-addon:last-child {
  4151. border-bottom-left-radius: 0;
  4152. border-top-left-radius: 0;
  4153. }
  4154. .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
  4155. .ant-input-group-addon:last-child .ant-select .ant-select-selection {
  4156. border-bottom-left-radius: 0;
  4157. border-top-left-radius: 0;
  4158. }
  4159. .ant-input-group-lg .ant-input,
  4160. .ant-input-group-lg > .ant-input-group-addon {
  4161. padding: 6px 7px;
  4162. height: 32px;
  4163. }
  4164. .ant-input-group-sm .ant-input,
  4165. .ant-input-group-sm > .ant-input-group-addon {
  4166. padding: 1px 7px;
  4167. height: 22px;
  4168. }
  4169. .ant-input-group .ant-input-preSuffix-wrapper {
  4170. display: table-cell;
  4171. width: 100%;
  4172. float: left;
  4173. }
  4174. .ant-input-group.ant-input-group-compact > * {
  4175. border-radius: 0;
  4176. border-right-width: 0;
  4177. vertical-align: middle;
  4178. }
  4179. .ant-input-group.ant-input-group-compact .ant-input {
  4180. float: none;
  4181. z-index: auto;
  4182. }
  4183. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection,
  4184. .ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input {
  4185. border-radius: 0;
  4186. border-right-width: 0;
  4187. }
  4188. .ant-input-group.ant-input-group-compact > *:first-child,
  4189. .ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection,
  4190. .ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input {
  4191. border-top-left-radius: 4px;
  4192. border-bottom-left-radius: 4px;
  4193. }
  4194. .ant-input-group.ant-input-group-compact > *:last-child,
  4195. .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection,
  4196. .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input {
  4197. border-top-right-radius: 4px;
  4198. border-bottom-right-radius: 4px;
  4199. border-right-width: 1px;
  4200. }
  4201. .ant-input-preSuffix-wrapper {
  4202. position: relative;
  4203. display: inline-block;
  4204. width: 100%;
  4205. }
  4206. .ant-input-preSuffix-wrapper .ant-input {
  4207. z-index: 1;
  4208. }
  4209. .ant-input-preSuffix-wrapper:hover .ant-input {
  4210. border-color: #80b9ff;
  4211. }
  4212. .ant-input-preSuffix-wrapper .ant-input-prefix,
  4213. .ant-input-preSuffix-wrapper .ant-input-suffix {
  4214. position: absolute;
  4215. top: 50%;
  4216. transform: translateY(-50%);
  4217. z-index: 2;
  4218. line-height: 1.2;
  4219. }
  4220. .ant-input-preSuffix-wrapper .ant-input-prefix {
  4221. left: 7px;
  4222. }
  4223. .ant-input-preSuffix-wrapper .ant-input-suffix {
  4224. right: 7px;
  4225. }
  4226. .ant-input-preSuffix-wrapper .ant-input:not(:first-child) {
  4227. padding-left: 24px;
  4228. }
  4229. .ant-input-preSuffix-wrapper .ant-input:not(:last-child) {
  4230. padding-right: 24px;
  4231. }
  4232. .ant-message {
  4233. font-size: 12px;
  4234. position: fixed;
  4235. z-index: 1010;
  4236. width: 100%;
  4237. top: 16px;
  4238. left: 0;
  4239. pointer-events: none;
  4240. }
  4241. .ant-message-notice {
  4242. padding: 8px;
  4243. text-align: center;
  4244. }
  4245. .ant-message-notice:first-child {
  4246. margin-top: -8px;
  4247. }
  4248. .ant-message-notice-content {
  4249. padding: 8px 16px;
  4250. border-radius: 4px;
  4251. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  4252. background: #fff;
  4253. display: inline-block;
  4254. pointer-events: all;
  4255. }
  4256. .ant-message-success .anticon {
  4257. color: #00a854;
  4258. }
  4259. .ant-message-error .anticon {
  4260. color: #f04134;
  4261. }
  4262. .ant-message-warning .anticon {
  4263. color: #ffbf00;
  4264. }
  4265. .ant-message-info .anticon,
  4266. .ant-message-loading .anticon {
  4267. color: #58a3ff;
  4268. }
  4269. .ant-message .anticon {
  4270. margin-right: 8px;
  4271. font-size: 14px;
  4272. top: 1px;
  4273. position: relative;
  4274. }
  4275. .ant-message-notice.move-up-leave.move-up-leave-active {
  4276. animation-name: MessageMoveOut;
  4277. overflow: hidden;
  4278. animation-duration: .3s;
  4279. }
  4280. @keyframes MessageMoveOut {
  4281. 0% {
  4282. opacity: 1;
  4283. max-height: 150px;
  4284. padding: 8px;
  4285. }
  4286. 100% {
  4287. opacity: 0;
  4288. max-height: 0;
  4289. padding: 0;
  4290. }
  4291. }
  4292. legend {
  4293. display: block;
  4294. width: 100%;
  4295. padding: 0;
  4296. margin-bottom: 20px;
  4297. font-size: 14px;
  4298. line-height: inherit;
  4299. color: rgba(0, 0, 0, 0.43);
  4300. border: 0;
  4301. border-bottom: 1px solid #d9d9d9;
  4302. }
  4303. label {
  4304. font-size: 12px;
  4305. }
  4306. input[type="search"] {
  4307. box-sizing: border-box;
  4308. }
  4309. input[type="radio"],
  4310. input[type="checkbox"] {
  4311. line-height: normal;
  4312. }
  4313. input[type="file"] {
  4314. display: block;
  4315. }
  4316. input[type="range"] {
  4317. display: block;
  4318. width: 100%;
  4319. }
  4320. select[multiple],
  4321. select[size] {
  4322. height: auto;
  4323. }
  4324. input[type="file"]:focus,
  4325. input[type="radio"]:focus,
  4326. input[type="checkbox"]:focus {
  4327. outline: thin dotted;
  4328. outline: 5px auto -webkit-focus-ring-color;
  4329. outline-offset: -2px;
  4330. }
  4331. output {
  4332. display: block;
  4333. padding-top: 15px;
  4334. font-size: 12px;
  4335. line-height: 1.5;
  4336. color: rgba(0, 0, 0, 0.65);
  4337. }
  4338. label {
  4339. position: relative;
  4340. }
  4341. label > .anticon {
  4342. vertical-align: top;
  4343. font-size: 12px;
  4344. }
  4345. .ant-form-item-required:before {
  4346. display: inline-block;
  4347. margin-right: 4px;
  4348. content: "*";
  4349. font-family: SimSun;
  4350. line-height: 1;
  4351. font-size: 12px;
  4352. color: #f04134;
  4353. }
  4354. .ant-form-hide-required-mark .ant-form-item-required:before {
  4355. display: none;
  4356. }
  4357. input[type="radio"][disabled],
  4358. input[type="checkbox"][disabled],
  4359. input[type="radio"].disabled,
  4360. input[type="checkbox"].disabled {
  4361. cursor: not-allowed;
  4362. }
  4363. .ant-radio-inline.disabled,
  4364. .ant-radio-vertical.disabled,
  4365. .ant-checkbox-inline.disabled,
  4366. .ant-checkbox-vertical.disabled {
  4367. cursor: not-allowed;
  4368. }
  4369. .ant-radio.disabled label,
  4370. .ant-checkbox.disabled label {
  4371. cursor: not-allowed;
  4372. }
  4373. .ant-form-item {
  4374. font-size: 12px;
  4375. margin-bottom: 24px;
  4376. color: rgba(0, 0, 0, 0.65);
  4377. vertical-align: top;
  4378. }
  4379. .ant-form-item > .ant-form-item,
  4380. .ant-form-item :not(.ant-form) > .ant-form-item {
  4381. margin-bottom: -24px;
  4382. }
  4383. .ant-form-item-control {
  4384. line-height: 32px;
  4385. position: relative;
  4386. zoom: 1;
  4387. }
  4388. .ant-form-item-control:before,
  4389. .ant-form-item-control:after {
  4390. content: " ";
  4391. display: table;
  4392. }
  4393. .ant-form-item-control:after {
  4394. clear: both;
  4395. visibility: hidden;
  4396. font-size: 0;
  4397. height: 0;
  4398. }
  4399. .ant-form-item-with-help {
  4400. margin-bottom: 6px;
  4401. }
  4402. .ant-form-item-label {
  4403. text-align: right;
  4404. vertical-align: middle;
  4405. line-height: 32px;
  4406. display: inline-block;
  4407. overflow: hidden;
  4408. text-overflow: ellipsis;
  4409. white-space: nowrap;
  4410. }
  4411. .ant-form-item-label label {
  4412. color: rgba(0, 0, 0, 0.65);
  4413. }
  4414. .ant-form-item-label label:after {
  4415. content: ":";
  4416. margin: 0 8px 0 2px;
  4417. position: relative;
  4418. top: -0.5px;
  4419. }
  4420. .ant-form-item .ant-switch {
  4421. margin: 4px 0;
  4422. }
  4423. .ant-form-item-no-colon .ant-form-item-label label:after {
  4424. content: " ";
  4425. }
  4426. .ant-form-explain {
  4427. line-height: 1.5;
  4428. }
  4429. .ant-form-explain,
  4430. .ant-form-extra {
  4431. color: rgba(0, 0, 0, 0.43);
  4432. }
  4433. .ant-form-text {
  4434. display: inline-block;
  4435. padding-right: 8px;
  4436. }
  4437. .ant-form-split {
  4438. display: block;
  4439. text-align: center;
  4440. }
  4441. form .has-feedback .ant-input {
  4442. padding-right: 24px;
  4443. }
  4444. form .has-feedback .ant-select-arrow,
  4445. form .has-feedback .ant-select-selection__clear {
  4446. right: 28px;
  4447. }
  4448. form .has-feedback .ant-select-selection-selected-value {
  4449. padding-right: 42px;
  4450. }
  4451. form .has-feedback .ant-cascader-picker-arrow {
  4452. padding-right: 36px;
  4453. }
  4454. form .has-feedback .ant-cascader-picker-clear {
  4455. right: 28px;
  4456. }
  4457. form .has-feedback .ant-calendar-picker-icon,
  4458. form .has-feedback .ant-calendar-picker-clear {
  4459. right: 28px;
  4460. }
  4461. form textarea.ant-input {
  4462. height: auto;
  4463. }
  4464. form .ant-upload {
  4465. background: transparent;
  4466. }
  4467. form input[type="radio"],
  4468. form input[type="checkbox"] {
  4469. width: 14px;
  4470. height: 14px;
  4471. }
  4472. form .ant-radio-inline,
  4473. form .ant-checkbox-inline {
  4474. display: inline-block;
  4475. vertical-align: middle;
  4476. font-weight: normal;
  4477. cursor: pointer;
  4478. margin-left: 8px;
  4479. }
  4480. form .ant-radio-inline:first-child,
  4481. form .ant-checkbox-inline:first-child {
  4482. margin-left: 0;
  4483. }
  4484. form .ant-checkbox-vertical,
  4485. form .ant-radio-vertical {
  4486. display: block;
  4487. }
  4488. form .ant-checkbox-vertical + .ant-checkbox-vertical,
  4489. form .ant-radio-vertical + .ant-radio-vertical {
  4490. margin-left: 0;
  4491. }
  4492. form .ant-input-number {
  4493. margin-top: -1px;
  4494. margin-right: 8px;
  4495. }
  4496. form .ant-select,
  4497. form .ant-cascader-picker {
  4498. width: 100%;
  4499. }
  4500. .ant-input-group-wrap .ant-select-selection {
  4501. border-bottom-left-radius: 0;
  4502. border-top-left-radius: 0;
  4503. }
  4504. .ant-input-group-wrap .ant-select-selection:hover {
  4505. border-color: #d9d9d9;
  4506. }
  4507. .ant-input-group-wrap .ant-select-selection--single {
  4508. margin-left: -1px;
  4509. height: 32px;
  4510. background-color: #eee;
  4511. }
  4512. .ant-input-group-wrap .ant-select-selection--single .ant-select-selection__rendered {
  4513. padding-left: 8px;
  4514. padding-right: 25px;
  4515. line-height: 30px;
  4516. }
  4517. .ant-input-group-wrap .ant-select-open .ant-select-selection {
  4518. border-color: #d9d9d9;
  4519. box-shadow: none;
  4520. }
  4521. .ant-form-vertical .ant-form-item-label,
  4522. .ant-col-24.ant-form-item-label {
  4523. padding: 0 0 8px;
  4524. display: block;
  4525. text-align: left;
  4526. }
  4527. .ant-form-vertical .ant-form-item-label label:after,
  4528. .ant-col-24.ant-form-item-label label:after {
  4529. content: '';
  4530. }
  4531. .ant-form-inline .ant-form-item {
  4532. display: inline-block;
  4533. margin-right: 10px;
  4534. margin-bottom: 0;
  4535. }
  4536. .ant-form-inline .ant-form-item-with-help {
  4537. margin-bottom: 24px;
  4538. }
  4539. .ant-form-inline .ant-form-item > div {
  4540. display: inline-block;
  4541. vertical-align: middle;
  4542. }
  4543. .ant-form-inline .ant-form-text {
  4544. display: inline-block;
  4545. }
  4546. .ant-form-inline .has-feedback {
  4547. display: inline-block;
  4548. }
  4549. .ant-form-inline .ant-form-explain {
  4550. position: absolute;
  4551. }
  4552. .has-success.has-feedback:after,
  4553. .has-warning.has-feedback:after,
  4554. .has-error.has-feedback:after,
  4555. .is-validating.has-feedback:after {
  4556. position: absolute;
  4557. top: 0;
  4558. right: 0;
  4559. visibility: visible;
  4560. pointer-events: none;
  4561. width: 32px;
  4562. height: 32px;
  4563. line-height: 32px;
  4564. text-align: center;
  4565. font-size: 14px;
  4566. animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  4567. font-family: 'anticon';
  4568. text-rendering: optimizeLegibility;
  4569. -webkit-font-smoothing: antialiased;
  4570. -moz-osx-font-smoothing: grayscale;
  4571. content: "";
  4572. }
  4573. .has-success.has-feedback:after {
  4574. animation-name: diffZoomIn1 !important;
  4575. }
  4576. .has-error.has-feedback:after {
  4577. animation-name: diffZoomIn2 !important;
  4578. }
  4579. .has-warning.has-feedback:after {
  4580. animation-name: diffZoomIn3 !important;
  4581. }
  4582. .has-success.has-feedback:after {
  4583. content: '\E630';
  4584. color: #00a854;
  4585. }
  4586. .has-warning .ant-form-explain,
  4587. .has-warning .ant-form-split {
  4588. color: #ffbf00;
  4589. }
  4590. .has-warning .ant-input,
  4591. .has-warning .ant-input:hover {
  4592. border-color: #ffbf00;
  4593. }
  4594. .has-warning .ant-input:focus {
  4595. border-color: #ffce3d;
  4596. outline: 0;
  4597. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4598. }
  4599. .has-warning .ant-input:not([disabled]):hover {
  4600. border-color: #ffbf00;
  4601. }
  4602. .has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
  4603. border-color: #ffce3d;
  4604. outline: 0;
  4605. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4606. }
  4607. .has-warning .ant-input-group-addon {
  4608. color: #ffbf00;
  4609. border-color: #ffbf00;
  4610. background-color: #fff;
  4611. }
  4612. .has-warning .has-feedback {
  4613. color: #ffbf00;
  4614. }
  4615. .has-warning.has-feedback:after {
  4616. content: '\E62C';
  4617. color: #ffbf00;
  4618. }
  4619. .has-warning .ant-select-selection {
  4620. border-color: #ffbf00;
  4621. }
  4622. .has-warning .ant-select-open .ant-select-selection,
  4623. .has-warning .ant-select-focused .ant-select-selection {
  4624. border-color: #ffce3d;
  4625. outline: 0;
  4626. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4627. }
  4628. .has-warning .ant-calendar-picker-icon:after,
  4629. .has-warning .ant-picker-icon:after,
  4630. .has-warning .ant-select-arrow,
  4631. .has-warning .ant-cascader-picker-arrow {
  4632. color: #ffbf00;
  4633. }
  4634. .has-warning .ant-input-number,
  4635. .has-warning .ant-time-picker-input {
  4636. border-color: #ffbf00;
  4637. }
  4638. .has-warning .ant-input-number-focused,
  4639. .has-warning .ant-time-picker-input-focused,
  4640. .has-warning .ant-input-number:focus,
  4641. .has-warning .ant-time-picker-input:focus {
  4642. border-color: #ffce3d;
  4643. outline: 0;
  4644. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4645. }
  4646. .has-warning .ant-input-number:not([disabled]):hover,
  4647. .has-warning .ant-time-picker-input:not([disabled]):hover {
  4648. border-color: #ffbf00;
  4649. }
  4650. .has-error .ant-form-explain,
  4651. .has-error .ant-form-split {
  4652. color: #f04134;
  4653. }
  4654. .has-error .ant-input,
  4655. .has-error .ant-input:hover {
  4656. border-color: #f04134;
  4657. }
  4658. .has-error .ant-input:focus {
  4659. border-color: #f46e65;
  4660. outline: 0;
  4661. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4662. }
  4663. .has-error .ant-input:not([disabled]):hover {
  4664. border-color: #f04134;
  4665. }
  4666. .has-error .ant-calendar-picker-open .ant-calendar-picker-input {
  4667. border-color: #f46e65;
  4668. outline: 0;
  4669. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4670. }
  4671. .has-error .ant-input-group-addon {
  4672. color: #f04134;
  4673. border-color: #f04134;
  4674. background-color: #fff;
  4675. }
  4676. .has-error .has-feedback {
  4677. color: #f04134;
  4678. }
  4679. .has-error.has-feedback:after {
  4680. content: '\E62E';
  4681. color: #f04134;
  4682. }
  4683. .has-error .ant-select-selection {
  4684. border-color: #f04134;
  4685. }
  4686. .has-error .ant-select-open .ant-select-selection,
  4687. .has-error .ant-select-focused .ant-select-selection {
  4688. border-color: #f46e65;
  4689. outline: 0;
  4690. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4691. }
  4692. .has-error .ant-calendar-picker-icon:after,
  4693. .has-error .ant-picker-icon:after,
  4694. .has-error .ant-select-arrow,
  4695. .has-error .ant-cascader-picker-arrow {
  4696. color: #f04134;
  4697. }
  4698. .has-error .ant-input-number,
  4699. .has-error .ant-time-picker-input {
  4700. border-color: #f04134;
  4701. }
  4702. .has-error .ant-input-number-focused,
  4703. .has-error .ant-time-picker-input-focused,
  4704. .has-error .ant-input-number:focus,
  4705. .has-error .ant-time-picker-input:focus {
  4706. border-color: #f46e65;
  4707. outline: 0;
  4708. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4709. }
  4710. .has-error .ant-input-number:not([disabled]):hover,
  4711. .has-error .ant-time-picker-input:not([disabled]):hover {
  4712. border-color: #f04134;
  4713. }
  4714. .has-error .ant-mention-wrapper .ant-mention-editor,
  4715. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover {
  4716. border-color: #f04134;
  4717. }
  4718. .has-error .ant-mention-wrapper.active .ant-mention-editor,
  4719. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
  4720. border-color: #f46e65;
  4721. outline: 0;
  4722. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4723. }
  4724. .is-validating.has-feedback:after {
  4725. display: inline-block;
  4726. animation: loadingCircle 1s infinite linear;
  4727. content: "\E64D";
  4728. color: #58a3ff;
  4729. }
  4730. .ant-advanced-search-form .ant-form-item {
  4731. margin-bottom: 16px;
  4732. }
  4733. .ant-advanced-search-form .ant-input,
  4734. .ant-advanced-search-form .ant-input-group .ant-input,
  4735. .ant-advanced-search-form .ant-input-group .ant-input-group-addon {
  4736. height: 28px;
  4737. }
  4738. @keyframes diffZoomIn1 {
  4739. 0% {
  4740. transform: scale(0);
  4741. }
  4742. 100% {
  4743. transform: scale(1);
  4744. }
  4745. }
  4746. @keyframes diffZoomIn2 {
  4747. 0% {
  4748. transform: scale(0);
  4749. }
  4750. 100% {
  4751. transform: scale(1);
  4752. }
  4753. }
  4754. @keyframes diffZoomIn3 {
  4755. 0% {
  4756. transform: scale(0);
  4757. }
  4758. 100% {
  4759. transform: scale(1);
  4760. }
  4761. }
  4762. .ant-row {
  4763. position: relative;
  4764. margin-left: 0;
  4765. margin-right: 0;
  4766. height: auto;
  4767. zoom: 1;
  4768. display: block;
  4769. }
  4770. .ant-row:before,
  4771. .ant-row:after {
  4772. content: " ";
  4773. display: table;
  4774. }
  4775. .ant-row:after {
  4776. clear: both;
  4777. visibility: hidden;
  4778. font-size: 0;
  4779. height: 0;
  4780. }
  4781. .ant-row-flex {
  4782. display: flex;
  4783. flex-direction: row;
  4784. flex-wrap: wrap;
  4785. }
  4786. .ant-row-flex:before,
  4787. .ant-row-flex:after {
  4788. display: flex;
  4789. }
  4790. .ant-row-flex-start {
  4791. justify-content: flex-start;
  4792. }
  4793. .ant-row-flex-center {
  4794. justify-content: center;
  4795. }
  4796. .ant-row-flex-end {
  4797. justify-content: flex-end;
  4798. }
  4799. .ant-row-flex-space-between {
  4800. justify-content: space-between;
  4801. }
  4802. .ant-row-flex-space-around {
  4803. justify-content: space-around;
  4804. }
  4805. .ant-row-flex-top {
  4806. align-items: flex-start;
  4807. }
  4808. .ant-row-flex-middle {
  4809. align-items: center;
  4810. }
  4811. .ant-row-flex-bottom {
  4812. align-items: flex-end;
  4813. }
  4814. .ant-col {
  4815. position: relative;
  4816. display: block;
  4817. }
  4818. .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 {
  4819. position: relative;
  4820. min-height: 1px;
  4821. padding-left: 0;
  4822. padding-right: 0;
  4823. }
  4824. .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 {
  4825. float: left;
  4826. flex: 0 0 auto;
  4827. }
  4828. .ant-col-24 {
  4829. display: block;
  4830. width: 100%;
  4831. }
  4832. .ant-col-push-24 {
  4833. left: 100%;
  4834. }
  4835. .ant-col-pull-24 {
  4836. right: 100%;
  4837. }
  4838. .ant-col-offset-24 {
  4839. margin-left: 100%;
  4840. }
  4841. .ant-col-order-24 {
  4842. order: 24;
  4843. }
  4844. .ant-col-23 {
  4845. display: block;
  4846. width: 95.83333333%;
  4847. }
  4848. .ant-col-push-23 {
  4849. left: 95.83333333%;
  4850. }
  4851. .ant-col-pull-23 {
  4852. right: 95.83333333%;
  4853. }
  4854. .ant-col-offset-23 {
  4855. margin-left: 95.83333333%;
  4856. }
  4857. .ant-col-order-23 {
  4858. order: 23;
  4859. }
  4860. .ant-col-22 {
  4861. display: block;
  4862. width: 91.66666667%;
  4863. }
  4864. .ant-col-push-22 {
  4865. left: 91.66666667%;
  4866. }
  4867. .ant-col-pull-22 {
  4868. right: 91.66666667%;
  4869. }
  4870. .ant-col-offset-22 {
  4871. margin-left: 91.66666667%;
  4872. }
  4873. .ant-col-order-22 {
  4874. order: 22;
  4875. }
  4876. .ant-col-21 {
  4877. display: block;
  4878. width: 87.5%;
  4879. }
  4880. .ant-col-push-21 {
  4881. left: 87.5%;
  4882. }
  4883. .ant-col-pull-21 {
  4884. right: 87.5%;
  4885. }
  4886. .ant-col-offset-21 {
  4887. margin-left: 87.5%;
  4888. }
  4889. .ant-col-order-21 {
  4890. order: 21;
  4891. }
  4892. .ant-col-20 {
  4893. display: block;
  4894. width: 83.33333333%;
  4895. }
  4896. .ant-col-push-20 {
  4897. left: 83.33333333%;
  4898. }
  4899. .ant-col-pull-20 {
  4900. right: 83.33333333%;
  4901. }
  4902. .ant-col-offset-20 {
  4903. margin-left: 83.33333333%;
  4904. }
  4905. .ant-col-order-20 {
  4906. order: 20;
  4907. }
  4908. .ant-col-19 {
  4909. display: block;
  4910. width: 79.16666667%;
  4911. }
  4912. .ant-col-push-19 {
  4913. left: 79.16666667%;
  4914. }
  4915. .ant-col-pull-19 {
  4916. right: 79.16666667%;
  4917. }
  4918. .ant-col-offset-19 {
  4919. margin-left: 79.16666667%;
  4920. }
  4921. .ant-col-order-19 {
  4922. order: 19;
  4923. }
  4924. .ant-col-18 {
  4925. display: block;
  4926. width: 75%;
  4927. }
  4928. .ant-col-push-18 {
  4929. left: 75%;
  4930. }
  4931. .ant-col-pull-18 {
  4932. right: 75%;
  4933. }
  4934. .ant-col-offset-18 {
  4935. margin-left: 75%;
  4936. }
  4937. .ant-col-order-18 {
  4938. order: 18;
  4939. }
  4940. .ant-col-17 {
  4941. display: block;
  4942. width: 70.83333333%;
  4943. }
  4944. .ant-col-push-17 {
  4945. left: 70.83333333%;
  4946. }
  4947. .ant-col-pull-17 {
  4948. right: 70.83333333%;
  4949. }
  4950. .ant-col-offset-17 {
  4951. margin-left: 70.83333333%;
  4952. }
  4953. .ant-col-order-17 {
  4954. order: 17;
  4955. }
  4956. .ant-col-16 {
  4957. display: block;
  4958. width: 66.66666667%;
  4959. }
  4960. .ant-col-push-16 {
  4961. left: 66.66666667%;
  4962. }
  4963. .ant-col-pull-16 {
  4964. right: 66.66666667%;
  4965. }
  4966. .ant-col-offset-16 {
  4967. margin-left: 66.66666667%;
  4968. }
  4969. .ant-col-order-16 {
  4970. order: 16;
  4971. }
  4972. .ant-col-15 {
  4973. display: block;
  4974. width: 62.5%;
  4975. }
  4976. .ant-col-push-15 {
  4977. left: 62.5%;
  4978. }
  4979. .ant-col-pull-15 {
  4980. right: 62.5%;
  4981. }
  4982. .ant-col-offset-15 {
  4983. margin-left: 62.5%;
  4984. }
  4985. .ant-col-order-15 {
  4986. order: 15;
  4987. }
  4988. .ant-col-14 {
  4989. display: block;
  4990. width: 58.33333333%;
  4991. }
  4992. .ant-col-push-14 {
  4993. left: 58.33333333%;
  4994. }
  4995. .ant-col-pull-14 {
  4996. right: 58.33333333%;
  4997. }
  4998. .ant-col-offset-14 {
  4999. margin-left: 58.33333333%;
  5000. }
  5001. .ant-col-order-14 {
  5002. order: 14;
  5003. }
  5004. .ant-col-13 {
  5005. display: block;
  5006. width: 54.16666667%;
  5007. }
  5008. .ant-col-push-13 {
  5009. left: 54.16666667%;
  5010. }
  5011. .ant-col-pull-13 {
  5012. right: 54.16666667%;
  5013. }
  5014. .ant-col-offset-13 {
  5015. margin-left: 54.16666667%;
  5016. }
  5017. .ant-col-order-13 {
  5018. order: 13;
  5019. }
  5020. .ant-col-12 {
  5021. display: block;
  5022. width: 50%;
  5023. }
  5024. .ant-col-push-12 {
  5025. left: 50%;
  5026. }
  5027. .ant-col-pull-12 {
  5028. right: 50%;
  5029. }
  5030. .ant-col-offset-12 {
  5031. margin-left: 50%;
  5032. }
  5033. .ant-col-order-12 {
  5034. order: 12;
  5035. }
  5036. .ant-col-11 {
  5037. display: block;
  5038. width: 45.83333333%;
  5039. }
  5040. .ant-col-push-11 {
  5041. left: 45.83333333%;
  5042. }
  5043. .ant-col-pull-11 {
  5044. right: 45.83333333%;
  5045. }
  5046. .ant-col-offset-11 {
  5047. margin-left: 45.83333333%;
  5048. }
  5049. .ant-col-order-11 {
  5050. order: 11;
  5051. }
  5052. .ant-col-10 {
  5053. display: block;
  5054. width: 41.66666667%;
  5055. }
  5056. .ant-col-push-10 {
  5057. left: 41.66666667%;
  5058. }
  5059. .ant-col-pull-10 {
  5060. right: 41.66666667%;
  5061. }
  5062. .ant-col-offset-10 {
  5063. margin-left: 41.66666667%;
  5064. }
  5065. .ant-col-order-10 {
  5066. order: 10;
  5067. }
  5068. .ant-col-9 {
  5069. display: block;
  5070. width: 37.5%;
  5071. }
  5072. .ant-col-push-9 {
  5073. left: 37.5%;
  5074. }
  5075. .ant-col-pull-9 {
  5076. right: 37.5%;
  5077. }
  5078. .ant-col-offset-9 {
  5079. margin-left: 37.5%;
  5080. }
  5081. .ant-col-order-9 {
  5082. order: 9;
  5083. }
  5084. .ant-col-8 {
  5085. display: block;
  5086. width: 33.33333333%;
  5087. }
  5088. .ant-col-push-8 {
  5089. left: 33.33333333%;
  5090. }
  5091. .ant-col-pull-8 {
  5092. right: 33.33333333%;
  5093. }
  5094. .ant-col-offset-8 {
  5095. margin-left: 33.33333333%;
  5096. }
  5097. .ant-col-order-8 {
  5098. order: 8;
  5099. }
  5100. .ant-col-7 {
  5101. display: block;
  5102. width: 29.16666667%;
  5103. }
  5104. .ant-col-push-7 {
  5105. left: 29.16666667%;
  5106. }
  5107. .ant-col-pull-7 {
  5108. right: 29.16666667%;
  5109. }
  5110. .ant-col-offset-7 {
  5111. margin-left: 29.16666667%;
  5112. }
  5113. .ant-col-order-7 {
  5114. order: 7;
  5115. }
  5116. .ant-col-6 {
  5117. display: block;
  5118. width: 25%;
  5119. }
  5120. .ant-col-push-6 {
  5121. left: 25%;
  5122. }
  5123. .ant-col-pull-6 {
  5124. right: 25%;
  5125. }
  5126. .ant-col-offset-6 {
  5127. margin-left: 25%;
  5128. }
  5129. .ant-col-order-6 {
  5130. order: 6;
  5131. }
  5132. .ant-col-5 {
  5133. display: block;
  5134. width: 20.83333333%;
  5135. }
  5136. .ant-col-push-5 {
  5137. left: 20.83333333%;
  5138. }
  5139. .ant-col-pull-5 {
  5140. right: 20.83333333%;
  5141. }
  5142. .ant-col-offset-5 {
  5143. margin-left: 20.83333333%;
  5144. }
  5145. .ant-col-order-5 {
  5146. order: 5;
  5147. }
  5148. .ant-col-4 {
  5149. display: block;
  5150. width: 16.66666667%;
  5151. }
  5152. .ant-col-push-4 {
  5153. left: 16.66666667%;
  5154. }
  5155. .ant-col-pull-4 {
  5156. right: 16.66666667%;
  5157. }
  5158. .ant-col-offset-4 {
  5159. margin-left: 16.66666667%;
  5160. }
  5161. .ant-col-order-4 {
  5162. order: 4;
  5163. }
  5164. .ant-col-3 {
  5165. display: block;
  5166. width: 12.5%;
  5167. }
  5168. .ant-col-push-3 {
  5169. left: 12.5%;
  5170. }
  5171. .ant-col-pull-3 {
  5172. right: 12.5%;
  5173. }
  5174. .ant-col-offset-3 {
  5175. margin-left: 12.5%;
  5176. }
  5177. .ant-col-order-3 {
  5178. order: 3;
  5179. }
  5180. .ant-col-2 {
  5181. display: block;
  5182. width: 8.33333333%;
  5183. }
  5184. .ant-col-push-2 {
  5185. left: 8.33333333%;
  5186. }
  5187. .ant-col-pull-2 {
  5188. right: 8.33333333%;
  5189. }
  5190. .ant-col-offset-2 {
  5191. margin-left: 8.33333333%;
  5192. }
  5193. .ant-col-order-2 {
  5194. order: 2;
  5195. }
  5196. .ant-col-1 {
  5197. display: block;
  5198. width: 4.16666667%;
  5199. }
  5200. .ant-col-push-1 {
  5201. left: 4.16666667%;
  5202. }
  5203. .ant-col-pull-1 {
  5204. right: 4.16666667%;
  5205. }
  5206. .ant-col-offset-1 {
  5207. margin-left: 4.16666667%;
  5208. }
  5209. .ant-col-order-1 {
  5210. order: 1;
  5211. }
  5212. .ant-col-0 {
  5213. display: none;
  5214. }
  5215. .ant-col-push-0 {
  5216. left: auto;
  5217. }
  5218. .ant-col-pull-0 {
  5219. right: auto;
  5220. }
  5221. .ant-col-push-0 {
  5222. left: auto;
  5223. }
  5224. .ant-col-pull-0 {
  5225. right: auto;
  5226. }
  5227. .ant-col-offset-0 {
  5228. margin-left: 0;
  5229. }
  5230. .ant-col-order-0 {
  5231. order: 0;
  5232. }
  5233. .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 {
  5234. float: left;
  5235. flex: 0 0 auto;
  5236. }
  5237. .ant-col-xs-24 {
  5238. display: block;
  5239. width: 100%;
  5240. }
  5241. .ant-col-xs-push-24 {
  5242. left: 100%;
  5243. }
  5244. .ant-col-xs-pull-24 {
  5245. right: 100%;
  5246. }
  5247. .ant-col-xs-offset-24 {
  5248. margin-left: 100%;
  5249. }
  5250. .ant-col-xs-order-24 {
  5251. order: 24;
  5252. }
  5253. .ant-col-xs-23 {
  5254. display: block;
  5255. width: 95.83333333%;
  5256. }
  5257. .ant-col-xs-push-23 {
  5258. left: 95.83333333%;
  5259. }
  5260. .ant-col-xs-pull-23 {
  5261. right: 95.83333333%;
  5262. }
  5263. .ant-col-xs-offset-23 {
  5264. margin-left: 95.83333333%;
  5265. }
  5266. .ant-col-xs-order-23 {
  5267. order: 23;
  5268. }
  5269. .ant-col-xs-22 {
  5270. display: block;
  5271. width: 91.66666667%;
  5272. }
  5273. .ant-col-xs-push-22 {
  5274. left: 91.66666667%;
  5275. }
  5276. .ant-col-xs-pull-22 {
  5277. right: 91.66666667%;
  5278. }
  5279. .ant-col-xs-offset-22 {
  5280. margin-left: 91.66666667%;
  5281. }
  5282. .ant-col-xs-order-22 {
  5283. order: 22;
  5284. }
  5285. .ant-col-xs-21 {
  5286. display: block;
  5287. width: 87.5%;
  5288. }
  5289. .ant-col-xs-push-21 {
  5290. left: 87.5%;
  5291. }
  5292. .ant-col-xs-pull-21 {
  5293. right: 87.5%;
  5294. }
  5295. .ant-col-xs-offset-21 {
  5296. margin-left: 87.5%;
  5297. }
  5298. .ant-col-xs-order-21 {
  5299. order: 21;
  5300. }
  5301. .ant-col-xs-20 {
  5302. display: block;
  5303. width: 83.33333333%;
  5304. }
  5305. .ant-col-xs-push-20 {
  5306. left: 83.33333333%;
  5307. }
  5308. .ant-col-xs-pull-20 {
  5309. right: 83.33333333%;
  5310. }
  5311. .ant-col-xs-offset-20 {
  5312. margin-left: 83.33333333%;
  5313. }
  5314. .ant-col-xs-order-20 {
  5315. order: 20;
  5316. }
  5317. .ant-col-xs-19 {
  5318. display: block;
  5319. width: 79.16666667%;
  5320. }
  5321. .ant-col-xs-push-19 {
  5322. left: 79.16666667%;
  5323. }
  5324. .ant-col-xs-pull-19 {
  5325. right: 79.16666667%;
  5326. }
  5327. .ant-col-xs-offset-19 {
  5328. margin-left: 79.16666667%;
  5329. }
  5330. .ant-col-xs-order-19 {
  5331. order: 19;
  5332. }
  5333. .ant-col-xs-18 {
  5334. display: block;
  5335. width: 75%;
  5336. }
  5337. .ant-col-xs-push-18 {
  5338. left: 75%;
  5339. }
  5340. .ant-col-xs-pull-18 {
  5341. right: 75%;
  5342. }
  5343. .ant-col-xs-offset-18 {
  5344. margin-left: 75%;
  5345. }
  5346. .ant-col-xs-order-18 {
  5347. order: 18;
  5348. }
  5349. .ant-col-xs-17 {
  5350. display: block;
  5351. width: 70.83333333%;
  5352. }
  5353. .ant-col-xs-push-17 {
  5354. left: 70.83333333%;
  5355. }
  5356. .ant-col-xs-pull-17 {
  5357. right: 70.83333333%;
  5358. }
  5359. .ant-col-xs-offset-17 {
  5360. margin-left: 70.83333333%;
  5361. }
  5362. .ant-col-xs-order-17 {
  5363. order: 17;
  5364. }
  5365. .ant-col-xs-16 {
  5366. display: block;
  5367. width: 66.66666667%;
  5368. }
  5369. .ant-col-xs-push-16 {
  5370. left: 66.66666667%;
  5371. }
  5372. .ant-col-xs-pull-16 {
  5373. right: 66.66666667%;
  5374. }
  5375. .ant-col-xs-offset-16 {
  5376. margin-left: 66.66666667%;
  5377. }
  5378. .ant-col-xs-order-16 {
  5379. order: 16;
  5380. }
  5381. .ant-col-xs-15 {
  5382. display: block;
  5383. width: 62.5%;
  5384. }
  5385. .ant-col-xs-push-15 {
  5386. left: 62.5%;
  5387. }
  5388. .ant-col-xs-pull-15 {
  5389. right: 62.5%;
  5390. }
  5391. .ant-col-xs-offset-15 {
  5392. margin-left: 62.5%;
  5393. }
  5394. .ant-col-xs-order-15 {
  5395. order: 15;
  5396. }
  5397. .ant-col-xs-14 {
  5398. display: block;
  5399. width: 58.33333333%;
  5400. }
  5401. .ant-col-xs-push-14 {
  5402. left: 58.33333333%;
  5403. }
  5404. .ant-col-xs-pull-14 {
  5405. right: 58.33333333%;
  5406. }
  5407. .ant-col-xs-offset-14 {
  5408. margin-left: 58.33333333%;
  5409. }
  5410. .ant-col-xs-order-14 {
  5411. order: 14;
  5412. }
  5413. .ant-col-xs-13 {
  5414. display: block;
  5415. width: 54.16666667%;
  5416. }
  5417. .ant-col-xs-push-13 {
  5418. left: 54.16666667%;
  5419. }
  5420. .ant-col-xs-pull-13 {
  5421. right: 54.16666667%;
  5422. }
  5423. .ant-col-xs-offset-13 {
  5424. margin-left: 54.16666667%;
  5425. }
  5426. .ant-col-xs-order-13 {
  5427. order: 13;
  5428. }
  5429. .ant-col-xs-12 {
  5430. display: block;
  5431. width: 50%;
  5432. }
  5433. .ant-col-xs-push-12 {
  5434. left: 50%;
  5435. }
  5436. .ant-col-xs-pull-12 {
  5437. right: 50%;
  5438. }
  5439. .ant-col-xs-offset-12 {
  5440. margin-left: 50%;
  5441. }
  5442. .ant-col-xs-order-12 {
  5443. order: 12;
  5444. }
  5445. .ant-col-xs-11 {
  5446. display: block;
  5447. width: 45.83333333%;
  5448. }
  5449. .ant-col-xs-push-11 {
  5450. left: 45.83333333%;
  5451. }
  5452. .ant-col-xs-pull-11 {
  5453. right: 45.83333333%;
  5454. }
  5455. .ant-col-xs-offset-11 {
  5456. margin-left: 45.83333333%;
  5457. }
  5458. .ant-col-xs-order-11 {
  5459. order: 11;
  5460. }
  5461. .ant-col-xs-10 {
  5462. display: block;
  5463. width: 41.66666667%;
  5464. }
  5465. .ant-col-xs-push-10 {
  5466. left: 41.66666667%;
  5467. }
  5468. .ant-col-xs-pull-10 {
  5469. right: 41.66666667%;
  5470. }
  5471. .ant-col-xs-offset-10 {
  5472. margin-left: 41.66666667%;
  5473. }
  5474. .ant-col-xs-order-10 {
  5475. order: 10;
  5476. }
  5477. .ant-col-xs-9 {
  5478. display: block;
  5479. width: 37.5%;
  5480. }
  5481. .ant-col-xs-push-9 {
  5482. left: 37.5%;
  5483. }
  5484. .ant-col-xs-pull-9 {
  5485. right: 37.5%;
  5486. }
  5487. .ant-col-xs-offset-9 {
  5488. margin-left: 37.5%;
  5489. }
  5490. .ant-col-xs-order-9 {
  5491. order: 9;
  5492. }
  5493. .ant-col-xs-8 {
  5494. display: block;
  5495. width: 33.33333333%;
  5496. }
  5497. .ant-col-xs-push-8 {
  5498. left: 33.33333333%;
  5499. }
  5500. .ant-col-xs-pull-8 {
  5501. right: 33.33333333%;
  5502. }
  5503. .ant-col-xs-offset-8 {
  5504. margin-left: 33.33333333%;
  5505. }
  5506. .ant-col-xs-order-8 {
  5507. order: 8;
  5508. }
  5509. .ant-col-xs-7 {
  5510. display: block;
  5511. width: 29.16666667%;
  5512. }
  5513. .ant-col-xs-push-7 {
  5514. left: 29.16666667%;
  5515. }
  5516. .ant-col-xs-pull-7 {
  5517. right: 29.16666667%;
  5518. }
  5519. .ant-col-xs-offset-7 {
  5520. margin-left: 29.16666667%;
  5521. }
  5522. .ant-col-xs-order-7 {
  5523. order: 7;
  5524. }
  5525. .ant-col-xs-6 {
  5526. display: block;
  5527. width: 25%;
  5528. }
  5529. .ant-col-xs-push-6 {
  5530. left: 25%;
  5531. }
  5532. .ant-col-xs-pull-6 {
  5533. right: 25%;
  5534. }
  5535. .ant-col-xs-offset-6 {
  5536. margin-left: 25%;
  5537. }
  5538. .ant-col-xs-order-6 {
  5539. order: 6;
  5540. }
  5541. .ant-col-xs-5 {
  5542. display: block;
  5543. width: 20.83333333%;
  5544. }
  5545. .ant-col-xs-push-5 {
  5546. left: 20.83333333%;
  5547. }
  5548. .ant-col-xs-pull-5 {
  5549. right: 20.83333333%;
  5550. }
  5551. .ant-col-xs-offset-5 {
  5552. margin-left: 20.83333333%;
  5553. }
  5554. .ant-col-xs-order-5 {
  5555. order: 5;
  5556. }
  5557. .ant-col-xs-4 {
  5558. display: block;
  5559. width: 16.66666667%;
  5560. }
  5561. .ant-col-xs-push-4 {
  5562. left: 16.66666667%;
  5563. }
  5564. .ant-col-xs-pull-4 {
  5565. right: 16.66666667%;
  5566. }
  5567. .ant-col-xs-offset-4 {
  5568. margin-left: 16.66666667%;
  5569. }
  5570. .ant-col-xs-order-4 {
  5571. order: 4;
  5572. }
  5573. .ant-col-xs-3 {
  5574. display: block;
  5575. width: 12.5%;
  5576. }
  5577. .ant-col-xs-push-3 {
  5578. left: 12.5%;
  5579. }
  5580. .ant-col-xs-pull-3 {
  5581. right: 12.5%;
  5582. }
  5583. .ant-col-xs-offset-3 {
  5584. margin-left: 12.5%;
  5585. }
  5586. .ant-col-xs-order-3 {
  5587. order: 3;
  5588. }
  5589. .ant-col-xs-2 {
  5590. display: block;
  5591. width: 8.33333333%;
  5592. }
  5593. .ant-col-xs-push-2 {
  5594. left: 8.33333333%;
  5595. }
  5596. .ant-col-xs-pull-2 {
  5597. right: 8.33333333%;
  5598. }
  5599. .ant-col-xs-offset-2 {
  5600. margin-left: 8.33333333%;
  5601. }
  5602. .ant-col-xs-order-2 {
  5603. order: 2;
  5604. }
  5605. .ant-col-xs-1 {
  5606. display: block;
  5607. width: 4.16666667%;
  5608. }
  5609. .ant-col-xs-push-1 {
  5610. left: 4.16666667%;
  5611. }
  5612. .ant-col-xs-pull-1 {
  5613. right: 4.16666667%;
  5614. }
  5615. .ant-col-xs-offset-1 {
  5616. margin-left: 4.16666667%;
  5617. }
  5618. .ant-col-xs-order-1 {
  5619. order: 1;
  5620. }
  5621. .ant-col-xs-0 {
  5622. display: none;
  5623. }
  5624. .ant-col-push-0 {
  5625. left: auto;
  5626. }
  5627. .ant-col-pull-0 {
  5628. right: auto;
  5629. }
  5630. .ant-col-xs-push-0 {
  5631. left: auto;
  5632. }
  5633. .ant-col-xs-pull-0 {
  5634. right: auto;
  5635. }
  5636. .ant-col-xs-offset-0 {
  5637. margin-left: 0;
  5638. }
  5639. .ant-col-xs-order-0 {
  5640. order: 0;
  5641. }
  5642. @media (min-width: 768px) {
  5643. .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 {
  5644. float: left;
  5645. flex: 0 0 auto;
  5646. }
  5647. .ant-col-sm-24 {
  5648. display: block;
  5649. width: 100%;
  5650. }
  5651. .ant-col-sm-push-24 {
  5652. left: 100%;
  5653. }
  5654. .ant-col-sm-pull-24 {
  5655. right: 100%;
  5656. }
  5657. .ant-col-sm-offset-24 {
  5658. margin-left: 100%;
  5659. }
  5660. .ant-col-sm-order-24 {
  5661. order: 24;
  5662. }
  5663. .ant-col-sm-23 {
  5664. display: block;
  5665. width: 95.83333333%;
  5666. }
  5667. .ant-col-sm-push-23 {
  5668. left: 95.83333333%;
  5669. }
  5670. .ant-col-sm-pull-23 {
  5671. right: 95.83333333%;
  5672. }
  5673. .ant-col-sm-offset-23 {
  5674. margin-left: 95.83333333%;
  5675. }
  5676. .ant-col-sm-order-23 {
  5677. order: 23;
  5678. }
  5679. .ant-col-sm-22 {
  5680. display: block;
  5681. width: 91.66666667%;
  5682. }
  5683. .ant-col-sm-push-22 {
  5684. left: 91.66666667%;
  5685. }
  5686. .ant-col-sm-pull-22 {
  5687. right: 91.66666667%;
  5688. }
  5689. .ant-col-sm-offset-22 {
  5690. margin-left: 91.66666667%;
  5691. }
  5692. .ant-col-sm-order-22 {
  5693. order: 22;
  5694. }
  5695. .ant-col-sm-21 {
  5696. display: block;
  5697. width: 87.5%;
  5698. }
  5699. .ant-col-sm-push-21 {
  5700. left: 87.5%;
  5701. }
  5702. .ant-col-sm-pull-21 {
  5703. right: 87.5%;
  5704. }
  5705. .ant-col-sm-offset-21 {
  5706. margin-left: 87.5%;
  5707. }
  5708. .ant-col-sm-order-21 {
  5709. order: 21;
  5710. }
  5711. .ant-col-sm-20 {
  5712. display: block;
  5713. width: 83.33333333%;
  5714. }
  5715. .ant-col-sm-push-20 {
  5716. left: 83.33333333%;
  5717. }
  5718. .ant-col-sm-pull-20 {
  5719. right: 83.33333333%;
  5720. }
  5721. .ant-col-sm-offset-20 {
  5722. margin-left: 83.33333333%;
  5723. }
  5724. .ant-col-sm-order-20 {
  5725. order: 20;
  5726. }
  5727. .ant-col-sm-19 {
  5728. display: block;
  5729. width: 79.16666667%;
  5730. }
  5731. .ant-col-sm-push-19 {
  5732. left: 79.16666667%;
  5733. }
  5734. .ant-col-sm-pull-19 {
  5735. right: 79.16666667%;
  5736. }
  5737. .ant-col-sm-offset-19 {
  5738. margin-left: 79.16666667%;
  5739. }
  5740. .ant-col-sm-order-19 {
  5741. order: 19;
  5742. }
  5743. .ant-col-sm-18 {
  5744. display: block;
  5745. width: 75%;
  5746. }
  5747. .ant-col-sm-push-18 {
  5748. left: 75%;
  5749. }
  5750. .ant-col-sm-pull-18 {
  5751. right: 75%;
  5752. }
  5753. .ant-col-sm-offset-18 {
  5754. margin-left: 75%;
  5755. }
  5756. .ant-col-sm-order-18 {
  5757. order: 18;
  5758. }
  5759. .ant-col-sm-17 {
  5760. display: block;
  5761. width: 70.83333333%;
  5762. }
  5763. .ant-col-sm-push-17 {
  5764. left: 70.83333333%;
  5765. }
  5766. .ant-col-sm-pull-17 {
  5767. right: 70.83333333%;
  5768. }
  5769. .ant-col-sm-offset-17 {
  5770. margin-left: 70.83333333%;
  5771. }
  5772. .ant-col-sm-order-17 {
  5773. order: 17;
  5774. }
  5775. .ant-col-sm-16 {
  5776. display: block;
  5777. width: 66.66666667%;
  5778. }
  5779. .ant-col-sm-push-16 {
  5780. left: 66.66666667%;
  5781. }
  5782. .ant-col-sm-pull-16 {
  5783. right: 66.66666667%;
  5784. }
  5785. .ant-col-sm-offset-16 {
  5786. margin-left: 66.66666667%;
  5787. }
  5788. .ant-col-sm-order-16 {
  5789. order: 16;
  5790. }
  5791. .ant-col-sm-15 {
  5792. display: block;
  5793. width: 62.5%;
  5794. }
  5795. .ant-col-sm-push-15 {
  5796. left: 62.5%;
  5797. }
  5798. .ant-col-sm-pull-15 {
  5799. right: 62.5%;
  5800. }
  5801. .ant-col-sm-offset-15 {
  5802. margin-left: 62.5%;
  5803. }
  5804. .ant-col-sm-order-15 {
  5805. order: 15;
  5806. }
  5807. .ant-col-sm-14 {
  5808. display: block;
  5809. width: 58.33333333%;
  5810. }
  5811. .ant-col-sm-push-14 {
  5812. left: 58.33333333%;
  5813. }
  5814. .ant-col-sm-pull-14 {
  5815. right: 58.33333333%;
  5816. }
  5817. .ant-col-sm-offset-14 {
  5818. margin-left: 58.33333333%;
  5819. }
  5820. .ant-col-sm-order-14 {
  5821. order: 14;
  5822. }
  5823. .ant-col-sm-13 {
  5824. display: block;
  5825. width: 54.16666667%;
  5826. }
  5827. .ant-col-sm-push-13 {
  5828. left: 54.16666667%;
  5829. }
  5830. .ant-col-sm-pull-13 {
  5831. right: 54.16666667%;
  5832. }
  5833. .ant-col-sm-offset-13 {
  5834. margin-left: 54.16666667%;
  5835. }
  5836. .ant-col-sm-order-13 {
  5837. order: 13;
  5838. }
  5839. .ant-col-sm-12 {
  5840. display: block;
  5841. width: 50%;
  5842. }
  5843. .ant-col-sm-push-12 {
  5844. left: 50%;
  5845. }
  5846. .ant-col-sm-pull-12 {
  5847. right: 50%;
  5848. }
  5849. .ant-col-sm-offset-12 {
  5850. margin-left: 50%;
  5851. }
  5852. .ant-col-sm-order-12 {
  5853. order: 12;
  5854. }
  5855. .ant-col-sm-11 {
  5856. display: block;
  5857. width: 45.83333333%;
  5858. }
  5859. .ant-col-sm-push-11 {
  5860. left: 45.83333333%;
  5861. }
  5862. .ant-col-sm-pull-11 {
  5863. right: 45.83333333%;
  5864. }
  5865. .ant-col-sm-offset-11 {
  5866. margin-left: 45.83333333%;
  5867. }
  5868. .ant-col-sm-order-11 {
  5869. order: 11;
  5870. }
  5871. .ant-col-sm-10 {
  5872. display: block;
  5873. width: 41.66666667%;
  5874. }
  5875. .ant-col-sm-push-10 {
  5876. left: 41.66666667%;
  5877. }
  5878. .ant-col-sm-pull-10 {
  5879. right: 41.66666667%;
  5880. }
  5881. .ant-col-sm-offset-10 {
  5882. margin-left: 41.66666667%;
  5883. }
  5884. .ant-col-sm-order-10 {
  5885. order: 10;
  5886. }
  5887. .ant-col-sm-9 {
  5888. display: block;
  5889. width: 37.5%;
  5890. }
  5891. .ant-col-sm-push-9 {
  5892. left: 37.5%;
  5893. }
  5894. .ant-col-sm-pull-9 {
  5895. right: 37.5%;
  5896. }
  5897. .ant-col-sm-offset-9 {
  5898. margin-left: 37.5%;
  5899. }
  5900. .ant-col-sm-order-9 {
  5901. order: 9;
  5902. }
  5903. .ant-col-sm-8 {
  5904. display: block;
  5905. width: 33.33333333%;
  5906. }
  5907. .ant-col-sm-push-8 {
  5908. left: 33.33333333%;
  5909. }
  5910. .ant-col-sm-pull-8 {
  5911. right: 33.33333333%;
  5912. }
  5913. .ant-col-sm-offset-8 {
  5914. margin-left: 33.33333333%;
  5915. }
  5916. .ant-col-sm-order-8 {
  5917. order: 8;
  5918. }
  5919. .ant-col-sm-7 {
  5920. display: block;
  5921. width: 29.16666667%;
  5922. }
  5923. .ant-col-sm-push-7 {
  5924. left: 29.16666667%;
  5925. }
  5926. .ant-col-sm-pull-7 {
  5927. right: 29.16666667%;
  5928. }
  5929. .ant-col-sm-offset-7 {
  5930. margin-left: 29.16666667%;
  5931. }
  5932. .ant-col-sm-order-7 {
  5933. order: 7;
  5934. }
  5935. .ant-col-sm-6 {
  5936. display: block;
  5937. width: 25%;
  5938. }
  5939. .ant-col-sm-push-6 {
  5940. left: 25%;
  5941. }
  5942. .ant-col-sm-pull-6 {
  5943. right: 25%;
  5944. }
  5945. .ant-col-sm-offset-6 {
  5946. margin-left: 25%;
  5947. }
  5948. .ant-col-sm-order-6 {
  5949. order: 6;
  5950. }
  5951. .ant-col-sm-5 {
  5952. display: block;
  5953. width: 20.83333333%;
  5954. }
  5955. .ant-col-sm-push-5 {
  5956. left: 20.83333333%;
  5957. }
  5958. .ant-col-sm-pull-5 {
  5959. right: 20.83333333%;
  5960. }
  5961. .ant-col-sm-offset-5 {
  5962. margin-left: 20.83333333%;
  5963. }
  5964. .ant-col-sm-order-5 {
  5965. order: 5;
  5966. }
  5967. .ant-col-sm-4 {
  5968. display: block;
  5969. width: 16.66666667%;
  5970. }
  5971. .ant-col-sm-push-4 {
  5972. left: 16.66666667%;
  5973. }
  5974. .ant-col-sm-pull-4 {
  5975. right: 16.66666667%;
  5976. }
  5977. .ant-col-sm-offset-4 {
  5978. margin-left: 16.66666667%;
  5979. }
  5980. .ant-col-sm-order-4 {
  5981. order: 4;
  5982. }
  5983. .ant-col-sm-3 {
  5984. display: block;
  5985. width: 12.5%;
  5986. }
  5987. .ant-col-sm-push-3 {
  5988. left: 12.5%;
  5989. }
  5990. .ant-col-sm-pull-3 {
  5991. right: 12.5%;
  5992. }
  5993. .ant-col-sm-offset-3 {
  5994. margin-left: 12.5%;
  5995. }
  5996. .ant-col-sm-order-3 {
  5997. order: 3;
  5998. }
  5999. .ant-col-sm-2 {
  6000. display: block;
  6001. width: 8.33333333%;
  6002. }
  6003. .ant-col-sm-push-2 {
  6004. left: 8.33333333%;
  6005. }
  6006. .ant-col-sm-pull-2 {
  6007. right: 8.33333333%;
  6008. }
  6009. .ant-col-sm-offset-2 {
  6010. margin-left: 8.33333333%;
  6011. }
  6012. .ant-col-sm-order-2 {
  6013. order: 2;
  6014. }
  6015. .ant-col-sm-1 {
  6016. display: block;
  6017. width: 4.16666667%;
  6018. }
  6019. .ant-col-sm-push-1 {
  6020. left: 4.16666667%;
  6021. }
  6022. .ant-col-sm-pull-1 {
  6023. right: 4.16666667%;
  6024. }
  6025. .ant-col-sm-offset-1 {
  6026. margin-left: 4.16666667%;
  6027. }
  6028. .ant-col-sm-order-1 {
  6029. order: 1;
  6030. }
  6031. .ant-col-sm-0 {
  6032. display: none;
  6033. }
  6034. .ant-col-push-0 {
  6035. left: auto;
  6036. }
  6037. .ant-col-pull-0 {
  6038. right: auto;
  6039. }
  6040. .ant-col-sm-push-0 {
  6041. left: auto;
  6042. }
  6043. .ant-col-sm-pull-0 {
  6044. right: auto;
  6045. }
  6046. .ant-col-sm-offset-0 {
  6047. margin-left: 0;
  6048. }
  6049. .ant-col-sm-order-0 {
  6050. order: 0;
  6051. }
  6052. }
  6053. @media (min-width: 992px) {
  6054. .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 {
  6055. float: left;
  6056. flex: 0 0 auto;
  6057. }
  6058. .ant-col-md-24 {
  6059. display: block;
  6060. width: 100%;
  6061. }
  6062. .ant-col-md-push-24 {
  6063. left: 100%;
  6064. }
  6065. .ant-col-md-pull-24 {
  6066. right: 100%;
  6067. }
  6068. .ant-col-md-offset-24 {
  6069. margin-left: 100%;
  6070. }
  6071. .ant-col-md-order-24 {
  6072. order: 24;
  6073. }
  6074. .ant-col-md-23 {
  6075. display: block;
  6076. width: 95.83333333%;
  6077. }
  6078. .ant-col-md-push-23 {
  6079. left: 95.83333333%;
  6080. }
  6081. .ant-col-md-pull-23 {
  6082. right: 95.83333333%;
  6083. }
  6084. .ant-col-md-offset-23 {
  6085. margin-left: 95.83333333%;
  6086. }
  6087. .ant-col-md-order-23 {
  6088. order: 23;
  6089. }
  6090. .ant-col-md-22 {
  6091. display: block;
  6092. width: 91.66666667%;
  6093. }
  6094. .ant-col-md-push-22 {
  6095. left: 91.66666667%;
  6096. }
  6097. .ant-col-md-pull-22 {
  6098. right: 91.66666667%;
  6099. }
  6100. .ant-col-md-offset-22 {
  6101. margin-left: 91.66666667%;
  6102. }
  6103. .ant-col-md-order-22 {
  6104. order: 22;
  6105. }
  6106. .ant-col-md-21 {
  6107. display: block;
  6108. width: 87.5%;
  6109. }
  6110. .ant-col-md-push-21 {
  6111. left: 87.5%;
  6112. }
  6113. .ant-col-md-pull-21 {
  6114. right: 87.5%;
  6115. }
  6116. .ant-col-md-offset-21 {
  6117. margin-left: 87.5%;
  6118. }
  6119. .ant-col-md-order-21 {
  6120. order: 21;
  6121. }
  6122. .ant-col-md-20 {
  6123. display: block;
  6124. width: 83.33333333%;
  6125. }
  6126. .ant-col-md-push-20 {
  6127. left: 83.33333333%;
  6128. }
  6129. .ant-col-md-pull-20 {
  6130. right: 83.33333333%;
  6131. }
  6132. .ant-col-md-offset-20 {
  6133. margin-left: 83.33333333%;
  6134. }
  6135. .ant-col-md-order-20 {
  6136. order: 20;
  6137. }
  6138. .ant-col-md-19 {
  6139. display: block;
  6140. width: 79.16666667%;
  6141. }
  6142. .ant-col-md-push-19 {
  6143. left: 79.16666667%;
  6144. }
  6145. .ant-col-md-pull-19 {
  6146. right: 79.16666667%;
  6147. }
  6148. .ant-col-md-offset-19 {
  6149. margin-left: 79.16666667%;
  6150. }
  6151. .ant-col-md-order-19 {
  6152. order: 19;
  6153. }
  6154. .ant-col-md-18 {
  6155. display: block;
  6156. width: 75%;
  6157. }
  6158. .ant-col-md-push-18 {
  6159. left: 75%;
  6160. }
  6161. .ant-col-md-pull-18 {
  6162. right: 75%;
  6163. }
  6164. .ant-col-md-offset-18 {
  6165. margin-left: 75%;
  6166. }
  6167. .ant-col-md-order-18 {
  6168. order: 18;
  6169. }
  6170. .ant-col-md-17 {
  6171. display: block;
  6172. width: 70.83333333%;
  6173. }
  6174. .ant-col-md-push-17 {
  6175. left: 70.83333333%;
  6176. }
  6177. .ant-col-md-pull-17 {
  6178. right: 70.83333333%;
  6179. }
  6180. .ant-col-md-offset-17 {
  6181. margin-left: 70.83333333%;
  6182. }
  6183. .ant-col-md-order-17 {
  6184. order: 17;
  6185. }
  6186. .ant-col-md-16 {
  6187. display: block;
  6188. width: 66.66666667%;
  6189. }
  6190. .ant-col-md-push-16 {
  6191. left: 66.66666667%;
  6192. }
  6193. .ant-col-md-pull-16 {
  6194. right: 66.66666667%;
  6195. }
  6196. .ant-col-md-offset-16 {
  6197. margin-left: 66.66666667%;
  6198. }
  6199. .ant-col-md-order-16 {
  6200. order: 16;
  6201. }
  6202. .ant-col-md-15 {
  6203. display: block;
  6204. width: 62.5%;
  6205. }
  6206. .ant-col-md-push-15 {
  6207. left: 62.5%;
  6208. }
  6209. .ant-col-md-pull-15 {
  6210. right: 62.5%;
  6211. }
  6212. .ant-col-md-offset-15 {
  6213. margin-left: 62.5%;
  6214. }
  6215. .ant-col-md-order-15 {
  6216. order: 15;
  6217. }
  6218. .ant-col-md-14 {
  6219. display: block;
  6220. width: 58.33333333%;
  6221. }
  6222. .ant-col-md-push-14 {
  6223. left: 58.33333333%;
  6224. }
  6225. .ant-col-md-pull-14 {
  6226. right: 58.33333333%;
  6227. }
  6228. .ant-col-md-offset-14 {
  6229. margin-left: 58.33333333%;
  6230. }
  6231. .ant-col-md-order-14 {
  6232. order: 14;
  6233. }
  6234. .ant-col-md-13 {
  6235. display: block;
  6236. width: 54.16666667%;
  6237. }
  6238. .ant-col-md-push-13 {
  6239. left: 54.16666667%;
  6240. }
  6241. .ant-col-md-pull-13 {
  6242. right: 54.16666667%;
  6243. }
  6244. .ant-col-md-offset-13 {
  6245. margin-left: 54.16666667%;
  6246. }
  6247. .ant-col-md-order-13 {
  6248. order: 13;
  6249. }
  6250. .ant-col-md-12 {
  6251. display: block;
  6252. width: 50%;
  6253. }
  6254. .ant-col-md-push-12 {
  6255. left: 50%;
  6256. }
  6257. .ant-col-md-pull-12 {
  6258. right: 50%;
  6259. }
  6260. .ant-col-md-offset-12 {
  6261. margin-left: 50%;
  6262. }
  6263. .ant-col-md-order-12 {
  6264. order: 12;
  6265. }
  6266. .ant-col-md-11 {
  6267. display: block;
  6268. width: 45.83333333%;
  6269. }
  6270. .ant-col-md-push-11 {
  6271. left: 45.83333333%;
  6272. }
  6273. .ant-col-md-pull-11 {
  6274. right: 45.83333333%;
  6275. }
  6276. .ant-col-md-offset-11 {
  6277. margin-left: 45.83333333%;
  6278. }
  6279. .ant-col-md-order-11 {
  6280. order: 11;
  6281. }
  6282. .ant-col-md-10 {
  6283. display: block;
  6284. width: 41.66666667%;
  6285. }
  6286. .ant-col-md-push-10 {
  6287. left: 41.66666667%;
  6288. }
  6289. .ant-col-md-pull-10 {
  6290. right: 41.66666667%;
  6291. }
  6292. .ant-col-md-offset-10 {
  6293. margin-left: 41.66666667%;
  6294. }
  6295. .ant-col-md-order-10 {
  6296. order: 10;
  6297. }
  6298. .ant-col-md-9 {
  6299. display: block;
  6300. width: 37.5%;
  6301. }
  6302. .ant-col-md-push-9 {
  6303. left: 37.5%;
  6304. }
  6305. .ant-col-md-pull-9 {
  6306. right: 37.5%;
  6307. }
  6308. .ant-col-md-offset-9 {
  6309. margin-left: 37.5%;
  6310. }
  6311. .ant-col-md-order-9 {
  6312. order: 9;
  6313. }
  6314. .ant-col-md-8 {
  6315. display: block;
  6316. width: 33.33333333%;
  6317. }
  6318. .ant-col-md-push-8 {
  6319. left: 33.33333333%;
  6320. }
  6321. .ant-col-md-pull-8 {
  6322. right: 33.33333333%;
  6323. }
  6324. .ant-col-md-offset-8 {
  6325. margin-left: 33.33333333%;
  6326. }
  6327. .ant-col-md-order-8 {
  6328. order: 8;
  6329. }
  6330. .ant-col-md-7 {
  6331. display: block;
  6332. width: 29.16666667%;
  6333. }
  6334. .ant-col-md-push-7 {
  6335. left: 29.16666667%;
  6336. }
  6337. .ant-col-md-pull-7 {
  6338. right: 29.16666667%;
  6339. }
  6340. .ant-col-md-offset-7 {
  6341. margin-left: 29.16666667%;
  6342. }
  6343. .ant-col-md-order-7 {
  6344. order: 7;
  6345. }
  6346. .ant-col-md-6 {
  6347. display: block;
  6348. width: 25%;
  6349. }
  6350. .ant-col-md-push-6 {
  6351. left: 25%;
  6352. }
  6353. .ant-col-md-pull-6 {
  6354. right: 25%;
  6355. }
  6356. .ant-col-md-offset-6 {
  6357. margin-left: 25%;
  6358. }
  6359. .ant-col-md-order-6 {
  6360. order: 6;
  6361. }
  6362. .ant-col-md-5 {
  6363. display: block;
  6364. width: 20.83333333%;
  6365. }
  6366. .ant-col-md-push-5 {
  6367. left: 20.83333333%;
  6368. }
  6369. .ant-col-md-pull-5 {
  6370. right: 20.83333333%;
  6371. }
  6372. .ant-col-md-offset-5 {
  6373. margin-left: 20.83333333%;
  6374. }
  6375. .ant-col-md-order-5 {
  6376. order: 5;
  6377. }
  6378. .ant-col-md-4 {
  6379. display: block;
  6380. width: 16.66666667%;
  6381. }
  6382. .ant-col-md-push-4 {
  6383. left: 16.66666667%;
  6384. }
  6385. .ant-col-md-pull-4 {
  6386. right: 16.66666667%;
  6387. }
  6388. .ant-col-md-offset-4 {
  6389. margin-left: 16.66666667%;
  6390. }
  6391. .ant-col-md-order-4 {
  6392. order: 4;
  6393. }
  6394. .ant-col-md-3 {
  6395. display: block;
  6396. width: 12.5%;
  6397. }
  6398. .ant-col-md-push-3 {
  6399. left: 12.5%;
  6400. }
  6401. .ant-col-md-pull-3 {
  6402. right: 12.5%;
  6403. }
  6404. .ant-col-md-offset-3 {
  6405. margin-left: 12.5%;
  6406. }
  6407. .ant-col-md-order-3 {
  6408. order: 3;
  6409. }
  6410. .ant-col-md-2 {
  6411. display: block;
  6412. width: 8.33333333%;
  6413. }
  6414. .ant-col-md-push-2 {
  6415. left: 8.33333333%;
  6416. }
  6417. .ant-col-md-pull-2 {
  6418. right: 8.33333333%;
  6419. }
  6420. .ant-col-md-offset-2 {
  6421. margin-left: 8.33333333%;
  6422. }
  6423. .ant-col-md-order-2 {
  6424. order: 2;
  6425. }
  6426. .ant-col-md-1 {
  6427. display: block;
  6428. width: 4.16666667%;
  6429. }
  6430. .ant-col-md-push-1 {
  6431. left: 4.16666667%;
  6432. }
  6433. .ant-col-md-pull-1 {
  6434. right: 4.16666667%;
  6435. }
  6436. .ant-col-md-offset-1 {
  6437. margin-left: 4.16666667%;
  6438. }
  6439. .ant-col-md-order-1 {
  6440. order: 1;
  6441. }
  6442. .ant-col-md-0 {
  6443. display: none;
  6444. }
  6445. .ant-col-push-0 {
  6446. left: auto;
  6447. }
  6448. .ant-col-pull-0 {
  6449. right: auto;
  6450. }
  6451. .ant-col-md-push-0 {
  6452. left: auto;
  6453. }
  6454. .ant-col-md-pull-0 {
  6455. right: auto;
  6456. }
  6457. .ant-col-md-offset-0 {
  6458. margin-left: 0;
  6459. }
  6460. .ant-col-md-order-0 {
  6461. order: 0;
  6462. }
  6463. }
  6464. @media (min-width: 1200px) {
  6465. .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 {
  6466. float: left;
  6467. flex: 0 0 auto;
  6468. }
  6469. .ant-col-lg-24 {
  6470. display: block;
  6471. width: 100%;
  6472. }
  6473. .ant-col-lg-push-24 {
  6474. left: 100%;
  6475. }
  6476. .ant-col-lg-pull-24 {
  6477. right: 100%;
  6478. }
  6479. .ant-col-lg-offset-24 {
  6480. margin-left: 100%;
  6481. }
  6482. .ant-col-lg-order-24 {
  6483. order: 24;
  6484. }
  6485. .ant-col-lg-23 {
  6486. display: block;
  6487. width: 95.83333333%;
  6488. }
  6489. .ant-col-lg-push-23 {
  6490. left: 95.83333333%;
  6491. }
  6492. .ant-col-lg-pull-23 {
  6493. right: 95.83333333%;
  6494. }
  6495. .ant-col-lg-offset-23 {
  6496. margin-left: 95.83333333%;
  6497. }
  6498. .ant-col-lg-order-23 {
  6499. order: 23;
  6500. }
  6501. .ant-col-lg-22 {
  6502. display: block;
  6503. width: 91.66666667%;
  6504. }
  6505. .ant-col-lg-push-22 {
  6506. left: 91.66666667%;
  6507. }
  6508. .ant-col-lg-pull-22 {
  6509. right: 91.66666667%;
  6510. }
  6511. .ant-col-lg-offset-22 {
  6512. margin-left: 91.66666667%;
  6513. }
  6514. .ant-col-lg-order-22 {
  6515. order: 22;
  6516. }
  6517. .ant-col-lg-21 {
  6518. display: block;
  6519. width: 87.5%;
  6520. }
  6521. .ant-col-lg-push-21 {
  6522. left: 87.5%;
  6523. }
  6524. .ant-col-lg-pull-21 {
  6525. right: 87.5%;
  6526. }
  6527. .ant-col-lg-offset-21 {
  6528. margin-left: 87.5%;
  6529. }
  6530. .ant-col-lg-order-21 {
  6531. order: 21;
  6532. }
  6533. .ant-col-lg-20 {
  6534. display: block;
  6535. width: 83.33333333%;
  6536. }
  6537. .ant-col-lg-push-20 {
  6538. left: 83.33333333%;
  6539. }
  6540. .ant-col-lg-pull-20 {
  6541. right: 83.33333333%;
  6542. }
  6543. .ant-col-lg-offset-20 {
  6544. margin-left: 83.33333333%;
  6545. }
  6546. .ant-col-lg-order-20 {
  6547. order: 20;
  6548. }
  6549. .ant-col-lg-19 {
  6550. display: block;
  6551. width: 79.16666667%;
  6552. }
  6553. .ant-col-lg-push-19 {
  6554. left: 79.16666667%;
  6555. }
  6556. .ant-col-lg-pull-19 {
  6557. right: 79.16666667%;
  6558. }
  6559. .ant-col-lg-offset-19 {
  6560. margin-left: 79.16666667%;
  6561. }
  6562. .ant-col-lg-order-19 {
  6563. order: 19;
  6564. }
  6565. .ant-col-lg-18 {
  6566. display: block;
  6567. width: 75%;
  6568. }
  6569. .ant-col-lg-push-18 {
  6570. left: 75%;
  6571. }
  6572. .ant-col-lg-pull-18 {
  6573. right: 75%;
  6574. }
  6575. .ant-col-lg-offset-18 {
  6576. margin-left: 75%;
  6577. }
  6578. .ant-col-lg-order-18 {
  6579. order: 18;
  6580. }
  6581. .ant-col-lg-17 {
  6582. display: block;
  6583. width: 70.83333333%;
  6584. }
  6585. .ant-col-lg-push-17 {
  6586. left: 70.83333333%;
  6587. }
  6588. .ant-col-lg-pull-17 {
  6589. right: 70.83333333%;
  6590. }
  6591. .ant-col-lg-offset-17 {
  6592. margin-left: 70.83333333%;
  6593. }
  6594. .ant-col-lg-order-17 {
  6595. order: 17;
  6596. }
  6597. .ant-col-lg-16 {
  6598. display: block;
  6599. width: 66.66666667%;
  6600. }
  6601. .ant-col-lg-push-16 {
  6602. left: 66.66666667%;
  6603. }
  6604. .ant-col-lg-pull-16 {
  6605. right: 66.66666667%;
  6606. }
  6607. .ant-col-lg-offset-16 {
  6608. margin-left: 66.66666667%;
  6609. }
  6610. .ant-col-lg-order-16 {
  6611. order: 16;
  6612. }
  6613. .ant-col-lg-15 {
  6614. display: block;
  6615. width: 62.5%;
  6616. }
  6617. .ant-col-lg-push-15 {
  6618. left: 62.5%;
  6619. }
  6620. .ant-col-lg-pull-15 {
  6621. right: 62.5%;
  6622. }
  6623. .ant-col-lg-offset-15 {
  6624. margin-left: 62.5%;
  6625. }
  6626. .ant-col-lg-order-15 {
  6627. order: 15;
  6628. }
  6629. .ant-col-lg-14 {
  6630. display: block;
  6631. width: 58.33333333%;
  6632. }
  6633. .ant-col-lg-push-14 {
  6634. left: 58.33333333%;
  6635. }
  6636. .ant-col-lg-pull-14 {
  6637. right: 58.33333333%;
  6638. }
  6639. .ant-col-lg-offset-14 {
  6640. margin-left: 58.33333333%;
  6641. }
  6642. .ant-col-lg-order-14 {
  6643. order: 14;
  6644. }
  6645. .ant-col-lg-13 {
  6646. display: block;
  6647. width: 54.16666667%;
  6648. }
  6649. .ant-col-lg-push-13 {
  6650. left: 54.16666667%;
  6651. }
  6652. .ant-col-lg-pull-13 {
  6653. right: 54.16666667%;
  6654. }
  6655. .ant-col-lg-offset-13 {
  6656. margin-left: 54.16666667%;
  6657. }
  6658. .ant-col-lg-order-13 {
  6659. order: 13;
  6660. }
  6661. .ant-col-lg-12 {
  6662. display: block;
  6663. width: 50%;
  6664. }
  6665. .ant-col-lg-push-12 {
  6666. left: 50%;
  6667. }
  6668. .ant-col-lg-pull-12 {
  6669. right: 50%;
  6670. }
  6671. .ant-col-lg-offset-12 {
  6672. margin-left: 50%;
  6673. }
  6674. .ant-col-lg-order-12 {
  6675. order: 12;
  6676. }
  6677. .ant-col-lg-11 {
  6678. display: block;
  6679. width: 45.83333333%;
  6680. }
  6681. .ant-col-lg-push-11 {
  6682. left: 45.83333333%;
  6683. }
  6684. .ant-col-lg-pull-11 {
  6685. right: 45.83333333%;
  6686. }
  6687. .ant-col-lg-offset-11 {
  6688. margin-left: 45.83333333%;
  6689. }
  6690. .ant-col-lg-order-11 {
  6691. order: 11;
  6692. }
  6693. .ant-col-lg-10 {
  6694. display: block;
  6695. width: 41.66666667%;
  6696. }
  6697. .ant-col-lg-push-10 {
  6698. left: 41.66666667%;
  6699. }
  6700. .ant-col-lg-pull-10 {
  6701. right: 41.66666667%;
  6702. }
  6703. .ant-col-lg-offset-10 {
  6704. margin-left: 41.66666667%;
  6705. }
  6706. .ant-col-lg-order-10 {
  6707. order: 10;
  6708. }
  6709. .ant-col-lg-9 {
  6710. display: block;
  6711. width: 37.5%;
  6712. }
  6713. .ant-col-lg-push-9 {
  6714. left: 37.5%;
  6715. }
  6716. .ant-col-lg-pull-9 {
  6717. right: 37.5%;
  6718. }
  6719. .ant-col-lg-offset-9 {
  6720. margin-left: 37.5%;
  6721. }
  6722. .ant-col-lg-order-9 {
  6723. order: 9;
  6724. }
  6725. .ant-col-lg-8 {
  6726. display: block;
  6727. width: 33.33333333%;
  6728. }
  6729. .ant-col-lg-push-8 {
  6730. left: 33.33333333%;
  6731. }
  6732. .ant-col-lg-pull-8 {
  6733. right: 33.33333333%;
  6734. }
  6735. .ant-col-lg-offset-8 {
  6736. margin-left: 33.33333333%;
  6737. }
  6738. .ant-col-lg-order-8 {
  6739. order: 8;
  6740. }
  6741. .ant-col-lg-7 {
  6742. display: block;
  6743. width: 29.16666667%;
  6744. }
  6745. .ant-col-lg-push-7 {
  6746. left: 29.16666667%;
  6747. }
  6748. .ant-col-lg-pull-7 {
  6749. right: 29.16666667%;
  6750. }
  6751. .ant-col-lg-offset-7 {
  6752. margin-left: 29.16666667%;
  6753. }
  6754. .ant-col-lg-order-7 {
  6755. order: 7;
  6756. }
  6757. .ant-col-lg-6 {
  6758. display: block;
  6759. width: 25%;
  6760. }
  6761. .ant-col-lg-push-6 {
  6762. left: 25%;
  6763. }
  6764. .ant-col-lg-pull-6 {
  6765. right: 25%;
  6766. }
  6767. .ant-col-lg-offset-6 {
  6768. margin-left: 25%;
  6769. }
  6770. .ant-col-lg-order-6 {
  6771. order: 6;
  6772. }
  6773. .ant-col-lg-5 {
  6774. display: block;
  6775. width: 20.83333333%;
  6776. }
  6777. .ant-col-lg-push-5 {
  6778. left: 20.83333333%;
  6779. }
  6780. .ant-col-lg-pull-5 {
  6781. right: 20.83333333%;
  6782. }
  6783. .ant-col-lg-offset-5 {
  6784. margin-left: 20.83333333%;
  6785. }
  6786. .ant-col-lg-order-5 {
  6787. order: 5;
  6788. }
  6789. .ant-col-lg-4 {
  6790. display: block;
  6791. width: 16.66666667%;
  6792. }
  6793. .ant-col-lg-push-4 {
  6794. left: 16.66666667%;
  6795. }
  6796. .ant-col-lg-pull-4 {
  6797. right: 16.66666667%;
  6798. }
  6799. .ant-col-lg-offset-4 {
  6800. margin-left: 16.66666667%;
  6801. }
  6802. .ant-col-lg-order-4 {
  6803. order: 4;
  6804. }
  6805. .ant-col-lg-3 {
  6806. display: block;
  6807. width: 12.5%;
  6808. }
  6809. .ant-col-lg-push-3 {
  6810. left: 12.5%;
  6811. }
  6812. .ant-col-lg-pull-3 {
  6813. right: 12.5%;
  6814. }
  6815. .ant-col-lg-offset-3 {
  6816. margin-left: 12.5%;
  6817. }
  6818. .ant-col-lg-order-3 {
  6819. order: 3;
  6820. }
  6821. .ant-col-lg-2 {
  6822. display: block;
  6823. width: 8.33333333%;
  6824. }
  6825. .ant-col-lg-push-2 {
  6826. left: 8.33333333%;
  6827. }
  6828. .ant-col-lg-pull-2 {
  6829. right: 8.33333333%;
  6830. }
  6831. .ant-col-lg-offset-2 {
  6832. margin-left: 8.33333333%;
  6833. }
  6834. .ant-col-lg-order-2 {
  6835. order: 2;
  6836. }
  6837. .ant-col-lg-1 {
  6838. display: block;
  6839. width: 4.16666667%;
  6840. }
  6841. .ant-col-lg-push-1 {
  6842. left: 4.16666667%;
  6843. }
  6844. .ant-col-lg-pull-1 {
  6845. right: 4.16666667%;
  6846. }
  6847. .ant-col-lg-offset-1 {
  6848. margin-left: 4.16666667%;
  6849. }
  6850. .ant-col-lg-order-1 {
  6851. order: 1;
  6852. }
  6853. .ant-col-lg-0 {
  6854. display: none;
  6855. }
  6856. .ant-col-push-0 {
  6857. left: auto;
  6858. }
  6859. .ant-col-pull-0 {
  6860. right: auto;
  6861. }
  6862. .ant-col-lg-push-0 {
  6863. left: auto;
  6864. }
  6865. .ant-col-lg-pull-0 {
  6866. right: auto;
  6867. }
  6868. .ant-col-lg-offset-0 {
  6869. margin-left: 0;
  6870. }
  6871. .ant-col-lg-order-0 {
  6872. order: 0;
  6873. }
  6874. }
  6875. .ant-modal {
  6876. position: relative;
  6877. width: auto;
  6878. margin: 0 auto;
  6879. top: 100px;
  6880. padding-bottom: 24px;
  6881. }
  6882. .ant-modal-wrap {
  6883. position: fixed;
  6884. overflow: auto;
  6885. top: 0;
  6886. right: 0;
  6887. bottom: 0;
  6888. left: 0;
  6889. z-index: 1000;
  6890. -webkit-overflow-scrolling: touch;
  6891. outline: 0;
  6892. }
  6893. .ant-modal-title {
  6894. margin: 0;
  6895. font-size: 14px;
  6896. line-height: 21px;
  6897. font-weight: bold;
  6898. }
  6899. .ant-modal-content {
  6900. position: relative;
  6901. background-color: #fff;
  6902. border: 0;
  6903. border-radius: 4px;
  6904. background-clip: padding-box;
  6905. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  6906. }
  6907. .ant-modal-close {
  6908. cursor: pointer;
  6909. border: 0;
  6910. background: transparent;
  6911. position: absolute;
  6912. right: 16px;
  6913. top: 16px;
  6914. z-index: 10;
  6915. font-weight: 700;
  6916. line-height: 1;
  6917. text-decoration: none;
  6918. transition: color .3s ease;
  6919. color: rgba(0, 0, 0, 0.43);
  6920. outline: 0;
  6921. }
  6922. .ant-modal-close-x {
  6923. display: block;
  6924. font-style: normal;
  6925. vertical-align: baseline;
  6926. text-align: center;
  6927. text-transform: none;
  6928. text-rendering: auto;
  6929. width: 14px;
  6930. height: 14px;
  6931. font-size: 14px;
  6932. line-height: 1;
  6933. }
  6934. .ant-modal-close-x:before {
  6935. content: "\E633";
  6936. display: block;
  6937. font-family: "anticon" !important;
  6938. }
  6939. .ant-modal-close:focus,
  6940. .ant-modal-close:hover {
  6941. color: #444;
  6942. text-decoration: none;
  6943. }
  6944. .ant-modal-header {
  6945. padding: 14px 16px;
  6946. border-radius: 4px 4px 0 0;
  6947. background: #fff;
  6948. color: rgba(0, 0, 0, 0.65);
  6949. border-bottom: 1px solid #e9e9e9;
  6950. }
  6951. .ant-modal-body {
  6952. padding: 16px;
  6953. font-size: 12px;
  6954. line-height: 1.5;
  6955. }
  6956. .ant-modal-footer {
  6957. border-top: 1px solid #e9e9e9;
  6958. padding: 10px 16px 10px 10px;
  6959. text-align: right;
  6960. border-radius: 0 0 4px 4px;
  6961. }
  6962. .ant-modal-footer button + button {
  6963. margin-left: 8px;
  6964. margin-bottom: 0;
  6965. }
  6966. .ant-modal.zoom-enter,
  6967. .ant-modal.zoom-appear {
  6968. animation-duration: 0.3s;
  6969. transform: none;
  6970. opacity: 0;
  6971. }
  6972. .ant-modal-mask {
  6973. position: fixed;
  6974. top: 0;
  6975. right: 0;
  6976. left: 0;
  6977. bottom: 0;
  6978. background-color: #373737;
  6979. background-color: rgba(55, 55, 55, 0.6);
  6980. height: 100%;
  6981. z-index: 1000;
  6982. filter: alpha(opacity=50);
  6983. }
  6984. .ant-modal-mask-hidden {
  6985. display: none;
  6986. }
  6987. .ant-modal-open {
  6988. overflow: hidden;
  6989. }
  6990. @media (max-width: 768px) {
  6991. .ant-modal {
  6992. width: auto !important;
  6993. margin: 10px;
  6994. }
  6995. .vertical-center-modal .ant-modal {
  6996. flex: 1;
  6997. }
  6998. }
  6999. .ant-confirm .ant-modal-header {
  7000. display: none;
  7001. }
  7002. .ant-confirm .ant-modal-close {
  7003. display: none;
  7004. }
  7005. .ant-confirm .ant-modal-body {
  7006. padding: 30px 40px;
  7007. }
  7008. .ant-confirm-body-wrapper {
  7009. zoom: 1;
  7010. }
  7011. .ant-confirm-body-wrapper:before,
  7012. .ant-confirm-body-wrapper:after {
  7013. content: " ";
  7014. display: table;
  7015. }
  7016. .ant-confirm-body-wrapper:after {
  7017. clear: both;
  7018. visibility: hidden;
  7019. font-size: 0;
  7020. height: 0;
  7021. }
  7022. .ant-confirm-body .ant-confirm-title {
  7023. color: rgba(0, 0, 0, 0.65);
  7024. font-weight: bold;
  7025. font-size: 14px;
  7026. }
  7027. .ant-confirm-body .ant-confirm-content {
  7028. margin-left: 42px;
  7029. font-size: 12px;
  7030. color: rgba(0, 0, 0, 0.65);
  7031. margin-top: 8px;
  7032. }
  7033. .ant-confirm-body > .anticon {
  7034. font-size: 24px;
  7035. margin-right: 16px;
  7036. padding: 0 1px;
  7037. float: left;
  7038. }
  7039. .ant-confirm .ant-confirm-btns {
  7040. margin-top: 30px;
  7041. float: right;
  7042. }
  7043. .ant-confirm .ant-confirm-btns button + button {
  7044. margin-left: 10px;
  7045. margin-bottom: 0;
  7046. }
  7047. .ant-confirm-error .ant-confirm-body > .anticon {
  7048. color: #f04134;
  7049. }
  7050. .ant-confirm-warning .ant-confirm-body > .anticon,
  7051. .ant-confirm-confirm .ant-confirm-body > .anticon {
  7052. color: #ffbf00;
  7053. }
  7054. .ant-confirm-info .ant-confirm-body > .anticon {
  7055. color: #58a3ff;
  7056. }
  7057. .ant-confirm-success .ant-confirm-body > .anticon {
  7058. color: #00a854;
  7059. }
  7060. .ant-select {
  7061. box-sizing: border-box;
  7062. display: inline-block;
  7063. position: relative;
  7064. color: rgba(0, 0, 0, 0.65);
  7065. font-size: 12px;
  7066. }
  7067. .ant-select > ul > li > a {
  7068. padding: 0;
  7069. background-color: #fff;
  7070. }
  7071. .ant-select-arrow {
  7072. font-style: normal;
  7073. vertical-align: baseline;
  7074. text-align: center;
  7075. text-transform: none;
  7076. text-rendering: optimizeLegibility;
  7077. -webkit-font-smoothing: antialiased;
  7078. -moz-osx-font-smoothing: grayscale;
  7079. position: absolute;
  7080. top: 50%;
  7081. right: 8px;
  7082. line-height: 1;
  7083. margin-top: -6px;
  7084. display: inline-block;
  7085. font-size: 12px;
  7086. font-size: 9px \9;
  7087. transform: scale(0.75) rotate(0deg);
  7088. /* IE6-IE8 */
  7089. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7090. zoom: 1;
  7091. }
  7092. .ant-select-arrow:before {
  7093. display: block;
  7094. font-family: "anticon" !important;
  7095. }
  7096. :root .ant-select-arrow {
  7097. filter: none;
  7098. }
  7099. :root .ant-select-arrow {
  7100. font-size: 12px;
  7101. }
  7102. .ant-select-arrow * {
  7103. display: none;
  7104. }
  7105. .ant-select-arrow:before {
  7106. content: '\E61D';
  7107. transition: transform 0.2s ease;
  7108. }
  7109. .ant-select-selection {
  7110. outline: none;
  7111. user-select: none;
  7112. box-sizing: border-box;
  7113. display: block;
  7114. background-color: #fff;
  7115. border-radius: 4px;
  7116. border: 1px solid #d9d9d9;
  7117. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7118. }
  7119. .ant-select-selection:hover {
  7120. border-color: #80b9ff;
  7121. }
  7122. .ant-select-focused .ant-select-selection,
  7123. .ant-select-selection:focus,
  7124. .ant-select-selection:active {
  7125. border-color: #80b9ff;
  7126. outline: 0;
  7127. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  7128. }
  7129. .ant-select-selection__clear {
  7130. display: inline-block;
  7131. font-style: normal;
  7132. vertical-align: baseline;
  7133. text-align: center;
  7134. text-transform: none;
  7135. text-rendering: auto;
  7136. opacity: 0;
  7137. position: absolute;
  7138. right: 8px;
  7139. z-index: 1;
  7140. background: #fff;
  7141. top: 50%;
  7142. font-size: 12px;
  7143. color: rgba(0, 0, 0, 0.25);
  7144. width: 12px;
  7145. height: 12px;
  7146. margin-top: -6px;
  7147. line-height: 12px;
  7148. cursor: pointer;
  7149. transition: color 0.3s ease, opacity 0.15s ease;
  7150. }
  7151. .ant-select-selection__clear:before {
  7152. display: block;
  7153. font-family: 'anticon';
  7154. text-rendering: optimizeLegibility;
  7155. -webkit-font-smoothing: antialiased;
  7156. -moz-osx-font-smoothing: grayscale;
  7157. content: "\E62E";
  7158. }
  7159. .ant-select-selection__clear:hover {
  7160. color: rgba(0, 0, 0, 0.43);
  7161. }
  7162. .ant-select-selection:hover .ant-select-selection__clear {
  7163. opacity: 1;
  7164. }
  7165. .ant-select-selection-selected-value {
  7166. float: left;
  7167. overflow: hidden;
  7168. text-overflow: ellipsis;
  7169. white-space: nowrap;
  7170. max-width: 100%;
  7171. padding-right: 14px;
  7172. }
  7173. .ant-select-disabled {
  7174. color: rgba(0, 0, 0, 0.25);
  7175. }
  7176. .ant-select-disabled .ant-select-selection {
  7177. background: #f7f7f7;
  7178. cursor: not-allowed;
  7179. }
  7180. .ant-select-disabled .ant-select-selection:hover,
  7181. .ant-select-disabled .ant-select-selection:focus,
  7182. .ant-select-disabled .ant-select-selection:active {
  7183. border-color: #d9d9d9;
  7184. box-shadow: none;
  7185. }
  7186. .ant-select-disabled .ant-select-selection__clear {
  7187. display: none;
  7188. visibility: hidden;
  7189. pointer-events: none;
  7190. }
  7191. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
  7192. background: #e9e9e9;
  7193. color: #aaa;
  7194. padding-right: 10px;
  7195. }
  7196. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7197. display: none;
  7198. }
  7199. .ant-select-selection--single {
  7200. height: 28px;
  7201. position: relative;
  7202. cursor: pointer;
  7203. }
  7204. .ant-select-selection__rendered {
  7205. display: block;
  7206. margin-left: 7px;
  7207. margin-right: 7px;
  7208. position: relative;
  7209. line-height: 26px;
  7210. }
  7211. .ant-select-selection__rendered:after {
  7212. content: '.';
  7213. visibility: hidden;
  7214. pointer-events: none;
  7215. display: inline-block;
  7216. width: 0;
  7217. }
  7218. .ant-select-lg .ant-select-selection--single {
  7219. height: 32px;
  7220. }
  7221. .ant-select-lg .ant-select-selection__rendered {
  7222. line-height: 30px;
  7223. }
  7224. .ant-select-lg .ant-select-selection--multiple {
  7225. min-height: 32px;
  7226. }
  7227. .ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li {
  7228. height: 24px;
  7229. line-height: 24px;
  7230. }
  7231. .ant-select-sm .ant-select-selection--single {
  7232. height: 22px;
  7233. }
  7234. .ant-select-sm .ant-select-selection__rendered {
  7235. line-height: 20px;
  7236. }
  7237. .ant-select-sm .ant-select-selection--multiple {
  7238. min-height: 22px;
  7239. }
  7240. .ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li {
  7241. height: 14px;
  7242. line-height: 14px;
  7243. }
  7244. .ant-select-disabled .ant-select-selection__choice__remove {
  7245. color: rgba(0, 0, 0, 0.25);
  7246. cursor: default;
  7247. }
  7248. .ant-select-disabled .ant-select-selection__choice__remove:hover {
  7249. color: rgba(0, 0, 0, 0.25);
  7250. }
  7251. .ant-select-search__field__wrap {
  7252. display: inline-block;
  7253. position: relative;
  7254. }
  7255. .ant-select-selection__placeholder,
  7256. .ant-select-search__field__placeholder {
  7257. position: absolute;
  7258. top: 50%;
  7259. left: 0;
  7260. right: 9px;
  7261. color: #ccc;
  7262. line-height: 20px;
  7263. height: 20px;
  7264. max-width: 100%;
  7265. margin-top: -10px;
  7266. overflow: hidden;
  7267. text-overflow: ellipsis;
  7268. white-space: nowrap;
  7269. }
  7270. .ant-select-search__field__placeholder {
  7271. left: 8px;
  7272. }
  7273. .ant-select-search--inline {
  7274. position: absolute;
  7275. height: 100%;
  7276. }
  7277. .ant-select-selection--multiple .ant-select-search--inline {
  7278. float: left;
  7279. position: static;
  7280. }
  7281. .ant-select-search--inline .ant-select-search__field__wrap {
  7282. width: 100%;
  7283. height: 100%;
  7284. }
  7285. .ant-select-search--inline .ant-select-search__field {
  7286. border: 0;
  7287. font-size: 100%;
  7288. height: 100%;
  7289. width: 100%;
  7290. background: transparent;
  7291. outline: 0;
  7292. border-radius: 4px;
  7293. }
  7294. .ant-select-search--inline .ant-select-search__field__mirror {
  7295. position: absolute;
  7296. top: 0;
  7297. left: -9999px;
  7298. white-space: pre;
  7299. pointer-events: none;
  7300. }
  7301. .ant-select-search--inline > i {
  7302. float: right;
  7303. }
  7304. .ant-select-selection--multiple {
  7305. min-height: 28px;
  7306. cursor: text;
  7307. padding-bottom: 3px;
  7308. zoom: 1;
  7309. }
  7310. .ant-select-selection--multiple:before,
  7311. .ant-select-selection--multiple:after {
  7312. content: " ";
  7313. display: table;
  7314. }
  7315. .ant-select-selection--multiple:after {
  7316. clear: both;
  7317. visibility: hidden;
  7318. font-size: 0;
  7319. height: 0;
  7320. }
  7321. .ant-select-selection--multiple .ant-select-search--inline {
  7322. width: auto;
  7323. padding: 0;
  7324. }
  7325. .ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  7326. width: 0.75em;
  7327. }
  7328. .ant-select-selection--multiple .ant-select-selection__rendered {
  7329. margin-left: 5px;
  7330. margin-bottom: -3px;
  7331. height: auto;
  7332. }
  7333. .ant-select-selection--multiple > ul > li,
  7334. .ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  7335. margin-top: 3px;
  7336. height: 20px;
  7337. line-height: 20px;
  7338. }
  7339. .ant-select-selection--multiple .ant-select-selection__choice {
  7340. background-color: #f3f3f3;
  7341. border-radius: 4px;
  7342. cursor: default;
  7343. float: left;
  7344. margin-right: 4px;
  7345. max-width: 99%;
  7346. position: relative;
  7347. overflow: hidden;
  7348. transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7349. padding: 0 20px 0 10px;
  7350. }
  7351. .ant-select-selection--multiple .ant-select-selection__choice__disabled {
  7352. padding: 0 10px;
  7353. }
  7354. .ant-select-selection--multiple .ant-select-selection__choice__content {
  7355. display: inline-block;
  7356. white-space: nowrap;
  7357. overflow: hidden;
  7358. text-overflow: ellipsis;
  7359. max-width: 100%;
  7360. transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7361. }
  7362. .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7363. font-style: normal;
  7364. vertical-align: baseline;
  7365. text-align: center;
  7366. text-transform: none;
  7367. line-height: 1;
  7368. text-rendering: optimizeLegibility;
  7369. -webkit-font-smoothing: antialiased;
  7370. -moz-osx-font-smoothing: grayscale;
  7371. color: rgba(0, 0, 0, 0.43);
  7372. line-height: inherit;
  7373. cursor: pointer;
  7374. font-weight: bold;
  7375. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7376. display: inline-block;
  7377. font-size: 12px;
  7378. font-size: 8px \9;
  7379. transform: scale(0.66666667) rotate(0deg);
  7380. /* IE6-IE8 */
  7381. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7382. zoom: 1;
  7383. position: absolute;
  7384. right: 4px;
  7385. padding: 0 0 0 8px;
  7386. }
  7387. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  7388. display: block;
  7389. font-family: "anticon" !important;
  7390. }
  7391. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7392. filter: none;
  7393. }
  7394. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7395. font-size: 12px;
  7396. }
  7397. .ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
  7398. color: #404040;
  7399. }
  7400. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  7401. content: "\E633";
  7402. }
  7403. .ant-select-open .ant-select-arrow {
  7404. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  7405. -ms-transform: rotate(180deg);
  7406. }
  7407. .ant-select-open .ant-select-arrow:before {
  7408. transform: rotate(180deg);
  7409. }
  7410. .ant-select-open .ant-select-selection {
  7411. border-color: #80b9ff;
  7412. outline: 0;
  7413. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  7414. }
  7415. .ant-select-combobox .ant-select-arrow {
  7416. display: none;
  7417. }
  7418. .ant-select-combobox .ant-select-search--inline {
  7419. height: 100%;
  7420. width: 100%;
  7421. float: none;
  7422. }
  7423. .ant-select-combobox .ant-select-search__field__wrap {
  7424. width: 100%;
  7425. height: 100%;
  7426. }
  7427. .ant-select-combobox .ant-select-search__field {
  7428. width: 100%;
  7429. height: 100%;
  7430. position: relative;
  7431. z-index: 1;
  7432. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7433. box-shadow: none;
  7434. }
  7435. .ant-select-dropdown {
  7436. background-color: #fff;
  7437. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  7438. border-radius: 4px;
  7439. box-sizing: border-box;
  7440. z-index: 1050;
  7441. left: -9999px;
  7442. top: -9999px;
  7443. position: absolute;
  7444. outline: none;
  7445. overflow: hidden;
  7446. font-size: 12px;
  7447. }
  7448. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
  7449. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  7450. animation-name: antSlideUpIn;
  7451. }
  7452. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
  7453. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  7454. animation-name: antSlideDownIn;
  7455. }
  7456. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  7457. animation-name: antSlideUpOut;
  7458. }
  7459. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  7460. animation-name: antSlideDownOut;
  7461. }
  7462. .ant-select-dropdown-hidden {
  7463. display: none;
  7464. }
  7465. .ant-select-dropdown-menu {
  7466. outline: none;
  7467. margin-bottom: 0;
  7468. padding-left: 0;
  7469. list-style: none;
  7470. max-height: 250px;
  7471. overflow: auto;
  7472. }
  7473. .ant-select-dropdown-menu-item-group-list {
  7474. margin: 0;
  7475. padding: 0;
  7476. }
  7477. .ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item {
  7478. padding-left: 24px;
  7479. }
  7480. .ant-select-dropdown-menu-item-group-title {
  7481. color: rgba(0, 0, 0, 0.43);
  7482. line-height: 1.5;
  7483. padding: 8px 16px;
  7484. }
  7485. .ant-select-dropdown-menu-item {
  7486. position: relative;
  7487. display: block;
  7488. padding: 7px 16px;
  7489. font-weight: normal;
  7490. color: rgba(0, 0, 0, 0.65);
  7491. white-space: nowrap;
  7492. cursor: pointer;
  7493. overflow: hidden;
  7494. transition: background 0.3s ease;
  7495. }
  7496. .ant-select-dropdown-menu-item:hover,
  7497. .ant-select-dropdown-menu-item-active {
  7498. background-color: #f2f8ff;
  7499. }
  7500. .ant-select-dropdown-menu-item-disabled {
  7501. color: rgba(0, 0, 0, 0.25);
  7502. cursor: not-allowed;
  7503. }
  7504. .ant-select-dropdown-menu-item-disabled:hover {
  7505. color: rgba(0, 0, 0, 0.25);
  7506. background-color: #fff;
  7507. cursor: not-allowed;
  7508. }
  7509. .ant-select-dropdown-menu-item-selected,
  7510. .ant-select-dropdown-menu-item-selected:hover {
  7511. background-color: #f7f7f7;
  7512. font-weight: bold;
  7513. color: rgba(0, 0, 0, 0.65);
  7514. }
  7515. .ant-select-dropdown-menu-item-divider {
  7516. height: 1px;
  7517. margin: 1px 0;
  7518. overflow: hidden;
  7519. background-color: #e5e5e5;
  7520. line-height: 0;
  7521. }
  7522. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7523. font-family: 'anticon';
  7524. text-rendering: optimizeLegibility;
  7525. -webkit-font-smoothing: antialiased;
  7526. -moz-osx-font-smoothing: grayscale;
  7527. content: "\E632";
  7528. color: transparent;
  7529. display: inline-block;
  7530. font-size: 12px;
  7531. font-size: 10px \9;
  7532. transform: scale(0.83333333) rotate(0deg);
  7533. /* IE6-IE8 */
  7534. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7535. zoom: 1;
  7536. transition: all 0.2s ease;
  7537. position: absolute;
  7538. top: 50%;
  7539. transform: translateY(-50%);
  7540. right: 16px;
  7541. font-weight: bold;
  7542. text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  7543. }
  7544. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7545. filter: none;
  7546. }
  7547. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7548. font-size: 12px;
  7549. }
  7550. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover:after {
  7551. color: #ddd;
  7552. }
  7553. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled:after {
  7554. display: none;
  7555. }
  7556. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:after,
  7557. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover:after {
  7558. color: #58a3ff;
  7559. display: inline-block;
  7560. }
  7561. .ant-select-dropdown-container-open .ant-select-dropdown,
  7562. .ant-select-dropdown-open .ant-select-dropdown {
  7563. display: block;
  7564. }
  7565. .ant-upload {
  7566. font-size: 12px;
  7567. outline: 0;
  7568. }
  7569. .ant-upload-btn {
  7570. display: block;
  7571. width: 100%;
  7572. outline: none;
  7573. }
  7574. .ant-upload input[type="file"] {
  7575. cursor: pointer;
  7576. }
  7577. .ant-upload.ant-upload-select {
  7578. display: inline-block;
  7579. }
  7580. .ant-upload.ant-upload-select-picture-card {
  7581. border: 1px dashed #d9d9d9;
  7582. width: 96px;
  7583. height: 96px;
  7584. border-radius: 4px;
  7585. background-color: #fbfbfb;
  7586. text-align: center;
  7587. cursor: pointer;
  7588. transition: border-color 0.3s ease;
  7589. display: inline-block;
  7590. vertical-align: top;
  7591. margin-right: 8px;
  7592. margin-bottom: 8px;
  7593. }
  7594. .ant-upload.ant-upload-select-picture-card > .ant-upload {
  7595. display: block;
  7596. width: 100%;
  7597. height: 100%;
  7598. padding: 20px 0;
  7599. }
  7600. .ant-upload.ant-upload-select-picture-card:hover {
  7601. border-color: #58a3ff;
  7602. }
  7603. .ant-upload.ant-upload-drag {
  7604. border: 1px dashed #d9d9d9;
  7605. transition: border-color 0.3s ease;
  7606. cursor: pointer;
  7607. border-radius: 4px;
  7608. text-align: center;
  7609. width: 100%;
  7610. height: 100%;
  7611. position: relative;
  7612. }
  7613. .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  7614. border: 2px dashed #80b9ff;
  7615. }
  7616. .ant-upload.ant-upload-drag.ant-upload-disabled {
  7617. cursor: not-allowed;
  7618. }
  7619. .ant-upload.ant-upload-drag .ant-upload-btn {
  7620. display: table;
  7621. height: 100%;
  7622. }
  7623. .ant-upload.ant-upload-drag .ant-upload-drag-container {
  7624. display: table-cell;
  7625. vertical-align: middle;
  7626. }
  7627. .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  7628. border-color: #80b9ff;
  7629. }
  7630. .ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  7631. height: 60px;
  7632. margin-bottom: 24px;
  7633. }
  7634. .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  7635. font-size: 80px;
  7636. margin-top: -5px;
  7637. color: #80b9ff;
  7638. }
  7639. .ant-upload.ant-upload-drag p.ant-upload-text {
  7640. font-size: 14px;
  7641. }
  7642. .ant-upload.ant-upload-drag p.ant-upload-hint {
  7643. font-size: 12px;
  7644. color: rgba(0, 0, 0, 0.43);
  7645. }
  7646. .ant-upload.ant-upload-drag .anticon-plus {
  7647. font-size: 30px;
  7648. transition: all 0.3s ease;
  7649. color: rgba(0, 0, 0, 0.25);
  7650. }
  7651. .ant-upload.ant-upload-drag .anticon-plus:hover {
  7652. color: rgba(0, 0, 0, 0.43);
  7653. }
  7654. .ant-upload.ant-upload-drag:hover .anticon-plus {
  7655. color: rgba(0, 0, 0, 0.43);
  7656. }
  7657. .ant-upload-list {
  7658. overflow: hidden;
  7659. }
  7660. .ant-upload-list-item {
  7661. overflow: hidden;
  7662. margin-top: 8px;
  7663. font-size: 12px;
  7664. }
  7665. .ant-upload-list-item-info {
  7666. height: 22px;
  7667. line-height: 22px;
  7668. padding: 0 4px;
  7669. transition: background-color 0.3s ease;
  7670. }
  7671. .ant-upload-list-item-info .anticon-paper-clip {
  7672. margin-right: 4px;
  7673. font-size: 12px;
  7674. color: rgba(0, 0, 0, 0.43);
  7675. }
  7676. .ant-upload-list-item-info .anticon-cross {
  7677. display: inline-block;
  7678. font-size: 12px;
  7679. font-size: 10px \9;
  7680. transform: scale(0.83333333) rotate(0deg);
  7681. /* IE6-IE8 */
  7682. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7683. zoom: 1;
  7684. transition: all 0.3s ease;
  7685. opacity: 0;
  7686. cursor: pointer;
  7687. float: right;
  7688. color: rgba(0, 0, 0, 0.43);
  7689. line-height: 22px;
  7690. }
  7691. :root .ant-upload-list-item-info .anticon-cross {
  7692. filter: none;
  7693. }
  7694. :root .ant-upload-list-item-info .anticon-cross {
  7695. font-size: 12px;
  7696. }
  7697. .ant-upload-list-item-info .anticon-cross:hover {
  7698. color: rgba(0, 0, 0, 0.65);
  7699. }
  7700. .ant-upload-list-item:hover .ant-upload-list-item-info {
  7701. background-color: #f2f8ff;
  7702. }
  7703. .ant-upload-list-item:hover .anticon-cross {
  7704. opacity: 1;
  7705. }
  7706. .ant-upload-list-item-error,
  7707. .ant-upload-list-item-error .anticon-paper-clip,
  7708. .ant-upload-list-item-error .ant-upload-list-item-name {
  7709. color: #f04134;
  7710. }
  7711. .ant-upload-list-item-error .anticon-cross {
  7712. opacity: 1;
  7713. color: #f04134 !important;
  7714. }
  7715. .ant-upload-list-item-progress {
  7716. padding: 0 8px 0 20px;
  7717. margin-top: -2px;
  7718. margin-bottom: 1px;
  7719. font-size: 12px;
  7720. }
  7721. .ant-upload-list-item-progress .ant-progress-line-inner {
  7722. vertical-align: middle;
  7723. }
  7724. .ant-upload-list-picture .ant-upload-list-item,
  7725. .ant-upload-list-picture-card .ant-upload-list-item {
  7726. padding: 8px;
  7727. border-radius: 4px;
  7728. border: 1px solid #d9d9d9;
  7729. height: 66px;
  7730. position: relative;
  7731. }
  7732. .ant-upload-list-picture .ant-upload-list-item:hover,
  7733. .ant-upload-list-picture-card .ant-upload-list-item:hover {
  7734. background: transparent;
  7735. }
  7736. .ant-upload-list-picture .ant-upload-list-item-error,
  7737. .ant-upload-list-picture-card .ant-upload-list-item-error {
  7738. border-color: #f04134;
  7739. }
  7740. .ant-upload-list-picture .ant-upload-list-item-info,
  7741. .ant-upload-list-picture-card .ant-upload-list-item-info {
  7742. padding: 0;
  7743. }
  7744. .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
  7745. .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  7746. background: transparent;
  7747. }
  7748. .ant-upload-list-picture .ant-upload-list-item-uploading,
  7749. .ant-upload-list-picture-card .ant-upload-list-item-uploading {
  7750. border-style: dashed;
  7751. }
  7752. .ant-upload-list-picture .ant-upload-list-item-thumbnail,
  7753. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  7754. width: 48px;
  7755. height: 48px;
  7756. position: absolute;
  7757. top: 8px;
  7758. left: 8px;
  7759. }
  7760. .ant-upload-list-picture .ant-upload-list-item-thumbnail img,
  7761. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  7762. width: 48px;
  7763. height: 48px;
  7764. display: block;
  7765. overflow: hidden;
  7766. border-radius: 4px;
  7767. }
  7768. .ant-upload-list-picture .ant-upload-list-item-thumbnail.anticon:before,
  7769. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail.anticon:before {
  7770. line-height: 48px;
  7771. font-size: 24px;
  7772. color: rgba(0, 0, 0, 0.43);
  7773. }
  7774. .ant-upload-list-picture .ant-upload-list-item-name,
  7775. .ant-upload-list-picture-card .ant-upload-list-item-name {
  7776. overflow: hidden;
  7777. text-overflow: ellipsis;
  7778. white-space: nowrap;
  7779. margin: 0 0 0 8px;
  7780. line-height: 44px;
  7781. transition: all 0.3s ease;
  7782. padding-left: 48px;
  7783. padding-right: 8px;
  7784. max-width: 100%;
  7785. display: inline-block;
  7786. box-sizing: border-box;
  7787. }
  7788. .ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
  7789. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  7790. line-height: 28px;
  7791. }
  7792. .ant-upload-list-picture .ant-upload-list-item-progress,
  7793. .ant-upload-list-picture-card .ant-upload-list-item-progress {
  7794. padding-left: 56px;
  7795. margin-top: 0;
  7796. }
  7797. .ant-upload-list-picture .anticon-cross,
  7798. .ant-upload-list-picture-card .anticon-cross {
  7799. position: absolute;
  7800. right: 8px;
  7801. top: 8px;
  7802. line-height: 1;
  7803. }
  7804. .ant-upload-list-picture-card {
  7805. display: inline;
  7806. }
  7807. .ant-upload-list-picture-card .ant-upload-list-item {
  7808. display: inline-block;
  7809. width: 96px;
  7810. height: 96px;
  7811. margin: 0 8px 8px 0;
  7812. }
  7813. .ant-upload-list-picture-card .ant-upload-list-item-info {
  7814. height: 100%;
  7815. position: relative;
  7816. }
  7817. .ant-upload-list-picture-card .ant-upload-list-item-info:before {
  7818. content: ' ';
  7819. position: absolute;
  7820. z-index: 1;
  7821. background-color: rgba(0, 0, 0, 0.5);
  7822. transition: all .3s;
  7823. opacity: 0;
  7824. width: 100%;
  7825. height: 100%;
  7826. }
  7827. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-eye-o,
  7828. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-delete {
  7829. z-index: 10;
  7830. transition: all .3;
  7831. cursor: pointer;
  7832. font-size: 16px;
  7833. width: 16px;
  7834. color: rgba(255, 255, 255, 0.91);
  7835. opacity: 0;
  7836. margin: 0 4px;
  7837. }
  7838. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-eye-o:hover,
  7839. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-delete:hover {
  7840. color: #fff;
  7841. }
  7842. .ant-upload-list-picture-card .ant-upload-list-item-info:hover:before {
  7843. opacity: 1;
  7844. }
  7845. .ant-upload-list-picture-card .ant-upload-list-item-info:hover .anticon-eye-o,
  7846. .ant-upload-list-picture-card .ant-upload-list-item-info:hover .anticon-delete {
  7847. opacity: 1;
  7848. }
  7849. .ant-upload-list-picture-card .ant-upload-list-item-actions {
  7850. position: absolute;
  7851. left: 50%;
  7852. top: 50%;
  7853. transform: translate(-50%, -50%);
  7854. z-index: 10;
  7855. white-space: nowrap;
  7856. }
  7857. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
  7858. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  7859. display: block;
  7860. width: 100%;
  7861. height: 100%;
  7862. position: static;
  7863. }
  7864. .ant-upload-list-picture-card .ant-upload-list-item-name {
  7865. display: none;
  7866. }
  7867. .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  7868. background-color: #fbfbfb;
  7869. }
  7870. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  7871. height: auto;
  7872. }
  7873. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info:before,
  7874. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o,
  7875. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  7876. display: none;
  7877. }
  7878. .ant-upload-list-picture-card .ant-upload-list-item-uploading-text {
  7879. margin-top: 18px;
  7880. color: rgba(0, 0, 0, 0.43);
  7881. }
  7882. .ant-upload-list-picture-card .ant-upload-list-item-progress {
  7883. padding-left: 0;
  7884. }
  7885. .ant-upload-list .ant-upload-success-icon {
  7886. color: #00a854;
  7887. font-weight: bold;
  7888. }
  7889. .ant-upload-list .ant-upload-margin-top-enter {
  7890. animation: uploadMarginTopIn 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  7891. }
  7892. .ant-upload-list .ant-upload-margin-top-leave {
  7893. animation: uploadMarginTopOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  7894. }
  7895. @keyframes uploadMarginTopIn {
  7896. from {
  7897. margin-top: -25px;
  7898. opacity: 0;
  7899. }
  7900. }
  7901. @keyframes uploadMarginTopOut {
  7902. to {
  7903. margin-top: -25px;
  7904. opacity: 0;
  7905. }
  7906. }
  7907. .ant-progress {
  7908. display: inline-block;
  7909. }
  7910. .ant-progress-line {
  7911. width: 100%;
  7912. font-size: 12px;
  7913. position: relative;
  7914. }
  7915. .ant-progress-outer {
  7916. display: inline-block;
  7917. width: 100%;
  7918. margin-right: 0;
  7919. padding-right: 0;
  7920. }
  7921. .ant-progress-show-info .ant-progress-outer {
  7922. padding-right: 45px;
  7923. margin-right: -45px;
  7924. }
  7925. .ant-progress-inner {
  7926. display: inline-block;
  7927. width: 100%;
  7928. background-color: #f7f7f7;
  7929. border-radius: 100px;
  7930. vertical-align: middle;
  7931. }
  7932. .ant-progress-circle-trail {
  7933. stroke: #f7f7f7;
  7934. }
  7935. .ant-progress-circle-path {
  7936. stroke: #58a3ff;
  7937. }
  7938. .ant-progress-bg {
  7939. border-radius: 100px;
  7940. background-color: #58a3ff;
  7941. transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  7942. position: relative;
  7943. }
  7944. .ant-progress-text {
  7945. width: 35px;
  7946. text-align: left;
  7947. font-size: 1em;
  7948. margin-left: 10px;
  7949. vertical-align: middle;
  7950. display: inline-block;
  7951. font-family: tahoma;
  7952. position: relative;
  7953. top: -1px;
  7954. }
  7955. .ant-progress-text .anticon {
  7956. font-size: 12px;
  7957. }
  7958. .ant-progress-status-active .ant-progress-bg:before {
  7959. content: "";
  7960. opacity: 0;
  7961. position: absolute;
  7962. top: 0;
  7963. left: 0;
  7964. right: 0;
  7965. bottom: 0;
  7966. background: #fff;
  7967. border-radius: 10px;
  7968. animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  7969. }
  7970. .ant-progress-status-exception .ant-progress-bg {
  7971. background-color: #f04134;
  7972. }
  7973. .ant-progress-status-exception .ant-progress-text {
  7974. color: #f04134;
  7975. }
  7976. .ant-progress-status-exception .ant-progress-circle-path {
  7977. stroke: #f04134;
  7978. }
  7979. .ant-progress-status-success .ant-progress-bg {
  7980. background-color: #00a854;
  7981. }
  7982. .ant-progress-status-success .ant-progress-text {
  7983. color: #00a854;
  7984. }
  7985. .ant-progress-status-success .ant-progress-circle-path {
  7986. stroke: #00a854;
  7987. }
  7988. .ant-progress-circle .ant-progress-inner {
  7989. position: relative;
  7990. line-height: 1;
  7991. background-color: transparent;
  7992. }
  7993. .ant-progress-circle .ant-progress-text {
  7994. display: block;
  7995. position: absolute;
  7996. width: 100%;
  7997. text-align: center;
  7998. line-height: 1;
  7999. top: 50%;
  8000. transform: translateY(-50%);
  8001. left: 0;
  8002. font-family: tahoma;
  8003. margin: 0;
  8004. }
  8005. .ant-progress-circle .ant-progress-text .anticon {
  8006. font-size: 1.16666667em;
  8007. }
  8008. .ant-progress-circle .ant-progress-status-exception .ant-progress-text {
  8009. color: #f04134;
  8010. }
  8011. .ant-progress-circle .ant-progress-status-success .ant-progress-text {
  8012. color: #00a854;
  8013. }
  8014. @keyframes ant-progress-active {
  8015. 0% {
  8016. opacity: 0.1;
  8017. width: 0;
  8018. }
  8019. 20% {
  8020. opacity: 0.5;
  8021. width: 0;
  8022. }
  8023. 100% {
  8024. opacity: 0;
  8025. width: 100%;
  8026. }
  8027. }
  8028. .ant-tooltip {
  8029. position: absolute;
  8030. z-index: 1060;
  8031. display: block;
  8032. visibility: visible;
  8033. font-size: 12px;
  8034. line-height: 1.5;
  8035. }
  8036. .ant-tooltip-hidden {
  8037. display: none;
  8038. }
  8039. .ant-tooltip-placement-top,
  8040. .ant-tooltip-placement-topLeft,
  8041. .ant-tooltip-placement-topRight {
  8042. padding: 5px 0 8px 0;
  8043. }
  8044. .ant-tooltip-placement-right,
  8045. .ant-tooltip-placement-rightTop,
  8046. .ant-tooltip-placement-rightBottom {
  8047. padding: 0 5px 0 8px;
  8048. }
  8049. .ant-tooltip-placement-bottom,
  8050. .ant-tooltip-placement-bottomLeft,
  8051. .ant-tooltip-placement-bottomRight {
  8052. padding: 8px 0 5px 0;
  8053. }
  8054. .ant-tooltip-placement-left,
  8055. .ant-tooltip-placement-leftTop,
  8056. .ant-tooltip-placement-leftBottom {
  8057. padding: 0 8px 0 5px;
  8058. }
  8059. .ant-tooltip-inner {
  8060. max-width: 250px;
  8061. padding: 8px 10px;
  8062. color: #fff;
  8063. text-align: left;
  8064. text-decoration: none;
  8065. background-color: rgba(64, 64, 64, 0.85);
  8066. border-radius: 4px;
  8067. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  8068. min-height: 34px;
  8069. }
  8070. .ant-tooltip-arrow {
  8071. position: absolute;
  8072. width: 0;
  8073. height: 0;
  8074. border-color: transparent;
  8075. border-style: solid;
  8076. }
  8077. .ant-tooltip-placement-top .ant-tooltip-arrow,
  8078. .ant-tooltip-placement-topLeft .ant-tooltip-arrow,
  8079. .ant-tooltip-placement-topRight .ant-tooltip-arrow {
  8080. bottom: 3px;
  8081. border-width: 5px 5px 0;
  8082. border-top-color: rgba(64, 64, 64, 0.85);
  8083. }
  8084. .ant-tooltip-placement-top .ant-tooltip-arrow {
  8085. left: 50%;
  8086. margin-left: -5px;
  8087. }
  8088. .ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  8089. left: 16px;
  8090. }
  8091. .ant-tooltip-placement-topRight .ant-tooltip-arrow {
  8092. right: 16px;
  8093. }
  8094. .ant-tooltip-placement-right .ant-tooltip-arrow,
  8095. .ant-tooltip-placement-rightTop .ant-tooltip-arrow,
  8096. .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  8097. left: 3px;
  8098. border-width: 5px 5px 5px 0;
  8099. border-right-color: rgba(64, 64, 64, 0.85);
  8100. }
  8101. .ant-tooltip-placement-right .ant-tooltip-arrow {
  8102. top: 50%;
  8103. margin-top: -5px;
  8104. }
  8105. .ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  8106. top: 8px;
  8107. }
  8108. .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  8109. bottom: 8px;
  8110. }
  8111. .ant-tooltip-placement-left .ant-tooltip-arrow,
  8112. .ant-tooltip-placement-leftTop .ant-tooltip-arrow,
  8113. .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  8114. right: 3px;
  8115. border-width: 5px 0 5px 5px;
  8116. border-left-color: rgba(64, 64, 64, 0.85);
  8117. }
  8118. .ant-tooltip-placement-left .ant-tooltip-arrow {
  8119. top: 50%;
  8120. margin-top: -5px;
  8121. }
  8122. .ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  8123. top: 8px;
  8124. }
  8125. .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  8126. bottom: 8px;
  8127. }
  8128. .ant-tooltip-placement-bottom .ant-tooltip-arrow,
  8129. .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
  8130. .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  8131. top: 3px;
  8132. border-width: 0 5px 5px;
  8133. border-bottom-color: rgba(64, 64, 64, 0.85);
  8134. }
  8135. .ant-tooltip-placement-bottom .ant-tooltip-arrow {
  8136. left: 50%;
  8137. margin-left: -5px;
  8138. }
  8139. .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  8140. left: 16px;
  8141. }
  8142. .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  8143. right: 16px;
  8144. }
  8145. .ant-menu {
  8146. outline: none;
  8147. margin-bottom: 0;
  8148. padding-left: 0;
  8149. list-style: none;
  8150. z-index: 1050;
  8151. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  8152. color: rgba(0, 0, 0, 0.65);
  8153. background: #fff;
  8154. line-height: 46px;
  8155. }
  8156. .ant-menu-hidden {
  8157. display: none;
  8158. }
  8159. .ant-menu-item-group-list {
  8160. margin: 0;
  8161. padding: 0;
  8162. }
  8163. .ant-menu-item-group-title {
  8164. color: rgba(0, 0, 0, 0.43);
  8165. font-size: 12px;
  8166. line-height: 1.5;
  8167. padding: 8px 16px;
  8168. }
  8169. .ant-menu-item,
  8170. .ant-menu-submenu,
  8171. .ant-menu-submenu-title {
  8172. cursor: pointer;
  8173. transition: all 0.3s ease;
  8174. }
  8175. .ant-menu-item:active,
  8176. .ant-menu-submenu-title:active {
  8177. background: #f2f8ff;
  8178. }
  8179. .ant-menu-submenu .ant-menu-sub {
  8180. cursor: initial;
  8181. }
  8182. .ant-menu-item > a {
  8183. display: block;
  8184. color: rgba(0, 0, 0, 0.65);
  8185. }
  8186. .ant-menu-item > a:hover {
  8187. color: #58a3ff;
  8188. }
  8189. .ant-menu-item > a:before {
  8190. position: absolute;
  8191. background-color: transparent;
  8192. width: 100%;
  8193. height: 100%;
  8194. top: 0;
  8195. left: 0;
  8196. bottom: 0;
  8197. right: 0;
  8198. content: '';
  8199. }
  8200. .ant-menu-item-divider {
  8201. height: 1px;
  8202. overflow: hidden;
  8203. background-color: #e9e9e9;
  8204. line-height: 0;
  8205. }
  8206. .ant-menu-item:hover,
  8207. .ant-menu-item-active,
  8208. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
  8209. .ant-menu-submenu-active,
  8210. .ant-menu-submenu-title:hover {
  8211. color: #58a3ff;
  8212. }
  8213. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open {
  8214. z-index: 1050;
  8215. }
  8216. .ant-menu-horizontal .ant-menu-item,
  8217. .ant-menu-horizontal .ant-menu-submenu {
  8218. margin-top: -1px;
  8219. }
  8220. .ant-menu-horizontal > .ant-menu-item:hover,
  8221. .ant-menu-horizontal > .ant-menu-item-active,
  8222. .ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  8223. background-color: transparent;
  8224. }
  8225. .ant-menu-item-selected {
  8226. color: #58a3ff;
  8227. transform: translateZ(0);
  8228. }
  8229. .ant-menu-item-selected > a,
  8230. .ant-menu-item-selected > a:hover {
  8231. color: #58a3ff;
  8232. }
  8233. .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  8234. background-color: #f2f8ff;
  8235. }
  8236. .ant-menu-horizontal,
  8237. .ant-menu-inline,
  8238. .ant-menu-vertical {
  8239. z-index: auto;
  8240. }
  8241. .ant-menu-inline,
  8242. .ant-menu-vertical {
  8243. border-right: 1px solid #e9e9e9;
  8244. }
  8245. .ant-menu-inline .ant-menu-item,
  8246. .ant-menu-vertical .ant-menu-item {
  8247. border-right: 3px solid transparent;
  8248. margin-left: -1px;
  8249. left: 1px;
  8250. position: relative;
  8251. z-index: 1;
  8252. }
  8253. .ant-menu-vertical.ant-menu-sub {
  8254. border-right: 0;
  8255. }
  8256. .ant-menu-vertical.ant-menu-sub .ant-menu-item {
  8257. border-right: 0;
  8258. margin-left: 0;
  8259. left: 0;
  8260. }
  8261. .ant-menu-vertical.ant-menu-sub > .ant-menu-item:first-child {
  8262. border-radius: 4px 4px 0 0;
  8263. }
  8264. .ant-menu-vertical.ant-menu-sub > .ant-menu-item:last-child,
  8265. .ant-menu-vertical.ant-menu-sub > .ant-menu-item-group:last-child > .ant-menu-item-group-list:last-child > .ant-menu-item:last-child {
  8266. border-radius: 0 0 4px 4px;
  8267. }
  8268. .ant-menu-inline .ant-menu-selected,
  8269. .ant-menu-inline .ant-menu-item-selected {
  8270. border-right-color: #58a3ff;
  8271. transform: translateZ(0);
  8272. }
  8273. .ant-menu-submenu-horizontal > .ant-menu {
  8274. top: 100%;
  8275. left: 0;
  8276. position: absolute;
  8277. min-width: 100%;
  8278. margin-top: 7px;
  8279. z-index: 1050;
  8280. }
  8281. .ant-menu-submenu-vertical {
  8282. z-index: 1;
  8283. }
  8284. .ant-menu-submenu-vertical > .ant-menu {
  8285. top: 0;
  8286. left: 100%;
  8287. position: absolute;
  8288. min-width: 160px;
  8289. margin-left: 4px;
  8290. z-index: 1050;
  8291. }
  8292. .ant-menu-item,
  8293. .ant-menu-submenu-title {
  8294. margin: 0;
  8295. padding: 0 20px;
  8296. position: relative;
  8297. display: block;
  8298. white-space: nowrap;
  8299. }
  8300. .ant-menu-item .anticon,
  8301. .ant-menu-submenu-title .anticon {
  8302. min-width: 14px;
  8303. margin-right: 8px;
  8304. transition: all .3s;
  8305. }
  8306. .ant-menu > .ant-menu-item-divider {
  8307. height: 1px;
  8308. margin: 1px 0;
  8309. overflow: hidden;
  8310. padding: 0;
  8311. line-height: 0;
  8312. background-color: #e5e5e5;
  8313. }
  8314. .ant-menu-submenu {
  8315. position: relative;
  8316. }
  8317. .ant-menu-submenu > .ant-menu {
  8318. background-color: #fff;
  8319. border-radius: 4px;
  8320. }
  8321. .ant-menu-submenu-vertical > .ant-menu-submenu-title:after {
  8322. font-family: "anticon" !important;
  8323. font-style: normal;
  8324. vertical-align: baseline;
  8325. text-align: center;
  8326. text-transform: none;
  8327. text-rendering: auto;
  8328. position: absolute;
  8329. transition: transform .3s ease;
  8330. content: "\E61D";
  8331. right: 16px;
  8332. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  8333. transform: rotate(270deg) scale(0.75);
  8334. }
  8335. .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8336. font-family: "anticon" !important;
  8337. font-style: normal;
  8338. vertical-align: baseline;
  8339. text-align: center;
  8340. text-transform: none;
  8341. text-rendering: auto;
  8342. position: absolute;
  8343. transition: transform .3s ease;
  8344. content: "\E61D";
  8345. right: 16px;
  8346. top: 0;
  8347. display: inline-block;
  8348. font-size: 12px;
  8349. font-size: 8px \9;
  8350. transform: scale(0.66666667) rotate(0deg);
  8351. /* IE6-IE8 */
  8352. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  8353. zoom: 1;
  8354. }
  8355. :root .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8356. filter: none;
  8357. }
  8358. :root .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8359. font-size: 12px;
  8360. }
  8361. .ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8362. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  8363. transform: rotate(180deg) scale(0.75);
  8364. }
  8365. .ant-menu-vertical .ant-menu-submenu-selected {
  8366. color: #58a3ff;
  8367. }
  8368. .ant-menu-vertical .ant-menu-submenu-selected > a {
  8369. color: #58a3ff;
  8370. }
  8371. .ant-menu-horizontal {
  8372. border: 0;
  8373. border-bottom: 1px solid #e9e9e9;
  8374. box-shadow: none;
  8375. z-index: 0;
  8376. }
  8377. .ant-menu-horizontal > .ant-menu-item,
  8378. .ant-menu-horizontal > .ant-menu-submenu {
  8379. position: relative;
  8380. top: 1px;
  8381. float: left;
  8382. border-bottom: 2px solid transparent;
  8383. }
  8384. .ant-menu-horizontal > .ant-menu-item:hover,
  8385. .ant-menu-horizontal > .ant-menu-submenu:hover,
  8386. .ant-menu-horizontal > .ant-menu-item-active,
  8387. .ant-menu-horizontal > .ant-menu-submenu-active,
  8388. .ant-menu-horizontal > .ant-menu-item-open,
  8389. .ant-menu-horizontal > .ant-menu-submenu-open,
  8390. .ant-menu-horizontal > .ant-menu-item-selected,
  8391. .ant-menu-horizontal > .ant-menu-submenu-selected {
  8392. border-bottom: 2px solid #58a3ff;
  8393. color: #58a3ff;
  8394. }
  8395. .ant-menu-horizontal > .ant-menu-item > a,
  8396. .ant-menu-horizontal > .ant-menu-submenu > a {
  8397. display: block;
  8398. color: rgba(0, 0, 0, 0.65);
  8399. }
  8400. .ant-menu-horizontal > .ant-menu-item > a:hover,
  8401. .ant-menu-horizontal > .ant-menu-submenu > a:hover {
  8402. color: #58a3ff;
  8403. }
  8404. .ant-menu-horizontal:after {
  8405. content: " ";
  8406. display: block;
  8407. height: 0;
  8408. clear: both;
  8409. }
  8410. .ant-menu-vertical .ant-menu-item,
  8411. .ant-menu-inline .ant-menu-item,
  8412. .ant-menu-vertical .ant-menu-submenu-title,
  8413. .ant-menu-inline .ant-menu-submenu-title {
  8414. padding: 0 16px;
  8415. font-size: 12px;
  8416. line-height: 42px;
  8417. height: 42px;
  8418. overflow: hidden;
  8419. text-overflow: ellipsis;
  8420. }
  8421. .ant-menu-item-group-list .ant-menu-item,
  8422. .ant-menu-item-group-list .ant-menu-submenu-title {
  8423. padding: 0 16px 0 28px;
  8424. }
  8425. .ant-menu-vertical.ant-menu-sub {
  8426. padding: 0;
  8427. transform-origin: 0 0;
  8428. }
  8429. .ant-menu-vertical.ant-menu-sub > .ant-menu-item,
  8430. .ant-menu-vertical.ant-menu-sub > .ant-menu-submenu {
  8431. transform-origin: 0 0;
  8432. }
  8433. .ant-menu-root.ant-menu-vertical,
  8434. .ant-menu-root.ant-menu-inline {
  8435. box-shadow: none;
  8436. }
  8437. .ant-menu-sub.ant-menu-inline {
  8438. padding: 0;
  8439. border: 0;
  8440. box-shadow: none;
  8441. border-radius: 0;
  8442. }
  8443. .ant-menu-sub.ant-menu-inline > .ant-menu-item,
  8444. .ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  8445. line-height: 42px;
  8446. height: 42px;
  8447. list-style-type: disc;
  8448. list-style-position: inside;
  8449. }
  8450. .ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  8451. padding-left: 32px;
  8452. }
  8453. .ant-menu-item-disabled,
  8454. .ant-menu-submenu-disabled {
  8455. color: rgba(0, 0, 0, 0.25) !important;
  8456. cursor: not-allowed;
  8457. background: none;
  8458. border-color: transparent !important;
  8459. }
  8460. .ant-menu-item-disabled > a,
  8461. .ant-menu-submenu-disabled > a {
  8462. color: rgba(0, 0, 0, 0.25) !important;
  8463. pointer-events: none;
  8464. }
  8465. .ant-menu-dark,
  8466. .ant-menu-dark .ant-menu-sub {
  8467. color: rgba(255, 255, 255, 0.67);
  8468. background: #404040;
  8469. }
  8470. .ant-menu-dark .ant-menu-inline.ant-menu-sub {
  8471. background: #333;
  8472. }
  8473. .ant-menu-dark.ant-menu-horizontal {
  8474. border-bottom-color: #404040;
  8475. }
  8476. .ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
  8477. .ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  8478. border-color: #404040;
  8479. border-bottom: 0;
  8480. top: 0;
  8481. }
  8482. .ant-menu-dark .ant-menu-item,
  8483. .ant-menu-dark .ant-menu-item-group-title,
  8484. .ant-menu-dark .ant-menu-item > a {
  8485. color: rgba(255, 255, 255, 0.67);
  8486. }
  8487. .ant-menu-dark.ant-menu-inline,
  8488. .ant-menu-dark.ant-menu-vertical {
  8489. border-right: 0;
  8490. }
  8491. .ant-menu-dark.ant-menu-inline .ant-menu-item,
  8492. .ant-menu-dark.ant-menu-vertical .ant-menu-item {
  8493. border-right: 0;
  8494. margin-left: 0;
  8495. left: 0;
  8496. }
  8497. .ant-menu-dark .ant-menu-item:hover,
  8498. .ant-menu-dark .ant-menu-item-active,
  8499. .ant-menu-dark .ant-menu-submenu-active,
  8500. .ant-menu-dark:not(.ant-menu-inline) .ant-menu-submenu-open,
  8501. .ant-menu-dark .ant-menu-submenu-selected,
  8502. .ant-menu-dark .ant-menu-submenu:hover,
  8503. .ant-menu-dark .ant-menu-submenu-title:hover {
  8504. background-color: transparent;
  8505. color: #fff;
  8506. }
  8507. .ant-menu-dark .ant-menu-item:hover > a,
  8508. .ant-menu-dark .ant-menu-item-active > a,
  8509. .ant-menu-dark .ant-menu-submenu-active > a,
  8510. .ant-menu-dark:not(.ant-menu-inline) .ant-menu-submenu-open > a,
  8511. .ant-menu-dark .ant-menu-submenu-selected > a,
  8512. .ant-menu-dark .ant-menu-submenu:hover > a,
  8513. .ant-menu-dark .ant-menu-submenu-title:hover > a {
  8514. color: #fff;
  8515. }
  8516. .ant-menu-dark .ant-menu-item-selected {
  8517. border-right: 0;
  8518. color: #fff;
  8519. }
  8520. .ant-menu-dark .ant-menu-item-selected > a,
  8521. .ant-menu-dark .ant-menu-item-selected > a:hover {
  8522. color: #fff;
  8523. }
  8524. .ant-menu.ant-menu-dark .ant-menu-item-selected {
  8525. background-color: transparent;
  8526. }
  8527. .ant-menu-dark.ant-menu-inline .ant-menu-item-selected {
  8528. background-color: #58a3ff;
  8529. }
  8530. .ant-menu-dark .ant-menu-item-disabled,
  8531. .ant-menu-dark .ant-menu-submenu-disabled,
  8532. .ant-menu-dark .ant-menu-item-disabled > a,
  8533. .ant-menu-dark .ant-menu-submenu-disabled > a {
  8534. opacity: 0.8;
  8535. color: rgba(255, 255, 255, 0.35) !important;
  8536. }
  8537. .ant-calendar-picker-container {
  8538. position: absolute;
  8539. z-index: 1050;
  8540. }
  8541. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,
  8542. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight,
  8543. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,
  8544. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight {
  8545. animation-name: antSlideDownIn;
  8546. }
  8547. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,
  8548. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight,
  8549. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,
  8550. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight {
  8551. animation-name: antSlideUpIn;
  8552. }
  8553. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,
  8554. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight {
  8555. animation-name: antSlideDownOut;
  8556. }
  8557. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,
  8558. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight {
  8559. animation-name: antSlideUpOut;
  8560. }
  8561. .ant-calendar-picker {
  8562. position: relative;
  8563. display: inline-block;
  8564. outline: none;
  8565. font-size: 12px;
  8566. transition: opacity 0.3s;
  8567. }
  8568. .ant-calendar-picker-input {
  8569. outline: none;
  8570. }
  8571. .ant-calendar-picker:hover .ant-calendar-picker-input {
  8572. border-color: #58a3ff;
  8573. }
  8574. .ant-calendar-picker-clear {
  8575. opacity: 0;
  8576. pointer-events: none;
  8577. z-index: 1;
  8578. position: absolute;
  8579. right: 7px;
  8580. background: #fff;
  8581. top: 50%;
  8582. font-size: 12px;
  8583. color: rgba(0, 0, 0, 0.25);
  8584. width: 14px;
  8585. height: 14px;
  8586. margin-top: -7px;
  8587. line-height: 14px;
  8588. cursor: pointer;
  8589. transition: color 0.3s, opacity 0.3s;
  8590. }
  8591. .ant-calendar-picker-clear:hover {
  8592. color: rgba(0, 0, 0, 0.43);
  8593. }
  8594. .ant-calendar-picker:hover .ant-calendar-picker-clear {
  8595. opacity: 1;
  8596. pointer-events: auto;
  8597. }
  8598. .ant-calendar-picker-icon {
  8599. position: absolute;
  8600. user-select: none;
  8601. transition: all .3s;
  8602. width: 12px;
  8603. height: 12px;
  8604. line-height: 12px;
  8605. right: 8px;
  8606. color: rgba(0, 0, 0, 0.43);
  8607. top: 50%;
  8608. margin-top: -6px;
  8609. }
  8610. .ant-calendar-picker-icon:after {
  8611. content: "\E6BB";
  8612. font-family: "anticon";
  8613. font-size: 12px;
  8614. color: rgba(0, 0, 0, 0.43);
  8615. display: inline-block;
  8616. line-height: 1;
  8617. vertical-align: bottom;
  8618. }
  8619. .ant-calendar {
  8620. position: relative;
  8621. outline: none;
  8622. width: 231px;
  8623. border: 1px solid #fff;
  8624. list-style: none;
  8625. font-size: 12px;
  8626. text-align: left;
  8627. background-color: #fff;
  8628. border-radius: 4px;
  8629. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  8630. background-clip: padding-box;
  8631. line-height: 1.5;
  8632. }
  8633. .ant-calendar-input-wrap {
  8634. height: 34px;
  8635. padding: 6px;
  8636. border-bottom: 1px solid #e9e9e9;
  8637. }
  8638. .ant-calendar-input {
  8639. border: 0;
  8640. width: 100%;
  8641. cursor: auto;
  8642. outline: 0;
  8643. height: 22px;
  8644. }
  8645. .ant-calendar-week-number {
  8646. width: 286px;
  8647. }
  8648. .ant-calendar-week-number-cell {
  8649. text-align: center;
  8650. }
  8651. .ant-calendar-header {
  8652. height: 34px;
  8653. line-height: 34px;
  8654. text-align: center;
  8655. user-select: none;
  8656. border-bottom: 1px solid #e9e9e9;
  8657. }
  8658. .ant-calendar-header a:hover {
  8659. color: #80b9ff;
  8660. }
  8661. .ant-calendar-header .ant-calendar-century-select,
  8662. .ant-calendar-header .ant-calendar-decade-select,
  8663. .ant-calendar-header .ant-calendar-year-select,
  8664. .ant-calendar-header .ant-calendar-month-select {
  8665. padding: 0 2px;
  8666. font-weight: bold;
  8667. display: inline-block;
  8668. color: rgba(0, 0, 0, 0.65);
  8669. line-height: 34px;
  8670. }
  8671. .ant-calendar-header .ant-calendar-century-select-arrow,
  8672. .ant-calendar-header .ant-calendar-decade-select-arrow,
  8673. .ant-calendar-header .ant-calendar-year-select-arrow,
  8674. .ant-calendar-header .ant-calendar-month-select-arrow {
  8675. display: none;
  8676. }
  8677. .ant-calendar-header .ant-calendar-prev-century-btn,
  8678. .ant-calendar-header .ant-calendar-next-century-btn,
  8679. .ant-calendar-header .ant-calendar-prev-decade-btn,
  8680. .ant-calendar-header .ant-calendar-next-decade-btn,
  8681. .ant-calendar-header .ant-calendar-prev-month-btn,
  8682. .ant-calendar-header .ant-calendar-next-month-btn,
  8683. .ant-calendar-header .ant-calendar-prev-year-btn,
  8684. .ant-calendar-header .ant-calendar-next-year-btn {
  8685. position: absolute;
  8686. top: 0;
  8687. color: rgba(0, 0, 0, 0.43);
  8688. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  8689. padding: 0 5px;
  8690. font-size: 16px;
  8691. display: inline-block;
  8692. line-height: 34px;
  8693. }
  8694. .ant-calendar-header .ant-calendar-prev-century-btn,
  8695. .ant-calendar-header .ant-calendar-prev-decade-btn,
  8696. .ant-calendar-header .ant-calendar-prev-year-btn {
  8697. left: 7px;
  8698. }
  8699. .ant-calendar-header .ant-calendar-prev-century-btn:after,
  8700. .ant-calendar-header .ant-calendar-prev-decade-btn:after,
  8701. .ant-calendar-header .ant-calendar-prev-year-btn:after {
  8702. content: '\AB';
  8703. }
  8704. .ant-calendar-header .ant-calendar-next-century-btn,
  8705. .ant-calendar-header .ant-calendar-next-decade-btn,
  8706. .ant-calendar-header .ant-calendar-next-year-btn {
  8707. right: 7px;
  8708. }
  8709. .ant-calendar-header .ant-calendar-next-century-btn:after,
  8710. .ant-calendar-header .ant-calendar-next-decade-btn:after,
  8711. .ant-calendar-header .ant-calendar-next-year-btn:after {
  8712. content: '\BB';
  8713. }
  8714. .ant-calendar-header .ant-calendar-prev-month-btn {
  8715. left: 29px;
  8716. }
  8717. .ant-calendar-header .ant-calendar-prev-month-btn:after {
  8718. content: '\2039';
  8719. }
  8720. .ant-calendar-header .ant-calendar-next-month-btn {
  8721. right: 29px;
  8722. }
  8723. .ant-calendar-header .ant-calendar-next-month-btn:after {
  8724. content: '\203A';
  8725. }
  8726. .ant-calendar-body {
  8727. padding: 4px 8px;
  8728. }
  8729. .ant-calendar table {
  8730. border-collapse: collapse;
  8731. max-width: 100%;
  8732. background-color: transparent;
  8733. width: 100%;
  8734. }
  8735. .ant-calendar table,
  8736. .ant-calendar th,
  8737. .ant-calendar td {
  8738. border: 0;
  8739. }
  8740. .ant-calendar-calendar-table {
  8741. border-spacing: 0;
  8742. margin-bottom: 0;
  8743. }
  8744. .ant-calendar-column-header {
  8745. line-height: 18px;
  8746. width: 33px;
  8747. padding: 6px 0;
  8748. text-align: center;
  8749. }
  8750. .ant-calendar-column-header .ant-calendar-column-header-inner {
  8751. display: block;
  8752. font-weight: normal;
  8753. }
  8754. .ant-calendar-week-number-header .ant-calendar-column-header-inner {
  8755. display: none;
  8756. }
  8757. .ant-calendar-cell {
  8758. padding: 4px 0;
  8759. }
  8760. .ant-calendar-date {
  8761. display: block;
  8762. margin: 0 auto;
  8763. color: rgba(0, 0, 0, 0.65);
  8764. border-radius: 2px;
  8765. width: 20px;
  8766. height: 20px;
  8767. line-height: 18px;
  8768. border: 1px solid transparent;
  8769. padding: 0;
  8770. background: transparent;
  8771. text-align: center;
  8772. transition: background 0.3s ease;
  8773. }
  8774. .ant-calendar-date-panel {
  8775. position: relative;
  8776. }
  8777. .ant-calendar-date:hover {
  8778. background: #f2f8ff;
  8779. cursor: pointer;
  8780. }
  8781. .ant-calendar-date:active {
  8782. color: #fff;
  8783. background: #80b9ff;
  8784. }
  8785. .ant-calendar-today .ant-calendar-date {
  8786. border-color: #58a3ff;
  8787. font-weight: bold;
  8788. color: #58a3ff;
  8789. }
  8790. .ant-calendar-last-month-cell .ant-calendar-date,
  8791. .ant-calendar-next-month-btn-day .ant-calendar-date {
  8792. color: rgba(0, 0, 0, 0.25);
  8793. }
  8794. .ant-calendar-selected-day .ant-calendar-date {
  8795. background: #58a3ff;
  8796. color: #fff;
  8797. border: 1px solid transparent;
  8798. }
  8799. .ant-calendar-selected-day .ant-calendar-date:hover {
  8800. background: #58a3ff;
  8801. }
  8802. .ant-calendar-disabled-cell .ant-calendar-date {
  8803. cursor: not-allowed;
  8804. color: #bcbcbc;
  8805. background: #f3f3f3;
  8806. border-radius: 0;
  8807. width: auto;
  8808. border: 1px solid transparent;
  8809. }
  8810. .ant-calendar-disabled-cell .ant-calendar-date:hover {
  8811. background: #f3f3f3;
  8812. }
  8813. .ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
  8814. border-top-left-radius: 4px;
  8815. border-bottom-left-radius: 4px;
  8816. }
  8817. .ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
  8818. border-top-right-radius: 4px;
  8819. border-bottom-right-radius: 4px;
  8820. }
  8821. .ant-calendar-footer-btn {
  8822. border-top: 1px solid #e9e9e9;
  8823. text-align: center;
  8824. display: block;
  8825. line-height: 38px;
  8826. }
  8827. .ant-calendar-footer > div {
  8828. display: inline-block;
  8829. }
  8830. .ant-calendar .ant-calendar-today-btn,
  8831. .ant-calendar .ant-calendar-clear-btn {
  8832. display: inline-block;
  8833. text-align: center;
  8834. margin: 0 0 0 8px;
  8835. }
  8836. .ant-calendar .ant-calendar-today-btn-disabled,
  8837. .ant-calendar .ant-calendar-clear-btn-disabled {
  8838. color: rgba(0, 0, 0, 0.25);
  8839. cursor: not-allowed;
  8840. }
  8841. .ant-calendar .ant-calendar-clear-btn {
  8842. display: none;
  8843. position: absolute;
  8844. right: 5px;
  8845. text-indent: -76px;
  8846. overflow: hidden;
  8847. width: 20px;
  8848. height: 20px;
  8849. text-align: center;
  8850. line-height: 20px;
  8851. top: 7px;
  8852. margin: 0;
  8853. }
  8854. .ant-calendar .ant-calendar-clear-btn:after {
  8855. font-family: 'anticon';
  8856. text-rendering: optimizeLegibility;
  8857. -webkit-font-smoothing: antialiased;
  8858. -moz-osx-font-smoothing: grayscale;
  8859. content: "\E62E";
  8860. font-size: 12px;
  8861. color: rgba(0, 0, 0, 0.25);
  8862. display: inline-block;
  8863. line-height: 1;
  8864. width: 20px;
  8865. text-indent: 43px;
  8866. transition: color 0.3s ease;
  8867. }
  8868. .ant-calendar .ant-calendar-clear-btn:hover:after {
  8869. color: rgba(0, 0, 0, 0.43);
  8870. }
  8871. .ant-calendar .ant-calendar-ok-btn {
  8872. display: inline-block;
  8873. margin-bottom: 0;
  8874. font-weight: 500;
  8875. text-align: center;
  8876. touch-action: manipulation;
  8877. cursor: pointer;
  8878. background-image: none;
  8879. border: 1px solid transparent;
  8880. white-space: nowrap;
  8881. line-height: 1.5;
  8882. padding: 4px 15px;
  8883. user-select: none;
  8884. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  8885. position: relative;
  8886. color: #fff;
  8887. background-color: #58a3ff;
  8888. border-color: #58a3ff;
  8889. padding: 1px 7px;
  8890. font-size: 12px;
  8891. border-radius: 4px;
  8892. position: absolute;
  8893. bottom: 8px;
  8894. right: 9px;
  8895. }
  8896. .ant-calendar .ant-calendar-ok-btn > .anticon {
  8897. line-height: 1;
  8898. }
  8899. .ant-calendar .ant-calendar-ok-btn,
  8900. .ant-calendar .ant-calendar-ok-btn:active,
  8901. .ant-calendar .ant-calendar-ok-btn:focus {
  8902. outline: 0;
  8903. }
  8904. .ant-calendar .ant-calendar-ok-btn:not([disabled]):hover {
  8905. text-decoration: none;
  8906. }
  8907. .ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
  8908. outline: 0;
  8909. transition: none;
  8910. }
  8911. .ant-calendar .ant-calendar-ok-btn.disabled,
  8912. .ant-calendar .ant-calendar-ok-btn[disabled] {
  8913. cursor: not-allowed;
  8914. }
  8915. .ant-calendar .ant-calendar-ok-btn.disabled > *,
  8916. .ant-calendar .ant-calendar-ok-btn[disabled] > * {
  8917. pointer-events: none;
  8918. }
  8919. .ant-calendar .ant-calendar-ok-btn-lg {
  8920. padding: 4px 15px 5px 15px;
  8921. font-size: 14px;
  8922. border-radius: 4px;
  8923. }
  8924. .ant-calendar .ant-calendar-ok-btn-sm {
  8925. padding: 1px 7px;
  8926. font-size: 12px;
  8927. border-radius: 4px;
  8928. }
  8929. .ant-calendar .ant-calendar-ok-btn > a:only-child {
  8930. color: currentColor;
  8931. }
  8932. .ant-calendar .ant-calendar-ok-btn > a:only-child:after {
  8933. content: '';
  8934. position: absolute;
  8935. top: 0;
  8936. left: 0;
  8937. bottom: 0;
  8938. right: 0;
  8939. background: transparent;
  8940. }
  8941. .ant-calendar .ant-calendar-ok-btn:hover,
  8942. .ant-calendar .ant-calendar-ok-btn:focus {
  8943. color: #fff;
  8944. background-color: #80b9ff;
  8945. border-color: #80b9ff;
  8946. }
  8947. .ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
  8948. .ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
  8949. color: currentColor;
  8950. }
  8951. .ant-calendar .ant-calendar-ok-btn:hover > a:only-child:after,
  8952. .ant-calendar .ant-calendar-ok-btn:focus > a:only-child:after {
  8953. content: '';
  8954. position: absolute;
  8955. top: 0;
  8956. left: 0;
  8957. bottom: 0;
  8958. right: 0;
  8959. background: transparent;
  8960. }
  8961. .ant-calendar .ant-calendar-ok-btn:active,
  8962. .ant-calendar .ant-calendar-ok-btn.active {
  8963. color: #fff;
  8964. background-color: #4386e7;
  8965. border-color: #4386e7;
  8966. }
  8967. .ant-calendar .ant-calendar-ok-btn:active > a:only-child,
  8968. .ant-calendar .ant-calendar-ok-btn.active > a:only-child {
  8969. color: currentColor;
  8970. }
  8971. .ant-calendar .ant-calendar-ok-btn:active > a:only-child:after,
  8972. .ant-calendar .ant-calendar-ok-btn.active > a:only-child:after {
  8973. content: '';
  8974. position: absolute;
  8975. top: 0;
  8976. left: 0;
  8977. bottom: 0;
  8978. right: 0;
  8979. background: transparent;
  8980. }
  8981. .ant-calendar .ant-calendar-ok-btn.disabled,
  8982. .ant-calendar .ant-calendar-ok-btn[disabled],
  8983. .ant-calendar .ant-calendar-ok-btn.disabled:hover,
  8984. .ant-calendar .ant-calendar-ok-btn[disabled]:hover,
  8985. .ant-calendar .ant-calendar-ok-btn.disabled:focus,
  8986. .ant-calendar .ant-calendar-ok-btn[disabled]:focus,
  8987. .ant-calendar .ant-calendar-ok-btn.disabled:active,
  8988. .ant-calendar .ant-calendar-ok-btn[disabled]:active,
  8989. .ant-calendar .ant-calendar-ok-btn.disabled.active,
  8990. .ant-calendar .ant-calendar-ok-btn[disabled].active {
  8991. color: rgba(0, 0, 0, 0.25);
  8992. background-color: #f7f7f7;
  8993. border-color: #d9d9d9;
  8994. }
  8995. .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
  8996. .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
  8997. .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
  8998. .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
  8999. .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
  9000. .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
  9001. .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
  9002. .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
  9003. .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
  9004. .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  9005. color: currentColor;
  9006. }
  9007. .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child:after,
  9008. .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child:after,
  9009. .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child:after,
  9010. .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child:after,
  9011. .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child:after,
  9012. .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child:after,
  9013. .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child:after,
  9014. .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child:after,
  9015. .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child:after,
  9016. .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child:after {
  9017. content: '';
  9018. position: absolute;
  9019. top: 0;
  9020. left: 0;
  9021. bottom: 0;
  9022. right: 0;
  9023. background: transparent;
  9024. }
  9025. .ant-calendar .ant-calendar-ok-btn-disabled {
  9026. color: rgba(0, 0, 0, 0.25);
  9027. background-color: #f7f7f7;
  9028. border-color: #d9d9d9;
  9029. cursor: not-allowed;
  9030. }
  9031. .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child {
  9032. color: currentColor;
  9033. }
  9034. .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child:after {
  9035. content: '';
  9036. position: absolute;
  9037. top: 0;
  9038. left: 0;
  9039. bottom: 0;
  9040. right: 0;
  9041. background: transparent;
  9042. }
  9043. .ant-calendar .ant-calendar-ok-btn-disabled:hover {
  9044. color: rgba(0, 0, 0, 0.25);
  9045. background-color: #f7f7f7;
  9046. border-color: #d9d9d9;
  9047. }
  9048. .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child {
  9049. color: currentColor;
  9050. }
  9051. .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child:after {
  9052. content: '';
  9053. position: absolute;
  9054. top: 0;
  9055. left: 0;
  9056. bottom: 0;
  9057. right: 0;
  9058. background: transparent;
  9059. }
  9060. .ant-calendar-range-picker-input {
  9061. background-color: transparent;
  9062. border: 0;
  9063. height: 18px;
  9064. line-height: 18px;
  9065. outline: 0;
  9066. width: 43%;
  9067. text-align: center;
  9068. }
  9069. .ant-calendar-range-picker-input[disabled] {
  9070. cursor: not-allowed;
  9071. }
  9072. .ant-calendar-range-picker-separator {
  9073. color: rgba(0, 0, 0, 0.43);
  9074. }
  9075. .ant-calendar-range {
  9076. width: 470px;
  9077. overflow: hidden;
  9078. }
  9079. .ant-calendar-range .ant-calendar-date-panel::after {
  9080. content: ".";
  9081. display: block;
  9082. height: 0;
  9083. clear: both;
  9084. visibility: hidden;
  9085. }
  9086. .ant-calendar-range-part {
  9087. width: 50%;
  9088. position: relative;
  9089. }
  9090. .ant-calendar-range-left {
  9091. float: left;
  9092. }
  9093. .ant-calendar-range-left .ant-calendar-time-picker-inner {
  9094. border-right: 2px solid #e9e9e9;
  9095. }
  9096. .ant-calendar-range-right {
  9097. float: right;
  9098. }
  9099. .ant-calendar-range-right .ant-calendar-time-picker-inner {
  9100. border-left: 2px solid #e9e9e9;
  9101. }
  9102. .ant-calendar-range-middle {
  9103. position: absolute;
  9104. left: 50%;
  9105. width: 20px;
  9106. margin-left: -132px;
  9107. text-align: center;
  9108. height: 34px;
  9109. line-height: 34px;
  9110. color: rgba(0, 0, 0, 0.43);
  9111. }
  9112. .ant-calendar-range-right .ant-calendar-date-input-wrap {
  9113. margin-left: -118px;
  9114. }
  9115. .ant-calendar-range.ant-calendar-time .ant-calendar-range-middle {
  9116. margin-left: -12px;
  9117. }
  9118. .ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap {
  9119. margin-left: 0;
  9120. }
  9121. .ant-calendar-range .ant-calendar-input-wrap {
  9122. position: relative;
  9123. height: 34px;
  9124. }
  9125. .ant-calendar-range .ant-calendar-input,
  9126. .ant-calendar-range .ant-calendar-time-picker-input {
  9127. position: relative;
  9128. display: inline-block;
  9129. padding: 4px 7px;
  9130. width: 100%;
  9131. height: 28px;
  9132. cursor: text;
  9133. font-size: 12px;
  9134. line-height: 1.5;
  9135. color: rgba(0, 0, 0, 0.65);
  9136. background-color: #fff;
  9137. background-image: none;
  9138. border: 1px solid #d9d9d9;
  9139. border-radius: 4px;
  9140. transition: all .3s;
  9141. height: 22px;
  9142. border: 0;
  9143. box-shadow: none;
  9144. }
  9145. .ant-calendar-range .ant-calendar-input::-moz-placeholder,
  9146. .ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
  9147. color: #ccc;
  9148. opacity: 1;
  9149. }
  9150. .ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
  9151. .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
  9152. color: #ccc;
  9153. }
  9154. .ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
  9155. .ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
  9156. color: #ccc;
  9157. }
  9158. .ant-calendar-range .ant-calendar-input:hover,
  9159. .ant-calendar-range .ant-calendar-time-picker-input:hover {
  9160. border-color: #80b9ff;
  9161. }
  9162. .ant-calendar-range .ant-calendar-input:focus,
  9163. .ant-calendar-range .ant-calendar-time-picker-input:focus {
  9164. border-color: #80b9ff;
  9165. outline: 0;
  9166. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  9167. }
  9168. .ant-calendar-range .ant-calendar-input[disabled],
  9169. .ant-calendar-range .ant-calendar-time-picker-input[disabled] {
  9170. background-color: #f7f7f7;
  9171. opacity: 1;
  9172. cursor: not-allowed;
  9173. color: rgba(0, 0, 0, 0.25);
  9174. }
  9175. .ant-calendar-range .ant-calendar-input[disabled]:hover,
  9176. .ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover {
  9177. border-color: #e2e2e2;
  9178. }
  9179. textarea.ant-calendar-range .ant-calendar-input,
  9180. textarea.ant-calendar-range .ant-calendar-time-picker-input {
  9181. max-width: 100%;
  9182. height: auto;
  9183. vertical-align: bottom;
  9184. }
  9185. .ant-calendar-range .ant-calendar-input-lg,
  9186. .ant-calendar-range .ant-calendar-time-picker-input-lg {
  9187. padding: 6px 7px;
  9188. height: 32px;
  9189. }
  9190. .ant-calendar-range .ant-calendar-input-sm,
  9191. .ant-calendar-range .ant-calendar-time-picker-input-sm {
  9192. padding: 1px 7px;
  9193. height: 22px;
  9194. }
  9195. .ant-calendar-range .ant-calendar-input:focus,
  9196. .ant-calendar-range .ant-calendar-time-picker-input:focus {
  9197. box-shadow: none;
  9198. }
  9199. .ant-calendar-range .ant-calendar-time-picker-icon {
  9200. display: none;
  9201. }
  9202. .ant-calendar-range.ant-calendar-week-number {
  9203. width: 574px;
  9204. }
  9205. .ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part {
  9206. width: 286px;
  9207. }
  9208. .ant-calendar-range .ant-calendar-year-panel,
  9209. .ant-calendar-range .ant-calendar-month-panel {
  9210. top: 34px;
  9211. }
  9212. .ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel {
  9213. top: 0;
  9214. }
  9215. .ant-calendar-range .ant-calendar-decade-panel-table,
  9216. .ant-calendar-range .ant-calendar-year-panel-table,
  9217. .ant-calendar-range .ant-calendar-month-panel-table {
  9218. height: 208px;
  9219. }
  9220. .ant-calendar-range .ant-calendar-in-range-cell {
  9221. border-radius: 0;
  9222. position: relative;
  9223. }
  9224. .ant-calendar-range .ant-calendar-in-range-cell > div {
  9225. position: relative;
  9226. z-index: 1;
  9227. }
  9228. .ant-calendar-range .ant-calendar-in-range-cell:before {
  9229. content: '';
  9230. display: block;
  9231. background: #f2f8ff;
  9232. border-radius: 0;
  9233. border: 0;
  9234. position: absolute;
  9235. top: 4px;
  9236. bottom: 4px;
  9237. left: 0;
  9238. right: 0;
  9239. }
  9240. .ant-calendar-range-bottom {
  9241. text-align: right;
  9242. }
  9243. .ant-calendar-range-bottom .ant-calendar-footer-btn {
  9244. padding-right: 16px;
  9245. }
  9246. div.ant-calendar-range-quick-selector {
  9247. display: block;
  9248. text-align: left;
  9249. border-top: 1px solid #e9e9e9;
  9250. padding: 10.5px 10px;
  9251. }
  9252. div.ant-calendar-range-quick-selector > a {
  9253. margin-right: 16px;
  9254. }
  9255. .ant-calendar-range .ant-calendar-header,
  9256. .ant-calendar-range .ant-calendar-month-panel-header,
  9257. .ant-calendar-range .ant-calendar-year-panel-header {
  9258. border-bottom: 0;
  9259. }
  9260. .ant-calendar-range .ant-calendar-body,
  9261. .ant-calendar-range .ant-calendar-month-panel-body,
  9262. .ant-calendar-range .ant-calendar-year-panel-body {
  9263. border-top: 1px solid #e9e9e9;
  9264. }
  9265. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker {
  9266. height: 207px;
  9267. width: 100%;
  9268. top: 68px;
  9269. z-index: 2;
  9270. }
  9271. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel {
  9272. height: 241px;
  9273. margin-top: -34px;
  9274. }
  9275. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
  9276. padding-top: 34px;
  9277. height: 100%;
  9278. background: none;
  9279. }
  9280. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
  9281. display: inline-block;
  9282. height: 100%;
  9283. background-color: #fff;
  9284. border-top: 1px solid #e9e9e9;
  9285. }
  9286. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select {
  9287. height: 100%;
  9288. }
  9289. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul {
  9290. max-height: 100%;
  9291. }
  9292. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn {
  9293. padding: 9px 12px 9px 0;
  9294. display: block;
  9295. zoom: 1;
  9296. }
  9297. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:before,
  9298. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:after {
  9299. content: " ";
  9300. display: table;
  9301. }
  9302. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:after {
  9303. clear: both;
  9304. visibility: hidden;
  9305. font-size: 0;
  9306. height: 0;
  9307. }
  9308. .ant-calendar-range.ant-calendar-time .ant-calendar-ok-btn {
  9309. position: static;
  9310. height: 22px;
  9311. }
  9312. .ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  9313. margin-right: 12px;
  9314. }
  9315. .ant-calendar-range.ant-calendar-time .ant-calendar-today-btn {
  9316. margin: 8px 12px;
  9317. height: 22px;
  9318. line-height: 22px;
  9319. }
  9320. .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker {
  9321. height: 247px;
  9322. }
  9323. .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker-panel {
  9324. height: 281px;
  9325. }
  9326. .ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
  9327. border-top-color: transparent;
  9328. }
  9329. .ant-calendar-time-picker {
  9330. position: absolute;
  9331. width: 100%;
  9332. top: 34px;
  9333. background-color: #fff;
  9334. }
  9335. .ant-calendar-time-picker-panel {
  9336. z-index: 1050;
  9337. position: absolute;
  9338. width: 100%;
  9339. }
  9340. .ant-calendar-time-picker-inner {
  9341. display: inline-block;
  9342. position: relative;
  9343. outline: none;
  9344. list-style: none;
  9345. font-size: 12px;
  9346. text-align: left;
  9347. background-color: #fff;
  9348. background-clip: padding-box;
  9349. line-height: 1.5;
  9350. overflow: hidden;
  9351. width: 100%;
  9352. }
  9353. .ant-calendar-time-picker-combobox {
  9354. width: 100%;
  9355. }
  9356. .ant-calendar-time-picker-1-column,
  9357. .ant-calendar-time-picker-1-column .ant-calendar-time-picker-select {
  9358. width: 100%;
  9359. }
  9360. .ant-calendar-time-picker-2-columns .ant-calendar-time-picker-select {
  9361. width: 50%;
  9362. }
  9363. .ant-calendar-time-picker-1-column .ant-calendar-time-picker-select li,
  9364. .ant-calendar-time-picker-2-columns .ant-calendar-time-picker-select li {
  9365. padding: 0;
  9366. text-align: center;
  9367. }
  9368. .ant-calendar-time-picker-input-wrap {
  9369. display: none;
  9370. }
  9371. .ant-calendar-time-picker-select {
  9372. float: left;
  9373. font-size: 12px;
  9374. border: 1px solid #e9e9e9;
  9375. border-width: 0 1px;
  9376. margin-left: -1px;
  9377. box-sizing: border-box;
  9378. width: 33.6%;
  9379. overflow: hidden;
  9380. position: relative;
  9381. height: 206px;
  9382. }
  9383. .ant-calendar-time-picker-select:hover {
  9384. overflow-y: auto;
  9385. }
  9386. .ant-calendar-time-picker-select:first-child {
  9387. border-left: 0;
  9388. margin-left: 0;
  9389. }
  9390. .ant-calendar-time-picker-select:last-child {
  9391. border-right: 0;
  9392. }
  9393. .ant-calendar-time-picker-select ul {
  9394. list-style: none;
  9395. box-sizing: border-box;
  9396. margin: 0;
  9397. padding: 0;
  9398. width: 100%;
  9399. max-height: 206px;
  9400. }
  9401. .ant-calendar-time-picker-select li {
  9402. padding: 0 0 0 28px;
  9403. list-style: none;
  9404. box-sizing: content-box;
  9405. margin: 0;
  9406. width: 100%;
  9407. height: 24px;
  9408. line-height: 24px;
  9409. cursor: pointer;
  9410. user-select: none;
  9411. transition: background 0.3s ease;
  9412. }
  9413. .ant-calendar-time-picker-select li:last-child:after {
  9414. content: '';
  9415. height: 182px;
  9416. display: block;
  9417. }
  9418. .ant-calendar-time-picker-select li:hover {
  9419. background: #f2f8ff;
  9420. }
  9421. li.ant-calendar-time-picker-select-option-selected {
  9422. background: #f7f7f7;
  9423. font-weight: bold;
  9424. }
  9425. li.ant-calendar-time-picker-select-option-disabled {
  9426. color: rgba(0, 0, 0, 0.25);
  9427. }
  9428. li.ant-calendar-time-picker-select-option-disabled:hover {
  9429. background: transparent;
  9430. cursor: not-allowed;
  9431. }
  9432. .ant-calendar-time .ant-calendar-day-select {
  9433. padding: 0 2px;
  9434. font-weight: bold;
  9435. display: inline-block;
  9436. color: rgba(0, 0, 0, 0.65);
  9437. line-height: 34px;
  9438. }
  9439. .ant-calendar-time .ant-calendar-footer {
  9440. text-align: right;
  9441. position: relative;
  9442. height: auto;
  9443. line-height: auto;
  9444. }
  9445. .ant-calendar-time .ant-calendar-footer-btn {
  9446. padding: 10px 0;
  9447. line-height: 1.5;
  9448. text-align: right;
  9449. }
  9450. .ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn {
  9451. float: left;
  9452. margin: 0;
  9453. padding-left: 12px;
  9454. }
  9455. .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  9456. display: inline-block;
  9457. text-align: center;
  9458. margin-right: 60px;
  9459. }
  9460. .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
  9461. color: rgba(0, 0, 0, 0.25);
  9462. }
  9463. .ant-calendar-month-panel {
  9464. left: 0;
  9465. top: 1px;
  9466. bottom: 0;
  9467. right: 0;
  9468. background: #fff;
  9469. z-index: 10;
  9470. position: absolute;
  9471. outline: none;
  9472. border-radius: 4px;
  9473. }
  9474. .ant-calendar-month-panel-hidden {
  9475. display: none;
  9476. }
  9477. .ant-calendar-month-panel-header {
  9478. height: 34px;
  9479. line-height: 34px;
  9480. text-align: center;
  9481. user-select: none;
  9482. border-bottom: 1px solid #e9e9e9;
  9483. }
  9484. .ant-calendar-month-panel-header a:hover {
  9485. color: #80b9ff;
  9486. }
  9487. .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
  9488. .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
  9489. .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
  9490. .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
  9491. padding: 0 2px;
  9492. font-weight: bold;
  9493. display: inline-block;
  9494. color: rgba(0, 0, 0, 0.65);
  9495. line-height: 34px;
  9496. }
  9497. .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,
  9498. .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,
  9499. .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow,
  9500. .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow {
  9501. display: none;
  9502. }
  9503. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
  9504. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
  9505. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
  9506. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
  9507. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
  9508. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
  9509. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
  9510. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  9511. position: absolute;
  9512. top: 0;
  9513. color: rgba(0, 0, 0, 0.43);
  9514. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9515. padding: 0 5px;
  9516. font-size: 16px;
  9517. display: inline-block;
  9518. line-height: 34px;
  9519. }
  9520. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
  9521. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
  9522. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn {
  9523. left: 7px;
  9524. }
  9525. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:after,
  9526. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:after,
  9527. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:after {
  9528. content: '\AB';
  9529. }
  9530. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
  9531. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
  9532. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  9533. right: 7px;
  9534. }
  9535. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,
  9536. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,
  9537. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after {
  9538. content: '\BB';
  9539. }
  9540. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn {
  9541. left: 29px;
  9542. }
  9543. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:after {
  9544. content: '\2039';
  9545. }
  9546. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn {
  9547. right: 29px;
  9548. }
  9549. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:after {
  9550. content: '\203A';
  9551. }
  9552. .ant-calendar-month-panel-table {
  9553. table-layout: fixed;
  9554. width: 100%;
  9555. height: 248px;
  9556. border-collapse: separate;
  9557. }
  9558. .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
  9559. background: #58a3ff;
  9560. color: #fff;
  9561. }
  9562. .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
  9563. background: #58a3ff;
  9564. color: #fff;
  9565. }
  9566. .ant-calendar-month-panel-cell {
  9567. text-align: center;
  9568. }
  9569. .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
  9570. .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
  9571. cursor: not-allowed;
  9572. color: #bcbcbc;
  9573. background: #f3f3f3;
  9574. }
  9575. .ant-calendar-month-panel-month {
  9576. display: inline-block;
  9577. margin: 0 auto;
  9578. color: rgba(0, 0, 0, 0.65);
  9579. background: transparent;
  9580. text-align: center;
  9581. height: 24px;
  9582. line-height: 24px;
  9583. padding: 0 6px;
  9584. border-radius: 4px;
  9585. transition: background 0.3s ease;
  9586. }
  9587. .ant-calendar-month-panel-month:hover {
  9588. background: #f2f8ff;
  9589. cursor: pointer;
  9590. }
  9591. .ant-calendar-year-panel {
  9592. left: 0;
  9593. top: 1px;
  9594. bottom: 0;
  9595. right: 0;
  9596. background: #fff;
  9597. z-index: 10;
  9598. position: absolute;
  9599. outline: none;
  9600. border-radius: 4px;
  9601. }
  9602. .ant-calendar-year-panel-hidden {
  9603. display: none;
  9604. }
  9605. .ant-calendar-year-panel-header {
  9606. height: 34px;
  9607. line-height: 34px;
  9608. text-align: center;
  9609. user-select: none;
  9610. border-bottom: 1px solid #e9e9e9;
  9611. }
  9612. .ant-calendar-year-panel-header a:hover {
  9613. color: #80b9ff;
  9614. }
  9615. .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
  9616. .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
  9617. .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
  9618. .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
  9619. padding: 0 2px;
  9620. font-weight: bold;
  9621. display: inline-block;
  9622. color: rgba(0, 0, 0, 0.65);
  9623. line-height: 34px;
  9624. }
  9625. .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,
  9626. .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,
  9627. .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow,
  9628. .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow {
  9629. display: none;
  9630. }
  9631. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
  9632. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
  9633. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
  9634. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
  9635. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
  9636. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
  9637. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
  9638. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  9639. position: absolute;
  9640. top: 0;
  9641. color: rgba(0, 0, 0, 0.43);
  9642. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9643. padding: 0 5px;
  9644. font-size: 16px;
  9645. display: inline-block;
  9646. line-height: 34px;
  9647. }
  9648. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
  9649. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
  9650. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn {
  9651. left: 7px;
  9652. }
  9653. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:after,
  9654. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:after,
  9655. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:after {
  9656. content: '\AB';
  9657. }
  9658. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
  9659. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
  9660. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  9661. right: 7px;
  9662. }
  9663. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,
  9664. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,
  9665. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after {
  9666. content: '\BB';
  9667. }
  9668. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn {
  9669. left: 29px;
  9670. }
  9671. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:after {
  9672. content: '\2039';
  9673. }
  9674. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn {
  9675. right: 29px;
  9676. }
  9677. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:after {
  9678. content: '\203A';
  9679. }
  9680. .ant-calendar-year-panel-table {
  9681. table-layout: fixed;
  9682. width: 100%;
  9683. height: 248px;
  9684. border-collapse: separate;
  9685. }
  9686. .ant-calendar-year-panel-cell {
  9687. text-align: center;
  9688. }
  9689. .ant-calendar-year-panel-year {
  9690. display: inline-block;
  9691. margin: 0 auto;
  9692. color: rgba(0, 0, 0, 0.65);
  9693. background: transparent;
  9694. text-align: center;
  9695. height: 24px;
  9696. line-height: 24px;
  9697. padding: 0 6px;
  9698. border-radius: 4px;
  9699. transition: background 0.3s ease;
  9700. }
  9701. .ant-calendar-year-panel-year:hover {
  9702. background: #f2f8ff;
  9703. cursor: pointer;
  9704. }
  9705. .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
  9706. background: #58a3ff;
  9707. color: #fff;
  9708. }
  9709. .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
  9710. background: #58a3ff;
  9711. color: #fff;
  9712. }
  9713. .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
  9714. .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  9715. user-select: none;
  9716. color: rgba(0, 0, 0, 0.25);
  9717. }
  9718. .ant-calendar-decade-panel {
  9719. left: 0;
  9720. top: 0;
  9721. bottom: 0;
  9722. right: 0;
  9723. background: #fff;
  9724. z-index: 10;
  9725. position: absolute;
  9726. outline: none;
  9727. border-radius: 4px;
  9728. }
  9729. .ant-calendar-decade-panel-hidden {
  9730. display: none;
  9731. }
  9732. .ant-calendar-decade-panel-header {
  9733. height: 34px;
  9734. line-height: 34px;
  9735. text-align: center;
  9736. user-select: none;
  9737. border-bottom: 1px solid #e9e9e9;
  9738. }
  9739. .ant-calendar-decade-panel-header a:hover {
  9740. color: #80b9ff;
  9741. }
  9742. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
  9743. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
  9744. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
  9745. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
  9746. padding: 0 2px;
  9747. font-weight: bold;
  9748. display: inline-block;
  9749. color: rgba(0, 0, 0, 0.65);
  9750. line-height: 34px;
  9751. }
  9752. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,
  9753. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,
  9754. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow,
  9755. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow {
  9756. display: none;
  9757. }
  9758. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
  9759. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
  9760. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
  9761. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
  9762. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
  9763. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
  9764. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
  9765. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  9766. position: absolute;
  9767. top: 0;
  9768. color: rgba(0, 0, 0, 0.43);
  9769. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9770. padding: 0 5px;
  9771. font-size: 16px;
  9772. display: inline-block;
  9773. line-height: 34px;
  9774. }
  9775. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
  9776. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
  9777. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn {
  9778. left: 7px;
  9779. }
  9780. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:after,
  9781. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:after,
  9782. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:after {
  9783. content: '\AB';
  9784. }
  9785. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
  9786. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
  9787. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  9788. right: 7px;
  9789. }
  9790. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,
  9791. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,
  9792. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after {
  9793. content: '\BB';
  9794. }
  9795. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn {
  9796. left: 29px;
  9797. }
  9798. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:after {
  9799. content: '\2039';
  9800. }
  9801. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn {
  9802. right: 29px;
  9803. }
  9804. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:after {
  9805. content: '\203A';
  9806. }
  9807. .ant-calendar-decade-panel-table {
  9808. table-layout: fixed;
  9809. width: 100%;
  9810. height: 248px;
  9811. border-collapse: separate;
  9812. }
  9813. .ant-calendar-decade-panel-cell {
  9814. text-align: center;
  9815. white-space: nowrap;
  9816. }
  9817. .ant-calendar-decade-panel-decade {
  9818. display: inline-block;
  9819. margin: 0 auto;
  9820. color: rgba(0, 0, 0, 0.65);
  9821. background: transparent;
  9822. text-align: center;
  9823. height: 24px;
  9824. line-height: 24px;
  9825. padding: 0 6px;
  9826. border-radius: 4px;
  9827. transition: background 0.3s ease;
  9828. }
  9829. .ant-calendar-decade-panel-decade:hover {
  9830. background: #f2f8ff;
  9831. cursor: pointer;
  9832. }
  9833. .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
  9834. background: #58a3ff;
  9835. color: #fff;
  9836. }
  9837. .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
  9838. background: #58a3ff;
  9839. color: #fff;
  9840. }
  9841. .ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
  9842. .ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
  9843. user-select: none;
  9844. color: rgba(0, 0, 0, 0.25);
  9845. }
  9846. .ant-calendar-month .ant-calendar-month-panel,
  9847. .ant-calendar-month .ant-calendar-year-panel {
  9848. top: 0;
  9849. }
  9850. .ant-time-picker-panel {
  9851. max-width: 168px;
  9852. z-index: 1050;
  9853. position: absolute;
  9854. }
  9855. .ant-time-picker-panel-inner {
  9856. display: inline-block;
  9857. position: relative;
  9858. outline: none;
  9859. list-style: none;
  9860. font-size: 12px;
  9861. text-align: left;
  9862. background-color: #fff;
  9863. border-radius: 4px;
  9864. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  9865. background-clip: padding-box;
  9866. line-height: 1.5;
  9867. overflow: hidden;
  9868. left: -2px;
  9869. }
  9870. .ant-time-picker-panel-input {
  9871. margin: 0;
  9872. padding: 0;
  9873. border: 0;
  9874. width: 100%;
  9875. cursor: auto;
  9876. line-height: 1.5;
  9877. outline: 0;
  9878. }
  9879. .ant-time-picker-panel-input-wrap {
  9880. box-sizing: border-box;
  9881. position: relative;
  9882. padding: 6px;
  9883. border-bottom: 1px solid #e9e9e9;
  9884. }
  9885. .ant-time-picker-panel-input-invalid {
  9886. border-color: red;
  9887. }
  9888. .ant-time-picker-panel-clear-btn {
  9889. position: absolute;
  9890. right: 5px;
  9891. cursor: pointer;
  9892. overflow: hidden;
  9893. width: 20px;
  9894. height: 20px;
  9895. text-align: center;
  9896. line-height: 20px;
  9897. top: 5px;
  9898. margin: 0;
  9899. }
  9900. .ant-time-picker-panel-clear-btn:after {
  9901. font-size: 12px;
  9902. color: rgba(0, 0, 0, 0.25);
  9903. display: inline-block;
  9904. line-height: 1;
  9905. width: 20px;
  9906. transition: color 0.3s ease;
  9907. font-family: 'anticon';
  9908. text-rendering: optimizeLegibility;
  9909. -webkit-font-smoothing: antialiased;
  9910. -moz-osx-font-smoothing: grayscale;
  9911. content: "\E62E";
  9912. }
  9913. .ant-time-picker-panel-clear-btn:hover:after {
  9914. color: rgba(0, 0, 0, 0.43);
  9915. }
  9916. .ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap {
  9917. max-width: 112px;
  9918. }
  9919. .ant-time-picker-panel-select {
  9920. float: left;
  9921. font-size: 12px;
  9922. border-left: 1px solid #e9e9e9;
  9923. box-sizing: border-box;
  9924. width: 56px;
  9925. overflow: hidden;
  9926. position: relative;
  9927. max-height: 144px;
  9928. }
  9929. .ant-time-picker-panel-select:hover {
  9930. overflow-y: auto;
  9931. }
  9932. .ant-time-picker-panel-select:first-child {
  9933. border-left: 0;
  9934. margin-left: 0;
  9935. }
  9936. .ant-time-picker-panel-select:last-child {
  9937. border-right: 0;
  9938. }
  9939. .ant-time-picker-panel-select:only-child {
  9940. width: 100%;
  9941. }
  9942. .ant-time-picker-panel-select ul {
  9943. list-style: none;
  9944. box-sizing: border-box;
  9945. margin: 0;
  9946. padding: 0 0 120px;
  9947. width: 100%;
  9948. }
  9949. .ant-time-picker-panel-select li {
  9950. list-style: none;
  9951. box-sizing: content-box;
  9952. margin: 0;
  9953. padding: 0 0 0 16px;
  9954. width: 100%;
  9955. height: 24px;
  9956. line-height: 24px;
  9957. text-align: left;
  9958. cursor: pointer;
  9959. user-select: none;
  9960. transition: background 0.3s ease;
  9961. }
  9962. .ant-time-picker-panel-select li:hover {
  9963. background: #f2f8ff;
  9964. }
  9965. li.ant-time-picker-panel-select-option-selected {
  9966. background: #f7f7f7;
  9967. font-weight: bold;
  9968. }
  9969. li.ant-time-picker-panel-select-option-disabled {
  9970. color: rgba(0, 0, 0, 0.25);
  9971. }
  9972. li.ant-time-picker-panel-select-option-disabled:hover {
  9973. background: transparent;
  9974. cursor: not-allowed;
  9975. }
  9976. .ant-time-picker-panel-combobox {
  9977. zoom: 1;
  9978. }
  9979. .ant-time-picker-panel-combobox:before,
  9980. .ant-time-picker-panel-combobox:after {
  9981. content: " ";
  9982. display: table;
  9983. }
  9984. .ant-time-picker-panel-combobox:after {
  9985. clear: both;
  9986. visibility: hidden;
  9987. font-size: 0;
  9988. height: 0;
  9989. }
  9990. .ant-time-picker-panel-addon {
  9991. padding: 8px;
  9992. border-top: 1px solid #e9e9e9;
  9993. }
  9994. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft,
  9995. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight,
  9996. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft,
  9997. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight {
  9998. animation-name: antSlideDownIn;
  9999. }
  10000. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft,
  10001. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight,
  10002. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft,
  10003. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight {
  10004. animation-name: antSlideUpIn;
  10005. }
  10006. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft,
  10007. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight {
  10008. animation-name: antSlideDownOut;
  10009. }
  10010. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft,
  10011. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight {
  10012. animation-name: antSlideUpOut;
  10013. }
  10014. .ant-time-picker {
  10015. position: relative;
  10016. display: inline-block;
  10017. outline: none;
  10018. font-size: 12px;
  10019. transition: opacity 0.3s ease;
  10020. width: 100px;
  10021. }
  10022. .ant-time-picker-input {
  10023. position: relative;
  10024. display: inline-block;
  10025. padding: 4px 7px;
  10026. width: 100%;
  10027. height: 28px;
  10028. cursor: text;
  10029. font-size: 12px;
  10030. line-height: 1.5;
  10031. color: rgba(0, 0, 0, 0.65);
  10032. background-color: #fff;
  10033. background-image: none;
  10034. border: 1px solid #d9d9d9;
  10035. border-radius: 4px;
  10036. transition: all .3s;
  10037. }
  10038. .ant-time-picker-input::-moz-placeholder {
  10039. color: #ccc;
  10040. opacity: 1;
  10041. }
  10042. .ant-time-picker-input:-ms-input-placeholder {
  10043. color: #ccc;
  10044. }
  10045. .ant-time-picker-input::-webkit-input-placeholder {
  10046. color: #ccc;
  10047. }
  10048. .ant-time-picker-input:hover {
  10049. border-color: #80b9ff;
  10050. }
  10051. .ant-time-picker-input:focus {
  10052. border-color: #80b9ff;
  10053. outline: 0;
  10054. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10055. }
  10056. .ant-time-picker-input[disabled] {
  10057. background-color: #f7f7f7;
  10058. opacity: 1;
  10059. cursor: not-allowed;
  10060. color: rgba(0, 0, 0, 0.25);
  10061. }
  10062. .ant-time-picker-input[disabled]:hover {
  10063. border-color: #e2e2e2;
  10064. }
  10065. textarea.ant-time-picker-input {
  10066. max-width: 100%;
  10067. height: auto;
  10068. vertical-align: bottom;
  10069. }
  10070. .ant-time-picker-input-lg {
  10071. padding: 6px 7px;
  10072. height: 32px;
  10073. }
  10074. .ant-time-picker-input-sm {
  10075. padding: 1px 7px;
  10076. height: 22px;
  10077. }
  10078. .ant-time-picker-large .ant-time-picker-input {
  10079. padding: 6px 7px;
  10080. height: 32px;
  10081. }
  10082. .ant-time-picker-small .ant-time-picker-input {
  10083. padding: 1px 7px;
  10084. height: 22px;
  10085. }
  10086. .ant-time-picker-open {
  10087. opacity: 0;
  10088. }
  10089. .ant-time-picker-icon {
  10090. position: absolute;
  10091. user-select: none;
  10092. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  10093. width: 12px;
  10094. height: 12px;
  10095. line-height: 12px;
  10096. right: 8px;
  10097. color: rgba(0, 0, 0, 0.43);
  10098. top: 50%;
  10099. margin-top: -6px;
  10100. }
  10101. .ant-time-picker-icon:after {
  10102. content: "\E641";
  10103. font-family: "anticon";
  10104. font-size: 12px;
  10105. color: rgba(0, 0, 0, 0.43);
  10106. display: inline-block;
  10107. line-height: 1;
  10108. vertical-align: bottom;
  10109. }
  10110. .ant-radio-group {
  10111. display: inline-block;
  10112. font-size: 12px;
  10113. }
  10114. .ant-radio-wrapper {
  10115. font-size: 12px;
  10116. display: inline-block;
  10117. position: relative;
  10118. white-space: nowrap;
  10119. margin-right: 8px;
  10120. cursor: pointer;
  10121. }
  10122. .ant-radio {
  10123. white-space: nowrap;
  10124. outline: none;
  10125. display: inline-block;
  10126. position: relative;
  10127. line-height: 1;
  10128. vertical-align: middle;
  10129. cursor: pointer;
  10130. }
  10131. .ant-radio-wrapper:hover .ant-radio .ant-radio-inner,
  10132. .ant-radio:hover .ant-radio-inner,
  10133. .ant-radio-focused .ant-radio-inner {
  10134. border-color: #58a3ff;
  10135. }
  10136. .ant-radio-inner {
  10137. position: relative;
  10138. top: 0;
  10139. left: 0;
  10140. display: block;
  10141. width: 14px;
  10142. height: 14px;
  10143. border-width: 1px;
  10144. border-style: solid;
  10145. border-radius: 14px;
  10146. border-color: #d9d9d9;
  10147. background-color: #fff;
  10148. transition: all 0.3s;
  10149. }
  10150. .ant-radio-inner:after {
  10151. position: absolute;
  10152. width: 6px;
  10153. height: 6px;
  10154. left: 3px;
  10155. top: 3px;
  10156. border-radius: 4px;
  10157. display: table;
  10158. border-top: 0;
  10159. border-left: 0;
  10160. content: ' ';
  10161. background-color: #58a3ff;
  10162. opacity: 0;
  10163. transform: scale(0);
  10164. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  10165. }
  10166. .ant-radio-input {
  10167. position: absolute;
  10168. left: 0;
  10169. z-index: 1;
  10170. cursor: pointer;
  10171. opacity: 0;
  10172. top: 0;
  10173. bottom: 0;
  10174. right: 0;
  10175. }
  10176. .ant-radio-checked .ant-radio-inner {
  10177. border-color: #58a3ff;
  10178. }
  10179. .ant-radio-checked .ant-radio-inner:after {
  10180. transform: scale(1);
  10181. opacity: 1;
  10182. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  10183. }
  10184. .ant-radio-disabled .ant-radio-inner {
  10185. border-color: #d9d9d9 !important;
  10186. background-color: #f3f3f3;
  10187. }
  10188. .ant-radio-disabled .ant-radio-inner:after {
  10189. background-color: #ccc;
  10190. }
  10191. .ant-radio-disabled + span {
  10192. color: rgba(0, 0, 0, 0.25);
  10193. cursor: not-allowed;
  10194. }
  10195. span.ant-radio + * {
  10196. padding-left: 8px;
  10197. padding-right: 8px;
  10198. vertical-align: middle;
  10199. }
  10200. .ant-radio-button-wrapper {
  10201. margin: 0;
  10202. height: 28px;
  10203. line-height: 26px;
  10204. color: rgba(0, 0, 0, 0.65);
  10205. display: inline-block;
  10206. transition: all 0.3s ease;
  10207. cursor: pointer;
  10208. border: 1px solid #d9d9d9;
  10209. border-left: 0;
  10210. background: #fff;
  10211. padding: 0 16px;
  10212. }
  10213. .ant-radio-button-wrapper a {
  10214. color: rgba(0, 0, 0, 0.65);
  10215. }
  10216. .ant-radio-button-wrapper > .ant-radio-button {
  10217. margin-left: 0;
  10218. display: block;
  10219. width: 0;
  10220. height: 0;
  10221. }
  10222. .ant-radio-group-large .ant-radio-button-wrapper {
  10223. height: 32px;
  10224. line-height: 30px;
  10225. }
  10226. .ant-radio-group-small .ant-radio-button-wrapper {
  10227. height: 22px;
  10228. line-height: 20px;
  10229. padding: 0 12px;
  10230. }
  10231. .ant-radio-group-small .ant-radio-button-wrapper:first-child {
  10232. border-radius: 2px 0 0 2px;
  10233. }
  10234. .ant-radio-group-small .ant-radio-button-wrapper:last-child {
  10235. border-radius: 0 2px 2px 0;
  10236. }
  10237. .ant-radio-button-wrapper:first-child {
  10238. border-radius: 4px 0 0 4px;
  10239. border-left: 1px solid #d9d9d9;
  10240. }
  10241. .ant-radio-button-wrapper:last-child {
  10242. border-radius: 0 4px 4px 0;
  10243. }
  10244. .ant-radio-button-wrapper:first-child:last-child {
  10245. border-radius: 4px;
  10246. }
  10247. .ant-radio-button-wrapper:hover,
  10248. .ant-radio-button-wrapper-focused {
  10249. color: #58a3ff;
  10250. position: relative;
  10251. }
  10252. .ant-radio-button-wrapper .ant-radio-inner,
  10253. .ant-radio-button-wrapper input[type="checkbox"],
  10254. .ant-radio-button-wrapper input[type="radio"] {
  10255. opacity: 0;
  10256. filter: alpha(opacity=0);
  10257. width: 0;
  10258. height: 0;
  10259. }
  10260. .ant-radio-button-wrapper-checked {
  10261. background: #fff;
  10262. border-color: #58a3ff;
  10263. color: #58a3ff;
  10264. box-shadow: -1px 0 0 0 #58a3ff;
  10265. }
  10266. .ant-radio-button-wrapper-checked:first-child {
  10267. border-color: #58a3ff;
  10268. box-shadow: none!important;
  10269. }
  10270. .ant-radio-button-wrapper-checked:hover {
  10271. border-color: #80b9ff;
  10272. box-shadow: -1px 0 0 0 #80b9ff;
  10273. color: #80b9ff;
  10274. }
  10275. .ant-radio-button-wrapper-checked:active {
  10276. border-color: #4386e7;
  10277. box-shadow: -1px 0 0 0 #4386e7;
  10278. color: #4386e7;
  10279. }
  10280. .ant-radio-button-wrapper-disabled {
  10281. border-color: #d9d9d9;
  10282. background-color: #f7f7f7;
  10283. cursor: not-allowed;
  10284. color: rgba(0, 0, 0, 0.25);
  10285. }
  10286. .ant-radio-button-wrapper-disabled:first-child,
  10287. .ant-radio-button-wrapper-disabled:hover {
  10288. border-color: #d9d9d9;
  10289. background-color: #f7f7f7;
  10290. color: rgba(0, 0, 0, 0.25);
  10291. }
  10292. .ant-radio-button-wrapper-disabled:first-child {
  10293. border-left-color: #d9d9d9;
  10294. }
  10295. .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  10296. color: #fff;
  10297. background-color: #e6e6e6;
  10298. border-color: #d9d9d9;
  10299. box-shadow: none;
  10300. }
  10301. .ant-input-number {
  10302. position: relative;
  10303. padding: 4px 7px;
  10304. width: 100%;
  10305. cursor: text;
  10306. line-height: 1.5;
  10307. color: rgba(0, 0, 0, 0.65);
  10308. background-color: #fff;
  10309. background-image: none;
  10310. transition: all .3s;
  10311. margin: 0;
  10312. padding: 0;
  10313. font-size: 12px;
  10314. height: 28px;
  10315. display: inline-block;
  10316. border: 1px solid #d9d9d9;
  10317. border-radius: 4px;
  10318. width: 80px;
  10319. }
  10320. .ant-input-number::-moz-placeholder {
  10321. color: #ccc;
  10322. opacity: 1;
  10323. }
  10324. .ant-input-number:-ms-input-placeholder {
  10325. color: #ccc;
  10326. }
  10327. .ant-input-number::-webkit-input-placeholder {
  10328. color: #ccc;
  10329. }
  10330. .ant-input-number:hover {
  10331. border-color: #80b9ff;
  10332. }
  10333. .ant-input-number:focus {
  10334. border-color: #80b9ff;
  10335. outline: 0;
  10336. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10337. }
  10338. .ant-input-number[disabled] {
  10339. background-color: #f7f7f7;
  10340. opacity: 1;
  10341. cursor: not-allowed;
  10342. color: rgba(0, 0, 0, 0.25);
  10343. }
  10344. .ant-input-number[disabled]:hover {
  10345. border-color: #e2e2e2;
  10346. }
  10347. textarea.ant-input-number {
  10348. max-width: 100%;
  10349. height: auto;
  10350. vertical-align: bottom;
  10351. }
  10352. .ant-input-number-lg {
  10353. padding: 6px 7px;
  10354. height: 32px;
  10355. }
  10356. .ant-input-number-sm {
  10357. padding: 1px 7px;
  10358. height: 22px;
  10359. }
  10360. .ant-input-number-handler {
  10361. text-align: center;
  10362. line-height: 0;
  10363. height: 50%;
  10364. overflow: hidden;
  10365. color: rgba(0, 0, 0, 0.43);
  10366. position: relative;
  10367. transition: all 0.1s linear;
  10368. display: block;
  10369. width: 100%;
  10370. font-weight: bold;
  10371. }
  10372. .ant-input-number-handler:active {
  10373. background: #f4f4f4;
  10374. }
  10375. .ant-input-number-handler:hover .ant-input-number-handler-up-inner,
  10376. .ant-input-number-handler:hover .ant-input-number-handler-down-inner {
  10377. color: #80b9ff;
  10378. }
  10379. .ant-input-number-handler-up-inner,
  10380. .ant-input-number-handler-down-inner {
  10381. font-style: normal;
  10382. vertical-align: baseline;
  10383. text-align: center;
  10384. text-transform: none;
  10385. line-height: 1;
  10386. text-rendering: optimizeLegibility;
  10387. -webkit-font-smoothing: antialiased;
  10388. -moz-osx-font-smoothing: grayscale;
  10389. line-height: 12px;
  10390. user-select: none;
  10391. position: absolute;
  10392. width: 12px;
  10393. height: 12px;
  10394. transition: all 0.1s linear;
  10395. display: inline-block;
  10396. font-size: 12px;
  10397. font-size: 7px \9;
  10398. transform: scale(0.58333333) rotate(0deg);
  10399. /* IE6-IE8 */
  10400. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10401. zoom: 1;
  10402. right: 4px;
  10403. color: rgba(0, 0, 0, 0.43);
  10404. }
  10405. .ant-input-number-handler-up-inner:before,
  10406. .ant-input-number-handler-down-inner:before {
  10407. display: block;
  10408. font-family: "anticon" !important;
  10409. }
  10410. :root .ant-input-number-handler-up-inner,
  10411. :root .ant-input-number-handler-down-inner {
  10412. filter: none;
  10413. }
  10414. :root .ant-input-number-handler-up-inner,
  10415. :root .ant-input-number-handler-down-inner {
  10416. font-size: 12px;
  10417. }
  10418. .ant-input-number:hover {
  10419. border-color: #80b9ff;
  10420. }
  10421. .ant-input-number-focused {
  10422. border-color: #80b9ff;
  10423. outline: 0;
  10424. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10425. }
  10426. .ant-input-number-disabled {
  10427. background-color: #f7f7f7;
  10428. opacity: 1;
  10429. cursor: not-allowed;
  10430. color: rgba(0, 0, 0, 0.25);
  10431. }
  10432. .ant-input-number-disabled:hover {
  10433. border-color: #e2e2e2;
  10434. }
  10435. .ant-input-number-input {
  10436. width: 100%;
  10437. text-align: left;
  10438. outline: 0;
  10439. -moz-appearance: textfield;
  10440. line-height: 26px;
  10441. height: 26px;
  10442. transition: all 0.3s linear;
  10443. color: rgba(0, 0, 0, 0.65);
  10444. border: 0;
  10445. border-radius: 4px;
  10446. padding: 0 7px;
  10447. }
  10448. .ant-input-number-input[disabled] {
  10449. background-color: #f7f7f7;
  10450. opacity: 1;
  10451. cursor: not-allowed;
  10452. color: rgba(0, 0, 0, 0.25);
  10453. }
  10454. .ant-input-number-input[disabled]:hover {
  10455. border-color: #e2e2e2;
  10456. }
  10457. .ant-input-number-lg {
  10458. padding: 0;
  10459. }
  10460. .ant-input-number-lg input {
  10461. height: 30px;
  10462. line-height: 30px;
  10463. }
  10464. .ant-input-number-sm {
  10465. padding: 0;
  10466. }
  10467. .ant-input-number-sm input {
  10468. height: 20px;
  10469. line-height: 20px;
  10470. }
  10471. .ant-input-number-handler-wrap {
  10472. border-left: 1px solid #d9d9d9;
  10473. width: 22px;
  10474. height: 100%;
  10475. background: #fff;
  10476. position: absolute;
  10477. top: 0;
  10478. right: 0;
  10479. opacity: 0;
  10480. border-radius: 0 4px 4px 0;
  10481. transition: opacity 0.24s linear 0.1s;
  10482. }
  10483. .ant-input-number-handler-wrap:hover .ant-input-number-handler {
  10484. height: 40%;
  10485. }
  10486. .ant-input-number:hover .ant-input-number-handler-wrap {
  10487. opacity: 1;
  10488. }
  10489. .ant-input-number-handler-up {
  10490. cursor: pointer;
  10491. }
  10492. .ant-input-number-handler-up-inner {
  10493. top: 50%;
  10494. margin-top: -6px;
  10495. }
  10496. .ant-input-number-handler-up-inner:before {
  10497. text-align: center;
  10498. content: "\E61E";
  10499. }
  10500. .ant-input-number-handler-up:hover {
  10501. height: 60%!important;
  10502. }
  10503. .ant-input-number-handler-down {
  10504. border-top: 1px solid #d9d9d9;
  10505. top: -1px;
  10506. cursor: pointer;
  10507. }
  10508. .ant-input-number-handler-down-inner {
  10509. top: 50%;
  10510. margin-top: -6px;
  10511. }
  10512. .ant-input-number-handler-down-inner:before {
  10513. text-align: center;
  10514. content: "\E61D";
  10515. }
  10516. .ant-input-number-handler-down:hover {
  10517. height: 60%!important;
  10518. }
  10519. .ant-input-number-handler-down-disabled .ant-input-number-handler-down-inner,
  10520. .ant-input-number-handler-up-disabled .ant-input-number-handler-down-inner,
  10521. .ant-input-number-disabled .ant-input-number-handler-down-inner,
  10522. .ant-input-number-handler-down-disabled .ant-input-number-handler-up-inner,
  10523. .ant-input-number-handler-up-disabled .ant-input-number-handler-up-inner,
  10524. .ant-input-number-disabled .ant-input-number-handler-up-inner {
  10525. opacity: 0.72;
  10526. color: #ccc !important;
  10527. cursor: not-allowed;
  10528. }
  10529. .ant-input-number-disabled .ant-input-number-input {
  10530. opacity: 0.72;
  10531. cursor: not-allowed;
  10532. background-color: #f3f3f3;
  10533. }
  10534. .ant-input-number-disabled .ant-input-number-handler-wrap {
  10535. display: none;
  10536. }
  10537. .ant-input-number-disabled .ant-input-number-handler {
  10538. opacity: 0.72;
  10539. color: #ccc !important;
  10540. cursor: not-allowed;
  10541. }
  10542. .ant-cascader {
  10543. font-size: 12px;
  10544. }
  10545. .ant-cascader-input.ant-input {
  10546. background-color: transparent!important;
  10547. cursor: pointer;
  10548. width: 100%;
  10549. z-index: 1;
  10550. }
  10551. .ant-cascader-picker {
  10552. position: relative;
  10553. display: inline-block;
  10554. cursor: pointer;
  10555. font-size: 12px;
  10556. background-color: #fff;
  10557. border-radius: 4px;
  10558. outline: 0;
  10559. }
  10560. .ant-cascader-picker-with-value .ant-cascader-picker-label {
  10561. color: transparent;
  10562. }
  10563. .ant-cascader-picker-disabled {
  10564. cursor: not-allowed;
  10565. background: #f7f7f7;
  10566. color: rgba(0, 0, 0, 0.25);
  10567. }
  10568. .ant-cascader-picker-disabled .ant-cascader-input {
  10569. cursor: not-allowed;
  10570. }
  10571. .ant-cascader-picker:focus .ant-cascader-input {
  10572. border-color: #80b9ff;
  10573. outline: 0;
  10574. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10575. }
  10576. .ant-cascader-picker-label {
  10577. position: absolute;
  10578. left: 0;
  10579. height: 20px;
  10580. line-height: 20px;
  10581. top: 50%;
  10582. margin-top: -10px;
  10583. white-space: nowrap;
  10584. text-overflow: ellipsis;
  10585. overflow: hidden;
  10586. width: 100%;
  10587. padding: 0 12px 0 8px;
  10588. }
  10589. .ant-cascader-picker-clear {
  10590. opacity: 0;
  10591. position: absolute;
  10592. right: 8px;
  10593. z-index: 2;
  10594. background: #fff;
  10595. top: 50%;
  10596. font-size: 12px;
  10597. color: rgba(0, 0, 0, 0.25);
  10598. width: 12px;
  10599. height: 12px;
  10600. margin-top: -6px;
  10601. line-height: 12px;
  10602. cursor: pointer;
  10603. transition: color 0.3s ease, opacity 0.15s ease;
  10604. }
  10605. .ant-cascader-picker-clear:hover {
  10606. color: rgba(0, 0, 0, 0.43);
  10607. }
  10608. .ant-cascader-picker:hover .ant-cascader-picker-clear {
  10609. opacity: 1;
  10610. }
  10611. .ant-cascader-picker-arrow {
  10612. position: absolute;
  10613. z-index: 1;
  10614. top: 50%;
  10615. right: 8px;
  10616. width: 12px;
  10617. height: 12px;
  10618. margin-top: -6px;
  10619. line-height: 12px;
  10620. color: rgba(0, 0, 0, 0.43);
  10621. display: inline-block;
  10622. font-size: 12px;
  10623. font-size: 9px \9;
  10624. transform: scale(0.75) rotate(0deg);
  10625. /* IE6-IE8 */
  10626. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10627. zoom: 1;
  10628. }
  10629. :root .ant-cascader-picker-arrow {
  10630. filter: none;
  10631. }
  10632. :root .ant-cascader-picker-arrow {
  10633. font-size: 12px;
  10634. }
  10635. .ant-cascader-picker-arrow:before {
  10636. transition: transform 0.2s ease;
  10637. }
  10638. .ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand {
  10639. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  10640. }
  10641. .ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand:before {
  10642. transform: rotate(180deg);
  10643. }
  10644. .ant-cascader-menus {
  10645. font-size: 12px;
  10646. background: #fff;
  10647. position: absolute;
  10648. z-index: 1050;
  10649. border-radius: 4px;
  10650. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  10651. white-space: nowrap;
  10652. }
  10653. .ant-cascader-menus-empty,
  10654. .ant-cascader-menus-hidden {
  10655. display: none;
  10656. }
  10657. .ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-bottomLeft,
  10658. .ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-bottomLeft {
  10659. animation-name: antSlideUpIn;
  10660. }
  10661. .ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-topLeft,
  10662. .ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-topLeft {
  10663. animation-name: antSlideDownIn;
  10664. }
  10665. .ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-bottomLeft {
  10666. animation-name: antSlideUpOut;
  10667. }
  10668. .ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-topLeft {
  10669. animation-name: antSlideDownOut;
  10670. }
  10671. .ant-cascader-menu {
  10672. display: inline-block;
  10673. vertical-align: top;
  10674. min-width: 111px;
  10675. height: 180px;
  10676. list-style: none;
  10677. margin: 0;
  10678. padding: 0;
  10679. border-right: 1px solid #e9e9e9;
  10680. overflow: auto;
  10681. }
  10682. .ant-cascader-menu:first-child {
  10683. border-radius: 4px 0 0 4px;
  10684. }
  10685. .ant-cascader-menu:last-child {
  10686. border-right-color: transparent;
  10687. margin-right: -1px;
  10688. border-radius: 0 4px 4px 0;
  10689. }
  10690. .ant-cascader-menu:only-child {
  10691. border-radius: 4px;
  10692. }
  10693. .ant-cascader-menu-item {
  10694. padding: 7px 26px 7px 16px;
  10695. cursor: pointer;
  10696. white-space: nowrap;
  10697. transition: all 0.3s ease;
  10698. }
  10699. .ant-cascader-menu-item:hover {
  10700. background: #f2f8ff;
  10701. }
  10702. .ant-cascader-menu-item-disabled {
  10703. cursor: not-allowed;
  10704. color: rgba(0, 0, 0, 0.25);
  10705. }
  10706. .ant-cascader-menu-item-disabled:hover {
  10707. background: transparent;
  10708. }
  10709. .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),
  10710. .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
  10711. background-color: #f7f7f7;
  10712. font-weight: bold;
  10713. }
  10714. .ant-cascader-menu-item-expand {
  10715. position: relative;
  10716. }
  10717. .ant-cascader-menu-item-expand:after {
  10718. font-family: 'anticon';
  10719. text-rendering: optimizeLegibility;
  10720. -webkit-font-smoothing: antialiased;
  10721. -moz-osx-font-smoothing: grayscale;
  10722. content: "\E61F";
  10723. display: inline-block;
  10724. font-size: 12px;
  10725. font-size: 8px \9;
  10726. transform: scale(0.66666667) rotate(0deg);
  10727. /* IE6-IE8 */
  10728. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10729. zoom: 1;
  10730. color: rgba(0, 0, 0, 0.43);
  10731. position: absolute;
  10732. right: 15px;
  10733. }
  10734. :root .ant-cascader-menu-item-expand:after {
  10735. filter: none;
  10736. }
  10737. :root .ant-cascader-menu-item-expand:after {
  10738. font-size: 12px;
  10739. }
  10740. .ant-cascader-menu-item-loading:after {
  10741. font-family: 'anticon';
  10742. text-rendering: optimizeLegibility;
  10743. -webkit-font-smoothing: antialiased;
  10744. -moz-osx-font-smoothing: grayscale;
  10745. content: "\E64D";
  10746. animation: loadingCircle 1s infinite linear;
  10747. }
  10748. .ant-cascader-menu-item .ant-cascader-menu-item-keyword {
  10749. color: #f04134;
  10750. }
  10751. .ant-table-wrapper {
  10752. zoom: 1;
  10753. }
  10754. .ant-table-wrapper:before,
  10755. .ant-table-wrapper:after {
  10756. content: " ";
  10757. display: table;
  10758. }
  10759. .ant-table-wrapper:after {
  10760. clear: both;
  10761. visibility: hidden;
  10762. font-size: 0;
  10763. height: 0;
  10764. }
  10765. .ant-table {
  10766. font-size: 12px;
  10767. color: rgba(0, 0, 0, 0.65);
  10768. overflow: hidden;
  10769. position: relative;
  10770. border-radius: 4px 4px 0 0;
  10771. /* fix firefox scrollbar bug */
  10772. }
  10773. .ant-table-body {
  10774. transition: opacity 0.3s ease;
  10775. }
  10776. .ant-table table {
  10777. width: 100%;
  10778. border-collapse: separate;
  10779. border-spacing: 0;
  10780. text-align: left;
  10781. border-radius: 4px 4px 0 0;
  10782. overflow: hidden;
  10783. }
  10784. .ant-table-thead > tr > th {
  10785. background: #f7f7f7;
  10786. font-weight: bold;
  10787. transition: background .3s ease;
  10788. text-align: left;
  10789. }
  10790. .ant-table-thead > tr > th[colspan] {
  10791. text-align: center;
  10792. }
  10793. .ant-table-thead > tr > th .anticon-filter {
  10794. margin-left: 4px;
  10795. font-size: 12px;
  10796. cursor: pointer;
  10797. color: #aaa;
  10798. transition: all 0.3s ease;
  10799. }
  10800. .ant-table-thead > tr > th .anticon-filter:hover {
  10801. color: rgba(0, 0, 0, 0.65);
  10802. }
  10803. .ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter {
  10804. color: #58a3ff;
  10805. }
  10806. .ant-table-tbody > tr > td {
  10807. border-bottom: 1px solid #e9e9e9;
  10808. }
  10809. .ant-table-thead > tr,
  10810. .ant-table-tbody > tr {
  10811. transition: all .3s ease;
  10812. }
  10813. .ant-table-thead > tr.ant-table-row-hover,
  10814. .ant-table-tbody > tr.ant-table-row-hover,
  10815. .ant-table-thead > tr:hover,
  10816. .ant-table-tbody > tr:hover {
  10817. background: #f2f8ff;
  10818. }
  10819. .ant-table-thead > tr:hover {
  10820. background: none;
  10821. }
  10822. .ant-table-footer {
  10823. padding: 16px 8px;
  10824. background: #f7f7f7;
  10825. border-radius: 0 0 4px 4px;
  10826. position: relative;
  10827. }
  10828. .ant-table-footer:before {
  10829. content: '';
  10830. height: 1px;
  10831. background: #f7f7f7;
  10832. position: absolute;
  10833. top: -1px;
  10834. width: 100%;
  10835. left: 0;
  10836. }
  10837. .ant-table.ant-table-bordered .ant-table-footer {
  10838. border: 1px solid #e9e9e9;
  10839. }
  10840. .ant-table-title {
  10841. padding: 16px 8px;
  10842. position: relative;
  10843. top: 1px;
  10844. border-radius: 4px 4px 0 0;
  10845. }
  10846. .ant-table.ant-table-bordered .ant-table-title {
  10847. border: 1px solid #e9e9e9;
  10848. }
  10849. .ant-table-title + .ant-table-content {
  10850. position: relative;
  10851. border-radius: 4px 4px 0 0;
  10852. overflow: hidden;
  10853. }
  10854. .ant-table-bordered .ant-table-title + .ant-table-content,
  10855. .ant-table-bordered .ant-table-title + .ant-table-content table {
  10856. border-radius: 0;
  10857. }
  10858. .ant-table-without-column-header .ant-table-title + .ant-table-content,
  10859. .ant-table-without-column-header table {
  10860. border-radius: 0;
  10861. }
  10862. .ant-table-tbody > tr.ant-table-row-selected {
  10863. background: #fafafa;
  10864. }
  10865. .ant-table-thead > tr > th.ant-table-column-sort {
  10866. background: #eaeaea;
  10867. }
  10868. .ant-table-thead > tr > th,
  10869. .ant-table-tbody > tr > td {
  10870. padding: 16px 8px;
  10871. word-break: break-all;
  10872. }
  10873. .ant-table-thead > tr > th.ant-table-selection-column,
  10874. .ant-table-tbody > tr > td.ant-table-selection-column,
  10875. .ant-table-expand-icon-th,
  10876. .ant-table-row-expand-icon-cell {
  10877. text-align: center;
  10878. width: 48px;
  10879. }
  10880. .ant-table-header {
  10881. background: #f7f7f7;
  10882. overflow: hidden;
  10883. }
  10884. .ant-table-header table {
  10885. border-radius: 4px 4px 0 0;
  10886. }
  10887. .ant-table-loading {
  10888. position: relative;
  10889. }
  10890. .ant-table-loading .ant-table-body {
  10891. background: #fff;
  10892. opacity: 0.5;
  10893. }
  10894. .ant-table-loading .ant-table-spin-holder {
  10895. height: 20px;
  10896. line-height: 20px;
  10897. left: 50%;
  10898. top: 50%;
  10899. margin-left: -30px;
  10900. position: absolute;
  10901. }
  10902. .ant-table-loading .ant-table-with-pagination {
  10903. margin-top: -20px;
  10904. }
  10905. .ant-table-loading .ant-table-without-pagination {
  10906. margin-top: 10px;
  10907. }
  10908. .ant-table-middle .ant-table-thead > tr > th,
  10909. .ant-table-middle .ant-table-tbody > tr > td {
  10910. padding: 10px 8px;
  10911. }
  10912. .ant-table-middle .ant-table-title,
  10913. .ant-table-middle .ant-table-footer {
  10914. padding: 10px 8px;
  10915. }
  10916. .ant-table-small {
  10917. border: 1px solid #e9e9e9;
  10918. border-radius: 4px;
  10919. }
  10920. .ant-table-small .ant-table-header > table,
  10921. .ant-table-small .ant-table-body > table {
  10922. border: 0;
  10923. padding: 0 8px;
  10924. }
  10925. .ant-table-small .ant-table-thead > tr > th {
  10926. background: #fff;
  10927. border-bottom: 1px solid #e9e9e9;
  10928. }
  10929. .ant-table-small .ant-table-tbody > tr > td {
  10930. padding: 6px 8px;
  10931. }
  10932. .ant-table-small .ant-table-title,
  10933. .ant-table-small .ant-table-footer,
  10934. .ant-table-small .ant-table-thead > tr > th {
  10935. padding: 10px 8px;
  10936. }
  10937. .ant-table-small .ant-table-title {
  10938. border-bottom: 1px solid #e9e9e9;
  10939. top: 0;
  10940. }
  10941. .ant-table-small .ant-table-header {
  10942. background: #fff;
  10943. }
  10944. .ant-table-small .ant-table-header table {
  10945. border-bottom: 1px solid #e9e9e9;
  10946. }
  10947. .ant-table-small .ant-table-header .ant-table-thead > tr > th {
  10948. border-bottom: 0;
  10949. }
  10950. .ant-table-small .ant-table-row:last-child td {
  10951. border-bottom: 0;
  10952. }
  10953. .ant-table-column-sorter {
  10954. margin-left: 4px;
  10955. display: inline-block;
  10956. width: 12px;
  10957. height: 14px;
  10958. vertical-align: middle;
  10959. text-align: center;
  10960. }
  10961. .ant-table-column-sorter-up,
  10962. .ant-table-column-sorter-down {
  10963. line-height: 4px;
  10964. height: 5px;
  10965. display: block;
  10966. width: 12px;
  10967. cursor: pointer;
  10968. }
  10969. .ant-table-column-sorter-up:hover .anticon,
  10970. .ant-table-column-sorter-down:hover .anticon {
  10971. color: rgba(0, 0, 0, 0.65);
  10972. }
  10973. .ant-table-column-sorter-up.on .anticon-caret-up,
  10974. .ant-table-column-sorter-down.on .anticon-caret-up,
  10975. .ant-table-column-sorter-up.on .anticon-caret-down,
  10976. .ant-table-column-sorter-down.on .anticon-caret-down {
  10977. color: #58a3ff;
  10978. }
  10979. .ant-table-column-sorter .anticon-caret-up,
  10980. .ant-table-column-sorter .anticon-caret-down {
  10981. display: inline-block;
  10982. font-size: 12px;
  10983. font-size: 7px \9;
  10984. transform: scale(0.58333333) rotate(0deg);
  10985. /* IE6-IE8 */
  10986. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10987. zoom: 1;
  10988. line-height: 6px;
  10989. height: 6px;
  10990. color: #aaa;
  10991. }
  10992. :root .ant-table-column-sorter .anticon-caret-up,
  10993. :root .ant-table-column-sorter .anticon-caret-down {
  10994. filter: none;
  10995. }
  10996. :root .ant-table-column-sorter .anticon-caret-up,
  10997. :root .ant-table-column-sorter .anticon-caret-down {
  10998. font-size: 12px;
  10999. }
  11000. .ant-table-column-sorter .anticon-caret-up:before,
  11001. .ant-table-column-sorter .anticon-caret-down:before {
  11002. -moz-transform-origin: 53% 50%;
  11003. /* fix firefox position */
  11004. }
  11005. .ant-table-bordered .ant-table-header > table,
  11006. .ant-table-bordered .ant-table-body > table,
  11007. .ant-table-bordered .ant-table-fixed-left table,
  11008. .ant-table-bordered .ant-table-fixed-right table {
  11009. border: 1px solid #e9e9e9;
  11010. border-right: 0;
  11011. border-bottom: 0;
  11012. }
  11013. .ant-table-bordered.ant-table-empty .ant-table-placeholder {
  11014. border-left: 1px solid #e9e9e9;
  11015. border-right: 1px solid #e9e9e9;
  11016. }
  11017. .ant-table-bordered.ant-table-fixed-header .ant-table-header > table {
  11018. border-bottom: 0;
  11019. }
  11020. .ant-table-bordered.ant-table-fixed-header .ant-table-body > table {
  11021. border-top: 0;
  11022. border-top-left-radius: 0;
  11023. border-top-right-radius: 0;
  11024. }
  11025. .ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table {
  11026. border-top: 0;
  11027. }
  11028. .ant-table-bordered.ant-table-fixed-header .ant-table-placeholder {
  11029. border: 0;
  11030. }
  11031. .ant-table-bordered .ant-table-thead > tr > th {
  11032. border-bottom: 1px solid #e9e9e9;
  11033. }
  11034. .ant-table-bordered .ant-table-thead > tr > th,
  11035. .ant-table-bordered .ant-table-tbody > tr > td {
  11036. border-right: 1px solid #e9e9e9;
  11037. }
  11038. .ant-table-bordered.ant-table-small {
  11039. border-right: 0;
  11040. }
  11041. .ant-table-bordered.ant-table-small .ant-table-header > table,
  11042. .ant-table-bordered.ant-table-small .ant-table-body > table,
  11043. .ant-table-bordered.ant-table-small .ant-table-fixed-left table,
  11044. .ant-table-bordered.ant-table-small .ant-table-fixed-right table {
  11045. border: 0;
  11046. padding: 0;
  11047. }
  11048. .ant-table-bordered.ant-table-small .ant-table-title {
  11049. border: 0;
  11050. border-bottom: 1px solid #e9e9e9;
  11051. border-right: 1px solid #e9e9e9;
  11052. }
  11053. .ant-table-bordered.ant-table-small .ant-table-footer {
  11054. border: 0;
  11055. border-top: 1px solid #e9e9e9;
  11056. border-right: 1px solid #e9e9e9;
  11057. }
  11058. .ant-table-bordered.ant-table-small .ant-table-footer:before {
  11059. display: none;
  11060. }
  11061. .ant-table-bordered.ant-table-small .ant-table-placeholder {
  11062. border: 0;
  11063. }
  11064. .ant-table-placeholder {
  11065. position: relative;
  11066. padding: 16px 8px;
  11067. background: #fff;
  11068. border-bottom: 1px solid #e9e9e9;
  11069. text-align: center;
  11070. font-size: 12px;
  11071. color: rgba(0, 0, 0, 0.43);
  11072. }
  11073. .ant-table-placeholder .anticon {
  11074. margin-right: 4px;
  11075. }
  11076. .ant-table-pagination {
  11077. margin: 16px 0;
  11078. float: right;
  11079. }
  11080. .ant-table-filter-dropdown {
  11081. min-width: 96px;
  11082. margin-left: -8px;
  11083. background: #fff;
  11084. border-radius: 4px;
  11085. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  11086. }
  11087. .ant-table-filter-dropdown .ant-dropdown-menu {
  11088. border: 0;
  11089. box-shadow: none;
  11090. border-radius: 4px 4px 0 0;
  11091. }
  11092. .ant-table-filter-dropdown .ant-dropdown-menu-without-submenu {
  11093. max-height: 400px;
  11094. overflow-x: hidden;
  11095. }
  11096. .ant-table-filter-dropdown .ant-dropdown-menu-item > label + span {
  11097. padding: 0;
  11098. }
  11099. .ant-table-filter-dropdown .ant-dropdown-menu-sub {
  11100. border-radius: 4px;
  11101. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  11102. }
  11103. .ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title:after {
  11104. color: #58a3ff;
  11105. font-weight: bold;
  11106. text-shadow: 0 0 2px #dfeeff;
  11107. }
  11108. .ant-table-filter-dropdown .ant-dropdown-menu-item {
  11109. overflow: hidden;
  11110. }
  11111. .ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
  11112. .ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
  11113. border-radius: 0;
  11114. }
  11115. .ant-table-filter-dropdown-btns {
  11116. overflow: hidden;
  11117. padding: 7px 16px;
  11118. border-top: 1px solid #e9e9e9;
  11119. }
  11120. .ant-table-filter-dropdown-link {
  11121. color: #58a3ff;
  11122. }
  11123. .ant-table-filter-dropdown-link:hover {
  11124. color: #80b9ff;
  11125. }
  11126. .ant-table-filter-dropdown-link:active {
  11127. color: #4386e7;
  11128. }
  11129. .ant-table-filter-dropdown-link.confirm {
  11130. float: left;
  11131. }
  11132. .ant-table-filter-dropdown-link.clear {
  11133. float: right;
  11134. }
  11135. .ant-table-row-expand-icon {
  11136. cursor: pointer;
  11137. display: inline-block;
  11138. width: 17px;
  11139. height: 17px;
  11140. text-align: center;
  11141. line-height: 14px;
  11142. border: 1px solid #e9e9e9;
  11143. user-select: none;
  11144. background: #fff;
  11145. }
  11146. .ant-table-row-expand-icon-cell {
  11147. width: 18px;
  11148. }
  11149. .ant-table-row-expanded:after {
  11150. content: '-';
  11151. }
  11152. .ant-table-row-collapsed:after {
  11153. content: '+';
  11154. }
  11155. .ant-table-row-spaced {
  11156. visibility: hidden;
  11157. }
  11158. .ant-table-row-spaced:after {
  11159. content: '.';
  11160. }
  11161. .ant-table-row[class*="ant-table-row-level-0"] .ant-table-selection-column > span {
  11162. display: inline-block;
  11163. }
  11164. tr.ant-table-expanded-row,
  11165. tr.ant-table-expanded-row:hover {
  11166. background: #fbfbfb;
  11167. }
  11168. .ant-table .ant-table-row-indent + .ant-table-row-expand-icon {
  11169. margin-right: 8px;
  11170. }
  11171. .ant-table-scroll {
  11172. overflow: auto;
  11173. overflow-x: hidden;
  11174. }
  11175. .ant-table-scroll table {
  11176. width: auto;
  11177. min-width: 100%;
  11178. }
  11179. .ant-table-body-inner {
  11180. height: 100%;
  11181. }
  11182. .ant-table-fixed-header .ant-table-body {
  11183. position: relative;
  11184. background: #fff;
  11185. }
  11186. .ant-table-fixed-header .ant-table-body-inner {
  11187. overflow: scroll;
  11188. }
  11189. .ant-table-fixed-header .ant-table-scroll .ant-table-header {
  11190. overflow: scroll;
  11191. padding-bottom: 20px;
  11192. margin-bottom: -20px;
  11193. }
  11194. .ant-table-fixed-header.ant-table-empty .ant-table-scroll .ant-table-body {
  11195. padding-bottom: 20px;
  11196. margin-bottom: -20px;
  11197. }
  11198. .ant-table-fixed-left,
  11199. .ant-table-fixed-right {
  11200. position: absolute;
  11201. top: 0;
  11202. overflow: hidden;
  11203. transition: box-shadow 0.3s ease;
  11204. border-radius: 0;
  11205. }
  11206. .ant-table-fixed-left table,
  11207. .ant-table-fixed-right table {
  11208. width: auto;
  11209. background: #fff;
  11210. }
  11211. .ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,
  11212. .ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed {
  11213. border-radius: 0;
  11214. }
  11215. .ant-table-fixed-left {
  11216. left: 0;
  11217. box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.2);
  11218. }
  11219. .ant-table-fixed-left .ant-table-header {
  11220. overflow-y: hidden;
  11221. }
  11222. .ant-table-fixed-left .ant-table-body-inner {
  11223. margin-right: -20px;
  11224. padding-right: 20px;
  11225. }
  11226. .ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner {
  11227. padding-right: 0;
  11228. }
  11229. .ant-table-fixed-left,
  11230. .ant-table-fixed-left table {
  11231. border-radius: 4px 0 0 0;
  11232. }
  11233. .ant-table-fixed-right {
  11234. right: 0;
  11235. box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.2);
  11236. }
  11237. .ant-table-fixed-right,
  11238. .ant-table-fixed-right table {
  11239. border-radius: 0 4px 0 0;
  11240. }
  11241. .ant-table-fixed-right .ant-table-expanded-row {
  11242. color: transparent;
  11243. pointer-events: none;
  11244. }
  11245. .ant-table.ant-table-scroll-position-left .ant-table-fixed-left {
  11246. box-shadow: none;
  11247. }
  11248. .ant-table.ant-table-scroll-position-right .ant-table-fixed-right {
  11249. box-shadow: none;
  11250. }
  11251. .ant-dropdown {
  11252. position: absolute;
  11253. left: -9999px;
  11254. top: -9999px;
  11255. z-index: 1050;
  11256. display: block;
  11257. font-size: 12px;
  11258. font-weight: normal;
  11259. line-height: 1.5;
  11260. }
  11261. .ant-dropdown-wrap {
  11262. position: relative;
  11263. }
  11264. .ant-dropdown-wrap .ant-btn > .anticon-down {
  11265. display: inline-block;
  11266. font-size: 12px;
  11267. font-size: 10px \9;
  11268. transform: scale(0.83333333) rotate(0deg);
  11269. /* IE6-IE8 */
  11270. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11271. zoom: 1;
  11272. }
  11273. :root .ant-dropdown-wrap .ant-btn > .anticon-down {
  11274. filter: none;
  11275. }
  11276. :root .ant-dropdown-wrap .ant-btn > .anticon-down {
  11277. font-size: 12px;
  11278. }
  11279. .ant-dropdown-wrap .anticon-down:before {
  11280. transition: transform 0.2s ease;
  11281. }
  11282. .ant-dropdown-wrap-open .anticon-down:before {
  11283. transform: rotate(180deg);
  11284. }
  11285. .ant-dropdown-hidden,
  11286. .ant-dropdown-menu-hidden {
  11287. display: none;
  11288. }
  11289. .ant-dropdown-menu {
  11290. outline: none;
  11291. position: relative;
  11292. list-style-type: none;
  11293. padding: 0;
  11294. margin: 0;
  11295. text-align: left;
  11296. background-color: #fff;
  11297. border-radius: 4px;
  11298. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  11299. background-clip: padding-box;
  11300. }
  11301. .ant-dropdown-menu-item,
  11302. .ant-dropdown-menu-submenu-title {
  11303. padding: 7px 16px;
  11304. margin: 0;
  11305. clear: both;
  11306. font-size: 12px;
  11307. font-weight: normal;
  11308. color: rgba(0, 0, 0, 0.65);
  11309. white-space: nowrap;
  11310. cursor: pointer;
  11311. transition: all .3s;
  11312. }
  11313. .ant-dropdown-menu-item > a,
  11314. .ant-dropdown-menu-submenu-title > a {
  11315. color: rgba(0, 0, 0, 0.65);
  11316. display: block;
  11317. padding: 7px 16px;
  11318. margin: -7px -16px;
  11319. transition: all .3s;
  11320. }
  11321. .ant-dropdown-menu-item-selected,
  11322. .ant-dropdown-menu-submenu-title-selected,
  11323. .ant-dropdown-menu-item-selected > a,
  11324. .ant-dropdown-menu-submenu-title-selected > a {
  11325. color: #58a3ff;
  11326. background-color: #f2f8ff;
  11327. }
  11328. .ant-dropdown-menu-item:hover,
  11329. .ant-dropdown-menu-submenu-title:hover {
  11330. background-color: #f2f8ff;
  11331. }
  11332. .ant-dropdown-menu-item-disabled,
  11333. .ant-dropdown-menu-submenu-title-disabled {
  11334. color: rgba(0, 0, 0, 0.25);
  11335. cursor: not-allowed;
  11336. pointer-events: none;
  11337. }
  11338. .ant-dropdown-menu-item-disabled:hover,
  11339. .ant-dropdown-menu-submenu-title-disabled:hover {
  11340. color: rgba(0, 0, 0, 0.25);
  11341. background-color: #fff;
  11342. cursor: not-allowed;
  11343. }
  11344. .ant-dropdown-menu-item:first-child,
  11345. .ant-dropdown-menu-submenu-title:first-child,
  11346. .ant-dropdown-menu-item:first-child > a,
  11347. .ant-dropdown-menu-submenu-title:first-child > a {
  11348. border-radius: 4px 4px 0 0;
  11349. }
  11350. .ant-dropdown-menu-item:last-child,
  11351. .ant-dropdown-menu-submenu-title:last-child,
  11352. .ant-dropdown-menu-item:last-child > a,
  11353. .ant-dropdown-menu-submenu-title:last-child > a {
  11354. border-radius: 0 0 4px 4px;
  11355. }
  11356. .ant-dropdown-menu-item:only-child,
  11357. .ant-dropdown-menu-submenu-title:only-child,
  11358. .ant-dropdown-menu-item:only-child > a,
  11359. .ant-dropdown-menu-submenu-title:only-child > a {
  11360. border-radius: 4px;
  11361. }
  11362. .ant-dropdown-menu-item-divider,
  11363. .ant-dropdown-menu-submenu-title-divider {
  11364. height: 1px;
  11365. overflow: hidden;
  11366. background-color: #e9e9e9;
  11367. line-height: 0;
  11368. }
  11369. .ant-dropdown-menu-submenu-title:after {
  11370. font-family: "anticon" !important;
  11371. position: absolute;
  11372. content: "\E61F";
  11373. right: 12px;
  11374. color: rgba(0, 0, 0, 0.43);
  11375. display: inline-block;
  11376. font-size: 12px;
  11377. font-size: 10px \9;
  11378. transform: scale(0.83333333) rotate(0deg);
  11379. /* IE6-IE8 */
  11380. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11381. zoom: 1;
  11382. }
  11383. :root .ant-dropdown-menu-submenu-title:after {
  11384. filter: none;
  11385. }
  11386. :root .ant-dropdown-menu-submenu-title:after {
  11387. font-size: 12px;
  11388. }
  11389. .ant-dropdown-menu-submenu-vertical {
  11390. position: relative;
  11391. }
  11392. .ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  11393. top: 0;
  11394. left: 100%;
  11395. position: absolute;
  11396. min-width: 100%;
  11397. margin-left: 4px;
  11398. transform-origin: 0 0;
  11399. }
  11400. .ant-dropdown-menu-submenu:first-child .ant-dropdown-menu-submenu-title {
  11401. border-radius: 4px 4px 0 0;
  11402. }
  11403. .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
  11404. border-radius: 0 0 4px 4px;
  11405. }
  11406. .ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,
  11407. .ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,
  11408. .ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,
  11409. .ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,
  11410. .ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight,
  11411. .ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight {
  11412. animation-name: antSlideUpIn;
  11413. }
  11414. .ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,
  11415. .ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,
  11416. .ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,
  11417. .ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,
  11418. .ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight,
  11419. .ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight {
  11420. animation-name: antSlideDownIn;
  11421. }
  11422. .ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,
  11423. .ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,
  11424. .ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight {
  11425. animation-name: antSlideUpOut;
  11426. }
  11427. .ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,
  11428. .ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,
  11429. .ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight {
  11430. animation-name: antSlideDownOut;
  11431. }
  11432. .ant-dropdown-trigger .anticon-down,
  11433. .ant-dropdown-link .anticon-down {
  11434. display: inline-block;
  11435. font-size: 12px;
  11436. font-size: 10px \9;
  11437. transform: scale(0.83333333) rotate(0deg);
  11438. /* IE6-IE8 */
  11439. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11440. zoom: 1;
  11441. }
  11442. :root .ant-dropdown-trigger .anticon-down,
  11443. :root .ant-dropdown-link .anticon-down {
  11444. filter: none;
  11445. }
  11446. :root .ant-dropdown-trigger .anticon-down,
  11447. :root .ant-dropdown-link .anticon-down {
  11448. font-size: 12px;
  11449. }
  11450. .ant-dropdown-button {
  11451. white-space: nowrap;
  11452. }
  11453. .ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) {
  11454. padding-right: 7px;
  11455. }
  11456. .ant-dropdown-button .anticon-down {
  11457. display: inline-block;
  11458. font-size: 12px;
  11459. font-size: 10px \9;
  11460. transform: scale(0.83333333) rotate(0deg);
  11461. /* IE6-IE8 */
  11462. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11463. zoom: 1;
  11464. }
  11465. :root .ant-dropdown-button .anticon-down {
  11466. filter: none;
  11467. }
  11468. :root .ant-dropdown-button .anticon-down {
  11469. font-size: 12px;
  11470. }
  11471. .ant-dropdown-menu-dark,
  11472. .ant-dropdown-menu-dark .ant-dropdown-menu {
  11473. background: #404040;
  11474. }
  11475. .ant-dropdown-menu-dark .ant-dropdown-menu-item,
  11476. .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
  11477. .ant-dropdown-menu-dark .ant-dropdown-menu-item > a {
  11478. color: rgba(255, 255, 255, 0.67);
  11479. }
  11480. .ant-dropdown-menu-dark .ant-dropdown-menu-item:after,
  11481. .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:after,
  11482. .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:after {
  11483. color: rgba(255, 255, 255, 0.67);
  11484. }
  11485. .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
  11486. .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
  11487. .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover {
  11488. color: #fff;
  11489. background: transparent;
  11490. }
  11491. .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
  11492. .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
  11493. .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
  11494. background: #58a3ff;
  11495. color: #fff;
  11496. }
  11497. .ant-pagination {
  11498. font-size: 12px;
  11499. }
  11500. .ant-pagination:after {
  11501. content: " ";
  11502. display: block;
  11503. height: 0;
  11504. clear: both;
  11505. overflow: hidden;
  11506. visibility: hidden;
  11507. }
  11508. .ant-pagination-total-text {
  11509. float: left;
  11510. height: 30px;
  11511. line-height: 30px;
  11512. margin-right: 10px;
  11513. }
  11514. .ant-pagination-item {
  11515. cursor: pointer;
  11516. border-radius: 4px;
  11517. user-select: none;
  11518. min-width: 28px;
  11519. height: 28px;
  11520. line-height: 28px;
  11521. text-align: center;
  11522. list-style: none;
  11523. float: left;
  11524. border: 1px solid #d9d9d9;
  11525. background-color: #fff;
  11526. margin-right: 8px;
  11527. font-family: Arial;
  11528. }
  11529. .ant-pagination-item a {
  11530. text-decoration: none;
  11531. color: rgba(0, 0, 0, 0.65);
  11532. transition: none;
  11533. margin: 0 6px;
  11534. }
  11535. .ant-pagination-item:hover {
  11536. transition: all 0.3s ease;
  11537. border-color: #58a3ff;
  11538. }
  11539. .ant-pagination-item:hover a {
  11540. color: #58a3ff;
  11541. }
  11542. .ant-pagination-item-active {
  11543. background-color: #58a3ff;
  11544. border-color: #58a3ff;
  11545. }
  11546. .ant-pagination-item-active a,
  11547. .ant-pagination-item-active:hover a {
  11548. color: #fff;
  11549. }
  11550. .ant-pagination-jump-prev:after,
  11551. .ant-pagination-jump-next:after {
  11552. content: "\2022\2022\2022";
  11553. display: block;
  11554. letter-spacing: 2px;
  11555. color: rgba(0, 0, 0, 0.25);
  11556. text-align: center;
  11557. }
  11558. .ant-pagination-jump-prev:hover:after,
  11559. .ant-pagination-jump-next:hover:after {
  11560. color: #58a3ff;
  11561. display: inline-block;
  11562. font-size: 12px;
  11563. font-size: 8px \9;
  11564. transform: scale(0.66666667) rotate(0deg);
  11565. /* IE6-IE8 */
  11566. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11567. zoom: 1;
  11568. letter-spacing: -1px;
  11569. font-family: "anticon";
  11570. }
  11571. :root .ant-pagination-jump-prev:hover:after,
  11572. :root .ant-pagination-jump-next:hover:after {
  11573. filter: none;
  11574. }
  11575. :root .ant-pagination-jump-prev:hover:after,
  11576. :root .ant-pagination-jump-next:hover:after {
  11577. font-size: 12px;
  11578. }
  11579. .ant-pagination-jump-prev:hover:after {
  11580. content: "\E620\E620";
  11581. }
  11582. .ant-pagination-jump-next:hover:after {
  11583. content: "\E61F\E61F";
  11584. }
  11585. .ant-pagination-prev,
  11586. .ant-pagination-jump-prev,
  11587. .ant-pagination-jump-next {
  11588. margin-right: 8px;
  11589. }
  11590. .ant-pagination-prev,
  11591. .ant-pagination-next,
  11592. .ant-pagination-jump-prev,
  11593. .ant-pagination-jump-next {
  11594. font-family: Arial;
  11595. cursor: pointer;
  11596. color: rgba(0, 0, 0, 0.65);
  11597. border-radius: 4px;
  11598. list-style: none;
  11599. min-width: 28px;
  11600. height: 28px;
  11601. line-height: 28px;
  11602. float: left;
  11603. text-align: center;
  11604. transition: all 0.3s ease;
  11605. display: inline-block;
  11606. }
  11607. .ant-pagination-prev,
  11608. .ant-pagination-next {
  11609. border: 1px solid #d9d9d9;
  11610. background-color: #fff;
  11611. }
  11612. .ant-pagination-prev a,
  11613. .ant-pagination-next a {
  11614. color: rgba(0, 0, 0, 0.65);
  11615. }
  11616. .ant-pagination-prev a:after,
  11617. .ant-pagination-next a:after {
  11618. display: inline-block;
  11619. font-size: 12px;
  11620. font-size: 8px \9;
  11621. transform: scale(0.66666667) rotate(0deg);
  11622. /* IE6-IE8 */
  11623. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11624. zoom: 1;
  11625. display: block;
  11626. height: 26px;
  11627. line-height: 26px;
  11628. font-family: "anticon";
  11629. text-align: center;
  11630. }
  11631. :root .ant-pagination-prev a:after,
  11632. :root .ant-pagination-next a:after {
  11633. filter: none;
  11634. }
  11635. :root .ant-pagination-prev a:after,
  11636. :root .ant-pagination-next a:after {
  11637. font-size: 12px;
  11638. }
  11639. .ant-pagination-prev:hover,
  11640. .ant-pagination-next:hover {
  11641. border-color: #58a3ff;
  11642. }
  11643. .ant-pagination-prev:hover a,
  11644. .ant-pagination-next:hover a {
  11645. color: #58a3ff;
  11646. }
  11647. .ant-pagination-prev a:after {
  11648. margin-top: -0.5px;
  11649. content: "\E620";
  11650. display: block;
  11651. }
  11652. .ant-pagination-next a:after {
  11653. content: "\E61F";
  11654. display: block;
  11655. }
  11656. .ant-pagination-disabled {
  11657. cursor: not-allowed;
  11658. }
  11659. .ant-pagination-disabled:hover {
  11660. border-color: #d9d9d9;
  11661. }
  11662. .ant-pagination-disabled:hover a {
  11663. color: rgba(0, 0, 0, 0.25);
  11664. cursor: not-allowed;
  11665. }
  11666. .ant-pagination-disabled a {
  11667. color: rgba(0, 0, 0, 0.25);
  11668. }
  11669. .ant-pagination-slash {
  11670. margin: 0 10px 0 5px;
  11671. }
  11672. .ant-pagination-options {
  11673. float: left;
  11674. margin-left: 15px;
  11675. }
  11676. .ant-pagination-options-size-changer {
  11677. float: left;
  11678. margin-right: 10px;
  11679. }
  11680. .ant-pagination-options-quick-jumper {
  11681. float: left;
  11682. height: 28px;
  11683. line-height: 28px;
  11684. }
  11685. .ant-pagination-options-quick-jumper input {
  11686. position: relative;
  11687. display: inline-block;
  11688. padding: 4px 7px;
  11689. width: 100%;
  11690. height: 28px;
  11691. cursor: text;
  11692. font-size: 12px;
  11693. line-height: 1.5;
  11694. color: rgba(0, 0, 0, 0.65);
  11695. background-color: #fff;
  11696. background-image: none;
  11697. border: 1px solid #d9d9d9;
  11698. border-radius: 4px;
  11699. transition: all .3s;
  11700. margin: 0 8px;
  11701. width: 50px;
  11702. }
  11703. .ant-pagination-options-quick-jumper input::-moz-placeholder {
  11704. color: #ccc;
  11705. opacity: 1;
  11706. }
  11707. .ant-pagination-options-quick-jumper input:-ms-input-placeholder {
  11708. color: #ccc;
  11709. }
  11710. .ant-pagination-options-quick-jumper input::-webkit-input-placeholder {
  11711. color: #ccc;
  11712. }
  11713. .ant-pagination-options-quick-jumper input:hover {
  11714. border-color: #80b9ff;
  11715. }
  11716. .ant-pagination-options-quick-jumper input:focus {
  11717. border-color: #80b9ff;
  11718. outline: 0;
  11719. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  11720. }
  11721. .ant-pagination-options-quick-jumper input[disabled] {
  11722. background-color: #f7f7f7;
  11723. opacity: 1;
  11724. cursor: not-allowed;
  11725. color: rgba(0, 0, 0, 0.25);
  11726. }
  11727. .ant-pagination-options-quick-jumper input[disabled]:hover {
  11728. border-color: #e2e2e2;
  11729. }
  11730. textarea.ant-pagination-options-quick-jumper input {
  11731. max-width: 100%;
  11732. height: auto;
  11733. vertical-align: bottom;
  11734. }
  11735. .ant-pagination-options-quick-jumper input-lg {
  11736. padding: 6px 7px;
  11737. height: 32px;
  11738. }
  11739. .ant-pagination-options-quick-jumper input-sm {
  11740. padding: 1px 7px;
  11741. height: 22px;
  11742. }
  11743. .ant-pagination-simple .ant-pagination-prev,
  11744. .ant-pagination-simple .ant-pagination-next {
  11745. border: 0;
  11746. height: 24px;
  11747. line-height: 24px;
  11748. margin: 0;
  11749. font-size: 18px;
  11750. }
  11751. .ant-pagination-simple .ant-pagination-simple-pager {
  11752. float: left;
  11753. margin-right: 8px;
  11754. }
  11755. .ant-pagination-simple .ant-pagination-simple-pager input {
  11756. margin: 0 8px;
  11757. box-sizing: border-box;
  11758. background-color: #fff;
  11759. border-radius: 4px;
  11760. border: 1px solid #d9d9d9;
  11761. outline: none;
  11762. padding: 5px 8px;
  11763. width: 30px;
  11764. height: 24px;
  11765. text-align: center;
  11766. transition: border-color 0.3s ease;
  11767. }
  11768. .ant-pagination-simple .ant-pagination-simple-pager input:hover {
  11769. border-color: #58a3ff;
  11770. }
  11771. .ant-pagination.mini .ant-pagination-total-text {
  11772. height: 20px;
  11773. line-height: 20px;
  11774. }
  11775. .ant-pagination.mini .ant-pagination-item {
  11776. border: 0;
  11777. margin: 0;
  11778. min-width: 20px;
  11779. height: 20px;
  11780. line-height: 20px;
  11781. }
  11782. .ant-pagination.mini .ant-pagination-prev,
  11783. .ant-pagination.mini .ant-pagination-next {
  11784. margin: 0;
  11785. min-width: 20px;
  11786. height: 20px;
  11787. line-height: 20px;
  11788. border: 0;
  11789. }
  11790. .ant-pagination.mini .ant-pagination-prev a:after,
  11791. .ant-pagination.mini .ant-pagination-next a:after {
  11792. height: 20px;
  11793. line-height: 20px;
  11794. }
  11795. .ant-pagination.mini .ant-pagination-jump-prev,
  11796. .ant-pagination.mini .ant-pagination-jump-next {
  11797. height: 20px;
  11798. line-height: 20px;
  11799. }
  11800. .ant-pagination.mini .ant-pagination-options {
  11801. margin-left: 8px;
  11802. }
  11803. .ant-pagination.mini .ant-pagination-options-quick-jumper {
  11804. height: 20px;
  11805. line-height: 20px;
  11806. }
  11807. .ant-pagination.mini .ant-pagination-options-quick-jumper input {
  11808. padding: 1px 7px;
  11809. height: 22px;
  11810. width: 44px;
  11811. }
  11812. @media only screen and (max-width: 1024px) {
  11813. .ant-pagination-item-after-jump-prev,
  11814. .ant-pagination-item-before-jump-next {
  11815. display: none;
  11816. }
  11817. }
  11818. .ant-transfer {
  11819. position: relative;
  11820. line-height: 1.5;
  11821. }
  11822. .ant-transfer-list {
  11823. font-size: 12px;
  11824. border: 1px solid #d9d9d9;
  11825. display: inline-block;
  11826. border-radius: 4px;
  11827. vertical-align: middle;
  11828. position: relative;
  11829. width: 180px;
  11830. height: 200px;
  11831. padding-top: 33px;
  11832. }
  11833. .ant-transfer-list-with-footer {
  11834. padding-bottom: 33px;
  11835. }
  11836. .ant-transfer-list-search-action {
  11837. color: rgba(0, 0, 0, 0.25);
  11838. position: absolute;
  11839. top: 4px;
  11840. right: 4px;
  11841. bottom: 4px;
  11842. width: 28px;
  11843. line-height: 26px;
  11844. text-align: center;
  11845. font-size: 14px;
  11846. }
  11847. .ant-transfer-list-search-action .anticon {
  11848. transition: all .3s;
  11849. font-size: 12px;
  11850. color: rgba(0, 0, 0, 0.25);
  11851. }
  11852. .ant-transfer-list-search-action .anticon:hover {
  11853. color: rgba(0, 0, 0, 0.43);
  11854. }
  11855. span.ant-transfer-list-search-action {
  11856. pointer-events: none;
  11857. }
  11858. .ant-transfer-list-header {
  11859. padding: 7px 15px;
  11860. border-radius: 4px 4px 0 0;
  11861. background: #fff;
  11862. color: rgba(0, 0, 0, 0.65);
  11863. border-bottom: 1px solid #e9e9e9;
  11864. overflow: hidden;
  11865. position: absolute;
  11866. top: 0;
  11867. left: 0;
  11868. width: 100%;
  11869. }
  11870. .ant-transfer-list-header-title {
  11871. position: absolute;
  11872. right: 15px;
  11873. }
  11874. .ant-transfer-list-body {
  11875. font-size: 12px;
  11876. position: relative;
  11877. height: 100%;
  11878. }
  11879. .ant-transfer-list-body-search-wrapper {
  11880. position: absolute;
  11881. top: 0;
  11882. left: 0;
  11883. padding: 4px;
  11884. width: 100%;
  11885. }
  11886. .ant-transfer-list-body-with-search {
  11887. padding-top: 34px;
  11888. }
  11889. .ant-transfer-list-content {
  11890. height: 100%;
  11891. overflow: auto;
  11892. }
  11893. .ant-transfer-list-content-item {
  11894. overflow: hidden;
  11895. white-space: nowrap;
  11896. text-overflow: ellipsis;
  11897. padding: 7px 15px;
  11898. min-height: 32px;
  11899. transition: all 0.3s ease;
  11900. }
  11901. .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
  11902. cursor: pointer;
  11903. background-color: #f2f8ff;
  11904. }
  11905. .ant-transfer-list-content-item-disabled {
  11906. cursor: not-allowed;
  11907. color: rgba(0, 0, 0, 0.25);
  11908. }
  11909. .ant-transfer-list-content-item-highlight-enter {
  11910. animation: transferHighlightIn 1s ease;
  11911. transition: none;
  11912. }
  11913. .ant-transfer-list-body-not-found {
  11914. padding-top: 0;
  11915. color: rgba(0, 0, 0, 0.25);
  11916. text-align: center;
  11917. display: none;
  11918. position: absolute;
  11919. top: 50%;
  11920. width: 100%;
  11921. margin-top: -10px;
  11922. }
  11923. .ant-transfer-list-content:empty + .ant-transfer-list-body-not-found {
  11924. display: block;
  11925. }
  11926. .ant-transfer-list-footer {
  11927. border-top: 1px solid #e9e9e9;
  11928. border-radius: 0 0 4px 4px;
  11929. position: absolute;
  11930. bottom: 0;
  11931. left: 0;
  11932. width: 100%;
  11933. }
  11934. .ant-transfer-operation {
  11935. display: inline-block;
  11936. overflow: hidden;
  11937. margin: 0 8px;
  11938. vertical-align: middle;
  11939. }
  11940. .ant-transfer-operation .ant-btn {
  11941. display: block;
  11942. }
  11943. .ant-transfer-operation .ant-btn:first-child {
  11944. margin-bottom: 4px;
  11945. }
  11946. .ant-transfer-operation .ant-btn .anticon {
  11947. display: inline-block;
  11948. font-size: 12px;
  11949. font-size: 10px \9;
  11950. transform: scale(0.83333333) rotate(0deg);
  11951. /* IE6-IE8 */
  11952. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11953. zoom: 1;
  11954. }
  11955. :root .ant-transfer-operation .ant-btn .anticon {
  11956. filter: none;
  11957. }
  11958. :root .ant-transfer-operation .ant-btn .anticon {
  11959. font-size: 12px;
  11960. }
  11961. @keyframes transferHighlightIn {
  11962. 0% {
  11963. background: #dfeeff;
  11964. }
  11965. 100% {
  11966. background: transparent;
  11967. }
  11968. }
  11969. .account-top {
  11970. width: 100%;
  11971. height: 84px;
  11972. border-bottom: 1px solid #eee;
  11973. background: #fff;
  11974. position: absolute;
  11975. top: 0;
  11976. left: 0;
  11977. z-index: 1;
  11978. }
  11979. .account-top .acc-top-user {
  11980. height: 34px;
  11981. line-height: 34px;
  11982. background: #f8f8f8;
  11983. }
  11984. .account-top .acc-top-user .acc-top-user-name {
  11985. margin-left: 10px;
  11986. }
  11987. .account-top .acc-top-user .acc-top-user-toindex {
  11988. float: right;
  11989. margin-right: 10px;
  11990. }
  11991. .account-top .acc-index {
  11992. height: 90px;
  11993. width: 16%;
  11994. position: absolute;
  11995. top: 34px;
  11996. left: 0;
  11997. color: #fff;
  11998. background: #4665bf;
  11999. padding: 27px 10px;
  12000. }
  12001. .account-top .acc-index .acc-index-imgbox {
  12002. width: 36px;
  12003. height: 36px;
  12004. padding-top: 36px;
  12005. position: relative;
  12006. overflow: hidden;
  12007. float: left;
  12008. }
  12009. .account-top .acc-index .acc-index-imgbox img {
  12010. position: absolute;
  12011. top: 0;
  12012. left: 0;
  12013. height: 36px;
  12014. width: auto;
  12015. }
  12016. .account-top .acc-index span {
  12017. margin-left: 10px;
  12018. font-size: 20px;
  12019. line-height: 36px;
  12020. }
  12021. .account-top .acc-index span a {
  12022. color: #fff;
  12023. }
  12024. .account-top .acc-top-tab {
  12025. margin-left: 16%;
  12026. height: 50px;
  12027. line-height: 50px;
  12028. font-size: 16px;
  12029. text-align: center;
  12030. background: #4665bf;
  12031. color: #fff;
  12032. border-left: 1px solid #344c8f;
  12033. }
  12034. .account-top .acc-top-tab .ant-row {
  12035. padding-left: 20px;
  12036. border-left: 1px solid #6b84cc;
  12037. }
  12038. .account-top .acc-top-tab .ant-row div {
  12039. margin: 0 10px;
  12040. }
  12041. .account-top .acc-top-tab .ant-row div a {
  12042. color: #fff;
  12043. }
  12044. .account-top .acc-top-tab .ant-row .active {
  12045. font-size: 18px;
  12046. }
  12047. .account-top .acc-top-tab .ant-row .active:after {
  12048. content: '';
  12049. position: absolute;
  12050. left: 0;
  12051. bottom: 0;
  12052. display: block;
  12053. width: 100%;
  12054. height: 3px;
  12055. background: #58a3ff;
  12056. }
  12057. .account-bottom {
  12058. width: 100%;
  12059. color: #d5e4f7;
  12060. background: #212831;
  12061. position: fixed;
  12062. bottom: 0;
  12063. left: 0;
  12064. z-index: 1;
  12065. text-align: center;
  12066. padding: 6px 0;
  12067. }
  12068. .manage-content {
  12069. height: 100%;
  12070. width: 100%;
  12071. padding-top: 84px;
  12072. padding-bottom: 40px;
  12073. background: #f0f0f0;
  12074. }
  12075. .manage-content .content-right {
  12076. width: 84%;
  12077. height: 100%;
  12078. float: left;
  12079. overflow-y: auto;
  12080. padding: 20px;
  12081. }
  12082. .manage-content .content-right .ant-spin-nested-loading {
  12083. height: 100%;
  12084. }
  12085. .manage-content .content-right .ant-spin-nested-loading .ant-spin-container {
  12086. height: 100%;
  12087. }
  12088. .manage-content .account-left {
  12089. width: 16%;
  12090. height: 100%;
  12091. padding-top: 40px;
  12092. float: left;
  12093. border-right: none;
  12094. }
  12095. .manage-content .account-left .ant-menu-submenu .ant-menu-submenu-title {
  12096. font-size: 16px;
  12097. }
  12098. .foster-content {
  12099. padding: 20px;
  12100. background: #fff;
  12101. }
  12102. .foster-content .content-title {
  12103. height: 32px;
  12104. margin-bottom: 10px;
  12105. }
  12106. .foster-content .content-title > span {
  12107. color: #333;
  12108. font-size: 16px;
  12109. margin-bottom: 10px;
  12110. }
  12111. .foster-content .foster-query {
  12112. margin-bottom: 10px;
  12113. }
  12114. .foster-content .foster-query > input {
  12115. width: 180px;
  12116. margin-right: 20px;
  12117. }
  12118. .foster-content .foster-query > div {
  12119. margin-right: 20px;
  12120. }
  12121. .foster-content .foster-query button {
  12122. margin-left: 20px;
  12123. }
  12124. .foster-content .foster-query > span {
  12125. margin-left: 20px;
  12126. }
  12127. .foster-content .foster-query > span > span {
  12128. margin-left: 10px;
  12129. }
  12130. .foster-desc .content-tabs {
  12131. background: #fff;
  12132. padding: 20px;
  12133. }
  12134. .foster-desc .content-tabs .foster-title {
  12135. line-height: 28px;
  12136. vertical-align: middle;
  12137. }
  12138. .foster-desc .content-tabs .foster-title > span {
  12139. margin-right: 20px;
  12140. }
  12141. .foster-desc .content-tabs .foster-title .company-name {
  12142. font-size: 18px;
  12143. color: #58a3ff;
  12144. }
  12145. .foster-desc .content-tabs .foster-title .company-number {
  12146. font-size: 16px;
  12147. color: #000;
  12148. }
  12149. .foster-desc .content-tabs .foster-title .company-time {
  12150. color: #333;
  12151. }
  12152. .foster-desc .content-tabs .foster-component {
  12153. margin-top: 10px;
  12154. }
  12155. .foster-desc .content-tabs .foster-component .ant-radio-group > label {
  12156. border-radius: 0px;
  12157. border: 1px solid #d9d9d9;
  12158. margin-right: 10px;
  12159. margin-bottom: 10px;
  12160. }
  12161. .foster-desc .content-tabs .foster-component .ant-radio-group .ant-radio-button-wrapper-checked {
  12162. border: 1px solid #58a3ff;
  12163. box-shadow: none;
  12164. }
  12165. .foster-desc .content-tabs .foster-return {
  12166. float: right;
  12167. margin-left: 20px;
  12168. background: #ea0862;
  12169. color: #fff;
  12170. border: none;
  12171. border-radius: 4px;
  12172. padding: 6px 10px;
  12173. }
  12174. .foster-desc .content-desc {
  12175. background: #fff;
  12176. margin-top: 20px;
  12177. padding: 20px;
  12178. }
  12179. .user-content {
  12180. background: #fff;
  12181. padding: 20px;
  12182. }
  12183. .user-content .content-title {
  12184. font-size: 16px;
  12185. color: #333;
  12186. }
  12187. .user-content .user-search {
  12188. margin: 20px 0;
  12189. }
  12190. .user-content .user-search input {
  12191. width: 200px;
  12192. }
  12193. .user-content .user-search > * {
  12194. margin-right: 20px;
  12195. }
  12196. .user-content .user-search p {
  12197. margin-top: 20px;
  12198. }
  12199. .user-content .user-search p button {
  12200. margin-right: 20px;
  12201. }
  12202. .admin-desc-content .ant-modal-body > div {
  12203. margin-top: 10px;
  12204. }
  12205. .admin-desc-content .ant-modal-body > div p {
  12206. margin: 6px 0;
  12207. }
  12208. .admin-desc-content .half-div {
  12209. width: 50%;
  12210. float: left;
  12211. margin-top: 10px;
  12212. }
  12213. .admin-desc-content .half-div > span {
  12214. display: inline-block;
  12215. width: 100px;
  12216. }
  12217. .admin-desc-content .half-div > input {
  12218. width: 60%;
  12219. }
  12220. .admin-desc-content .half-div > textarea {
  12221. width: 94%;
  12222. }
  12223. .ant-form .ant-form-item .ant-form-item-label {
  12224. text-align: right;
  12225. }
  12226. .user-content {
  12227. background: #fff;
  12228. padding: 20px;
  12229. }
  12230. .user-content .content-title {
  12231. font-size: 16px;
  12232. color: #333;
  12233. }
  12234. .user-content .user-search {
  12235. margin: 20px 0;
  12236. }
  12237. .user-content .user-search input {
  12238. width: 200px;
  12239. }
  12240. .user-content .user-search > * {
  12241. margin-right: 20px;
  12242. }
  12243. .user-content .user-search p {
  12244. margin-top: 20px;
  12245. }
  12246. .user-content .user-search p button {
  12247. margin-right: 20px;
  12248. }
  12249. .admin-desc-content .ant-modal-body > div {
  12250. margin-top: 0px;
  12251. margin-bottom: 10px;
  12252. }
  12253. .admin-desc-content .ant-modal-body > div p {
  12254. margin: 6px 0;
  12255. }
  12256. .admin-desc-content .half-div {
  12257. width: 50%;
  12258. float: left;
  12259. margin-top: 0px;
  12260. margin-bottom: 10px;
  12261. }
  12262. .admin-desc-content .half-div > span {
  12263. display: inline-block;
  12264. width: 100px;
  12265. }
  12266. .admin-desc-content .half-div > input {
  12267. width: 60%;
  12268. }
  12269. .admin-desc-content .half-div > textarea {
  12270. width: 94%;
  12271. }
  12272. .user-content {
  12273. background: #fff;
  12274. padding: 20px;
  12275. }
  12276. .user-content .content-title {
  12277. font-size: 16px;
  12278. color: #333;
  12279. }
  12280. .user-content .user-search {
  12281. margin: 20px 0 ;
  12282. }
  12283. .user-content .user-search input {
  12284. width: 200px;
  12285. }
  12286. .user-content .user-search > * {
  12287. margin-right: 20px;
  12288. }
  12289. .user-content .user-search p {
  12290. margin-top: 20px;
  12291. }
  12292. .user-content .user-search p button {
  12293. margin-right: 20px;
  12294. }
  12295. .admin-desc-content .ant-modal-body > div p {
  12296. margin: 6px 0;
  12297. }
  12298. .ant-form .activityCost-title,
  12299. .activityCost-form .activityCost-title {
  12300. font-size: 16px;
  12301. line-height: 30px;
  12302. margin-top: 10px;
  12303. margin-bottom: 10px;
  12304. }
  12305. .ant-form .half-item,
  12306. .activityCost-form .half-item {
  12307. width: 50%;
  12308. float: left;
  12309. }
  12310. .ant-form .activityCost-box,
  12311. .activityCost-form .activityCost-box {
  12312. background: #eee;
  12313. padding: 10px 0 ;
  12314. }
  12315. .user-content .clearfix > .orgTech-item {
  12316. width: 60%;
  12317. display: inline-block;
  12318. }
  12319. .user-content .clearfix > .orgTech-item > span {
  12320. margin-right: 10px;
  12321. }
  12322. .user-content .clearfix > .orgTech-item > input {
  12323. width: 200px;
  12324. margin-right: 10px;
  12325. }
  12326. .user-content .clearfix > .orgTech-item > textarea {
  12327. margin-top: 6px;
  12328. }
  12329. .user-content .clearfix > div {
  12330. margin-bottom: 10px;
  12331. }
  12332. .upload-box {
  12333. display: inline-block;
  12334. margin-top: 10px;
  12335. margin-bottom: 20px;
  12336. }
  12337. .set-ablt {
  12338. background: #fff;
  12339. height: 100%;
  12340. padding: 20px;
  12341. }
  12342. .set-ablt .acc-title {
  12343. color: #333;
  12344. font-size: 16px;
  12345. margin-bottom: 10px;
  12346. }
  12347. .set-ablt .acc-title span {
  12348. font-size: 12px;
  12349. color: #999;
  12350. margin-left: 10px;
  12351. }
  12352. .set-ablt .tips-title {
  12353. margin-bottom: 10px;
  12354. }
  12355. .set-ablt .ablt-tips {
  12356. margin: 20px 0;
  12357. }
  12358. .set-ablt .ablt-tips div:first-child {
  12359. border: none;
  12360. background: #fff;
  12361. padding: 0;
  12362. }
  12363. .set-ablt .set-submit {
  12364. width: 120px;
  12365. border-radius: 4px;
  12366. }
  12367. .set-ablt .acc-area {
  12368. width: 40%;
  12369. float: left;
  12370. margin-bottom: 20px;
  12371. margin-right: 20px;
  12372. }
  12373. .set-ablt .acc-area .ant-input {
  12374. margin-top: 10px;
  12375. }
  12376. .hrSituation-form {
  12377. width: 100%;
  12378. }
  12379. .hrSituation-form .ant-form-item {
  12380. float: left;
  12381. }
  12382. .hrSituation-form .ant-form-item .ant-input-number {
  12383. width: 80%;
  12384. }
  12385. .hrSituation-form .half-item {
  12386. width: 19%;
  12387. }
  12388. .hrSituation-form .hrSituation-title {
  12389. font-size: 16px;
  12390. }
  12391. .hrSituation-form .hrSituation-span {
  12392. float: left;
  12393. line-height: 32px;
  12394. width: 126px;
  12395. text-align: right;
  12396. }
  12397. .hrSituation-form .hrSituation-roster {
  12398. margin-top: 10px;
  12399. margin-bottom: 20px;
  12400. width: 400px;
  12401. }