signIn.css 161 KB

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