signIn.css 162 KB

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