groupCertify.css 156 KB

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