set.css 254 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383
  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-input-search-icon {
  3571. cursor: pointer;
  3572. transition: all .3s;
  3573. font-size: 14px;
  3574. }
  3575. .ant-input-search-icon:hover {
  3576. color: #58a3ff;
  3577. }
  3578. .ant-search-input-wrapper {
  3579. display: inline-block;
  3580. vertical-align: middle;
  3581. }
  3582. .ant-search-input.ant-input-group .ant-input:first-child,
  3583. .ant-search-input.ant-input-group .ant-select:first-child {
  3584. border-radius: 4px;
  3585. position: absolute;
  3586. top: -1px;
  3587. width: 100%;
  3588. }
  3589. .ant-search-input.ant-input-group .ant-input:first-child {
  3590. padding-right: 36px;
  3591. }
  3592. .ant-search-input .ant-search-btn {
  3593. color: rgba(0, 0, 0, 0.65);
  3594. background-color: #fff;
  3595. border-color: #d9d9d9;
  3596. border-radius: 0 3px 3px 0;
  3597. left: -1px;
  3598. position: relative;
  3599. border-width: 0 0 0 1px;
  3600. z-index: 2;
  3601. padding-left: 8px;
  3602. padding-right: 8px;
  3603. }
  3604. .ant-search-input .ant-search-btn > a:only-child {
  3605. color: currentColor;
  3606. }
  3607. .ant-search-input .ant-search-btn > a:only-child:after {
  3608. content: '';
  3609. position: absolute;
  3610. top: 0;
  3611. left: 0;
  3612. bottom: 0;
  3613. right: 0;
  3614. background: transparent;
  3615. }
  3616. .ant-search-input .ant-search-btn:hover,
  3617. .ant-search-input .ant-search-btn:focus {
  3618. color: #80b9ff;
  3619. background-color: #fff;
  3620. border-color: #80b9ff;
  3621. }
  3622. .ant-search-input .ant-search-btn:hover > a:only-child,
  3623. .ant-search-input .ant-search-btn:focus > a:only-child {
  3624. color: currentColor;
  3625. }
  3626. .ant-search-input .ant-search-btn:hover > a:only-child:after,
  3627. .ant-search-input .ant-search-btn:focus > a:only-child:after {
  3628. content: '';
  3629. position: absolute;
  3630. top: 0;
  3631. left: 0;
  3632. bottom: 0;
  3633. right: 0;
  3634. background: transparent;
  3635. }
  3636. .ant-search-input .ant-search-btn:active,
  3637. .ant-search-input .ant-search-btn.active {
  3638. color: #4386e7;
  3639. background-color: #fff;
  3640. border-color: #4386e7;
  3641. }
  3642. .ant-search-input .ant-search-btn:active > a:only-child,
  3643. .ant-search-input .ant-search-btn.active > a:only-child {
  3644. color: currentColor;
  3645. }
  3646. .ant-search-input .ant-search-btn:active > a:only-child:after,
  3647. .ant-search-input .ant-search-btn.active > a:only-child:after {
  3648. content: '';
  3649. position: absolute;
  3650. top: 0;
  3651. left: 0;
  3652. bottom: 0;
  3653. right: 0;
  3654. background: transparent;
  3655. }
  3656. .ant-search-input .ant-search-btn.disabled,
  3657. .ant-search-input .ant-search-btn[disabled],
  3658. .ant-search-input .ant-search-btn.disabled:hover,
  3659. .ant-search-input .ant-search-btn[disabled]:hover,
  3660. .ant-search-input .ant-search-btn.disabled:focus,
  3661. .ant-search-input .ant-search-btn[disabled]:focus,
  3662. .ant-search-input .ant-search-btn.disabled:active,
  3663. .ant-search-input .ant-search-btn[disabled]:active,
  3664. .ant-search-input .ant-search-btn.disabled.active,
  3665. .ant-search-input .ant-search-btn[disabled].active {
  3666. color: rgba(0, 0, 0, 0.25);
  3667. background-color: #f7f7f7;
  3668. border-color: #d9d9d9;
  3669. }
  3670. .ant-search-input .ant-search-btn.disabled > a:only-child,
  3671. .ant-search-input .ant-search-btn[disabled] > a:only-child,
  3672. .ant-search-input .ant-search-btn.disabled:hover > a:only-child,
  3673. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child,
  3674. .ant-search-input .ant-search-btn.disabled:focus > a:only-child,
  3675. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child,
  3676. .ant-search-input .ant-search-btn.disabled:active > a:only-child,
  3677. .ant-search-input .ant-search-btn[disabled]:active > a:only-child,
  3678. .ant-search-input .ant-search-btn.disabled.active > a:only-child,
  3679. .ant-search-input .ant-search-btn[disabled].active > a:only-child {
  3680. color: currentColor;
  3681. }
  3682. .ant-search-input .ant-search-btn.disabled > a:only-child:after,
  3683. .ant-search-input .ant-search-btn[disabled] > a:only-child:after,
  3684. .ant-search-input .ant-search-btn.disabled:hover > a:only-child:after,
  3685. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child:after,
  3686. .ant-search-input .ant-search-btn.disabled:focus > a:only-child:after,
  3687. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child:after,
  3688. .ant-search-input .ant-search-btn.disabled:active > a:only-child:after,
  3689. .ant-search-input .ant-search-btn[disabled]:active > a:only-child:after,
  3690. .ant-search-input .ant-search-btn.disabled.active > a:only-child:after,
  3691. .ant-search-input .ant-search-btn[disabled].active > a:only-child:after {
  3692. content: '';
  3693. position: absolute;
  3694. top: 0;
  3695. left: 0;
  3696. bottom: 0;
  3697. right: 0;
  3698. background: transparent;
  3699. }
  3700. .ant-search-input .ant-search-btn:hover,
  3701. .ant-search-input .ant-search-btn:focus,
  3702. .ant-search-input .ant-search-btn:active,
  3703. .ant-search-input .ant-search-btn.active {
  3704. background: #fff;
  3705. }
  3706. .ant-search-input .ant-search-btn:hover {
  3707. border-color: #d9d9d9;
  3708. }
  3709. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty,
  3710. .ant-search-input:hover .ant-search-btn-noempty {
  3711. color: #fff;
  3712. background-color: #58a3ff;
  3713. border-color: #58a3ff;
  3714. }
  3715. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child,
  3716. .ant-search-input:hover .ant-search-btn-noempty > a:only-child {
  3717. color: currentColor;
  3718. }
  3719. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child:after,
  3720. .ant-search-input:hover .ant-search-btn-noempty > a:only-child:after {
  3721. content: '';
  3722. position: absolute;
  3723. top: 0;
  3724. left: 0;
  3725. bottom: 0;
  3726. right: 0;
  3727. background: transparent;
  3728. }
  3729. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover,
  3730. .ant-search-input:hover .ant-search-btn-noempty:hover,
  3731. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus,
  3732. .ant-search-input:hover .ant-search-btn-noempty:focus {
  3733. color: #fff;
  3734. background-color: #80b9ff;
  3735. border-color: #80b9ff;
  3736. }
  3737. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child,
  3738. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child,
  3739. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child,
  3740. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child {
  3741. color: currentColor;
  3742. }
  3743. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child:after,
  3744. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child:after,
  3745. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child:after,
  3746. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child:after {
  3747. content: '';
  3748. position: absolute;
  3749. top: 0;
  3750. left: 0;
  3751. bottom: 0;
  3752. right: 0;
  3753. background: transparent;
  3754. }
  3755. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active,
  3756. .ant-search-input:hover .ant-search-btn-noempty:active,
  3757. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active,
  3758. .ant-search-input:hover .ant-search-btn-noempty.active {
  3759. color: #fff;
  3760. background-color: #4386e7;
  3761. border-color: #4386e7;
  3762. }
  3763. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child,
  3764. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child,
  3765. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child,
  3766. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child {
  3767. color: currentColor;
  3768. }
  3769. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child:after,
  3770. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child:after,
  3771. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child:after,
  3772. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child:after {
  3773. content: '';
  3774. position: absolute;
  3775. top: 0;
  3776. left: 0;
  3777. bottom: 0;
  3778. right: 0;
  3779. background: transparent;
  3780. }
  3781. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled,
  3782. .ant-search-input:hover .ant-search-btn-noempty.disabled,
  3783. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled],
  3784. .ant-search-input:hover .ant-search-btn-noempty[disabled],
  3785. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover,
  3786. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover,
  3787. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover,
  3788. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover,
  3789. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus,
  3790. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus,
  3791. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus,
  3792. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus,
  3793. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active,
  3794. .ant-search-input:hover .ant-search-btn-noempty.disabled:active,
  3795. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active,
  3796. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active,
  3797. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active,
  3798. .ant-search-input:hover .ant-search-btn-noempty.disabled.active,
  3799. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active,
  3800. .ant-search-input:hover .ant-search-btn-noempty[disabled].active {
  3801. color: rgba(0, 0, 0, 0.25);
  3802. background-color: #f7f7f7;
  3803. border-color: #d9d9d9;
  3804. }
  3805. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child,
  3806. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child,
  3807. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child,
  3808. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child,
  3809. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child,
  3810. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child,
  3811. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3812. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3813. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child,
  3814. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child,
  3815. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3816. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3817. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child,
  3818. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child,
  3819. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child,
  3820. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child,
  3821. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child,
  3822. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child,
  3823. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child,
  3824. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child {
  3825. color: currentColor;
  3826. }
  3827. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child:after,
  3828. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child:after,
  3829. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child:after,
  3830. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child:after,
  3831. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3832. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3833. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3834. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3835. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3836. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3837. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3838. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3839. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3840. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3841. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3842. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3843. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3844. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3845. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child:after,
  3846. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child:after {
  3847. content: '';
  3848. position: absolute;
  3849. top: 0;
  3850. left: 0;
  3851. bottom: 0;
  3852. right: 0;
  3853. background: transparent;
  3854. }
  3855. .ant-search-input .ant-select-combobox .ant-select-selection__rendered {
  3856. margin-right: 29px;
  3857. }
  3858. .ant-input {
  3859. position: relative;
  3860. display: inline-block;
  3861. padding: 4px 7px;
  3862. width: 100%;
  3863. height: 28px;
  3864. cursor: text;
  3865. font-size: 12px;
  3866. line-height: 1.5;
  3867. color: rgba(0, 0, 0, 0.65);
  3868. background-color: #fff;
  3869. background-image: none;
  3870. border: 1px solid #d9d9d9;
  3871. border-radius: 4px;
  3872. transition: all .3s;
  3873. }
  3874. .ant-input::-moz-placeholder {
  3875. color: #ccc;
  3876. opacity: 1;
  3877. }
  3878. .ant-input:-ms-input-placeholder {
  3879. color: #ccc;
  3880. }
  3881. .ant-input::-webkit-input-placeholder {
  3882. color: #ccc;
  3883. }
  3884. .ant-input:hover {
  3885. border-color: #80b9ff;
  3886. }
  3887. .ant-input:focus {
  3888. border-color: #80b9ff;
  3889. outline: 0;
  3890. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  3891. }
  3892. .ant-input[disabled] {
  3893. background-color: #f7f7f7;
  3894. opacity: 1;
  3895. cursor: not-allowed;
  3896. color: rgba(0, 0, 0, 0.25);
  3897. }
  3898. .ant-input[disabled]:hover {
  3899. border-color: #e2e2e2;
  3900. }
  3901. textarea.ant-input {
  3902. max-width: 100%;
  3903. height: auto;
  3904. vertical-align: bottom;
  3905. }
  3906. .ant-input-lg {
  3907. padding: 6px 7px;
  3908. height: 32px;
  3909. }
  3910. .ant-input-sm {
  3911. padding: 1px 7px;
  3912. height: 22px;
  3913. }
  3914. .ant-input-group {
  3915. position: relative;
  3916. display: table;
  3917. border-collapse: separate;
  3918. border-spacing: 0;
  3919. width: 100%;
  3920. }
  3921. .ant-input-group[class*="col-"] {
  3922. float: none;
  3923. padding-left: 0;
  3924. padding-right: 0;
  3925. }
  3926. .ant-input-group > [class*="col-"] {
  3927. padding-right: 8px;
  3928. }
  3929. .ant-input-group-addon,
  3930. .ant-input-group-wrap,
  3931. .ant-input-group > .ant-input {
  3932. display: table-cell;
  3933. }
  3934. .ant-input-group-addon:not(:first-child):not(:last-child),
  3935. .ant-input-group-wrap:not(:first-child):not(:last-child),
  3936. .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  3937. border-radius: 0;
  3938. }
  3939. .ant-input-group-addon,
  3940. .ant-input-group-wrap {
  3941. width: 1px;
  3942. white-space: nowrap;
  3943. vertical-align: middle;
  3944. }
  3945. .ant-input-group-wrap > * {
  3946. display: block !important;
  3947. }
  3948. .ant-input-group .ant-input {
  3949. position: relative;
  3950. z-index: 2;
  3951. float: left;
  3952. width: 100%;
  3953. margin-bottom: 0;
  3954. }
  3955. .ant-input-group-addon {
  3956. padding: 4px 7px;
  3957. font-size: 12px;
  3958. font-weight: normal;
  3959. line-height: 1;
  3960. color: rgba(0, 0, 0, 0.65);
  3961. text-align: center;
  3962. background-color: #eee;
  3963. border: 1px solid #d9d9d9;
  3964. border-radius: 4px;
  3965. position: relative;
  3966. transition: all .3s;
  3967. }
  3968. .ant-input-group-addon .ant-select {
  3969. margin: -5px -7px;
  3970. }
  3971. .ant-input-group-addon .ant-select .ant-select-selection {
  3972. background-color: inherit;
  3973. margin: -1px;
  3974. border: 1px solid transparent;
  3975. box-shadow: none;
  3976. }
  3977. .ant-input-group-addon .ant-select-open .ant-select-selection,
  3978. .ant-input-group-addon .ant-select-focused .ant-select-selection {
  3979. color: #58a3ff;
  3980. }
  3981. .ant-input-group-addon > i:only-child:after {
  3982. position: absolute;
  3983. content: '';
  3984. top: 0;
  3985. left: 0;
  3986. right: 0;
  3987. bottom: 0;
  3988. }
  3989. .ant-input-group > span > .ant-input:first-child,
  3990. .ant-input-group > .ant-input:first-child,
  3991. .ant-input-group-addon:first-child {
  3992. border-bottom-right-radius: 0;
  3993. border-top-right-radius: 0;
  3994. }
  3995. .ant-input-group > span > .ant-input:first-child .ant-select .ant-select-selection,
  3996. .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
  3997. .ant-input-group-addon:first-child .ant-select .ant-select-selection {
  3998. border-bottom-right-radius: 0;
  3999. border-top-right-radius: 0;
  4000. }
  4001. .ant-input-group > .ant-input-preSuffix-wrapper:not(:first-child) .ant-input {
  4002. border-bottom-left-radius: 0;
  4003. border-top-left-radius: 0;
  4004. }
  4005. .ant-input-group > .ant-input-preSuffix-wrapper:not(:last-child) .ant-input {
  4006. border-bottom-right-radius: 0;
  4007. border-top-right-radius: 0;
  4008. }
  4009. .ant-input-group-addon:first-child {
  4010. border-right: 0;
  4011. }
  4012. .ant-input-group-addon:last-child {
  4013. border-left: 0;
  4014. }
  4015. .ant-input-group > .ant-input:last-child,
  4016. .ant-input-group-addon:last-child {
  4017. border-bottom-left-radius: 0;
  4018. border-top-left-radius: 0;
  4019. }
  4020. .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
  4021. .ant-input-group-addon:last-child .ant-select .ant-select-selection {
  4022. border-bottom-left-radius: 0;
  4023. border-top-left-radius: 0;
  4024. }
  4025. .ant-input-group-lg .ant-input,
  4026. .ant-input-group-lg > .ant-input-group-addon {
  4027. padding: 6px 7px;
  4028. height: 32px;
  4029. }
  4030. .ant-input-group-sm .ant-input,
  4031. .ant-input-group-sm > .ant-input-group-addon {
  4032. padding: 1px 7px;
  4033. height: 22px;
  4034. }
  4035. .ant-input-group .ant-input-preSuffix-wrapper {
  4036. display: table-cell;
  4037. width: 100%;
  4038. float: left;
  4039. }
  4040. .ant-input-group.ant-input-group-compact > * {
  4041. border-radius: 0;
  4042. border-right-width: 0;
  4043. vertical-align: middle;
  4044. }
  4045. .ant-input-group.ant-input-group-compact .ant-input {
  4046. float: none;
  4047. z-index: auto;
  4048. }
  4049. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection,
  4050. .ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input {
  4051. border-radius: 0;
  4052. border-right-width: 0;
  4053. }
  4054. .ant-input-group.ant-input-group-compact > *:first-child,
  4055. .ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection,
  4056. .ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input {
  4057. border-top-left-radius: 4px;
  4058. border-bottom-left-radius: 4px;
  4059. }
  4060. .ant-input-group.ant-input-group-compact > *:last-child,
  4061. .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection,
  4062. .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input {
  4063. border-top-right-radius: 4px;
  4064. border-bottom-right-radius: 4px;
  4065. border-right-width: 1px;
  4066. }
  4067. .ant-input-preSuffix-wrapper {
  4068. position: relative;
  4069. display: inline-block;
  4070. width: 100%;
  4071. }
  4072. .ant-input-preSuffix-wrapper .ant-input {
  4073. z-index: 1;
  4074. }
  4075. .ant-input-preSuffix-wrapper:hover .ant-input {
  4076. border-color: #80b9ff;
  4077. }
  4078. .ant-input-preSuffix-wrapper .ant-input-prefix,
  4079. .ant-input-preSuffix-wrapper .ant-input-suffix {
  4080. position: absolute;
  4081. top: 50%;
  4082. transform: translateY(-50%);
  4083. z-index: 2;
  4084. line-height: 1.2;
  4085. }
  4086. .ant-input-preSuffix-wrapper .ant-input-prefix {
  4087. left: 7px;
  4088. }
  4089. .ant-input-preSuffix-wrapper .ant-input-suffix {
  4090. right: 7px;
  4091. }
  4092. .ant-input-preSuffix-wrapper .ant-input:not(:first-child) {
  4093. padding-left: 24px;
  4094. }
  4095. .ant-input-preSuffix-wrapper .ant-input:not(:last-child) {
  4096. padding-right: 24px;
  4097. }
  4098. .ant-message {
  4099. font-size: 12px;
  4100. position: fixed;
  4101. z-index: 1010;
  4102. width: 100%;
  4103. top: 16px;
  4104. left: 0;
  4105. pointer-events: none;
  4106. }
  4107. .ant-message-notice {
  4108. padding: 8px;
  4109. text-align: center;
  4110. }
  4111. .ant-message-notice:first-child {
  4112. margin-top: -8px;
  4113. }
  4114. .ant-message-notice-content {
  4115. padding: 8px 16px;
  4116. border-radius: 4px;
  4117. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  4118. background: #fff;
  4119. display: inline-block;
  4120. pointer-events: all;
  4121. }
  4122. .ant-message-success .anticon {
  4123. color: #00a854;
  4124. }
  4125. .ant-message-error .anticon {
  4126. color: #f04134;
  4127. }
  4128. .ant-message-warning .anticon {
  4129. color: #ffbf00;
  4130. }
  4131. .ant-message-info .anticon,
  4132. .ant-message-loading .anticon {
  4133. color: #58a3ff;
  4134. }
  4135. .ant-message .anticon {
  4136. margin-right: 8px;
  4137. font-size: 14px;
  4138. top: 1px;
  4139. position: relative;
  4140. }
  4141. .ant-message-notice.move-up-leave.move-up-leave-active {
  4142. animation-name: MessageMoveOut;
  4143. overflow: hidden;
  4144. animation-duration: .3s;
  4145. }
  4146. @keyframes MessageMoveOut {
  4147. 0% {
  4148. opacity: 1;
  4149. max-height: 150px;
  4150. padding: 8px;
  4151. }
  4152. 100% {
  4153. opacity: 0;
  4154. max-height: 0;
  4155. padding: 0;
  4156. }
  4157. }
  4158. legend {
  4159. display: block;
  4160. width: 100%;
  4161. padding: 0;
  4162. margin-bottom: 20px;
  4163. font-size: 14px;
  4164. line-height: inherit;
  4165. color: rgba(0, 0, 0, 0.43);
  4166. border: 0;
  4167. border-bottom: 1px solid #d9d9d9;
  4168. }
  4169. label {
  4170. font-size: 12px;
  4171. }
  4172. input[type="search"] {
  4173. box-sizing: border-box;
  4174. }
  4175. input[type="radio"],
  4176. input[type="checkbox"] {
  4177. line-height: normal;
  4178. }
  4179. input[type="file"] {
  4180. display: block;
  4181. }
  4182. input[type="range"] {
  4183. display: block;
  4184. width: 100%;
  4185. }
  4186. select[multiple],
  4187. select[size] {
  4188. height: auto;
  4189. }
  4190. input[type="file"]:focus,
  4191. input[type="radio"]:focus,
  4192. input[type="checkbox"]:focus {
  4193. outline: thin dotted;
  4194. outline: 5px auto -webkit-focus-ring-color;
  4195. outline-offset: -2px;
  4196. }
  4197. output {
  4198. display: block;
  4199. padding-top: 15px;
  4200. font-size: 12px;
  4201. line-height: 1.5;
  4202. color: rgba(0, 0, 0, 0.65);
  4203. }
  4204. label {
  4205. position: relative;
  4206. }
  4207. label > .anticon {
  4208. vertical-align: top;
  4209. font-size: 12px;
  4210. }
  4211. .ant-form-item-required:before {
  4212. display: inline-block;
  4213. margin-right: 4px;
  4214. content: "*";
  4215. font-family: SimSun;
  4216. line-height: 1;
  4217. font-size: 12px;
  4218. color: #f04134;
  4219. }
  4220. .ant-form-hide-required-mark .ant-form-item-required:before {
  4221. display: none;
  4222. }
  4223. input[type="radio"][disabled],
  4224. input[type="checkbox"][disabled],
  4225. input[type="radio"].disabled,
  4226. input[type="checkbox"].disabled {
  4227. cursor: not-allowed;
  4228. }
  4229. .ant-radio-inline.disabled,
  4230. .ant-radio-vertical.disabled,
  4231. .ant-checkbox-inline.disabled,
  4232. .ant-checkbox-vertical.disabled {
  4233. cursor: not-allowed;
  4234. }
  4235. .ant-radio.disabled label,
  4236. .ant-checkbox.disabled label {
  4237. cursor: not-allowed;
  4238. }
  4239. .ant-form-item {
  4240. font-size: 12px;
  4241. margin-bottom: 24px;
  4242. color: rgba(0, 0, 0, 0.65);
  4243. vertical-align: top;
  4244. }
  4245. .ant-form-item > .ant-form-item,
  4246. .ant-form-item :not(.ant-form) > .ant-form-item {
  4247. margin-bottom: -24px;
  4248. }
  4249. .ant-form-item-control {
  4250. line-height: 32px;
  4251. position: relative;
  4252. zoom: 1;
  4253. }
  4254. .ant-form-item-control:before,
  4255. .ant-form-item-control:after {
  4256. content: " ";
  4257. display: table;
  4258. }
  4259. .ant-form-item-control:after {
  4260. clear: both;
  4261. visibility: hidden;
  4262. font-size: 0;
  4263. height: 0;
  4264. }
  4265. .ant-form-item-with-help {
  4266. margin-bottom: 6px;
  4267. }
  4268. .ant-form-item-label {
  4269. text-align: right;
  4270. vertical-align: middle;
  4271. line-height: 32px;
  4272. display: inline-block;
  4273. overflow: hidden;
  4274. text-overflow: ellipsis;
  4275. white-space: nowrap;
  4276. }
  4277. .ant-form-item-label label {
  4278. color: rgba(0, 0, 0, 0.65);
  4279. }
  4280. .ant-form-item-label label:after {
  4281. content: ":";
  4282. margin: 0 8px 0 2px;
  4283. position: relative;
  4284. top: -0.5px;
  4285. }
  4286. .ant-form-item .ant-switch {
  4287. margin: 4px 0;
  4288. }
  4289. .ant-form-item-no-colon .ant-form-item-label label:after {
  4290. content: " ";
  4291. }
  4292. .ant-form-explain {
  4293. line-height: 1.5;
  4294. }
  4295. .ant-form-explain,
  4296. .ant-form-extra {
  4297. color: rgba(0, 0, 0, 0.43);
  4298. }
  4299. .ant-form-text {
  4300. display: inline-block;
  4301. padding-right: 8px;
  4302. }
  4303. .ant-form-split {
  4304. display: block;
  4305. text-align: center;
  4306. }
  4307. form .has-feedback .ant-input {
  4308. padding-right: 24px;
  4309. }
  4310. form .has-feedback .ant-select-arrow,
  4311. form .has-feedback .ant-select-selection__clear {
  4312. right: 28px;
  4313. }
  4314. form .has-feedback .ant-select-selection-selected-value {
  4315. padding-right: 42px;
  4316. }
  4317. form .has-feedback .ant-cascader-picker-arrow {
  4318. padding-right: 36px;
  4319. }
  4320. form .has-feedback .ant-cascader-picker-clear {
  4321. right: 28px;
  4322. }
  4323. form .has-feedback .ant-calendar-picker-icon,
  4324. form .has-feedback .ant-calendar-picker-clear {
  4325. right: 28px;
  4326. }
  4327. form textarea.ant-input {
  4328. height: auto;
  4329. }
  4330. form .ant-upload {
  4331. background: transparent;
  4332. }
  4333. form input[type="radio"],
  4334. form input[type="checkbox"] {
  4335. width: 14px;
  4336. height: 14px;
  4337. }
  4338. form .ant-radio-inline,
  4339. form .ant-checkbox-inline {
  4340. display: inline-block;
  4341. vertical-align: middle;
  4342. font-weight: normal;
  4343. cursor: pointer;
  4344. margin-left: 8px;
  4345. }
  4346. form .ant-radio-inline:first-child,
  4347. form .ant-checkbox-inline:first-child {
  4348. margin-left: 0;
  4349. }
  4350. form .ant-checkbox-vertical,
  4351. form .ant-radio-vertical {
  4352. display: block;
  4353. }
  4354. form .ant-checkbox-vertical + .ant-checkbox-vertical,
  4355. form .ant-radio-vertical + .ant-radio-vertical {
  4356. margin-left: 0;
  4357. }
  4358. form .ant-input-number {
  4359. margin-top: -1px;
  4360. margin-right: 8px;
  4361. }
  4362. form .ant-select,
  4363. form .ant-cascader-picker {
  4364. width: 100%;
  4365. }
  4366. .ant-input-group-wrap .ant-select-selection {
  4367. border-bottom-left-radius: 0;
  4368. border-top-left-radius: 0;
  4369. }
  4370. .ant-input-group-wrap .ant-select-selection:hover {
  4371. border-color: #d9d9d9;
  4372. }
  4373. .ant-input-group-wrap .ant-select-selection--single {
  4374. margin-left: -1px;
  4375. height: 32px;
  4376. background-color: #eee;
  4377. }
  4378. .ant-input-group-wrap .ant-select-selection--single .ant-select-selection__rendered {
  4379. padding-left: 8px;
  4380. padding-right: 25px;
  4381. line-height: 30px;
  4382. }
  4383. .ant-input-group-wrap .ant-select-open .ant-select-selection {
  4384. border-color: #d9d9d9;
  4385. box-shadow: none;
  4386. }
  4387. .ant-form-vertical .ant-form-item-label,
  4388. .ant-col-24.ant-form-item-label {
  4389. padding: 0 0 8px;
  4390. display: block;
  4391. text-align: left;
  4392. }
  4393. .ant-form-vertical .ant-form-item-label label:after,
  4394. .ant-col-24.ant-form-item-label label:after {
  4395. content: '';
  4396. }
  4397. .ant-form-inline .ant-form-item {
  4398. display: inline-block;
  4399. margin-right: 10px;
  4400. margin-bottom: 0;
  4401. }
  4402. .ant-form-inline .ant-form-item-with-help {
  4403. margin-bottom: 24px;
  4404. }
  4405. .ant-form-inline .ant-form-item > div {
  4406. display: inline-block;
  4407. vertical-align: middle;
  4408. }
  4409. .ant-form-inline .ant-form-text {
  4410. display: inline-block;
  4411. }
  4412. .ant-form-inline .has-feedback {
  4413. display: inline-block;
  4414. }
  4415. .ant-form-inline .ant-form-explain {
  4416. position: absolute;
  4417. }
  4418. .has-success.has-feedback:after,
  4419. .has-warning.has-feedback:after,
  4420. .has-error.has-feedback:after,
  4421. .is-validating.has-feedback:after {
  4422. position: absolute;
  4423. top: 0;
  4424. right: 0;
  4425. visibility: visible;
  4426. pointer-events: none;
  4427. width: 32px;
  4428. height: 32px;
  4429. line-height: 32px;
  4430. text-align: center;
  4431. font-size: 14px;
  4432. animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  4433. font-family: 'anticon';
  4434. text-rendering: optimizeLegibility;
  4435. -webkit-font-smoothing: antialiased;
  4436. -moz-osx-font-smoothing: grayscale;
  4437. content: "";
  4438. }
  4439. .has-success.has-feedback:after {
  4440. animation-name: diffZoomIn1 !important;
  4441. }
  4442. .has-error.has-feedback:after {
  4443. animation-name: diffZoomIn2 !important;
  4444. }
  4445. .has-warning.has-feedback:after {
  4446. animation-name: diffZoomIn3 !important;
  4447. }
  4448. .has-success.has-feedback:after {
  4449. content: '\E630';
  4450. color: #00a854;
  4451. }
  4452. .has-warning .ant-form-explain,
  4453. .has-warning .ant-form-split {
  4454. color: #ffbf00;
  4455. }
  4456. .has-warning .ant-input,
  4457. .has-warning .ant-input:hover {
  4458. border-color: #ffbf00;
  4459. }
  4460. .has-warning .ant-input:focus {
  4461. border-color: #ffce3d;
  4462. outline: 0;
  4463. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4464. }
  4465. .has-warning .ant-input:not([disabled]):hover {
  4466. border-color: #ffbf00;
  4467. }
  4468. .has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
  4469. border-color: #ffce3d;
  4470. outline: 0;
  4471. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4472. }
  4473. .has-warning .ant-input-group-addon {
  4474. color: #ffbf00;
  4475. border-color: #ffbf00;
  4476. background-color: #fff;
  4477. }
  4478. .has-warning .has-feedback {
  4479. color: #ffbf00;
  4480. }
  4481. .has-warning.has-feedback:after {
  4482. content: '\E62C';
  4483. color: #ffbf00;
  4484. }
  4485. .has-warning .ant-select-selection {
  4486. border-color: #ffbf00;
  4487. }
  4488. .has-warning .ant-select-open .ant-select-selection,
  4489. .has-warning .ant-select-focused .ant-select-selection {
  4490. border-color: #ffce3d;
  4491. outline: 0;
  4492. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4493. }
  4494. .has-warning .ant-calendar-picker-icon:after,
  4495. .has-warning .ant-picker-icon:after,
  4496. .has-warning .ant-select-arrow,
  4497. .has-warning .ant-cascader-picker-arrow {
  4498. color: #ffbf00;
  4499. }
  4500. .has-warning .ant-input-number,
  4501. .has-warning .ant-time-picker-input {
  4502. border-color: #ffbf00;
  4503. }
  4504. .has-warning .ant-input-number-focused,
  4505. .has-warning .ant-time-picker-input-focused,
  4506. .has-warning .ant-input-number:focus,
  4507. .has-warning .ant-time-picker-input:focus {
  4508. border-color: #ffce3d;
  4509. outline: 0;
  4510. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4511. }
  4512. .has-warning .ant-input-number:not([disabled]):hover,
  4513. .has-warning .ant-time-picker-input:not([disabled]):hover {
  4514. border-color: #ffbf00;
  4515. }
  4516. .has-error .ant-form-explain,
  4517. .has-error .ant-form-split {
  4518. color: #f04134;
  4519. }
  4520. .has-error .ant-input,
  4521. .has-error .ant-input:hover {
  4522. border-color: #f04134;
  4523. }
  4524. .has-error .ant-input:focus {
  4525. border-color: #f46e65;
  4526. outline: 0;
  4527. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4528. }
  4529. .has-error .ant-input:not([disabled]):hover {
  4530. border-color: #f04134;
  4531. }
  4532. .has-error .ant-calendar-picker-open .ant-calendar-picker-input {
  4533. border-color: #f46e65;
  4534. outline: 0;
  4535. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4536. }
  4537. .has-error .ant-input-group-addon {
  4538. color: #f04134;
  4539. border-color: #f04134;
  4540. background-color: #fff;
  4541. }
  4542. .has-error .has-feedback {
  4543. color: #f04134;
  4544. }
  4545. .has-error.has-feedback:after {
  4546. content: '\E62E';
  4547. color: #f04134;
  4548. }
  4549. .has-error .ant-select-selection {
  4550. border-color: #f04134;
  4551. }
  4552. .has-error .ant-select-open .ant-select-selection,
  4553. .has-error .ant-select-focused .ant-select-selection {
  4554. border-color: #f46e65;
  4555. outline: 0;
  4556. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4557. }
  4558. .has-error .ant-calendar-picker-icon:after,
  4559. .has-error .ant-picker-icon:after,
  4560. .has-error .ant-select-arrow,
  4561. .has-error .ant-cascader-picker-arrow {
  4562. color: #f04134;
  4563. }
  4564. .has-error .ant-input-number,
  4565. .has-error .ant-time-picker-input {
  4566. border-color: #f04134;
  4567. }
  4568. .has-error .ant-input-number-focused,
  4569. .has-error .ant-time-picker-input-focused,
  4570. .has-error .ant-input-number:focus,
  4571. .has-error .ant-time-picker-input:focus {
  4572. border-color: #f46e65;
  4573. outline: 0;
  4574. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4575. }
  4576. .has-error .ant-input-number:not([disabled]):hover,
  4577. .has-error .ant-time-picker-input:not([disabled]):hover {
  4578. border-color: #f04134;
  4579. }
  4580. .has-error .ant-mention-wrapper .ant-mention-editor,
  4581. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover {
  4582. border-color: #f04134;
  4583. }
  4584. .has-error .ant-mention-wrapper.active .ant-mention-editor,
  4585. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
  4586. border-color: #f46e65;
  4587. outline: 0;
  4588. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4589. }
  4590. .is-validating.has-feedback:after {
  4591. display: inline-block;
  4592. animation: loadingCircle 1s infinite linear;
  4593. content: "\E64D";
  4594. color: #58a3ff;
  4595. }
  4596. .ant-advanced-search-form .ant-form-item {
  4597. margin-bottom: 16px;
  4598. }
  4599. .ant-advanced-search-form .ant-input,
  4600. .ant-advanced-search-form .ant-input-group .ant-input,
  4601. .ant-advanced-search-form .ant-input-group .ant-input-group-addon {
  4602. height: 28px;
  4603. }
  4604. @keyframes diffZoomIn1 {
  4605. 0% {
  4606. transform: scale(0);
  4607. }
  4608. 100% {
  4609. transform: scale(1);
  4610. }
  4611. }
  4612. @keyframes diffZoomIn2 {
  4613. 0% {
  4614. transform: scale(0);
  4615. }
  4616. 100% {
  4617. transform: scale(1);
  4618. }
  4619. }
  4620. @keyframes diffZoomIn3 {
  4621. 0% {
  4622. transform: scale(0);
  4623. }
  4624. 100% {
  4625. transform: scale(1);
  4626. }
  4627. }
  4628. .ant-row {
  4629. position: relative;
  4630. margin-left: 0;
  4631. margin-right: 0;
  4632. height: auto;
  4633. zoom: 1;
  4634. display: block;
  4635. }
  4636. .ant-row:before,
  4637. .ant-row:after {
  4638. content: " ";
  4639. display: table;
  4640. }
  4641. .ant-row:after {
  4642. clear: both;
  4643. visibility: hidden;
  4644. font-size: 0;
  4645. height: 0;
  4646. }
  4647. .ant-row-flex {
  4648. display: flex;
  4649. flex-direction: row;
  4650. flex-wrap: wrap;
  4651. }
  4652. .ant-row-flex:before,
  4653. .ant-row-flex:after {
  4654. display: flex;
  4655. }
  4656. .ant-row-flex-start {
  4657. justify-content: flex-start;
  4658. }
  4659. .ant-row-flex-center {
  4660. justify-content: center;
  4661. }
  4662. .ant-row-flex-end {
  4663. justify-content: flex-end;
  4664. }
  4665. .ant-row-flex-space-between {
  4666. justify-content: space-between;
  4667. }
  4668. .ant-row-flex-space-around {
  4669. justify-content: space-around;
  4670. }
  4671. .ant-row-flex-top {
  4672. align-items: flex-start;
  4673. }
  4674. .ant-row-flex-middle {
  4675. align-items: center;
  4676. }
  4677. .ant-row-flex-bottom {
  4678. align-items: flex-end;
  4679. }
  4680. .ant-col {
  4681. position: relative;
  4682. display: block;
  4683. }
  4684. .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 {
  4685. position: relative;
  4686. min-height: 1px;
  4687. padding-left: 0;
  4688. padding-right: 0;
  4689. }
  4690. .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 {
  4691. float: left;
  4692. flex: 0 0 auto;
  4693. }
  4694. .ant-col-24 {
  4695. display: block;
  4696. width: 100%;
  4697. }
  4698. .ant-col-push-24 {
  4699. left: 100%;
  4700. }
  4701. .ant-col-pull-24 {
  4702. right: 100%;
  4703. }
  4704. .ant-col-offset-24 {
  4705. margin-left: 100%;
  4706. }
  4707. .ant-col-order-24 {
  4708. order: 24;
  4709. }
  4710. .ant-col-23 {
  4711. display: block;
  4712. width: 95.83333333%;
  4713. }
  4714. .ant-col-push-23 {
  4715. left: 95.83333333%;
  4716. }
  4717. .ant-col-pull-23 {
  4718. right: 95.83333333%;
  4719. }
  4720. .ant-col-offset-23 {
  4721. margin-left: 95.83333333%;
  4722. }
  4723. .ant-col-order-23 {
  4724. order: 23;
  4725. }
  4726. .ant-col-22 {
  4727. display: block;
  4728. width: 91.66666667%;
  4729. }
  4730. .ant-col-push-22 {
  4731. left: 91.66666667%;
  4732. }
  4733. .ant-col-pull-22 {
  4734. right: 91.66666667%;
  4735. }
  4736. .ant-col-offset-22 {
  4737. margin-left: 91.66666667%;
  4738. }
  4739. .ant-col-order-22 {
  4740. order: 22;
  4741. }
  4742. .ant-col-21 {
  4743. display: block;
  4744. width: 87.5%;
  4745. }
  4746. .ant-col-push-21 {
  4747. left: 87.5%;
  4748. }
  4749. .ant-col-pull-21 {
  4750. right: 87.5%;
  4751. }
  4752. .ant-col-offset-21 {
  4753. margin-left: 87.5%;
  4754. }
  4755. .ant-col-order-21 {
  4756. order: 21;
  4757. }
  4758. .ant-col-20 {
  4759. display: block;
  4760. width: 83.33333333%;
  4761. }
  4762. .ant-col-push-20 {
  4763. left: 83.33333333%;
  4764. }
  4765. .ant-col-pull-20 {
  4766. right: 83.33333333%;
  4767. }
  4768. .ant-col-offset-20 {
  4769. margin-left: 83.33333333%;
  4770. }
  4771. .ant-col-order-20 {
  4772. order: 20;
  4773. }
  4774. .ant-col-19 {
  4775. display: block;
  4776. width: 79.16666667%;
  4777. }
  4778. .ant-col-push-19 {
  4779. left: 79.16666667%;
  4780. }
  4781. .ant-col-pull-19 {
  4782. right: 79.16666667%;
  4783. }
  4784. .ant-col-offset-19 {
  4785. margin-left: 79.16666667%;
  4786. }
  4787. .ant-col-order-19 {
  4788. order: 19;
  4789. }
  4790. .ant-col-18 {
  4791. display: block;
  4792. width: 75%;
  4793. }
  4794. .ant-col-push-18 {
  4795. left: 75%;
  4796. }
  4797. .ant-col-pull-18 {
  4798. right: 75%;
  4799. }
  4800. .ant-col-offset-18 {
  4801. margin-left: 75%;
  4802. }
  4803. .ant-col-order-18 {
  4804. order: 18;
  4805. }
  4806. .ant-col-17 {
  4807. display: block;
  4808. width: 70.83333333%;
  4809. }
  4810. .ant-col-push-17 {
  4811. left: 70.83333333%;
  4812. }
  4813. .ant-col-pull-17 {
  4814. right: 70.83333333%;
  4815. }
  4816. .ant-col-offset-17 {
  4817. margin-left: 70.83333333%;
  4818. }
  4819. .ant-col-order-17 {
  4820. order: 17;
  4821. }
  4822. .ant-col-16 {
  4823. display: block;
  4824. width: 66.66666667%;
  4825. }
  4826. .ant-col-push-16 {
  4827. left: 66.66666667%;
  4828. }
  4829. .ant-col-pull-16 {
  4830. right: 66.66666667%;
  4831. }
  4832. .ant-col-offset-16 {
  4833. margin-left: 66.66666667%;
  4834. }
  4835. .ant-col-order-16 {
  4836. order: 16;
  4837. }
  4838. .ant-col-15 {
  4839. display: block;
  4840. width: 62.5%;
  4841. }
  4842. .ant-col-push-15 {
  4843. left: 62.5%;
  4844. }
  4845. .ant-col-pull-15 {
  4846. right: 62.5%;
  4847. }
  4848. .ant-col-offset-15 {
  4849. margin-left: 62.5%;
  4850. }
  4851. .ant-col-order-15 {
  4852. order: 15;
  4853. }
  4854. .ant-col-14 {
  4855. display: block;
  4856. width: 58.33333333%;
  4857. }
  4858. .ant-col-push-14 {
  4859. left: 58.33333333%;
  4860. }
  4861. .ant-col-pull-14 {
  4862. right: 58.33333333%;
  4863. }
  4864. .ant-col-offset-14 {
  4865. margin-left: 58.33333333%;
  4866. }
  4867. .ant-col-order-14 {
  4868. order: 14;
  4869. }
  4870. .ant-col-13 {
  4871. display: block;
  4872. width: 54.16666667%;
  4873. }
  4874. .ant-col-push-13 {
  4875. left: 54.16666667%;
  4876. }
  4877. .ant-col-pull-13 {
  4878. right: 54.16666667%;
  4879. }
  4880. .ant-col-offset-13 {
  4881. margin-left: 54.16666667%;
  4882. }
  4883. .ant-col-order-13 {
  4884. order: 13;
  4885. }
  4886. .ant-col-12 {
  4887. display: block;
  4888. width: 50%;
  4889. }
  4890. .ant-col-push-12 {
  4891. left: 50%;
  4892. }
  4893. .ant-col-pull-12 {
  4894. right: 50%;
  4895. }
  4896. .ant-col-offset-12 {
  4897. margin-left: 50%;
  4898. }
  4899. .ant-col-order-12 {
  4900. order: 12;
  4901. }
  4902. .ant-col-11 {
  4903. display: block;
  4904. width: 45.83333333%;
  4905. }
  4906. .ant-col-push-11 {
  4907. left: 45.83333333%;
  4908. }
  4909. .ant-col-pull-11 {
  4910. right: 45.83333333%;
  4911. }
  4912. .ant-col-offset-11 {
  4913. margin-left: 45.83333333%;
  4914. }
  4915. .ant-col-order-11 {
  4916. order: 11;
  4917. }
  4918. .ant-col-10 {
  4919. display: block;
  4920. width: 41.66666667%;
  4921. }
  4922. .ant-col-push-10 {
  4923. left: 41.66666667%;
  4924. }
  4925. .ant-col-pull-10 {
  4926. right: 41.66666667%;
  4927. }
  4928. .ant-col-offset-10 {
  4929. margin-left: 41.66666667%;
  4930. }
  4931. .ant-col-order-10 {
  4932. order: 10;
  4933. }
  4934. .ant-col-9 {
  4935. display: block;
  4936. width: 37.5%;
  4937. }
  4938. .ant-col-push-9 {
  4939. left: 37.5%;
  4940. }
  4941. .ant-col-pull-9 {
  4942. right: 37.5%;
  4943. }
  4944. .ant-col-offset-9 {
  4945. margin-left: 37.5%;
  4946. }
  4947. .ant-col-order-9 {
  4948. order: 9;
  4949. }
  4950. .ant-col-8 {
  4951. display: block;
  4952. width: 33.33333333%;
  4953. }
  4954. .ant-col-push-8 {
  4955. left: 33.33333333%;
  4956. }
  4957. .ant-col-pull-8 {
  4958. right: 33.33333333%;
  4959. }
  4960. .ant-col-offset-8 {
  4961. margin-left: 33.33333333%;
  4962. }
  4963. .ant-col-order-8 {
  4964. order: 8;
  4965. }
  4966. .ant-col-7 {
  4967. display: block;
  4968. width: 29.16666667%;
  4969. }
  4970. .ant-col-push-7 {
  4971. left: 29.16666667%;
  4972. }
  4973. .ant-col-pull-7 {
  4974. right: 29.16666667%;
  4975. }
  4976. .ant-col-offset-7 {
  4977. margin-left: 29.16666667%;
  4978. }
  4979. .ant-col-order-7 {
  4980. order: 7;
  4981. }
  4982. .ant-col-6 {
  4983. display: block;
  4984. width: 25%;
  4985. }
  4986. .ant-col-push-6 {
  4987. left: 25%;
  4988. }
  4989. .ant-col-pull-6 {
  4990. right: 25%;
  4991. }
  4992. .ant-col-offset-6 {
  4993. margin-left: 25%;
  4994. }
  4995. .ant-col-order-6 {
  4996. order: 6;
  4997. }
  4998. .ant-col-5 {
  4999. display: block;
  5000. width: 20.83333333%;
  5001. }
  5002. .ant-col-push-5 {
  5003. left: 20.83333333%;
  5004. }
  5005. .ant-col-pull-5 {
  5006. right: 20.83333333%;
  5007. }
  5008. .ant-col-offset-5 {
  5009. margin-left: 20.83333333%;
  5010. }
  5011. .ant-col-order-5 {
  5012. order: 5;
  5013. }
  5014. .ant-col-4 {
  5015. display: block;
  5016. width: 16.66666667%;
  5017. }
  5018. .ant-col-push-4 {
  5019. left: 16.66666667%;
  5020. }
  5021. .ant-col-pull-4 {
  5022. right: 16.66666667%;
  5023. }
  5024. .ant-col-offset-4 {
  5025. margin-left: 16.66666667%;
  5026. }
  5027. .ant-col-order-4 {
  5028. order: 4;
  5029. }
  5030. .ant-col-3 {
  5031. display: block;
  5032. width: 12.5%;
  5033. }
  5034. .ant-col-push-3 {
  5035. left: 12.5%;
  5036. }
  5037. .ant-col-pull-3 {
  5038. right: 12.5%;
  5039. }
  5040. .ant-col-offset-3 {
  5041. margin-left: 12.5%;
  5042. }
  5043. .ant-col-order-3 {
  5044. order: 3;
  5045. }
  5046. .ant-col-2 {
  5047. display: block;
  5048. width: 8.33333333%;
  5049. }
  5050. .ant-col-push-2 {
  5051. left: 8.33333333%;
  5052. }
  5053. .ant-col-pull-2 {
  5054. right: 8.33333333%;
  5055. }
  5056. .ant-col-offset-2 {
  5057. margin-left: 8.33333333%;
  5058. }
  5059. .ant-col-order-2 {
  5060. order: 2;
  5061. }
  5062. .ant-col-1 {
  5063. display: block;
  5064. width: 4.16666667%;
  5065. }
  5066. .ant-col-push-1 {
  5067. left: 4.16666667%;
  5068. }
  5069. .ant-col-pull-1 {
  5070. right: 4.16666667%;
  5071. }
  5072. .ant-col-offset-1 {
  5073. margin-left: 4.16666667%;
  5074. }
  5075. .ant-col-order-1 {
  5076. order: 1;
  5077. }
  5078. .ant-col-0 {
  5079. display: none;
  5080. }
  5081. .ant-col-push-0 {
  5082. left: auto;
  5083. }
  5084. .ant-col-pull-0 {
  5085. right: auto;
  5086. }
  5087. .ant-col-push-0 {
  5088. left: auto;
  5089. }
  5090. .ant-col-pull-0 {
  5091. right: auto;
  5092. }
  5093. .ant-col-offset-0 {
  5094. margin-left: 0;
  5095. }
  5096. .ant-col-order-0 {
  5097. order: 0;
  5098. }
  5099. .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 {
  5100. float: left;
  5101. flex: 0 0 auto;
  5102. }
  5103. .ant-col-xs-24 {
  5104. display: block;
  5105. width: 100%;
  5106. }
  5107. .ant-col-xs-push-24 {
  5108. left: 100%;
  5109. }
  5110. .ant-col-xs-pull-24 {
  5111. right: 100%;
  5112. }
  5113. .ant-col-xs-offset-24 {
  5114. margin-left: 100%;
  5115. }
  5116. .ant-col-xs-order-24 {
  5117. order: 24;
  5118. }
  5119. .ant-col-xs-23 {
  5120. display: block;
  5121. width: 95.83333333%;
  5122. }
  5123. .ant-col-xs-push-23 {
  5124. left: 95.83333333%;
  5125. }
  5126. .ant-col-xs-pull-23 {
  5127. right: 95.83333333%;
  5128. }
  5129. .ant-col-xs-offset-23 {
  5130. margin-left: 95.83333333%;
  5131. }
  5132. .ant-col-xs-order-23 {
  5133. order: 23;
  5134. }
  5135. .ant-col-xs-22 {
  5136. display: block;
  5137. width: 91.66666667%;
  5138. }
  5139. .ant-col-xs-push-22 {
  5140. left: 91.66666667%;
  5141. }
  5142. .ant-col-xs-pull-22 {
  5143. right: 91.66666667%;
  5144. }
  5145. .ant-col-xs-offset-22 {
  5146. margin-left: 91.66666667%;
  5147. }
  5148. .ant-col-xs-order-22 {
  5149. order: 22;
  5150. }
  5151. .ant-col-xs-21 {
  5152. display: block;
  5153. width: 87.5%;
  5154. }
  5155. .ant-col-xs-push-21 {
  5156. left: 87.5%;
  5157. }
  5158. .ant-col-xs-pull-21 {
  5159. right: 87.5%;
  5160. }
  5161. .ant-col-xs-offset-21 {
  5162. margin-left: 87.5%;
  5163. }
  5164. .ant-col-xs-order-21 {
  5165. order: 21;
  5166. }
  5167. .ant-col-xs-20 {
  5168. display: block;
  5169. width: 83.33333333%;
  5170. }
  5171. .ant-col-xs-push-20 {
  5172. left: 83.33333333%;
  5173. }
  5174. .ant-col-xs-pull-20 {
  5175. right: 83.33333333%;
  5176. }
  5177. .ant-col-xs-offset-20 {
  5178. margin-left: 83.33333333%;
  5179. }
  5180. .ant-col-xs-order-20 {
  5181. order: 20;
  5182. }
  5183. .ant-col-xs-19 {
  5184. display: block;
  5185. width: 79.16666667%;
  5186. }
  5187. .ant-col-xs-push-19 {
  5188. left: 79.16666667%;
  5189. }
  5190. .ant-col-xs-pull-19 {
  5191. right: 79.16666667%;
  5192. }
  5193. .ant-col-xs-offset-19 {
  5194. margin-left: 79.16666667%;
  5195. }
  5196. .ant-col-xs-order-19 {
  5197. order: 19;
  5198. }
  5199. .ant-col-xs-18 {
  5200. display: block;
  5201. width: 75%;
  5202. }
  5203. .ant-col-xs-push-18 {
  5204. left: 75%;
  5205. }
  5206. .ant-col-xs-pull-18 {
  5207. right: 75%;
  5208. }
  5209. .ant-col-xs-offset-18 {
  5210. margin-left: 75%;
  5211. }
  5212. .ant-col-xs-order-18 {
  5213. order: 18;
  5214. }
  5215. .ant-col-xs-17 {
  5216. display: block;
  5217. width: 70.83333333%;
  5218. }
  5219. .ant-col-xs-push-17 {
  5220. left: 70.83333333%;
  5221. }
  5222. .ant-col-xs-pull-17 {
  5223. right: 70.83333333%;
  5224. }
  5225. .ant-col-xs-offset-17 {
  5226. margin-left: 70.83333333%;
  5227. }
  5228. .ant-col-xs-order-17 {
  5229. order: 17;
  5230. }
  5231. .ant-col-xs-16 {
  5232. display: block;
  5233. width: 66.66666667%;
  5234. }
  5235. .ant-col-xs-push-16 {
  5236. left: 66.66666667%;
  5237. }
  5238. .ant-col-xs-pull-16 {
  5239. right: 66.66666667%;
  5240. }
  5241. .ant-col-xs-offset-16 {
  5242. margin-left: 66.66666667%;
  5243. }
  5244. .ant-col-xs-order-16 {
  5245. order: 16;
  5246. }
  5247. .ant-col-xs-15 {
  5248. display: block;
  5249. width: 62.5%;
  5250. }
  5251. .ant-col-xs-push-15 {
  5252. left: 62.5%;
  5253. }
  5254. .ant-col-xs-pull-15 {
  5255. right: 62.5%;
  5256. }
  5257. .ant-col-xs-offset-15 {
  5258. margin-left: 62.5%;
  5259. }
  5260. .ant-col-xs-order-15 {
  5261. order: 15;
  5262. }
  5263. .ant-col-xs-14 {
  5264. display: block;
  5265. width: 58.33333333%;
  5266. }
  5267. .ant-col-xs-push-14 {
  5268. left: 58.33333333%;
  5269. }
  5270. .ant-col-xs-pull-14 {
  5271. right: 58.33333333%;
  5272. }
  5273. .ant-col-xs-offset-14 {
  5274. margin-left: 58.33333333%;
  5275. }
  5276. .ant-col-xs-order-14 {
  5277. order: 14;
  5278. }
  5279. .ant-col-xs-13 {
  5280. display: block;
  5281. width: 54.16666667%;
  5282. }
  5283. .ant-col-xs-push-13 {
  5284. left: 54.16666667%;
  5285. }
  5286. .ant-col-xs-pull-13 {
  5287. right: 54.16666667%;
  5288. }
  5289. .ant-col-xs-offset-13 {
  5290. margin-left: 54.16666667%;
  5291. }
  5292. .ant-col-xs-order-13 {
  5293. order: 13;
  5294. }
  5295. .ant-col-xs-12 {
  5296. display: block;
  5297. width: 50%;
  5298. }
  5299. .ant-col-xs-push-12 {
  5300. left: 50%;
  5301. }
  5302. .ant-col-xs-pull-12 {
  5303. right: 50%;
  5304. }
  5305. .ant-col-xs-offset-12 {
  5306. margin-left: 50%;
  5307. }
  5308. .ant-col-xs-order-12 {
  5309. order: 12;
  5310. }
  5311. .ant-col-xs-11 {
  5312. display: block;
  5313. width: 45.83333333%;
  5314. }
  5315. .ant-col-xs-push-11 {
  5316. left: 45.83333333%;
  5317. }
  5318. .ant-col-xs-pull-11 {
  5319. right: 45.83333333%;
  5320. }
  5321. .ant-col-xs-offset-11 {
  5322. margin-left: 45.83333333%;
  5323. }
  5324. .ant-col-xs-order-11 {
  5325. order: 11;
  5326. }
  5327. .ant-col-xs-10 {
  5328. display: block;
  5329. width: 41.66666667%;
  5330. }
  5331. .ant-col-xs-push-10 {
  5332. left: 41.66666667%;
  5333. }
  5334. .ant-col-xs-pull-10 {
  5335. right: 41.66666667%;
  5336. }
  5337. .ant-col-xs-offset-10 {
  5338. margin-left: 41.66666667%;
  5339. }
  5340. .ant-col-xs-order-10 {
  5341. order: 10;
  5342. }
  5343. .ant-col-xs-9 {
  5344. display: block;
  5345. width: 37.5%;
  5346. }
  5347. .ant-col-xs-push-9 {
  5348. left: 37.5%;
  5349. }
  5350. .ant-col-xs-pull-9 {
  5351. right: 37.5%;
  5352. }
  5353. .ant-col-xs-offset-9 {
  5354. margin-left: 37.5%;
  5355. }
  5356. .ant-col-xs-order-9 {
  5357. order: 9;
  5358. }
  5359. .ant-col-xs-8 {
  5360. display: block;
  5361. width: 33.33333333%;
  5362. }
  5363. .ant-col-xs-push-8 {
  5364. left: 33.33333333%;
  5365. }
  5366. .ant-col-xs-pull-8 {
  5367. right: 33.33333333%;
  5368. }
  5369. .ant-col-xs-offset-8 {
  5370. margin-left: 33.33333333%;
  5371. }
  5372. .ant-col-xs-order-8 {
  5373. order: 8;
  5374. }
  5375. .ant-col-xs-7 {
  5376. display: block;
  5377. width: 29.16666667%;
  5378. }
  5379. .ant-col-xs-push-7 {
  5380. left: 29.16666667%;
  5381. }
  5382. .ant-col-xs-pull-7 {
  5383. right: 29.16666667%;
  5384. }
  5385. .ant-col-xs-offset-7 {
  5386. margin-left: 29.16666667%;
  5387. }
  5388. .ant-col-xs-order-7 {
  5389. order: 7;
  5390. }
  5391. .ant-col-xs-6 {
  5392. display: block;
  5393. width: 25%;
  5394. }
  5395. .ant-col-xs-push-6 {
  5396. left: 25%;
  5397. }
  5398. .ant-col-xs-pull-6 {
  5399. right: 25%;
  5400. }
  5401. .ant-col-xs-offset-6 {
  5402. margin-left: 25%;
  5403. }
  5404. .ant-col-xs-order-6 {
  5405. order: 6;
  5406. }
  5407. .ant-col-xs-5 {
  5408. display: block;
  5409. width: 20.83333333%;
  5410. }
  5411. .ant-col-xs-push-5 {
  5412. left: 20.83333333%;
  5413. }
  5414. .ant-col-xs-pull-5 {
  5415. right: 20.83333333%;
  5416. }
  5417. .ant-col-xs-offset-5 {
  5418. margin-left: 20.83333333%;
  5419. }
  5420. .ant-col-xs-order-5 {
  5421. order: 5;
  5422. }
  5423. .ant-col-xs-4 {
  5424. display: block;
  5425. width: 16.66666667%;
  5426. }
  5427. .ant-col-xs-push-4 {
  5428. left: 16.66666667%;
  5429. }
  5430. .ant-col-xs-pull-4 {
  5431. right: 16.66666667%;
  5432. }
  5433. .ant-col-xs-offset-4 {
  5434. margin-left: 16.66666667%;
  5435. }
  5436. .ant-col-xs-order-4 {
  5437. order: 4;
  5438. }
  5439. .ant-col-xs-3 {
  5440. display: block;
  5441. width: 12.5%;
  5442. }
  5443. .ant-col-xs-push-3 {
  5444. left: 12.5%;
  5445. }
  5446. .ant-col-xs-pull-3 {
  5447. right: 12.5%;
  5448. }
  5449. .ant-col-xs-offset-3 {
  5450. margin-left: 12.5%;
  5451. }
  5452. .ant-col-xs-order-3 {
  5453. order: 3;
  5454. }
  5455. .ant-col-xs-2 {
  5456. display: block;
  5457. width: 8.33333333%;
  5458. }
  5459. .ant-col-xs-push-2 {
  5460. left: 8.33333333%;
  5461. }
  5462. .ant-col-xs-pull-2 {
  5463. right: 8.33333333%;
  5464. }
  5465. .ant-col-xs-offset-2 {
  5466. margin-left: 8.33333333%;
  5467. }
  5468. .ant-col-xs-order-2 {
  5469. order: 2;
  5470. }
  5471. .ant-col-xs-1 {
  5472. display: block;
  5473. width: 4.16666667%;
  5474. }
  5475. .ant-col-xs-push-1 {
  5476. left: 4.16666667%;
  5477. }
  5478. .ant-col-xs-pull-1 {
  5479. right: 4.16666667%;
  5480. }
  5481. .ant-col-xs-offset-1 {
  5482. margin-left: 4.16666667%;
  5483. }
  5484. .ant-col-xs-order-1 {
  5485. order: 1;
  5486. }
  5487. .ant-col-xs-0 {
  5488. display: none;
  5489. }
  5490. .ant-col-push-0 {
  5491. left: auto;
  5492. }
  5493. .ant-col-pull-0 {
  5494. right: auto;
  5495. }
  5496. .ant-col-xs-push-0 {
  5497. left: auto;
  5498. }
  5499. .ant-col-xs-pull-0 {
  5500. right: auto;
  5501. }
  5502. .ant-col-xs-offset-0 {
  5503. margin-left: 0;
  5504. }
  5505. .ant-col-xs-order-0 {
  5506. order: 0;
  5507. }
  5508. @media (min-width: 768px) {
  5509. .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 {
  5510. float: left;
  5511. flex: 0 0 auto;
  5512. }
  5513. .ant-col-sm-24 {
  5514. display: block;
  5515. width: 100%;
  5516. }
  5517. .ant-col-sm-push-24 {
  5518. left: 100%;
  5519. }
  5520. .ant-col-sm-pull-24 {
  5521. right: 100%;
  5522. }
  5523. .ant-col-sm-offset-24 {
  5524. margin-left: 100%;
  5525. }
  5526. .ant-col-sm-order-24 {
  5527. order: 24;
  5528. }
  5529. .ant-col-sm-23 {
  5530. display: block;
  5531. width: 95.83333333%;
  5532. }
  5533. .ant-col-sm-push-23 {
  5534. left: 95.83333333%;
  5535. }
  5536. .ant-col-sm-pull-23 {
  5537. right: 95.83333333%;
  5538. }
  5539. .ant-col-sm-offset-23 {
  5540. margin-left: 95.83333333%;
  5541. }
  5542. .ant-col-sm-order-23 {
  5543. order: 23;
  5544. }
  5545. .ant-col-sm-22 {
  5546. display: block;
  5547. width: 91.66666667%;
  5548. }
  5549. .ant-col-sm-push-22 {
  5550. left: 91.66666667%;
  5551. }
  5552. .ant-col-sm-pull-22 {
  5553. right: 91.66666667%;
  5554. }
  5555. .ant-col-sm-offset-22 {
  5556. margin-left: 91.66666667%;
  5557. }
  5558. .ant-col-sm-order-22 {
  5559. order: 22;
  5560. }
  5561. .ant-col-sm-21 {
  5562. display: block;
  5563. width: 87.5%;
  5564. }
  5565. .ant-col-sm-push-21 {
  5566. left: 87.5%;
  5567. }
  5568. .ant-col-sm-pull-21 {
  5569. right: 87.5%;
  5570. }
  5571. .ant-col-sm-offset-21 {
  5572. margin-left: 87.5%;
  5573. }
  5574. .ant-col-sm-order-21 {
  5575. order: 21;
  5576. }
  5577. .ant-col-sm-20 {
  5578. display: block;
  5579. width: 83.33333333%;
  5580. }
  5581. .ant-col-sm-push-20 {
  5582. left: 83.33333333%;
  5583. }
  5584. .ant-col-sm-pull-20 {
  5585. right: 83.33333333%;
  5586. }
  5587. .ant-col-sm-offset-20 {
  5588. margin-left: 83.33333333%;
  5589. }
  5590. .ant-col-sm-order-20 {
  5591. order: 20;
  5592. }
  5593. .ant-col-sm-19 {
  5594. display: block;
  5595. width: 79.16666667%;
  5596. }
  5597. .ant-col-sm-push-19 {
  5598. left: 79.16666667%;
  5599. }
  5600. .ant-col-sm-pull-19 {
  5601. right: 79.16666667%;
  5602. }
  5603. .ant-col-sm-offset-19 {
  5604. margin-left: 79.16666667%;
  5605. }
  5606. .ant-col-sm-order-19 {
  5607. order: 19;
  5608. }
  5609. .ant-col-sm-18 {
  5610. display: block;
  5611. width: 75%;
  5612. }
  5613. .ant-col-sm-push-18 {
  5614. left: 75%;
  5615. }
  5616. .ant-col-sm-pull-18 {
  5617. right: 75%;
  5618. }
  5619. .ant-col-sm-offset-18 {
  5620. margin-left: 75%;
  5621. }
  5622. .ant-col-sm-order-18 {
  5623. order: 18;
  5624. }
  5625. .ant-col-sm-17 {
  5626. display: block;
  5627. width: 70.83333333%;
  5628. }
  5629. .ant-col-sm-push-17 {
  5630. left: 70.83333333%;
  5631. }
  5632. .ant-col-sm-pull-17 {
  5633. right: 70.83333333%;
  5634. }
  5635. .ant-col-sm-offset-17 {
  5636. margin-left: 70.83333333%;
  5637. }
  5638. .ant-col-sm-order-17 {
  5639. order: 17;
  5640. }
  5641. .ant-col-sm-16 {
  5642. display: block;
  5643. width: 66.66666667%;
  5644. }
  5645. .ant-col-sm-push-16 {
  5646. left: 66.66666667%;
  5647. }
  5648. .ant-col-sm-pull-16 {
  5649. right: 66.66666667%;
  5650. }
  5651. .ant-col-sm-offset-16 {
  5652. margin-left: 66.66666667%;
  5653. }
  5654. .ant-col-sm-order-16 {
  5655. order: 16;
  5656. }
  5657. .ant-col-sm-15 {
  5658. display: block;
  5659. width: 62.5%;
  5660. }
  5661. .ant-col-sm-push-15 {
  5662. left: 62.5%;
  5663. }
  5664. .ant-col-sm-pull-15 {
  5665. right: 62.5%;
  5666. }
  5667. .ant-col-sm-offset-15 {
  5668. margin-left: 62.5%;
  5669. }
  5670. .ant-col-sm-order-15 {
  5671. order: 15;
  5672. }
  5673. .ant-col-sm-14 {
  5674. display: block;
  5675. width: 58.33333333%;
  5676. }
  5677. .ant-col-sm-push-14 {
  5678. left: 58.33333333%;
  5679. }
  5680. .ant-col-sm-pull-14 {
  5681. right: 58.33333333%;
  5682. }
  5683. .ant-col-sm-offset-14 {
  5684. margin-left: 58.33333333%;
  5685. }
  5686. .ant-col-sm-order-14 {
  5687. order: 14;
  5688. }
  5689. .ant-col-sm-13 {
  5690. display: block;
  5691. width: 54.16666667%;
  5692. }
  5693. .ant-col-sm-push-13 {
  5694. left: 54.16666667%;
  5695. }
  5696. .ant-col-sm-pull-13 {
  5697. right: 54.16666667%;
  5698. }
  5699. .ant-col-sm-offset-13 {
  5700. margin-left: 54.16666667%;
  5701. }
  5702. .ant-col-sm-order-13 {
  5703. order: 13;
  5704. }
  5705. .ant-col-sm-12 {
  5706. display: block;
  5707. width: 50%;
  5708. }
  5709. .ant-col-sm-push-12 {
  5710. left: 50%;
  5711. }
  5712. .ant-col-sm-pull-12 {
  5713. right: 50%;
  5714. }
  5715. .ant-col-sm-offset-12 {
  5716. margin-left: 50%;
  5717. }
  5718. .ant-col-sm-order-12 {
  5719. order: 12;
  5720. }
  5721. .ant-col-sm-11 {
  5722. display: block;
  5723. width: 45.83333333%;
  5724. }
  5725. .ant-col-sm-push-11 {
  5726. left: 45.83333333%;
  5727. }
  5728. .ant-col-sm-pull-11 {
  5729. right: 45.83333333%;
  5730. }
  5731. .ant-col-sm-offset-11 {
  5732. margin-left: 45.83333333%;
  5733. }
  5734. .ant-col-sm-order-11 {
  5735. order: 11;
  5736. }
  5737. .ant-col-sm-10 {
  5738. display: block;
  5739. width: 41.66666667%;
  5740. }
  5741. .ant-col-sm-push-10 {
  5742. left: 41.66666667%;
  5743. }
  5744. .ant-col-sm-pull-10 {
  5745. right: 41.66666667%;
  5746. }
  5747. .ant-col-sm-offset-10 {
  5748. margin-left: 41.66666667%;
  5749. }
  5750. .ant-col-sm-order-10 {
  5751. order: 10;
  5752. }
  5753. .ant-col-sm-9 {
  5754. display: block;
  5755. width: 37.5%;
  5756. }
  5757. .ant-col-sm-push-9 {
  5758. left: 37.5%;
  5759. }
  5760. .ant-col-sm-pull-9 {
  5761. right: 37.5%;
  5762. }
  5763. .ant-col-sm-offset-9 {
  5764. margin-left: 37.5%;
  5765. }
  5766. .ant-col-sm-order-9 {
  5767. order: 9;
  5768. }
  5769. .ant-col-sm-8 {
  5770. display: block;
  5771. width: 33.33333333%;
  5772. }
  5773. .ant-col-sm-push-8 {
  5774. left: 33.33333333%;
  5775. }
  5776. .ant-col-sm-pull-8 {
  5777. right: 33.33333333%;
  5778. }
  5779. .ant-col-sm-offset-8 {
  5780. margin-left: 33.33333333%;
  5781. }
  5782. .ant-col-sm-order-8 {
  5783. order: 8;
  5784. }
  5785. .ant-col-sm-7 {
  5786. display: block;
  5787. width: 29.16666667%;
  5788. }
  5789. .ant-col-sm-push-7 {
  5790. left: 29.16666667%;
  5791. }
  5792. .ant-col-sm-pull-7 {
  5793. right: 29.16666667%;
  5794. }
  5795. .ant-col-sm-offset-7 {
  5796. margin-left: 29.16666667%;
  5797. }
  5798. .ant-col-sm-order-7 {
  5799. order: 7;
  5800. }
  5801. .ant-col-sm-6 {
  5802. display: block;
  5803. width: 25%;
  5804. }
  5805. .ant-col-sm-push-6 {
  5806. left: 25%;
  5807. }
  5808. .ant-col-sm-pull-6 {
  5809. right: 25%;
  5810. }
  5811. .ant-col-sm-offset-6 {
  5812. margin-left: 25%;
  5813. }
  5814. .ant-col-sm-order-6 {
  5815. order: 6;
  5816. }
  5817. .ant-col-sm-5 {
  5818. display: block;
  5819. width: 20.83333333%;
  5820. }
  5821. .ant-col-sm-push-5 {
  5822. left: 20.83333333%;
  5823. }
  5824. .ant-col-sm-pull-5 {
  5825. right: 20.83333333%;
  5826. }
  5827. .ant-col-sm-offset-5 {
  5828. margin-left: 20.83333333%;
  5829. }
  5830. .ant-col-sm-order-5 {
  5831. order: 5;
  5832. }
  5833. .ant-col-sm-4 {
  5834. display: block;
  5835. width: 16.66666667%;
  5836. }
  5837. .ant-col-sm-push-4 {
  5838. left: 16.66666667%;
  5839. }
  5840. .ant-col-sm-pull-4 {
  5841. right: 16.66666667%;
  5842. }
  5843. .ant-col-sm-offset-4 {
  5844. margin-left: 16.66666667%;
  5845. }
  5846. .ant-col-sm-order-4 {
  5847. order: 4;
  5848. }
  5849. .ant-col-sm-3 {
  5850. display: block;
  5851. width: 12.5%;
  5852. }
  5853. .ant-col-sm-push-3 {
  5854. left: 12.5%;
  5855. }
  5856. .ant-col-sm-pull-3 {
  5857. right: 12.5%;
  5858. }
  5859. .ant-col-sm-offset-3 {
  5860. margin-left: 12.5%;
  5861. }
  5862. .ant-col-sm-order-3 {
  5863. order: 3;
  5864. }
  5865. .ant-col-sm-2 {
  5866. display: block;
  5867. width: 8.33333333%;
  5868. }
  5869. .ant-col-sm-push-2 {
  5870. left: 8.33333333%;
  5871. }
  5872. .ant-col-sm-pull-2 {
  5873. right: 8.33333333%;
  5874. }
  5875. .ant-col-sm-offset-2 {
  5876. margin-left: 8.33333333%;
  5877. }
  5878. .ant-col-sm-order-2 {
  5879. order: 2;
  5880. }
  5881. .ant-col-sm-1 {
  5882. display: block;
  5883. width: 4.16666667%;
  5884. }
  5885. .ant-col-sm-push-1 {
  5886. left: 4.16666667%;
  5887. }
  5888. .ant-col-sm-pull-1 {
  5889. right: 4.16666667%;
  5890. }
  5891. .ant-col-sm-offset-1 {
  5892. margin-left: 4.16666667%;
  5893. }
  5894. .ant-col-sm-order-1 {
  5895. order: 1;
  5896. }
  5897. .ant-col-sm-0 {
  5898. display: none;
  5899. }
  5900. .ant-col-push-0 {
  5901. left: auto;
  5902. }
  5903. .ant-col-pull-0 {
  5904. right: auto;
  5905. }
  5906. .ant-col-sm-push-0 {
  5907. left: auto;
  5908. }
  5909. .ant-col-sm-pull-0 {
  5910. right: auto;
  5911. }
  5912. .ant-col-sm-offset-0 {
  5913. margin-left: 0;
  5914. }
  5915. .ant-col-sm-order-0 {
  5916. order: 0;
  5917. }
  5918. }
  5919. @media (min-width: 992px) {
  5920. .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 {
  5921. float: left;
  5922. flex: 0 0 auto;
  5923. }
  5924. .ant-col-md-24 {
  5925. display: block;
  5926. width: 100%;
  5927. }
  5928. .ant-col-md-push-24 {
  5929. left: 100%;
  5930. }
  5931. .ant-col-md-pull-24 {
  5932. right: 100%;
  5933. }
  5934. .ant-col-md-offset-24 {
  5935. margin-left: 100%;
  5936. }
  5937. .ant-col-md-order-24 {
  5938. order: 24;
  5939. }
  5940. .ant-col-md-23 {
  5941. display: block;
  5942. width: 95.83333333%;
  5943. }
  5944. .ant-col-md-push-23 {
  5945. left: 95.83333333%;
  5946. }
  5947. .ant-col-md-pull-23 {
  5948. right: 95.83333333%;
  5949. }
  5950. .ant-col-md-offset-23 {
  5951. margin-left: 95.83333333%;
  5952. }
  5953. .ant-col-md-order-23 {
  5954. order: 23;
  5955. }
  5956. .ant-col-md-22 {
  5957. display: block;
  5958. width: 91.66666667%;
  5959. }
  5960. .ant-col-md-push-22 {
  5961. left: 91.66666667%;
  5962. }
  5963. .ant-col-md-pull-22 {
  5964. right: 91.66666667%;
  5965. }
  5966. .ant-col-md-offset-22 {
  5967. margin-left: 91.66666667%;
  5968. }
  5969. .ant-col-md-order-22 {
  5970. order: 22;
  5971. }
  5972. .ant-col-md-21 {
  5973. display: block;
  5974. width: 87.5%;
  5975. }
  5976. .ant-col-md-push-21 {
  5977. left: 87.5%;
  5978. }
  5979. .ant-col-md-pull-21 {
  5980. right: 87.5%;
  5981. }
  5982. .ant-col-md-offset-21 {
  5983. margin-left: 87.5%;
  5984. }
  5985. .ant-col-md-order-21 {
  5986. order: 21;
  5987. }
  5988. .ant-col-md-20 {
  5989. display: block;
  5990. width: 83.33333333%;
  5991. }
  5992. .ant-col-md-push-20 {
  5993. left: 83.33333333%;
  5994. }
  5995. .ant-col-md-pull-20 {
  5996. right: 83.33333333%;
  5997. }
  5998. .ant-col-md-offset-20 {
  5999. margin-left: 83.33333333%;
  6000. }
  6001. .ant-col-md-order-20 {
  6002. order: 20;
  6003. }
  6004. .ant-col-md-19 {
  6005. display: block;
  6006. width: 79.16666667%;
  6007. }
  6008. .ant-col-md-push-19 {
  6009. left: 79.16666667%;
  6010. }
  6011. .ant-col-md-pull-19 {
  6012. right: 79.16666667%;
  6013. }
  6014. .ant-col-md-offset-19 {
  6015. margin-left: 79.16666667%;
  6016. }
  6017. .ant-col-md-order-19 {
  6018. order: 19;
  6019. }
  6020. .ant-col-md-18 {
  6021. display: block;
  6022. width: 75%;
  6023. }
  6024. .ant-col-md-push-18 {
  6025. left: 75%;
  6026. }
  6027. .ant-col-md-pull-18 {
  6028. right: 75%;
  6029. }
  6030. .ant-col-md-offset-18 {
  6031. margin-left: 75%;
  6032. }
  6033. .ant-col-md-order-18 {
  6034. order: 18;
  6035. }
  6036. .ant-col-md-17 {
  6037. display: block;
  6038. width: 70.83333333%;
  6039. }
  6040. .ant-col-md-push-17 {
  6041. left: 70.83333333%;
  6042. }
  6043. .ant-col-md-pull-17 {
  6044. right: 70.83333333%;
  6045. }
  6046. .ant-col-md-offset-17 {
  6047. margin-left: 70.83333333%;
  6048. }
  6049. .ant-col-md-order-17 {
  6050. order: 17;
  6051. }
  6052. .ant-col-md-16 {
  6053. display: block;
  6054. width: 66.66666667%;
  6055. }
  6056. .ant-col-md-push-16 {
  6057. left: 66.66666667%;
  6058. }
  6059. .ant-col-md-pull-16 {
  6060. right: 66.66666667%;
  6061. }
  6062. .ant-col-md-offset-16 {
  6063. margin-left: 66.66666667%;
  6064. }
  6065. .ant-col-md-order-16 {
  6066. order: 16;
  6067. }
  6068. .ant-col-md-15 {
  6069. display: block;
  6070. width: 62.5%;
  6071. }
  6072. .ant-col-md-push-15 {
  6073. left: 62.5%;
  6074. }
  6075. .ant-col-md-pull-15 {
  6076. right: 62.5%;
  6077. }
  6078. .ant-col-md-offset-15 {
  6079. margin-left: 62.5%;
  6080. }
  6081. .ant-col-md-order-15 {
  6082. order: 15;
  6083. }
  6084. .ant-col-md-14 {
  6085. display: block;
  6086. width: 58.33333333%;
  6087. }
  6088. .ant-col-md-push-14 {
  6089. left: 58.33333333%;
  6090. }
  6091. .ant-col-md-pull-14 {
  6092. right: 58.33333333%;
  6093. }
  6094. .ant-col-md-offset-14 {
  6095. margin-left: 58.33333333%;
  6096. }
  6097. .ant-col-md-order-14 {
  6098. order: 14;
  6099. }
  6100. .ant-col-md-13 {
  6101. display: block;
  6102. width: 54.16666667%;
  6103. }
  6104. .ant-col-md-push-13 {
  6105. left: 54.16666667%;
  6106. }
  6107. .ant-col-md-pull-13 {
  6108. right: 54.16666667%;
  6109. }
  6110. .ant-col-md-offset-13 {
  6111. margin-left: 54.16666667%;
  6112. }
  6113. .ant-col-md-order-13 {
  6114. order: 13;
  6115. }
  6116. .ant-col-md-12 {
  6117. display: block;
  6118. width: 50%;
  6119. }
  6120. .ant-col-md-push-12 {
  6121. left: 50%;
  6122. }
  6123. .ant-col-md-pull-12 {
  6124. right: 50%;
  6125. }
  6126. .ant-col-md-offset-12 {
  6127. margin-left: 50%;
  6128. }
  6129. .ant-col-md-order-12 {
  6130. order: 12;
  6131. }
  6132. .ant-col-md-11 {
  6133. display: block;
  6134. width: 45.83333333%;
  6135. }
  6136. .ant-col-md-push-11 {
  6137. left: 45.83333333%;
  6138. }
  6139. .ant-col-md-pull-11 {
  6140. right: 45.83333333%;
  6141. }
  6142. .ant-col-md-offset-11 {
  6143. margin-left: 45.83333333%;
  6144. }
  6145. .ant-col-md-order-11 {
  6146. order: 11;
  6147. }
  6148. .ant-col-md-10 {
  6149. display: block;
  6150. width: 41.66666667%;
  6151. }
  6152. .ant-col-md-push-10 {
  6153. left: 41.66666667%;
  6154. }
  6155. .ant-col-md-pull-10 {
  6156. right: 41.66666667%;
  6157. }
  6158. .ant-col-md-offset-10 {
  6159. margin-left: 41.66666667%;
  6160. }
  6161. .ant-col-md-order-10 {
  6162. order: 10;
  6163. }
  6164. .ant-col-md-9 {
  6165. display: block;
  6166. width: 37.5%;
  6167. }
  6168. .ant-col-md-push-9 {
  6169. left: 37.5%;
  6170. }
  6171. .ant-col-md-pull-9 {
  6172. right: 37.5%;
  6173. }
  6174. .ant-col-md-offset-9 {
  6175. margin-left: 37.5%;
  6176. }
  6177. .ant-col-md-order-9 {
  6178. order: 9;
  6179. }
  6180. .ant-col-md-8 {
  6181. display: block;
  6182. width: 33.33333333%;
  6183. }
  6184. .ant-col-md-push-8 {
  6185. left: 33.33333333%;
  6186. }
  6187. .ant-col-md-pull-8 {
  6188. right: 33.33333333%;
  6189. }
  6190. .ant-col-md-offset-8 {
  6191. margin-left: 33.33333333%;
  6192. }
  6193. .ant-col-md-order-8 {
  6194. order: 8;
  6195. }
  6196. .ant-col-md-7 {
  6197. display: block;
  6198. width: 29.16666667%;
  6199. }
  6200. .ant-col-md-push-7 {
  6201. left: 29.16666667%;
  6202. }
  6203. .ant-col-md-pull-7 {
  6204. right: 29.16666667%;
  6205. }
  6206. .ant-col-md-offset-7 {
  6207. margin-left: 29.16666667%;
  6208. }
  6209. .ant-col-md-order-7 {
  6210. order: 7;
  6211. }
  6212. .ant-col-md-6 {
  6213. display: block;
  6214. width: 25%;
  6215. }
  6216. .ant-col-md-push-6 {
  6217. left: 25%;
  6218. }
  6219. .ant-col-md-pull-6 {
  6220. right: 25%;
  6221. }
  6222. .ant-col-md-offset-6 {
  6223. margin-left: 25%;
  6224. }
  6225. .ant-col-md-order-6 {
  6226. order: 6;
  6227. }
  6228. .ant-col-md-5 {
  6229. display: block;
  6230. width: 20.83333333%;
  6231. }
  6232. .ant-col-md-push-5 {
  6233. left: 20.83333333%;
  6234. }
  6235. .ant-col-md-pull-5 {
  6236. right: 20.83333333%;
  6237. }
  6238. .ant-col-md-offset-5 {
  6239. margin-left: 20.83333333%;
  6240. }
  6241. .ant-col-md-order-5 {
  6242. order: 5;
  6243. }
  6244. .ant-col-md-4 {
  6245. display: block;
  6246. width: 16.66666667%;
  6247. }
  6248. .ant-col-md-push-4 {
  6249. left: 16.66666667%;
  6250. }
  6251. .ant-col-md-pull-4 {
  6252. right: 16.66666667%;
  6253. }
  6254. .ant-col-md-offset-4 {
  6255. margin-left: 16.66666667%;
  6256. }
  6257. .ant-col-md-order-4 {
  6258. order: 4;
  6259. }
  6260. .ant-col-md-3 {
  6261. display: block;
  6262. width: 12.5%;
  6263. }
  6264. .ant-col-md-push-3 {
  6265. left: 12.5%;
  6266. }
  6267. .ant-col-md-pull-3 {
  6268. right: 12.5%;
  6269. }
  6270. .ant-col-md-offset-3 {
  6271. margin-left: 12.5%;
  6272. }
  6273. .ant-col-md-order-3 {
  6274. order: 3;
  6275. }
  6276. .ant-col-md-2 {
  6277. display: block;
  6278. width: 8.33333333%;
  6279. }
  6280. .ant-col-md-push-2 {
  6281. left: 8.33333333%;
  6282. }
  6283. .ant-col-md-pull-2 {
  6284. right: 8.33333333%;
  6285. }
  6286. .ant-col-md-offset-2 {
  6287. margin-left: 8.33333333%;
  6288. }
  6289. .ant-col-md-order-2 {
  6290. order: 2;
  6291. }
  6292. .ant-col-md-1 {
  6293. display: block;
  6294. width: 4.16666667%;
  6295. }
  6296. .ant-col-md-push-1 {
  6297. left: 4.16666667%;
  6298. }
  6299. .ant-col-md-pull-1 {
  6300. right: 4.16666667%;
  6301. }
  6302. .ant-col-md-offset-1 {
  6303. margin-left: 4.16666667%;
  6304. }
  6305. .ant-col-md-order-1 {
  6306. order: 1;
  6307. }
  6308. .ant-col-md-0 {
  6309. display: none;
  6310. }
  6311. .ant-col-push-0 {
  6312. left: auto;
  6313. }
  6314. .ant-col-pull-0 {
  6315. right: auto;
  6316. }
  6317. .ant-col-md-push-0 {
  6318. left: auto;
  6319. }
  6320. .ant-col-md-pull-0 {
  6321. right: auto;
  6322. }
  6323. .ant-col-md-offset-0 {
  6324. margin-left: 0;
  6325. }
  6326. .ant-col-md-order-0 {
  6327. order: 0;
  6328. }
  6329. }
  6330. @media (min-width: 1200px) {
  6331. .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 {
  6332. float: left;
  6333. flex: 0 0 auto;
  6334. }
  6335. .ant-col-lg-24 {
  6336. display: block;
  6337. width: 100%;
  6338. }
  6339. .ant-col-lg-push-24 {
  6340. left: 100%;
  6341. }
  6342. .ant-col-lg-pull-24 {
  6343. right: 100%;
  6344. }
  6345. .ant-col-lg-offset-24 {
  6346. margin-left: 100%;
  6347. }
  6348. .ant-col-lg-order-24 {
  6349. order: 24;
  6350. }
  6351. .ant-col-lg-23 {
  6352. display: block;
  6353. width: 95.83333333%;
  6354. }
  6355. .ant-col-lg-push-23 {
  6356. left: 95.83333333%;
  6357. }
  6358. .ant-col-lg-pull-23 {
  6359. right: 95.83333333%;
  6360. }
  6361. .ant-col-lg-offset-23 {
  6362. margin-left: 95.83333333%;
  6363. }
  6364. .ant-col-lg-order-23 {
  6365. order: 23;
  6366. }
  6367. .ant-col-lg-22 {
  6368. display: block;
  6369. width: 91.66666667%;
  6370. }
  6371. .ant-col-lg-push-22 {
  6372. left: 91.66666667%;
  6373. }
  6374. .ant-col-lg-pull-22 {
  6375. right: 91.66666667%;
  6376. }
  6377. .ant-col-lg-offset-22 {
  6378. margin-left: 91.66666667%;
  6379. }
  6380. .ant-col-lg-order-22 {
  6381. order: 22;
  6382. }
  6383. .ant-col-lg-21 {
  6384. display: block;
  6385. width: 87.5%;
  6386. }
  6387. .ant-col-lg-push-21 {
  6388. left: 87.5%;
  6389. }
  6390. .ant-col-lg-pull-21 {
  6391. right: 87.5%;
  6392. }
  6393. .ant-col-lg-offset-21 {
  6394. margin-left: 87.5%;
  6395. }
  6396. .ant-col-lg-order-21 {
  6397. order: 21;
  6398. }
  6399. .ant-col-lg-20 {
  6400. display: block;
  6401. width: 83.33333333%;
  6402. }
  6403. .ant-col-lg-push-20 {
  6404. left: 83.33333333%;
  6405. }
  6406. .ant-col-lg-pull-20 {
  6407. right: 83.33333333%;
  6408. }
  6409. .ant-col-lg-offset-20 {
  6410. margin-left: 83.33333333%;
  6411. }
  6412. .ant-col-lg-order-20 {
  6413. order: 20;
  6414. }
  6415. .ant-col-lg-19 {
  6416. display: block;
  6417. width: 79.16666667%;
  6418. }
  6419. .ant-col-lg-push-19 {
  6420. left: 79.16666667%;
  6421. }
  6422. .ant-col-lg-pull-19 {
  6423. right: 79.16666667%;
  6424. }
  6425. .ant-col-lg-offset-19 {
  6426. margin-left: 79.16666667%;
  6427. }
  6428. .ant-col-lg-order-19 {
  6429. order: 19;
  6430. }
  6431. .ant-col-lg-18 {
  6432. display: block;
  6433. width: 75%;
  6434. }
  6435. .ant-col-lg-push-18 {
  6436. left: 75%;
  6437. }
  6438. .ant-col-lg-pull-18 {
  6439. right: 75%;
  6440. }
  6441. .ant-col-lg-offset-18 {
  6442. margin-left: 75%;
  6443. }
  6444. .ant-col-lg-order-18 {
  6445. order: 18;
  6446. }
  6447. .ant-col-lg-17 {
  6448. display: block;
  6449. width: 70.83333333%;
  6450. }
  6451. .ant-col-lg-push-17 {
  6452. left: 70.83333333%;
  6453. }
  6454. .ant-col-lg-pull-17 {
  6455. right: 70.83333333%;
  6456. }
  6457. .ant-col-lg-offset-17 {
  6458. margin-left: 70.83333333%;
  6459. }
  6460. .ant-col-lg-order-17 {
  6461. order: 17;
  6462. }
  6463. .ant-col-lg-16 {
  6464. display: block;
  6465. width: 66.66666667%;
  6466. }
  6467. .ant-col-lg-push-16 {
  6468. left: 66.66666667%;
  6469. }
  6470. .ant-col-lg-pull-16 {
  6471. right: 66.66666667%;
  6472. }
  6473. .ant-col-lg-offset-16 {
  6474. margin-left: 66.66666667%;
  6475. }
  6476. .ant-col-lg-order-16 {
  6477. order: 16;
  6478. }
  6479. .ant-col-lg-15 {
  6480. display: block;
  6481. width: 62.5%;
  6482. }
  6483. .ant-col-lg-push-15 {
  6484. left: 62.5%;
  6485. }
  6486. .ant-col-lg-pull-15 {
  6487. right: 62.5%;
  6488. }
  6489. .ant-col-lg-offset-15 {
  6490. margin-left: 62.5%;
  6491. }
  6492. .ant-col-lg-order-15 {
  6493. order: 15;
  6494. }
  6495. .ant-col-lg-14 {
  6496. display: block;
  6497. width: 58.33333333%;
  6498. }
  6499. .ant-col-lg-push-14 {
  6500. left: 58.33333333%;
  6501. }
  6502. .ant-col-lg-pull-14 {
  6503. right: 58.33333333%;
  6504. }
  6505. .ant-col-lg-offset-14 {
  6506. margin-left: 58.33333333%;
  6507. }
  6508. .ant-col-lg-order-14 {
  6509. order: 14;
  6510. }
  6511. .ant-col-lg-13 {
  6512. display: block;
  6513. width: 54.16666667%;
  6514. }
  6515. .ant-col-lg-push-13 {
  6516. left: 54.16666667%;
  6517. }
  6518. .ant-col-lg-pull-13 {
  6519. right: 54.16666667%;
  6520. }
  6521. .ant-col-lg-offset-13 {
  6522. margin-left: 54.16666667%;
  6523. }
  6524. .ant-col-lg-order-13 {
  6525. order: 13;
  6526. }
  6527. .ant-col-lg-12 {
  6528. display: block;
  6529. width: 50%;
  6530. }
  6531. .ant-col-lg-push-12 {
  6532. left: 50%;
  6533. }
  6534. .ant-col-lg-pull-12 {
  6535. right: 50%;
  6536. }
  6537. .ant-col-lg-offset-12 {
  6538. margin-left: 50%;
  6539. }
  6540. .ant-col-lg-order-12 {
  6541. order: 12;
  6542. }
  6543. .ant-col-lg-11 {
  6544. display: block;
  6545. width: 45.83333333%;
  6546. }
  6547. .ant-col-lg-push-11 {
  6548. left: 45.83333333%;
  6549. }
  6550. .ant-col-lg-pull-11 {
  6551. right: 45.83333333%;
  6552. }
  6553. .ant-col-lg-offset-11 {
  6554. margin-left: 45.83333333%;
  6555. }
  6556. .ant-col-lg-order-11 {
  6557. order: 11;
  6558. }
  6559. .ant-col-lg-10 {
  6560. display: block;
  6561. width: 41.66666667%;
  6562. }
  6563. .ant-col-lg-push-10 {
  6564. left: 41.66666667%;
  6565. }
  6566. .ant-col-lg-pull-10 {
  6567. right: 41.66666667%;
  6568. }
  6569. .ant-col-lg-offset-10 {
  6570. margin-left: 41.66666667%;
  6571. }
  6572. .ant-col-lg-order-10 {
  6573. order: 10;
  6574. }
  6575. .ant-col-lg-9 {
  6576. display: block;
  6577. width: 37.5%;
  6578. }
  6579. .ant-col-lg-push-9 {
  6580. left: 37.5%;
  6581. }
  6582. .ant-col-lg-pull-9 {
  6583. right: 37.5%;
  6584. }
  6585. .ant-col-lg-offset-9 {
  6586. margin-left: 37.5%;
  6587. }
  6588. .ant-col-lg-order-9 {
  6589. order: 9;
  6590. }
  6591. .ant-col-lg-8 {
  6592. display: block;
  6593. width: 33.33333333%;
  6594. }
  6595. .ant-col-lg-push-8 {
  6596. left: 33.33333333%;
  6597. }
  6598. .ant-col-lg-pull-8 {
  6599. right: 33.33333333%;
  6600. }
  6601. .ant-col-lg-offset-8 {
  6602. margin-left: 33.33333333%;
  6603. }
  6604. .ant-col-lg-order-8 {
  6605. order: 8;
  6606. }
  6607. .ant-col-lg-7 {
  6608. display: block;
  6609. width: 29.16666667%;
  6610. }
  6611. .ant-col-lg-push-7 {
  6612. left: 29.16666667%;
  6613. }
  6614. .ant-col-lg-pull-7 {
  6615. right: 29.16666667%;
  6616. }
  6617. .ant-col-lg-offset-7 {
  6618. margin-left: 29.16666667%;
  6619. }
  6620. .ant-col-lg-order-7 {
  6621. order: 7;
  6622. }
  6623. .ant-col-lg-6 {
  6624. display: block;
  6625. width: 25%;
  6626. }
  6627. .ant-col-lg-push-6 {
  6628. left: 25%;
  6629. }
  6630. .ant-col-lg-pull-6 {
  6631. right: 25%;
  6632. }
  6633. .ant-col-lg-offset-6 {
  6634. margin-left: 25%;
  6635. }
  6636. .ant-col-lg-order-6 {
  6637. order: 6;
  6638. }
  6639. .ant-col-lg-5 {
  6640. display: block;
  6641. width: 20.83333333%;
  6642. }
  6643. .ant-col-lg-push-5 {
  6644. left: 20.83333333%;
  6645. }
  6646. .ant-col-lg-pull-5 {
  6647. right: 20.83333333%;
  6648. }
  6649. .ant-col-lg-offset-5 {
  6650. margin-left: 20.83333333%;
  6651. }
  6652. .ant-col-lg-order-5 {
  6653. order: 5;
  6654. }
  6655. .ant-col-lg-4 {
  6656. display: block;
  6657. width: 16.66666667%;
  6658. }
  6659. .ant-col-lg-push-4 {
  6660. left: 16.66666667%;
  6661. }
  6662. .ant-col-lg-pull-4 {
  6663. right: 16.66666667%;
  6664. }
  6665. .ant-col-lg-offset-4 {
  6666. margin-left: 16.66666667%;
  6667. }
  6668. .ant-col-lg-order-4 {
  6669. order: 4;
  6670. }
  6671. .ant-col-lg-3 {
  6672. display: block;
  6673. width: 12.5%;
  6674. }
  6675. .ant-col-lg-push-3 {
  6676. left: 12.5%;
  6677. }
  6678. .ant-col-lg-pull-3 {
  6679. right: 12.5%;
  6680. }
  6681. .ant-col-lg-offset-3 {
  6682. margin-left: 12.5%;
  6683. }
  6684. .ant-col-lg-order-3 {
  6685. order: 3;
  6686. }
  6687. .ant-col-lg-2 {
  6688. display: block;
  6689. width: 8.33333333%;
  6690. }
  6691. .ant-col-lg-push-2 {
  6692. left: 8.33333333%;
  6693. }
  6694. .ant-col-lg-pull-2 {
  6695. right: 8.33333333%;
  6696. }
  6697. .ant-col-lg-offset-2 {
  6698. margin-left: 8.33333333%;
  6699. }
  6700. .ant-col-lg-order-2 {
  6701. order: 2;
  6702. }
  6703. .ant-col-lg-1 {
  6704. display: block;
  6705. width: 4.16666667%;
  6706. }
  6707. .ant-col-lg-push-1 {
  6708. left: 4.16666667%;
  6709. }
  6710. .ant-col-lg-pull-1 {
  6711. right: 4.16666667%;
  6712. }
  6713. .ant-col-lg-offset-1 {
  6714. margin-left: 4.16666667%;
  6715. }
  6716. .ant-col-lg-order-1 {
  6717. order: 1;
  6718. }
  6719. .ant-col-lg-0 {
  6720. display: none;
  6721. }
  6722. .ant-col-push-0 {
  6723. left: auto;
  6724. }
  6725. .ant-col-pull-0 {
  6726. right: auto;
  6727. }
  6728. .ant-col-lg-push-0 {
  6729. left: auto;
  6730. }
  6731. .ant-col-lg-pull-0 {
  6732. right: auto;
  6733. }
  6734. .ant-col-lg-offset-0 {
  6735. margin-left: 0;
  6736. }
  6737. .ant-col-lg-order-0 {
  6738. order: 0;
  6739. }
  6740. }
  6741. .ant-modal {
  6742. position: relative;
  6743. width: auto;
  6744. margin: 0 auto;
  6745. top: 100px;
  6746. padding-bottom: 24px;
  6747. }
  6748. .ant-modal-wrap {
  6749. position: fixed;
  6750. overflow: auto;
  6751. top: 0;
  6752. right: 0;
  6753. bottom: 0;
  6754. left: 0;
  6755. z-index: 1000;
  6756. -webkit-overflow-scrolling: touch;
  6757. outline: 0;
  6758. }
  6759. .ant-modal-title {
  6760. margin: 0;
  6761. font-size: 14px;
  6762. line-height: 21px;
  6763. font-weight: bold;
  6764. }
  6765. .ant-modal-content {
  6766. position: relative;
  6767. background-color: #fff;
  6768. border: 0;
  6769. border-radius: 4px;
  6770. background-clip: padding-box;
  6771. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  6772. }
  6773. .ant-modal-close {
  6774. cursor: pointer;
  6775. border: 0;
  6776. background: transparent;
  6777. position: absolute;
  6778. right: 16px;
  6779. top: 16px;
  6780. z-index: 10;
  6781. font-weight: 700;
  6782. line-height: 1;
  6783. text-decoration: none;
  6784. transition: color .3s ease;
  6785. color: rgba(0, 0, 0, 0.43);
  6786. outline: 0;
  6787. }
  6788. .ant-modal-close-x {
  6789. display: block;
  6790. font-style: normal;
  6791. vertical-align: baseline;
  6792. text-align: center;
  6793. text-transform: none;
  6794. text-rendering: auto;
  6795. width: 14px;
  6796. height: 14px;
  6797. font-size: 14px;
  6798. line-height: 1;
  6799. }
  6800. .ant-modal-close-x:before {
  6801. content: "\E633";
  6802. display: block;
  6803. font-family: "anticon" !important;
  6804. }
  6805. .ant-modal-close:focus,
  6806. .ant-modal-close:hover {
  6807. color: #444;
  6808. text-decoration: none;
  6809. }
  6810. .ant-modal-header {
  6811. padding: 14px 16px;
  6812. border-radius: 4px 4px 0 0;
  6813. background: #fff;
  6814. color: rgba(0, 0, 0, 0.65);
  6815. border-bottom: 1px solid #e9e9e9;
  6816. }
  6817. .ant-modal-body {
  6818. padding: 16px;
  6819. font-size: 12px;
  6820. line-height: 1.5;
  6821. }
  6822. .ant-modal-footer {
  6823. border-top: 1px solid #e9e9e9;
  6824. padding: 10px 16px 10px 10px;
  6825. text-align: right;
  6826. border-radius: 0 0 4px 4px;
  6827. }
  6828. .ant-modal-footer button + button {
  6829. margin-left: 8px;
  6830. margin-bottom: 0;
  6831. }
  6832. .ant-modal.zoom-enter,
  6833. .ant-modal.zoom-appear {
  6834. animation-duration: 0.3s;
  6835. transform: none;
  6836. opacity: 0;
  6837. }
  6838. .ant-modal-mask {
  6839. position: fixed;
  6840. top: 0;
  6841. right: 0;
  6842. left: 0;
  6843. bottom: 0;
  6844. background-color: #373737;
  6845. background-color: rgba(55, 55, 55, 0.6);
  6846. height: 100%;
  6847. z-index: 1000;
  6848. filter: alpha(opacity=50);
  6849. }
  6850. .ant-modal-mask-hidden {
  6851. display: none;
  6852. }
  6853. .ant-modal-open {
  6854. overflow: hidden;
  6855. }
  6856. @media (max-width: 768px) {
  6857. .ant-modal {
  6858. width: auto !important;
  6859. margin: 10px;
  6860. }
  6861. .vertical-center-modal .ant-modal {
  6862. flex: 1;
  6863. }
  6864. }
  6865. .ant-confirm .ant-modal-header {
  6866. display: none;
  6867. }
  6868. .ant-confirm .ant-modal-close {
  6869. display: none;
  6870. }
  6871. .ant-confirm .ant-modal-body {
  6872. padding: 30px 40px;
  6873. }
  6874. .ant-confirm-body-wrapper {
  6875. zoom: 1;
  6876. }
  6877. .ant-confirm-body-wrapper:before,
  6878. .ant-confirm-body-wrapper:after {
  6879. content: " ";
  6880. display: table;
  6881. }
  6882. .ant-confirm-body-wrapper:after {
  6883. clear: both;
  6884. visibility: hidden;
  6885. font-size: 0;
  6886. height: 0;
  6887. }
  6888. .ant-confirm-body .ant-confirm-title {
  6889. color: rgba(0, 0, 0, 0.65);
  6890. font-weight: bold;
  6891. font-size: 14px;
  6892. }
  6893. .ant-confirm-body .ant-confirm-content {
  6894. margin-left: 42px;
  6895. font-size: 12px;
  6896. color: rgba(0, 0, 0, 0.65);
  6897. margin-top: 8px;
  6898. }
  6899. .ant-confirm-body > .anticon {
  6900. font-size: 24px;
  6901. margin-right: 16px;
  6902. padding: 0 1px;
  6903. float: left;
  6904. }
  6905. .ant-confirm .ant-confirm-btns {
  6906. margin-top: 30px;
  6907. float: right;
  6908. }
  6909. .ant-confirm .ant-confirm-btns button + button {
  6910. margin-left: 10px;
  6911. margin-bottom: 0;
  6912. }
  6913. .ant-confirm-error .ant-confirm-body > .anticon {
  6914. color: #f04134;
  6915. }
  6916. .ant-confirm-warning .ant-confirm-body > .anticon,
  6917. .ant-confirm-confirm .ant-confirm-body > .anticon {
  6918. color: #ffbf00;
  6919. }
  6920. .ant-confirm-info .ant-confirm-body > .anticon {
  6921. color: #58a3ff;
  6922. }
  6923. .ant-confirm-success .ant-confirm-body > .anticon {
  6924. color: #00a854;
  6925. }
  6926. .change-modal .ant-modal-close span {
  6927. color: #fff;
  6928. }
  6929. .change-modal .ant-modal-header {
  6930. background: #000;
  6931. color: #fff;
  6932. font-size: 18px;
  6933. }
  6934. .change-modal .ant-modal-body {
  6935. padding: 20px;
  6936. padding-bottom: 10px;
  6937. }
  6938. .change-modal .ant-modal-body p {
  6939. margin-bottom: 10px;
  6940. }
  6941. .change-modal .ant-modal-body p > span {
  6942. text-align: right;
  6943. padding-right: 6px;
  6944. display: inline-block;
  6945. width: 25%;
  6946. }
  6947. .change-modal .ant-modal-body p input {
  6948. width: 70%;
  6949. }
  6950. .change-modal .ant-modal-body p .mixwidth {
  6951. width: 38%;
  6952. margin-right: 10px;
  6953. }
  6954. .change-modal .ant-modal-body .modal-intro {
  6955. text-align: center;
  6956. }
  6957. .change-modal .ant-modal-body .modal-intro i {
  6958. font-size: 15px;
  6959. color: #79b5ff;
  6960. margin-right: 6px;
  6961. }
  6962. .ant-select {
  6963. box-sizing: border-box;
  6964. display: inline-block;
  6965. position: relative;
  6966. color: rgba(0, 0, 0, 0.65);
  6967. font-size: 12px;
  6968. }
  6969. .ant-select > ul > li > a {
  6970. padding: 0;
  6971. background-color: #fff;
  6972. }
  6973. .ant-select-arrow {
  6974. font-style: normal;
  6975. vertical-align: baseline;
  6976. text-align: center;
  6977. text-transform: none;
  6978. text-rendering: optimizeLegibility;
  6979. -webkit-font-smoothing: antialiased;
  6980. -moz-osx-font-smoothing: grayscale;
  6981. position: absolute;
  6982. top: 50%;
  6983. right: 8px;
  6984. line-height: 1;
  6985. margin-top: -6px;
  6986. display: inline-block;
  6987. font-size: 12px;
  6988. font-size: 9px \9;
  6989. transform: scale(0.75) rotate(0deg);
  6990. /* IE6-IE8 */
  6991. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  6992. zoom: 1;
  6993. }
  6994. .ant-select-arrow:before {
  6995. display: block;
  6996. font-family: "anticon" !important;
  6997. }
  6998. :root .ant-select-arrow {
  6999. filter: none;
  7000. }
  7001. :root .ant-select-arrow {
  7002. font-size: 12px;
  7003. }
  7004. .ant-select-arrow * {
  7005. display: none;
  7006. }
  7007. .ant-select-arrow:before {
  7008. content: '\E61D';
  7009. transition: transform 0.2s ease;
  7010. }
  7011. .ant-select-selection {
  7012. outline: none;
  7013. user-select: none;
  7014. box-sizing: border-box;
  7015. display: block;
  7016. background-color: #fff;
  7017. border-radius: 4px;
  7018. border: 1px solid #d9d9d9;
  7019. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7020. }
  7021. .ant-select-selection:hover {
  7022. border-color: #80b9ff;
  7023. }
  7024. .ant-select-focused .ant-select-selection,
  7025. .ant-select-selection:focus,
  7026. .ant-select-selection:active {
  7027. border-color: #80b9ff;
  7028. outline: 0;
  7029. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  7030. }
  7031. .ant-select-selection__clear {
  7032. display: inline-block;
  7033. font-style: normal;
  7034. vertical-align: baseline;
  7035. text-align: center;
  7036. text-transform: none;
  7037. text-rendering: auto;
  7038. opacity: 0;
  7039. position: absolute;
  7040. right: 8px;
  7041. z-index: 1;
  7042. background: #fff;
  7043. top: 50%;
  7044. font-size: 12px;
  7045. color: rgba(0, 0, 0, 0.25);
  7046. width: 12px;
  7047. height: 12px;
  7048. margin-top: -6px;
  7049. line-height: 12px;
  7050. cursor: pointer;
  7051. transition: color 0.3s ease, opacity 0.15s ease;
  7052. }
  7053. .ant-select-selection__clear:before {
  7054. display: block;
  7055. font-family: 'anticon';
  7056. text-rendering: optimizeLegibility;
  7057. -webkit-font-smoothing: antialiased;
  7058. -moz-osx-font-smoothing: grayscale;
  7059. content: "\E62E";
  7060. }
  7061. .ant-select-selection__clear:hover {
  7062. color: rgba(0, 0, 0, 0.43);
  7063. }
  7064. .ant-select-selection:hover .ant-select-selection__clear {
  7065. opacity: 1;
  7066. }
  7067. .ant-select-selection-selected-value {
  7068. float: left;
  7069. overflow: hidden;
  7070. text-overflow: ellipsis;
  7071. white-space: nowrap;
  7072. max-width: 100%;
  7073. padding-right: 14px;
  7074. }
  7075. .ant-select-disabled {
  7076. color: rgba(0, 0, 0, 0.25);
  7077. }
  7078. .ant-select-disabled .ant-select-selection {
  7079. background: #f7f7f7;
  7080. cursor: not-allowed;
  7081. }
  7082. .ant-select-disabled .ant-select-selection:hover,
  7083. .ant-select-disabled .ant-select-selection:focus,
  7084. .ant-select-disabled .ant-select-selection:active {
  7085. border-color: #d9d9d9;
  7086. box-shadow: none;
  7087. }
  7088. .ant-select-disabled .ant-select-selection__clear {
  7089. display: none;
  7090. visibility: hidden;
  7091. pointer-events: none;
  7092. }
  7093. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
  7094. background: #e9e9e9;
  7095. color: #aaa;
  7096. padding-right: 10px;
  7097. }
  7098. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7099. display: none;
  7100. }
  7101. .ant-select-selection--single {
  7102. height: 28px;
  7103. position: relative;
  7104. cursor: pointer;
  7105. }
  7106. .ant-select-selection__rendered {
  7107. display: block;
  7108. margin-left: 7px;
  7109. margin-right: 7px;
  7110. position: relative;
  7111. line-height: 26px;
  7112. }
  7113. .ant-select-selection__rendered:after {
  7114. content: '.';
  7115. visibility: hidden;
  7116. pointer-events: none;
  7117. display: inline-block;
  7118. width: 0;
  7119. }
  7120. .ant-select-lg .ant-select-selection--single {
  7121. height: 32px;
  7122. }
  7123. .ant-select-lg .ant-select-selection__rendered {
  7124. line-height: 30px;
  7125. }
  7126. .ant-select-lg .ant-select-selection--multiple {
  7127. min-height: 32px;
  7128. }
  7129. .ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li {
  7130. height: 24px;
  7131. line-height: 24px;
  7132. }
  7133. .ant-select-sm .ant-select-selection--single {
  7134. height: 22px;
  7135. }
  7136. .ant-select-sm .ant-select-selection__rendered {
  7137. line-height: 20px;
  7138. }
  7139. .ant-select-sm .ant-select-selection--multiple {
  7140. min-height: 22px;
  7141. }
  7142. .ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li {
  7143. height: 14px;
  7144. line-height: 14px;
  7145. }
  7146. .ant-select-disabled .ant-select-selection__choice__remove {
  7147. color: rgba(0, 0, 0, 0.25);
  7148. cursor: default;
  7149. }
  7150. .ant-select-disabled .ant-select-selection__choice__remove:hover {
  7151. color: rgba(0, 0, 0, 0.25);
  7152. }
  7153. .ant-select-search__field__wrap {
  7154. display: inline-block;
  7155. position: relative;
  7156. }
  7157. .ant-select-selection__placeholder,
  7158. .ant-select-search__field__placeholder {
  7159. position: absolute;
  7160. top: 50%;
  7161. left: 0;
  7162. right: 9px;
  7163. color: #ccc;
  7164. line-height: 20px;
  7165. height: 20px;
  7166. max-width: 100%;
  7167. margin-top: -10px;
  7168. overflow: hidden;
  7169. text-overflow: ellipsis;
  7170. white-space: nowrap;
  7171. }
  7172. .ant-select-search__field__placeholder {
  7173. left: 8px;
  7174. }
  7175. .ant-select-search--inline {
  7176. position: absolute;
  7177. height: 100%;
  7178. }
  7179. .ant-select-selection--multiple .ant-select-search--inline {
  7180. float: left;
  7181. position: static;
  7182. }
  7183. .ant-select-search--inline .ant-select-search__field__wrap {
  7184. width: 100%;
  7185. height: 100%;
  7186. }
  7187. .ant-select-search--inline .ant-select-search__field {
  7188. border: 0;
  7189. font-size: 100%;
  7190. height: 100%;
  7191. width: 100%;
  7192. background: transparent;
  7193. outline: 0;
  7194. border-radius: 4px;
  7195. }
  7196. .ant-select-search--inline .ant-select-search__field__mirror {
  7197. position: absolute;
  7198. top: 0;
  7199. left: -9999px;
  7200. white-space: pre;
  7201. pointer-events: none;
  7202. }
  7203. .ant-select-search--inline > i {
  7204. float: right;
  7205. }
  7206. .ant-select-selection--multiple {
  7207. min-height: 28px;
  7208. cursor: text;
  7209. padding-bottom: 3px;
  7210. zoom: 1;
  7211. }
  7212. .ant-select-selection--multiple:before,
  7213. .ant-select-selection--multiple:after {
  7214. content: " ";
  7215. display: table;
  7216. }
  7217. .ant-select-selection--multiple:after {
  7218. clear: both;
  7219. visibility: hidden;
  7220. font-size: 0;
  7221. height: 0;
  7222. }
  7223. .ant-select-selection--multiple .ant-select-search--inline {
  7224. width: auto;
  7225. padding: 0;
  7226. }
  7227. .ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  7228. width: 0.75em;
  7229. }
  7230. .ant-select-selection--multiple .ant-select-selection__rendered {
  7231. margin-left: 5px;
  7232. margin-bottom: -3px;
  7233. height: auto;
  7234. }
  7235. .ant-select-selection--multiple > ul > li,
  7236. .ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  7237. margin-top: 3px;
  7238. height: 20px;
  7239. line-height: 20px;
  7240. }
  7241. .ant-select-selection--multiple .ant-select-selection__choice {
  7242. background-color: #f3f3f3;
  7243. border-radius: 4px;
  7244. cursor: default;
  7245. float: left;
  7246. margin-right: 4px;
  7247. max-width: 99%;
  7248. position: relative;
  7249. overflow: hidden;
  7250. transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7251. padding: 0 20px 0 10px;
  7252. }
  7253. .ant-select-selection--multiple .ant-select-selection__choice__disabled {
  7254. padding: 0 10px;
  7255. }
  7256. .ant-select-selection--multiple .ant-select-selection__choice__content {
  7257. display: inline-block;
  7258. white-space: nowrap;
  7259. overflow: hidden;
  7260. text-overflow: ellipsis;
  7261. max-width: 100%;
  7262. transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7263. }
  7264. .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7265. font-style: normal;
  7266. vertical-align: baseline;
  7267. text-align: center;
  7268. text-transform: none;
  7269. line-height: 1;
  7270. text-rendering: optimizeLegibility;
  7271. -webkit-font-smoothing: antialiased;
  7272. -moz-osx-font-smoothing: grayscale;
  7273. color: rgba(0, 0, 0, 0.43);
  7274. line-height: inherit;
  7275. cursor: pointer;
  7276. font-weight: bold;
  7277. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7278. display: inline-block;
  7279. font-size: 12px;
  7280. font-size: 8px \9;
  7281. transform: scale(0.66666667) rotate(0deg);
  7282. /* IE6-IE8 */
  7283. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7284. zoom: 1;
  7285. position: absolute;
  7286. right: 4px;
  7287. padding: 0 0 0 8px;
  7288. }
  7289. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  7290. display: block;
  7291. font-family: "anticon" !important;
  7292. }
  7293. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7294. filter: none;
  7295. }
  7296. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  7297. font-size: 12px;
  7298. }
  7299. .ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
  7300. color: #404040;
  7301. }
  7302. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  7303. content: "\E633";
  7304. }
  7305. .ant-select-open .ant-select-arrow {
  7306. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  7307. -ms-transform: rotate(180deg);
  7308. }
  7309. .ant-select-open .ant-select-arrow:before {
  7310. transform: rotate(180deg);
  7311. }
  7312. .ant-select-open .ant-select-selection {
  7313. border-color: #80b9ff;
  7314. outline: 0;
  7315. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  7316. }
  7317. .ant-select-combobox .ant-select-arrow {
  7318. display: none;
  7319. }
  7320. .ant-select-combobox .ant-select-search--inline {
  7321. height: 100%;
  7322. width: 100%;
  7323. float: none;
  7324. }
  7325. .ant-select-combobox .ant-select-search__field__wrap {
  7326. width: 100%;
  7327. height: 100%;
  7328. }
  7329. .ant-select-combobox .ant-select-search__field {
  7330. width: 100%;
  7331. height: 100%;
  7332. position: relative;
  7333. z-index: 1;
  7334. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  7335. box-shadow: none;
  7336. }
  7337. .ant-select-dropdown {
  7338. background-color: #fff;
  7339. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  7340. border-radius: 4px;
  7341. box-sizing: border-box;
  7342. z-index: 1050;
  7343. left: -9999px;
  7344. top: -9999px;
  7345. position: absolute;
  7346. outline: none;
  7347. overflow: hidden;
  7348. font-size: 12px;
  7349. }
  7350. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
  7351. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  7352. animation-name: antSlideUpIn;
  7353. }
  7354. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
  7355. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  7356. animation-name: antSlideDownIn;
  7357. }
  7358. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  7359. animation-name: antSlideUpOut;
  7360. }
  7361. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  7362. animation-name: antSlideDownOut;
  7363. }
  7364. .ant-select-dropdown-hidden {
  7365. display: none;
  7366. }
  7367. .ant-select-dropdown-menu {
  7368. outline: none;
  7369. margin-bottom: 0;
  7370. padding-left: 0;
  7371. list-style: none;
  7372. max-height: 250px;
  7373. overflow: auto;
  7374. }
  7375. .ant-select-dropdown-menu-item-group-list {
  7376. margin: 0;
  7377. padding: 0;
  7378. }
  7379. .ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item {
  7380. padding-left: 24px;
  7381. }
  7382. .ant-select-dropdown-menu-item-group-title {
  7383. color: rgba(0, 0, 0, 0.43);
  7384. line-height: 1.5;
  7385. padding: 8px 16px;
  7386. }
  7387. .ant-select-dropdown-menu-item {
  7388. position: relative;
  7389. display: block;
  7390. padding: 7px 16px;
  7391. font-weight: normal;
  7392. color: rgba(0, 0, 0, 0.65);
  7393. white-space: nowrap;
  7394. cursor: pointer;
  7395. overflow: hidden;
  7396. transition: background 0.3s ease;
  7397. }
  7398. .ant-select-dropdown-menu-item:hover,
  7399. .ant-select-dropdown-menu-item-active {
  7400. background-color: #f2f8ff;
  7401. }
  7402. .ant-select-dropdown-menu-item-disabled {
  7403. color: rgba(0, 0, 0, 0.25);
  7404. cursor: not-allowed;
  7405. }
  7406. .ant-select-dropdown-menu-item-disabled:hover {
  7407. color: rgba(0, 0, 0, 0.25);
  7408. background-color: #fff;
  7409. cursor: not-allowed;
  7410. }
  7411. .ant-select-dropdown-menu-item-selected,
  7412. .ant-select-dropdown-menu-item-selected:hover {
  7413. background-color: #f7f7f7;
  7414. font-weight: bold;
  7415. color: rgba(0, 0, 0, 0.65);
  7416. }
  7417. .ant-select-dropdown-menu-item-divider {
  7418. height: 1px;
  7419. margin: 1px 0;
  7420. overflow: hidden;
  7421. background-color: #e5e5e5;
  7422. line-height: 0;
  7423. }
  7424. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7425. font-family: 'anticon';
  7426. text-rendering: optimizeLegibility;
  7427. -webkit-font-smoothing: antialiased;
  7428. -moz-osx-font-smoothing: grayscale;
  7429. content: "\E632";
  7430. color: transparent;
  7431. display: inline-block;
  7432. font-size: 12px;
  7433. font-size: 10px \9;
  7434. transform: scale(0.83333333) rotate(0deg);
  7435. /* IE6-IE8 */
  7436. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7437. zoom: 1;
  7438. transition: all 0.2s ease;
  7439. position: absolute;
  7440. top: 50%;
  7441. transform: translateY(-50%);
  7442. right: 16px;
  7443. font-weight: bold;
  7444. text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  7445. }
  7446. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7447. filter: none;
  7448. }
  7449. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7450. font-size: 12px;
  7451. }
  7452. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover:after {
  7453. color: #ddd;
  7454. }
  7455. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled:after {
  7456. display: none;
  7457. }
  7458. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:after,
  7459. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover:after {
  7460. color: #58a3ff;
  7461. display: inline-block;
  7462. }
  7463. .ant-select-dropdown-container-open .ant-select-dropdown,
  7464. .ant-select-dropdown-open .ant-select-dropdown {
  7465. display: block;
  7466. }
  7467. .ant-upload {
  7468. font-size: 12px;
  7469. outline: 0;
  7470. }
  7471. .ant-upload-btn {
  7472. display: block;
  7473. width: 100%;
  7474. outline: none;
  7475. }
  7476. .ant-upload input[type="file"] {
  7477. cursor: pointer;
  7478. }
  7479. .ant-upload.ant-upload-select {
  7480. display: inline-block;
  7481. }
  7482. .ant-upload.ant-upload-select-picture-card {
  7483. border: 1px dashed #d9d9d9;
  7484. width: 96px;
  7485. height: 96px;
  7486. border-radius: 4px;
  7487. background-color: #fbfbfb;
  7488. text-align: center;
  7489. cursor: pointer;
  7490. transition: border-color 0.3s ease;
  7491. display: inline-block;
  7492. vertical-align: top;
  7493. margin-right: 8px;
  7494. margin-bottom: 8px;
  7495. }
  7496. .ant-upload.ant-upload-select-picture-card > .ant-upload {
  7497. display: block;
  7498. width: 100%;
  7499. height: 100%;
  7500. padding: 20px 0;
  7501. }
  7502. .ant-upload.ant-upload-select-picture-card:hover {
  7503. border-color: #58a3ff;
  7504. }
  7505. .ant-upload.ant-upload-drag {
  7506. border: 1px dashed #d9d9d9;
  7507. transition: border-color 0.3s ease;
  7508. cursor: pointer;
  7509. border-radius: 4px;
  7510. text-align: center;
  7511. width: 100%;
  7512. height: 100%;
  7513. position: relative;
  7514. }
  7515. .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  7516. border: 2px dashed #80b9ff;
  7517. }
  7518. .ant-upload.ant-upload-drag.ant-upload-disabled {
  7519. cursor: not-allowed;
  7520. }
  7521. .ant-upload.ant-upload-drag .ant-upload-btn {
  7522. display: table;
  7523. height: 100%;
  7524. }
  7525. .ant-upload.ant-upload-drag .ant-upload-drag-container {
  7526. display: table-cell;
  7527. vertical-align: middle;
  7528. }
  7529. .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  7530. border-color: #80b9ff;
  7531. }
  7532. .ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  7533. height: 60px;
  7534. margin-bottom: 24px;
  7535. }
  7536. .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  7537. font-size: 80px;
  7538. margin-top: -5px;
  7539. color: #80b9ff;
  7540. }
  7541. .ant-upload.ant-upload-drag p.ant-upload-text {
  7542. font-size: 14px;
  7543. }
  7544. .ant-upload.ant-upload-drag p.ant-upload-hint {
  7545. font-size: 12px;
  7546. color: rgba(0, 0, 0, 0.43);
  7547. }
  7548. .ant-upload.ant-upload-drag .anticon-plus {
  7549. font-size: 30px;
  7550. transition: all 0.3s ease;
  7551. color: rgba(0, 0, 0, 0.25);
  7552. }
  7553. .ant-upload.ant-upload-drag .anticon-plus:hover {
  7554. color: rgba(0, 0, 0, 0.43);
  7555. }
  7556. .ant-upload.ant-upload-drag:hover .anticon-plus {
  7557. color: rgba(0, 0, 0, 0.43);
  7558. }
  7559. .ant-upload-list {
  7560. overflow: hidden;
  7561. }
  7562. .ant-upload-list-item {
  7563. overflow: hidden;
  7564. margin-top: 8px;
  7565. font-size: 12px;
  7566. }
  7567. .ant-upload-list-item-info {
  7568. height: 22px;
  7569. line-height: 22px;
  7570. padding: 0 4px;
  7571. transition: background-color 0.3s ease;
  7572. }
  7573. .ant-upload-list-item-info .anticon-paper-clip {
  7574. margin-right: 4px;
  7575. font-size: 12px;
  7576. color: rgba(0, 0, 0, 0.43);
  7577. }
  7578. .ant-upload-list-item-info .anticon-cross {
  7579. display: inline-block;
  7580. font-size: 12px;
  7581. font-size: 10px \9;
  7582. transform: scale(0.83333333) rotate(0deg);
  7583. /* IE6-IE8 */
  7584. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7585. zoom: 1;
  7586. transition: all 0.3s ease;
  7587. opacity: 0;
  7588. cursor: pointer;
  7589. float: right;
  7590. color: rgba(0, 0, 0, 0.43);
  7591. line-height: 22px;
  7592. }
  7593. :root .ant-upload-list-item-info .anticon-cross {
  7594. filter: none;
  7595. }
  7596. :root .ant-upload-list-item-info .anticon-cross {
  7597. font-size: 12px;
  7598. }
  7599. .ant-upload-list-item-info .anticon-cross:hover {
  7600. color: rgba(0, 0, 0, 0.65);
  7601. }
  7602. .ant-upload-list-item:hover .ant-upload-list-item-info {
  7603. background-color: #f2f8ff;
  7604. }
  7605. .ant-upload-list-item:hover .anticon-cross {
  7606. opacity: 1;
  7607. }
  7608. .ant-upload-list-item-error,
  7609. .ant-upload-list-item-error .anticon-paper-clip,
  7610. .ant-upload-list-item-error .ant-upload-list-item-name {
  7611. color: #f04134;
  7612. }
  7613. .ant-upload-list-item-error .anticon-cross {
  7614. opacity: 1;
  7615. color: #f04134 !important;
  7616. }
  7617. .ant-upload-list-item-progress {
  7618. padding: 0 8px 0 20px;
  7619. margin-top: -2px;
  7620. margin-bottom: 1px;
  7621. font-size: 12px;
  7622. }
  7623. .ant-upload-list-item-progress .ant-progress-line-inner {
  7624. vertical-align: middle;
  7625. }
  7626. .ant-upload-list-picture .ant-upload-list-item,
  7627. .ant-upload-list-picture-card .ant-upload-list-item {
  7628. padding: 8px;
  7629. border-radius: 4px;
  7630. border: 1px solid #d9d9d9;
  7631. height: 66px;
  7632. position: relative;
  7633. }
  7634. .ant-upload-list-picture .ant-upload-list-item:hover,
  7635. .ant-upload-list-picture-card .ant-upload-list-item:hover {
  7636. background: transparent;
  7637. }
  7638. .ant-upload-list-picture .ant-upload-list-item-error,
  7639. .ant-upload-list-picture-card .ant-upload-list-item-error {
  7640. border-color: #f04134;
  7641. }
  7642. .ant-upload-list-picture .ant-upload-list-item-info,
  7643. .ant-upload-list-picture-card .ant-upload-list-item-info {
  7644. padding: 0;
  7645. }
  7646. .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
  7647. .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  7648. background: transparent;
  7649. }
  7650. .ant-upload-list-picture .ant-upload-list-item-uploading,
  7651. .ant-upload-list-picture-card .ant-upload-list-item-uploading {
  7652. border-style: dashed;
  7653. }
  7654. .ant-upload-list-picture .ant-upload-list-item-thumbnail,
  7655. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  7656. width: 48px;
  7657. height: 48px;
  7658. position: absolute;
  7659. top: 8px;
  7660. left: 8px;
  7661. }
  7662. .ant-upload-list-picture .ant-upload-list-item-thumbnail img,
  7663. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  7664. width: 48px;
  7665. height: 48px;
  7666. display: block;
  7667. overflow: hidden;
  7668. border-radius: 4px;
  7669. }
  7670. .ant-upload-list-picture .ant-upload-list-item-thumbnail.anticon:before,
  7671. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail.anticon:before {
  7672. line-height: 48px;
  7673. font-size: 24px;
  7674. color: rgba(0, 0, 0, 0.43);
  7675. }
  7676. .ant-upload-list-picture .ant-upload-list-item-name,
  7677. .ant-upload-list-picture-card .ant-upload-list-item-name {
  7678. overflow: hidden;
  7679. text-overflow: ellipsis;
  7680. white-space: nowrap;
  7681. margin: 0 0 0 8px;
  7682. line-height: 44px;
  7683. transition: all 0.3s ease;
  7684. padding-left: 48px;
  7685. padding-right: 8px;
  7686. max-width: 100%;
  7687. display: inline-block;
  7688. box-sizing: border-box;
  7689. }
  7690. .ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
  7691. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  7692. line-height: 28px;
  7693. }
  7694. .ant-upload-list-picture .ant-upload-list-item-progress,
  7695. .ant-upload-list-picture-card .ant-upload-list-item-progress {
  7696. padding-left: 56px;
  7697. margin-top: 0;
  7698. }
  7699. .ant-upload-list-picture .anticon-cross,
  7700. .ant-upload-list-picture-card .anticon-cross {
  7701. position: absolute;
  7702. right: 8px;
  7703. top: 8px;
  7704. line-height: 1;
  7705. }
  7706. .ant-upload-list-picture-card {
  7707. display: inline;
  7708. }
  7709. .ant-upload-list-picture-card .ant-upload-list-item {
  7710. display: inline-block;
  7711. width: 96px;
  7712. height: 96px;
  7713. margin: 0 8px 8px 0;
  7714. }
  7715. .ant-upload-list-picture-card .ant-upload-list-item-info {
  7716. height: 100%;
  7717. position: relative;
  7718. }
  7719. .ant-upload-list-picture-card .ant-upload-list-item-info:before {
  7720. content: ' ';
  7721. position: absolute;
  7722. z-index: 1;
  7723. background-color: rgba(0, 0, 0, 0.5);
  7724. transition: all .3s;
  7725. opacity: 0;
  7726. width: 100%;
  7727. height: 100%;
  7728. }
  7729. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-eye-o,
  7730. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-delete {
  7731. z-index: 10;
  7732. transition: all .3;
  7733. cursor: pointer;
  7734. font-size: 16px;
  7735. width: 16px;
  7736. color: rgba(255, 255, 255, 0.91);
  7737. opacity: 0;
  7738. margin: 0 4px;
  7739. }
  7740. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-eye-o:hover,
  7741. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-delete:hover {
  7742. color: #fff;
  7743. }
  7744. .ant-upload-list-picture-card .ant-upload-list-item-info:hover:before {
  7745. opacity: 1;
  7746. }
  7747. .ant-upload-list-picture-card .ant-upload-list-item-info:hover .anticon-eye-o,
  7748. .ant-upload-list-picture-card .ant-upload-list-item-info:hover .anticon-delete {
  7749. opacity: 1;
  7750. }
  7751. .ant-upload-list-picture-card .ant-upload-list-item-actions {
  7752. position: absolute;
  7753. left: 50%;
  7754. top: 50%;
  7755. transform: translate(-50%, -50%);
  7756. z-index: 10;
  7757. white-space: nowrap;
  7758. }
  7759. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
  7760. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  7761. display: block;
  7762. width: 100%;
  7763. height: 100%;
  7764. position: static;
  7765. }
  7766. .ant-upload-list-picture-card .ant-upload-list-item-name {
  7767. display: none;
  7768. }
  7769. .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  7770. background-color: #fbfbfb;
  7771. }
  7772. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  7773. height: auto;
  7774. }
  7775. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info:before,
  7776. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o,
  7777. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  7778. display: none;
  7779. }
  7780. .ant-upload-list-picture-card .ant-upload-list-item-uploading-text {
  7781. margin-top: 18px;
  7782. color: rgba(0, 0, 0, 0.43);
  7783. }
  7784. .ant-upload-list-picture-card .ant-upload-list-item-progress {
  7785. padding-left: 0;
  7786. }
  7787. .ant-upload-list .ant-upload-success-icon {
  7788. color: #00a854;
  7789. font-weight: bold;
  7790. }
  7791. .ant-upload-list .ant-upload-margin-top-enter {
  7792. animation: uploadMarginTopIn 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  7793. }
  7794. .ant-upload-list .ant-upload-margin-top-leave {
  7795. animation: uploadMarginTopOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  7796. }
  7797. @keyframes uploadMarginTopIn {
  7798. from {
  7799. margin-top: -25px;
  7800. opacity: 0;
  7801. }
  7802. }
  7803. @keyframes uploadMarginTopOut {
  7804. to {
  7805. margin-top: -25px;
  7806. opacity: 0;
  7807. }
  7808. }
  7809. .ant-progress {
  7810. display: inline-block;
  7811. }
  7812. .ant-progress-line {
  7813. width: 100%;
  7814. font-size: 12px;
  7815. position: relative;
  7816. }
  7817. .ant-progress-outer {
  7818. display: inline-block;
  7819. width: 100%;
  7820. margin-right: 0;
  7821. padding-right: 0;
  7822. }
  7823. .ant-progress-show-info .ant-progress-outer {
  7824. padding-right: 45px;
  7825. margin-right: -45px;
  7826. }
  7827. .ant-progress-inner {
  7828. display: inline-block;
  7829. width: 100%;
  7830. background-color: #f7f7f7;
  7831. border-radius: 100px;
  7832. vertical-align: middle;
  7833. }
  7834. .ant-progress-circle-trail {
  7835. stroke: #f7f7f7;
  7836. }
  7837. .ant-progress-circle-path {
  7838. stroke: #58a3ff;
  7839. }
  7840. .ant-progress-bg {
  7841. border-radius: 100px;
  7842. background-color: #58a3ff;
  7843. transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  7844. position: relative;
  7845. }
  7846. .ant-progress-text {
  7847. width: 35px;
  7848. text-align: left;
  7849. font-size: 1em;
  7850. margin-left: 10px;
  7851. vertical-align: middle;
  7852. display: inline-block;
  7853. font-family: tahoma;
  7854. position: relative;
  7855. top: -1px;
  7856. }
  7857. .ant-progress-text .anticon {
  7858. font-size: 12px;
  7859. }
  7860. .ant-progress-status-active .ant-progress-bg:before {
  7861. content: "";
  7862. opacity: 0;
  7863. position: absolute;
  7864. top: 0;
  7865. left: 0;
  7866. right: 0;
  7867. bottom: 0;
  7868. background: #fff;
  7869. border-radius: 10px;
  7870. animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  7871. }
  7872. .ant-progress-status-exception .ant-progress-bg {
  7873. background-color: #f04134;
  7874. }
  7875. .ant-progress-status-exception .ant-progress-text {
  7876. color: #f04134;
  7877. }
  7878. .ant-progress-status-exception .ant-progress-circle-path {
  7879. stroke: #f04134;
  7880. }
  7881. .ant-progress-status-success .ant-progress-bg {
  7882. background-color: #00a854;
  7883. }
  7884. .ant-progress-status-success .ant-progress-text {
  7885. color: #00a854;
  7886. }
  7887. .ant-progress-status-success .ant-progress-circle-path {
  7888. stroke: #00a854;
  7889. }
  7890. .ant-progress-circle .ant-progress-inner {
  7891. position: relative;
  7892. line-height: 1;
  7893. background-color: transparent;
  7894. }
  7895. .ant-progress-circle .ant-progress-text {
  7896. display: block;
  7897. position: absolute;
  7898. width: 100%;
  7899. text-align: center;
  7900. line-height: 1;
  7901. top: 50%;
  7902. transform: translateY(-50%);
  7903. left: 0;
  7904. font-family: tahoma;
  7905. margin: 0;
  7906. }
  7907. .ant-progress-circle .ant-progress-text .anticon {
  7908. font-size: 1.16666667em;
  7909. }
  7910. .ant-progress-circle .ant-progress-status-exception .ant-progress-text {
  7911. color: #f04134;
  7912. }
  7913. .ant-progress-circle .ant-progress-status-success .ant-progress-text {
  7914. color: #00a854;
  7915. }
  7916. @keyframes ant-progress-active {
  7917. 0% {
  7918. opacity: 0.1;
  7919. width: 0;
  7920. }
  7921. 20% {
  7922. opacity: 0.5;
  7923. width: 0;
  7924. }
  7925. 100% {
  7926. opacity: 0;
  7927. width: 100%;
  7928. }
  7929. }
  7930. .ant-tooltip {
  7931. position: absolute;
  7932. z-index: 1060;
  7933. display: block;
  7934. visibility: visible;
  7935. font-size: 12px;
  7936. line-height: 1.5;
  7937. }
  7938. .ant-tooltip-hidden {
  7939. display: none;
  7940. }
  7941. .ant-tooltip-placement-top,
  7942. .ant-tooltip-placement-topLeft,
  7943. .ant-tooltip-placement-topRight {
  7944. padding: 5px 0 8px 0;
  7945. }
  7946. .ant-tooltip-placement-right,
  7947. .ant-tooltip-placement-rightTop,
  7948. .ant-tooltip-placement-rightBottom {
  7949. padding: 0 5px 0 8px;
  7950. }
  7951. .ant-tooltip-placement-bottom,
  7952. .ant-tooltip-placement-bottomLeft,
  7953. .ant-tooltip-placement-bottomRight {
  7954. padding: 8px 0 5px 0;
  7955. }
  7956. .ant-tooltip-placement-left,
  7957. .ant-tooltip-placement-leftTop,
  7958. .ant-tooltip-placement-leftBottom {
  7959. padding: 0 8px 0 5px;
  7960. }
  7961. .ant-tooltip-inner {
  7962. max-width: 250px;
  7963. padding: 8px 10px;
  7964. color: #fff;
  7965. text-align: left;
  7966. text-decoration: none;
  7967. background-color: rgba(64, 64, 64, 0.85);
  7968. border-radius: 4px;
  7969. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  7970. min-height: 34px;
  7971. }
  7972. .ant-tooltip-arrow {
  7973. position: absolute;
  7974. width: 0;
  7975. height: 0;
  7976. border-color: transparent;
  7977. border-style: solid;
  7978. }
  7979. .ant-tooltip-placement-top .ant-tooltip-arrow,
  7980. .ant-tooltip-placement-topLeft .ant-tooltip-arrow,
  7981. .ant-tooltip-placement-topRight .ant-tooltip-arrow {
  7982. bottom: 3px;
  7983. border-width: 5px 5px 0;
  7984. border-top-color: rgba(64, 64, 64, 0.85);
  7985. }
  7986. .ant-tooltip-placement-top .ant-tooltip-arrow {
  7987. left: 50%;
  7988. margin-left: -5px;
  7989. }
  7990. .ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  7991. left: 16px;
  7992. }
  7993. .ant-tooltip-placement-topRight .ant-tooltip-arrow {
  7994. right: 16px;
  7995. }
  7996. .ant-tooltip-placement-right .ant-tooltip-arrow,
  7997. .ant-tooltip-placement-rightTop .ant-tooltip-arrow,
  7998. .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  7999. left: 3px;
  8000. border-width: 5px 5px 5px 0;
  8001. border-right-color: rgba(64, 64, 64, 0.85);
  8002. }
  8003. .ant-tooltip-placement-right .ant-tooltip-arrow {
  8004. top: 50%;
  8005. margin-top: -5px;
  8006. }
  8007. .ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  8008. top: 8px;
  8009. }
  8010. .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  8011. bottom: 8px;
  8012. }
  8013. .ant-tooltip-placement-left .ant-tooltip-arrow,
  8014. .ant-tooltip-placement-leftTop .ant-tooltip-arrow,
  8015. .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  8016. right: 3px;
  8017. border-width: 5px 0 5px 5px;
  8018. border-left-color: rgba(64, 64, 64, 0.85);
  8019. }
  8020. .ant-tooltip-placement-left .ant-tooltip-arrow {
  8021. top: 50%;
  8022. margin-top: -5px;
  8023. }
  8024. .ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  8025. top: 8px;
  8026. }
  8027. .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  8028. bottom: 8px;
  8029. }
  8030. .ant-tooltip-placement-bottom .ant-tooltip-arrow,
  8031. .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
  8032. .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  8033. top: 3px;
  8034. border-width: 0 5px 5px;
  8035. border-bottom-color: rgba(64, 64, 64, 0.85);
  8036. }
  8037. .ant-tooltip-placement-bottom .ant-tooltip-arrow {
  8038. left: 50%;
  8039. margin-left: -5px;
  8040. }
  8041. .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  8042. left: 16px;
  8043. }
  8044. .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  8045. right: 16px;
  8046. }
  8047. .account-top {
  8048. width: 100%;
  8049. height: 84px;
  8050. border-bottom: 1px solid #eee;
  8051. background: #fff;
  8052. position: absolute;
  8053. top: 0;
  8054. left: 0;
  8055. z-index: 1;
  8056. }
  8057. .account-top .acc-top-user {
  8058. height: 34px;
  8059. line-height: 34px;
  8060. background: #f8f8f8;
  8061. }
  8062. .account-top .acc-top-user .acc-top-user-name {
  8063. margin-left: 10px;
  8064. }
  8065. .account-top .acc-top-user .acc-top-user-toindex {
  8066. float: right;
  8067. margin-right: 10px;
  8068. }
  8069. .account-top .acc-index {
  8070. height: 90px;
  8071. width: 16%;
  8072. position: absolute;
  8073. top: 34px;
  8074. left: 0;
  8075. color: #fff;
  8076. background: #4665bf;
  8077. padding: 27px 10px;
  8078. }
  8079. .account-top .acc-index .acc-index-imgbox {
  8080. width: 36px;
  8081. height: 36px;
  8082. padding-top: 36px;
  8083. position: relative;
  8084. overflow: hidden;
  8085. float: left;
  8086. }
  8087. .account-top .acc-index .acc-index-imgbox img {
  8088. position: absolute;
  8089. top: 0;
  8090. left: 0;
  8091. height: 36px;
  8092. width: auto;
  8093. }
  8094. .account-top .acc-index span {
  8095. margin-left: 10px;
  8096. font-size: 20px;
  8097. line-height: 36px;
  8098. }
  8099. .account-top .acc-index span a {
  8100. color: #fff;
  8101. }
  8102. .account-top .acc-top-tab {
  8103. margin-left: 16%;
  8104. height: 50px;
  8105. line-height: 50px;
  8106. font-size: 16px;
  8107. text-align: center;
  8108. background: #4665bf;
  8109. color: #fff;
  8110. border-left: 1px solid #344c8f;
  8111. }
  8112. .account-top .acc-top-tab .ant-row {
  8113. padding-left: 20px;
  8114. border-left: 1px solid #6b84cc;
  8115. }
  8116. .account-top .acc-top-tab .ant-row div {
  8117. margin: 0 10px;
  8118. }
  8119. .account-top .acc-top-tab .ant-row div a {
  8120. color: #fff;
  8121. }
  8122. .account-top .acc-top-tab .ant-row .active {
  8123. font-size: 18px;
  8124. }
  8125. .account-top .acc-top-tab .ant-row .active:after {
  8126. content: '';
  8127. position: absolute;
  8128. left: 0;
  8129. bottom: 0;
  8130. display: block;
  8131. width: 100%;
  8132. height: 3px;
  8133. background: #58a3ff;
  8134. }
  8135. .account-bottom {
  8136. width: 100%;
  8137. color: #d5e4f7;
  8138. background: #212831;
  8139. position: absolute;
  8140. bottom: 0;
  8141. left: 0;
  8142. z-index: 1;
  8143. text-align: center;
  8144. padding: 6px 0;
  8145. }
  8146. .acc-content {
  8147. height: 100%;
  8148. width: 100%;
  8149. padding-top: 84px;
  8150. padding-bottom: 40px;
  8151. background: #f0f0f0;
  8152. }
  8153. .acc-content .content-right {
  8154. width: 84%;
  8155. height: 100%;
  8156. float: left;
  8157. overflow-y: auto;
  8158. padding: 20px;
  8159. }
  8160. .acc-content .content-right .ant-spin-nested-loading {
  8161. height: 100%;
  8162. }
  8163. .acc-content .content-right .ant-spin-nested-loading .ant-spin-container {
  8164. height: 100%;
  8165. }
  8166. .ant-menu {
  8167. outline: none;
  8168. margin-bottom: 0;
  8169. padding-left: 0;
  8170. list-style: none;
  8171. z-index: 1050;
  8172. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  8173. color: rgba(0, 0, 0, 0.65);
  8174. background: #fff;
  8175. line-height: 46px;
  8176. }
  8177. .ant-menu-hidden {
  8178. display: none;
  8179. }
  8180. .ant-menu-item-group-list {
  8181. margin: 0;
  8182. padding: 0;
  8183. }
  8184. .ant-menu-item-group-title {
  8185. color: rgba(0, 0, 0, 0.43);
  8186. font-size: 12px;
  8187. line-height: 1.5;
  8188. padding: 8px 16px;
  8189. }
  8190. .ant-menu-item,
  8191. .ant-menu-submenu,
  8192. .ant-menu-submenu-title {
  8193. cursor: pointer;
  8194. transition: all 0.3s ease;
  8195. }
  8196. .ant-menu-item:active,
  8197. .ant-menu-submenu-title:active {
  8198. background: #f2f8ff;
  8199. }
  8200. .ant-menu-submenu .ant-menu-sub {
  8201. cursor: initial;
  8202. }
  8203. .ant-menu-item > a {
  8204. display: block;
  8205. color: rgba(0, 0, 0, 0.65);
  8206. }
  8207. .ant-menu-item > a:hover {
  8208. color: #58a3ff;
  8209. }
  8210. .ant-menu-item > a:before {
  8211. position: absolute;
  8212. background-color: transparent;
  8213. width: 100%;
  8214. height: 100%;
  8215. top: 0;
  8216. left: 0;
  8217. bottom: 0;
  8218. right: 0;
  8219. content: '';
  8220. }
  8221. .ant-menu-item-divider {
  8222. height: 1px;
  8223. overflow: hidden;
  8224. background-color: #e9e9e9;
  8225. line-height: 0;
  8226. }
  8227. .ant-menu-item:hover,
  8228. .ant-menu-item-active,
  8229. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
  8230. .ant-menu-submenu-active,
  8231. .ant-menu-submenu-title:hover {
  8232. color: #58a3ff;
  8233. }
  8234. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open {
  8235. z-index: 1050;
  8236. }
  8237. .ant-menu-horizontal .ant-menu-item,
  8238. .ant-menu-horizontal .ant-menu-submenu {
  8239. margin-top: -1px;
  8240. }
  8241. .ant-menu-horizontal > .ant-menu-item:hover,
  8242. .ant-menu-horizontal > .ant-menu-item-active,
  8243. .ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  8244. background-color: transparent;
  8245. }
  8246. .ant-menu-item-selected {
  8247. color: #58a3ff;
  8248. transform: translateZ(0);
  8249. }
  8250. .ant-menu-item-selected > a,
  8251. .ant-menu-item-selected > a:hover {
  8252. color: #58a3ff;
  8253. }
  8254. .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  8255. background-color: #f2f8ff;
  8256. }
  8257. .ant-menu-horizontal,
  8258. .ant-menu-inline,
  8259. .ant-menu-vertical {
  8260. z-index: auto;
  8261. }
  8262. .ant-menu-inline,
  8263. .ant-menu-vertical {
  8264. border-right: 1px solid #e9e9e9;
  8265. }
  8266. .ant-menu-inline .ant-menu-item,
  8267. .ant-menu-vertical .ant-menu-item {
  8268. border-right: 3px solid transparent;
  8269. margin-left: -1px;
  8270. left: 1px;
  8271. position: relative;
  8272. z-index: 1;
  8273. }
  8274. .ant-menu-vertical.ant-menu-sub {
  8275. border-right: 0;
  8276. }
  8277. .ant-menu-vertical.ant-menu-sub .ant-menu-item {
  8278. border-right: 0;
  8279. margin-left: 0;
  8280. left: 0;
  8281. }
  8282. .ant-menu-vertical.ant-menu-sub > .ant-menu-item:first-child {
  8283. border-radius: 4px 4px 0 0;
  8284. }
  8285. .ant-menu-vertical.ant-menu-sub > .ant-menu-item:last-child,
  8286. .ant-menu-vertical.ant-menu-sub > .ant-menu-item-group:last-child > .ant-menu-item-group-list:last-child > .ant-menu-item:last-child {
  8287. border-radius: 0 0 4px 4px;
  8288. }
  8289. .ant-menu-inline .ant-menu-selected,
  8290. .ant-menu-inline .ant-menu-item-selected {
  8291. border-right-color: #58a3ff;
  8292. transform: translateZ(0);
  8293. }
  8294. .ant-menu-submenu-horizontal > .ant-menu {
  8295. top: 100%;
  8296. left: 0;
  8297. position: absolute;
  8298. min-width: 100%;
  8299. margin-top: 7px;
  8300. z-index: 1050;
  8301. }
  8302. .ant-menu-submenu-vertical {
  8303. z-index: 1;
  8304. }
  8305. .ant-menu-submenu-vertical > .ant-menu {
  8306. top: 0;
  8307. left: 100%;
  8308. position: absolute;
  8309. min-width: 160px;
  8310. margin-left: 4px;
  8311. z-index: 1050;
  8312. }
  8313. .ant-menu-item,
  8314. .ant-menu-submenu-title {
  8315. margin: 0;
  8316. padding: 0 20px;
  8317. position: relative;
  8318. display: block;
  8319. white-space: nowrap;
  8320. }
  8321. .ant-menu-item .anticon,
  8322. .ant-menu-submenu-title .anticon {
  8323. min-width: 14px;
  8324. margin-right: 8px;
  8325. transition: all .3s;
  8326. }
  8327. .ant-menu > .ant-menu-item-divider {
  8328. height: 1px;
  8329. margin: 1px 0;
  8330. overflow: hidden;
  8331. padding: 0;
  8332. line-height: 0;
  8333. background-color: #e5e5e5;
  8334. }
  8335. .ant-menu-submenu {
  8336. position: relative;
  8337. }
  8338. .ant-menu-submenu > .ant-menu {
  8339. background-color: #fff;
  8340. border-radius: 4px;
  8341. }
  8342. .ant-menu-submenu-vertical > .ant-menu-submenu-title:after {
  8343. font-family: "anticon" !important;
  8344. font-style: normal;
  8345. vertical-align: baseline;
  8346. text-align: center;
  8347. text-transform: none;
  8348. text-rendering: auto;
  8349. position: absolute;
  8350. transition: transform .3s ease;
  8351. content: "\E61D";
  8352. right: 16px;
  8353. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  8354. transform: rotate(270deg) scale(0.75);
  8355. }
  8356. .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8357. font-family: "anticon" !important;
  8358. font-style: normal;
  8359. vertical-align: baseline;
  8360. text-align: center;
  8361. text-transform: none;
  8362. text-rendering: auto;
  8363. position: absolute;
  8364. transition: transform .3s ease;
  8365. content: "\E61D";
  8366. right: 16px;
  8367. top: 0;
  8368. display: inline-block;
  8369. font-size: 12px;
  8370. font-size: 8px \9;
  8371. transform: scale(0.66666667) rotate(0deg);
  8372. /* IE6-IE8 */
  8373. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  8374. zoom: 1;
  8375. }
  8376. :root .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8377. filter: none;
  8378. }
  8379. :root .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8380. font-size: 12px;
  8381. }
  8382. .ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  8383. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  8384. transform: rotate(180deg) scale(0.75);
  8385. }
  8386. .ant-menu-vertical .ant-menu-submenu-selected {
  8387. color: #58a3ff;
  8388. }
  8389. .ant-menu-vertical .ant-menu-submenu-selected > a {
  8390. color: #58a3ff;
  8391. }
  8392. .ant-menu-horizontal {
  8393. border: 0;
  8394. border-bottom: 1px solid #e9e9e9;
  8395. box-shadow: none;
  8396. z-index: 0;
  8397. }
  8398. .ant-menu-horizontal > .ant-menu-item,
  8399. .ant-menu-horizontal > .ant-menu-submenu {
  8400. position: relative;
  8401. top: 1px;
  8402. float: left;
  8403. border-bottom: 2px solid transparent;
  8404. }
  8405. .ant-menu-horizontal > .ant-menu-item:hover,
  8406. .ant-menu-horizontal > .ant-menu-submenu:hover,
  8407. .ant-menu-horizontal > .ant-menu-item-active,
  8408. .ant-menu-horizontal > .ant-menu-submenu-active,
  8409. .ant-menu-horizontal > .ant-menu-item-open,
  8410. .ant-menu-horizontal > .ant-menu-submenu-open,
  8411. .ant-menu-horizontal > .ant-menu-item-selected,
  8412. .ant-menu-horizontal > .ant-menu-submenu-selected {
  8413. border-bottom: 2px solid #58a3ff;
  8414. color: #58a3ff;
  8415. }
  8416. .ant-menu-horizontal > .ant-menu-item > a,
  8417. .ant-menu-horizontal > .ant-menu-submenu > a {
  8418. display: block;
  8419. color: rgba(0, 0, 0, 0.65);
  8420. }
  8421. .ant-menu-horizontal > .ant-menu-item > a:hover,
  8422. .ant-menu-horizontal > .ant-menu-submenu > a:hover {
  8423. color: #58a3ff;
  8424. }
  8425. .ant-menu-horizontal:after {
  8426. content: " ";
  8427. display: block;
  8428. height: 0;
  8429. clear: both;
  8430. }
  8431. .ant-menu-vertical .ant-menu-item,
  8432. .ant-menu-inline .ant-menu-item,
  8433. .ant-menu-vertical .ant-menu-submenu-title,
  8434. .ant-menu-inline .ant-menu-submenu-title {
  8435. padding: 0 16px;
  8436. font-size: 12px;
  8437. line-height: 42px;
  8438. height: 42px;
  8439. overflow: hidden;
  8440. text-overflow: ellipsis;
  8441. }
  8442. .ant-menu-item-group-list .ant-menu-item,
  8443. .ant-menu-item-group-list .ant-menu-submenu-title {
  8444. padding: 0 16px 0 28px;
  8445. }
  8446. .ant-menu-vertical.ant-menu-sub {
  8447. padding: 0;
  8448. transform-origin: 0 0;
  8449. }
  8450. .ant-menu-vertical.ant-menu-sub > .ant-menu-item,
  8451. .ant-menu-vertical.ant-menu-sub > .ant-menu-submenu {
  8452. transform-origin: 0 0;
  8453. }
  8454. .ant-menu-root.ant-menu-vertical,
  8455. .ant-menu-root.ant-menu-inline {
  8456. box-shadow: none;
  8457. }
  8458. .ant-menu-sub.ant-menu-inline {
  8459. padding: 0;
  8460. border: 0;
  8461. box-shadow: none;
  8462. border-radius: 0;
  8463. }
  8464. .ant-menu-sub.ant-menu-inline > .ant-menu-item,
  8465. .ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  8466. line-height: 42px;
  8467. height: 42px;
  8468. list-style-type: disc;
  8469. list-style-position: inside;
  8470. }
  8471. .ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  8472. padding-left: 32px;
  8473. }
  8474. .ant-menu-item-disabled,
  8475. .ant-menu-submenu-disabled {
  8476. color: rgba(0, 0, 0, 0.25) !important;
  8477. cursor: not-allowed;
  8478. background: none;
  8479. border-color: transparent !important;
  8480. }
  8481. .ant-menu-item-disabled > a,
  8482. .ant-menu-submenu-disabled > a {
  8483. color: rgba(0, 0, 0, 0.25) !important;
  8484. pointer-events: none;
  8485. }
  8486. .ant-menu-dark,
  8487. .ant-menu-dark .ant-menu-sub {
  8488. color: rgba(255, 255, 255, 0.67);
  8489. background: #404040;
  8490. }
  8491. .ant-menu-dark .ant-menu-inline.ant-menu-sub {
  8492. background: #333;
  8493. }
  8494. .ant-menu-dark.ant-menu-horizontal {
  8495. border-bottom-color: #404040;
  8496. }
  8497. .ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
  8498. .ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  8499. border-color: #404040;
  8500. border-bottom: 0;
  8501. top: 0;
  8502. }
  8503. .ant-menu-dark .ant-menu-item,
  8504. .ant-menu-dark .ant-menu-item-group-title,
  8505. .ant-menu-dark .ant-menu-item > a {
  8506. color: rgba(255, 255, 255, 0.67);
  8507. }
  8508. .ant-menu-dark.ant-menu-inline,
  8509. .ant-menu-dark.ant-menu-vertical {
  8510. border-right: 0;
  8511. }
  8512. .ant-menu-dark.ant-menu-inline .ant-menu-item,
  8513. .ant-menu-dark.ant-menu-vertical .ant-menu-item {
  8514. border-right: 0;
  8515. margin-left: 0;
  8516. left: 0;
  8517. }
  8518. .ant-menu-dark .ant-menu-item:hover,
  8519. .ant-menu-dark .ant-menu-item-active,
  8520. .ant-menu-dark .ant-menu-submenu-active,
  8521. .ant-menu-dark:not(.ant-menu-inline) .ant-menu-submenu-open,
  8522. .ant-menu-dark .ant-menu-submenu-selected,
  8523. .ant-menu-dark .ant-menu-submenu:hover,
  8524. .ant-menu-dark .ant-menu-submenu-title:hover {
  8525. background-color: transparent;
  8526. color: #fff;
  8527. }
  8528. .ant-menu-dark .ant-menu-item:hover > a,
  8529. .ant-menu-dark .ant-menu-item-active > a,
  8530. .ant-menu-dark .ant-menu-submenu-active > a,
  8531. .ant-menu-dark:not(.ant-menu-inline) .ant-menu-submenu-open > a,
  8532. .ant-menu-dark .ant-menu-submenu-selected > a,
  8533. .ant-menu-dark .ant-menu-submenu:hover > a,
  8534. .ant-menu-dark .ant-menu-submenu-title:hover > a {
  8535. color: #fff;
  8536. }
  8537. .ant-menu-dark .ant-menu-item-selected {
  8538. border-right: 0;
  8539. color: #fff;
  8540. }
  8541. .ant-menu-dark .ant-menu-item-selected > a,
  8542. .ant-menu-dark .ant-menu-item-selected > a:hover {
  8543. color: #fff;
  8544. }
  8545. .ant-menu.ant-menu-dark .ant-menu-item-selected {
  8546. background-color: transparent;
  8547. }
  8548. .ant-menu-dark.ant-menu-inline .ant-menu-item-selected {
  8549. background-color: #58a3ff;
  8550. }
  8551. .ant-menu-dark .ant-menu-item-disabled,
  8552. .ant-menu-dark .ant-menu-submenu-disabled,
  8553. .ant-menu-dark .ant-menu-item-disabled > a,
  8554. .ant-menu-dark .ant-menu-submenu-disabled > a {
  8555. opacity: 0.8;
  8556. color: rgba(255, 255, 255, 0.35) !important;
  8557. }
  8558. .acc-content .account-left {
  8559. width: 16%;
  8560. height: 100%;
  8561. padding-top: 40px;
  8562. float: left;
  8563. border-right: none;
  8564. }
  8565. .acc-content .account-left .ant-menu-submenu .ant-menu-submenu-title {
  8566. font-size: 16px;
  8567. }
  8568. .ant-calendar-picker-container {
  8569. position: absolute;
  8570. z-index: 1050;
  8571. }
  8572. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,
  8573. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight,
  8574. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,
  8575. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight {
  8576. animation-name: antSlideDownIn;
  8577. }
  8578. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,
  8579. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight,
  8580. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,
  8581. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight {
  8582. animation-name: antSlideUpIn;
  8583. }
  8584. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,
  8585. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight {
  8586. animation-name: antSlideDownOut;
  8587. }
  8588. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,
  8589. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight {
  8590. animation-name: antSlideUpOut;
  8591. }
  8592. .ant-calendar-picker {
  8593. position: relative;
  8594. display: inline-block;
  8595. outline: none;
  8596. font-size: 12px;
  8597. transition: opacity 0.3s;
  8598. }
  8599. .ant-calendar-picker-input {
  8600. outline: none;
  8601. }
  8602. .ant-calendar-picker:hover .ant-calendar-picker-input {
  8603. border-color: #58a3ff;
  8604. }
  8605. .ant-calendar-picker-clear {
  8606. opacity: 0;
  8607. pointer-events: none;
  8608. z-index: 1;
  8609. position: absolute;
  8610. right: 7px;
  8611. background: #fff;
  8612. top: 50%;
  8613. font-size: 12px;
  8614. color: rgba(0, 0, 0, 0.25);
  8615. width: 14px;
  8616. height: 14px;
  8617. margin-top: -7px;
  8618. line-height: 14px;
  8619. cursor: pointer;
  8620. transition: color 0.3s, opacity 0.3s;
  8621. }
  8622. .ant-calendar-picker-clear:hover {
  8623. color: rgba(0, 0, 0, 0.43);
  8624. }
  8625. .ant-calendar-picker:hover .ant-calendar-picker-clear {
  8626. opacity: 1;
  8627. pointer-events: auto;
  8628. }
  8629. .ant-calendar-picker-icon {
  8630. position: absolute;
  8631. user-select: none;
  8632. transition: all .3s;
  8633. width: 12px;
  8634. height: 12px;
  8635. line-height: 12px;
  8636. right: 8px;
  8637. color: rgba(0, 0, 0, 0.43);
  8638. top: 50%;
  8639. margin-top: -6px;
  8640. }
  8641. .ant-calendar-picker-icon:after {
  8642. content: "\E6BB";
  8643. font-family: "anticon";
  8644. font-size: 12px;
  8645. color: rgba(0, 0, 0, 0.43);
  8646. display: inline-block;
  8647. line-height: 1;
  8648. vertical-align: bottom;
  8649. }
  8650. .ant-calendar {
  8651. position: relative;
  8652. outline: none;
  8653. width: 231px;
  8654. border: 1px solid #fff;
  8655. list-style: none;
  8656. font-size: 12px;
  8657. text-align: left;
  8658. background-color: #fff;
  8659. border-radius: 4px;
  8660. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  8661. background-clip: padding-box;
  8662. line-height: 1.5;
  8663. }
  8664. .ant-calendar-input-wrap {
  8665. height: 34px;
  8666. padding: 6px;
  8667. border-bottom: 1px solid #e9e9e9;
  8668. }
  8669. .ant-calendar-input {
  8670. border: 0;
  8671. width: 100%;
  8672. cursor: auto;
  8673. outline: 0;
  8674. height: 22px;
  8675. }
  8676. .ant-calendar-week-number {
  8677. width: 286px;
  8678. }
  8679. .ant-calendar-week-number-cell {
  8680. text-align: center;
  8681. }
  8682. .ant-calendar-header {
  8683. height: 34px;
  8684. line-height: 34px;
  8685. text-align: center;
  8686. user-select: none;
  8687. border-bottom: 1px solid #e9e9e9;
  8688. }
  8689. .ant-calendar-header a:hover {
  8690. color: #80b9ff;
  8691. }
  8692. .ant-calendar-header .ant-calendar-century-select,
  8693. .ant-calendar-header .ant-calendar-decade-select,
  8694. .ant-calendar-header .ant-calendar-year-select,
  8695. .ant-calendar-header .ant-calendar-month-select {
  8696. padding: 0 2px;
  8697. font-weight: bold;
  8698. display: inline-block;
  8699. color: rgba(0, 0, 0, 0.65);
  8700. line-height: 34px;
  8701. }
  8702. .ant-calendar-header .ant-calendar-century-select-arrow,
  8703. .ant-calendar-header .ant-calendar-decade-select-arrow,
  8704. .ant-calendar-header .ant-calendar-year-select-arrow,
  8705. .ant-calendar-header .ant-calendar-month-select-arrow {
  8706. display: none;
  8707. }
  8708. .ant-calendar-header .ant-calendar-prev-century-btn,
  8709. .ant-calendar-header .ant-calendar-next-century-btn,
  8710. .ant-calendar-header .ant-calendar-prev-decade-btn,
  8711. .ant-calendar-header .ant-calendar-next-decade-btn,
  8712. .ant-calendar-header .ant-calendar-prev-month-btn,
  8713. .ant-calendar-header .ant-calendar-next-month-btn,
  8714. .ant-calendar-header .ant-calendar-prev-year-btn,
  8715. .ant-calendar-header .ant-calendar-next-year-btn {
  8716. position: absolute;
  8717. top: 0;
  8718. color: rgba(0, 0, 0, 0.43);
  8719. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  8720. padding: 0 5px;
  8721. font-size: 16px;
  8722. display: inline-block;
  8723. line-height: 34px;
  8724. }
  8725. .ant-calendar-header .ant-calendar-prev-century-btn,
  8726. .ant-calendar-header .ant-calendar-prev-decade-btn,
  8727. .ant-calendar-header .ant-calendar-prev-year-btn {
  8728. left: 7px;
  8729. }
  8730. .ant-calendar-header .ant-calendar-prev-century-btn:after,
  8731. .ant-calendar-header .ant-calendar-prev-decade-btn:after,
  8732. .ant-calendar-header .ant-calendar-prev-year-btn:after {
  8733. content: '\AB';
  8734. }
  8735. .ant-calendar-header .ant-calendar-next-century-btn,
  8736. .ant-calendar-header .ant-calendar-next-decade-btn,
  8737. .ant-calendar-header .ant-calendar-next-year-btn {
  8738. right: 7px;
  8739. }
  8740. .ant-calendar-header .ant-calendar-next-century-btn:after,
  8741. .ant-calendar-header .ant-calendar-next-decade-btn:after,
  8742. .ant-calendar-header .ant-calendar-next-year-btn:after {
  8743. content: '\BB';
  8744. }
  8745. .ant-calendar-header .ant-calendar-prev-month-btn {
  8746. left: 29px;
  8747. }
  8748. .ant-calendar-header .ant-calendar-prev-month-btn:after {
  8749. content: '\2039';
  8750. }
  8751. .ant-calendar-header .ant-calendar-next-month-btn {
  8752. right: 29px;
  8753. }
  8754. .ant-calendar-header .ant-calendar-next-month-btn:after {
  8755. content: '\203A';
  8756. }
  8757. .ant-calendar-body {
  8758. padding: 4px 8px;
  8759. }
  8760. .ant-calendar table {
  8761. border-collapse: collapse;
  8762. max-width: 100%;
  8763. background-color: transparent;
  8764. width: 100%;
  8765. }
  8766. .ant-calendar table,
  8767. .ant-calendar th,
  8768. .ant-calendar td {
  8769. border: 0;
  8770. }
  8771. .ant-calendar-calendar-table {
  8772. border-spacing: 0;
  8773. margin-bottom: 0;
  8774. }
  8775. .ant-calendar-column-header {
  8776. line-height: 18px;
  8777. width: 33px;
  8778. padding: 6px 0;
  8779. text-align: center;
  8780. }
  8781. .ant-calendar-column-header .ant-calendar-column-header-inner {
  8782. display: block;
  8783. font-weight: normal;
  8784. }
  8785. .ant-calendar-week-number-header .ant-calendar-column-header-inner {
  8786. display: none;
  8787. }
  8788. .ant-calendar-cell {
  8789. padding: 4px 0;
  8790. }
  8791. .ant-calendar-date {
  8792. display: block;
  8793. margin: 0 auto;
  8794. color: rgba(0, 0, 0, 0.65);
  8795. border-radius: 2px;
  8796. width: 20px;
  8797. height: 20px;
  8798. line-height: 18px;
  8799. border: 1px solid transparent;
  8800. padding: 0;
  8801. background: transparent;
  8802. text-align: center;
  8803. transition: background 0.3s ease;
  8804. }
  8805. .ant-calendar-date-panel {
  8806. position: relative;
  8807. }
  8808. .ant-calendar-date:hover {
  8809. background: #f2f8ff;
  8810. cursor: pointer;
  8811. }
  8812. .ant-calendar-date:active {
  8813. color: #fff;
  8814. background: #80b9ff;
  8815. }
  8816. .ant-calendar-today .ant-calendar-date {
  8817. border-color: #58a3ff;
  8818. font-weight: bold;
  8819. color: #58a3ff;
  8820. }
  8821. .ant-calendar-last-month-cell .ant-calendar-date,
  8822. .ant-calendar-next-month-btn-day .ant-calendar-date {
  8823. color: rgba(0, 0, 0, 0.25);
  8824. }
  8825. .ant-calendar-selected-day .ant-calendar-date {
  8826. background: #58a3ff;
  8827. color: #fff;
  8828. border: 1px solid transparent;
  8829. }
  8830. .ant-calendar-selected-day .ant-calendar-date:hover {
  8831. background: #58a3ff;
  8832. }
  8833. .ant-calendar-disabled-cell .ant-calendar-date {
  8834. cursor: not-allowed;
  8835. color: #bcbcbc;
  8836. background: #f3f3f3;
  8837. border-radius: 0;
  8838. width: auto;
  8839. border: 1px solid transparent;
  8840. }
  8841. .ant-calendar-disabled-cell .ant-calendar-date:hover {
  8842. background: #f3f3f3;
  8843. }
  8844. .ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
  8845. border-top-left-radius: 4px;
  8846. border-bottom-left-radius: 4px;
  8847. }
  8848. .ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
  8849. border-top-right-radius: 4px;
  8850. border-bottom-right-radius: 4px;
  8851. }
  8852. .ant-calendar-footer-btn {
  8853. border-top: 1px solid #e9e9e9;
  8854. text-align: center;
  8855. display: block;
  8856. line-height: 38px;
  8857. }
  8858. .ant-calendar-footer > div {
  8859. display: inline-block;
  8860. }
  8861. .ant-calendar .ant-calendar-today-btn,
  8862. .ant-calendar .ant-calendar-clear-btn {
  8863. display: inline-block;
  8864. text-align: center;
  8865. margin: 0 0 0 8px;
  8866. }
  8867. .ant-calendar .ant-calendar-today-btn-disabled,
  8868. .ant-calendar .ant-calendar-clear-btn-disabled {
  8869. color: rgba(0, 0, 0, 0.25);
  8870. cursor: not-allowed;
  8871. }
  8872. .ant-calendar .ant-calendar-clear-btn {
  8873. display: none;
  8874. position: absolute;
  8875. right: 5px;
  8876. text-indent: -76px;
  8877. overflow: hidden;
  8878. width: 20px;
  8879. height: 20px;
  8880. text-align: center;
  8881. line-height: 20px;
  8882. top: 7px;
  8883. margin: 0;
  8884. }
  8885. .ant-calendar .ant-calendar-clear-btn:after {
  8886. font-family: 'anticon';
  8887. text-rendering: optimizeLegibility;
  8888. -webkit-font-smoothing: antialiased;
  8889. -moz-osx-font-smoothing: grayscale;
  8890. content: "\E62E";
  8891. font-size: 12px;
  8892. color: rgba(0, 0, 0, 0.25);
  8893. display: inline-block;
  8894. line-height: 1;
  8895. width: 20px;
  8896. text-indent: 43px;
  8897. transition: color 0.3s ease;
  8898. }
  8899. .ant-calendar .ant-calendar-clear-btn:hover:after {
  8900. color: rgba(0, 0, 0, 0.43);
  8901. }
  8902. .ant-calendar .ant-calendar-ok-btn {
  8903. display: inline-block;
  8904. margin-bottom: 0;
  8905. font-weight: 500;
  8906. text-align: center;
  8907. touch-action: manipulation;
  8908. cursor: pointer;
  8909. background-image: none;
  8910. border: 1px solid transparent;
  8911. white-space: nowrap;
  8912. line-height: 1.5;
  8913. padding: 4px 15px;
  8914. user-select: none;
  8915. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  8916. position: relative;
  8917. color: #fff;
  8918. background-color: #58a3ff;
  8919. border-color: #58a3ff;
  8920. padding: 1px 7px;
  8921. font-size: 12px;
  8922. border-radius: 4px;
  8923. position: absolute;
  8924. bottom: 8px;
  8925. right: 9px;
  8926. }
  8927. .ant-calendar .ant-calendar-ok-btn > .anticon {
  8928. line-height: 1;
  8929. }
  8930. .ant-calendar .ant-calendar-ok-btn,
  8931. .ant-calendar .ant-calendar-ok-btn:active,
  8932. .ant-calendar .ant-calendar-ok-btn:focus {
  8933. outline: 0;
  8934. }
  8935. .ant-calendar .ant-calendar-ok-btn:not([disabled]):hover {
  8936. text-decoration: none;
  8937. }
  8938. .ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
  8939. outline: 0;
  8940. transition: none;
  8941. }
  8942. .ant-calendar .ant-calendar-ok-btn.disabled,
  8943. .ant-calendar .ant-calendar-ok-btn[disabled] {
  8944. cursor: not-allowed;
  8945. }
  8946. .ant-calendar .ant-calendar-ok-btn.disabled > *,
  8947. .ant-calendar .ant-calendar-ok-btn[disabled] > * {
  8948. pointer-events: none;
  8949. }
  8950. .ant-calendar .ant-calendar-ok-btn-lg {
  8951. padding: 4px 15px 5px 15px;
  8952. font-size: 14px;
  8953. border-radius: 4px;
  8954. }
  8955. .ant-calendar .ant-calendar-ok-btn-sm {
  8956. padding: 1px 7px;
  8957. font-size: 12px;
  8958. border-radius: 4px;
  8959. }
  8960. .ant-calendar .ant-calendar-ok-btn > a:only-child {
  8961. color: currentColor;
  8962. }
  8963. .ant-calendar .ant-calendar-ok-btn > a:only-child:after {
  8964. content: '';
  8965. position: absolute;
  8966. top: 0;
  8967. left: 0;
  8968. bottom: 0;
  8969. right: 0;
  8970. background: transparent;
  8971. }
  8972. .ant-calendar .ant-calendar-ok-btn:hover,
  8973. .ant-calendar .ant-calendar-ok-btn:focus {
  8974. color: #fff;
  8975. background-color: #80b9ff;
  8976. border-color: #80b9ff;
  8977. }
  8978. .ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
  8979. .ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
  8980. color: currentColor;
  8981. }
  8982. .ant-calendar .ant-calendar-ok-btn:hover > a:only-child:after,
  8983. .ant-calendar .ant-calendar-ok-btn:focus > a:only-child:after {
  8984. content: '';
  8985. position: absolute;
  8986. top: 0;
  8987. left: 0;
  8988. bottom: 0;
  8989. right: 0;
  8990. background: transparent;
  8991. }
  8992. .ant-calendar .ant-calendar-ok-btn:active,
  8993. .ant-calendar .ant-calendar-ok-btn.active {
  8994. color: #fff;
  8995. background-color: #4386e7;
  8996. border-color: #4386e7;
  8997. }
  8998. .ant-calendar .ant-calendar-ok-btn:active > a:only-child,
  8999. .ant-calendar .ant-calendar-ok-btn.active > a:only-child {
  9000. color: currentColor;
  9001. }
  9002. .ant-calendar .ant-calendar-ok-btn:active > a:only-child:after,
  9003. .ant-calendar .ant-calendar-ok-btn.active > a:only-child:after {
  9004. content: '';
  9005. position: absolute;
  9006. top: 0;
  9007. left: 0;
  9008. bottom: 0;
  9009. right: 0;
  9010. background: transparent;
  9011. }
  9012. .ant-calendar .ant-calendar-ok-btn.disabled,
  9013. .ant-calendar .ant-calendar-ok-btn[disabled],
  9014. .ant-calendar .ant-calendar-ok-btn.disabled:hover,
  9015. .ant-calendar .ant-calendar-ok-btn[disabled]:hover,
  9016. .ant-calendar .ant-calendar-ok-btn.disabled:focus,
  9017. .ant-calendar .ant-calendar-ok-btn[disabled]:focus,
  9018. .ant-calendar .ant-calendar-ok-btn.disabled:active,
  9019. .ant-calendar .ant-calendar-ok-btn[disabled]:active,
  9020. .ant-calendar .ant-calendar-ok-btn.disabled.active,
  9021. .ant-calendar .ant-calendar-ok-btn[disabled].active {
  9022. color: rgba(0, 0, 0, 0.25);
  9023. background-color: #f7f7f7;
  9024. border-color: #d9d9d9;
  9025. }
  9026. .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
  9027. .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
  9028. .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
  9029. .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
  9030. .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
  9031. .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
  9032. .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
  9033. .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
  9034. .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
  9035. .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  9036. color: currentColor;
  9037. }
  9038. .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child:after,
  9039. .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child:after,
  9040. .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child:after,
  9041. .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child:after,
  9042. .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child:after,
  9043. .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child:after,
  9044. .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child:after,
  9045. .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child:after,
  9046. .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child:after,
  9047. .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child:after {
  9048. content: '';
  9049. position: absolute;
  9050. top: 0;
  9051. left: 0;
  9052. bottom: 0;
  9053. right: 0;
  9054. background: transparent;
  9055. }
  9056. .ant-calendar .ant-calendar-ok-btn-disabled {
  9057. color: rgba(0, 0, 0, 0.25);
  9058. background-color: #f7f7f7;
  9059. border-color: #d9d9d9;
  9060. cursor: not-allowed;
  9061. }
  9062. .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child {
  9063. color: currentColor;
  9064. }
  9065. .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child:after {
  9066. content: '';
  9067. position: absolute;
  9068. top: 0;
  9069. left: 0;
  9070. bottom: 0;
  9071. right: 0;
  9072. background: transparent;
  9073. }
  9074. .ant-calendar .ant-calendar-ok-btn-disabled:hover {
  9075. color: rgba(0, 0, 0, 0.25);
  9076. background-color: #f7f7f7;
  9077. border-color: #d9d9d9;
  9078. }
  9079. .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child {
  9080. color: currentColor;
  9081. }
  9082. .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child:after {
  9083. content: '';
  9084. position: absolute;
  9085. top: 0;
  9086. left: 0;
  9087. bottom: 0;
  9088. right: 0;
  9089. background: transparent;
  9090. }
  9091. .ant-calendar-range-picker-input {
  9092. background-color: transparent;
  9093. border: 0;
  9094. height: 18px;
  9095. line-height: 18px;
  9096. outline: 0;
  9097. width: 43%;
  9098. text-align: center;
  9099. }
  9100. .ant-calendar-range-picker-input[disabled] {
  9101. cursor: not-allowed;
  9102. }
  9103. .ant-calendar-range-picker-separator {
  9104. color: rgba(0, 0, 0, 0.43);
  9105. }
  9106. .ant-calendar-range {
  9107. width: 470px;
  9108. overflow: hidden;
  9109. }
  9110. .ant-calendar-range .ant-calendar-date-panel::after {
  9111. content: ".";
  9112. display: block;
  9113. height: 0;
  9114. clear: both;
  9115. visibility: hidden;
  9116. }
  9117. .ant-calendar-range-part {
  9118. width: 50%;
  9119. position: relative;
  9120. }
  9121. .ant-calendar-range-left {
  9122. float: left;
  9123. }
  9124. .ant-calendar-range-left .ant-calendar-time-picker-inner {
  9125. border-right: 2px solid #e9e9e9;
  9126. }
  9127. .ant-calendar-range-right {
  9128. float: right;
  9129. }
  9130. .ant-calendar-range-right .ant-calendar-time-picker-inner {
  9131. border-left: 2px solid #e9e9e9;
  9132. }
  9133. .ant-calendar-range-middle {
  9134. position: absolute;
  9135. left: 50%;
  9136. width: 20px;
  9137. margin-left: -132px;
  9138. text-align: center;
  9139. height: 34px;
  9140. line-height: 34px;
  9141. color: rgba(0, 0, 0, 0.43);
  9142. }
  9143. .ant-calendar-range-right .ant-calendar-date-input-wrap {
  9144. margin-left: -118px;
  9145. }
  9146. .ant-calendar-range.ant-calendar-time .ant-calendar-range-middle {
  9147. margin-left: -12px;
  9148. }
  9149. .ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap {
  9150. margin-left: 0;
  9151. }
  9152. .ant-calendar-range .ant-calendar-input-wrap {
  9153. position: relative;
  9154. height: 34px;
  9155. }
  9156. .ant-calendar-range .ant-calendar-input,
  9157. .ant-calendar-range .ant-calendar-time-picker-input {
  9158. position: relative;
  9159. display: inline-block;
  9160. padding: 4px 7px;
  9161. width: 100%;
  9162. height: 28px;
  9163. cursor: text;
  9164. font-size: 12px;
  9165. line-height: 1.5;
  9166. color: rgba(0, 0, 0, 0.65);
  9167. background-color: #fff;
  9168. background-image: none;
  9169. border: 1px solid #d9d9d9;
  9170. border-radius: 4px;
  9171. transition: all .3s;
  9172. height: 22px;
  9173. border: 0;
  9174. box-shadow: none;
  9175. }
  9176. .ant-calendar-range .ant-calendar-input::-moz-placeholder,
  9177. .ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
  9178. color: #ccc;
  9179. opacity: 1;
  9180. }
  9181. .ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
  9182. .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
  9183. color: #ccc;
  9184. }
  9185. .ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
  9186. .ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
  9187. color: #ccc;
  9188. }
  9189. .ant-calendar-range .ant-calendar-input:hover,
  9190. .ant-calendar-range .ant-calendar-time-picker-input:hover {
  9191. border-color: #80b9ff;
  9192. }
  9193. .ant-calendar-range .ant-calendar-input:focus,
  9194. .ant-calendar-range .ant-calendar-time-picker-input:focus {
  9195. border-color: #80b9ff;
  9196. outline: 0;
  9197. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  9198. }
  9199. .ant-calendar-range .ant-calendar-input[disabled],
  9200. .ant-calendar-range .ant-calendar-time-picker-input[disabled] {
  9201. background-color: #f7f7f7;
  9202. opacity: 1;
  9203. cursor: not-allowed;
  9204. color: rgba(0, 0, 0, 0.25);
  9205. }
  9206. .ant-calendar-range .ant-calendar-input[disabled]:hover,
  9207. .ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover {
  9208. border-color: #e2e2e2;
  9209. }
  9210. textarea.ant-calendar-range .ant-calendar-input,
  9211. textarea.ant-calendar-range .ant-calendar-time-picker-input {
  9212. max-width: 100%;
  9213. height: auto;
  9214. vertical-align: bottom;
  9215. }
  9216. .ant-calendar-range .ant-calendar-input-lg,
  9217. .ant-calendar-range .ant-calendar-time-picker-input-lg {
  9218. padding: 6px 7px;
  9219. height: 32px;
  9220. }
  9221. .ant-calendar-range .ant-calendar-input-sm,
  9222. .ant-calendar-range .ant-calendar-time-picker-input-sm {
  9223. padding: 1px 7px;
  9224. height: 22px;
  9225. }
  9226. .ant-calendar-range .ant-calendar-input:focus,
  9227. .ant-calendar-range .ant-calendar-time-picker-input:focus {
  9228. box-shadow: none;
  9229. }
  9230. .ant-calendar-range .ant-calendar-time-picker-icon {
  9231. display: none;
  9232. }
  9233. .ant-calendar-range.ant-calendar-week-number {
  9234. width: 574px;
  9235. }
  9236. .ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part {
  9237. width: 286px;
  9238. }
  9239. .ant-calendar-range .ant-calendar-year-panel,
  9240. .ant-calendar-range .ant-calendar-month-panel {
  9241. top: 34px;
  9242. }
  9243. .ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel {
  9244. top: 0;
  9245. }
  9246. .ant-calendar-range .ant-calendar-decade-panel-table,
  9247. .ant-calendar-range .ant-calendar-year-panel-table,
  9248. .ant-calendar-range .ant-calendar-month-panel-table {
  9249. height: 208px;
  9250. }
  9251. .ant-calendar-range .ant-calendar-in-range-cell {
  9252. border-radius: 0;
  9253. position: relative;
  9254. }
  9255. .ant-calendar-range .ant-calendar-in-range-cell > div {
  9256. position: relative;
  9257. z-index: 1;
  9258. }
  9259. .ant-calendar-range .ant-calendar-in-range-cell:before {
  9260. content: '';
  9261. display: block;
  9262. background: #f2f8ff;
  9263. border-radius: 0;
  9264. border: 0;
  9265. position: absolute;
  9266. top: 4px;
  9267. bottom: 4px;
  9268. left: 0;
  9269. right: 0;
  9270. }
  9271. .ant-calendar-range-bottom {
  9272. text-align: right;
  9273. }
  9274. .ant-calendar-range-bottom .ant-calendar-footer-btn {
  9275. padding-right: 16px;
  9276. }
  9277. div.ant-calendar-range-quick-selector {
  9278. display: block;
  9279. text-align: left;
  9280. border-top: 1px solid #e9e9e9;
  9281. padding: 10.5px 10px;
  9282. }
  9283. div.ant-calendar-range-quick-selector > a {
  9284. margin-right: 16px;
  9285. }
  9286. .ant-calendar-range .ant-calendar-header,
  9287. .ant-calendar-range .ant-calendar-month-panel-header,
  9288. .ant-calendar-range .ant-calendar-year-panel-header {
  9289. border-bottom: 0;
  9290. }
  9291. .ant-calendar-range .ant-calendar-body,
  9292. .ant-calendar-range .ant-calendar-month-panel-body,
  9293. .ant-calendar-range .ant-calendar-year-panel-body {
  9294. border-top: 1px solid #e9e9e9;
  9295. }
  9296. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker {
  9297. height: 207px;
  9298. width: 100%;
  9299. top: 68px;
  9300. z-index: 2;
  9301. }
  9302. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel {
  9303. height: 241px;
  9304. margin-top: -34px;
  9305. }
  9306. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
  9307. padding-top: 34px;
  9308. height: 100%;
  9309. background: none;
  9310. }
  9311. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
  9312. display: inline-block;
  9313. height: 100%;
  9314. background-color: #fff;
  9315. border-top: 1px solid #e9e9e9;
  9316. }
  9317. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select {
  9318. height: 100%;
  9319. }
  9320. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul {
  9321. max-height: 100%;
  9322. }
  9323. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn {
  9324. padding: 9px 12px 9px 0;
  9325. display: block;
  9326. zoom: 1;
  9327. }
  9328. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:before,
  9329. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:after {
  9330. content: " ";
  9331. display: table;
  9332. }
  9333. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:after {
  9334. clear: both;
  9335. visibility: hidden;
  9336. font-size: 0;
  9337. height: 0;
  9338. }
  9339. .ant-calendar-range.ant-calendar-time .ant-calendar-ok-btn {
  9340. position: static;
  9341. height: 22px;
  9342. }
  9343. .ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  9344. margin-right: 12px;
  9345. }
  9346. .ant-calendar-range.ant-calendar-time .ant-calendar-today-btn {
  9347. margin: 8px 12px;
  9348. height: 22px;
  9349. line-height: 22px;
  9350. }
  9351. .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker {
  9352. height: 247px;
  9353. }
  9354. .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker-panel {
  9355. height: 281px;
  9356. }
  9357. .ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
  9358. border-top-color: transparent;
  9359. }
  9360. .ant-calendar-time-picker {
  9361. position: absolute;
  9362. width: 100%;
  9363. top: 34px;
  9364. background-color: #fff;
  9365. }
  9366. .ant-calendar-time-picker-panel {
  9367. z-index: 1050;
  9368. position: absolute;
  9369. width: 100%;
  9370. }
  9371. .ant-calendar-time-picker-inner {
  9372. display: inline-block;
  9373. position: relative;
  9374. outline: none;
  9375. list-style: none;
  9376. font-size: 12px;
  9377. text-align: left;
  9378. background-color: #fff;
  9379. background-clip: padding-box;
  9380. line-height: 1.5;
  9381. overflow: hidden;
  9382. width: 100%;
  9383. }
  9384. .ant-calendar-time-picker-combobox {
  9385. width: 100%;
  9386. }
  9387. .ant-calendar-time-picker-1-column,
  9388. .ant-calendar-time-picker-1-column .ant-calendar-time-picker-select {
  9389. width: 100%;
  9390. }
  9391. .ant-calendar-time-picker-2-columns .ant-calendar-time-picker-select {
  9392. width: 50%;
  9393. }
  9394. .ant-calendar-time-picker-1-column .ant-calendar-time-picker-select li,
  9395. .ant-calendar-time-picker-2-columns .ant-calendar-time-picker-select li {
  9396. padding: 0;
  9397. text-align: center;
  9398. }
  9399. .ant-calendar-time-picker-input-wrap {
  9400. display: none;
  9401. }
  9402. .ant-calendar-time-picker-select {
  9403. float: left;
  9404. font-size: 12px;
  9405. border: 1px solid #e9e9e9;
  9406. border-width: 0 1px;
  9407. margin-left: -1px;
  9408. box-sizing: border-box;
  9409. width: 33.6%;
  9410. overflow: hidden;
  9411. position: relative;
  9412. height: 206px;
  9413. }
  9414. .ant-calendar-time-picker-select:hover {
  9415. overflow-y: auto;
  9416. }
  9417. .ant-calendar-time-picker-select:first-child {
  9418. border-left: 0;
  9419. margin-left: 0;
  9420. }
  9421. .ant-calendar-time-picker-select:last-child {
  9422. border-right: 0;
  9423. }
  9424. .ant-calendar-time-picker-select ul {
  9425. list-style: none;
  9426. box-sizing: border-box;
  9427. margin: 0;
  9428. padding: 0;
  9429. width: 100%;
  9430. max-height: 206px;
  9431. }
  9432. .ant-calendar-time-picker-select li {
  9433. padding: 0 0 0 28px;
  9434. list-style: none;
  9435. box-sizing: content-box;
  9436. margin: 0;
  9437. width: 100%;
  9438. height: 24px;
  9439. line-height: 24px;
  9440. cursor: pointer;
  9441. user-select: none;
  9442. transition: background 0.3s ease;
  9443. }
  9444. .ant-calendar-time-picker-select li:last-child:after {
  9445. content: '';
  9446. height: 182px;
  9447. display: block;
  9448. }
  9449. .ant-calendar-time-picker-select li:hover {
  9450. background: #f2f8ff;
  9451. }
  9452. li.ant-calendar-time-picker-select-option-selected {
  9453. background: #f7f7f7;
  9454. font-weight: bold;
  9455. }
  9456. li.ant-calendar-time-picker-select-option-disabled {
  9457. color: rgba(0, 0, 0, 0.25);
  9458. }
  9459. li.ant-calendar-time-picker-select-option-disabled:hover {
  9460. background: transparent;
  9461. cursor: not-allowed;
  9462. }
  9463. .ant-calendar-time .ant-calendar-day-select {
  9464. padding: 0 2px;
  9465. font-weight: bold;
  9466. display: inline-block;
  9467. color: rgba(0, 0, 0, 0.65);
  9468. line-height: 34px;
  9469. }
  9470. .ant-calendar-time .ant-calendar-footer {
  9471. text-align: right;
  9472. position: relative;
  9473. height: auto;
  9474. line-height: auto;
  9475. }
  9476. .ant-calendar-time .ant-calendar-footer-btn {
  9477. padding: 10px 0;
  9478. line-height: 1.5;
  9479. text-align: right;
  9480. }
  9481. .ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn {
  9482. float: left;
  9483. margin: 0;
  9484. padding-left: 12px;
  9485. }
  9486. .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  9487. display: inline-block;
  9488. text-align: center;
  9489. margin-right: 60px;
  9490. }
  9491. .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
  9492. color: rgba(0, 0, 0, 0.25);
  9493. }
  9494. .ant-calendar-month-panel {
  9495. left: 0;
  9496. top: 1px;
  9497. bottom: 0;
  9498. right: 0;
  9499. background: #fff;
  9500. z-index: 10;
  9501. position: absolute;
  9502. outline: none;
  9503. border-radius: 4px;
  9504. }
  9505. .ant-calendar-month-panel-hidden {
  9506. display: none;
  9507. }
  9508. .ant-calendar-month-panel-header {
  9509. height: 34px;
  9510. line-height: 34px;
  9511. text-align: center;
  9512. user-select: none;
  9513. border-bottom: 1px solid #e9e9e9;
  9514. }
  9515. .ant-calendar-month-panel-header a:hover {
  9516. color: #80b9ff;
  9517. }
  9518. .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
  9519. .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
  9520. .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
  9521. .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
  9522. padding: 0 2px;
  9523. font-weight: bold;
  9524. display: inline-block;
  9525. color: rgba(0, 0, 0, 0.65);
  9526. line-height: 34px;
  9527. }
  9528. .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,
  9529. .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,
  9530. .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow,
  9531. .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow {
  9532. display: none;
  9533. }
  9534. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
  9535. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
  9536. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
  9537. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
  9538. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
  9539. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
  9540. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
  9541. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  9542. position: absolute;
  9543. top: 0;
  9544. color: rgba(0, 0, 0, 0.43);
  9545. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9546. padding: 0 5px;
  9547. font-size: 16px;
  9548. display: inline-block;
  9549. line-height: 34px;
  9550. }
  9551. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
  9552. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
  9553. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn {
  9554. left: 7px;
  9555. }
  9556. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:after,
  9557. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:after,
  9558. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:after {
  9559. content: '\AB';
  9560. }
  9561. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
  9562. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
  9563. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  9564. right: 7px;
  9565. }
  9566. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,
  9567. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,
  9568. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after {
  9569. content: '\BB';
  9570. }
  9571. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn {
  9572. left: 29px;
  9573. }
  9574. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:after {
  9575. content: '\2039';
  9576. }
  9577. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn {
  9578. right: 29px;
  9579. }
  9580. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:after {
  9581. content: '\203A';
  9582. }
  9583. .ant-calendar-month-panel-table {
  9584. table-layout: fixed;
  9585. width: 100%;
  9586. height: 248px;
  9587. border-collapse: separate;
  9588. }
  9589. .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
  9590. background: #58a3ff;
  9591. color: #fff;
  9592. }
  9593. .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
  9594. background: #58a3ff;
  9595. color: #fff;
  9596. }
  9597. .ant-calendar-month-panel-cell {
  9598. text-align: center;
  9599. }
  9600. .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
  9601. .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
  9602. cursor: not-allowed;
  9603. color: #bcbcbc;
  9604. background: #f3f3f3;
  9605. }
  9606. .ant-calendar-month-panel-month {
  9607. display: inline-block;
  9608. margin: 0 auto;
  9609. color: rgba(0, 0, 0, 0.65);
  9610. background: transparent;
  9611. text-align: center;
  9612. height: 24px;
  9613. line-height: 24px;
  9614. padding: 0 6px;
  9615. border-radius: 4px;
  9616. transition: background 0.3s ease;
  9617. }
  9618. .ant-calendar-month-panel-month:hover {
  9619. background: #f2f8ff;
  9620. cursor: pointer;
  9621. }
  9622. .ant-calendar-year-panel {
  9623. left: 0;
  9624. top: 1px;
  9625. bottom: 0;
  9626. right: 0;
  9627. background: #fff;
  9628. z-index: 10;
  9629. position: absolute;
  9630. outline: none;
  9631. border-radius: 4px;
  9632. }
  9633. .ant-calendar-year-panel-hidden {
  9634. display: none;
  9635. }
  9636. .ant-calendar-year-panel-header {
  9637. height: 34px;
  9638. line-height: 34px;
  9639. text-align: center;
  9640. user-select: none;
  9641. border-bottom: 1px solid #e9e9e9;
  9642. }
  9643. .ant-calendar-year-panel-header a:hover {
  9644. color: #80b9ff;
  9645. }
  9646. .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
  9647. .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
  9648. .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
  9649. .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
  9650. padding: 0 2px;
  9651. font-weight: bold;
  9652. display: inline-block;
  9653. color: rgba(0, 0, 0, 0.65);
  9654. line-height: 34px;
  9655. }
  9656. .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,
  9657. .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,
  9658. .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow,
  9659. .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow {
  9660. display: none;
  9661. }
  9662. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
  9663. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
  9664. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
  9665. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
  9666. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
  9667. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
  9668. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
  9669. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  9670. position: absolute;
  9671. top: 0;
  9672. color: rgba(0, 0, 0, 0.43);
  9673. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9674. padding: 0 5px;
  9675. font-size: 16px;
  9676. display: inline-block;
  9677. line-height: 34px;
  9678. }
  9679. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
  9680. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
  9681. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn {
  9682. left: 7px;
  9683. }
  9684. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:after,
  9685. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:after,
  9686. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:after {
  9687. content: '\AB';
  9688. }
  9689. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
  9690. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
  9691. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  9692. right: 7px;
  9693. }
  9694. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,
  9695. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,
  9696. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after {
  9697. content: '\BB';
  9698. }
  9699. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn {
  9700. left: 29px;
  9701. }
  9702. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:after {
  9703. content: '\2039';
  9704. }
  9705. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn {
  9706. right: 29px;
  9707. }
  9708. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:after {
  9709. content: '\203A';
  9710. }
  9711. .ant-calendar-year-panel-table {
  9712. table-layout: fixed;
  9713. width: 100%;
  9714. height: 248px;
  9715. border-collapse: separate;
  9716. }
  9717. .ant-calendar-year-panel-cell {
  9718. text-align: center;
  9719. }
  9720. .ant-calendar-year-panel-year {
  9721. display: inline-block;
  9722. margin: 0 auto;
  9723. color: rgba(0, 0, 0, 0.65);
  9724. background: transparent;
  9725. text-align: center;
  9726. height: 24px;
  9727. line-height: 24px;
  9728. padding: 0 6px;
  9729. border-radius: 4px;
  9730. transition: background 0.3s ease;
  9731. }
  9732. .ant-calendar-year-panel-year:hover {
  9733. background: #f2f8ff;
  9734. cursor: pointer;
  9735. }
  9736. .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
  9737. background: #58a3ff;
  9738. color: #fff;
  9739. }
  9740. .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
  9741. background: #58a3ff;
  9742. color: #fff;
  9743. }
  9744. .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
  9745. .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  9746. user-select: none;
  9747. color: rgba(0, 0, 0, 0.25);
  9748. }
  9749. .ant-calendar-decade-panel {
  9750. left: 0;
  9751. top: 0;
  9752. bottom: 0;
  9753. right: 0;
  9754. background: #fff;
  9755. z-index: 10;
  9756. position: absolute;
  9757. outline: none;
  9758. border-radius: 4px;
  9759. }
  9760. .ant-calendar-decade-panel-hidden {
  9761. display: none;
  9762. }
  9763. .ant-calendar-decade-panel-header {
  9764. height: 34px;
  9765. line-height: 34px;
  9766. text-align: center;
  9767. user-select: none;
  9768. border-bottom: 1px solid #e9e9e9;
  9769. }
  9770. .ant-calendar-decade-panel-header a:hover {
  9771. color: #80b9ff;
  9772. }
  9773. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
  9774. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
  9775. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
  9776. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
  9777. padding: 0 2px;
  9778. font-weight: bold;
  9779. display: inline-block;
  9780. color: rgba(0, 0, 0, 0.65);
  9781. line-height: 34px;
  9782. }
  9783. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,
  9784. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,
  9785. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow,
  9786. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow {
  9787. display: none;
  9788. }
  9789. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
  9790. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
  9791. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
  9792. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
  9793. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
  9794. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
  9795. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
  9796. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  9797. position: absolute;
  9798. top: 0;
  9799. color: rgba(0, 0, 0, 0.43);
  9800. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9801. padding: 0 5px;
  9802. font-size: 16px;
  9803. display: inline-block;
  9804. line-height: 34px;
  9805. }
  9806. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
  9807. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
  9808. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn {
  9809. left: 7px;
  9810. }
  9811. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:after,
  9812. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:after,
  9813. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:after {
  9814. content: '\AB';
  9815. }
  9816. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
  9817. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
  9818. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  9819. right: 7px;
  9820. }
  9821. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,
  9822. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,
  9823. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after {
  9824. content: '\BB';
  9825. }
  9826. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn {
  9827. left: 29px;
  9828. }
  9829. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:after {
  9830. content: '\2039';
  9831. }
  9832. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn {
  9833. right: 29px;
  9834. }
  9835. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:after {
  9836. content: '\203A';
  9837. }
  9838. .ant-calendar-decade-panel-table {
  9839. table-layout: fixed;
  9840. width: 100%;
  9841. height: 248px;
  9842. border-collapse: separate;
  9843. }
  9844. .ant-calendar-decade-panel-cell {
  9845. text-align: center;
  9846. white-space: nowrap;
  9847. }
  9848. .ant-calendar-decade-panel-decade {
  9849. display: inline-block;
  9850. margin: 0 auto;
  9851. color: rgba(0, 0, 0, 0.65);
  9852. background: transparent;
  9853. text-align: center;
  9854. height: 24px;
  9855. line-height: 24px;
  9856. padding: 0 6px;
  9857. border-radius: 4px;
  9858. transition: background 0.3s ease;
  9859. }
  9860. .ant-calendar-decade-panel-decade:hover {
  9861. background: #f2f8ff;
  9862. cursor: pointer;
  9863. }
  9864. .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
  9865. background: #58a3ff;
  9866. color: #fff;
  9867. }
  9868. .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
  9869. background: #58a3ff;
  9870. color: #fff;
  9871. }
  9872. .ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
  9873. .ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
  9874. user-select: none;
  9875. color: rgba(0, 0, 0, 0.25);
  9876. }
  9877. .ant-calendar-month .ant-calendar-month-panel,
  9878. .ant-calendar-month .ant-calendar-year-panel {
  9879. top: 0;
  9880. }
  9881. .ant-time-picker-panel {
  9882. max-width: 168px;
  9883. z-index: 1050;
  9884. position: absolute;
  9885. }
  9886. .ant-time-picker-panel-inner {
  9887. display: inline-block;
  9888. position: relative;
  9889. outline: none;
  9890. list-style: none;
  9891. font-size: 12px;
  9892. text-align: left;
  9893. background-color: #fff;
  9894. border-radius: 4px;
  9895. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  9896. background-clip: padding-box;
  9897. line-height: 1.5;
  9898. overflow: hidden;
  9899. left: -2px;
  9900. }
  9901. .ant-time-picker-panel-input {
  9902. margin: 0;
  9903. padding: 0;
  9904. border: 0;
  9905. width: 100%;
  9906. cursor: auto;
  9907. line-height: 1.5;
  9908. outline: 0;
  9909. }
  9910. .ant-time-picker-panel-input-wrap {
  9911. box-sizing: border-box;
  9912. position: relative;
  9913. padding: 6px;
  9914. border-bottom: 1px solid #e9e9e9;
  9915. }
  9916. .ant-time-picker-panel-input-invalid {
  9917. border-color: red;
  9918. }
  9919. .ant-time-picker-panel-clear-btn {
  9920. position: absolute;
  9921. right: 5px;
  9922. cursor: pointer;
  9923. overflow: hidden;
  9924. width: 20px;
  9925. height: 20px;
  9926. text-align: center;
  9927. line-height: 20px;
  9928. top: 5px;
  9929. margin: 0;
  9930. }
  9931. .ant-time-picker-panel-clear-btn:after {
  9932. font-size: 12px;
  9933. color: rgba(0, 0, 0, 0.25);
  9934. display: inline-block;
  9935. line-height: 1;
  9936. width: 20px;
  9937. transition: color 0.3s ease;
  9938. font-family: 'anticon';
  9939. text-rendering: optimizeLegibility;
  9940. -webkit-font-smoothing: antialiased;
  9941. -moz-osx-font-smoothing: grayscale;
  9942. content: "\E62E";
  9943. }
  9944. .ant-time-picker-panel-clear-btn:hover:after {
  9945. color: rgba(0, 0, 0, 0.43);
  9946. }
  9947. .ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap {
  9948. max-width: 112px;
  9949. }
  9950. .ant-time-picker-panel-select {
  9951. float: left;
  9952. font-size: 12px;
  9953. border-left: 1px solid #e9e9e9;
  9954. box-sizing: border-box;
  9955. width: 56px;
  9956. overflow: hidden;
  9957. position: relative;
  9958. max-height: 144px;
  9959. }
  9960. .ant-time-picker-panel-select:hover {
  9961. overflow-y: auto;
  9962. }
  9963. .ant-time-picker-panel-select:first-child {
  9964. border-left: 0;
  9965. margin-left: 0;
  9966. }
  9967. .ant-time-picker-panel-select:last-child {
  9968. border-right: 0;
  9969. }
  9970. .ant-time-picker-panel-select:only-child {
  9971. width: 100%;
  9972. }
  9973. .ant-time-picker-panel-select ul {
  9974. list-style: none;
  9975. box-sizing: border-box;
  9976. margin: 0;
  9977. padding: 0 0 120px;
  9978. width: 100%;
  9979. }
  9980. .ant-time-picker-panel-select li {
  9981. list-style: none;
  9982. box-sizing: content-box;
  9983. margin: 0;
  9984. padding: 0 0 0 16px;
  9985. width: 100%;
  9986. height: 24px;
  9987. line-height: 24px;
  9988. text-align: left;
  9989. cursor: pointer;
  9990. user-select: none;
  9991. transition: background 0.3s ease;
  9992. }
  9993. .ant-time-picker-panel-select li:hover {
  9994. background: #f2f8ff;
  9995. }
  9996. li.ant-time-picker-panel-select-option-selected {
  9997. background: #f7f7f7;
  9998. font-weight: bold;
  9999. }
  10000. li.ant-time-picker-panel-select-option-disabled {
  10001. color: rgba(0, 0, 0, 0.25);
  10002. }
  10003. li.ant-time-picker-panel-select-option-disabled:hover {
  10004. background: transparent;
  10005. cursor: not-allowed;
  10006. }
  10007. .ant-time-picker-panel-combobox {
  10008. zoom: 1;
  10009. }
  10010. .ant-time-picker-panel-combobox:before,
  10011. .ant-time-picker-panel-combobox:after {
  10012. content: " ";
  10013. display: table;
  10014. }
  10015. .ant-time-picker-panel-combobox:after {
  10016. clear: both;
  10017. visibility: hidden;
  10018. font-size: 0;
  10019. height: 0;
  10020. }
  10021. .ant-time-picker-panel-addon {
  10022. padding: 8px;
  10023. border-top: 1px solid #e9e9e9;
  10024. }
  10025. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft,
  10026. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight,
  10027. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft,
  10028. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight {
  10029. animation-name: antSlideDownIn;
  10030. }
  10031. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft,
  10032. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight,
  10033. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft,
  10034. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight {
  10035. animation-name: antSlideUpIn;
  10036. }
  10037. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft,
  10038. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight {
  10039. animation-name: antSlideDownOut;
  10040. }
  10041. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft,
  10042. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight {
  10043. animation-name: antSlideUpOut;
  10044. }
  10045. .ant-time-picker {
  10046. position: relative;
  10047. display: inline-block;
  10048. outline: none;
  10049. font-size: 12px;
  10050. transition: opacity 0.3s ease;
  10051. width: 100px;
  10052. }
  10053. .ant-time-picker-input {
  10054. position: relative;
  10055. display: inline-block;
  10056. padding: 4px 7px;
  10057. width: 100%;
  10058. height: 28px;
  10059. cursor: text;
  10060. font-size: 12px;
  10061. line-height: 1.5;
  10062. color: rgba(0, 0, 0, 0.65);
  10063. background-color: #fff;
  10064. background-image: none;
  10065. border: 1px solid #d9d9d9;
  10066. border-radius: 4px;
  10067. transition: all .3s;
  10068. }
  10069. .ant-time-picker-input::-moz-placeholder {
  10070. color: #ccc;
  10071. opacity: 1;
  10072. }
  10073. .ant-time-picker-input:-ms-input-placeholder {
  10074. color: #ccc;
  10075. }
  10076. .ant-time-picker-input::-webkit-input-placeholder {
  10077. color: #ccc;
  10078. }
  10079. .ant-time-picker-input:hover {
  10080. border-color: #80b9ff;
  10081. }
  10082. .ant-time-picker-input:focus {
  10083. border-color: #80b9ff;
  10084. outline: 0;
  10085. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10086. }
  10087. .ant-time-picker-input[disabled] {
  10088. background-color: #f7f7f7;
  10089. opacity: 1;
  10090. cursor: not-allowed;
  10091. color: rgba(0, 0, 0, 0.25);
  10092. }
  10093. .ant-time-picker-input[disabled]:hover {
  10094. border-color: #e2e2e2;
  10095. }
  10096. textarea.ant-time-picker-input {
  10097. max-width: 100%;
  10098. height: auto;
  10099. vertical-align: bottom;
  10100. }
  10101. .ant-time-picker-input-lg {
  10102. padding: 6px 7px;
  10103. height: 32px;
  10104. }
  10105. .ant-time-picker-input-sm {
  10106. padding: 1px 7px;
  10107. height: 22px;
  10108. }
  10109. .ant-time-picker-large .ant-time-picker-input {
  10110. padding: 6px 7px;
  10111. height: 32px;
  10112. }
  10113. .ant-time-picker-small .ant-time-picker-input {
  10114. padding: 1px 7px;
  10115. height: 22px;
  10116. }
  10117. .ant-time-picker-open {
  10118. opacity: 0;
  10119. }
  10120. .ant-time-picker-icon {
  10121. position: absolute;
  10122. user-select: none;
  10123. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  10124. width: 12px;
  10125. height: 12px;
  10126. line-height: 12px;
  10127. right: 8px;
  10128. color: rgba(0, 0, 0, 0.43);
  10129. top: 50%;
  10130. margin-top: -6px;
  10131. }
  10132. .ant-time-picker-icon:after {
  10133. content: "\E641";
  10134. font-family: "anticon";
  10135. font-size: 12px;
  10136. color: rgba(0, 0, 0, 0.43);
  10137. display: inline-block;
  10138. line-height: 1;
  10139. vertical-align: bottom;
  10140. }
  10141. .ant-radio-group {
  10142. display: inline-block;
  10143. font-size: 12px;
  10144. }
  10145. .ant-radio-wrapper {
  10146. font-size: 12px;
  10147. display: inline-block;
  10148. position: relative;
  10149. white-space: nowrap;
  10150. margin-right: 8px;
  10151. cursor: pointer;
  10152. }
  10153. .ant-radio {
  10154. white-space: nowrap;
  10155. outline: none;
  10156. display: inline-block;
  10157. position: relative;
  10158. line-height: 1;
  10159. vertical-align: middle;
  10160. cursor: pointer;
  10161. }
  10162. .ant-radio-wrapper:hover .ant-radio .ant-radio-inner,
  10163. .ant-radio:hover .ant-radio-inner,
  10164. .ant-radio-focused .ant-radio-inner {
  10165. border-color: #58a3ff;
  10166. }
  10167. .ant-radio-inner {
  10168. position: relative;
  10169. top: 0;
  10170. left: 0;
  10171. display: block;
  10172. width: 14px;
  10173. height: 14px;
  10174. border-width: 1px;
  10175. border-style: solid;
  10176. border-radius: 14px;
  10177. border-color: #d9d9d9;
  10178. background-color: #fff;
  10179. transition: all 0.3s;
  10180. }
  10181. .ant-radio-inner:after {
  10182. position: absolute;
  10183. width: 6px;
  10184. height: 6px;
  10185. left: 3px;
  10186. top: 3px;
  10187. border-radius: 4px;
  10188. display: table;
  10189. border-top: 0;
  10190. border-left: 0;
  10191. content: ' ';
  10192. background-color: #58a3ff;
  10193. opacity: 0;
  10194. transform: scale(0);
  10195. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  10196. }
  10197. .ant-radio-input {
  10198. position: absolute;
  10199. left: 0;
  10200. z-index: 1;
  10201. cursor: pointer;
  10202. opacity: 0;
  10203. top: 0;
  10204. bottom: 0;
  10205. right: 0;
  10206. }
  10207. .ant-radio-checked .ant-radio-inner {
  10208. border-color: #58a3ff;
  10209. }
  10210. .ant-radio-checked .ant-radio-inner:after {
  10211. transform: scale(1);
  10212. opacity: 1;
  10213. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  10214. }
  10215. .ant-radio-disabled .ant-radio-inner {
  10216. border-color: #d9d9d9 !important;
  10217. background-color: #f3f3f3;
  10218. }
  10219. .ant-radio-disabled .ant-radio-inner:after {
  10220. background-color: #ccc;
  10221. }
  10222. .ant-radio-disabled + span {
  10223. color: rgba(0, 0, 0, 0.25);
  10224. cursor: not-allowed;
  10225. }
  10226. span.ant-radio + * {
  10227. padding-left: 8px;
  10228. padding-right: 8px;
  10229. vertical-align: middle;
  10230. }
  10231. .ant-radio-button-wrapper {
  10232. margin: 0;
  10233. height: 28px;
  10234. line-height: 26px;
  10235. color: rgba(0, 0, 0, 0.65);
  10236. display: inline-block;
  10237. transition: all 0.3s ease;
  10238. cursor: pointer;
  10239. border: 1px solid #d9d9d9;
  10240. border-left: 0;
  10241. background: #fff;
  10242. padding: 0 16px;
  10243. }
  10244. .ant-radio-button-wrapper a {
  10245. color: rgba(0, 0, 0, 0.65);
  10246. }
  10247. .ant-radio-button-wrapper > .ant-radio-button {
  10248. margin-left: 0;
  10249. display: block;
  10250. width: 0;
  10251. height: 0;
  10252. }
  10253. .ant-radio-group-large .ant-radio-button-wrapper {
  10254. height: 32px;
  10255. line-height: 30px;
  10256. }
  10257. .ant-radio-group-small .ant-radio-button-wrapper {
  10258. height: 22px;
  10259. line-height: 20px;
  10260. padding: 0 12px;
  10261. }
  10262. .ant-radio-group-small .ant-radio-button-wrapper:first-child {
  10263. border-radius: 2px 0 0 2px;
  10264. }
  10265. .ant-radio-group-small .ant-radio-button-wrapper:last-child {
  10266. border-radius: 0 2px 2px 0;
  10267. }
  10268. .ant-radio-button-wrapper:first-child {
  10269. border-radius: 4px 0 0 4px;
  10270. border-left: 1px solid #d9d9d9;
  10271. }
  10272. .ant-radio-button-wrapper:last-child {
  10273. border-radius: 0 4px 4px 0;
  10274. }
  10275. .ant-radio-button-wrapper:first-child:last-child {
  10276. border-radius: 4px;
  10277. }
  10278. .ant-radio-button-wrapper:hover,
  10279. .ant-radio-button-wrapper-focused {
  10280. color: #58a3ff;
  10281. position: relative;
  10282. }
  10283. .ant-radio-button-wrapper .ant-radio-inner,
  10284. .ant-radio-button-wrapper input[type="checkbox"],
  10285. .ant-radio-button-wrapper input[type="radio"] {
  10286. opacity: 0;
  10287. filter: alpha(opacity=0);
  10288. width: 0;
  10289. height: 0;
  10290. }
  10291. .ant-radio-button-wrapper-checked {
  10292. background: #fff;
  10293. border-color: #58a3ff;
  10294. color: #58a3ff;
  10295. box-shadow: -1px 0 0 0 #58a3ff;
  10296. }
  10297. .ant-radio-button-wrapper-checked:first-child {
  10298. border-color: #58a3ff;
  10299. box-shadow: none!important;
  10300. }
  10301. .ant-radio-button-wrapper-checked:hover {
  10302. border-color: #80b9ff;
  10303. box-shadow: -1px 0 0 0 #80b9ff;
  10304. color: #80b9ff;
  10305. }
  10306. .ant-radio-button-wrapper-checked:active {
  10307. border-color: #4386e7;
  10308. box-shadow: -1px 0 0 0 #4386e7;
  10309. color: #4386e7;
  10310. }
  10311. .ant-radio-button-wrapper-disabled {
  10312. border-color: #d9d9d9;
  10313. background-color: #f7f7f7;
  10314. cursor: not-allowed;
  10315. color: rgba(0, 0, 0, 0.25);
  10316. }
  10317. .ant-radio-button-wrapper-disabled:first-child,
  10318. .ant-radio-button-wrapper-disabled:hover {
  10319. border-color: #d9d9d9;
  10320. background-color: #f7f7f7;
  10321. color: rgba(0, 0, 0, 0.25);
  10322. }
  10323. .ant-radio-button-wrapper-disabled:first-child {
  10324. border-left-color: #d9d9d9;
  10325. }
  10326. .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  10327. color: #fff;
  10328. background-color: #e6e6e6;
  10329. border-color: #d9d9d9;
  10330. box-shadow: none;
  10331. }
  10332. .set-base .acc-title {
  10333. color: #333;
  10334. font-size: 16px;
  10335. margin-bottom: 10px;
  10336. }
  10337. .set-base .acc-title span {
  10338. font-size: 12px;
  10339. color: #999;
  10340. margin-left: 10px;
  10341. }
  10342. .set-base .acc-detail {
  10343. background: #fff;
  10344. padding: 20px;
  10345. border-bottom: 1px solid #d8d8d8;
  10346. }
  10347. .set-base .acc-detail p {
  10348. line-height: 24px;
  10349. }
  10350. .set-base .acc-detail p span {
  10351. color: #333;
  10352. }
  10353. .set-base .acc-detail div {
  10354. margin-top: 16px;
  10355. }
  10356. .set-base .acc-detail div button {
  10357. margin-right: 20px;
  10358. border-radius: 4px;
  10359. }
  10360. .set-base .acc-bind {
  10361. background: #fff;
  10362. padding: 20px;
  10363. margin-bottom: 20px;
  10364. }
  10365. .set-base .acc-bind p button {
  10366. border: none;
  10367. border-radius: 4px;
  10368. margin-right: 20px;
  10369. }
  10370. .set-base .acc-bind p button img {
  10371. height: 20px;
  10372. vertical-align: middle;
  10373. }
  10374. .set-base .acc-bind p button span {
  10375. color: #fff;
  10376. }
  10377. .set-base .acc-bind p .relateweixin {
  10378. background: #12d41e;
  10379. }
  10380. .set-base .acc-bind p .relateqq {
  10381. background: #3073c1;
  10382. }
  10383. .set-base .acc-bind p .relateweibo {
  10384. background: #cf331d;
  10385. }
  10386. .set-base .acc-info {
  10387. background: #fff;
  10388. padding: 20px;
  10389. }
  10390. .set-base .acc-info .base-form {
  10391. width: 580px;
  10392. }
  10393. .set-base .acc-info .base-form .ant-form-item p {
  10394. color: #333;
  10395. }
  10396. .set-base .acc-info .base-form .ant-form-item .ant-form-item-label {
  10397. text-align: left;
  10398. }
  10399. .set-base .acc-info .base-form .ant-form-item .set-submit {
  10400. width: 120px;
  10401. border-radius: 4px;
  10402. }
  10403. .set-base .acc-info .base-form .ant-form-item .idcard-img > div {
  10404. float: left;
  10405. padding: 20px;
  10406. border: 1px solid #c9c9c9;
  10407. margin-right: 20px;
  10408. }
  10409. .set-base .acc-info .base-form .ant-form-item .idcard-img > div > .idcard-imgbox {
  10410. width: 142px;
  10411. height: 90px;
  10412. padding-top: 90px;
  10413. position: relative;
  10414. }
  10415. .set-base .acc-info .base-form .ant-form-item .idcard-img > div > .idcard-imgbox img {
  10416. width: 142px;
  10417. height: 90px;
  10418. position: absolute;
  10419. top: 0;
  10420. left: 0;
  10421. border: 1px solid #c9c9c9;
  10422. border-radius: 6px;
  10423. }
  10424. .set-base .acc-info .base-form .avatar-uploader,
  10425. .set-base .acc-info .base-form .avatar-uploader-trigger,
  10426. .set-base .acc-info .base-form .avatar {
  10427. width: 150px;
  10428. height: 150px;
  10429. }
  10430. .set-base .acc-info .base-form .avatar-uploader {
  10431. display: block;
  10432. padding: 1px;
  10433. border: 1px dashed #d9d9d9;
  10434. border-radius: 6px;
  10435. cursor: pointer;
  10436. position: relative;
  10437. }
  10438. .set-base .acc-info .base-form .avatar-uploader img {
  10439. position: absolute;
  10440. top: -1px;
  10441. left: -1px;
  10442. height: 150px;
  10443. }
  10444. .set-base .acc-info .base-form .avatar-uploader-trigger {
  10445. display: table-cell;
  10446. vertical-align: middle;
  10447. font-size: 28px;
  10448. color: #999;
  10449. }
  10450. .set-person {
  10451. background: #fff;
  10452. padding: 20px;
  10453. }
  10454. .set-person .acc-title {
  10455. color: #333;
  10456. font-size: 16px;
  10457. margin-bottom: 10px;
  10458. }
  10459. .set-person .acc-title span {
  10460. font-size: 12px;
  10461. color: #999;
  10462. margin-left: 10px;
  10463. }
  10464. .set-person .person-form {
  10465. width: 600px;
  10466. }
  10467. .set-person .person-form .set-explain {
  10468. margin-left: 12.5%;
  10469. margin-bottom: 20px;
  10470. }
  10471. .set-person .person-form .set-submit {
  10472. width: 120px;
  10473. border-radius: 4px;
  10474. }
  10475. .set-person .person-form .ant-form-item-label {
  10476. text-align: left;
  10477. }
  10478. .set-person .person-form #province select {
  10479. margin-right: 20px;
  10480. width: 80px;
  10481. height: 32px;
  10482. border: 1px solid #d9d9d9;
  10483. }
  10484. .set-person .person-form #telephone input {
  10485. width: 25%;
  10486. }
  10487. .set-person .person-form #telephone #fixedTel {
  10488. width: 42%;
  10489. }
  10490. .set-person .person-form .school-props > div {
  10491. float: left;
  10492. width: 50%;
  10493. }
  10494. .set-person .person-form .school-props > div span {
  10495. display: inline-block;
  10496. width: 45%;
  10497. }
  10498. .set-person .avatar-uploader,
  10499. .set-person .avatar-uploader-trigger,
  10500. .set-person .avatar {
  10501. width: 150px;
  10502. height: 150px;
  10503. }
  10504. .set-person .avatar-uploader {
  10505. display: block;
  10506. border: 1px dashed #d9d9d9;
  10507. border-radius: 6px;
  10508. cursor: pointer;
  10509. }
  10510. .set-person .avatar-uploader-trigger {
  10511. display: table-cell;
  10512. vertical-align: middle;
  10513. font-size: 28px;
  10514. color: #999;
  10515. }
  10516. .set-person #cmbProvince,
  10517. .set-person #cmbCity,
  10518. .set-person #cmbArea {
  10519. border-radius: 4px;
  10520. }
  10521. .ant-input-number {
  10522. position: relative;
  10523. padding: 4px 7px;
  10524. width: 100%;
  10525. cursor: text;
  10526. line-height: 1.5;
  10527. color: rgba(0, 0, 0, 0.65);
  10528. background-color: #fff;
  10529. background-image: none;
  10530. transition: all .3s;
  10531. margin: 0;
  10532. padding: 0;
  10533. font-size: 12px;
  10534. height: 28px;
  10535. display: inline-block;
  10536. border: 1px solid #d9d9d9;
  10537. border-radius: 4px;
  10538. width: 80px;
  10539. }
  10540. .ant-input-number::-moz-placeholder {
  10541. color: #ccc;
  10542. opacity: 1;
  10543. }
  10544. .ant-input-number:-ms-input-placeholder {
  10545. color: #ccc;
  10546. }
  10547. .ant-input-number::-webkit-input-placeholder {
  10548. color: #ccc;
  10549. }
  10550. .ant-input-number:hover {
  10551. border-color: #80b9ff;
  10552. }
  10553. .ant-input-number:focus {
  10554. border-color: #80b9ff;
  10555. outline: 0;
  10556. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10557. }
  10558. .ant-input-number[disabled] {
  10559. background-color: #f7f7f7;
  10560. opacity: 1;
  10561. cursor: not-allowed;
  10562. color: rgba(0, 0, 0, 0.25);
  10563. }
  10564. .ant-input-number[disabled]:hover {
  10565. border-color: #e2e2e2;
  10566. }
  10567. textarea.ant-input-number {
  10568. max-width: 100%;
  10569. height: auto;
  10570. vertical-align: bottom;
  10571. }
  10572. .ant-input-number-lg {
  10573. padding: 6px 7px;
  10574. height: 32px;
  10575. }
  10576. .ant-input-number-sm {
  10577. padding: 1px 7px;
  10578. height: 22px;
  10579. }
  10580. .ant-input-number-handler {
  10581. text-align: center;
  10582. line-height: 0;
  10583. height: 50%;
  10584. overflow: hidden;
  10585. color: rgba(0, 0, 0, 0.43);
  10586. position: relative;
  10587. transition: all 0.1s linear;
  10588. display: block;
  10589. width: 100%;
  10590. font-weight: bold;
  10591. }
  10592. .ant-input-number-handler:active {
  10593. background: #f4f4f4;
  10594. }
  10595. .ant-input-number-handler:hover .ant-input-number-handler-up-inner,
  10596. .ant-input-number-handler:hover .ant-input-number-handler-down-inner {
  10597. color: #80b9ff;
  10598. }
  10599. .ant-input-number-handler-up-inner,
  10600. .ant-input-number-handler-down-inner {
  10601. font-style: normal;
  10602. vertical-align: baseline;
  10603. text-align: center;
  10604. text-transform: none;
  10605. line-height: 1;
  10606. text-rendering: optimizeLegibility;
  10607. -webkit-font-smoothing: antialiased;
  10608. -moz-osx-font-smoothing: grayscale;
  10609. line-height: 12px;
  10610. user-select: none;
  10611. position: absolute;
  10612. width: 12px;
  10613. height: 12px;
  10614. transition: all 0.1s linear;
  10615. display: inline-block;
  10616. font-size: 12px;
  10617. font-size: 7px \9;
  10618. transform: scale(0.58333333) rotate(0deg);
  10619. /* IE6-IE8 */
  10620. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10621. zoom: 1;
  10622. right: 4px;
  10623. color: rgba(0, 0, 0, 0.43);
  10624. }
  10625. .ant-input-number-handler-up-inner:before,
  10626. .ant-input-number-handler-down-inner:before {
  10627. display: block;
  10628. font-family: "anticon" !important;
  10629. }
  10630. :root .ant-input-number-handler-up-inner,
  10631. :root .ant-input-number-handler-down-inner {
  10632. filter: none;
  10633. }
  10634. :root .ant-input-number-handler-up-inner,
  10635. :root .ant-input-number-handler-down-inner {
  10636. font-size: 12px;
  10637. }
  10638. .ant-input-number:hover {
  10639. border-color: #80b9ff;
  10640. }
  10641. .ant-input-number-focused {
  10642. border-color: #80b9ff;
  10643. outline: 0;
  10644. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10645. }
  10646. .ant-input-number-disabled {
  10647. background-color: #f7f7f7;
  10648. opacity: 1;
  10649. cursor: not-allowed;
  10650. color: rgba(0, 0, 0, 0.25);
  10651. }
  10652. .ant-input-number-disabled:hover {
  10653. border-color: #e2e2e2;
  10654. }
  10655. .ant-input-number-input {
  10656. width: 100%;
  10657. text-align: left;
  10658. outline: 0;
  10659. -moz-appearance: textfield;
  10660. line-height: 26px;
  10661. height: 26px;
  10662. transition: all 0.3s linear;
  10663. color: rgba(0, 0, 0, 0.65);
  10664. border: 0;
  10665. border-radius: 4px;
  10666. padding: 0 7px;
  10667. }
  10668. .ant-input-number-input[disabled] {
  10669. background-color: #f7f7f7;
  10670. opacity: 1;
  10671. cursor: not-allowed;
  10672. color: rgba(0, 0, 0, 0.25);
  10673. }
  10674. .ant-input-number-input[disabled]:hover {
  10675. border-color: #e2e2e2;
  10676. }
  10677. .ant-input-number-lg {
  10678. padding: 0;
  10679. }
  10680. .ant-input-number-lg input {
  10681. height: 30px;
  10682. line-height: 30px;
  10683. }
  10684. .ant-input-number-sm {
  10685. padding: 0;
  10686. }
  10687. .ant-input-number-sm input {
  10688. height: 20px;
  10689. line-height: 20px;
  10690. }
  10691. .ant-input-number-handler-wrap {
  10692. border-left: 1px solid #d9d9d9;
  10693. width: 22px;
  10694. height: 100%;
  10695. background: #fff;
  10696. position: absolute;
  10697. top: 0;
  10698. right: 0;
  10699. opacity: 0;
  10700. border-radius: 0 4px 4px 0;
  10701. transition: opacity 0.24s linear 0.1s;
  10702. }
  10703. .ant-input-number-handler-wrap:hover .ant-input-number-handler {
  10704. height: 40%;
  10705. }
  10706. .ant-input-number:hover .ant-input-number-handler-wrap {
  10707. opacity: 1;
  10708. }
  10709. .ant-input-number-handler-up {
  10710. cursor: pointer;
  10711. }
  10712. .ant-input-number-handler-up-inner {
  10713. top: 50%;
  10714. margin-top: -6px;
  10715. }
  10716. .ant-input-number-handler-up-inner:before {
  10717. text-align: center;
  10718. content: "\E61E";
  10719. }
  10720. .ant-input-number-handler-up:hover {
  10721. height: 60%!important;
  10722. }
  10723. .ant-input-number-handler-down {
  10724. border-top: 1px solid #d9d9d9;
  10725. top: -1px;
  10726. cursor: pointer;
  10727. }
  10728. .ant-input-number-handler-down-inner {
  10729. top: 50%;
  10730. margin-top: -6px;
  10731. }
  10732. .ant-input-number-handler-down-inner:before {
  10733. text-align: center;
  10734. content: "\E61D";
  10735. }
  10736. .ant-input-number-handler-down:hover {
  10737. height: 60%!important;
  10738. }
  10739. .ant-input-number-handler-down-disabled .ant-input-number-handler-down-inner,
  10740. .ant-input-number-handler-up-disabled .ant-input-number-handler-down-inner,
  10741. .ant-input-number-disabled .ant-input-number-handler-down-inner,
  10742. .ant-input-number-handler-down-disabled .ant-input-number-handler-up-inner,
  10743. .ant-input-number-handler-up-disabled .ant-input-number-handler-up-inner,
  10744. .ant-input-number-disabled .ant-input-number-handler-up-inner {
  10745. opacity: 0.72;
  10746. color: #ccc !important;
  10747. cursor: not-allowed;
  10748. }
  10749. .ant-input-number-disabled .ant-input-number-input {
  10750. opacity: 0.72;
  10751. cursor: not-allowed;
  10752. background-color: #f3f3f3;
  10753. }
  10754. .ant-input-number-disabled .ant-input-number-handler-wrap {
  10755. display: none;
  10756. }
  10757. .ant-input-number-disabled .ant-input-number-handler {
  10758. opacity: 0.72;
  10759. color: #ccc !important;
  10760. cursor: not-allowed;
  10761. }
  10762. .set-edu {
  10763. background: #fff;
  10764. padding: 20px;
  10765. }
  10766. .set-edu .acc-title {
  10767. color: #333;
  10768. font-size: 16px;
  10769. margin-bottom: 10px;
  10770. }
  10771. .set-edu .acc-title span {
  10772. font-size: 12px;
  10773. color: #999;
  10774. margin-left: 10px;
  10775. }
  10776. .set-edu .edu-form {
  10777. width: 600px;
  10778. }
  10779. .set-edu .edu-form .set-explain {
  10780. margin-left: 12.5%;
  10781. margin-bottom: 20px;
  10782. }
  10783. .set-edu .edu-form .set-submit {
  10784. width: 120px;
  10785. border-radius: 4px;
  10786. }
  10787. .set-edu .edu-form .ant-form-item-label {
  10788. text-align: left;
  10789. }
  10790. .set-edu .avatar-uploader,
  10791. .set-edu .avatar-uploader-trigger,
  10792. .set-edu .avatar {
  10793. width: 150px;
  10794. height: 150px;
  10795. }
  10796. .set-edu .avatar-uploader {
  10797. display: block;
  10798. border: 1px dashed #d9d9d9;
  10799. border-radius: 6px;
  10800. cursor: pointer;
  10801. position: relative;
  10802. }
  10803. .set-edu .avatar-uploader img {
  10804. position: absolute;
  10805. top: -1px;
  10806. left: -1px;
  10807. height: 150px;
  10808. }
  10809. .set-edu .avatar-uploader-trigger {
  10810. display: table-cell;
  10811. vertical-align: middle;
  10812. font-size: 28px;
  10813. color: #999;
  10814. }
  10815. .ant-cascader {
  10816. font-size: 12px;
  10817. }
  10818. .ant-cascader-input.ant-input {
  10819. background-color: transparent!important;
  10820. cursor: pointer;
  10821. width: 100%;
  10822. z-index: 1;
  10823. }
  10824. .ant-cascader-picker {
  10825. position: relative;
  10826. display: inline-block;
  10827. cursor: pointer;
  10828. font-size: 12px;
  10829. background-color: #fff;
  10830. border-radius: 4px;
  10831. outline: 0;
  10832. }
  10833. .ant-cascader-picker-with-value .ant-cascader-picker-label {
  10834. color: transparent;
  10835. }
  10836. .ant-cascader-picker-disabled {
  10837. cursor: not-allowed;
  10838. background: #f7f7f7;
  10839. color: rgba(0, 0, 0, 0.25);
  10840. }
  10841. .ant-cascader-picker-disabled .ant-cascader-input {
  10842. cursor: not-allowed;
  10843. }
  10844. .ant-cascader-picker:focus .ant-cascader-input {
  10845. border-color: #80b9ff;
  10846. outline: 0;
  10847. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10848. }
  10849. .ant-cascader-picker-label {
  10850. position: absolute;
  10851. left: 0;
  10852. height: 20px;
  10853. line-height: 20px;
  10854. top: 50%;
  10855. margin-top: -10px;
  10856. white-space: nowrap;
  10857. text-overflow: ellipsis;
  10858. overflow: hidden;
  10859. width: 100%;
  10860. padding: 0 12px 0 8px;
  10861. }
  10862. .ant-cascader-picker-clear {
  10863. opacity: 0;
  10864. position: absolute;
  10865. right: 8px;
  10866. z-index: 2;
  10867. background: #fff;
  10868. top: 50%;
  10869. font-size: 12px;
  10870. color: rgba(0, 0, 0, 0.25);
  10871. width: 12px;
  10872. height: 12px;
  10873. margin-top: -6px;
  10874. line-height: 12px;
  10875. cursor: pointer;
  10876. transition: color 0.3s ease, opacity 0.15s ease;
  10877. }
  10878. .ant-cascader-picker-clear:hover {
  10879. color: rgba(0, 0, 0, 0.43);
  10880. }
  10881. .ant-cascader-picker:hover .ant-cascader-picker-clear {
  10882. opacity: 1;
  10883. }
  10884. .ant-cascader-picker-arrow {
  10885. position: absolute;
  10886. z-index: 1;
  10887. top: 50%;
  10888. right: 8px;
  10889. width: 12px;
  10890. height: 12px;
  10891. margin-top: -6px;
  10892. line-height: 12px;
  10893. color: rgba(0, 0, 0, 0.43);
  10894. display: inline-block;
  10895. font-size: 12px;
  10896. font-size: 9px \9;
  10897. transform: scale(0.75) rotate(0deg);
  10898. /* IE6-IE8 */
  10899. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10900. zoom: 1;
  10901. }
  10902. :root .ant-cascader-picker-arrow {
  10903. filter: none;
  10904. }
  10905. :root .ant-cascader-picker-arrow {
  10906. font-size: 12px;
  10907. }
  10908. .ant-cascader-picker-arrow:before {
  10909. transition: transform 0.2s ease;
  10910. }
  10911. .ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand {
  10912. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  10913. }
  10914. .ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand:before {
  10915. transform: rotate(180deg);
  10916. }
  10917. .ant-cascader-menus {
  10918. font-size: 12px;
  10919. background: #fff;
  10920. position: absolute;
  10921. z-index: 1050;
  10922. border-radius: 4px;
  10923. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  10924. white-space: nowrap;
  10925. }
  10926. .ant-cascader-menus-empty,
  10927. .ant-cascader-menus-hidden {
  10928. display: none;
  10929. }
  10930. .ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-bottomLeft,
  10931. .ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-bottomLeft {
  10932. animation-name: antSlideUpIn;
  10933. }
  10934. .ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-topLeft,
  10935. .ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-topLeft {
  10936. animation-name: antSlideDownIn;
  10937. }
  10938. .ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-bottomLeft {
  10939. animation-name: antSlideUpOut;
  10940. }
  10941. .ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-topLeft {
  10942. animation-name: antSlideDownOut;
  10943. }
  10944. .ant-cascader-menu {
  10945. display: inline-block;
  10946. vertical-align: top;
  10947. min-width: 111px;
  10948. height: 180px;
  10949. list-style: none;
  10950. margin: 0;
  10951. padding: 0;
  10952. border-right: 1px solid #e9e9e9;
  10953. overflow: auto;
  10954. }
  10955. .ant-cascader-menu:first-child {
  10956. border-radius: 4px 0 0 4px;
  10957. }
  10958. .ant-cascader-menu:last-child {
  10959. border-right-color: transparent;
  10960. margin-right: -1px;
  10961. border-radius: 0 4px 4px 0;
  10962. }
  10963. .ant-cascader-menu:only-child {
  10964. border-radius: 4px;
  10965. }
  10966. .ant-cascader-menu-item {
  10967. padding: 7px 26px 7px 16px;
  10968. cursor: pointer;
  10969. white-space: nowrap;
  10970. transition: all 0.3s ease;
  10971. }
  10972. .ant-cascader-menu-item:hover {
  10973. background: #f2f8ff;
  10974. }
  10975. .ant-cascader-menu-item-disabled {
  10976. cursor: not-allowed;
  10977. color: rgba(0, 0, 0, 0.25);
  10978. }
  10979. .ant-cascader-menu-item-disabled:hover {
  10980. background: transparent;
  10981. }
  10982. .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),
  10983. .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
  10984. background-color: #f7f7f7;
  10985. font-weight: bold;
  10986. }
  10987. .ant-cascader-menu-item-expand {
  10988. position: relative;
  10989. }
  10990. .ant-cascader-menu-item-expand:after {
  10991. font-family: 'anticon';
  10992. text-rendering: optimizeLegibility;
  10993. -webkit-font-smoothing: antialiased;
  10994. -moz-osx-font-smoothing: grayscale;
  10995. content: "\E61F";
  10996. display: inline-block;
  10997. font-size: 12px;
  10998. font-size: 8px \9;
  10999. transform: scale(0.66666667) rotate(0deg);
  11000. /* IE6-IE8 */
  11001. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11002. zoom: 1;
  11003. color: rgba(0, 0, 0, 0.43);
  11004. position: absolute;
  11005. right: 15px;
  11006. }
  11007. :root .ant-cascader-menu-item-expand:after {
  11008. filter: none;
  11009. }
  11010. :root .ant-cascader-menu-item-expand:after {
  11011. font-size: 12px;
  11012. }
  11013. .ant-cascader-menu-item-loading:after {
  11014. font-family: 'anticon';
  11015. text-rendering: optimizeLegibility;
  11016. -webkit-font-smoothing: antialiased;
  11017. -moz-osx-font-smoothing: grayscale;
  11018. content: "\E64D";
  11019. animation: loadingCircle 1s infinite linear;
  11020. }
  11021. .ant-cascader-menu-item .ant-cascader-menu-item-keyword {
  11022. color: #f04134;
  11023. }
  11024. .ant-tag {
  11025. display: inline-block;
  11026. line-height: 20px;
  11027. height: 22px;
  11028. padding: 0 8px;
  11029. border-radius: 4px;
  11030. border: 1px solid #e9e9e9;
  11031. background: #f7f7f7;
  11032. font-size: 12px;
  11033. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  11034. opacity: 1;
  11035. margin-right: 8px;
  11036. cursor: pointer;
  11037. white-space: nowrap;
  11038. }
  11039. .ant-tag:hover {
  11040. opacity: 0.85;
  11041. }
  11042. .ant-tag,
  11043. .ant-tag a,
  11044. .ant-tag a:hover {
  11045. color: rgba(0, 0, 0, 0.65);
  11046. }
  11047. .ant-tag-text a:first-child:last-child {
  11048. display: inline-block;
  11049. margin: 0 -8px;
  11050. padding: 0 8px;
  11051. }
  11052. .ant-tag .anticon-cross {
  11053. display: inline-block;
  11054. font-size: 12px;
  11055. font-size: 10px \9;
  11056. transform: scale(0.83333333) rotate(0deg);
  11057. /* IE6-IE8 */
  11058. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11059. zoom: 1;
  11060. cursor: pointer;
  11061. font-weight: bold;
  11062. margin-left: 3px;
  11063. transition: all 0.3s ease;
  11064. opacity: 0.66;
  11065. }
  11066. :root .ant-tag .anticon-cross {
  11067. filter: none;
  11068. }
  11069. :root .ant-tag .anticon-cross {
  11070. font-size: 12px;
  11071. }
  11072. .ant-tag .anticon-cross:hover {
  11073. opacity: 1;
  11074. }
  11075. .ant-tag-has-color {
  11076. border-color: transparent;
  11077. }
  11078. .ant-tag-has-color,
  11079. .ant-tag-has-color a,
  11080. .ant-tag-has-color a:hover,
  11081. .ant-tag-has-color .anticon-cross,
  11082. .ant-tag-has-color .anticon-cross:hover {
  11083. color: #fff;
  11084. }
  11085. .ant-tag-checkable {
  11086. background-color: transparent;
  11087. border-color: transparent;
  11088. }
  11089. .ant-tag-checkable:hover,
  11090. .ant-tag-checkable:active,
  11091. .ant-tag-checkable-checked {
  11092. color: #fff;
  11093. }
  11094. .ant-tag-checkable:hover {
  11095. background-color: #80b9ff;
  11096. }
  11097. .ant-tag-checkable-checked {
  11098. background-color: #58a3ff;
  11099. }
  11100. .ant-tag-checkable:active {
  11101. background-color: #4386e7;
  11102. }
  11103. .ant-tag-close {
  11104. width: 0 !important;
  11105. padding: 0;
  11106. margin: 0;
  11107. }
  11108. .ant-tag-zoom-enter,
  11109. .ant-tag-zoom-appear {
  11110. animation: antFadeIn 0.2s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  11111. animation-fill-mode: both;
  11112. }
  11113. .ant-tag-zoom-leave {
  11114. animation: antZoomOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  11115. animation-fill-mode: both;
  11116. }
  11117. .ant-tag-pink {
  11118. color: #f5317f;
  11119. background: #fdd8e7;
  11120. border-color: #fdd8e7;
  11121. }
  11122. .ant-tag-pink-inverse {
  11123. background: #f5317f;
  11124. border-color: #f5317f;
  11125. color: #fff;
  11126. }
  11127. .ant-tag-red {
  11128. color: #f04134;
  11129. background: #fcdbd9;
  11130. border-color: #fcdbd9;
  11131. }
  11132. .ant-tag-red-inverse {
  11133. background: #f04134;
  11134. border-color: #f04134;
  11135. color: #fff;
  11136. }
  11137. .ant-tag-orange {
  11138. color: #f56a00;
  11139. background: #fde3cf;
  11140. border-color: #fde3cf;
  11141. }
  11142. .ant-tag-orange-inverse {
  11143. background: #f56a00;
  11144. border-color: #f56a00;
  11145. color: #fff;
  11146. }
  11147. .ant-tag-yellow {
  11148. color: #ffbf00;
  11149. background: #fff3cf;
  11150. border-color: #fff3cf;
  11151. }
  11152. .ant-tag-yellow-inverse {
  11153. background: #ffbf00;
  11154. border-color: #ffbf00;
  11155. color: #fff;
  11156. }
  11157. .ant-tag-cyan {
  11158. color: #00a2ae;
  11159. background: #cfedf0;
  11160. border-color: #cfedf0;
  11161. }
  11162. .ant-tag-cyan-inverse {
  11163. background: #00a2ae;
  11164. border-color: #00a2ae;
  11165. color: #fff;
  11166. }
  11167. .ant-tag-green {
  11168. color: #00a854;
  11169. background: #cfefdf;
  11170. border-color: #cfefdf;
  11171. }
  11172. .ant-tag-green-inverse {
  11173. background: #00a854;
  11174. border-color: #00a854;
  11175. color: #fff;
  11176. }
  11177. .ant-tag-blue {
  11178. color: #108ee9;
  11179. background: #d2eafb;
  11180. border-color: #d2eafb;
  11181. }
  11182. .ant-tag-blue-inverse {
  11183. background: #108ee9;
  11184. border-color: #108ee9;
  11185. color: #fff;
  11186. }
  11187. .ant-tag-purple {
  11188. color: #7265e6;
  11189. background: #e4e2fa;
  11190. border-color: #e4e2fa;
  11191. }
  11192. .ant-tag-purple-inverse {
  11193. background: #7265e6;
  11194. border-color: #7265e6;
  11195. color: #fff;
  11196. }
  11197. .set-tech {
  11198. background: #fff;
  11199. padding: 20px;
  11200. }
  11201. .set-tech .acc-title {
  11202. color: #333;
  11203. font-size: 16px;
  11204. margin-bottom: 10px;
  11205. }
  11206. .set-tech .acc-title span {
  11207. font-size: 12px;
  11208. color: #999;
  11209. }
  11210. .set-tech .tech-form {
  11211. width: 600px;
  11212. }
  11213. .set-tech .tech-form #techzone .ant-cascader-picker {
  11214. width: 80%;
  11215. }
  11216. .set-tech .tech-form #techzone button {
  11217. border-radius: 4px;
  11218. vertical-align: middle;
  11219. margin-left: 10px;
  11220. }
  11221. .set-tech .tech-form #skill input {
  11222. width: 58.5%;
  11223. margin: 0 6px;
  11224. }
  11225. .set-tech .tech-form #skill button {
  11226. border-radius: 4px;
  11227. vertical-align: middle;
  11228. margin-left: 10px;
  11229. }
  11230. .set-tech .tech-form .set-explain {
  11231. margin-left: 16.5%;
  11232. margin-bottom: 20px;
  11233. }
  11234. .set-tech .tech-form .set-radio-button {
  11235. margin-left: 4.5%;
  11236. margin-bottom: 20px;
  11237. }
  11238. .set-tech .tech-form .set-radio-button .ant-radio-button-wrapper-checked {
  11239. background: #58a3ff;
  11240. color: #fff;
  11241. }
  11242. .set-tech .tech-form .set-submit {
  11243. width: 120px;
  11244. border-radius: 4px;
  11245. }
  11246. .set-tech .tech-form .ant-form-item-label {
  11247. text-align: left;
  11248. }
  11249. .set-pfs {
  11250. background: #fff;
  11251. padding: 20px;
  11252. }
  11253. .set-pfs .acc-title {
  11254. color: #333;
  11255. font-size: 16px;
  11256. margin-bottom: 10px;
  11257. }
  11258. .set-pfs .acc-title span {
  11259. font-size: 12px;
  11260. color: #999;
  11261. margin-left: 10px;
  11262. }
  11263. .set-pfs .pfs-form {
  11264. width: 600px;
  11265. }
  11266. .set-pfs .pfs-form .set-explain {
  11267. margin-left: 12.5%;
  11268. margin-bottom: 20px;
  11269. }
  11270. .set-pfs .pfs-form .set-radio-button {
  11271. margin-left: 4.5%;
  11272. margin-bottom: 20px;
  11273. }
  11274. .set-pfs .pfs-form .set-radio-button .ant-radio-button-wrapper-checked {
  11275. background: #58a3ff;
  11276. color: #fff;
  11277. }
  11278. .set-pfs .pfs-form .set-submit {
  11279. width: 120px;
  11280. border-radius: 4px;
  11281. }
  11282. .set-pfs .pfs-form .ant-form-item-label {
  11283. text-align: left;
  11284. }
  11285. .set-pfs .pfs-form #gongling {
  11286. position: static;
  11287. }
  11288. .set-pfs .pfs-form #gongling span {
  11289. position: absolute;
  11290. right: 4px;
  11291. top: 0px;
  11292. }
  11293. .set-pfs .avatar-uploader,
  11294. .set-pfs .avatar-uploader-trigger,
  11295. .set-pfs .avatar {
  11296. width: 150px;
  11297. height: 150px;
  11298. }
  11299. .set-pfs .avatar-uploader {
  11300. display: block;
  11301. border: 1px dashed #d9d9d9;
  11302. border-radius: 6px;
  11303. cursor: pointer;
  11304. position: relative;
  11305. }
  11306. .set-pfs .avatar-uploader img {
  11307. position: absolute;
  11308. top: -1px;
  11309. left: -1px;
  11310. height: 150px;
  11311. }
  11312. .set-pfs .avatar-uploader-trigger {
  11313. display: table-cell;
  11314. vertical-align: middle;
  11315. font-size: 28px;
  11316. color: #999;
  11317. }
  11318. .set-ablt {
  11319. background: #fff;
  11320. height: 100%;
  11321. padding: 20px;
  11322. }
  11323. .set-ablt .acc-title {
  11324. color: #333;
  11325. font-size: 16px;
  11326. margin-bottom: 10px;
  11327. }
  11328. .set-ablt .acc-title span {
  11329. font-size: 12px;
  11330. color: #999;
  11331. margin-left: 10px;
  11332. }
  11333. .set-ablt .tips-title {
  11334. margin-bottom: 10px;
  11335. }
  11336. .set-ablt .ablt-tips {
  11337. margin: 20px 0;
  11338. }
  11339. .set-ablt .ablt-tips div:first-child {
  11340. border: none;
  11341. background: #fff;
  11342. padding: 0;
  11343. }
  11344. .set-ablt .set-submit {
  11345. width: 120px;
  11346. border-radius: 4px;
  11347. }
  11348. .set-ablt .acc-area {
  11349. width: 40%;
  11350. float: left;
  11351. margin-bottom: 20px;
  11352. margin-right: 20px;
  11353. }
  11354. .set-ablt .acc-area .ant-input {
  11355. margin-top: 10px;
  11356. }
  11357. .hrSituation-form {
  11358. width: 100%;
  11359. }
  11360. .hrSituation-form .ant-form-item {
  11361. float: left;
  11362. }
  11363. .hrSituation-form .ant-form-item .ant-input-number {
  11364. width: 80%;
  11365. }
  11366. .hrSituation-form .half-item {
  11367. width: 19%;
  11368. }
  11369. .hrSituation-form .hrSituation-title {
  11370. font-size: 16px;
  11371. }
  11372. .hrSituation-form .hrSituation-span {
  11373. float: left;
  11374. line-height: 32px;
  11375. width: 126px;
  11376. text-align: right;
  11377. }
  11378. .hrSituation-form .hrSituation-roster {
  11379. margin-top: 10px;
  11380. margin-bottom: 20px;
  11381. width: 400px;
  11382. }