patent.css 266 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744
  1. body {
  2. color: #333;
  3. font-size: 14px;
  4. background: #f0f0f0;
  5. }
  6. #root {
  7. width: 100%;
  8. height: 100%;
  9. min-width: 960px;
  10. }
  11. #root .wrap {
  12. height: 100%;
  13. }
  14. .header {
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. height: 100px;
  19. width: 100%;
  20. background: #fff;
  21. box-shadow: 0 2px 6px 0px #ccc;
  22. }
  23. .clearfix:before,
  24. .clearfix:after {
  25. content: ".";
  26. display: block;
  27. height: 0;
  28. clear: both;
  29. visibility: hidden;
  30. overflow: hidden;
  31. }
  32. .footer {
  33. border-top: 1px solid #d8d8d8;
  34. }
  35. /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
  36. /**
  37. * 1. Change the default font family in all browsers (opinionated).
  38. * 2. Correct the line height in all browsers.
  39. * 3. Prevent adjustments of font size after orientation changes in
  40. * IE on Windows Phone and in iOS.
  41. */
  42. /* Document
  43. ========================================================================== */
  44. html {
  45. font-family: sans-serif;
  46. /* 1 */
  47. line-height: 1.15;
  48. /* 2 */
  49. -ms-text-size-adjust: 100%;
  50. /* 3 */
  51. -webkit-text-size-adjust: 100%;
  52. /* 3 */
  53. }
  54. /* Sections
  55. ========================================================================== */
  56. /**
  57. * Remove the margin in all browsers (opinionated).
  58. */
  59. body {
  60. margin: 0;
  61. }
  62. /**
  63. * Add the correct display in IE 9-.
  64. */
  65. article,
  66. aside,
  67. footer,
  68. header,
  69. nav,
  70. section {
  71. display: block;
  72. }
  73. /**
  74. * Correct the font size and margin on `h1` elements within `section` and
  75. * `article` contexts in Chrome, Firefox, and Safari.
  76. */
  77. h1 {
  78. font-size: 2em;
  79. margin: 0.67em 0;
  80. }
  81. /* Grouping content
  82. ========================================================================== */
  83. /**
  84. * Add the correct display in IE 9-.
  85. * 1. Add the correct display in IE.
  86. */
  87. figcaption,
  88. figure,
  89. main {
  90. /* 1 */
  91. display: block;
  92. }
  93. /**
  94. * Add the correct margin in IE 8.
  95. */
  96. figure {
  97. margin: 1em 40px;
  98. }
  99. /**
  100. * 1. Add the correct box sizing in Firefox.
  101. * 2. Show the overflow in Edge and IE.
  102. */
  103. hr {
  104. box-sizing: content-box;
  105. /* 1 */
  106. height: 0;
  107. /* 1 */
  108. overflow: visible;
  109. /* 2 */
  110. }
  111. /**
  112. * 1. Correct the inheritance and scaling of font size in all browsers.
  113. * 2. Correct the odd `em` font sizing in all browsers.
  114. */
  115. pre {
  116. font-family: monospace, monospace;
  117. /* 1 */
  118. /* stylelint-disable-line font-family-no-duplicate-names */
  119. font-size: 1em;
  120. /* 2 */
  121. }
  122. /* Text-level semantics
  123. ========================================================================== */
  124. /**
  125. * 1. Remove the gray background on active links in IE 10.
  126. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  127. */
  128. a {
  129. background-color: transparent;
  130. /* 1 */
  131. -webkit-text-decoration-skip: objects;
  132. /* 2 */
  133. }
  134. /**
  135. * Remove the outline on focused links when they are also active or hovered
  136. * in all browsers (opinionated).
  137. */
  138. a:active,
  139. a:hover {
  140. outline-width: 0;
  141. }
  142. /**
  143. * 1. Remove the bottom border in Firefox 39-.
  144. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  145. */
  146. abbr[title] {
  147. border-bottom: none;
  148. /* 1 */
  149. text-decoration: underline;
  150. /* 2 */
  151. text-decoration: underline dotted;
  152. /* 2 */
  153. }
  154. /**
  155. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  156. */
  157. b,
  158. strong {
  159. font-weight: inherit;
  160. }
  161. /**
  162. * Add the correct font weight in Chrome, Edge, and Safari.
  163. */
  164. b,
  165. strong {
  166. font-weight: bolder;
  167. }
  168. /**
  169. * 1. Correct the inheritance and scaling of font size in all browsers.
  170. * 2. Correct the odd `em` font sizing in all browsers.
  171. */
  172. code,
  173. kbd,
  174. samp {
  175. font-family: monospace, monospace;
  176. /* 1 */
  177. /* stylelint-disable-line font-family-no-duplicate-names */
  178. font-size: 1em;
  179. /* 2 */
  180. }
  181. /**
  182. * Add the correct font style in Android 4.3-.
  183. */
  184. dfn {
  185. font-style: italic;
  186. }
  187. /**
  188. * Add the correct background and color in IE 9-.
  189. */
  190. mark {
  191. background-color: #ff0;
  192. color: #000;
  193. }
  194. /**
  195. * Add the correct font size in all browsers.
  196. */
  197. small {
  198. font-size: 80%;
  199. }
  200. /**
  201. * Prevent `sub` and `sup` elements from affecting the line height in
  202. * all browsers.
  203. */
  204. sub,
  205. sup {
  206. font-size: 75%;
  207. line-height: 0;
  208. position: relative;
  209. vertical-align: baseline;
  210. }
  211. sub {
  212. bottom: -0.25em;
  213. }
  214. sup {
  215. top: -0.5em;
  216. }
  217. /* Embedded content
  218. ========================================================================== */
  219. /**
  220. * Add the correct display in IE 9-.
  221. */
  222. audio,
  223. video {
  224. display: inline-block;
  225. }
  226. /**
  227. * Add the correct display in iOS 4-7.
  228. */
  229. audio:not([controls]) {
  230. display: none;
  231. height: 0;
  232. }
  233. /**
  234. * Remove the border on images inside links in IE 10-.
  235. */
  236. img {
  237. border-style: none;
  238. }
  239. /**
  240. * Hide the overflow in IE.
  241. */
  242. svg:not(:root) {
  243. overflow: hidden;
  244. }
  245. /* Forms
  246. ========================================================================== */
  247. /**
  248. * 1. Change the font styles in all browsers (opinionated).
  249. * 2. Remove the margin in Firefox and Safari.
  250. */
  251. button,
  252. input,
  253. optgroup,
  254. select,
  255. textarea {
  256. font-family: sans-serif;
  257. /* 1 */
  258. font-size: 100%;
  259. /* 1 */
  260. line-height: 1.15;
  261. /* 1 */
  262. margin: 0;
  263. /* 2 */
  264. }
  265. /**
  266. * Show the overflow in IE.
  267. * 1. Show the overflow in Edge.
  268. */
  269. button,
  270. input {
  271. /* 1 */
  272. overflow: visible;
  273. }
  274. /**
  275. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  276. * 1. Remove the inheritance of text transform in Firefox.
  277. */
  278. button,
  279. select {
  280. /* 1 */
  281. text-transform: none;
  282. }
  283. /**
  284. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  285. * controls in Android 4.
  286. * 2. Correct the inability to style clickable types in iOS and Safari.
  287. */
  288. button,
  289. html [type="button"],
  290. [type="reset"],
  291. [type="submit"] {
  292. -webkit-appearance: button;
  293. /* 2 */
  294. }
  295. /**
  296. * Remove the inner border and padding in Firefox.
  297. */
  298. button::-moz-focus-inner,
  299. [type="button"]::-moz-focus-inner,
  300. [type="reset"]::-moz-focus-inner,
  301. [type="submit"]::-moz-focus-inner {
  302. border-style: none;
  303. padding: 0;
  304. }
  305. /**
  306. * Restore the focus styles unset by the previous rule.
  307. */
  308. button:-moz-focusring,
  309. [type="button"]:-moz-focusring,
  310. [type="reset"]:-moz-focusring,
  311. [type="submit"]:-moz-focusring {
  312. outline: 1px dotted ButtonText;
  313. }
  314. /**
  315. * Change the border, margin, and padding in all browsers (opinionated).
  316. */
  317. fieldset {
  318. border: 1px solid #c0c0c0;
  319. margin: 0 2px;
  320. padding: 0.35em 0.625em 0.75em;
  321. }
  322. /**
  323. * 1. Correct the text wrapping in Edge and IE.
  324. * 2. Correct the color inheritance from `fieldset` elements in IE.
  325. * 3. Remove the padding so developers are not caught out when they zero out
  326. * `fieldset` elements in all browsers.
  327. */
  328. legend {
  329. box-sizing: border-box;
  330. /* 1 */
  331. color: inherit;
  332. /* 2 */
  333. display: table;
  334. /* 1 */
  335. max-width: 100%;
  336. /* 1 */
  337. padding: 0;
  338. /* 3 */
  339. white-space: normal;
  340. /* 1 */
  341. }
  342. /**
  343. * 1. Add the correct display in IE 9-.
  344. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  345. */
  346. progress {
  347. display: inline-block;
  348. /* 1 */
  349. vertical-align: baseline;
  350. /* 2 */
  351. }
  352. /**
  353. * Remove the default vertical scrollbar in IE.
  354. */
  355. textarea {
  356. overflow: auto;
  357. }
  358. /**
  359. * 1. Add the correct box sizing in IE 10-.
  360. * 2. Remove the padding in IE 10-.
  361. */
  362. [type="checkbox"],
  363. [type="radio"] {
  364. box-sizing: border-box;
  365. /* 1 */
  366. padding: 0;
  367. /* 2 */
  368. }
  369. /**
  370. * Correct the cursor style of increment and decrement buttons in Chrome.
  371. */
  372. [type="number"]::-webkit-inner-spin-button,
  373. [type="number"]::-webkit-outer-spin-button {
  374. height: auto;
  375. }
  376. /**
  377. * 1. Correct the odd appearance in Chrome and Safari.
  378. * 2. Correct the outline style in Safari.
  379. */
  380. [type="search"] {
  381. -webkit-appearance: textfield;
  382. /* 1 */
  383. outline-offset: -2px;
  384. /* 2 */
  385. }
  386. /**
  387. * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  388. */
  389. [type="search"]::-webkit-search-cancel-button,
  390. [type="search"]::-webkit-search-decoration {
  391. -webkit-appearance: none;
  392. }
  393. /**
  394. * 1. Correct the inability to style clickable types in iOS and Safari.
  395. * 2. Change font properties to `inherit` in Safari.
  396. */
  397. ::-webkit-file-upload-button {
  398. -webkit-appearance: button;
  399. /* 1 */
  400. font: inherit;
  401. /* 2 */
  402. }
  403. /* Interactive
  404. ========================================================================== */
  405. /*
  406. * Add the correct display in IE 9-.
  407. * 1. Add the correct display in Edge, IE, and Firefox.
  408. */
  409. details,
  410. menu {
  411. display: block;
  412. }
  413. /*
  414. * Add the correct display in all browsers.
  415. */
  416. summary {
  417. display: list-item;
  418. }
  419. /* Scripting
  420. ========================================================================== */
  421. /**
  422. * Add the correct display in IE 9-.
  423. */
  424. canvas {
  425. display: inline-block;
  426. }
  427. /**
  428. * Add the correct display in IE.
  429. */
  430. template {
  431. display: none;
  432. }
  433. /* Hidden
  434. ========================================================================== */
  435. /**
  436. * Add the correct display in IE 10-.
  437. */
  438. [hidden] {
  439. display: none;
  440. }
  441. * {
  442. box-sizing: border-box;
  443. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  444. }
  445. *:before,
  446. *:after {
  447. box-sizing: border-box;
  448. }
  449. html,
  450. body {
  451. width: 100%;
  452. height: 100%;
  453. }
  454. body {
  455. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  456. font-size: 12px;
  457. line-height: 1.5;
  458. color: rgba(0, 0, 0, 0.65);
  459. background-color: #fff;
  460. }
  461. body,
  462. div,
  463. dl,
  464. dt,
  465. dd,
  466. ul,
  467. ol,
  468. li,
  469. h1,
  470. h2,
  471. h3,
  472. h4,
  473. h5,
  474. h6,
  475. pre,
  476. code,
  477. form,
  478. fieldset,
  479. legend,
  480. input,
  481. textarea,
  482. p,
  483. blockquote,
  484. th,
  485. td,
  486. hr,
  487. button,
  488. article,
  489. aside,
  490. details,
  491. figcaption,
  492. figure,
  493. footer,
  494. header,
  495. hgroup,
  496. menu,
  497. nav,
  498. section {
  499. margin: 0;
  500. padding: 0;
  501. }
  502. button,
  503. input,
  504. select,
  505. textarea {
  506. font-family: inherit;
  507. font-size: inherit;
  508. line-height: inherit;
  509. color: inherit;
  510. }
  511. ul,
  512. ol {
  513. list-style: none;
  514. }
  515. input::-ms-clear,
  516. input::-ms-reveal {
  517. display: none;
  518. }
  519. ::selection {
  520. background: #58a3ff;
  521. color: #fff;
  522. }
  523. a {
  524. color: #58a3ff;
  525. background: transparent;
  526. text-decoration: none;
  527. outline: none;
  528. cursor: pointer;
  529. transition: color .3s ease;
  530. }
  531. a:hover {
  532. color: #80b9ff;
  533. }
  534. a:active {
  535. color: #4386e7;
  536. }
  537. a:active,
  538. a:hover {
  539. outline: 0;
  540. text-decoration: none;
  541. }
  542. a[disabled] {
  543. color: rgba(0, 0, 0, 0.25);
  544. cursor: not-allowed;
  545. pointer-events: none;
  546. }
  547. .ant-divider {
  548. margin: 0 6px;
  549. display: inline-block;
  550. height: 8px;
  551. width: 1px;
  552. background: #ccc;
  553. }
  554. code,
  555. kbd,
  556. pre,
  557. samp {
  558. font-family: Consolas, Menlo, Courier, monospace;
  559. }
  560. .clearfix {
  561. zoom: 1;
  562. }
  563. .clearfix:before,
  564. .clearfix:after {
  565. content: " ";
  566. display: table;
  567. }
  568. .clearfix:after {
  569. clear: both;
  570. visibility: hidden;
  571. font-size: 0;
  572. height: 0;
  573. }
  574. @font-face {
  575. font-family: 'anticon';
  576. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot');
  577. /* IE9*/
  578. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot?#iefix') format('embedded-opentype'), /* chrome、firefox */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.woff') format('woff'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.ttf') format('truetype'), /* iOS 4.1- */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.svg#iconfont') format('svg');
  579. }
  580. .anticon {
  581. display: inline-block;
  582. font-style: normal;
  583. vertical-align: baseline;
  584. text-align: center;
  585. text-transform: none;
  586. line-height: 1;
  587. text-rendering: optimizeLegibility;
  588. -webkit-font-smoothing: antialiased;
  589. -moz-osx-font-smoothing: grayscale;
  590. }
  591. .anticon:before {
  592. display: block;
  593. font-family: "anticon" !important;
  594. }
  595. .anticon-step-forward:before {
  596. content: "\E600";
  597. }
  598. .anticon-step-backward:before {
  599. content: "\E601";
  600. }
  601. .anticon-forward:before {
  602. content: "\E602";
  603. }
  604. .anticon-backward:before {
  605. content: "\E603";
  606. }
  607. .anticon-caret-right:before {
  608. content: "\E604";
  609. }
  610. .anticon-caret-left:before {
  611. content: "\E605";
  612. }
  613. .anticon-caret-down:before {
  614. content: "\E606";
  615. }
  616. .anticon-caret-up:before {
  617. content: "\E607";
  618. }
  619. .anticon-right-circle:before {
  620. content: "\E608";
  621. }
  622. .anticon-circle-right:before {
  623. content: "\E608";
  624. }
  625. .anticon-caret-circle-right:before {
  626. content: "\E608";
  627. }
  628. .anticon-left-circle:before {
  629. content: "\E609";
  630. }
  631. .anticon-circle-left:before {
  632. content: "\E609";
  633. }
  634. .anticon-caret-circle-left:before {
  635. content: "\E609";
  636. }
  637. .anticon-up-circle:before {
  638. content: "\E60A";
  639. }
  640. .anticon-circle-up:before {
  641. content: "\E60A";
  642. }
  643. .anticon-caret-circle-up:before {
  644. content: "\E60A";
  645. }
  646. .anticon-down-circle:before {
  647. content: "\E60B";
  648. }
  649. .anticon-circle-down:before {
  650. content: "\E60B";
  651. }
  652. .anticon-caret-circle-down:before {
  653. content: "\E60B";
  654. }
  655. .anticon-right-circle-o:before {
  656. content: "\E60C";
  657. }
  658. .anticon-circle-o-right:before {
  659. content: "\E60C";
  660. }
  661. .anticon-caret-circle-o-right:before {
  662. content: "\E60C";
  663. }
  664. .anticon-left-circle-o:before {
  665. content: "\E60D";
  666. }
  667. .anticon-circle-o-left:before {
  668. content: "\E60D";
  669. }
  670. .anticon-caret-circle-o-left:before {
  671. content: "\E60D";
  672. }
  673. .anticon-up-circle-o:before {
  674. content: "\E60E";
  675. }
  676. .anticon-circle-o-up:before {
  677. content: "\E60E";
  678. }
  679. .anticon-caret-circle-o-up:before {
  680. content: "\E60E";
  681. }
  682. .anticon-down-circle-o:before {
  683. content: "\E60F";
  684. }
  685. .anticon-circle-o-down:before {
  686. content: "\E60F";
  687. }
  688. .anticon-caret-circle-o-down:before {
  689. content: "\E60F";
  690. }
  691. .anticon-verticle-left:before {
  692. content: "\E610";
  693. }
  694. .anticon-verticle-right:before {
  695. content: "\E611";
  696. }
  697. .anticon-rollback:before {
  698. content: "\E612";
  699. }
  700. .anticon-retweet:before {
  701. content: "\E613";
  702. }
  703. .anticon-shrink:before {
  704. content: "\E614";
  705. }
  706. .anticon-arrows-alt:before {
  707. content: "\E615";
  708. }
  709. .anticon-arrow-salt:before {
  710. content: "\E615";
  711. }
  712. .anticon-reload:before {
  713. content: "\E616";
  714. }
  715. .anticon-double-right:before {
  716. content: "\E617";
  717. }
  718. .anticon-double-left:before {
  719. content: "\E618";
  720. }
  721. .anticon-arrow-down:before {
  722. content: "\E619";
  723. }
  724. .anticon-arrow-up:before {
  725. content: "\E61A";
  726. }
  727. .anticon-arrow-right:before {
  728. content: "\E61B";
  729. }
  730. .anticon-arrow-left:before {
  731. content: "\E61C";
  732. }
  733. .anticon-down:before {
  734. content: "\E61D";
  735. }
  736. .anticon-up:before {
  737. content: "\E61E";
  738. }
  739. .anticon-right:before {
  740. content: "\E61F";
  741. }
  742. .anticon-left:before {
  743. content: "\E620";
  744. }
  745. .anticon-minus-square-o:before {
  746. content: "\E621";
  747. }
  748. .anticon-minus-circle:before {
  749. content: "\E622";
  750. }
  751. .anticon-minus-circle-o:before {
  752. content: "\E623";
  753. }
  754. .anticon-minus:before {
  755. content: "\E624";
  756. }
  757. .anticon-plus-circle-o:before {
  758. content: "\E625";
  759. }
  760. .anticon-plus-circle:before {
  761. content: "\E626";
  762. }
  763. .anticon-plus:before {
  764. content: "\E627";
  765. }
  766. .anticon-info-circle:before {
  767. content: "\E628";
  768. }
  769. .anticon-info-circle-o:before {
  770. content: "\E629";
  771. }
  772. .anticon-info:before {
  773. content: "\E62A";
  774. }
  775. .anticon-exclamation:before {
  776. content: "\E62B";
  777. }
  778. .anticon-exclamation-circle:before {
  779. content: "\E62C";
  780. }
  781. .anticon-exclamation-circle-o:before {
  782. content: "\E62D";
  783. }
  784. .anticon-close-circle:before {
  785. content: "\E62E";
  786. }
  787. .anticon-cross-circle:before {
  788. content: "\E62E";
  789. }
  790. .anticon-close-circle-o:before {
  791. content: "\E62F";
  792. }
  793. .anticon-cross-circle-o:before {
  794. content: "\E62F";
  795. }
  796. .anticon-check-circle:before {
  797. content: "\E630";
  798. }
  799. .anticon-check-circle-o:before {
  800. content: "\E631";
  801. }
  802. .anticon-check:before {
  803. content: "\E632";
  804. }
  805. .anticon-close:before {
  806. content: "\E633";
  807. }
  808. .anticon-cross:before {
  809. content: "\E633";
  810. }
  811. .anticon-customer-service:before {
  812. content: "\E634";
  813. }
  814. .anticon-customerservice:before {
  815. content: "\E634";
  816. }
  817. .anticon-credit-card:before {
  818. content: "\E635";
  819. }
  820. .anticon-code-o:before {
  821. content: "\E636";
  822. }
  823. .anticon-book:before {
  824. content: "\E637";
  825. }
  826. .anticon-bar-chart:before {
  827. content: "\E638";
  828. }
  829. .anticon-bars:before {
  830. content: "\E639";
  831. }
  832. .anticon-question:before {
  833. content: "\E63A";
  834. }
  835. .anticon-question-circle:before {
  836. content: "\E63B";
  837. }
  838. .anticon-question-circle-o:before {
  839. content: "\E63C";
  840. }
  841. .anticon-pause:before {
  842. content: "\E63D";
  843. }
  844. .anticon-pause-circle:before {
  845. content: "\E63E";
  846. }
  847. .anticon-pause-circle-o:before {
  848. content: "\E63F";
  849. }
  850. .anticon-clock-circle:before {
  851. content: "\E640";
  852. }
  853. .anticon-clock-circle-o:before {
  854. content: "\E641";
  855. }
  856. .anticon-swap:before {
  857. content: "\E642";
  858. }
  859. .anticon-swap-left:before {
  860. content: "\E643";
  861. }
  862. .anticon-swap-right:before {
  863. content: "\E644";
  864. }
  865. .anticon-plus-square-o:before {
  866. content: "\E645";
  867. }
  868. .anticon-frown:before {
  869. content: "\E646";
  870. }
  871. .anticon-frown-circle:before {
  872. content: "\E646";
  873. }
  874. .anticon-ellipsis:before {
  875. content: "\E647";
  876. }
  877. .anticon-copy:before {
  878. content: "\E648";
  879. }
  880. .anticon-menu-fold:before {
  881. content: "\E658";
  882. }
  883. .anticon-mail:before {
  884. content: "\E659";
  885. }
  886. .anticon-logout:before {
  887. content: "\E65A";
  888. }
  889. .anticon-link:before {
  890. content: "\E65B";
  891. }
  892. .anticon-area-chart:before {
  893. content: "\E65C";
  894. }
  895. .anticon-line-chart:before {
  896. content: "\E65D";
  897. }
  898. .anticon-home:before {
  899. content: "\E65E";
  900. }
  901. .anticon-laptop:before {
  902. content: "\E65F";
  903. }
  904. .anticon-star:before {
  905. content: "\E660";
  906. }
  907. .anticon-star-o:before {
  908. content: "\E661";
  909. }
  910. .anticon-folder:before {
  911. content: "\E662";
  912. }
  913. .anticon-filter:before {
  914. content: "\E663";
  915. }
  916. .anticon-file:before {
  917. content: "\E664";
  918. }
  919. .anticon-exception:before {
  920. content: "\E665";
  921. }
  922. .anticon-meh:before {
  923. content: "\E666";
  924. }
  925. .anticon-meh-circle:before {
  926. content: "\E666";
  927. }
  928. .anticon-meh-o:before {
  929. content: "\E667";
  930. }
  931. .anticon-shopping-cart:before {
  932. content: "\E668";
  933. }
  934. .anticon-save:before {
  935. content: "\E669";
  936. }
  937. .anticon-user:before {
  938. content: "\E66A";
  939. }
  940. .anticon-video-camera:before {
  941. content: "\E66B";
  942. }
  943. .anticon-to-top:before {
  944. content: "\E66C";
  945. }
  946. .anticon-team:before {
  947. content: "\E66D";
  948. }
  949. .anticon-tablet:before {
  950. content: "\E66E";
  951. }
  952. .anticon-solution:before {
  953. content: "\E66F";
  954. }
  955. .anticon-search:before {
  956. content: "\E670";
  957. }
  958. .anticon-share-alt:before {
  959. content: "\E671";
  960. }
  961. .anticon-setting:before {
  962. content: "\E672";
  963. }
  964. .anticon-poweroff:before {
  965. content: "\E6D5";
  966. }
  967. .anticon-picture:before {
  968. content: "\E674";
  969. }
  970. .anticon-phone:before {
  971. content: "\E675";
  972. }
  973. .anticon-paper-clip:before {
  974. content: "\E676";
  975. }
  976. .anticon-notification:before {
  977. content: "\E677";
  978. }
  979. .anticon-mobile:before {
  980. content: "\E678";
  981. }
  982. .anticon-menu-unfold:before {
  983. content: "\E679";
  984. }
  985. .anticon-inbox:before {
  986. content: "\E67A";
  987. }
  988. .anticon-lock:before {
  989. content: "\E67B";
  990. }
  991. .anticon-qrcode:before {
  992. content: "\E67C";
  993. }
  994. .anticon-play-circle:before {
  995. content: "\E6D0";
  996. }
  997. .anticon-play-circle-o:before {
  998. content: "\E6D1";
  999. }
  1000. .anticon-tag:before {
  1001. content: "\E6D2";
  1002. }
  1003. .anticon-tag-o:before {
  1004. content: "\E6D3";
  1005. }
  1006. .anticon-tags:before {
  1007. content: "\E67D";
  1008. }
  1009. .anticon-tags-o:before {
  1010. content: "\E67E";
  1011. }
  1012. .anticon-cloud-o:before {
  1013. content: "\E67F";
  1014. }
  1015. .anticon-cloud:before {
  1016. content: "\E680";
  1017. }
  1018. .anticon-cloud-upload:before {
  1019. content: "\E681";
  1020. }
  1021. .anticon-cloud-download:before {
  1022. content: "\E682";
  1023. }
  1024. .anticon-cloud-download-o:before {
  1025. content: "\E683";
  1026. }
  1027. .anticon-cloud-upload-o:before {
  1028. content: "\E684";
  1029. }
  1030. .anticon-environment:before {
  1031. content: "\E685";
  1032. }
  1033. .anticon-environment-o:before {
  1034. content: "\E686";
  1035. }
  1036. .anticon-eye:before {
  1037. content: "\E687";
  1038. }
  1039. .anticon-eye-o:before {
  1040. content: "\E688";
  1041. }
  1042. .anticon-camera:before {
  1043. content: "\E689";
  1044. }
  1045. .anticon-camera-o:before {
  1046. content: "\E68A";
  1047. }
  1048. .anticon-windows:before {
  1049. content: "\E68B";
  1050. }
  1051. .anticon-apple:before {
  1052. content: "\E68C";
  1053. }
  1054. .anticon-apple-o:before {
  1055. content: "\E6D4";
  1056. }
  1057. .anticon-android:before {
  1058. content: "\E68D";
  1059. }
  1060. .anticon-aliwangwang:before {
  1061. content: "\E68E";
  1062. }
  1063. .anticon-aliwangwang-o:before {
  1064. content: "\E68F";
  1065. }
  1066. .anticon-export:before {
  1067. content: "\E691";
  1068. }
  1069. .anticon-edit:before {
  1070. content: "\E692";
  1071. }
  1072. .anticon-circle-down-o:before {
  1073. content: "\E693";
  1074. }
  1075. .anticon-circle-down-:before {
  1076. content: "\E694";
  1077. }
  1078. .anticon-appstore-o:before {
  1079. content: "\E695";
  1080. }
  1081. .anticon-appstore:before {
  1082. content: "\E696";
  1083. }
  1084. .anticon-scan:before {
  1085. content: "\E697";
  1086. }
  1087. .anticon-file-text:before {
  1088. content: "\E698";
  1089. }
  1090. .anticon-folder-open:before {
  1091. content: "\E699";
  1092. }
  1093. .anticon-hdd:before {
  1094. content: "\E69A";
  1095. }
  1096. .anticon-ie:before {
  1097. content: "\E69B";
  1098. }
  1099. .anticon-file-jpg:before {
  1100. content: "\E69C";
  1101. }
  1102. .anticon-like:before {
  1103. content: "\E64C";
  1104. }
  1105. .anticon-like-o:before {
  1106. content: "\E69D";
  1107. }
  1108. .anticon-dislike:before {
  1109. content: "\E64B";
  1110. }
  1111. .anticon-dislike-o:before {
  1112. content: "\E69E";
  1113. }
  1114. .anticon-delete:before {
  1115. content: "\E69F";
  1116. }
  1117. .anticon-enter:before {
  1118. content: "\E6A0";
  1119. }
  1120. .anticon-pushpin-o:before {
  1121. content: "\E6A1";
  1122. }
  1123. .anticon-pushpin:before {
  1124. content: "\E6A2";
  1125. }
  1126. .anticon-heart:before {
  1127. content: "\E6A3";
  1128. }
  1129. .anticon-heart-o:before {
  1130. content: "\E6A4";
  1131. }
  1132. .anticon-pay-circle:before {
  1133. content: "\E6A5";
  1134. }
  1135. .anticon-pay-circle-o:before {
  1136. content: "\E6A6";
  1137. }
  1138. .anticon-smile:before {
  1139. content: "\E6A7";
  1140. }
  1141. .anticon-smile-circle:before {
  1142. content: "\E6A7";
  1143. }
  1144. .anticon-smile-o:before {
  1145. content: "\E6A8";
  1146. }
  1147. .anticon-frown-o:before {
  1148. content: "\E6A9";
  1149. }
  1150. .anticon-calculator:before {
  1151. content: "\E6AA";
  1152. }
  1153. .anticon-message:before {
  1154. content: "\E6AB";
  1155. }
  1156. .anticon-chrome:before {
  1157. content: "\E6AC";
  1158. }
  1159. .anticon-github:before {
  1160. content: "\E6AD";
  1161. }
  1162. .anticon-file-unknown:before {
  1163. content: "\E6AF";
  1164. }
  1165. .anticon-file-excel:before {
  1166. content: "\E6B0";
  1167. }
  1168. .anticon-file-ppt:before {
  1169. content: "\E6B1";
  1170. }
  1171. .anticon-file-word:before {
  1172. content: "\E6B2";
  1173. }
  1174. .anticon-file-pdf:before {
  1175. content: "\E6B3";
  1176. }
  1177. .anticon-desktop:before {
  1178. content: "\E6B4";
  1179. }
  1180. .anticon-upload:before {
  1181. content: "\E6B6";
  1182. }
  1183. .anticon-download:before {
  1184. content: "\E6B7";
  1185. }
  1186. .anticon-pie-chart:before {
  1187. content: "\E6B8";
  1188. }
  1189. .anticon-unlock:before {
  1190. content: "\E6BA";
  1191. }
  1192. .anticon-calendar:before {
  1193. content: "\E6BB";
  1194. }
  1195. .anticon-windows-o:before {
  1196. content: "\E6BC";
  1197. }
  1198. .anticon-dot-chart:before {
  1199. content: "\E6BD";
  1200. }
  1201. .anticon-bar-chart:before {
  1202. content: "\E6BE";
  1203. }
  1204. .anticon-code:before {
  1205. content: "\E6BF";
  1206. }
  1207. .anticon-plus-square:before {
  1208. content: "\E6C0";
  1209. }
  1210. .anticon-minus-square:before {
  1211. content: "\E6C1";
  1212. }
  1213. .anticon-close-square:before {
  1214. content: "\E6C2";
  1215. }
  1216. .anticon-close-square-o:before {
  1217. content: "\E6C3";
  1218. }
  1219. .anticon-check-square:before {
  1220. content: "\E6C4";
  1221. }
  1222. .anticon-check-square-o:before {
  1223. content: "\E6C5";
  1224. }
  1225. .anticon-fast-backward:before {
  1226. content: "\E6C6";
  1227. }
  1228. .anticon-fast-forward:before {
  1229. content: "\E6C7";
  1230. }
  1231. .anticon-up-square:before {
  1232. content: "\E6C8";
  1233. }
  1234. .anticon-down-square:before {
  1235. content: "\E6C9";
  1236. }
  1237. .anticon-left-square:before {
  1238. content: "\E6CA";
  1239. }
  1240. .anticon-right-square:before {
  1241. content: "\E6CB";
  1242. }
  1243. .anticon-right-square-o:before {
  1244. content: "\E6CC";
  1245. }
  1246. .anticon-left-square-o:before {
  1247. content: "\E6CD";
  1248. }
  1249. .anticon-down-square-o:before {
  1250. content: "\E6CE";
  1251. }
  1252. .anticon-up-square-o:before {
  1253. content: "\E6CF";
  1254. }
  1255. .anticon-loading:before {
  1256. content: "\E64D";
  1257. }
  1258. .anticon-loading-3-quarters:before {
  1259. content: "\E6AE";
  1260. }
  1261. .anticon-bulb:before {
  1262. content: "\E649";
  1263. }
  1264. .anticon-select:before {
  1265. content: "\E64A";
  1266. }
  1267. .anticon-addfile:before,
  1268. .anticon-file-add:before {
  1269. content: "\E910";
  1270. }
  1271. .anticon-addfolder:before,
  1272. .anticon-folder-add:before {
  1273. content: "\E914";
  1274. }
  1275. .anticon-switcher:before {
  1276. content: "\E913";
  1277. }
  1278. .anticon-rocket:before {
  1279. content: "\E90F";
  1280. }
  1281. .anticon-dingding:before {
  1282. content: "\E923";
  1283. }
  1284. .anticon-dingding-o:before {
  1285. content: "\E925";
  1286. }
  1287. .anticon-spin:before {
  1288. display: inline-block;
  1289. animation: loadingCircle 1s infinite linear;
  1290. }
  1291. .fade-enter,
  1292. .fade-appear {
  1293. animation-duration: 0.2s;
  1294. animation-fill-mode: both;
  1295. animation-play-state: paused;
  1296. }
  1297. .fade-leave {
  1298. animation-duration: 0.2s;
  1299. animation-fill-mode: both;
  1300. animation-play-state: paused;
  1301. }
  1302. .fade-enter.fade-enter-active,
  1303. .fade-appear.fade-appear-active {
  1304. animation-name: antFadeIn;
  1305. animation-play-state: running;
  1306. }
  1307. .fade-leave.fade-leave-active {
  1308. animation-name: antFadeOut;
  1309. animation-play-state: running;
  1310. }
  1311. .fade-enter,
  1312. .fade-appear {
  1313. opacity: 0;
  1314. animation-timing-function: linear;
  1315. }
  1316. .fade-leave {
  1317. animation-timing-function: linear;
  1318. }
  1319. @keyframes antFadeIn {
  1320. 0% {
  1321. opacity: 0;
  1322. }
  1323. 100% {
  1324. opacity: 1;
  1325. }
  1326. }
  1327. @keyframes antFadeOut {
  1328. 0% {
  1329. opacity: 1;
  1330. }
  1331. 100% {
  1332. opacity: 0;
  1333. }
  1334. }
  1335. .move-up-enter,
  1336. .move-up-appear {
  1337. animation-duration: 0.2s;
  1338. animation-fill-mode: both;
  1339. animation-play-state: paused;
  1340. }
  1341. .move-up-leave {
  1342. animation-duration: 0.2s;
  1343. animation-fill-mode: both;
  1344. animation-play-state: paused;
  1345. }
  1346. .move-up-enter.move-up-enter-active,
  1347. .move-up-appear.move-up-appear-active {
  1348. animation-name: antMoveUpIn;
  1349. animation-play-state: running;
  1350. }
  1351. .move-up-leave.move-up-leave-active {
  1352. animation-name: antMoveUpOut;
  1353. animation-play-state: running;
  1354. }
  1355. .move-up-enter,
  1356. .move-up-appear {
  1357. opacity: 0;
  1358. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1359. }
  1360. .move-up-leave {
  1361. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1362. }
  1363. .move-down-enter,
  1364. .move-down-appear {
  1365. animation-duration: 0.2s;
  1366. animation-fill-mode: both;
  1367. animation-play-state: paused;
  1368. }
  1369. .move-down-leave {
  1370. animation-duration: 0.2s;
  1371. animation-fill-mode: both;
  1372. animation-play-state: paused;
  1373. }
  1374. .move-down-enter.move-down-enter-active,
  1375. .move-down-appear.move-down-appear-active {
  1376. animation-name: antMoveDownIn;
  1377. animation-play-state: running;
  1378. }
  1379. .move-down-leave.move-down-leave-active {
  1380. animation-name: antMoveDownOut;
  1381. animation-play-state: running;
  1382. }
  1383. .move-down-enter,
  1384. .move-down-appear {
  1385. opacity: 0;
  1386. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1387. }
  1388. .move-down-leave {
  1389. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1390. }
  1391. .move-left-enter,
  1392. .move-left-appear {
  1393. animation-duration: 0.2s;
  1394. animation-fill-mode: both;
  1395. animation-play-state: paused;
  1396. }
  1397. .move-left-leave {
  1398. animation-duration: 0.2s;
  1399. animation-fill-mode: both;
  1400. animation-play-state: paused;
  1401. }
  1402. .move-left-enter.move-left-enter-active,
  1403. .move-left-appear.move-left-appear-active {
  1404. animation-name: antMoveLeftIn;
  1405. animation-play-state: running;
  1406. }
  1407. .move-left-leave.move-left-leave-active {
  1408. animation-name: antMoveLeftOut;
  1409. animation-play-state: running;
  1410. }
  1411. .move-left-enter,
  1412. .move-left-appear {
  1413. opacity: 0;
  1414. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1415. }
  1416. .move-left-leave {
  1417. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1418. }
  1419. .move-right-enter,
  1420. .move-right-appear {
  1421. animation-duration: 0.2s;
  1422. animation-fill-mode: both;
  1423. animation-play-state: paused;
  1424. }
  1425. .move-right-leave {
  1426. animation-duration: 0.2s;
  1427. animation-fill-mode: both;
  1428. animation-play-state: paused;
  1429. }
  1430. .move-right-enter.move-right-enter-active,
  1431. .move-right-appear.move-right-appear-active {
  1432. animation-name: antMoveRightIn;
  1433. animation-play-state: running;
  1434. }
  1435. .move-right-leave.move-right-leave-active {
  1436. animation-name: antMoveRightOut;
  1437. animation-play-state: running;
  1438. }
  1439. .move-right-enter,
  1440. .move-right-appear {
  1441. opacity: 0;
  1442. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1443. }
  1444. .move-right-leave {
  1445. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1446. }
  1447. @keyframes antMoveDownIn {
  1448. 0% {
  1449. transform-origin: 0 0;
  1450. transform: translateY(100%);
  1451. opacity: 0;
  1452. }
  1453. 100% {
  1454. transform-origin: 0 0;
  1455. transform: translateY(0%);
  1456. opacity: 1;
  1457. }
  1458. }
  1459. @keyframes antMoveDownOut {
  1460. 0% {
  1461. transform-origin: 0 0;
  1462. transform: translateY(0%);
  1463. opacity: 1;
  1464. }
  1465. 100% {
  1466. transform-origin: 0 0;
  1467. transform: translateY(100%);
  1468. opacity: 0;
  1469. }
  1470. }
  1471. @keyframes antMoveLeftIn {
  1472. 0% {
  1473. transform-origin: 0 0;
  1474. transform: translateX(-100%);
  1475. opacity: 0;
  1476. }
  1477. 100% {
  1478. transform-origin: 0 0;
  1479. transform: translateX(0%);
  1480. opacity: 1;
  1481. }
  1482. }
  1483. @keyframes antMoveLeftOut {
  1484. 0% {
  1485. transform-origin: 0 0;
  1486. transform: translateX(0%);
  1487. opacity: 1;
  1488. }
  1489. 100% {
  1490. transform-origin: 0 0;
  1491. transform: translateX(-100%);
  1492. opacity: 0;
  1493. }
  1494. }
  1495. @keyframes antMoveRightIn {
  1496. 0% {
  1497. opacity: 0;
  1498. transform-origin: 0 0;
  1499. transform: translateX(100%);
  1500. }
  1501. 100% {
  1502. opacity: 1;
  1503. transform-origin: 0 0;
  1504. transform: translateX(0%);
  1505. }
  1506. }
  1507. @keyframes antMoveRightOut {
  1508. 0% {
  1509. transform-origin: 0 0;
  1510. transform: translateX(0%);
  1511. opacity: 1;
  1512. }
  1513. 100% {
  1514. transform-origin: 0 0;
  1515. transform: translateX(100%);
  1516. opacity: 0;
  1517. }
  1518. }
  1519. @keyframes antMoveUpIn {
  1520. 0% {
  1521. transform-origin: 0 0;
  1522. transform: translateY(-100%);
  1523. opacity: 0;
  1524. }
  1525. 100% {
  1526. transform-origin: 0 0;
  1527. transform: translateY(0%);
  1528. opacity: 1;
  1529. }
  1530. }
  1531. @keyframes antMoveUpOut {
  1532. 0% {
  1533. transform-origin: 0 0;
  1534. transform: translateY(0%);
  1535. opacity: 1;
  1536. }
  1537. 100% {
  1538. transform-origin: 0 0;
  1539. transform: translateY(-100%);
  1540. opacity: 0;
  1541. }
  1542. }
  1543. @keyframes loadingCircle {
  1544. 0% {
  1545. transform-origin: 50% 50%;
  1546. transform: rotate(0deg);
  1547. }
  1548. 100% {
  1549. transform-origin: 50% 50%;
  1550. transform: rotate(360deg);
  1551. }
  1552. }
  1553. .slide-up-enter,
  1554. .slide-up-appear {
  1555. animation-duration: 0.2s;
  1556. animation-fill-mode: both;
  1557. animation-play-state: paused;
  1558. }
  1559. .slide-up-leave {
  1560. animation-duration: 0.2s;
  1561. animation-fill-mode: both;
  1562. animation-play-state: paused;
  1563. }
  1564. .slide-up-enter.slide-up-enter-active,
  1565. .slide-up-appear.slide-up-appear-active {
  1566. animation-name: antSlideUpIn;
  1567. animation-play-state: running;
  1568. }
  1569. .slide-up-leave.slide-up-leave-active {
  1570. animation-name: antSlideUpOut;
  1571. animation-play-state: running;
  1572. }
  1573. .slide-up-enter,
  1574. .slide-up-appear {
  1575. opacity: 0;
  1576. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1577. }
  1578. .slide-up-leave {
  1579. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1580. }
  1581. .slide-down-enter,
  1582. .slide-down-appear {
  1583. animation-duration: 0.2s;
  1584. animation-fill-mode: both;
  1585. animation-play-state: paused;
  1586. }
  1587. .slide-down-leave {
  1588. animation-duration: 0.2s;
  1589. animation-fill-mode: both;
  1590. animation-play-state: paused;
  1591. }
  1592. .slide-down-enter.slide-down-enter-active,
  1593. .slide-down-appear.slide-down-appear-active {
  1594. animation-name: antSlideDownIn;
  1595. animation-play-state: running;
  1596. }
  1597. .slide-down-leave.slide-down-leave-active {
  1598. animation-name: antSlideDownOut;
  1599. animation-play-state: running;
  1600. }
  1601. .slide-down-enter,
  1602. .slide-down-appear {
  1603. opacity: 0;
  1604. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1605. }
  1606. .slide-down-leave {
  1607. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1608. }
  1609. .slide-left-enter,
  1610. .slide-left-appear {
  1611. animation-duration: 0.2s;
  1612. animation-fill-mode: both;
  1613. animation-play-state: paused;
  1614. }
  1615. .slide-left-leave {
  1616. animation-duration: 0.2s;
  1617. animation-fill-mode: both;
  1618. animation-play-state: paused;
  1619. }
  1620. .slide-left-enter.slide-left-enter-active,
  1621. .slide-left-appear.slide-left-appear-active {
  1622. animation-name: antSlideLeftIn;
  1623. animation-play-state: running;
  1624. }
  1625. .slide-left-leave.slide-left-leave-active {
  1626. animation-name: antSlideLeftOut;
  1627. animation-play-state: running;
  1628. }
  1629. .slide-left-enter,
  1630. .slide-left-appear {
  1631. opacity: 0;
  1632. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1633. }
  1634. .slide-left-leave {
  1635. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1636. }
  1637. .slide-right-enter,
  1638. .slide-right-appear {
  1639. animation-duration: 0.2s;
  1640. animation-fill-mode: both;
  1641. animation-play-state: paused;
  1642. }
  1643. .slide-right-leave {
  1644. animation-duration: 0.2s;
  1645. animation-fill-mode: both;
  1646. animation-play-state: paused;
  1647. }
  1648. .slide-right-enter.slide-right-enter-active,
  1649. .slide-right-appear.slide-right-appear-active {
  1650. animation-name: antSlideRightIn;
  1651. animation-play-state: running;
  1652. }
  1653. .slide-right-leave.slide-right-leave-active {
  1654. animation-name: antSlideRightOut;
  1655. animation-play-state: running;
  1656. }
  1657. .slide-right-enter,
  1658. .slide-right-appear {
  1659. opacity: 0;
  1660. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1661. }
  1662. .slide-right-leave {
  1663. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1664. }
  1665. @keyframes antSlideUpIn {
  1666. 0% {
  1667. opacity: 0;
  1668. transform-origin: 0% 0%;
  1669. transform: scaleY(0.8);
  1670. }
  1671. 100% {
  1672. opacity: 1;
  1673. transform-origin: 0% 0%;
  1674. transform: scaleY(1);
  1675. }
  1676. }
  1677. @keyframes antSlideUpOut {
  1678. 0% {
  1679. opacity: 1;
  1680. transform-origin: 0% 0%;
  1681. transform: scaleY(1);
  1682. }
  1683. 100% {
  1684. opacity: 0;
  1685. transform-origin: 0% 0%;
  1686. transform: scaleY(0.8);
  1687. }
  1688. }
  1689. @keyframes antSlideDownIn {
  1690. 0% {
  1691. opacity: 0;
  1692. transform-origin: 100% 100%;
  1693. transform: scaleY(0.8);
  1694. }
  1695. 100% {
  1696. opacity: 1;
  1697. transform-origin: 100% 100%;
  1698. transform: scaleY(1);
  1699. }
  1700. }
  1701. @keyframes antSlideDownOut {
  1702. 0% {
  1703. opacity: 1;
  1704. transform-origin: 100% 100%;
  1705. transform: scaleY(1);
  1706. }
  1707. 100% {
  1708. opacity: 0;
  1709. transform-origin: 100% 100%;
  1710. transform: scaleY(0.8);
  1711. }
  1712. }
  1713. @keyframes antSlideLeftIn {
  1714. 0% {
  1715. opacity: 0;
  1716. transform-origin: 0% 0%;
  1717. transform: scaleX(0.8);
  1718. }
  1719. 100% {
  1720. opacity: 1;
  1721. transform-origin: 0% 0%;
  1722. transform: scaleX(1);
  1723. }
  1724. }
  1725. @keyframes antSlideLeftOut {
  1726. 0% {
  1727. opacity: 1;
  1728. transform-origin: 0% 0%;
  1729. transform: scaleX(1);
  1730. }
  1731. 100% {
  1732. opacity: 0;
  1733. transform-origin: 0% 0%;
  1734. transform: scaleX(0.8);
  1735. }
  1736. }
  1737. @keyframes antSlideRightIn {
  1738. 0% {
  1739. opacity: 0;
  1740. transform-origin: 100% 0%;
  1741. transform: scaleX(0.8);
  1742. }
  1743. 100% {
  1744. opacity: 1;
  1745. transform-origin: 100% 0%;
  1746. transform: scaleX(1);
  1747. }
  1748. }
  1749. @keyframes antSlideRightOut {
  1750. 0% {
  1751. opacity: 1;
  1752. transform-origin: 100% 0%;
  1753. transform: scaleX(1);
  1754. }
  1755. 100% {
  1756. opacity: 0;
  1757. transform-origin: 100% 0%;
  1758. transform: scaleX(0.8);
  1759. }
  1760. }
  1761. .swing-enter,
  1762. .swing-appear {
  1763. animation-duration: 0.2s;
  1764. animation-fill-mode: both;
  1765. animation-play-state: paused;
  1766. }
  1767. .swing-enter.swing-enter-active,
  1768. .swing-appear.swing-appear-active {
  1769. animation-name: antSwingIn;
  1770. animation-play-state: running;
  1771. }
  1772. @keyframes antSwingIn {
  1773. 0%,
  1774. 100% {
  1775. transform: translateX(0);
  1776. }
  1777. 20% {
  1778. transform: translateX(-10px);
  1779. }
  1780. 40% {
  1781. transform: translateX(10px);
  1782. }
  1783. 60% {
  1784. transform: translateX(-5px);
  1785. }
  1786. 80% {
  1787. transform: translateX(5px);
  1788. }
  1789. }
  1790. .zoom-enter,
  1791. .zoom-appear {
  1792. animation-duration: 0.2s;
  1793. animation-fill-mode: both;
  1794. animation-play-state: paused;
  1795. }
  1796. .zoom-leave {
  1797. animation-duration: 0.2s;
  1798. animation-fill-mode: both;
  1799. animation-play-state: paused;
  1800. }
  1801. .zoom-enter.zoom-enter-active,
  1802. .zoom-appear.zoom-appear-active {
  1803. animation-name: antZoomIn;
  1804. animation-play-state: running;
  1805. }
  1806. .zoom-leave.zoom-leave-active {
  1807. animation-name: antZoomOut;
  1808. animation-play-state: running;
  1809. }
  1810. .zoom-enter,
  1811. .zoom-appear {
  1812. transform: scale(0);
  1813. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1814. }
  1815. .zoom-leave {
  1816. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1817. }
  1818. .zoom-big-enter,
  1819. .zoom-big-appear {
  1820. animation-duration: 0.2s;
  1821. animation-fill-mode: both;
  1822. animation-play-state: paused;
  1823. }
  1824. .zoom-big-leave {
  1825. animation-duration: 0.2s;
  1826. animation-fill-mode: both;
  1827. animation-play-state: paused;
  1828. }
  1829. .zoom-big-enter.zoom-big-enter-active,
  1830. .zoom-big-appear.zoom-big-appear-active {
  1831. animation-name: antZoomBigIn;
  1832. animation-play-state: running;
  1833. }
  1834. .zoom-big-leave.zoom-big-leave-active {
  1835. animation-name: antZoomBigOut;
  1836. animation-play-state: running;
  1837. }
  1838. .zoom-big-enter,
  1839. .zoom-big-appear {
  1840. transform: scale(0);
  1841. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1842. }
  1843. .zoom-big-leave {
  1844. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1845. }
  1846. .zoom-big-fast-enter,
  1847. .zoom-big-fast-appear {
  1848. animation-duration: 0.1s;
  1849. animation-fill-mode: both;
  1850. animation-play-state: paused;
  1851. }
  1852. .zoom-big-fast-leave {
  1853. animation-duration: 0.1s;
  1854. animation-fill-mode: both;
  1855. animation-play-state: paused;
  1856. }
  1857. .zoom-big-fast-enter.zoom-big-fast-enter-active,
  1858. .zoom-big-fast-appear.zoom-big-fast-appear-active {
  1859. animation-name: antZoomBigIn;
  1860. animation-play-state: running;
  1861. }
  1862. .zoom-big-fast-leave.zoom-big-fast-leave-active {
  1863. animation-name: antZoomBigOut;
  1864. animation-play-state: running;
  1865. }
  1866. .zoom-big-fast-enter,
  1867. .zoom-big-fast-appear {
  1868. transform: scale(0);
  1869. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1870. }
  1871. .zoom-big-fast-leave {
  1872. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1873. }
  1874. .zoom-up-enter,
  1875. .zoom-up-appear {
  1876. animation-duration: 0.2s;
  1877. animation-fill-mode: both;
  1878. animation-play-state: paused;
  1879. }
  1880. .zoom-up-leave {
  1881. animation-duration: 0.2s;
  1882. animation-fill-mode: both;
  1883. animation-play-state: paused;
  1884. }
  1885. .zoom-up-enter.zoom-up-enter-active,
  1886. .zoom-up-appear.zoom-up-appear-active {
  1887. animation-name: antZoomUpIn;
  1888. animation-play-state: running;
  1889. }
  1890. .zoom-up-leave.zoom-up-leave-active {
  1891. animation-name: antZoomUpOut;
  1892. animation-play-state: running;
  1893. }
  1894. .zoom-up-enter,
  1895. .zoom-up-appear {
  1896. transform: scale(0);
  1897. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1898. }
  1899. .zoom-up-leave {
  1900. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1901. }
  1902. .zoom-down-enter,
  1903. .zoom-down-appear {
  1904. animation-duration: 0.2s;
  1905. animation-fill-mode: both;
  1906. animation-play-state: paused;
  1907. }
  1908. .zoom-down-leave {
  1909. animation-duration: 0.2s;
  1910. animation-fill-mode: both;
  1911. animation-play-state: paused;
  1912. }
  1913. .zoom-down-enter.zoom-down-enter-active,
  1914. .zoom-down-appear.zoom-down-appear-active {
  1915. animation-name: antZoomDownIn;
  1916. animation-play-state: running;
  1917. }
  1918. .zoom-down-leave.zoom-down-leave-active {
  1919. animation-name: antZoomDownOut;
  1920. animation-play-state: running;
  1921. }
  1922. .zoom-down-enter,
  1923. .zoom-down-appear {
  1924. transform: scale(0);
  1925. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1926. }
  1927. .zoom-down-leave {
  1928. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1929. }
  1930. .zoom-left-enter,
  1931. .zoom-left-appear {
  1932. animation-duration: 0.2s;
  1933. animation-fill-mode: both;
  1934. animation-play-state: paused;
  1935. }
  1936. .zoom-left-leave {
  1937. animation-duration: 0.2s;
  1938. animation-fill-mode: both;
  1939. animation-play-state: paused;
  1940. }
  1941. .zoom-left-enter.zoom-left-enter-active,
  1942. .zoom-left-appear.zoom-left-appear-active {
  1943. animation-name: antZoomLeftIn;
  1944. animation-play-state: running;
  1945. }
  1946. .zoom-left-leave.zoom-left-leave-active {
  1947. animation-name: antZoomLeftOut;
  1948. animation-play-state: running;
  1949. }
  1950. .zoom-left-enter,
  1951. .zoom-left-appear {
  1952. transform: scale(0);
  1953. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1954. }
  1955. .zoom-left-leave {
  1956. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1957. }
  1958. .zoom-right-enter,
  1959. .zoom-right-appear {
  1960. animation-duration: 0.2s;
  1961. animation-fill-mode: both;
  1962. animation-play-state: paused;
  1963. }
  1964. .zoom-right-leave {
  1965. animation-duration: 0.2s;
  1966. animation-fill-mode: both;
  1967. animation-play-state: paused;
  1968. }
  1969. .zoom-right-enter.zoom-right-enter-active,
  1970. .zoom-right-appear.zoom-right-appear-active {
  1971. animation-name: antZoomRightIn;
  1972. animation-play-state: running;
  1973. }
  1974. .zoom-right-leave.zoom-right-leave-active {
  1975. animation-name: antZoomRightOut;
  1976. animation-play-state: running;
  1977. }
  1978. .zoom-right-enter,
  1979. .zoom-right-appear {
  1980. transform: scale(0);
  1981. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1982. }
  1983. .zoom-right-leave {
  1984. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1985. }
  1986. @keyframes antZoomIn {
  1987. 0% {
  1988. opacity: 0;
  1989. transform: scale(0.2);
  1990. }
  1991. 100% {
  1992. opacity: 1;
  1993. transform: scale(1);
  1994. }
  1995. }
  1996. @keyframes antZoomOut {
  1997. 0% {
  1998. transform: scale(1);
  1999. }
  2000. 100% {
  2001. opacity: 0;
  2002. transform: scale(0.2);
  2003. }
  2004. }
  2005. @keyframes antZoomBigIn {
  2006. 0% {
  2007. opacity: 0;
  2008. transform: scale(0.8);
  2009. }
  2010. 100% {
  2011. transform: scale(1);
  2012. }
  2013. }
  2014. @keyframes antZoomBigOut {
  2015. 0% {
  2016. transform: scale(1);
  2017. }
  2018. 100% {
  2019. opacity: 0;
  2020. transform: scale(0.8);
  2021. }
  2022. }
  2023. @keyframes antZoomUpIn {
  2024. 0% {
  2025. opacity: 0;
  2026. transform-origin: 50% 0%;
  2027. transform: scale(0.8);
  2028. }
  2029. 100% {
  2030. transform-origin: 50% 0%;
  2031. transform: scale(1);
  2032. }
  2033. }
  2034. @keyframes antZoomUpOut {
  2035. 0% {
  2036. transform-origin: 50% 0%;
  2037. transform: scale(1);
  2038. }
  2039. 100% {
  2040. opacity: 0;
  2041. transform-origin: 50% 0%;
  2042. transform: scale(0.8);
  2043. }
  2044. }
  2045. @keyframes antZoomLeftIn {
  2046. 0% {
  2047. opacity: 0;
  2048. transform-origin: 0% 50%;
  2049. transform: scale(0.8);
  2050. }
  2051. 100% {
  2052. transform-origin: 0% 50%;
  2053. transform: scale(1);
  2054. }
  2055. }
  2056. @keyframes antZoomLeftOut {
  2057. 0% {
  2058. transform-origin: 0% 50%;
  2059. transform: scale(1);
  2060. }
  2061. 100% {
  2062. opacity: 0;
  2063. transform-origin: 0% 50%;
  2064. transform: scale(0.8);
  2065. }
  2066. }
  2067. @keyframes antZoomRightIn {
  2068. 0% {
  2069. opacity: 0;
  2070. transform-origin: 100% 50%;
  2071. transform: scale(0.8);
  2072. }
  2073. 100% {
  2074. transform-origin: 100% 50%;
  2075. transform: scale(1);
  2076. }
  2077. }
  2078. @keyframes antZoomRightOut {
  2079. 0% {
  2080. transform-origin: 100% 50%;
  2081. transform: scale(1);
  2082. }
  2083. 100% {
  2084. opacity: 0;
  2085. transform-origin: 100% 50%;
  2086. transform: scale(0.8);
  2087. }
  2088. }
  2089. @keyframes antZoomDownIn {
  2090. 0% {
  2091. opacity: 0;
  2092. transform-origin: 50% 100%;
  2093. transform: scale(0.8);
  2094. }
  2095. 100% {
  2096. transform-origin: 50% 100%;
  2097. transform: scale(1);
  2098. }
  2099. }
  2100. @keyframes antZoomDownOut {
  2101. 0% {
  2102. transform-origin: 50% 100%;
  2103. transform: scale(1);
  2104. }
  2105. 100% {
  2106. opacity: 0;
  2107. transform-origin: 50% 100%;
  2108. transform: scale(0.8);
  2109. }
  2110. }
  2111. .ant-motion-collapse {
  2112. overflow: hidden;
  2113. }
  2114. .ant-motion-collapse-active {
  2115. transition: height .2s, opacity .2s;
  2116. }
  2117. .ant-spin {
  2118. color: #58a3ff;
  2119. vertical-align: middle;
  2120. text-align: center;
  2121. opacity: 0;
  2122. position: absolute;
  2123. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2124. font-size: 12px;
  2125. display: none;
  2126. }
  2127. .ant-spin-spinning {
  2128. opacity: 1;
  2129. position: static;
  2130. display: inline-block;
  2131. }
  2132. .ant-spin-nested-loading {
  2133. position: relative;
  2134. }
  2135. .ant-spin-nested-loading > div > .ant-spin {
  2136. position: absolute;
  2137. height: 100%;
  2138. width: 100%;
  2139. z-index: 4;
  2140. }
  2141. .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  2142. position: absolute;
  2143. top: 50%;
  2144. left: 50%;
  2145. margin: -10px;
  2146. }
  2147. .ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  2148. position: absolute;
  2149. top: 50%;
  2150. width: 100%;
  2151. padding-top: 6px;
  2152. }
  2153. .ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  2154. margin-top: -20px;
  2155. }
  2156. .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  2157. margin: -7px;
  2158. }
  2159. .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  2160. padding-top: 3px;
  2161. }
  2162. .ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  2163. margin-top: -17px;
  2164. }
  2165. .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  2166. margin: -16px;
  2167. }
  2168. .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  2169. padding-top: 12px;
  2170. }
  2171. .ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  2172. margin-top: -26px;
  2173. }
  2174. .ant-spin-container {
  2175. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2176. position: relative;
  2177. }
  2178. .ant-spin-blur {
  2179. opacity: 0.7;
  2180. -webkit-filter: blur(0.8px);
  2181. filter: blur(0.8px);
  2182. /* autoprefixer: off */
  2183. filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
  2184. /* autoprefixer: on */
  2185. -webkit-transform: translateZ(0);
  2186. }
  2187. .ant-spin-blur:after {
  2188. content: '';
  2189. position: absolute;
  2190. left: 0;
  2191. right: 0;
  2192. top: 0;
  2193. bottom: 0;
  2194. background: #fff;
  2195. opacity: 0.2;
  2196. transition: all .3s;
  2197. }
  2198. .ant-spin-tip {
  2199. color: rgba(0, 0, 0, 0.43);
  2200. }
  2201. .ant-spin-dot {
  2202. position: relative;
  2203. display: block;
  2204. width: 20px;
  2205. height: 20px;
  2206. transform: rotate(45deg);
  2207. animation: antRotate 2s infinite linear;
  2208. }
  2209. .ant-spin-dot i {
  2210. width: 9px;
  2211. height: 9px;
  2212. border-radius: 100%;
  2213. background-color: #58a3ff;
  2214. transform: scale(0.6);
  2215. display: block;
  2216. position: absolute;
  2217. opacity: 0.3;
  2218. animation: antSpinMove 1s infinite linear alternate;
  2219. transform-origin: 50% 50%;
  2220. }
  2221. .ant-spin-dot i:nth-child(1) {
  2222. left: 0;
  2223. top: 0;
  2224. }
  2225. .ant-spin-dot i:nth-child(2) {
  2226. right: 0;
  2227. top: 0;
  2228. animation-delay: 0.4s;
  2229. }
  2230. .ant-spin-dot i:nth-child(3) {
  2231. right: 0;
  2232. bottom: 0;
  2233. animation-delay: 0.8s;
  2234. }
  2235. .ant-spin-dot i:nth-child(4) {
  2236. left: 0;
  2237. bottom: 0;
  2238. animation-delay: 1.2s;
  2239. }
  2240. .ant-spin-sm .ant-spin-dot {
  2241. width: 14px;
  2242. height: 14px;
  2243. }
  2244. .ant-spin-sm .ant-spin-dot i {
  2245. width: 6px;
  2246. height: 6px;
  2247. }
  2248. .ant-spin-lg .ant-spin-dot {
  2249. width: 32px;
  2250. height: 32px;
  2251. }
  2252. .ant-spin-lg .ant-spin-dot i {
  2253. width: 14px;
  2254. height: 14px;
  2255. }
  2256. .ant-spin.ant-spin-show-text .ant-spin-text {
  2257. display: block;
  2258. }
  2259. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  2260. /* IE10+ */
  2261. .ant-spin-blur {
  2262. background: #fff;
  2263. opacity: 0.5;
  2264. }
  2265. }
  2266. @keyframes antSpinMove {
  2267. to {
  2268. transform: scale(0.9);
  2269. opacity: 1;
  2270. }
  2271. }
  2272. @keyframes antRotate {
  2273. to {
  2274. transform: rotate(405deg);
  2275. }
  2276. }
  2277. .ant-btn {
  2278. display: inline-block;
  2279. margin-bottom: 0;
  2280. font-weight: 500;
  2281. text-align: center;
  2282. touch-action: manipulation;
  2283. cursor: pointer;
  2284. background-image: none;
  2285. border: 1px solid transparent;
  2286. white-space: nowrap;
  2287. line-height: 1.5;
  2288. padding: 4px 15px;
  2289. font-size: 12px;
  2290. border-radius: 4px;
  2291. user-select: none;
  2292. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2293. position: relative;
  2294. color: rgba(0, 0, 0, 0.65);
  2295. background-color: #fff;
  2296. border-color: #d9d9d9;
  2297. }
  2298. .ant-btn > .anticon {
  2299. line-height: 1;
  2300. }
  2301. .ant-btn,
  2302. .ant-btn:active,
  2303. .ant-btn:focus {
  2304. outline: 0;
  2305. }
  2306. .ant-btn:not([disabled]):hover {
  2307. text-decoration: none;
  2308. }
  2309. .ant-btn:not([disabled]):active {
  2310. outline: 0;
  2311. transition: none;
  2312. }
  2313. .ant-btn.disabled,
  2314. .ant-btn[disabled] {
  2315. cursor: not-allowed;
  2316. }
  2317. .ant-btn.disabled > *,
  2318. .ant-btn[disabled] > * {
  2319. pointer-events: none;
  2320. }
  2321. .ant-btn-lg {
  2322. padding: 4px 15px 5px 15px;
  2323. font-size: 14px;
  2324. border-radius: 4px;
  2325. }
  2326. .ant-btn-sm {
  2327. padding: 1px 7px;
  2328. font-size: 12px;
  2329. border-radius: 4px;
  2330. }
  2331. .ant-btn > a:only-child {
  2332. color: currentColor;
  2333. }
  2334. .ant-btn > a:only-child:after {
  2335. content: '';
  2336. position: absolute;
  2337. top: 0;
  2338. left: 0;
  2339. bottom: 0;
  2340. right: 0;
  2341. background: transparent;
  2342. }
  2343. .ant-btn:hover,
  2344. .ant-btn:focus {
  2345. color: #80b9ff;
  2346. background-color: #fff;
  2347. border-color: #80b9ff;
  2348. }
  2349. .ant-btn:hover > a:only-child,
  2350. .ant-btn:focus > a:only-child {
  2351. color: currentColor;
  2352. }
  2353. .ant-btn:hover > a:only-child:after,
  2354. .ant-btn:focus > a:only-child:after {
  2355. content: '';
  2356. position: absolute;
  2357. top: 0;
  2358. left: 0;
  2359. bottom: 0;
  2360. right: 0;
  2361. background: transparent;
  2362. }
  2363. .ant-btn:active,
  2364. .ant-btn.active {
  2365. color: #4386e7;
  2366. background-color: #fff;
  2367. border-color: #4386e7;
  2368. }
  2369. .ant-btn:active > a:only-child,
  2370. .ant-btn.active > a:only-child {
  2371. color: currentColor;
  2372. }
  2373. .ant-btn:active > a:only-child:after,
  2374. .ant-btn.active > a:only-child:after {
  2375. content: '';
  2376. position: absolute;
  2377. top: 0;
  2378. left: 0;
  2379. bottom: 0;
  2380. right: 0;
  2381. background: transparent;
  2382. }
  2383. .ant-btn.disabled,
  2384. .ant-btn[disabled],
  2385. .ant-btn.disabled:hover,
  2386. .ant-btn[disabled]:hover,
  2387. .ant-btn.disabled:focus,
  2388. .ant-btn[disabled]:focus,
  2389. .ant-btn.disabled:active,
  2390. .ant-btn[disabled]:active,
  2391. .ant-btn.disabled.active,
  2392. .ant-btn[disabled].active {
  2393. color: rgba(0, 0, 0, 0.25);
  2394. background-color: #f7f7f7;
  2395. border-color: #d9d9d9;
  2396. }
  2397. .ant-btn.disabled > a:only-child,
  2398. .ant-btn[disabled] > a:only-child,
  2399. .ant-btn.disabled:hover > a:only-child,
  2400. .ant-btn[disabled]:hover > a:only-child,
  2401. .ant-btn.disabled:focus > a:only-child,
  2402. .ant-btn[disabled]:focus > a:only-child,
  2403. .ant-btn.disabled:active > a:only-child,
  2404. .ant-btn[disabled]:active > a:only-child,
  2405. .ant-btn.disabled.active > a:only-child,
  2406. .ant-btn[disabled].active > a:only-child {
  2407. color: currentColor;
  2408. }
  2409. .ant-btn.disabled > a:only-child:after,
  2410. .ant-btn[disabled] > a:only-child:after,
  2411. .ant-btn.disabled:hover > a:only-child:after,
  2412. .ant-btn[disabled]:hover > a:only-child:after,
  2413. .ant-btn.disabled:focus > a:only-child:after,
  2414. .ant-btn[disabled]:focus > a:only-child:after,
  2415. .ant-btn.disabled:active > a:only-child:after,
  2416. .ant-btn[disabled]:active > a:only-child:after,
  2417. .ant-btn.disabled.active > a:only-child:after,
  2418. .ant-btn[disabled].active > a:only-child:after {
  2419. content: '';
  2420. position: absolute;
  2421. top: 0;
  2422. left: 0;
  2423. bottom: 0;
  2424. right: 0;
  2425. background: transparent;
  2426. }
  2427. .ant-btn:hover,
  2428. .ant-btn:focus,
  2429. .ant-btn:active,
  2430. .ant-btn.active {
  2431. background: #fff;
  2432. }
  2433. .ant-btn-primary {
  2434. color: #fff;
  2435. background-color: #58a3ff;
  2436. border-color: #58a3ff;
  2437. }
  2438. .ant-btn-primary > a:only-child {
  2439. color: currentColor;
  2440. }
  2441. .ant-btn-primary > a:only-child:after {
  2442. content: '';
  2443. position: absolute;
  2444. top: 0;
  2445. left: 0;
  2446. bottom: 0;
  2447. right: 0;
  2448. background: transparent;
  2449. }
  2450. .ant-btn-primary:hover,
  2451. .ant-btn-primary:focus {
  2452. color: #fff;
  2453. background-color: #80b9ff;
  2454. border-color: #80b9ff;
  2455. }
  2456. .ant-btn-primary:hover > a:only-child,
  2457. .ant-btn-primary:focus > a:only-child {
  2458. color: currentColor;
  2459. }
  2460. .ant-btn-primary:hover > a:only-child:after,
  2461. .ant-btn-primary:focus > a:only-child:after {
  2462. content: '';
  2463. position: absolute;
  2464. top: 0;
  2465. left: 0;
  2466. bottom: 0;
  2467. right: 0;
  2468. background: transparent;
  2469. }
  2470. .ant-btn-primary:active,
  2471. .ant-btn-primary.active {
  2472. color: #fff;
  2473. background-color: #4386e7;
  2474. border-color: #4386e7;
  2475. }
  2476. .ant-btn-primary:active > a:only-child,
  2477. .ant-btn-primary.active > a:only-child {
  2478. color: currentColor;
  2479. }
  2480. .ant-btn-primary:active > a:only-child:after,
  2481. .ant-btn-primary.active > a:only-child:after {
  2482. content: '';
  2483. position: absolute;
  2484. top: 0;
  2485. left: 0;
  2486. bottom: 0;
  2487. right: 0;
  2488. background: transparent;
  2489. }
  2490. .ant-btn-primary.disabled,
  2491. .ant-btn-primary[disabled],
  2492. .ant-btn-primary.disabled:hover,
  2493. .ant-btn-primary[disabled]:hover,
  2494. .ant-btn-primary.disabled:focus,
  2495. .ant-btn-primary[disabled]:focus,
  2496. .ant-btn-primary.disabled:active,
  2497. .ant-btn-primary[disabled]:active,
  2498. .ant-btn-primary.disabled.active,
  2499. .ant-btn-primary[disabled].active {
  2500. color: rgba(0, 0, 0, 0.25);
  2501. background-color: #f7f7f7;
  2502. border-color: #d9d9d9;
  2503. }
  2504. .ant-btn-primary.disabled > a:only-child,
  2505. .ant-btn-primary[disabled] > a:only-child,
  2506. .ant-btn-primary.disabled:hover > a:only-child,
  2507. .ant-btn-primary[disabled]:hover > a:only-child,
  2508. .ant-btn-primary.disabled:focus > a:only-child,
  2509. .ant-btn-primary[disabled]:focus > a:only-child,
  2510. .ant-btn-primary.disabled:active > a:only-child,
  2511. .ant-btn-primary[disabled]:active > a:only-child,
  2512. .ant-btn-primary.disabled.active > a:only-child,
  2513. .ant-btn-primary[disabled].active > a:only-child {
  2514. color: currentColor;
  2515. }
  2516. .ant-btn-primary.disabled > a:only-child:after,
  2517. .ant-btn-primary[disabled] > a:only-child:after,
  2518. .ant-btn-primary.disabled:hover > a:only-child:after,
  2519. .ant-btn-primary[disabled]:hover > a:only-child:after,
  2520. .ant-btn-primary.disabled:focus > a:only-child:after,
  2521. .ant-btn-primary[disabled]:focus > a:only-child:after,
  2522. .ant-btn-primary.disabled:active > a:only-child:after,
  2523. .ant-btn-primary[disabled]:active > a:only-child:after,
  2524. .ant-btn-primary.disabled.active > a:only-child:after,
  2525. .ant-btn-primary[disabled].active > a:only-child:after {
  2526. content: '';
  2527. position: absolute;
  2528. top: 0;
  2529. left: 0;
  2530. bottom: 0;
  2531. right: 0;
  2532. background: transparent;
  2533. }
  2534. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  2535. border-right-color: #4386e7;
  2536. border-left-color: #4386e7;
  2537. }
  2538. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  2539. border-color: #d9d9d9;
  2540. }
  2541. .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  2542. border-right-color: #4386e7;
  2543. }
  2544. .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  2545. border-right-color: #d9d9d9;
  2546. }
  2547. .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
  2548. .ant-btn-group .ant-btn-primary + .ant-btn-primary {
  2549. border-left-color: #4386e7;
  2550. }
  2551. .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
  2552. .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  2553. border-left-color: #d9d9d9;
  2554. }
  2555. .ant-btn-ghost {
  2556. color: rgba(0, 0, 0, 0.65);
  2557. background-color: transparent;
  2558. border-color: #d9d9d9;
  2559. }
  2560. .ant-btn-ghost > a:only-child {
  2561. color: currentColor;
  2562. }
  2563. .ant-btn-ghost > a:only-child:after {
  2564. content: '';
  2565. position: absolute;
  2566. top: 0;
  2567. left: 0;
  2568. bottom: 0;
  2569. right: 0;
  2570. background: transparent;
  2571. }
  2572. .ant-btn-ghost:hover,
  2573. .ant-btn-ghost:focus {
  2574. color: #80b9ff;
  2575. background-color: transparent;
  2576. border-color: #80b9ff;
  2577. }
  2578. .ant-btn-ghost:hover > a:only-child,
  2579. .ant-btn-ghost:focus > a:only-child {
  2580. color: currentColor;
  2581. }
  2582. .ant-btn-ghost:hover > a:only-child:after,
  2583. .ant-btn-ghost:focus > a:only-child:after {
  2584. content: '';
  2585. position: absolute;
  2586. top: 0;
  2587. left: 0;
  2588. bottom: 0;
  2589. right: 0;
  2590. background: transparent;
  2591. }
  2592. .ant-btn-ghost:active,
  2593. .ant-btn-ghost.active {
  2594. color: #4386e7;
  2595. background-color: transparent;
  2596. border-color: #4386e7;
  2597. }
  2598. .ant-btn-ghost:active > a:only-child,
  2599. .ant-btn-ghost.active > a:only-child {
  2600. color: currentColor;
  2601. }
  2602. .ant-btn-ghost:active > a:only-child:after,
  2603. .ant-btn-ghost.active > a:only-child:after {
  2604. content: '';
  2605. position: absolute;
  2606. top: 0;
  2607. left: 0;
  2608. bottom: 0;
  2609. right: 0;
  2610. background: transparent;
  2611. }
  2612. .ant-btn-ghost.disabled,
  2613. .ant-btn-ghost[disabled],
  2614. .ant-btn-ghost.disabled:hover,
  2615. .ant-btn-ghost[disabled]:hover,
  2616. .ant-btn-ghost.disabled:focus,
  2617. .ant-btn-ghost[disabled]:focus,
  2618. .ant-btn-ghost.disabled:active,
  2619. .ant-btn-ghost[disabled]:active,
  2620. .ant-btn-ghost.disabled.active,
  2621. .ant-btn-ghost[disabled].active {
  2622. color: rgba(0, 0, 0, 0.25);
  2623. background-color: #f7f7f7;
  2624. border-color: #d9d9d9;
  2625. }
  2626. .ant-btn-ghost.disabled > a:only-child,
  2627. .ant-btn-ghost[disabled] > a:only-child,
  2628. .ant-btn-ghost.disabled:hover > a:only-child,
  2629. .ant-btn-ghost[disabled]:hover > a:only-child,
  2630. .ant-btn-ghost.disabled:focus > a:only-child,
  2631. .ant-btn-ghost[disabled]:focus > a:only-child,
  2632. .ant-btn-ghost.disabled:active > a:only-child,
  2633. .ant-btn-ghost[disabled]:active > a:only-child,
  2634. .ant-btn-ghost.disabled.active > a:only-child,
  2635. .ant-btn-ghost[disabled].active > a:only-child {
  2636. color: currentColor;
  2637. }
  2638. .ant-btn-ghost.disabled > a:only-child:after,
  2639. .ant-btn-ghost[disabled] > a:only-child:after,
  2640. .ant-btn-ghost.disabled:hover > a:only-child:after,
  2641. .ant-btn-ghost[disabled]:hover > a:only-child:after,
  2642. .ant-btn-ghost.disabled:focus > a:only-child:after,
  2643. .ant-btn-ghost[disabled]:focus > a:only-child:after,
  2644. .ant-btn-ghost.disabled:active > a:only-child:after,
  2645. .ant-btn-ghost[disabled]:active > a:only-child:after,
  2646. .ant-btn-ghost.disabled.active > a:only-child:after,
  2647. .ant-btn-ghost[disabled].active > a:only-child:after {
  2648. content: '';
  2649. position: absolute;
  2650. top: 0;
  2651. left: 0;
  2652. bottom: 0;
  2653. right: 0;
  2654. background: transparent;
  2655. }
  2656. .ant-btn-dashed {
  2657. color: rgba(0, 0, 0, 0.65);
  2658. background-color: #fff;
  2659. border-color: #d9d9d9;
  2660. border-style: dashed;
  2661. }
  2662. .ant-btn-dashed > a:only-child {
  2663. color: currentColor;
  2664. }
  2665. .ant-btn-dashed > a:only-child:after {
  2666. content: '';
  2667. position: absolute;
  2668. top: 0;
  2669. left: 0;
  2670. bottom: 0;
  2671. right: 0;
  2672. background: transparent;
  2673. }
  2674. .ant-btn-dashed:hover,
  2675. .ant-btn-dashed:focus {
  2676. color: #80b9ff;
  2677. background-color: #fff;
  2678. border-color: #80b9ff;
  2679. }
  2680. .ant-btn-dashed:hover > a:only-child,
  2681. .ant-btn-dashed:focus > a:only-child {
  2682. color: currentColor;
  2683. }
  2684. .ant-btn-dashed:hover > a:only-child:after,
  2685. .ant-btn-dashed:focus > a:only-child:after {
  2686. content: '';
  2687. position: absolute;
  2688. top: 0;
  2689. left: 0;
  2690. bottom: 0;
  2691. right: 0;
  2692. background: transparent;
  2693. }
  2694. .ant-btn-dashed:active,
  2695. .ant-btn-dashed.active {
  2696. color: #4386e7;
  2697. background-color: #fff;
  2698. border-color: #4386e7;
  2699. }
  2700. .ant-btn-dashed:active > a:only-child,
  2701. .ant-btn-dashed.active > a:only-child {
  2702. color: currentColor;
  2703. }
  2704. .ant-btn-dashed:active > a:only-child:after,
  2705. .ant-btn-dashed.active > a:only-child:after {
  2706. content: '';
  2707. position: absolute;
  2708. top: 0;
  2709. left: 0;
  2710. bottom: 0;
  2711. right: 0;
  2712. background: transparent;
  2713. }
  2714. .ant-btn-dashed.disabled,
  2715. .ant-btn-dashed[disabled],
  2716. .ant-btn-dashed.disabled:hover,
  2717. .ant-btn-dashed[disabled]:hover,
  2718. .ant-btn-dashed.disabled:focus,
  2719. .ant-btn-dashed[disabled]:focus,
  2720. .ant-btn-dashed.disabled:active,
  2721. .ant-btn-dashed[disabled]:active,
  2722. .ant-btn-dashed.disabled.active,
  2723. .ant-btn-dashed[disabled].active {
  2724. color: rgba(0, 0, 0, 0.25);
  2725. background-color: #f7f7f7;
  2726. border-color: #d9d9d9;
  2727. }
  2728. .ant-btn-dashed.disabled > a:only-child,
  2729. .ant-btn-dashed[disabled] > a:only-child,
  2730. .ant-btn-dashed.disabled:hover > a:only-child,
  2731. .ant-btn-dashed[disabled]:hover > a:only-child,
  2732. .ant-btn-dashed.disabled:focus > a:only-child,
  2733. .ant-btn-dashed[disabled]:focus > a:only-child,
  2734. .ant-btn-dashed.disabled:active > a:only-child,
  2735. .ant-btn-dashed[disabled]:active > a:only-child,
  2736. .ant-btn-dashed.disabled.active > a:only-child,
  2737. .ant-btn-dashed[disabled].active > a:only-child {
  2738. color: currentColor;
  2739. }
  2740. .ant-btn-dashed.disabled > a:only-child:after,
  2741. .ant-btn-dashed[disabled] > a:only-child:after,
  2742. .ant-btn-dashed.disabled:hover > a:only-child:after,
  2743. .ant-btn-dashed[disabled]:hover > a:only-child:after,
  2744. .ant-btn-dashed.disabled:focus > a:only-child:after,
  2745. .ant-btn-dashed[disabled]:focus > a:only-child:after,
  2746. .ant-btn-dashed.disabled:active > a:only-child:after,
  2747. .ant-btn-dashed[disabled]:active > a:only-child:after,
  2748. .ant-btn-dashed.disabled.active > a:only-child:after,
  2749. .ant-btn-dashed[disabled].active > a:only-child:after {
  2750. content: '';
  2751. position: absolute;
  2752. top: 0;
  2753. left: 0;
  2754. bottom: 0;
  2755. right: 0;
  2756. background: transparent;
  2757. }
  2758. .ant-btn-danger {
  2759. color: #fff;
  2760. background-color: #f04134;
  2761. border-color: #f04134;
  2762. }
  2763. .ant-btn-danger > a:only-child {
  2764. color: currentColor;
  2765. }
  2766. .ant-btn-danger > a:only-child:after {
  2767. content: '';
  2768. position: absolute;
  2769. top: 0;
  2770. left: 0;
  2771. bottom: 0;
  2772. right: 0;
  2773. background: transparent;
  2774. }
  2775. .ant-btn-danger:hover,
  2776. .ant-btn-danger:focus {
  2777. color: #fff;
  2778. background-color: #f46e65;
  2779. border-color: #f46e65;
  2780. }
  2781. .ant-btn-danger:hover > a:only-child,
  2782. .ant-btn-danger:focus > a:only-child {
  2783. color: currentColor;
  2784. }
  2785. .ant-btn-danger:hover > a:only-child:after,
  2786. .ant-btn-danger:focus > a:only-child:after {
  2787. content: '';
  2788. position: absolute;
  2789. top: 0;
  2790. left: 0;
  2791. bottom: 0;
  2792. right: 0;
  2793. background: transparent;
  2794. }
  2795. .ant-btn-danger:active,
  2796. .ant-btn-danger.active {
  2797. color: #fff;
  2798. background-color: #d73435;
  2799. border-color: #d73435;
  2800. }
  2801. .ant-btn-danger:active > a:only-child,
  2802. .ant-btn-danger.active > a:only-child {
  2803. color: currentColor;
  2804. }
  2805. .ant-btn-danger:active > a:only-child:after,
  2806. .ant-btn-danger.active > a:only-child:after {
  2807. content: '';
  2808. position: absolute;
  2809. top: 0;
  2810. left: 0;
  2811. bottom: 0;
  2812. right: 0;
  2813. background: transparent;
  2814. }
  2815. .ant-btn-danger.disabled,
  2816. .ant-btn-danger[disabled],
  2817. .ant-btn-danger.disabled:hover,
  2818. .ant-btn-danger[disabled]:hover,
  2819. .ant-btn-danger.disabled:focus,
  2820. .ant-btn-danger[disabled]:focus,
  2821. .ant-btn-danger.disabled:active,
  2822. .ant-btn-danger[disabled]:active,
  2823. .ant-btn-danger.disabled.active,
  2824. .ant-btn-danger[disabled].active {
  2825. color: rgba(0, 0, 0, 0.25);
  2826. background-color: #f7f7f7;
  2827. border-color: #d9d9d9;
  2828. }
  2829. .ant-btn-danger.disabled > a:only-child,
  2830. .ant-btn-danger[disabled] > a:only-child,
  2831. .ant-btn-danger.disabled:hover > a:only-child,
  2832. .ant-btn-danger[disabled]:hover > a:only-child,
  2833. .ant-btn-danger.disabled:focus > a:only-child,
  2834. .ant-btn-danger[disabled]:focus > a:only-child,
  2835. .ant-btn-danger.disabled:active > a:only-child,
  2836. .ant-btn-danger[disabled]:active > a:only-child,
  2837. .ant-btn-danger.disabled.active > a:only-child,
  2838. .ant-btn-danger[disabled].active > a:only-child {
  2839. color: currentColor;
  2840. }
  2841. .ant-btn-danger.disabled > a:only-child:after,
  2842. .ant-btn-danger[disabled] > a:only-child:after,
  2843. .ant-btn-danger.disabled:hover > a:only-child:after,
  2844. .ant-btn-danger[disabled]:hover > a:only-child:after,
  2845. .ant-btn-danger.disabled:focus > a:only-child:after,
  2846. .ant-btn-danger[disabled]:focus > a:only-child:after,
  2847. .ant-btn-danger.disabled:active > a:only-child:after,
  2848. .ant-btn-danger[disabled]:active > a:only-child:after,
  2849. .ant-btn-danger.disabled.active > a:only-child:after,
  2850. .ant-btn-danger[disabled].active > a:only-child:after {
  2851. content: '';
  2852. position: absolute;
  2853. top: 0;
  2854. left: 0;
  2855. bottom: 0;
  2856. right: 0;
  2857. background: transparent;
  2858. }
  2859. .ant-btn-circle,
  2860. .ant-btn-circle-outline {
  2861. width: 28px;
  2862. height: 28px;
  2863. padding: 0;
  2864. font-size: 14px;
  2865. border-radius: 50%;
  2866. }
  2867. .ant-btn-circle.ant-btn-lg,
  2868. .ant-btn-circle-outline.ant-btn-lg {
  2869. width: 32px;
  2870. height: 32px;
  2871. padding: 0;
  2872. font-size: 16px;
  2873. border-radius: 50%;
  2874. }
  2875. .ant-btn-circle.ant-btn-sm,
  2876. .ant-btn-circle-outline.ant-btn-sm {
  2877. width: 22px;
  2878. height: 22px;
  2879. padding: 0;
  2880. font-size: 12px;
  2881. border-radius: 50%;
  2882. }
  2883. .ant-btn:before {
  2884. position: absolute;
  2885. top: -1px;
  2886. left: -1px;
  2887. bottom: -1px;
  2888. right: -1px;
  2889. background: #fff;
  2890. opacity: 0.35;
  2891. content: '';
  2892. border-radius: inherit;
  2893. z-index: 1;
  2894. transition: opacity .2s;
  2895. pointer-events: none;
  2896. display: none;
  2897. }
  2898. .ant-btn.ant-btn-loading:before {
  2899. display: block;
  2900. }
  2901. .ant-btn .anticon {
  2902. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2903. }
  2904. .ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) {
  2905. padding-left: 29px;
  2906. pointer-events: none;
  2907. position: relative;
  2908. }
  2909. .ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) .anticon {
  2910. margin-left: -14px;
  2911. }
  2912. .ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) {
  2913. padding-left: 24px;
  2914. }
  2915. .ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline) .anticon {
  2916. margin-left: -17px;
  2917. }
  2918. .ant-btn-group {
  2919. position: relative;
  2920. display: inline-block;
  2921. }
  2922. .ant-btn-group > .ant-btn {
  2923. position: relative;
  2924. z-index: 1;
  2925. }
  2926. .ant-btn-group > .ant-btn:hover,
  2927. .ant-btn-group > .ant-btn:focus,
  2928. .ant-btn-group > .ant-btn:active,
  2929. .ant-btn-group > .ant-btn.active {
  2930. z-index: 2;
  2931. }
  2932. .ant-btn-group > .ant-btn:disabled {
  2933. z-index: 0;
  2934. }
  2935. .ant-btn-group-lg > .ant-btn {
  2936. padding: 4px 15px 5px 15px;
  2937. font-size: 14px;
  2938. border-radius: 4px;
  2939. }
  2940. .ant-btn-group-sm > .ant-btn {
  2941. padding: 1px 7px;
  2942. font-size: 12px;
  2943. border-radius: 4px;
  2944. }
  2945. .ant-btn-group-sm > .ant-btn > .anticon {
  2946. font-size: 12px;
  2947. }
  2948. .ant-btn-group .ant-btn + .ant-btn,
  2949. .ant-btn + .ant-btn-group,
  2950. .ant-btn-group + .ant-btn,
  2951. .ant-btn-group + .ant-btn-group {
  2952. margin-left: -1px;
  2953. }
  2954. .ant-btn-group .ant-btn:not(:first-child):not(:last-child) {
  2955. border-radius: 0;
  2956. padding-left: 8px;
  2957. padding-right: 8px;
  2958. }
  2959. .ant-btn-group > .ant-btn:first-child {
  2960. margin-left: 0;
  2961. }
  2962. .ant-btn-group > .ant-btn:first-child:not(:last-child) {
  2963. border-bottom-right-radius: 0;
  2964. border-top-right-radius: 0;
  2965. padding-right: 8px;
  2966. }
  2967. .ant-btn-group > .ant-btn:last-child:not(:first-child) {
  2968. border-bottom-left-radius: 0;
  2969. border-top-left-radius: 0;
  2970. padding-left: 8px;
  2971. }
  2972. .ant-btn-group > .ant-btn-group {
  2973. float: left;
  2974. }
  2975. .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  2976. border-radius: 0;
  2977. }
  2978. .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  2979. border-bottom-right-radius: 0;
  2980. border-top-right-radius: 0;
  2981. padding-right: 8px;
  2982. }
  2983. .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  2984. border-bottom-left-radius: 0;
  2985. border-top-left-radius: 0;
  2986. padding-left: 8px;
  2987. }
  2988. .ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline).ant-btn-icon-only {
  2989. padding-left: 8px;
  2990. padding-right: 8px;
  2991. }
  2992. .ant-btn > .anticon + span,
  2993. .ant-btn > span + .anticon {
  2994. margin-left: 0.5em;
  2995. }
  2996. .ant-btn-clicked:after {
  2997. content: '';
  2998. position: absolute;
  2999. top: -1px;
  3000. left: -1px;
  3001. bottom: -1px;
  3002. right: -1px;
  3003. border-radius: inherit;
  3004. border: 0 solid #58a3ff;
  3005. opacity: 0.4;
  3006. animation: buttonEffect .4s;
  3007. display: block;
  3008. }
  3009. .ant-btn-danger.ant-btn-clicked:after {
  3010. border-color: #f04134;
  3011. }
  3012. .ant-btn-background-ghost {
  3013. background: transparent!important;
  3014. border-color: #fff;
  3015. color: #fff;
  3016. }
  3017. .ant-btn-background-ghost.ant-btn-primary {
  3018. color: #58a3ff;
  3019. background-color: transparent;
  3020. border-color: #58a3ff;
  3021. }
  3022. .ant-btn-background-ghost.ant-btn-primary > a:only-child {
  3023. color: currentColor;
  3024. }
  3025. .ant-btn-background-ghost.ant-btn-primary > a:only-child:after {
  3026. content: '';
  3027. position: absolute;
  3028. top: 0;
  3029. left: 0;
  3030. bottom: 0;
  3031. right: 0;
  3032. background: transparent;
  3033. }
  3034. .ant-btn-background-ghost.ant-btn-primary:hover,
  3035. .ant-btn-background-ghost.ant-btn-primary:focus {
  3036. color: #80b9ff;
  3037. background-color: transparent;
  3038. border-color: #80b9ff;
  3039. }
  3040. .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
  3041. .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
  3042. color: currentColor;
  3043. }
  3044. .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child:after,
  3045. .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child:after {
  3046. content: '';
  3047. position: absolute;
  3048. top: 0;
  3049. left: 0;
  3050. bottom: 0;
  3051. right: 0;
  3052. background: transparent;
  3053. }
  3054. .ant-btn-background-ghost.ant-btn-primary:active,
  3055. .ant-btn-background-ghost.ant-btn-primary.active {
  3056. color: #4386e7;
  3057. background-color: transparent;
  3058. border-color: #4386e7;
  3059. }
  3060. .ant-btn-background-ghost.ant-btn-primary:active > a:only-child,
  3061. .ant-btn-background-ghost.ant-btn-primary.active > a:only-child {
  3062. color: currentColor;
  3063. }
  3064. .ant-btn-background-ghost.ant-btn-primary:active > a:only-child:after,
  3065. .ant-btn-background-ghost.ant-btn-primary.active > a:only-child:after {
  3066. content: '';
  3067. position: absolute;
  3068. top: 0;
  3069. left: 0;
  3070. bottom: 0;
  3071. right: 0;
  3072. background: transparent;
  3073. }
  3074. .ant-btn-background-ghost.ant-btn-primary.disabled,
  3075. .ant-btn-background-ghost.ant-btn-primary[disabled],
  3076. .ant-btn-background-ghost.ant-btn-primary.disabled:hover,
  3077. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
  3078. .ant-btn-background-ghost.ant-btn-primary.disabled:focus,
  3079. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
  3080. .ant-btn-background-ghost.ant-btn-primary.disabled:active,
  3081. .ant-btn-background-ghost.ant-btn-primary[disabled]:active,
  3082. .ant-btn-background-ghost.ant-btn-primary.disabled.active,
  3083. .ant-btn-background-ghost.ant-btn-primary[disabled].active {
  3084. color: rgba(0, 0, 0, 0.25);
  3085. background-color: #f7f7f7;
  3086. border-color: #d9d9d9;
  3087. }
  3088. .ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child,
  3089. .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
  3090. .ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child,
  3091. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
  3092. .ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child,
  3093. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
  3094. .ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child,
  3095. .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child,
  3096. .ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child,
  3097. .ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child {
  3098. color: currentColor;
  3099. }
  3100. .ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child:after,
  3101. .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child:after,
  3102. .ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child:after,
  3103. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child:after,
  3104. .ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child:after,
  3105. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child:after,
  3106. .ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child:after,
  3107. .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child:after,
  3108. .ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child:after,
  3109. .ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child:after {
  3110. content: '';
  3111. position: absolute;
  3112. top: 0;
  3113. left: 0;
  3114. bottom: 0;
  3115. right: 0;
  3116. background: transparent;
  3117. }
  3118. @keyframes buttonEffect {
  3119. to {
  3120. opacity: 0;
  3121. top: -6px;
  3122. left: -6px;
  3123. bottom: -6px;
  3124. right: -6px;
  3125. border-width: 6px;
  3126. }
  3127. }
  3128. .ant-checkbox {
  3129. white-space: nowrap;
  3130. cursor: pointer;
  3131. outline: none;
  3132. display: inline-block;
  3133. line-height: 1;
  3134. position: relative;
  3135. vertical-align: middle;
  3136. }
  3137. .ant-checkbox-wrapper:hover .ant-checkbox .ant-checkbox-inner,
  3138. .ant-checkbox:hover .ant-checkbox-inner,
  3139. .ant-checkbox-focused .ant-checkbox-inner {
  3140. border-color: #58a3ff;
  3141. }
  3142. .ant-checkbox-inner {
  3143. position: relative;
  3144. top: 0;
  3145. left: 0;
  3146. display: block;
  3147. width: 14px;
  3148. height: 14px;
  3149. border: 1px solid #d9d9d9;
  3150. border-radius: 2px;
  3151. background-color: #fff;
  3152. transition: all .3s;
  3153. }
  3154. .ant-checkbox-inner:after {
  3155. transform: rotate(45deg) scale(0);
  3156. position: absolute;
  3157. left: 4px;
  3158. top: 1px;
  3159. display: table;
  3160. width: 5px;
  3161. height: 8px;
  3162. border: 2px solid #fff;
  3163. border-top: 0;
  3164. border-left: 0;
  3165. content: ' ';
  3166. transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  3167. }
  3168. .ant-checkbox-input {
  3169. position: absolute;
  3170. left: 0;
  3171. z-index: 1;
  3172. cursor: pointer;
  3173. opacity: 0;
  3174. filter: alpha(opacity=0);
  3175. top: 0;
  3176. bottom: 0;
  3177. right: 0;
  3178. width: 100%;
  3179. height: 100%;
  3180. }
  3181. .ant-checkbox-indeterminate .ant-checkbox-inner:after {
  3182. content: ' ';
  3183. transform: scale(1);
  3184. position: absolute;
  3185. left: 2px;
  3186. top: 5px;
  3187. width: 8px;
  3188. height: 1px;
  3189. }
  3190. .ant-checkbox-checked .ant-checkbox-inner:after {
  3191. transform: rotate(45deg) scale(1);
  3192. position: absolute;
  3193. left: 4px;
  3194. top: 1px;
  3195. display: table;
  3196. width: 5px;
  3197. height: 8px;
  3198. border: 2px solid #fff;
  3199. border-top: 0;
  3200. border-left: 0;
  3201. content: ' ';
  3202. transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  3203. }
  3204. .ant-checkbox-checked .ant-checkbox-inner,
  3205. .ant-checkbox-indeterminate .ant-checkbox-inner {
  3206. background-color: #58a3ff;
  3207. border-color: #58a3ff;
  3208. }
  3209. .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
  3210. animation-name: none;
  3211. border-color: rgba(0, 0, 0, 0.25);
  3212. }
  3213. .ant-checkbox-disabled .ant-checkbox-inner {
  3214. border-color: #d9d9d9 !important;
  3215. background-color: #f3f3f3;
  3216. }
  3217. .ant-checkbox-disabled .ant-checkbox-inner:after {
  3218. animation-name: none;
  3219. border-color: #f3f3f3;
  3220. }
  3221. .ant-checkbox-disabled + span {
  3222. color: rgba(0, 0, 0, 0.25);
  3223. cursor: not-allowed;
  3224. }
  3225. .ant-checkbox-wrapper {
  3226. cursor: pointer;
  3227. font-size: 12px;
  3228. display: inline-block;
  3229. }
  3230. .ant-checkbox-wrapper:not(:last-child) {
  3231. margin-right: 8px;
  3232. }
  3233. .ant-checkbox-wrapper + span,
  3234. .ant-checkbox + span {
  3235. padding-left: 8px;
  3236. padding-right: 8px;
  3237. vertical-align: middle;
  3238. }
  3239. .ant-checkbox-group {
  3240. font-size: 12px;
  3241. }
  3242. .ant-checkbox-group-item {
  3243. display: inline-block;
  3244. }
  3245. @media \0screen {
  3246. .ant-checkbox-checked .ant-checkbox-inner:before,
  3247. .ant-checkbox-checked .ant-checkbox-inner:after {
  3248. font-family: 'anticon';
  3249. text-rendering: optimizeLegibility;
  3250. -webkit-font-smoothing: antialiased;
  3251. -moz-osx-font-smoothing: grayscale;
  3252. content: "\E632";
  3253. font-weight: bold;
  3254. font-size: 8px;
  3255. border: 0;
  3256. color: #fff;
  3257. left: 2px;
  3258. top: 3px;
  3259. position: absolute;
  3260. }
  3261. }
  3262. .ant-input-search-icon {
  3263. cursor: pointer;
  3264. transition: all .3s;
  3265. font-size: 14px;
  3266. }
  3267. .ant-input-search-icon:hover {
  3268. color: #58a3ff;
  3269. }
  3270. .ant-search-input-wrapper {
  3271. display: inline-block;
  3272. vertical-align: middle;
  3273. }
  3274. .ant-search-input.ant-input-group .ant-input:first-child,
  3275. .ant-search-input.ant-input-group .ant-select:first-child {
  3276. border-radius: 4px;
  3277. position: absolute;
  3278. top: -1px;
  3279. width: 100%;
  3280. }
  3281. .ant-search-input.ant-input-group .ant-input:first-child {
  3282. padding-right: 36px;
  3283. }
  3284. .ant-search-input .ant-search-btn {
  3285. color: rgba(0, 0, 0, 0.65);
  3286. background-color: #fff;
  3287. border-color: #d9d9d9;
  3288. border-radius: 0 3px 3px 0;
  3289. left: -1px;
  3290. position: relative;
  3291. border-width: 0 0 0 1px;
  3292. z-index: 2;
  3293. padding-left: 8px;
  3294. padding-right: 8px;
  3295. }
  3296. .ant-search-input .ant-search-btn > a:only-child {
  3297. color: currentColor;
  3298. }
  3299. .ant-search-input .ant-search-btn > a:only-child:after {
  3300. content: '';
  3301. position: absolute;
  3302. top: 0;
  3303. left: 0;
  3304. bottom: 0;
  3305. right: 0;
  3306. background: transparent;
  3307. }
  3308. .ant-search-input .ant-search-btn:hover,
  3309. .ant-search-input .ant-search-btn:focus {
  3310. color: #80b9ff;
  3311. background-color: #fff;
  3312. border-color: #80b9ff;
  3313. }
  3314. .ant-search-input .ant-search-btn:hover > a:only-child,
  3315. .ant-search-input .ant-search-btn:focus > a:only-child {
  3316. color: currentColor;
  3317. }
  3318. .ant-search-input .ant-search-btn:hover > a:only-child:after,
  3319. .ant-search-input .ant-search-btn:focus > a:only-child:after {
  3320. content: '';
  3321. position: absolute;
  3322. top: 0;
  3323. left: 0;
  3324. bottom: 0;
  3325. right: 0;
  3326. background: transparent;
  3327. }
  3328. .ant-search-input .ant-search-btn:active,
  3329. .ant-search-input .ant-search-btn.active {
  3330. color: #4386e7;
  3331. background-color: #fff;
  3332. border-color: #4386e7;
  3333. }
  3334. .ant-search-input .ant-search-btn:active > a:only-child,
  3335. .ant-search-input .ant-search-btn.active > a:only-child {
  3336. color: currentColor;
  3337. }
  3338. .ant-search-input .ant-search-btn:active > a:only-child:after,
  3339. .ant-search-input .ant-search-btn.active > a:only-child:after {
  3340. content: '';
  3341. position: absolute;
  3342. top: 0;
  3343. left: 0;
  3344. bottom: 0;
  3345. right: 0;
  3346. background: transparent;
  3347. }
  3348. .ant-search-input .ant-search-btn.disabled,
  3349. .ant-search-input .ant-search-btn[disabled],
  3350. .ant-search-input .ant-search-btn.disabled:hover,
  3351. .ant-search-input .ant-search-btn[disabled]:hover,
  3352. .ant-search-input .ant-search-btn.disabled:focus,
  3353. .ant-search-input .ant-search-btn[disabled]:focus,
  3354. .ant-search-input .ant-search-btn.disabled:active,
  3355. .ant-search-input .ant-search-btn[disabled]:active,
  3356. .ant-search-input .ant-search-btn.disabled.active,
  3357. .ant-search-input .ant-search-btn[disabled].active {
  3358. color: rgba(0, 0, 0, 0.25);
  3359. background-color: #f7f7f7;
  3360. border-color: #d9d9d9;
  3361. }
  3362. .ant-search-input .ant-search-btn.disabled > a:only-child,
  3363. .ant-search-input .ant-search-btn[disabled] > a:only-child,
  3364. .ant-search-input .ant-search-btn.disabled:hover > a:only-child,
  3365. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child,
  3366. .ant-search-input .ant-search-btn.disabled:focus > a:only-child,
  3367. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child,
  3368. .ant-search-input .ant-search-btn.disabled:active > a:only-child,
  3369. .ant-search-input .ant-search-btn[disabled]:active > a:only-child,
  3370. .ant-search-input .ant-search-btn.disabled.active > a:only-child,
  3371. .ant-search-input .ant-search-btn[disabled].active > a:only-child {
  3372. color: currentColor;
  3373. }
  3374. .ant-search-input .ant-search-btn.disabled > a:only-child:after,
  3375. .ant-search-input .ant-search-btn[disabled] > a:only-child:after,
  3376. .ant-search-input .ant-search-btn.disabled:hover > a:only-child:after,
  3377. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child:after,
  3378. .ant-search-input .ant-search-btn.disabled:focus > a:only-child:after,
  3379. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child:after,
  3380. .ant-search-input .ant-search-btn.disabled:active > a:only-child:after,
  3381. .ant-search-input .ant-search-btn[disabled]:active > a:only-child:after,
  3382. .ant-search-input .ant-search-btn.disabled.active > a:only-child:after,
  3383. .ant-search-input .ant-search-btn[disabled].active > a:only-child:after {
  3384. content: '';
  3385. position: absolute;
  3386. top: 0;
  3387. left: 0;
  3388. bottom: 0;
  3389. right: 0;
  3390. background: transparent;
  3391. }
  3392. .ant-search-input .ant-search-btn:hover,
  3393. .ant-search-input .ant-search-btn:focus,
  3394. .ant-search-input .ant-search-btn:active,
  3395. .ant-search-input .ant-search-btn.active {
  3396. background: #fff;
  3397. }
  3398. .ant-search-input .ant-search-btn:hover {
  3399. border-color: #d9d9d9;
  3400. }
  3401. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty,
  3402. .ant-search-input:hover .ant-search-btn-noempty {
  3403. color: #fff;
  3404. background-color: #58a3ff;
  3405. border-color: #58a3ff;
  3406. }
  3407. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child,
  3408. .ant-search-input:hover .ant-search-btn-noempty > a:only-child {
  3409. color: currentColor;
  3410. }
  3411. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child:after,
  3412. .ant-search-input:hover .ant-search-btn-noempty > a:only-child:after {
  3413. content: '';
  3414. position: absolute;
  3415. top: 0;
  3416. left: 0;
  3417. bottom: 0;
  3418. right: 0;
  3419. background: transparent;
  3420. }
  3421. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover,
  3422. .ant-search-input:hover .ant-search-btn-noempty:hover,
  3423. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus,
  3424. .ant-search-input:hover .ant-search-btn-noempty:focus {
  3425. color: #fff;
  3426. background-color: #80b9ff;
  3427. border-color: #80b9ff;
  3428. }
  3429. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child,
  3430. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child,
  3431. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child,
  3432. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child {
  3433. color: currentColor;
  3434. }
  3435. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child:after,
  3436. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child:after,
  3437. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child:after,
  3438. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child:after {
  3439. content: '';
  3440. position: absolute;
  3441. top: 0;
  3442. left: 0;
  3443. bottom: 0;
  3444. right: 0;
  3445. background: transparent;
  3446. }
  3447. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active,
  3448. .ant-search-input:hover .ant-search-btn-noempty:active,
  3449. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active,
  3450. .ant-search-input:hover .ant-search-btn-noempty.active {
  3451. color: #fff;
  3452. background-color: #4386e7;
  3453. border-color: #4386e7;
  3454. }
  3455. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child,
  3456. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child,
  3457. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child,
  3458. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child {
  3459. color: currentColor;
  3460. }
  3461. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child:after,
  3462. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child:after,
  3463. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child:after,
  3464. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child:after {
  3465. content: '';
  3466. position: absolute;
  3467. top: 0;
  3468. left: 0;
  3469. bottom: 0;
  3470. right: 0;
  3471. background: transparent;
  3472. }
  3473. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled,
  3474. .ant-search-input:hover .ant-search-btn-noempty.disabled,
  3475. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled],
  3476. .ant-search-input:hover .ant-search-btn-noempty[disabled],
  3477. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover,
  3478. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover,
  3479. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover,
  3480. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover,
  3481. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus,
  3482. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus,
  3483. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus,
  3484. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus,
  3485. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active,
  3486. .ant-search-input:hover .ant-search-btn-noempty.disabled:active,
  3487. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active,
  3488. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active,
  3489. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active,
  3490. .ant-search-input:hover .ant-search-btn-noempty.disabled.active,
  3491. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active,
  3492. .ant-search-input:hover .ant-search-btn-noempty[disabled].active {
  3493. color: rgba(0, 0, 0, 0.25);
  3494. background-color: #f7f7f7;
  3495. border-color: #d9d9d9;
  3496. }
  3497. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child,
  3498. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child,
  3499. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child,
  3500. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child,
  3501. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child,
  3502. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child,
  3503. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3504. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3505. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child,
  3506. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child,
  3507. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3508. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3509. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child,
  3510. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child,
  3511. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child,
  3512. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child,
  3513. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child,
  3514. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child,
  3515. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child,
  3516. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child {
  3517. color: currentColor;
  3518. }
  3519. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child:after,
  3520. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child:after,
  3521. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child:after,
  3522. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child:after,
  3523. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3524. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3525. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3526. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3527. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3528. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3529. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3530. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3531. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3532. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3533. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3534. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3535. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3536. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3537. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child:after,
  3538. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child:after {
  3539. content: '';
  3540. position: absolute;
  3541. top: 0;
  3542. left: 0;
  3543. bottom: 0;
  3544. right: 0;
  3545. background: transparent;
  3546. }
  3547. .ant-search-input .ant-select-combobox .ant-select-selection__rendered {
  3548. margin-right: 29px;
  3549. }
  3550. .ant-input {
  3551. position: relative;
  3552. display: inline-block;
  3553. padding: 4px 7px;
  3554. width: 100%;
  3555. height: 28px;
  3556. cursor: text;
  3557. font-size: 12px;
  3558. line-height: 1.5;
  3559. color: rgba(0, 0, 0, 0.65);
  3560. background-color: #fff;
  3561. background-image: none;
  3562. border: 1px solid #d9d9d9;
  3563. border-radius: 4px;
  3564. transition: all .3s;
  3565. }
  3566. .ant-input::-moz-placeholder {
  3567. color: #ccc;
  3568. opacity: 1;
  3569. }
  3570. .ant-input:-ms-input-placeholder {
  3571. color: #ccc;
  3572. }
  3573. .ant-input::-webkit-input-placeholder {
  3574. color: #ccc;
  3575. }
  3576. .ant-input:hover {
  3577. border-color: #80b9ff;
  3578. }
  3579. .ant-input:focus {
  3580. border-color: #80b9ff;
  3581. outline: 0;
  3582. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  3583. }
  3584. .ant-input[disabled] {
  3585. background-color: #f7f7f7;
  3586. opacity: 1;
  3587. cursor: not-allowed;
  3588. color: rgba(0, 0, 0, 0.25);
  3589. }
  3590. .ant-input[disabled]:hover {
  3591. border-color: #e2e2e2;
  3592. }
  3593. textarea.ant-input {
  3594. max-width: 100%;
  3595. height: auto;
  3596. vertical-align: bottom;
  3597. }
  3598. .ant-input-lg {
  3599. padding: 6px 7px;
  3600. height: 32px;
  3601. }
  3602. .ant-input-sm {
  3603. padding: 1px 7px;
  3604. height: 22px;
  3605. }
  3606. .ant-input-group {
  3607. position: relative;
  3608. display: table;
  3609. border-collapse: separate;
  3610. border-spacing: 0;
  3611. width: 100%;
  3612. }
  3613. .ant-input-group[class*="col-"] {
  3614. float: none;
  3615. padding-left: 0;
  3616. padding-right: 0;
  3617. }
  3618. .ant-input-group > [class*="col-"] {
  3619. padding-right: 8px;
  3620. }
  3621. .ant-input-group-addon,
  3622. .ant-input-group-wrap,
  3623. .ant-input-group > .ant-input {
  3624. display: table-cell;
  3625. }
  3626. .ant-input-group-addon:not(:first-child):not(:last-child),
  3627. .ant-input-group-wrap:not(:first-child):not(:last-child),
  3628. .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  3629. border-radius: 0;
  3630. }
  3631. .ant-input-group-addon,
  3632. .ant-input-group-wrap {
  3633. width: 1px;
  3634. white-space: nowrap;
  3635. vertical-align: middle;
  3636. }
  3637. .ant-input-group-wrap > * {
  3638. display: block !important;
  3639. }
  3640. .ant-input-group .ant-input {
  3641. position: relative;
  3642. z-index: 2;
  3643. float: left;
  3644. width: 100%;
  3645. margin-bottom: 0;
  3646. }
  3647. .ant-input-group-addon {
  3648. padding: 4px 7px;
  3649. font-size: 12px;
  3650. font-weight: normal;
  3651. line-height: 1;
  3652. color: rgba(0, 0, 0, 0.65);
  3653. text-align: center;
  3654. background-color: #eee;
  3655. border: 1px solid #d9d9d9;
  3656. border-radius: 4px;
  3657. position: relative;
  3658. transition: all .3s;
  3659. }
  3660. .ant-input-group-addon .ant-select {
  3661. margin: -5px -7px;
  3662. }
  3663. .ant-input-group-addon .ant-select .ant-select-selection {
  3664. background-color: inherit;
  3665. margin: -1px;
  3666. border: 1px solid transparent;
  3667. box-shadow: none;
  3668. }
  3669. .ant-input-group-addon .ant-select-open .ant-select-selection,
  3670. .ant-input-group-addon .ant-select-focused .ant-select-selection {
  3671. color: #58a3ff;
  3672. }
  3673. .ant-input-group-addon > i:only-child:after {
  3674. position: absolute;
  3675. content: '';
  3676. top: 0;
  3677. left: 0;
  3678. right: 0;
  3679. bottom: 0;
  3680. }
  3681. .ant-input-group > span > .ant-input:first-child,
  3682. .ant-input-group > .ant-input:first-child,
  3683. .ant-input-group-addon:first-child {
  3684. border-bottom-right-radius: 0;
  3685. border-top-right-radius: 0;
  3686. }
  3687. .ant-input-group > span > .ant-input:first-child .ant-select .ant-select-selection,
  3688. .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
  3689. .ant-input-group-addon:first-child .ant-select .ant-select-selection {
  3690. border-bottom-right-radius: 0;
  3691. border-top-right-radius: 0;
  3692. }
  3693. .ant-input-group > .ant-input-preSuffix-wrapper:not(:first-child) .ant-input {
  3694. border-bottom-left-radius: 0;
  3695. border-top-left-radius: 0;
  3696. }
  3697. .ant-input-group > .ant-input-preSuffix-wrapper:not(:last-child) .ant-input {
  3698. border-bottom-right-radius: 0;
  3699. border-top-right-radius: 0;
  3700. }
  3701. .ant-input-group-addon:first-child {
  3702. border-right: 0;
  3703. }
  3704. .ant-input-group-addon:last-child {
  3705. border-left: 0;
  3706. }
  3707. .ant-input-group > .ant-input:last-child,
  3708. .ant-input-group-addon:last-child {
  3709. border-bottom-left-radius: 0;
  3710. border-top-left-radius: 0;
  3711. }
  3712. .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
  3713. .ant-input-group-addon:last-child .ant-select .ant-select-selection {
  3714. border-bottom-left-radius: 0;
  3715. border-top-left-radius: 0;
  3716. }
  3717. .ant-input-group-lg .ant-input,
  3718. .ant-input-group-lg > .ant-input-group-addon {
  3719. padding: 6px 7px;
  3720. height: 32px;
  3721. }
  3722. .ant-input-group-sm .ant-input,
  3723. .ant-input-group-sm > .ant-input-group-addon {
  3724. padding: 1px 7px;
  3725. height: 22px;
  3726. }
  3727. .ant-input-group .ant-input-preSuffix-wrapper {
  3728. display: table-cell;
  3729. width: 100%;
  3730. float: left;
  3731. }
  3732. .ant-input-group.ant-input-group-compact > * {
  3733. border-radius: 0;
  3734. border-right-width: 0;
  3735. vertical-align: middle;
  3736. }
  3737. .ant-input-group.ant-input-group-compact .ant-input {
  3738. float: none;
  3739. z-index: auto;
  3740. }
  3741. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection,
  3742. .ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input {
  3743. border-radius: 0;
  3744. border-right-width: 0;
  3745. }
  3746. .ant-input-group.ant-input-group-compact > *:first-child,
  3747. .ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection,
  3748. .ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input {
  3749. border-top-left-radius: 4px;
  3750. border-bottom-left-radius: 4px;
  3751. }
  3752. .ant-input-group.ant-input-group-compact > *:last-child,
  3753. .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection,
  3754. .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input {
  3755. border-top-right-radius: 4px;
  3756. border-bottom-right-radius: 4px;
  3757. border-right-width: 1px;
  3758. }
  3759. .ant-input-preSuffix-wrapper {
  3760. position: relative;
  3761. display: inline-block;
  3762. width: 100%;
  3763. }
  3764. .ant-input-preSuffix-wrapper .ant-input {
  3765. z-index: 1;
  3766. }
  3767. .ant-input-preSuffix-wrapper:hover .ant-input {
  3768. border-color: #80b9ff;
  3769. }
  3770. .ant-input-preSuffix-wrapper .ant-input-prefix,
  3771. .ant-input-preSuffix-wrapper .ant-input-suffix {
  3772. position: absolute;
  3773. top: 50%;
  3774. transform: translateY(-50%);
  3775. z-index: 2;
  3776. line-height: 1.2;
  3777. }
  3778. .ant-input-preSuffix-wrapper .ant-input-prefix {
  3779. left: 7px;
  3780. }
  3781. .ant-input-preSuffix-wrapper .ant-input-suffix {
  3782. right: 7px;
  3783. }
  3784. .ant-input-preSuffix-wrapper .ant-input:not(:first-child) {
  3785. padding-left: 24px;
  3786. }
  3787. .ant-input-preSuffix-wrapper .ant-input:not(:last-child) {
  3788. padding-right: 24px;
  3789. }
  3790. .ant-message {
  3791. font-size: 12px;
  3792. position: fixed;
  3793. z-index: 1010;
  3794. width: 100%;
  3795. top: 16px;
  3796. left: 0;
  3797. pointer-events: none;
  3798. }
  3799. .ant-message-notice {
  3800. padding: 8px;
  3801. text-align: center;
  3802. }
  3803. .ant-message-notice:first-child {
  3804. margin-top: -8px;
  3805. }
  3806. .ant-message-notice-content {
  3807. padding: 8px 16px;
  3808. border-radius: 4px;
  3809. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  3810. background: #fff;
  3811. display: inline-block;
  3812. pointer-events: all;
  3813. }
  3814. .ant-message-success .anticon {
  3815. color: #00a854;
  3816. }
  3817. .ant-message-error .anticon {
  3818. color: #f04134;
  3819. }
  3820. .ant-message-warning .anticon {
  3821. color: #ffbf00;
  3822. }
  3823. .ant-message-info .anticon,
  3824. .ant-message-loading .anticon {
  3825. color: #58a3ff;
  3826. }
  3827. .ant-message .anticon {
  3828. margin-right: 8px;
  3829. font-size: 14px;
  3830. top: 1px;
  3831. position: relative;
  3832. }
  3833. .ant-message-notice.move-up-leave.move-up-leave-active {
  3834. animation-name: MessageMoveOut;
  3835. overflow: hidden;
  3836. animation-duration: .3s;
  3837. }
  3838. @keyframes MessageMoveOut {
  3839. 0% {
  3840. opacity: 1;
  3841. max-height: 150px;
  3842. padding: 8px;
  3843. }
  3844. 100% {
  3845. opacity: 0;
  3846. max-height: 0;
  3847. padding: 0;
  3848. }
  3849. }
  3850. legend {
  3851. display: block;
  3852. width: 100%;
  3853. padding: 0;
  3854. margin-bottom: 20px;
  3855. font-size: 14px;
  3856. line-height: inherit;
  3857. color: rgba(0, 0, 0, 0.43);
  3858. border: 0;
  3859. border-bottom: 1px solid #d9d9d9;
  3860. }
  3861. label {
  3862. font-size: 12px;
  3863. }
  3864. input[type="search"] {
  3865. box-sizing: border-box;
  3866. }
  3867. input[type="radio"],
  3868. input[type="checkbox"] {
  3869. line-height: normal;
  3870. }
  3871. input[type="file"] {
  3872. display: block;
  3873. }
  3874. input[type="range"] {
  3875. display: block;
  3876. width: 100%;
  3877. }
  3878. select[multiple],
  3879. select[size] {
  3880. height: auto;
  3881. }
  3882. input[type="file"]:focus,
  3883. input[type="radio"]:focus,
  3884. input[type="checkbox"]:focus {
  3885. outline: thin dotted;
  3886. outline: 5px auto -webkit-focus-ring-color;
  3887. outline-offset: -2px;
  3888. }
  3889. output {
  3890. display: block;
  3891. padding-top: 15px;
  3892. font-size: 12px;
  3893. line-height: 1.5;
  3894. color: rgba(0, 0, 0, 0.65);
  3895. }
  3896. label {
  3897. position: relative;
  3898. }
  3899. label > .anticon {
  3900. vertical-align: top;
  3901. font-size: 12px;
  3902. }
  3903. .ant-form-item-required:before {
  3904. display: inline-block;
  3905. margin-right: 4px;
  3906. content: "*";
  3907. font-family: SimSun;
  3908. line-height: 1;
  3909. font-size: 12px;
  3910. color: #f04134;
  3911. }
  3912. .ant-form-hide-required-mark .ant-form-item-required:before {
  3913. display: none;
  3914. }
  3915. input[type="radio"][disabled],
  3916. input[type="checkbox"][disabled],
  3917. input[type="radio"].disabled,
  3918. input[type="checkbox"].disabled {
  3919. cursor: not-allowed;
  3920. }
  3921. .ant-radio-inline.disabled,
  3922. .ant-radio-vertical.disabled,
  3923. .ant-checkbox-inline.disabled,
  3924. .ant-checkbox-vertical.disabled {
  3925. cursor: not-allowed;
  3926. }
  3927. .ant-radio.disabled label,
  3928. .ant-checkbox.disabled label {
  3929. cursor: not-allowed;
  3930. }
  3931. .ant-form-item {
  3932. font-size: 12px;
  3933. margin-bottom: 24px;
  3934. color: rgba(0, 0, 0, 0.65);
  3935. vertical-align: top;
  3936. }
  3937. .ant-form-item > .ant-form-item,
  3938. .ant-form-item :not(.ant-form) > .ant-form-item {
  3939. margin-bottom: -24px;
  3940. }
  3941. .ant-form-item-control {
  3942. line-height: 32px;
  3943. position: relative;
  3944. zoom: 1;
  3945. }
  3946. .ant-form-item-control:before,
  3947. .ant-form-item-control:after {
  3948. content: " ";
  3949. display: table;
  3950. }
  3951. .ant-form-item-control:after {
  3952. clear: both;
  3953. visibility: hidden;
  3954. font-size: 0;
  3955. height: 0;
  3956. }
  3957. .ant-form-item-with-help {
  3958. margin-bottom: 6px;
  3959. }
  3960. .ant-form-item-label {
  3961. text-align: right;
  3962. vertical-align: middle;
  3963. line-height: 32px;
  3964. display: inline-block;
  3965. overflow: hidden;
  3966. text-overflow: ellipsis;
  3967. white-space: nowrap;
  3968. }
  3969. .ant-form-item-label label {
  3970. color: rgba(0, 0, 0, 0.65);
  3971. }
  3972. .ant-form-item-label label:after {
  3973. content: ":";
  3974. margin: 0 8px 0 2px;
  3975. position: relative;
  3976. top: -0.5px;
  3977. }
  3978. .ant-form-item .ant-switch {
  3979. margin: 4px 0;
  3980. }
  3981. .ant-form-item-no-colon .ant-form-item-label label:after {
  3982. content: " ";
  3983. }
  3984. .ant-form-explain {
  3985. line-height: 1.5;
  3986. }
  3987. .ant-form-explain,
  3988. .ant-form-extra {
  3989. color: rgba(0, 0, 0, 0.43);
  3990. }
  3991. .ant-form-text {
  3992. display: inline-block;
  3993. padding-right: 8px;
  3994. }
  3995. .ant-form-split {
  3996. display: block;
  3997. text-align: center;
  3998. }
  3999. form .has-feedback .ant-input {
  4000. padding-right: 24px;
  4001. }
  4002. form .has-feedback .ant-select-arrow,
  4003. form .has-feedback .ant-select-selection__clear {
  4004. right: 28px;
  4005. }
  4006. form .has-feedback .ant-select-selection-selected-value {
  4007. padding-right: 42px;
  4008. }
  4009. form .has-feedback .ant-cascader-picker-arrow {
  4010. padding-right: 36px;
  4011. }
  4012. form .has-feedback .ant-cascader-picker-clear {
  4013. right: 28px;
  4014. }
  4015. form .has-feedback .ant-calendar-picker-icon,
  4016. form .has-feedback .ant-calendar-picker-clear {
  4017. right: 28px;
  4018. }
  4019. form textarea.ant-input {
  4020. height: auto;
  4021. }
  4022. form .ant-upload {
  4023. background: transparent;
  4024. }
  4025. form input[type="radio"],
  4026. form input[type="checkbox"] {
  4027. width: 14px;
  4028. height: 14px;
  4029. }
  4030. form .ant-radio-inline,
  4031. form .ant-checkbox-inline {
  4032. display: inline-block;
  4033. vertical-align: middle;
  4034. font-weight: normal;
  4035. cursor: pointer;
  4036. margin-left: 8px;
  4037. }
  4038. form .ant-radio-inline:first-child,
  4039. form .ant-checkbox-inline:first-child {
  4040. margin-left: 0;
  4041. }
  4042. form .ant-checkbox-vertical,
  4043. form .ant-radio-vertical {
  4044. display: block;
  4045. }
  4046. form .ant-checkbox-vertical + .ant-checkbox-vertical,
  4047. form .ant-radio-vertical + .ant-radio-vertical {
  4048. margin-left: 0;
  4049. }
  4050. form .ant-input-number {
  4051. margin-top: -1px;
  4052. margin-right: 8px;
  4053. }
  4054. form .ant-select,
  4055. form .ant-cascader-picker {
  4056. width: 100%;
  4057. }
  4058. .ant-input-group-wrap .ant-select-selection {
  4059. border-bottom-left-radius: 0;
  4060. border-top-left-radius: 0;
  4061. }
  4062. .ant-input-group-wrap .ant-select-selection:hover {
  4063. border-color: #d9d9d9;
  4064. }
  4065. .ant-input-group-wrap .ant-select-selection--single {
  4066. margin-left: -1px;
  4067. height: 32px;
  4068. background-color: #eee;
  4069. }
  4070. .ant-input-group-wrap .ant-select-selection--single .ant-select-selection__rendered {
  4071. padding-left: 8px;
  4072. padding-right: 25px;
  4073. line-height: 30px;
  4074. }
  4075. .ant-input-group-wrap .ant-select-open .ant-select-selection {
  4076. border-color: #d9d9d9;
  4077. box-shadow: none;
  4078. }
  4079. .ant-form-vertical .ant-form-item-label,
  4080. .ant-col-24.ant-form-item-label {
  4081. padding: 0 0 8px;
  4082. display: block;
  4083. text-align: left;
  4084. }
  4085. .ant-form-vertical .ant-form-item-label label:after,
  4086. .ant-col-24.ant-form-item-label label:after {
  4087. content: '';
  4088. }
  4089. .ant-form-inline .ant-form-item {
  4090. display: inline-block;
  4091. margin-right: 10px;
  4092. margin-bottom: 0;
  4093. }
  4094. .ant-form-inline .ant-form-item-with-help {
  4095. margin-bottom: 24px;
  4096. }
  4097. .ant-form-inline .ant-form-item > div {
  4098. display: inline-block;
  4099. vertical-align: middle;
  4100. }
  4101. .ant-form-inline .ant-form-text {
  4102. display: inline-block;
  4103. }
  4104. .ant-form-inline .has-feedback {
  4105. display: inline-block;
  4106. }
  4107. .ant-form-inline .ant-form-explain {
  4108. position: absolute;
  4109. }
  4110. .has-success.has-feedback:after,
  4111. .has-warning.has-feedback:after,
  4112. .has-error.has-feedback:after,
  4113. .is-validating.has-feedback:after {
  4114. position: absolute;
  4115. top: 0;
  4116. right: 0;
  4117. visibility: visible;
  4118. pointer-events: none;
  4119. width: 32px;
  4120. height: 32px;
  4121. line-height: 32px;
  4122. text-align: center;
  4123. font-size: 14px;
  4124. animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  4125. font-family: 'anticon';
  4126. text-rendering: optimizeLegibility;
  4127. -webkit-font-smoothing: antialiased;
  4128. -moz-osx-font-smoothing: grayscale;
  4129. content: "";
  4130. }
  4131. .has-success.has-feedback:after {
  4132. animation-name: diffZoomIn1 !important;
  4133. }
  4134. .has-error.has-feedback:after {
  4135. animation-name: diffZoomIn2 !important;
  4136. }
  4137. .has-warning.has-feedback:after {
  4138. animation-name: diffZoomIn3 !important;
  4139. }
  4140. .has-success.has-feedback:after {
  4141. content: '\E630';
  4142. color: #00a854;
  4143. }
  4144. .has-warning .ant-form-explain,
  4145. .has-warning .ant-form-split {
  4146. color: #ffbf00;
  4147. }
  4148. .has-warning .ant-input,
  4149. .has-warning .ant-input:hover {
  4150. border-color: #ffbf00;
  4151. }
  4152. .has-warning .ant-input:focus {
  4153. border-color: #ffce3d;
  4154. outline: 0;
  4155. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4156. }
  4157. .has-warning .ant-input:not([disabled]):hover {
  4158. border-color: #ffbf00;
  4159. }
  4160. .has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
  4161. border-color: #ffce3d;
  4162. outline: 0;
  4163. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4164. }
  4165. .has-warning .ant-input-group-addon {
  4166. color: #ffbf00;
  4167. border-color: #ffbf00;
  4168. background-color: #fff;
  4169. }
  4170. .has-warning .has-feedback {
  4171. color: #ffbf00;
  4172. }
  4173. .has-warning.has-feedback:after {
  4174. content: '\E62C';
  4175. color: #ffbf00;
  4176. }
  4177. .has-warning .ant-select-selection {
  4178. border-color: #ffbf00;
  4179. }
  4180. .has-warning .ant-select-open .ant-select-selection,
  4181. .has-warning .ant-select-focused .ant-select-selection {
  4182. border-color: #ffce3d;
  4183. outline: 0;
  4184. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4185. }
  4186. .has-warning .ant-calendar-picker-icon:after,
  4187. .has-warning .ant-picker-icon:after,
  4188. .has-warning .ant-select-arrow,
  4189. .has-warning .ant-cascader-picker-arrow {
  4190. color: #ffbf00;
  4191. }
  4192. .has-warning .ant-input-number,
  4193. .has-warning .ant-time-picker-input {
  4194. border-color: #ffbf00;
  4195. }
  4196. .has-warning .ant-input-number-focused,
  4197. .has-warning .ant-time-picker-input-focused,
  4198. .has-warning .ant-input-number:focus,
  4199. .has-warning .ant-time-picker-input:focus {
  4200. border-color: #ffce3d;
  4201. outline: 0;
  4202. box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.2);
  4203. }
  4204. .has-warning .ant-input-number:not([disabled]):hover,
  4205. .has-warning .ant-time-picker-input:not([disabled]):hover {
  4206. border-color: #ffbf00;
  4207. }
  4208. .has-error .ant-form-explain,
  4209. .has-error .ant-form-split {
  4210. color: #f04134;
  4211. }
  4212. .has-error .ant-input,
  4213. .has-error .ant-input:hover {
  4214. border-color: #f04134;
  4215. }
  4216. .has-error .ant-input:focus {
  4217. border-color: #f46e65;
  4218. outline: 0;
  4219. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4220. }
  4221. .has-error .ant-input:not([disabled]):hover {
  4222. border-color: #f04134;
  4223. }
  4224. .has-error .ant-calendar-picker-open .ant-calendar-picker-input {
  4225. border-color: #f46e65;
  4226. outline: 0;
  4227. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4228. }
  4229. .has-error .ant-input-group-addon {
  4230. color: #f04134;
  4231. border-color: #f04134;
  4232. background-color: #fff;
  4233. }
  4234. .has-error .has-feedback {
  4235. color: #f04134;
  4236. }
  4237. .has-error.has-feedback:after {
  4238. content: '\E62E';
  4239. color: #f04134;
  4240. }
  4241. .has-error .ant-select-selection {
  4242. border-color: #f04134;
  4243. }
  4244. .has-error .ant-select-open .ant-select-selection,
  4245. .has-error .ant-select-focused .ant-select-selection {
  4246. border-color: #f46e65;
  4247. outline: 0;
  4248. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4249. }
  4250. .has-error .ant-calendar-picker-icon:after,
  4251. .has-error .ant-picker-icon:after,
  4252. .has-error .ant-select-arrow,
  4253. .has-error .ant-cascader-picker-arrow {
  4254. color: #f04134;
  4255. }
  4256. .has-error .ant-input-number,
  4257. .has-error .ant-time-picker-input {
  4258. border-color: #f04134;
  4259. }
  4260. .has-error .ant-input-number-focused,
  4261. .has-error .ant-time-picker-input-focused,
  4262. .has-error .ant-input-number:focus,
  4263. .has-error .ant-time-picker-input:focus {
  4264. border-color: #f46e65;
  4265. outline: 0;
  4266. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4267. }
  4268. .has-error .ant-input-number:not([disabled]):hover,
  4269. .has-error .ant-time-picker-input:not([disabled]):hover {
  4270. border-color: #f04134;
  4271. }
  4272. .has-error .ant-mention-wrapper .ant-mention-editor,
  4273. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover {
  4274. border-color: #f04134;
  4275. }
  4276. .has-error .ant-mention-wrapper.active .ant-mention-editor,
  4277. .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
  4278. border-color: #f46e65;
  4279. outline: 0;
  4280. box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  4281. }
  4282. .is-validating.has-feedback:after {
  4283. display: inline-block;
  4284. animation: loadingCircle 1s infinite linear;
  4285. content: "\E64D";
  4286. color: #58a3ff;
  4287. }
  4288. .ant-advanced-search-form .ant-form-item {
  4289. margin-bottom: 16px;
  4290. }
  4291. .ant-advanced-search-form .ant-input,
  4292. .ant-advanced-search-form .ant-input-group .ant-input,
  4293. .ant-advanced-search-form .ant-input-group .ant-input-group-addon {
  4294. height: 28px;
  4295. }
  4296. @keyframes diffZoomIn1 {
  4297. 0% {
  4298. transform: scale(0);
  4299. }
  4300. 100% {
  4301. transform: scale(1);
  4302. }
  4303. }
  4304. @keyframes diffZoomIn2 {
  4305. 0% {
  4306. transform: scale(0);
  4307. }
  4308. 100% {
  4309. transform: scale(1);
  4310. }
  4311. }
  4312. @keyframes diffZoomIn3 {
  4313. 0% {
  4314. transform: scale(0);
  4315. }
  4316. 100% {
  4317. transform: scale(1);
  4318. }
  4319. }
  4320. .ant-row {
  4321. position: relative;
  4322. margin-left: 0;
  4323. margin-right: 0;
  4324. height: auto;
  4325. zoom: 1;
  4326. display: block;
  4327. }
  4328. .ant-row:before,
  4329. .ant-row:after {
  4330. content: " ";
  4331. display: table;
  4332. }
  4333. .ant-row:after {
  4334. clear: both;
  4335. visibility: hidden;
  4336. font-size: 0;
  4337. height: 0;
  4338. }
  4339. .ant-row-flex {
  4340. display: flex;
  4341. flex-direction: row;
  4342. flex-wrap: wrap;
  4343. }
  4344. .ant-row-flex:before,
  4345. .ant-row-flex:after {
  4346. display: flex;
  4347. }
  4348. .ant-row-flex-start {
  4349. justify-content: flex-start;
  4350. }
  4351. .ant-row-flex-center {
  4352. justify-content: center;
  4353. }
  4354. .ant-row-flex-end {
  4355. justify-content: flex-end;
  4356. }
  4357. .ant-row-flex-space-between {
  4358. justify-content: space-between;
  4359. }
  4360. .ant-row-flex-space-around {
  4361. justify-content: space-around;
  4362. }
  4363. .ant-row-flex-top {
  4364. align-items: flex-start;
  4365. }
  4366. .ant-row-flex-middle {
  4367. align-items: center;
  4368. }
  4369. .ant-row-flex-bottom {
  4370. align-items: flex-end;
  4371. }
  4372. .ant-col {
  4373. position: relative;
  4374. display: block;
  4375. }
  4376. .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 {
  4377. position: relative;
  4378. min-height: 1px;
  4379. padding-left: 0;
  4380. padding-right: 0;
  4381. }
  4382. .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 {
  4383. float: left;
  4384. flex: 0 0 auto;
  4385. }
  4386. .ant-col-24 {
  4387. display: block;
  4388. width: 100%;
  4389. }
  4390. .ant-col-push-24 {
  4391. left: 100%;
  4392. }
  4393. .ant-col-pull-24 {
  4394. right: 100%;
  4395. }
  4396. .ant-col-offset-24 {
  4397. margin-left: 100%;
  4398. }
  4399. .ant-col-order-24 {
  4400. order: 24;
  4401. }
  4402. .ant-col-23 {
  4403. display: block;
  4404. width: 95.83333333%;
  4405. }
  4406. .ant-col-push-23 {
  4407. left: 95.83333333%;
  4408. }
  4409. .ant-col-pull-23 {
  4410. right: 95.83333333%;
  4411. }
  4412. .ant-col-offset-23 {
  4413. margin-left: 95.83333333%;
  4414. }
  4415. .ant-col-order-23 {
  4416. order: 23;
  4417. }
  4418. .ant-col-22 {
  4419. display: block;
  4420. width: 91.66666667%;
  4421. }
  4422. .ant-col-push-22 {
  4423. left: 91.66666667%;
  4424. }
  4425. .ant-col-pull-22 {
  4426. right: 91.66666667%;
  4427. }
  4428. .ant-col-offset-22 {
  4429. margin-left: 91.66666667%;
  4430. }
  4431. .ant-col-order-22 {
  4432. order: 22;
  4433. }
  4434. .ant-col-21 {
  4435. display: block;
  4436. width: 87.5%;
  4437. }
  4438. .ant-col-push-21 {
  4439. left: 87.5%;
  4440. }
  4441. .ant-col-pull-21 {
  4442. right: 87.5%;
  4443. }
  4444. .ant-col-offset-21 {
  4445. margin-left: 87.5%;
  4446. }
  4447. .ant-col-order-21 {
  4448. order: 21;
  4449. }
  4450. .ant-col-20 {
  4451. display: block;
  4452. width: 83.33333333%;
  4453. }
  4454. .ant-col-push-20 {
  4455. left: 83.33333333%;
  4456. }
  4457. .ant-col-pull-20 {
  4458. right: 83.33333333%;
  4459. }
  4460. .ant-col-offset-20 {
  4461. margin-left: 83.33333333%;
  4462. }
  4463. .ant-col-order-20 {
  4464. order: 20;
  4465. }
  4466. .ant-col-19 {
  4467. display: block;
  4468. width: 79.16666667%;
  4469. }
  4470. .ant-col-push-19 {
  4471. left: 79.16666667%;
  4472. }
  4473. .ant-col-pull-19 {
  4474. right: 79.16666667%;
  4475. }
  4476. .ant-col-offset-19 {
  4477. margin-left: 79.16666667%;
  4478. }
  4479. .ant-col-order-19 {
  4480. order: 19;
  4481. }
  4482. .ant-col-18 {
  4483. display: block;
  4484. width: 75%;
  4485. }
  4486. .ant-col-push-18 {
  4487. left: 75%;
  4488. }
  4489. .ant-col-pull-18 {
  4490. right: 75%;
  4491. }
  4492. .ant-col-offset-18 {
  4493. margin-left: 75%;
  4494. }
  4495. .ant-col-order-18 {
  4496. order: 18;
  4497. }
  4498. .ant-col-17 {
  4499. display: block;
  4500. width: 70.83333333%;
  4501. }
  4502. .ant-col-push-17 {
  4503. left: 70.83333333%;
  4504. }
  4505. .ant-col-pull-17 {
  4506. right: 70.83333333%;
  4507. }
  4508. .ant-col-offset-17 {
  4509. margin-left: 70.83333333%;
  4510. }
  4511. .ant-col-order-17 {
  4512. order: 17;
  4513. }
  4514. .ant-col-16 {
  4515. display: block;
  4516. width: 66.66666667%;
  4517. }
  4518. .ant-col-push-16 {
  4519. left: 66.66666667%;
  4520. }
  4521. .ant-col-pull-16 {
  4522. right: 66.66666667%;
  4523. }
  4524. .ant-col-offset-16 {
  4525. margin-left: 66.66666667%;
  4526. }
  4527. .ant-col-order-16 {
  4528. order: 16;
  4529. }
  4530. .ant-col-15 {
  4531. display: block;
  4532. width: 62.5%;
  4533. }
  4534. .ant-col-push-15 {
  4535. left: 62.5%;
  4536. }
  4537. .ant-col-pull-15 {
  4538. right: 62.5%;
  4539. }
  4540. .ant-col-offset-15 {
  4541. margin-left: 62.5%;
  4542. }
  4543. .ant-col-order-15 {
  4544. order: 15;
  4545. }
  4546. .ant-col-14 {
  4547. display: block;
  4548. width: 58.33333333%;
  4549. }
  4550. .ant-col-push-14 {
  4551. left: 58.33333333%;
  4552. }
  4553. .ant-col-pull-14 {
  4554. right: 58.33333333%;
  4555. }
  4556. .ant-col-offset-14 {
  4557. margin-left: 58.33333333%;
  4558. }
  4559. .ant-col-order-14 {
  4560. order: 14;
  4561. }
  4562. .ant-col-13 {
  4563. display: block;
  4564. width: 54.16666667%;
  4565. }
  4566. .ant-col-push-13 {
  4567. left: 54.16666667%;
  4568. }
  4569. .ant-col-pull-13 {
  4570. right: 54.16666667%;
  4571. }
  4572. .ant-col-offset-13 {
  4573. margin-left: 54.16666667%;
  4574. }
  4575. .ant-col-order-13 {
  4576. order: 13;
  4577. }
  4578. .ant-col-12 {
  4579. display: block;
  4580. width: 50%;
  4581. }
  4582. .ant-col-push-12 {
  4583. left: 50%;
  4584. }
  4585. .ant-col-pull-12 {
  4586. right: 50%;
  4587. }
  4588. .ant-col-offset-12 {
  4589. margin-left: 50%;
  4590. }
  4591. .ant-col-order-12 {
  4592. order: 12;
  4593. }
  4594. .ant-col-11 {
  4595. display: block;
  4596. width: 45.83333333%;
  4597. }
  4598. .ant-col-push-11 {
  4599. left: 45.83333333%;
  4600. }
  4601. .ant-col-pull-11 {
  4602. right: 45.83333333%;
  4603. }
  4604. .ant-col-offset-11 {
  4605. margin-left: 45.83333333%;
  4606. }
  4607. .ant-col-order-11 {
  4608. order: 11;
  4609. }
  4610. .ant-col-10 {
  4611. display: block;
  4612. width: 41.66666667%;
  4613. }
  4614. .ant-col-push-10 {
  4615. left: 41.66666667%;
  4616. }
  4617. .ant-col-pull-10 {
  4618. right: 41.66666667%;
  4619. }
  4620. .ant-col-offset-10 {
  4621. margin-left: 41.66666667%;
  4622. }
  4623. .ant-col-order-10 {
  4624. order: 10;
  4625. }
  4626. .ant-col-9 {
  4627. display: block;
  4628. width: 37.5%;
  4629. }
  4630. .ant-col-push-9 {
  4631. left: 37.5%;
  4632. }
  4633. .ant-col-pull-9 {
  4634. right: 37.5%;
  4635. }
  4636. .ant-col-offset-9 {
  4637. margin-left: 37.5%;
  4638. }
  4639. .ant-col-order-9 {
  4640. order: 9;
  4641. }
  4642. .ant-col-8 {
  4643. display: block;
  4644. width: 33.33333333%;
  4645. }
  4646. .ant-col-push-8 {
  4647. left: 33.33333333%;
  4648. }
  4649. .ant-col-pull-8 {
  4650. right: 33.33333333%;
  4651. }
  4652. .ant-col-offset-8 {
  4653. margin-left: 33.33333333%;
  4654. }
  4655. .ant-col-order-8 {
  4656. order: 8;
  4657. }
  4658. .ant-col-7 {
  4659. display: block;
  4660. width: 29.16666667%;
  4661. }
  4662. .ant-col-push-7 {
  4663. left: 29.16666667%;
  4664. }
  4665. .ant-col-pull-7 {
  4666. right: 29.16666667%;
  4667. }
  4668. .ant-col-offset-7 {
  4669. margin-left: 29.16666667%;
  4670. }
  4671. .ant-col-order-7 {
  4672. order: 7;
  4673. }
  4674. .ant-col-6 {
  4675. display: block;
  4676. width: 25%;
  4677. }
  4678. .ant-col-push-6 {
  4679. left: 25%;
  4680. }
  4681. .ant-col-pull-6 {
  4682. right: 25%;
  4683. }
  4684. .ant-col-offset-6 {
  4685. margin-left: 25%;
  4686. }
  4687. .ant-col-order-6 {
  4688. order: 6;
  4689. }
  4690. .ant-col-5 {
  4691. display: block;
  4692. width: 20.83333333%;
  4693. }
  4694. .ant-col-push-5 {
  4695. left: 20.83333333%;
  4696. }
  4697. .ant-col-pull-5 {
  4698. right: 20.83333333%;
  4699. }
  4700. .ant-col-offset-5 {
  4701. margin-left: 20.83333333%;
  4702. }
  4703. .ant-col-order-5 {
  4704. order: 5;
  4705. }
  4706. .ant-col-4 {
  4707. display: block;
  4708. width: 16.66666667%;
  4709. }
  4710. .ant-col-push-4 {
  4711. left: 16.66666667%;
  4712. }
  4713. .ant-col-pull-4 {
  4714. right: 16.66666667%;
  4715. }
  4716. .ant-col-offset-4 {
  4717. margin-left: 16.66666667%;
  4718. }
  4719. .ant-col-order-4 {
  4720. order: 4;
  4721. }
  4722. .ant-col-3 {
  4723. display: block;
  4724. width: 12.5%;
  4725. }
  4726. .ant-col-push-3 {
  4727. left: 12.5%;
  4728. }
  4729. .ant-col-pull-3 {
  4730. right: 12.5%;
  4731. }
  4732. .ant-col-offset-3 {
  4733. margin-left: 12.5%;
  4734. }
  4735. .ant-col-order-3 {
  4736. order: 3;
  4737. }
  4738. .ant-col-2 {
  4739. display: block;
  4740. width: 8.33333333%;
  4741. }
  4742. .ant-col-push-2 {
  4743. left: 8.33333333%;
  4744. }
  4745. .ant-col-pull-2 {
  4746. right: 8.33333333%;
  4747. }
  4748. .ant-col-offset-2 {
  4749. margin-left: 8.33333333%;
  4750. }
  4751. .ant-col-order-2 {
  4752. order: 2;
  4753. }
  4754. .ant-col-1 {
  4755. display: block;
  4756. width: 4.16666667%;
  4757. }
  4758. .ant-col-push-1 {
  4759. left: 4.16666667%;
  4760. }
  4761. .ant-col-pull-1 {
  4762. right: 4.16666667%;
  4763. }
  4764. .ant-col-offset-1 {
  4765. margin-left: 4.16666667%;
  4766. }
  4767. .ant-col-order-1 {
  4768. order: 1;
  4769. }
  4770. .ant-col-0 {
  4771. display: none;
  4772. }
  4773. .ant-col-push-0 {
  4774. left: auto;
  4775. }
  4776. .ant-col-pull-0 {
  4777. right: auto;
  4778. }
  4779. .ant-col-push-0 {
  4780. left: auto;
  4781. }
  4782. .ant-col-pull-0 {
  4783. right: auto;
  4784. }
  4785. .ant-col-offset-0 {
  4786. margin-left: 0;
  4787. }
  4788. .ant-col-order-0 {
  4789. order: 0;
  4790. }
  4791. .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 {
  4792. float: left;
  4793. flex: 0 0 auto;
  4794. }
  4795. .ant-col-xs-24 {
  4796. display: block;
  4797. width: 100%;
  4798. }
  4799. .ant-col-xs-push-24 {
  4800. left: 100%;
  4801. }
  4802. .ant-col-xs-pull-24 {
  4803. right: 100%;
  4804. }
  4805. .ant-col-xs-offset-24 {
  4806. margin-left: 100%;
  4807. }
  4808. .ant-col-xs-order-24 {
  4809. order: 24;
  4810. }
  4811. .ant-col-xs-23 {
  4812. display: block;
  4813. width: 95.83333333%;
  4814. }
  4815. .ant-col-xs-push-23 {
  4816. left: 95.83333333%;
  4817. }
  4818. .ant-col-xs-pull-23 {
  4819. right: 95.83333333%;
  4820. }
  4821. .ant-col-xs-offset-23 {
  4822. margin-left: 95.83333333%;
  4823. }
  4824. .ant-col-xs-order-23 {
  4825. order: 23;
  4826. }
  4827. .ant-col-xs-22 {
  4828. display: block;
  4829. width: 91.66666667%;
  4830. }
  4831. .ant-col-xs-push-22 {
  4832. left: 91.66666667%;
  4833. }
  4834. .ant-col-xs-pull-22 {
  4835. right: 91.66666667%;
  4836. }
  4837. .ant-col-xs-offset-22 {
  4838. margin-left: 91.66666667%;
  4839. }
  4840. .ant-col-xs-order-22 {
  4841. order: 22;
  4842. }
  4843. .ant-col-xs-21 {
  4844. display: block;
  4845. width: 87.5%;
  4846. }
  4847. .ant-col-xs-push-21 {
  4848. left: 87.5%;
  4849. }
  4850. .ant-col-xs-pull-21 {
  4851. right: 87.5%;
  4852. }
  4853. .ant-col-xs-offset-21 {
  4854. margin-left: 87.5%;
  4855. }
  4856. .ant-col-xs-order-21 {
  4857. order: 21;
  4858. }
  4859. .ant-col-xs-20 {
  4860. display: block;
  4861. width: 83.33333333%;
  4862. }
  4863. .ant-col-xs-push-20 {
  4864. left: 83.33333333%;
  4865. }
  4866. .ant-col-xs-pull-20 {
  4867. right: 83.33333333%;
  4868. }
  4869. .ant-col-xs-offset-20 {
  4870. margin-left: 83.33333333%;
  4871. }
  4872. .ant-col-xs-order-20 {
  4873. order: 20;
  4874. }
  4875. .ant-col-xs-19 {
  4876. display: block;
  4877. width: 79.16666667%;
  4878. }
  4879. .ant-col-xs-push-19 {
  4880. left: 79.16666667%;
  4881. }
  4882. .ant-col-xs-pull-19 {
  4883. right: 79.16666667%;
  4884. }
  4885. .ant-col-xs-offset-19 {
  4886. margin-left: 79.16666667%;
  4887. }
  4888. .ant-col-xs-order-19 {
  4889. order: 19;
  4890. }
  4891. .ant-col-xs-18 {
  4892. display: block;
  4893. width: 75%;
  4894. }
  4895. .ant-col-xs-push-18 {
  4896. left: 75%;
  4897. }
  4898. .ant-col-xs-pull-18 {
  4899. right: 75%;
  4900. }
  4901. .ant-col-xs-offset-18 {
  4902. margin-left: 75%;
  4903. }
  4904. .ant-col-xs-order-18 {
  4905. order: 18;
  4906. }
  4907. .ant-col-xs-17 {
  4908. display: block;
  4909. width: 70.83333333%;
  4910. }
  4911. .ant-col-xs-push-17 {
  4912. left: 70.83333333%;
  4913. }
  4914. .ant-col-xs-pull-17 {
  4915. right: 70.83333333%;
  4916. }
  4917. .ant-col-xs-offset-17 {
  4918. margin-left: 70.83333333%;
  4919. }
  4920. .ant-col-xs-order-17 {
  4921. order: 17;
  4922. }
  4923. .ant-col-xs-16 {
  4924. display: block;
  4925. width: 66.66666667%;
  4926. }
  4927. .ant-col-xs-push-16 {
  4928. left: 66.66666667%;
  4929. }
  4930. .ant-col-xs-pull-16 {
  4931. right: 66.66666667%;
  4932. }
  4933. .ant-col-xs-offset-16 {
  4934. margin-left: 66.66666667%;
  4935. }
  4936. .ant-col-xs-order-16 {
  4937. order: 16;
  4938. }
  4939. .ant-col-xs-15 {
  4940. display: block;
  4941. width: 62.5%;
  4942. }
  4943. .ant-col-xs-push-15 {
  4944. left: 62.5%;
  4945. }
  4946. .ant-col-xs-pull-15 {
  4947. right: 62.5%;
  4948. }
  4949. .ant-col-xs-offset-15 {
  4950. margin-left: 62.5%;
  4951. }
  4952. .ant-col-xs-order-15 {
  4953. order: 15;
  4954. }
  4955. .ant-col-xs-14 {
  4956. display: block;
  4957. width: 58.33333333%;
  4958. }
  4959. .ant-col-xs-push-14 {
  4960. left: 58.33333333%;
  4961. }
  4962. .ant-col-xs-pull-14 {
  4963. right: 58.33333333%;
  4964. }
  4965. .ant-col-xs-offset-14 {
  4966. margin-left: 58.33333333%;
  4967. }
  4968. .ant-col-xs-order-14 {
  4969. order: 14;
  4970. }
  4971. .ant-col-xs-13 {
  4972. display: block;
  4973. width: 54.16666667%;
  4974. }
  4975. .ant-col-xs-push-13 {
  4976. left: 54.16666667%;
  4977. }
  4978. .ant-col-xs-pull-13 {
  4979. right: 54.16666667%;
  4980. }
  4981. .ant-col-xs-offset-13 {
  4982. margin-left: 54.16666667%;
  4983. }
  4984. .ant-col-xs-order-13 {
  4985. order: 13;
  4986. }
  4987. .ant-col-xs-12 {
  4988. display: block;
  4989. width: 50%;
  4990. }
  4991. .ant-col-xs-push-12 {
  4992. left: 50%;
  4993. }
  4994. .ant-col-xs-pull-12 {
  4995. right: 50%;
  4996. }
  4997. .ant-col-xs-offset-12 {
  4998. margin-left: 50%;
  4999. }
  5000. .ant-col-xs-order-12 {
  5001. order: 12;
  5002. }
  5003. .ant-col-xs-11 {
  5004. display: block;
  5005. width: 45.83333333%;
  5006. }
  5007. .ant-col-xs-push-11 {
  5008. left: 45.83333333%;
  5009. }
  5010. .ant-col-xs-pull-11 {
  5011. right: 45.83333333%;
  5012. }
  5013. .ant-col-xs-offset-11 {
  5014. margin-left: 45.83333333%;
  5015. }
  5016. .ant-col-xs-order-11 {
  5017. order: 11;
  5018. }
  5019. .ant-col-xs-10 {
  5020. display: block;
  5021. width: 41.66666667%;
  5022. }
  5023. .ant-col-xs-push-10 {
  5024. left: 41.66666667%;
  5025. }
  5026. .ant-col-xs-pull-10 {
  5027. right: 41.66666667%;
  5028. }
  5029. .ant-col-xs-offset-10 {
  5030. margin-left: 41.66666667%;
  5031. }
  5032. .ant-col-xs-order-10 {
  5033. order: 10;
  5034. }
  5035. .ant-col-xs-9 {
  5036. display: block;
  5037. width: 37.5%;
  5038. }
  5039. .ant-col-xs-push-9 {
  5040. left: 37.5%;
  5041. }
  5042. .ant-col-xs-pull-9 {
  5043. right: 37.5%;
  5044. }
  5045. .ant-col-xs-offset-9 {
  5046. margin-left: 37.5%;
  5047. }
  5048. .ant-col-xs-order-9 {
  5049. order: 9;
  5050. }
  5051. .ant-col-xs-8 {
  5052. display: block;
  5053. width: 33.33333333%;
  5054. }
  5055. .ant-col-xs-push-8 {
  5056. left: 33.33333333%;
  5057. }
  5058. .ant-col-xs-pull-8 {
  5059. right: 33.33333333%;
  5060. }
  5061. .ant-col-xs-offset-8 {
  5062. margin-left: 33.33333333%;
  5063. }
  5064. .ant-col-xs-order-8 {
  5065. order: 8;
  5066. }
  5067. .ant-col-xs-7 {
  5068. display: block;
  5069. width: 29.16666667%;
  5070. }
  5071. .ant-col-xs-push-7 {
  5072. left: 29.16666667%;
  5073. }
  5074. .ant-col-xs-pull-7 {
  5075. right: 29.16666667%;
  5076. }
  5077. .ant-col-xs-offset-7 {
  5078. margin-left: 29.16666667%;
  5079. }
  5080. .ant-col-xs-order-7 {
  5081. order: 7;
  5082. }
  5083. .ant-col-xs-6 {
  5084. display: block;
  5085. width: 25%;
  5086. }
  5087. .ant-col-xs-push-6 {
  5088. left: 25%;
  5089. }
  5090. .ant-col-xs-pull-6 {
  5091. right: 25%;
  5092. }
  5093. .ant-col-xs-offset-6 {
  5094. margin-left: 25%;
  5095. }
  5096. .ant-col-xs-order-6 {
  5097. order: 6;
  5098. }
  5099. .ant-col-xs-5 {
  5100. display: block;
  5101. width: 20.83333333%;
  5102. }
  5103. .ant-col-xs-push-5 {
  5104. left: 20.83333333%;
  5105. }
  5106. .ant-col-xs-pull-5 {
  5107. right: 20.83333333%;
  5108. }
  5109. .ant-col-xs-offset-5 {
  5110. margin-left: 20.83333333%;
  5111. }
  5112. .ant-col-xs-order-5 {
  5113. order: 5;
  5114. }
  5115. .ant-col-xs-4 {
  5116. display: block;
  5117. width: 16.66666667%;
  5118. }
  5119. .ant-col-xs-push-4 {
  5120. left: 16.66666667%;
  5121. }
  5122. .ant-col-xs-pull-4 {
  5123. right: 16.66666667%;
  5124. }
  5125. .ant-col-xs-offset-4 {
  5126. margin-left: 16.66666667%;
  5127. }
  5128. .ant-col-xs-order-4 {
  5129. order: 4;
  5130. }
  5131. .ant-col-xs-3 {
  5132. display: block;
  5133. width: 12.5%;
  5134. }
  5135. .ant-col-xs-push-3 {
  5136. left: 12.5%;
  5137. }
  5138. .ant-col-xs-pull-3 {
  5139. right: 12.5%;
  5140. }
  5141. .ant-col-xs-offset-3 {
  5142. margin-left: 12.5%;
  5143. }
  5144. .ant-col-xs-order-3 {
  5145. order: 3;
  5146. }
  5147. .ant-col-xs-2 {
  5148. display: block;
  5149. width: 8.33333333%;
  5150. }
  5151. .ant-col-xs-push-2 {
  5152. left: 8.33333333%;
  5153. }
  5154. .ant-col-xs-pull-2 {
  5155. right: 8.33333333%;
  5156. }
  5157. .ant-col-xs-offset-2 {
  5158. margin-left: 8.33333333%;
  5159. }
  5160. .ant-col-xs-order-2 {
  5161. order: 2;
  5162. }
  5163. .ant-col-xs-1 {
  5164. display: block;
  5165. width: 4.16666667%;
  5166. }
  5167. .ant-col-xs-push-1 {
  5168. left: 4.16666667%;
  5169. }
  5170. .ant-col-xs-pull-1 {
  5171. right: 4.16666667%;
  5172. }
  5173. .ant-col-xs-offset-1 {
  5174. margin-left: 4.16666667%;
  5175. }
  5176. .ant-col-xs-order-1 {
  5177. order: 1;
  5178. }
  5179. .ant-col-xs-0 {
  5180. display: none;
  5181. }
  5182. .ant-col-push-0 {
  5183. left: auto;
  5184. }
  5185. .ant-col-pull-0 {
  5186. right: auto;
  5187. }
  5188. .ant-col-xs-push-0 {
  5189. left: auto;
  5190. }
  5191. .ant-col-xs-pull-0 {
  5192. right: auto;
  5193. }
  5194. .ant-col-xs-offset-0 {
  5195. margin-left: 0;
  5196. }
  5197. .ant-col-xs-order-0 {
  5198. order: 0;
  5199. }
  5200. @media (min-width: 768px) {
  5201. .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 {
  5202. float: left;
  5203. flex: 0 0 auto;
  5204. }
  5205. .ant-col-sm-24 {
  5206. display: block;
  5207. width: 100%;
  5208. }
  5209. .ant-col-sm-push-24 {
  5210. left: 100%;
  5211. }
  5212. .ant-col-sm-pull-24 {
  5213. right: 100%;
  5214. }
  5215. .ant-col-sm-offset-24 {
  5216. margin-left: 100%;
  5217. }
  5218. .ant-col-sm-order-24 {
  5219. order: 24;
  5220. }
  5221. .ant-col-sm-23 {
  5222. display: block;
  5223. width: 95.83333333%;
  5224. }
  5225. .ant-col-sm-push-23 {
  5226. left: 95.83333333%;
  5227. }
  5228. .ant-col-sm-pull-23 {
  5229. right: 95.83333333%;
  5230. }
  5231. .ant-col-sm-offset-23 {
  5232. margin-left: 95.83333333%;
  5233. }
  5234. .ant-col-sm-order-23 {
  5235. order: 23;
  5236. }
  5237. .ant-col-sm-22 {
  5238. display: block;
  5239. width: 91.66666667%;
  5240. }
  5241. .ant-col-sm-push-22 {
  5242. left: 91.66666667%;
  5243. }
  5244. .ant-col-sm-pull-22 {
  5245. right: 91.66666667%;
  5246. }
  5247. .ant-col-sm-offset-22 {
  5248. margin-left: 91.66666667%;
  5249. }
  5250. .ant-col-sm-order-22 {
  5251. order: 22;
  5252. }
  5253. .ant-col-sm-21 {
  5254. display: block;
  5255. width: 87.5%;
  5256. }
  5257. .ant-col-sm-push-21 {
  5258. left: 87.5%;
  5259. }
  5260. .ant-col-sm-pull-21 {
  5261. right: 87.5%;
  5262. }
  5263. .ant-col-sm-offset-21 {
  5264. margin-left: 87.5%;
  5265. }
  5266. .ant-col-sm-order-21 {
  5267. order: 21;
  5268. }
  5269. .ant-col-sm-20 {
  5270. display: block;
  5271. width: 83.33333333%;
  5272. }
  5273. .ant-col-sm-push-20 {
  5274. left: 83.33333333%;
  5275. }
  5276. .ant-col-sm-pull-20 {
  5277. right: 83.33333333%;
  5278. }
  5279. .ant-col-sm-offset-20 {
  5280. margin-left: 83.33333333%;
  5281. }
  5282. .ant-col-sm-order-20 {
  5283. order: 20;
  5284. }
  5285. .ant-col-sm-19 {
  5286. display: block;
  5287. width: 79.16666667%;
  5288. }
  5289. .ant-col-sm-push-19 {
  5290. left: 79.16666667%;
  5291. }
  5292. .ant-col-sm-pull-19 {
  5293. right: 79.16666667%;
  5294. }
  5295. .ant-col-sm-offset-19 {
  5296. margin-left: 79.16666667%;
  5297. }
  5298. .ant-col-sm-order-19 {
  5299. order: 19;
  5300. }
  5301. .ant-col-sm-18 {
  5302. display: block;
  5303. width: 75%;
  5304. }
  5305. .ant-col-sm-push-18 {
  5306. left: 75%;
  5307. }
  5308. .ant-col-sm-pull-18 {
  5309. right: 75%;
  5310. }
  5311. .ant-col-sm-offset-18 {
  5312. margin-left: 75%;
  5313. }
  5314. .ant-col-sm-order-18 {
  5315. order: 18;
  5316. }
  5317. .ant-col-sm-17 {
  5318. display: block;
  5319. width: 70.83333333%;
  5320. }
  5321. .ant-col-sm-push-17 {
  5322. left: 70.83333333%;
  5323. }
  5324. .ant-col-sm-pull-17 {
  5325. right: 70.83333333%;
  5326. }
  5327. .ant-col-sm-offset-17 {
  5328. margin-left: 70.83333333%;
  5329. }
  5330. .ant-col-sm-order-17 {
  5331. order: 17;
  5332. }
  5333. .ant-col-sm-16 {
  5334. display: block;
  5335. width: 66.66666667%;
  5336. }
  5337. .ant-col-sm-push-16 {
  5338. left: 66.66666667%;
  5339. }
  5340. .ant-col-sm-pull-16 {
  5341. right: 66.66666667%;
  5342. }
  5343. .ant-col-sm-offset-16 {
  5344. margin-left: 66.66666667%;
  5345. }
  5346. .ant-col-sm-order-16 {
  5347. order: 16;
  5348. }
  5349. .ant-col-sm-15 {
  5350. display: block;
  5351. width: 62.5%;
  5352. }
  5353. .ant-col-sm-push-15 {
  5354. left: 62.5%;
  5355. }
  5356. .ant-col-sm-pull-15 {
  5357. right: 62.5%;
  5358. }
  5359. .ant-col-sm-offset-15 {
  5360. margin-left: 62.5%;
  5361. }
  5362. .ant-col-sm-order-15 {
  5363. order: 15;
  5364. }
  5365. .ant-col-sm-14 {
  5366. display: block;
  5367. width: 58.33333333%;
  5368. }
  5369. .ant-col-sm-push-14 {
  5370. left: 58.33333333%;
  5371. }
  5372. .ant-col-sm-pull-14 {
  5373. right: 58.33333333%;
  5374. }
  5375. .ant-col-sm-offset-14 {
  5376. margin-left: 58.33333333%;
  5377. }
  5378. .ant-col-sm-order-14 {
  5379. order: 14;
  5380. }
  5381. .ant-col-sm-13 {
  5382. display: block;
  5383. width: 54.16666667%;
  5384. }
  5385. .ant-col-sm-push-13 {
  5386. left: 54.16666667%;
  5387. }
  5388. .ant-col-sm-pull-13 {
  5389. right: 54.16666667%;
  5390. }
  5391. .ant-col-sm-offset-13 {
  5392. margin-left: 54.16666667%;
  5393. }
  5394. .ant-col-sm-order-13 {
  5395. order: 13;
  5396. }
  5397. .ant-col-sm-12 {
  5398. display: block;
  5399. width: 50%;
  5400. }
  5401. .ant-col-sm-push-12 {
  5402. left: 50%;
  5403. }
  5404. .ant-col-sm-pull-12 {
  5405. right: 50%;
  5406. }
  5407. .ant-col-sm-offset-12 {
  5408. margin-left: 50%;
  5409. }
  5410. .ant-col-sm-order-12 {
  5411. order: 12;
  5412. }
  5413. .ant-col-sm-11 {
  5414. display: block;
  5415. width: 45.83333333%;
  5416. }
  5417. .ant-col-sm-push-11 {
  5418. left: 45.83333333%;
  5419. }
  5420. .ant-col-sm-pull-11 {
  5421. right: 45.83333333%;
  5422. }
  5423. .ant-col-sm-offset-11 {
  5424. margin-left: 45.83333333%;
  5425. }
  5426. .ant-col-sm-order-11 {
  5427. order: 11;
  5428. }
  5429. .ant-col-sm-10 {
  5430. display: block;
  5431. width: 41.66666667%;
  5432. }
  5433. .ant-col-sm-push-10 {
  5434. left: 41.66666667%;
  5435. }
  5436. .ant-col-sm-pull-10 {
  5437. right: 41.66666667%;
  5438. }
  5439. .ant-col-sm-offset-10 {
  5440. margin-left: 41.66666667%;
  5441. }
  5442. .ant-col-sm-order-10 {
  5443. order: 10;
  5444. }
  5445. .ant-col-sm-9 {
  5446. display: block;
  5447. width: 37.5%;
  5448. }
  5449. .ant-col-sm-push-9 {
  5450. left: 37.5%;
  5451. }
  5452. .ant-col-sm-pull-9 {
  5453. right: 37.5%;
  5454. }
  5455. .ant-col-sm-offset-9 {
  5456. margin-left: 37.5%;
  5457. }
  5458. .ant-col-sm-order-9 {
  5459. order: 9;
  5460. }
  5461. .ant-col-sm-8 {
  5462. display: block;
  5463. width: 33.33333333%;
  5464. }
  5465. .ant-col-sm-push-8 {
  5466. left: 33.33333333%;
  5467. }
  5468. .ant-col-sm-pull-8 {
  5469. right: 33.33333333%;
  5470. }
  5471. .ant-col-sm-offset-8 {
  5472. margin-left: 33.33333333%;
  5473. }
  5474. .ant-col-sm-order-8 {
  5475. order: 8;
  5476. }
  5477. .ant-col-sm-7 {
  5478. display: block;
  5479. width: 29.16666667%;
  5480. }
  5481. .ant-col-sm-push-7 {
  5482. left: 29.16666667%;
  5483. }
  5484. .ant-col-sm-pull-7 {
  5485. right: 29.16666667%;
  5486. }
  5487. .ant-col-sm-offset-7 {
  5488. margin-left: 29.16666667%;
  5489. }
  5490. .ant-col-sm-order-7 {
  5491. order: 7;
  5492. }
  5493. .ant-col-sm-6 {
  5494. display: block;
  5495. width: 25%;
  5496. }
  5497. .ant-col-sm-push-6 {
  5498. left: 25%;
  5499. }
  5500. .ant-col-sm-pull-6 {
  5501. right: 25%;
  5502. }
  5503. .ant-col-sm-offset-6 {
  5504. margin-left: 25%;
  5505. }
  5506. .ant-col-sm-order-6 {
  5507. order: 6;
  5508. }
  5509. .ant-col-sm-5 {
  5510. display: block;
  5511. width: 20.83333333%;
  5512. }
  5513. .ant-col-sm-push-5 {
  5514. left: 20.83333333%;
  5515. }
  5516. .ant-col-sm-pull-5 {
  5517. right: 20.83333333%;
  5518. }
  5519. .ant-col-sm-offset-5 {
  5520. margin-left: 20.83333333%;
  5521. }
  5522. .ant-col-sm-order-5 {
  5523. order: 5;
  5524. }
  5525. .ant-col-sm-4 {
  5526. display: block;
  5527. width: 16.66666667%;
  5528. }
  5529. .ant-col-sm-push-4 {
  5530. left: 16.66666667%;
  5531. }
  5532. .ant-col-sm-pull-4 {
  5533. right: 16.66666667%;
  5534. }
  5535. .ant-col-sm-offset-4 {
  5536. margin-left: 16.66666667%;
  5537. }
  5538. .ant-col-sm-order-4 {
  5539. order: 4;
  5540. }
  5541. .ant-col-sm-3 {
  5542. display: block;
  5543. width: 12.5%;
  5544. }
  5545. .ant-col-sm-push-3 {
  5546. left: 12.5%;
  5547. }
  5548. .ant-col-sm-pull-3 {
  5549. right: 12.5%;
  5550. }
  5551. .ant-col-sm-offset-3 {
  5552. margin-left: 12.5%;
  5553. }
  5554. .ant-col-sm-order-3 {
  5555. order: 3;
  5556. }
  5557. .ant-col-sm-2 {
  5558. display: block;
  5559. width: 8.33333333%;
  5560. }
  5561. .ant-col-sm-push-2 {
  5562. left: 8.33333333%;
  5563. }
  5564. .ant-col-sm-pull-2 {
  5565. right: 8.33333333%;
  5566. }
  5567. .ant-col-sm-offset-2 {
  5568. margin-left: 8.33333333%;
  5569. }
  5570. .ant-col-sm-order-2 {
  5571. order: 2;
  5572. }
  5573. .ant-col-sm-1 {
  5574. display: block;
  5575. width: 4.16666667%;
  5576. }
  5577. .ant-col-sm-push-1 {
  5578. left: 4.16666667%;
  5579. }
  5580. .ant-col-sm-pull-1 {
  5581. right: 4.16666667%;
  5582. }
  5583. .ant-col-sm-offset-1 {
  5584. margin-left: 4.16666667%;
  5585. }
  5586. .ant-col-sm-order-1 {
  5587. order: 1;
  5588. }
  5589. .ant-col-sm-0 {
  5590. display: none;
  5591. }
  5592. .ant-col-push-0 {
  5593. left: auto;
  5594. }
  5595. .ant-col-pull-0 {
  5596. right: auto;
  5597. }
  5598. .ant-col-sm-push-0 {
  5599. left: auto;
  5600. }
  5601. .ant-col-sm-pull-0 {
  5602. right: auto;
  5603. }
  5604. .ant-col-sm-offset-0 {
  5605. margin-left: 0;
  5606. }
  5607. .ant-col-sm-order-0 {
  5608. order: 0;
  5609. }
  5610. }
  5611. @media (min-width: 992px) {
  5612. .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 {
  5613. float: left;
  5614. flex: 0 0 auto;
  5615. }
  5616. .ant-col-md-24 {
  5617. display: block;
  5618. width: 100%;
  5619. }
  5620. .ant-col-md-push-24 {
  5621. left: 100%;
  5622. }
  5623. .ant-col-md-pull-24 {
  5624. right: 100%;
  5625. }
  5626. .ant-col-md-offset-24 {
  5627. margin-left: 100%;
  5628. }
  5629. .ant-col-md-order-24 {
  5630. order: 24;
  5631. }
  5632. .ant-col-md-23 {
  5633. display: block;
  5634. width: 95.83333333%;
  5635. }
  5636. .ant-col-md-push-23 {
  5637. left: 95.83333333%;
  5638. }
  5639. .ant-col-md-pull-23 {
  5640. right: 95.83333333%;
  5641. }
  5642. .ant-col-md-offset-23 {
  5643. margin-left: 95.83333333%;
  5644. }
  5645. .ant-col-md-order-23 {
  5646. order: 23;
  5647. }
  5648. .ant-col-md-22 {
  5649. display: block;
  5650. width: 91.66666667%;
  5651. }
  5652. .ant-col-md-push-22 {
  5653. left: 91.66666667%;
  5654. }
  5655. .ant-col-md-pull-22 {
  5656. right: 91.66666667%;
  5657. }
  5658. .ant-col-md-offset-22 {
  5659. margin-left: 91.66666667%;
  5660. }
  5661. .ant-col-md-order-22 {
  5662. order: 22;
  5663. }
  5664. .ant-col-md-21 {
  5665. display: block;
  5666. width: 87.5%;
  5667. }
  5668. .ant-col-md-push-21 {
  5669. left: 87.5%;
  5670. }
  5671. .ant-col-md-pull-21 {
  5672. right: 87.5%;
  5673. }
  5674. .ant-col-md-offset-21 {
  5675. margin-left: 87.5%;
  5676. }
  5677. .ant-col-md-order-21 {
  5678. order: 21;
  5679. }
  5680. .ant-col-md-20 {
  5681. display: block;
  5682. width: 83.33333333%;
  5683. }
  5684. .ant-col-md-push-20 {
  5685. left: 83.33333333%;
  5686. }
  5687. .ant-col-md-pull-20 {
  5688. right: 83.33333333%;
  5689. }
  5690. .ant-col-md-offset-20 {
  5691. margin-left: 83.33333333%;
  5692. }
  5693. .ant-col-md-order-20 {
  5694. order: 20;
  5695. }
  5696. .ant-col-md-19 {
  5697. display: block;
  5698. width: 79.16666667%;
  5699. }
  5700. .ant-col-md-push-19 {
  5701. left: 79.16666667%;
  5702. }
  5703. .ant-col-md-pull-19 {
  5704. right: 79.16666667%;
  5705. }
  5706. .ant-col-md-offset-19 {
  5707. margin-left: 79.16666667%;
  5708. }
  5709. .ant-col-md-order-19 {
  5710. order: 19;
  5711. }
  5712. .ant-col-md-18 {
  5713. display: block;
  5714. width: 75%;
  5715. }
  5716. .ant-col-md-push-18 {
  5717. left: 75%;
  5718. }
  5719. .ant-col-md-pull-18 {
  5720. right: 75%;
  5721. }
  5722. .ant-col-md-offset-18 {
  5723. margin-left: 75%;
  5724. }
  5725. .ant-col-md-order-18 {
  5726. order: 18;
  5727. }
  5728. .ant-col-md-17 {
  5729. display: block;
  5730. width: 70.83333333%;
  5731. }
  5732. .ant-col-md-push-17 {
  5733. left: 70.83333333%;
  5734. }
  5735. .ant-col-md-pull-17 {
  5736. right: 70.83333333%;
  5737. }
  5738. .ant-col-md-offset-17 {
  5739. margin-left: 70.83333333%;
  5740. }
  5741. .ant-col-md-order-17 {
  5742. order: 17;
  5743. }
  5744. .ant-col-md-16 {
  5745. display: block;
  5746. width: 66.66666667%;
  5747. }
  5748. .ant-col-md-push-16 {
  5749. left: 66.66666667%;
  5750. }
  5751. .ant-col-md-pull-16 {
  5752. right: 66.66666667%;
  5753. }
  5754. .ant-col-md-offset-16 {
  5755. margin-left: 66.66666667%;
  5756. }
  5757. .ant-col-md-order-16 {
  5758. order: 16;
  5759. }
  5760. .ant-col-md-15 {
  5761. display: block;
  5762. width: 62.5%;
  5763. }
  5764. .ant-col-md-push-15 {
  5765. left: 62.5%;
  5766. }
  5767. .ant-col-md-pull-15 {
  5768. right: 62.5%;
  5769. }
  5770. .ant-col-md-offset-15 {
  5771. margin-left: 62.5%;
  5772. }
  5773. .ant-col-md-order-15 {
  5774. order: 15;
  5775. }
  5776. .ant-col-md-14 {
  5777. display: block;
  5778. width: 58.33333333%;
  5779. }
  5780. .ant-col-md-push-14 {
  5781. left: 58.33333333%;
  5782. }
  5783. .ant-col-md-pull-14 {
  5784. right: 58.33333333%;
  5785. }
  5786. .ant-col-md-offset-14 {
  5787. margin-left: 58.33333333%;
  5788. }
  5789. .ant-col-md-order-14 {
  5790. order: 14;
  5791. }
  5792. .ant-col-md-13 {
  5793. display: block;
  5794. width: 54.16666667%;
  5795. }
  5796. .ant-col-md-push-13 {
  5797. left: 54.16666667%;
  5798. }
  5799. .ant-col-md-pull-13 {
  5800. right: 54.16666667%;
  5801. }
  5802. .ant-col-md-offset-13 {
  5803. margin-left: 54.16666667%;
  5804. }
  5805. .ant-col-md-order-13 {
  5806. order: 13;
  5807. }
  5808. .ant-col-md-12 {
  5809. display: block;
  5810. width: 50%;
  5811. }
  5812. .ant-col-md-push-12 {
  5813. left: 50%;
  5814. }
  5815. .ant-col-md-pull-12 {
  5816. right: 50%;
  5817. }
  5818. .ant-col-md-offset-12 {
  5819. margin-left: 50%;
  5820. }
  5821. .ant-col-md-order-12 {
  5822. order: 12;
  5823. }
  5824. .ant-col-md-11 {
  5825. display: block;
  5826. width: 45.83333333%;
  5827. }
  5828. .ant-col-md-push-11 {
  5829. left: 45.83333333%;
  5830. }
  5831. .ant-col-md-pull-11 {
  5832. right: 45.83333333%;
  5833. }
  5834. .ant-col-md-offset-11 {
  5835. margin-left: 45.83333333%;
  5836. }
  5837. .ant-col-md-order-11 {
  5838. order: 11;
  5839. }
  5840. .ant-col-md-10 {
  5841. display: block;
  5842. width: 41.66666667%;
  5843. }
  5844. .ant-col-md-push-10 {
  5845. left: 41.66666667%;
  5846. }
  5847. .ant-col-md-pull-10 {
  5848. right: 41.66666667%;
  5849. }
  5850. .ant-col-md-offset-10 {
  5851. margin-left: 41.66666667%;
  5852. }
  5853. .ant-col-md-order-10 {
  5854. order: 10;
  5855. }
  5856. .ant-col-md-9 {
  5857. display: block;
  5858. width: 37.5%;
  5859. }
  5860. .ant-col-md-push-9 {
  5861. left: 37.5%;
  5862. }
  5863. .ant-col-md-pull-9 {
  5864. right: 37.5%;
  5865. }
  5866. .ant-col-md-offset-9 {
  5867. margin-left: 37.5%;
  5868. }
  5869. .ant-col-md-order-9 {
  5870. order: 9;
  5871. }
  5872. .ant-col-md-8 {
  5873. display: block;
  5874. width: 33.33333333%;
  5875. }
  5876. .ant-col-md-push-8 {
  5877. left: 33.33333333%;
  5878. }
  5879. .ant-col-md-pull-8 {
  5880. right: 33.33333333%;
  5881. }
  5882. .ant-col-md-offset-8 {
  5883. margin-left: 33.33333333%;
  5884. }
  5885. .ant-col-md-order-8 {
  5886. order: 8;
  5887. }
  5888. .ant-col-md-7 {
  5889. display: block;
  5890. width: 29.16666667%;
  5891. }
  5892. .ant-col-md-push-7 {
  5893. left: 29.16666667%;
  5894. }
  5895. .ant-col-md-pull-7 {
  5896. right: 29.16666667%;
  5897. }
  5898. .ant-col-md-offset-7 {
  5899. margin-left: 29.16666667%;
  5900. }
  5901. .ant-col-md-order-7 {
  5902. order: 7;
  5903. }
  5904. .ant-col-md-6 {
  5905. display: block;
  5906. width: 25%;
  5907. }
  5908. .ant-col-md-push-6 {
  5909. left: 25%;
  5910. }
  5911. .ant-col-md-pull-6 {
  5912. right: 25%;
  5913. }
  5914. .ant-col-md-offset-6 {
  5915. margin-left: 25%;
  5916. }
  5917. .ant-col-md-order-6 {
  5918. order: 6;
  5919. }
  5920. .ant-col-md-5 {
  5921. display: block;
  5922. width: 20.83333333%;
  5923. }
  5924. .ant-col-md-push-5 {
  5925. left: 20.83333333%;
  5926. }
  5927. .ant-col-md-pull-5 {
  5928. right: 20.83333333%;
  5929. }
  5930. .ant-col-md-offset-5 {
  5931. margin-left: 20.83333333%;
  5932. }
  5933. .ant-col-md-order-5 {
  5934. order: 5;
  5935. }
  5936. .ant-col-md-4 {
  5937. display: block;
  5938. width: 16.66666667%;
  5939. }
  5940. .ant-col-md-push-4 {
  5941. left: 16.66666667%;
  5942. }
  5943. .ant-col-md-pull-4 {
  5944. right: 16.66666667%;
  5945. }
  5946. .ant-col-md-offset-4 {
  5947. margin-left: 16.66666667%;
  5948. }
  5949. .ant-col-md-order-4 {
  5950. order: 4;
  5951. }
  5952. .ant-col-md-3 {
  5953. display: block;
  5954. width: 12.5%;
  5955. }
  5956. .ant-col-md-push-3 {
  5957. left: 12.5%;
  5958. }
  5959. .ant-col-md-pull-3 {
  5960. right: 12.5%;
  5961. }
  5962. .ant-col-md-offset-3 {
  5963. margin-left: 12.5%;
  5964. }
  5965. .ant-col-md-order-3 {
  5966. order: 3;
  5967. }
  5968. .ant-col-md-2 {
  5969. display: block;
  5970. width: 8.33333333%;
  5971. }
  5972. .ant-col-md-push-2 {
  5973. left: 8.33333333%;
  5974. }
  5975. .ant-col-md-pull-2 {
  5976. right: 8.33333333%;
  5977. }
  5978. .ant-col-md-offset-2 {
  5979. margin-left: 8.33333333%;
  5980. }
  5981. .ant-col-md-order-2 {
  5982. order: 2;
  5983. }
  5984. .ant-col-md-1 {
  5985. display: block;
  5986. width: 4.16666667%;
  5987. }
  5988. .ant-col-md-push-1 {
  5989. left: 4.16666667%;
  5990. }
  5991. .ant-col-md-pull-1 {
  5992. right: 4.16666667%;
  5993. }
  5994. .ant-col-md-offset-1 {
  5995. margin-left: 4.16666667%;
  5996. }
  5997. .ant-col-md-order-1 {
  5998. order: 1;
  5999. }
  6000. .ant-col-md-0 {
  6001. display: none;
  6002. }
  6003. .ant-col-push-0 {
  6004. left: auto;
  6005. }
  6006. .ant-col-pull-0 {
  6007. right: auto;
  6008. }
  6009. .ant-col-md-push-0 {
  6010. left: auto;
  6011. }
  6012. .ant-col-md-pull-0 {
  6013. right: auto;
  6014. }
  6015. .ant-col-md-offset-0 {
  6016. margin-left: 0;
  6017. }
  6018. .ant-col-md-order-0 {
  6019. order: 0;
  6020. }
  6021. }
  6022. @media (min-width: 1200px) {
  6023. .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 {
  6024. float: left;
  6025. flex: 0 0 auto;
  6026. }
  6027. .ant-col-lg-24 {
  6028. display: block;
  6029. width: 100%;
  6030. }
  6031. .ant-col-lg-push-24 {
  6032. left: 100%;
  6033. }
  6034. .ant-col-lg-pull-24 {
  6035. right: 100%;
  6036. }
  6037. .ant-col-lg-offset-24 {
  6038. margin-left: 100%;
  6039. }
  6040. .ant-col-lg-order-24 {
  6041. order: 24;
  6042. }
  6043. .ant-col-lg-23 {
  6044. display: block;
  6045. width: 95.83333333%;
  6046. }
  6047. .ant-col-lg-push-23 {
  6048. left: 95.83333333%;
  6049. }
  6050. .ant-col-lg-pull-23 {
  6051. right: 95.83333333%;
  6052. }
  6053. .ant-col-lg-offset-23 {
  6054. margin-left: 95.83333333%;
  6055. }
  6056. .ant-col-lg-order-23 {
  6057. order: 23;
  6058. }
  6059. .ant-col-lg-22 {
  6060. display: block;
  6061. width: 91.66666667%;
  6062. }
  6063. .ant-col-lg-push-22 {
  6064. left: 91.66666667%;
  6065. }
  6066. .ant-col-lg-pull-22 {
  6067. right: 91.66666667%;
  6068. }
  6069. .ant-col-lg-offset-22 {
  6070. margin-left: 91.66666667%;
  6071. }
  6072. .ant-col-lg-order-22 {
  6073. order: 22;
  6074. }
  6075. .ant-col-lg-21 {
  6076. display: block;
  6077. width: 87.5%;
  6078. }
  6079. .ant-col-lg-push-21 {
  6080. left: 87.5%;
  6081. }
  6082. .ant-col-lg-pull-21 {
  6083. right: 87.5%;
  6084. }
  6085. .ant-col-lg-offset-21 {
  6086. margin-left: 87.5%;
  6087. }
  6088. .ant-col-lg-order-21 {
  6089. order: 21;
  6090. }
  6091. .ant-col-lg-20 {
  6092. display: block;
  6093. width: 83.33333333%;
  6094. }
  6095. .ant-col-lg-push-20 {
  6096. left: 83.33333333%;
  6097. }
  6098. .ant-col-lg-pull-20 {
  6099. right: 83.33333333%;
  6100. }
  6101. .ant-col-lg-offset-20 {
  6102. margin-left: 83.33333333%;
  6103. }
  6104. .ant-col-lg-order-20 {
  6105. order: 20;
  6106. }
  6107. .ant-col-lg-19 {
  6108. display: block;
  6109. width: 79.16666667%;
  6110. }
  6111. .ant-col-lg-push-19 {
  6112. left: 79.16666667%;
  6113. }
  6114. .ant-col-lg-pull-19 {
  6115. right: 79.16666667%;
  6116. }
  6117. .ant-col-lg-offset-19 {
  6118. margin-left: 79.16666667%;
  6119. }
  6120. .ant-col-lg-order-19 {
  6121. order: 19;
  6122. }
  6123. .ant-col-lg-18 {
  6124. display: block;
  6125. width: 75%;
  6126. }
  6127. .ant-col-lg-push-18 {
  6128. left: 75%;
  6129. }
  6130. .ant-col-lg-pull-18 {
  6131. right: 75%;
  6132. }
  6133. .ant-col-lg-offset-18 {
  6134. margin-left: 75%;
  6135. }
  6136. .ant-col-lg-order-18 {
  6137. order: 18;
  6138. }
  6139. .ant-col-lg-17 {
  6140. display: block;
  6141. width: 70.83333333%;
  6142. }
  6143. .ant-col-lg-push-17 {
  6144. left: 70.83333333%;
  6145. }
  6146. .ant-col-lg-pull-17 {
  6147. right: 70.83333333%;
  6148. }
  6149. .ant-col-lg-offset-17 {
  6150. margin-left: 70.83333333%;
  6151. }
  6152. .ant-col-lg-order-17 {
  6153. order: 17;
  6154. }
  6155. .ant-col-lg-16 {
  6156. display: block;
  6157. width: 66.66666667%;
  6158. }
  6159. .ant-col-lg-push-16 {
  6160. left: 66.66666667%;
  6161. }
  6162. .ant-col-lg-pull-16 {
  6163. right: 66.66666667%;
  6164. }
  6165. .ant-col-lg-offset-16 {
  6166. margin-left: 66.66666667%;
  6167. }
  6168. .ant-col-lg-order-16 {
  6169. order: 16;
  6170. }
  6171. .ant-col-lg-15 {
  6172. display: block;
  6173. width: 62.5%;
  6174. }
  6175. .ant-col-lg-push-15 {
  6176. left: 62.5%;
  6177. }
  6178. .ant-col-lg-pull-15 {
  6179. right: 62.5%;
  6180. }
  6181. .ant-col-lg-offset-15 {
  6182. margin-left: 62.5%;
  6183. }
  6184. .ant-col-lg-order-15 {
  6185. order: 15;
  6186. }
  6187. .ant-col-lg-14 {
  6188. display: block;
  6189. width: 58.33333333%;
  6190. }
  6191. .ant-col-lg-push-14 {
  6192. left: 58.33333333%;
  6193. }
  6194. .ant-col-lg-pull-14 {
  6195. right: 58.33333333%;
  6196. }
  6197. .ant-col-lg-offset-14 {
  6198. margin-left: 58.33333333%;
  6199. }
  6200. .ant-col-lg-order-14 {
  6201. order: 14;
  6202. }
  6203. .ant-col-lg-13 {
  6204. display: block;
  6205. width: 54.16666667%;
  6206. }
  6207. .ant-col-lg-push-13 {
  6208. left: 54.16666667%;
  6209. }
  6210. .ant-col-lg-pull-13 {
  6211. right: 54.16666667%;
  6212. }
  6213. .ant-col-lg-offset-13 {
  6214. margin-left: 54.16666667%;
  6215. }
  6216. .ant-col-lg-order-13 {
  6217. order: 13;
  6218. }
  6219. .ant-col-lg-12 {
  6220. display: block;
  6221. width: 50%;
  6222. }
  6223. .ant-col-lg-push-12 {
  6224. left: 50%;
  6225. }
  6226. .ant-col-lg-pull-12 {
  6227. right: 50%;
  6228. }
  6229. .ant-col-lg-offset-12 {
  6230. margin-left: 50%;
  6231. }
  6232. .ant-col-lg-order-12 {
  6233. order: 12;
  6234. }
  6235. .ant-col-lg-11 {
  6236. display: block;
  6237. width: 45.83333333%;
  6238. }
  6239. .ant-col-lg-push-11 {
  6240. left: 45.83333333%;
  6241. }
  6242. .ant-col-lg-pull-11 {
  6243. right: 45.83333333%;
  6244. }
  6245. .ant-col-lg-offset-11 {
  6246. margin-left: 45.83333333%;
  6247. }
  6248. .ant-col-lg-order-11 {
  6249. order: 11;
  6250. }
  6251. .ant-col-lg-10 {
  6252. display: block;
  6253. width: 41.66666667%;
  6254. }
  6255. .ant-col-lg-push-10 {
  6256. left: 41.66666667%;
  6257. }
  6258. .ant-col-lg-pull-10 {
  6259. right: 41.66666667%;
  6260. }
  6261. .ant-col-lg-offset-10 {
  6262. margin-left: 41.66666667%;
  6263. }
  6264. .ant-col-lg-order-10 {
  6265. order: 10;
  6266. }
  6267. .ant-col-lg-9 {
  6268. display: block;
  6269. width: 37.5%;
  6270. }
  6271. .ant-col-lg-push-9 {
  6272. left: 37.5%;
  6273. }
  6274. .ant-col-lg-pull-9 {
  6275. right: 37.5%;
  6276. }
  6277. .ant-col-lg-offset-9 {
  6278. margin-left: 37.5%;
  6279. }
  6280. .ant-col-lg-order-9 {
  6281. order: 9;
  6282. }
  6283. .ant-col-lg-8 {
  6284. display: block;
  6285. width: 33.33333333%;
  6286. }
  6287. .ant-col-lg-push-8 {
  6288. left: 33.33333333%;
  6289. }
  6290. .ant-col-lg-pull-8 {
  6291. right: 33.33333333%;
  6292. }
  6293. .ant-col-lg-offset-8 {
  6294. margin-left: 33.33333333%;
  6295. }
  6296. .ant-col-lg-order-8 {
  6297. order: 8;
  6298. }
  6299. .ant-col-lg-7 {
  6300. display: block;
  6301. width: 29.16666667%;
  6302. }
  6303. .ant-col-lg-push-7 {
  6304. left: 29.16666667%;
  6305. }
  6306. .ant-col-lg-pull-7 {
  6307. right: 29.16666667%;
  6308. }
  6309. .ant-col-lg-offset-7 {
  6310. margin-left: 29.16666667%;
  6311. }
  6312. .ant-col-lg-order-7 {
  6313. order: 7;
  6314. }
  6315. .ant-col-lg-6 {
  6316. display: block;
  6317. width: 25%;
  6318. }
  6319. .ant-col-lg-push-6 {
  6320. left: 25%;
  6321. }
  6322. .ant-col-lg-pull-6 {
  6323. right: 25%;
  6324. }
  6325. .ant-col-lg-offset-6 {
  6326. margin-left: 25%;
  6327. }
  6328. .ant-col-lg-order-6 {
  6329. order: 6;
  6330. }
  6331. .ant-col-lg-5 {
  6332. display: block;
  6333. width: 20.83333333%;
  6334. }
  6335. .ant-col-lg-push-5 {
  6336. left: 20.83333333%;
  6337. }
  6338. .ant-col-lg-pull-5 {
  6339. right: 20.83333333%;
  6340. }
  6341. .ant-col-lg-offset-5 {
  6342. margin-left: 20.83333333%;
  6343. }
  6344. .ant-col-lg-order-5 {
  6345. order: 5;
  6346. }
  6347. .ant-col-lg-4 {
  6348. display: block;
  6349. width: 16.66666667%;
  6350. }
  6351. .ant-col-lg-push-4 {
  6352. left: 16.66666667%;
  6353. }
  6354. .ant-col-lg-pull-4 {
  6355. right: 16.66666667%;
  6356. }
  6357. .ant-col-lg-offset-4 {
  6358. margin-left: 16.66666667%;
  6359. }
  6360. .ant-col-lg-order-4 {
  6361. order: 4;
  6362. }
  6363. .ant-col-lg-3 {
  6364. display: block;
  6365. width: 12.5%;
  6366. }
  6367. .ant-col-lg-push-3 {
  6368. left: 12.5%;
  6369. }
  6370. .ant-col-lg-pull-3 {
  6371. right: 12.5%;
  6372. }
  6373. .ant-col-lg-offset-3 {
  6374. margin-left: 12.5%;
  6375. }
  6376. .ant-col-lg-order-3 {
  6377. order: 3;
  6378. }
  6379. .ant-col-lg-2 {
  6380. display: block;
  6381. width: 8.33333333%;
  6382. }
  6383. .ant-col-lg-push-2 {
  6384. left: 8.33333333%;
  6385. }
  6386. .ant-col-lg-pull-2 {
  6387. right: 8.33333333%;
  6388. }
  6389. .ant-col-lg-offset-2 {
  6390. margin-left: 8.33333333%;
  6391. }
  6392. .ant-col-lg-order-2 {
  6393. order: 2;
  6394. }
  6395. .ant-col-lg-1 {
  6396. display: block;
  6397. width: 4.16666667%;
  6398. }
  6399. .ant-col-lg-push-1 {
  6400. left: 4.16666667%;
  6401. }
  6402. .ant-col-lg-pull-1 {
  6403. right: 4.16666667%;
  6404. }
  6405. .ant-col-lg-offset-1 {
  6406. margin-left: 4.16666667%;
  6407. }
  6408. .ant-col-lg-order-1 {
  6409. order: 1;
  6410. }
  6411. .ant-col-lg-0 {
  6412. display: none;
  6413. }
  6414. .ant-col-push-0 {
  6415. left: auto;
  6416. }
  6417. .ant-col-pull-0 {
  6418. right: auto;
  6419. }
  6420. .ant-col-lg-push-0 {
  6421. left: auto;
  6422. }
  6423. .ant-col-lg-pull-0 {
  6424. right: auto;
  6425. }
  6426. .ant-col-lg-offset-0 {
  6427. margin-left: 0;
  6428. }
  6429. .ant-col-lg-order-0 {
  6430. order: 0;
  6431. }
  6432. }
  6433. .ant-modal {
  6434. position: relative;
  6435. width: auto;
  6436. margin: 0 auto;
  6437. top: 100px;
  6438. padding-bottom: 24px;
  6439. }
  6440. .ant-modal-wrap {
  6441. position: fixed;
  6442. overflow: auto;
  6443. top: 0;
  6444. right: 0;
  6445. bottom: 0;
  6446. left: 0;
  6447. z-index: 1000;
  6448. -webkit-overflow-scrolling: touch;
  6449. outline: 0;
  6450. }
  6451. .ant-modal-title {
  6452. margin: 0;
  6453. font-size: 14px;
  6454. line-height: 21px;
  6455. font-weight: bold;
  6456. }
  6457. .ant-modal-content {
  6458. position: relative;
  6459. background-color: #fff;
  6460. border: 0;
  6461. border-radius: 4px;
  6462. background-clip: padding-box;
  6463. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  6464. }
  6465. .ant-modal-close {
  6466. cursor: pointer;
  6467. border: 0;
  6468. background: transparent;
  6469. position: absolute;
  6470. right: 16px;
  6471. top: 16px;
  6472. z-index: 10;
  6473. font-weight: 700;
  6474. line-height: 1;
  6475. text-decoration: none;
  6476. transition: color .3s ease;
  6477. color: rgba(0, 0, 0, 0.43);
  6478. outline: 0;
  6479. }
  6480. .ant-modal-close-x {
  6481. display: block;
  6482. font-style: normal;
  6483. vertical-align: baseline;
  6484. text-align: center;
  6485. text-transform: none;
  6486. text-rendering: auto;
  6487. width: 14px;
  6488. height: 14px;
  6489. font-size: 14px;
  6490. line-height: 1;
  6491. }
  6492. .ant-modal-close-x:before {
  6493. content: "\E633";
  6494. display: block;
  6495. font-family: "anticon" !important;
  6496. }
  6497. .ant-modal-close:focus,
  6498. .ant-modal-close:hover {
  6499. color: #444;
  6500. text-decoration: none;
  6501. }
  6502. .ant-modal-header {
  6503. padding: 14px 16px;
  6504. border-radius: 4px 4px 0 0;
  6505. background: #fff;
  6506. color: rgba(0, 0, 0, 0.65);
  6507. border-bottom: 1px solid #e9e9e9;
  6508. }
  6509. .ant-modal-body {
  6510. padding: 16px;
  6511. font-size: 12px;
  6512. line-height: 1.5;
  6513. }
  6514. .ant-modal-footer {
  6515. border-top: 1px solid #e9e9e9;
  6516. padding: 10px 16px 10px 10px;
  6517. text-align: right;
  6518. border-radius: 0 0 4px 4px;
  6519. }
  6520. .ant-modal-footer button + button {
  6521. margin-left: 8px;
  6522. margin-bottom: 0;
  6523. }
  6524. .ant-modal.zoom-enter,
  6525. .ant-modal.zoom-appear {
  6526. animation-duration: 0.3s;
  6527. transform: none;
  6528. opacity: 0;
  6529. }
  6530. .ant-modal-mask {
  6531. position: fixed;
  6532. top: 0;
  6533. right: 0;
  6534. left: 0;
  6535. bottom: 0;
  6536. background-color: #373737;
  6537. background-color: rgba(55, 55, 55, 0.6);
  6538. height: 100%;
  6539. z-index: 1000;
  6540. filter: alpha(opacity=50);
  6541. }
  6542. .ant-modal-mask-hidden {
  6543. display: none;
  6544. }
  6545. .ant-modal-open {
  6546. overflow: hidden;
  6547. }
  6548. @media (max-width: 768px) {
  6549. .ant-modal {
  6550. width: auto !important;
  6551. margin: 10px;
  6552. }
  6553. .vertical-center-modal .ant-modal {
  6554. flex: 1;
  6555. }
  6556. }
  6557. .ant-confirm .ant-modal-header {
  6558. display: none;
  6559. }
  6560. .ant-confirm .ant-modal-close {
  6561. display: none;
  6562. }
  6563. .ant-confirm .ant-modal-body {
  6564. padding: 30px 40px;
  6565. }
  6566. .ant-confirm-body-wrapper {
  6567. zoom: 1;
  6568. }
  6569. .ant-confirm-body-wrapper:before,
  6570. .ant-confirm-body-wrapper:after {
  6571. content: " ";
  6572. display: table;
  6573. }
  6574. .ant-confirm-body-wrapper:after {
  6575. clear: both;
  6576. visibility: hidden;
  6577. font-size: 0;
  6578. height: 0;
  6579. }
  6580. .ant-confirm-body .ant-confirm-title {
  6581. color: rgba(0, 0, 0, 0.65);
  6582. font-weight: bold;
  6583. font-size: 14px;
  6584. }
  6585. .ant-confirm-body .ant-confirm-content {
  6586. margin-left: 42px;
  6587. font-size: 12px;
  6588. color: rgba(0, 0, 0, 0.65);
  6589. margin-top: 8px;
  6590. }
  6591. .ant-confirm-body > .anticon {
  6592. font-size: 24px;
  6593. margin-right: 16px;
  6594. padding: 0 1px;
  6595. float: left;
  6596. }
  6597. .ant-confirm .ant-confirm-btns {
  6598. margin-top: 30px;
  6599. float: right;
  6600. }
  6601. .ant-confirm .ant-confirm-btns button + button {
  6602. margin-left: 10px;
  6603. margin-bottom: 0;
  6604. }
  6605. .ant-confirm-error .ant-confirm-body > .anticon {
  6606. color: #f04134;
  6607. }
  6608. .ant-confirm-warning .ant-confirm-body > .anticon,
  6609. .ant-confirm-confirm .ant-confirm-body > .anticon {
  6610. color: #ffbf00;
  6611. }
  6612. .ant-confirm-info .ant-confirm-body > .anticon {
  6613. color: #58a3ff;
  6614. }
  6615. .ant-confirm-success .ant-confirm-body > .anticon {
  6616. color: #00a854;
  6617. }
  6618. .ant-select {
  6619. box-sizing: border-box;
  6620. display: inline-block;
  6621. position: relative;
  6622. color: rgba(0, 0, 0, 0.65);
  6623. font-size: 12px;
  6624. }
  6625. .ant-select > ul > li > a {
  6626. padding: 0;
  6627. background-color: #fff;
  6628. }
  6629. .ant-select-arrow {
  6630. font-style: normal;
  6631. vertical-align: baseline;
  6632. text-align: center;
  6633. text-transform: none;
  6634. text-rendering: optimizeLegibility;
  6635. -webkit-font-smoothing: antialiased;
  6636. -moz-osx-font-smoothing: grayscale;
  6637. position: absolute;
  6638. top: 50%;
  6639. right: 8px;
  6640. line-height: 1;
  6641. margin-top: -6px;
  6642. display: inline-block;
  6643. font-size: 12px;
  6644. font-size: 9px \9;
  6645. transform: scale(0.75) rotate(0deg);
  6646. /* IE6-IE8 */
  6647. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  6648. zoom: 1;
  6649. }
  6650. .ant-select-arrow:before {
  6651. display: block;
  6652. font-family: "anticon" !important;
  6653. }
  6654. :root .ant-select-arrow {
  6655. filter: none;
  6656. }
  6657. :root .ant-select-arrow {
  6658. font-size: 12px;
  6659. }
  6660. .ant-select-arrow * {
  6661. display: none;
  6662. }
  6663. .ant-select-arrow:before {
  6664. content: '\E61D';
  6665. transition: transform 0.2s ease;
  6666. }
  6667. .ant-select-selection {
  6668. outline: none;
  6669. user-select: none;
  6670. box-sizing: border-box;
  6671. display: block;
  6672. background-color: #fff;
  6673. border-radius: 4px;
  6674. border: 1px solid #d9d9d9;
  6675. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6676. }
  6677. .ant-select-selection:hover {
  6678. border-color: #80b9ff;
  6679. }
  6680. .ant-select-focused .ant-select-selection,
  6681. .ant-select-selection:focus,
  6682. .ant-select-selection:active {
  6683. border-color: #80b9ff;
  6684. outline: 0;
  6685. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  6686. }
  6687. .ant-select-selection__clear {
  6688. display: inline-block;
  6689. font-style: normal;
  6690. vertical-align: baseline;
  6691. text-align: center;
  6692. text-transform: none;
  6693. text-rendering: auto;
  6694. opacity: 0;
  6695. position: absolute;
  6696. right: 8px;
  6697. z-index: 1;
  6698. background: #fff;
  6699. top: 50%;
  6700. font-size: 12px;
  6701. color: rgba(0, 0, 0, 0.25);
  6702. width: 12px;
  6703. height: 12px;
  6704. margin-top: -6px;
  6705. line-height: 12px;
  6706. cursor: pointer;
  6707. transition: color 0.3s ease, opacity 0.15s ease;
  6708. }
  6709. .ant-select-selection__clear:before {
  6710. display: block;
  6711. font-family: 'anticon';
  6712. text-rendering: optimizeLegibility;
  6713. -webkit-font-smoothing: antialiased;
  6714. -moz-osx-font-smoothing: grayscale;
  6715. content: "\E62E";
  6716. }
  6717. .ant-select-selection__clear:hover {
  6718. color: rgba(0, 0, 0, 0.43);
  6719. }
  6720. .ant-select-selection:hover .ant-select-selection__clear {
  6721. opacity: 1;
  6722. }
  6723. .ant-select-selection-selected-value {
  6724. float: left;
  6725. overflow: hidden;
  6726. text-overflow: ellipsis;
  6727. white-space: nowrap;
  6728. max-width: 100%;
  6729. padding-right: 14px;
  6730. }
  6731. .ant-select-disabled {
  6732. color: rgba(0, 0, 0, 0.25);
  6733. }
  6734. .ant-select-disabled .ant-select-selection {
  6735. background: #f7f7f7;
  6736. cursor: not-allowed;
  6737. }
  6738. .ant-select-disabled .ant-select-selection:hover,
  6739. .ant-select-disabled .ant-select-selection:focus,
  6740. .ant-select-disabled .ant-select-selection:active {
  6741. border-color: #d9d9d9;
  6742. box-shadow: none;
  6743. }
  6744. .ant-select-disabled .ant-select-selection__clear {
  6745. display: none;
  6746. visibility: hidden;
  6747. pointer-events: none;
  6748. }
  6749. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
  6750. background: #e9e9e9;
  6751. color: #aaa;
  6752. padding-right: 10px;
  6753. }
  6754. .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6755. display: none;
  6756. }
  6757. .ant-select-selection--single {
  6758. height: 28px;
  6759. position: relative;
  6760. cursor: pointer;
  6761. }
  6762. .ant-select-selection__rendered {
  6763. display: block;
  6764. margin-left: 7px;
  6765. margin-right: 7px;
  6766. position: relative;
  6767. line-height: 26px;
  6768. }
  6769. .ant-select-selection__rendered:after {
  6770. content: '.';
  6771. visibility: hidden;
  6772. pointer-events: none;
  6773. display: inline-block;
  6774. width: 0;
  6775. }
  6776. .ant-select-lg .ant-select-selection--single {
  6777. height: 32px;
  6778. }
  6779. .ant-select-lg .ant-select-selection__rendered {
  6780. line-height: 30px;
  6781. }
  6782. .ant-select-lg .ant-select-selection--multiple {
  6783. min-height: 32px;
  6784. }
  6785. .ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li {
  6786. height: 24px;
  6787. line-height: 24px;
  6788. }
  6789. .ant-select-sm .ant-select-selection--single {
  6790. height: 22px;
  6791. }
  6792. .ant-select-sm .ant-select-selection__rendered {
  6793. line-height: 20px;
  6794. }
  6795. .ant-select-sm .ant-select-selection--multiple {
  6796. min-height: 22px;
  6797. }
  6798. .ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li {
  6799. height: 14px;
  6800. line-height: 14px;
  6801. }
  6802. .ant-select-disabled .ant-select-selection__choice__remove {
  6803. color: rgba(0, 0, 0, 0.25);
  6804. cursor: default;
  6805. }
  6806. .ant-select-disabled .ant-select-selection__choice__remove:hover {
  6807. color: rgba(0, 0, 0, 0.25);
  6808. }
  6809. .ant-select-search__field__wrap {
  6810. display: inline-block;
  6811. position: relative;
  6812. }
  6813. .ant-select-selection__placeholder,
  6814. .ant-select-search__field__placeholder {
  6815. position: absolute;
  6816. top: 50%;
  6817. left: 0;
  6818. right: 9px;
  6819. color: #ccc;
  6820. line-height: 20px;
  6821. height: 20px;
  6822. max-width: 100%;
  6823. margin-top: -10px;
  6824. overflow: hidden;
  6825. text-overflow: ellipsis;
  6826. white-space: nowrap;
  6827. }
  6828. .ant-select-search__field__placeholder {
  6829. left: 8px;
  6830. }
  6831. .ant-select-search--inline {
  6832. position: absolute;
  6833. height: 100%;
  6834. }
  6835. .ant-select-selection--multiple .ant-select-search--inline {
  6836. float: left;
  6837. position: static;
  6838. }
  6839. .ant-select-search--inline .ant-select-search__field__wrap {
  6840. width: 100%;
  6841. height: 100%;
  6842. }
  6843. .ant-select-search--inline .ant-select-search__field {
  6844. border: 0;
  6845. font-size: 100%;
  6846. height: 100%;
  6847. width: 100%;
  6848. background: transparent;
  6849. outline: 0;
  6850. border-radius: 4px;
  6851. }
  6852. .ant-select-search--inline .ant-select-search__field__mirror {
  6853. position: absolute;
  6854. top: 0;
  6855. left: -9999px;
  6856. white-space: pre;
  6857. pointer-events: none;
  6858. }
  6859. .ant-select-search--inline > i {
  6860. float: right;
  6861. }
  6862. .ant-select-selection--multiple {
  6863. min-height: 28px;
  6864. cursor: text;
  6865. padding-bottom: 3px;
  6866. zoom: 1;
  6867. }
  6868. .ant-select-selection--multiple:before,
  6869. .ant-select-selection--multiple:after {
  6870. content: " ";
  6871. display: table;
  6872. }
  6873. .ant-select-selection--multiple:after {
  6874. clear: both;
  6875. visibility: hidden;
  6876. font-size: 0;
  6877. height: 0;
  6878. }
  6879. .ant-select-selection--multiple .ant-select-search--inline {
  6880. width: auto;
  6881. padding: 0;
  6882. }
  6883. .ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  6884. width: 0.75em;
  6885. }
  6886. .ant-select-selection--multiple .ant-select-selection__rendered {
  6887. margin-left: 5px;
  6888. margin-bottom: -3px;
  6889. height: auto;
  6890. }
  6891. .ant-select-selection--multiple > ul > li,
  6892. .ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  6893. margin-top: 3px;
  6894. height: 20px;
  6895. line-height: 20px;
  6896. }
  6897. .ant-select-selection--multiple .ant-select-selection__choice {
  6898. background-color: #f3f3f3;
  6899. border-radius: 4px;
  6900. cursor: default;
  6901. float: left;
  6902. margin-right: 4px;
  6903. max-width: 99%;
  6904. position: relative;
  6905. overflow: hidden;
  6906. transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6907. padding: 0 20px 0 10px;
  6908. }
  6909. .ant-select-selection--multiple .ant-select-selection__choice__disabled {
  6910. padding: 0 10px;
  6911. }
  6912. .ant-select-selection--multiple .ant-select-selection__choice__content {
  6913. display: inline-block;
  6914. white-space: nowrap;
  6915. overflow: hidden;
  6916. text-overflow: ellipsis;
  6917. max-width: 100%;
  6918. transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6919. }
  6920. .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6921. font-style: normal;
  6922. vertical-align: baseline;
  6923. text-align: center;
  6924. text-transform: none;
  6925. line-height: 1;
  6926. text-rendering: optimizeLegibility;
  6927. -webkit-font-smoothing: antialiased;
  6928. -moz-osx-font-smoothing: grayscale;
  6929. color: rgba(0, 0, 0, 0.43);
  6930. line-height: inherit;
  6931. cursor: pointer;
  6932. font-weight: bold;
  6933. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6934. display: inline-block;
  6935. font-size: 12px;
  6936. font-size: 8px \9;
  6937. transform: scale(0.66666667) rotate(0deg);
  6938. /* IE6-IE8 */
  6939. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  6940. zoom: 1;
  6941. position: absolute;
  6942. right: 4px;
  6943. padding: 0 0 0 8px;
  6944. }
  6945. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  6946. display: block;
  6947. font-family: "anticon" !important;
  6948. }
  6949. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6950. filter: none;
  6951. }
  6952. :root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  6953. font-size: 12px;
  6954. }
  6955. .ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
  6956. color: #404040;
  6957. }
  6958. .ant-select-selection--multiple .ant-select-selection__choice__remove:before {
  6959. content: "\E633";
  6960. }
  6961. .ant-select-open .ant-select-arrow {
  6962. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  6963. -ms-transform: rotate(180deg);
  6964. }
  6965. .ant-select-open .ant-select-arrow:before {
  6966. transform: rotate(180deg);
  6967. }
  6968. .ant-select-open .ant-select-selection {
  6969. border-color: #80b9ff;
  6970. outline: 0;
  6971. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  6972. }
  6973. .ant-select-combobox .ant-select-arrow {
  6974. display: none;
  6975. }
  6976. .ant-select-combobox .ant-select-search--inline {
  6977. height: 100%;
  6978. width: 100%;
  6979. float: none;
  6980. }
  6981. .ant-select-combobox .ant-select-search__field__wrap {
  6982. width: 100%;
  6983. height: 100%;
  6984. }
  6985. .ant-select-combobox .ant-select-search__field {
  6986. width: 100%;
  6987. height: 100%;
  6988. position: relative;
  6989. z-index: 1;
  6990. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  6991. box-shadow: none;
  6992. }
  6993. .ant-select-dropdown {
  6994. background-color: #fff;
  6995. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  6996. border-radius: 4px;
  6997. box-sizing: border-box;
  6998. z-index: 1050;
  6999. left: -9999px;
  7000. top: -9999px;
  7001. position: absolute;
  7002. outline: none;
  7003. overflow: hidden;
  7004. font-size: 12px;
  7005. }
  7006. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
  7007. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  7008. animation-name: antSlideUpIn;
  7009. }
  7010. .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
  7011. .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  7012. animation-name: antSlideDownIn;
  7013. }
  7014. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  7015. animation-name: antSlideUpOut;
  7016. }
  7017. .ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  7018. animation-name: antSlideDownOut;
  7019. }
  7020. .ant-select-dropdown-hidden {
  7021. display: none;
  7022. }
  7023. .ant-select-dropdown-menu {
  7024. outline: none;
  7025. margin-bottom: 0;
  7026. padding-left: 0;
  7027. list-style: none;
  7028. max-height: 250px;
  7029. overflow: auto;
  7030. }
  7031. .ant-select-dropdown-menu-item-group-list {
  7032. margin: 0;
  7033. padding: 0;
  7034. }
  7035. .ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item {
  7036. padding-left: 24px;
  7037. }
  7038. .ant-select-dropdown-menu-item-group-title {
  7039. color: rgba(0, 0, 0, 0.43);
  7040. line-height: 1.5;
  7041. padding: 8px 16px;
  7042. }
  7043. .ant-select-dropdown-menu-item {
  7044. position: relative;
  7045. display: block;
  7046. padding: 7px 16px;
  7047. font-weight: normal;
  7048. color: rgba(0, 0, 0, 0.65);
  7049. white-space: nowrap;
  7050. cursor: pointer;
  7051. overflow: hidden;
  7052. transition: background 0.3s ease;
  7053. }
  7054. .ant-select-dropdown-menu-item:hover,
  7055. .ant-select-dropdown-menu-item-active {
  7056. background-color: #f2f8ff;
  7057. }
  7058. .ant-select-dropdown-menu-item-disabled {
  7059. color: rgba(0, 0, 0, 0.25);
  7060. cursor: not-allowed;
  7061. }
  7062. .ant-select-dropdown-menu-item-disabled:hover {
  7063. color: rgba(0, 0, 0, 0.25);
  7064. background-color: #fff;
  7065. cursor: not-allowed;
  7066. }
  7067. .ant-select-dropdown-menu-item-selected,
  7068. .ant-select-dropdown-menu-item-selected:hover {
  7069. background-color: #f7f7f7;
  7070. font-weight: bold;
  7071. color: rgba(0, 0, 0, 0.65);
  7072. }
  7073. .ant-select-dropdown-menu-item-divider {
  7074. height: 1px;
  7075. margin: 1px 0;
  7076. overflow: hidden;
  7077. background-color: #e5e5e5;
  7078. line-height: 0;
  7079. }
  7080. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7081. font-family: 'anticon';
  7082. text-rendering: optimizeLegibility;
  7083. -webkit-font-smoothing: antialiased;
  7084. -moz-osx-font-smoothing: grayscale;
  7085. content: "\E632";
  7086. color: transparent;
  7087. display: inline-block;
  7088. font-size: 12px;
  7089. font-size: 10px \9;
  7090. transform: scale(0.83333333) rotate(0deg);
  7091. /* IE6-IE8 */
  7092. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7093. zoom: 1;
  7094. transition: all 0.2s ease;
  7095. position: absolute;
  7096. top: 50%;
  7097. transform: translateY(-50%);
  7098. right: 16px;
  7099. font-weight: bold;
  7100. text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  7101. }
  7102. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7103. filter: none;
  7104. }
  7105. :root .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:after {
  7106. font-size: 12px;
  7107. }
  7108. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover:after {
  7109. color: #ddd;
  7110. }
  7111. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled:after {
  7112. display: none;
  7113. }
  7114. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:after,
  7115. .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover:after {
  7116. color: #58a3ff;
  7117. display: inline-block;
  7118. }
  7119. .ant-select-dropdown-container-open .ant-select-dropdown,
  7120. .ant-select-dropdown-open .ant-select-dropdown {
  7121. display: block;
  7122. }
  7123. .ant-upload {
  7124. font-size: 12px;
  7125. outline: 0;
  7126. }
  7127. .ant-upload-btn {
  7128. display: block;
  7129. width: 100%;
  7130. outline: none;
  7131. }
  7132. .ant-upload input[type="file"] {
  7133. cursor: pointer;
  7134. }
  7135. .ant-upload.ant-upload-select {
  7136. display: inline-block;
  7137. }
  7138. .ant-upload.ant-upload-select-picture-card {
  7139. border: 1px dashed #d9d9d9;
  7140. width: 96px;
  7141. height: 96px;
  7142. border-radius: 4px;
  7143. background-color: #fbfbfb;
  7144. text-align: center;
  7145. cursor: pointer;
  7146. transition: border-color 0.3s ease;
  7147. display: inline-block;
  7148. vertical-align: top;
  7149. margin-right: 8px;
  7150. margin-bottom: 8px;
  7151. }
  7152. .ant-upload.ant-upload-select-picture-card > .ant-upload {
  7153. display: block;
  7154. width: 100%;
  7155. height: 100%;
  7156. padding: 20px 0;
  7157. }
  7158. .ant-upload.ant-upload-select-picture-card:hover {
  7159. border-color: #58a3ff;
  7160. }
  7161. .ant-upload.ant-upload-drag {
  7162. border: 1px dashed #d9d9d9;
  7163. transition: border-color 0.3s ease;
  7164. cursor: pointer;
  7165. border-radius: 4px;
  7166. text-align: center;
  7167. width: 100%;
  7168. height: 100%;
  7169. position: relative;
  7170. }
  7171. .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  7172. border: 2px dashed #80b9ff;
  7173. }
  7174. .ant-upload.ant-upload-drag.ant-upload-disabled {
  7175. cursor: not-allowed;
  7176. }
  7177. .ant-upload.ant-upload-drag .ant-upload-btn {
  7178. display: table;
  7179. height: 100%;
  7180. }
  7181. .ant-upload.ant-upload-drag .ant-upload-drag-container {
  7182. display: table-cell;
  7183. vertical-align: middle;
  7184. }
  7185. .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  7186. border-color: #80b9ff;
  7187. }
  7188. .ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  7189. height: 60px;
  7190. margin-bottom: 24px;
  7191. }
  7192. .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  7193. font-size: 80px;
  7194. margin-top: -5px;
  7195. color: #80b9ff;
  7196. }
  7197. .ant-upload.ant-upload-drag p.ant-upload-text {
  7198. font-size: 14px;
  7199. }
  7200. .ant-upload.ant-upload-drag p.ant-upload-hint {
  7201. font-size: 12px;
  7202. color: rgba(0, 0, 0, 0.43);
  7203. }
  7204. .ant-upload.ant-upload-drag .anticon-plus {
  7205. font-size: 30px;
  7206. transition: all 0.3s ease;
  7207. color: rgba(0, 0, 0, 0.25);
  7208. }
  7209. .ant-upload.ant-upload-drag .anticon-plus:hover {
  7210. color: rgba(0, 0, 0, 0.43);
  7211. }
  7212. .ant-upload.ant-upload-drag:hover .anticon-plus {
  7213. color: rgba(0, 0, 0, 0.43);
  7214. }
  7215. .ant-upload-list {
  7216. overflow: hidden;
  7217. }
  7218. .ant-upload-list-item {
  7219. overflow: hidden;
  7220. margin-top: 8px;
  7221. font-size: 12px;
  7222. }
  7223. .ant-upload-list-item-info {
  7224. height: 22px;
  7225. line-height: 22px;
  7226. padding: 0 4px;
  7227. transition: background-color 0.3s ease;
  7228. }
  7229. .ant-upload-list-item-info .anticon-paper-clip {
  7230. margin-right: 4px;
  7231. font-size: 12px;
  7232. color: rgba(0, 0, 0, 0.43);
  7233. }
  7234. .ant-upload-list-item-info .anticon-cross {
  7235. display: inline-block;
  7236. font-size: 12px;
  7237. font-size: 10px \9;
  7238. transform: scale(0.83333333) rotate(0deg);
  7239. /* IE6-IE8 */
  7240. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7241. zoom: 1;
  7242. transition: all 0.3s ease;
  7243. opacity: 0;
  7244. cursor: pointer;
  7245. float: right;
  7246. color: rgba(0, 0, 0, 0.43);
  7247. line-height: 22px;
  7248. }
  7249. :root .ant-upload-list-item-info .anticon-cross {
  7250. filter: none;
  7251. }
  7252. :root .ant-upload-list-item-info .anticon-cross {
  7253. font-size: 12px;
  7254. }
  7255. .ant-upload-list-item-info .anticon-cross:hover {
  7256. color: rgba(0, 0, 0, 0.65);
  7257. }
  7258. .ant-upload-list-item:hover .ant-upload-list-item-info {
  7259. background-color: #f2f8ff;
  7260. }
  7261. .ant-upload-list-item:hover .anticon-cross {
  7262. opacity: 1;
  7263. }
  7264. .ant-upload-list-item-error,
  7265. .ant-upload-list-item-error .anticon-paper-clip,
  7266. .ant-upload-list-item-error .ant-upload-list-item-name {
  7267. color: #f04134;
  7268. }
  7269. .ant-upload-list-item-error .anticon-cross {
  7270. opacity: 1;
  7271. color: #f04134 !important;
  7272. }
  7273. .ant-upload-list-item-progress {
  7274. padding: 0 8px 0 20px;
  7275. margin-top: -2px;
  7276. margin-bottom: 1px;
  7277. font-size: 12px;
  7278. }
  7279. .ant-upload-list-item-progress .ant-progress-line-inner {
  7280. vertical-align: middle;
  7281. }
  7282. .ant-upload-list-picture .ant-upload-list-item,
  7283. .ant-upload-list-picture-card .ant-upload-list-item {
  7284. padding: 8px;
  7285. border-radius: 4px;
  7286. border: 1px solid #d9d9d9;
  7287. height: 66px;
  7288. position: relative;
  7289. }
  7290. .ant-upload-list-picture .ant-upload-list-item:hover,
  7291. .ant-upload-list-picture-card .ant-upload-list-item:hover {
  7292. background: transparent;
  7293. }
  7294. .ant-upload-list-picture .ant-upload-list-item-error,
  7295. .ant-upload-list-picture-card .ant-upload-list-item-error {
  7296. border-color: #f04134;
  7297. }
  7298. .ant-upload-list-picture .ant-upload-list-item-info,
  7299. .ant-upload-list-picture-card .ant-upload-list-item-info {
  7300. padding: 0;
  7301. }
  7302. .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
  7303. .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  7304. background: transparent;
  7305. }
  7306. .ant-upload-list-picture .ant-upload-list-item-uploading,
  7307. .ant-upload-list-picture-card .ant-upload-list-item-uploading {
  7308. border-style: dashed;
  7309. }
  7310. .ant-upload-list-picture .ant-upload-list-item-thumbnail,
  7311. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  7312. width: 48px;
  7313. height: 48px;
  7314. position: absolute;
  7315. top: 8px;
  7316. left: 8px;
  7317. }
  7318. .ant-upload-list-picture .ant-upload-list-item-thumbnail img,
  7319. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  7320. width: 48px;
  7321. height: 48px;
  7322. display: block;
  7323. overflow: hidden;
  7324. border-radius: 4px;
  7325. }
  7326. .ant-upload-list-picture .ant-upload-list-item-thumbnail.anticon:before,
  7327. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail.anticon:before {
  7328. line-height: 48px;
  7329. font-size: 24px;
  7330. color: rgba(0, 0, 0, 0.43);
  7331. }
  7332. .ant-upload-list-picture .ant-upload-list-item-name,
  7333. .ant-upload-list-picture-card .ant-upload-list-item-name {
  7334. overflow: hidden;
  7335. text-overflow: ellipsis;
  7336. white-space: nowrap;
  7337. margin: 0 0 0 8px;
  7338. line-height: 44px;
  7339. transition: all 0.3s ease;
  7340. padding-left: 48px;
  7341. padding-right: 8px;
  7342. max-width: 100%;
  7343. display: inline-block;
  7344. box-sizing: border-box;
  7345. }
  7346. .ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
  7347. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  7348. line-height: 28px;
  7349. }
  7350. .ant-upload-list-picture .ant-upload-list-item-progress,
  7351. .ant-upload-list-picture-card .ant-upload-list-item-progress {
  7352. padding-left: 56px;
  7353. margin-top: 0;
  7354. }
  7355. .ant-upload-list-picture .anticon-cross,
  7356. .ant-upload-list-picture-card .anticon-cross {
  7357. position: absolute;
  7358. right: 8px;
  7359. top: 8px;
  7360. line-height: 1;
  7361. }
  7362. .ant-upload-list-picture-card {
  7363. display: inline;
  7364. }
  7365. .ant-upload-list-picture-card .ant-upload-list-item {
  7366. display: inline-block;
  7367. width: 96px;
  7368. height: 96px;
  7369. margin: 0 8px 8px 0;
  7370. }
  7371. .ant-upload-list-picture-card .ant-upload-list-item-info {
  7372. height: 100%;
  7373. position: relative;
  7374. }
  7375. .ant-upload-list-picture-card .ant-upload-list-item-info:before {
  7376. content: ' ';
  7377. position: absolute;
  7378. z-index: 1;
  7379. background-color: rgba(0, 0, 0, 0.5);
  7380. transition: all .3s;
  7381. opacity: 0;
  7382. width: 100%;
  7383. height: 100%;
  7384. }
  7385. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-eye-o,
  7386. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-delete {
  7387. z-index: 10;
  7388. transition: all .3;
  7389. cursor: pointer;
  7390. font-size: 16px;
  7391. width: 16px;
  7392. color: rgba(255, 255, 255, 0.91);
  7393. opacity: 0;
  7394. margin: 0 4px;
  7395. }
  7396. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-eye-o:hover,
  7397. .ant-upload-list-picture-card .ant-upload-list-item-info .anticon-delete:hover {
  7398. color: #fff;
  7399. }
  7400. .ant-upload-list-picture-card .ant-upload-list-item-info:hover:before {
  7401. opacity: 1;
  7402. }
  7403. .ant-upload-list-picture-card .ant-upload-list-item-info:hover .anticon-eye-o,
  7404. .ant-upload-list-picture-card .ant-upload-list-item-info:hover .anticon-delete {
  7405. opacity: 1;
  7406. }
  7407. .ant-upload-list-picture-card .ant-upload-list-item-actions {
  7408. position: absolute;
  7409. left: 50%;
  7410. top: 50%;
  7411. transform: translate(-50%, -50%);
  7412. z-index: 10;
  7413. white-space: nowrap;
  7414. }
  7415. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
  7416. .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  7417. display: block;
  7418. width: 100%;
  7419. height: 100%;
  7420. position: static;
  7421. }
  7422. .ant-upload-list-picture-card .ant-upload-list-item-name {
  7423. display: none;
  7424. }
  7425. .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  7426. background-color: #fbfbfb;
  7427. }
  7428. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  7429. height: auto;
  7430. }
  7431. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info:before,
  7432. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o,
  7433. .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  7434. display: none;
  7435. }
  7436. .ant-upload-list-picture-card .ant-upload-list-item-uploading-text {
  7437. margin-top: 18px;
  7438. color: rgba(0, 0, 0, 0.43);
  7439. }
  7440. .ant-upload-list-picture-card .ant-upload-list-item-progress {
  7441. padding-left: 0;
  7442. }
  7443. .ant-upload-list .ant-upload-success-icon {
  7444. color: #00a854;
  7445. font-weight: bold;
  7446. }
  7447. .ant-upload-list .ant-upload-margin-top-enter {
  7448. animation: uploadMarginTopIn 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  7449. }
  7450. .ant-upload-list .ant-upload-margin-top-leave {
  7451. animation: uploadMarginTopOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  7452. }
  7453. @keyframes uploadMarginTopIn {
  7454. from {
  7455. margin-top: -25px;
  7456. opacity: 0;
  7457. }
  7458. }
  7459. @keyframes uploadMarginTopOut {
  7460. to {
  7461. margin-top: -25px;
  7462. opacity: 0;
  7463. }
  7464. }
  7465. .ant-progress {
  7466. display: inline-block;
  7467. }
  7468. .ant-progress-line {
  7469. width: 100%;
  7470. font-size: 12px;
  7471. position: relative;
  7472. }
  7473. .ant-progress-outer {
  7474. display: inline-block;
  7475. width: 100%;
  7476. margin-right: 0;
  7477. padding-right: 0;
  7478. }
  7479. .ant-progress-show-info .ant-progress-outer {
  7480. padding-right: 45px;
  7481. margin-right: -45px;
  7482. }
  7483. .ant-progress-inner {
  7484. display: inline-block;
  7485. width: 100%;
  7486. background-color: #f7f7f7;
  7487. border-radius: 100px;
  7488. vertical-align: middle;
  7489. }
  7490. .ant-progress-circle-trail {
  7491. stroke: #f7f7f7;
  7492. }
  7493. .ant-progress-circle-path {
  7494. stroke: #58a3ff;
  7495. }
  7496. .ant-progress-bg {
  7497. border-radius: 100px;
  7498. background-color: #58a3ff;
  7499. transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  7500. position: relative;
  7501. }
  7502. .ant-progress-text {
  7503. width: 35px;
  7504. text-align: left;
  7505. font-size: 1em;
  7506. margin-left: 10px;
  7507. vertical-align: middle;
  7508. display: inline-block;
  7509. font-family: tahoma;
  7510. position: relative;
  7511. top: -1px;
  7512. }
  7513. .ant-progress-text .anticon {
  7514. font-size: 12px;
  7515. }
  7516. .ant-progress-status-active .ant-progress-bg:before {
  7517. content: "";
  7518. opacity: 0;
  7519. position: absolute;
  7520. top: 0;
  7521. left: 0;
  7522. right: 0;
  7523. bottom: 0;
  7524. background: #fff;
  7525. border-radius: 10px;
  7526. animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  7527. }
  7528. .ant-progress-status-exception .ant-progress-bg {
  7529. background-color: #f04134;
  7530. }
  7531. .ant-progress-status-exception .ant-progress-text {
  7532. color: #f04134;
  7533. }
  7534. .ant-progress-status-exception .ant-progress-circle-path {
  7535. stroke: #f04134;
  7536. }
  7537. .ant-progress-status-success .ant-progress-bg {
  7538. background-color: #00a854;
  7539. }
  7540. .ant-progress-status-success .ant-progress-text {
  7541. color: #00a854;
  7542. }
  7543. .ant-progress-status-success .ant-progress-circle-path {
  7544. stroke: #00a854;
  7545. }
  7546. .ant-progress-circle .ant-progress-inner {
  7547. position: relative;
  7548. line-height: 1;
  7549. background-color: transparent;
  7550. }
  7551. .ant-progress-circle .ant-progress-text {
  7552. display: block;
  7553. position: absolute;
  7554. width: 100%;
  7555. text-align: center;
  7556. line-height: 1;
  7557. top: 50%;
  7558. transform: translateY(-50%);
  7559. left: 0;
  7560. font-family: tahoma;
  7561. margin: 0;
  7562. }
  7563. .ant-progress-circle .ant-progress-text .anticon {
  7564. font-size: 1.16666667em;
  7565. }
  7566. .ant-progress-circle .ant-progress-status-exception .ant-progress-text {
  7567. color: #f04134;
  7568. }
  7569. .ant-progress-circle .ant-progress-status-success .ant-progress-text {
  7570. color: #00a854;
  7571. }
  7572. @keyframes ant-progress-active {
  7573. 0% {
  7574. opacity: 0.1;
  7575. width: 0;
  7576. }
  7577. 20% {
  7578. opacity: 0.5;
  7579. width: 0;
  7580. }
  7581. 100% {
  7582. opacity: 0;
  7583. width: 100%;
  7584. }
  7585. }
  7586. .ant-tooltip {
  7587. position: absolute;
  7588. z-index: 1060;
  7589. display: block;
  7590. visibility: visible;
  7591. font-size: 12px;
  7592. line-height: 1.5;
  7593. }
  7594. .ant-tooltip-hidden {
  7595. display: none;
  7596. }
  7597. .ant-tooltip-placement-top,
  7598. .ant-tooltip-placement-topLeft,
  7599. .ant-tooltip-placement-topRight {
  7600. padding: 5px 0 8px 0;
  7601. }
  7602. .ant-tooltip-placement-right,
  7603. .ant-tooltip-placement-rightTop,
  7604. .ant-tooltip-placement-rightBottom {
  7605. padding: 0 5px 0 8px;
  7606. }
  7607. .ant-tooltip-placement-bottom,
  7608. .ant-tooltip-placement-bottomLeft,
  7609. .ant-tooltip-placement-bottomRight {
  7610. padding: 8px 0 5px 0;
  7611. }
  7612. .ant-tooltip-placement-left,
  7613. .ant-tooltip-placement-leftTop,
  7614. .ant-tooltip-placement-leftBottom {
  7615. padding: 0 8px 0 5px;
  7616. }
  7617. .ant-tooltip-inner {
  7618. max-width: 250px;
  7619. padding: 8px 10px;
  7620. color: #fff;
  7621. text-align: left;
  7622. text-decoration: none;
  7623. background-color: rgba(64, 64, 64, 0.85);
  7624. border-radius: 4px;
  7625. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  7626. min-height: 34px;
  7627. }
  7628. .ant-tooltip-arrow {
  7629. position: absolute;
  7630. width: 0;
  7631. height: 0;
  7632. border-color: transparent;
  7633. border-style: solid;
  7634. }
  7635. .ant-tooltip-placement-top .ant-tooltip-arrow,
  7636. .ant-tooltip-placement-topLeft .ant-tooltip-arrow,
  7637. .ant-tooltip-placement-topRight .ant-tooltip-arrow {
  7638. bottom: 3px;
  7639. border-width: 5px 5px 0;
  7640. border-top-color: rgba(64, 64, 64, 0.85);
  7641. }
  7642. .ant-tooltip-placement-top .ant-tooltip-arrow {
  7643. left: 50%;
  7644. margin-left: -5px;
  7645. }
  7646. .ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  7647. left: 16px;
  7648. }
  7649. .ant-tooltip-placement-topRight .ant-tooltip-arrow {
  7650. right: 16px;
  7651. }
  7652. .ant-tooltip-placement-right .ant-tooltip-arrow,
  7653. .ant-tooltip-placement-rightTop .ant-tooltip-arrow,
  7654. .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  7655. left: 3px;
  7656. border-width: 5px 5px 5px 0;
  7657. border-right-color: rgba(64, 64, 64, 0.85);
  7658. }
  7659. .ant-tooltip-placement-right .ant-tooltip-arrow {
  7660. top: 50%;
  7661. margin-top: -5px;
  7662. }
  7663. .ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  7664. top: 8px;
  7665. }
  7666. .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  7667. bottom: 8px;
  7668. }
  7669. .ant-tooltip-placement-left .ant-tooltip-arrow,
  7670. .ant-tooltip-placement-leftTop .ant-tooltip-arrow,
  7671. .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  7672. right: 3px;
  7673. border-width: 5px 0 5px 5px;
  7674. border-left-color: rgba(64, 64, 64, 0.85);
  7675. }
  7676. .ant-tooltip-placement-left .ant-tooltip-arrow {
  7677. top: 50%;
  7678. margin-top: -5px;
  7679. }
  7680. .ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  7681. top: 8px;
  7682. }
  7683. .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  7684. bottom: 8px;
  7685. }
  7686. .ant-tooltip-placement-bottom .ant-tooltip-arrow,
  7687. .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
  7688. .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  7689. top: 3px;
  7690. border-width: 0 5px 5px;
  7691. border-bottom-color: rgba(64, 64, 64, 0.85);
  7692. }
  7693. .ant-tooltip-placement-bottom .ant-tooltip-arrow {
  7694. left: 50%;
  7695. margin-left: -5px;
  7696. }
  7697. .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  7698. left: 16px;
  7699. }
  7700. .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  7701. right: 16px;
  7702. }
  7703. .ant-menu {
  7704. outline: none;
  7705. margin-bottom: 0;
  7706. padding-left: 0;
  7707. list-style: none;
  7708. z-index: 1050;
  7709. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  7710. color: rgba(0, 0, 0, 0.65);
  7711. background: #fff;
  7712. line-height: 46px;
  7713. }
  7714. .ant-menu-hidden {
  7715. display: none;
  7716. }
  7717. .ant-menu-item-group-list {
  7718. margin: 0;
  7719. padding: 0;
  7720. }
  7721. .ant-menu-item-group-title {
  7722. color: rgba(0, 0, 0, 0.43);
  7723. font-size: 12px;
  7724. line-height: 1.5;
  7725. padding: 8px 16px;
  7726. }
  7727. .ant-menu-item,
  7728. .ant-menu-submenu,
  7729. .ant-menu-submenu-title {
  7730. cursor: pointer;
  7731. transition: all 0.3s ease;
  7732. }
  7733. .ant-menu-item:active,
  7734. .ant-menu-submenu-title:active {
  7735. background: #f2f8ff;
  7736. }
  7737. .ant-menu-submenu .ant-menu-sub {
  7738. cursor: initial;
  7739. }
  7740. .ant-menu-item > a {
  7741. display: block;
  7742. color: rgba(0, 0, 0, 0.65);
  7743. }
  7744. .ant-menu-item > a:hover {
  7745. color: #58a3ff;
  7746. }
  7747. .ant-menu-item > a:before {
  7748. position: absolute;
  7749. background-color: transparent;
  7750. width: 100%;
  7751. height: 100%;
  7752. top: 0;
  7753. left: 0;
  7754. bottom: 0;
  7755. right: 0;
  7756. content: '';
  7757. }
  7758. .ant-menu-item-divider {
  7759. height: 1px;
  7760. overflow: hidden;
  7761. background-color: #e9e9e9;
  7762. line-height: 0;
  7763. }
  7764. .ant-menu-item:hover,
  7765. .ant-menu-item-active,
  7766. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
  7767. .ant-menu-submenu-active,
  7768. .ant-menu-submenu-title:hover {
  7769. color: #58a3ff;
  7770. }
  7771. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open {
  7772. z-index: 1050;
  7773. }
  7774. .ant-menu-horizontal .ant-menu-item,
  7775. .ant-menu-horizontal .ant-menu-submenu {
  7776. margin-top: -1px;
  7777. }
  7778. .ant-menu-horizontal > .ant-menu-item:hover,
  7779. .ant-menu-horizontal > .ant-menu-item-active,
  7780. .ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  7781. background-color: transparent;
  7782. }
  7783. .ant-menu-item-selected {
  7784. color: #58a3ff;
  7785. transform: translateZ(0);
  7786. }
  7787. .ant-menu-item-selected > a,
  7788. .ant-menu-item-selected > a:hover {
  7789. color: #58a3ff;
  7790. }
  7791. .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  7792. background-color: #f2f8ff;
  7793. }
  7794. .ant-menu-horizontal,
  7795. .ant-menu-inline,
  7796. .ant-menu-vertical {
  7797. z-index: auto;
  7798. }
  7799. .ant-menu-inline,
  7800. .ant-menu-vertical {
  7801. border-right: 1px solid #e9e9e9;
  7802. }
  7803. .ant-menu-inline .ant-menu-item,
  7804. .ant-menu-vertical .ant-menu-item {
  7805. border-right: 3px solid transparent;
  7806. margin-left: -1px;
  7807. left: 1px;
  7808. position: relative;
  7809. z-index: 1;
  7810. }
  7811. .ant-menu-vertical.ant-menu-sub {
  7812. border-right: 0;
  7813. }
  7814. .ant-menu-vertical.ant-menu-sub .ant-menu-item {
  7815. border-right: 0;
  7816. margin-left: 0;
  7817. left: 0;
  7818. }
  7819. .ant-menu-vertical.ant-menu-sub > .ant-menu-item:first-child {
  7820. border-radius: 4px 4px 0 0;
  7821. }
  7822. .ant-menu-vertical.ant-menu-sub > .ant-menu-item:last-child,
  7823. .ant-menu-vertical.ant-menu-sub > .ant-menu-item-group:last-child > .ant-menu-item-group-list:last-child > .ant-menu-item:last-child {
  7824. border-radius: 0 0 4px 4px;
  7825. }
  7826. .ant-menu-inline .ant-menu-selected,
  7827. .ant-menu-inline .ant-menu-item-selected {
  7828. border-right-color: #58a3ff;
  7829. transform: translateZ(0);
  7830. }
  7831. .ant-menu-submenu-horizontal > .ant-menu {
  7832. top: 100%;
  7833. left: 0;
  7834. position: absolute;
  7835. min-width: 100%;
  7836. margin-top: 7px;
  7837. z-index: 1050;
  7838. }
  7839. .ant-menu-submenu-vertical {
  7840. z-index: 1;
  7841. }
  7842. .ant-menu-submenu-vertical > .ant-menu {
  7843. top: 0;
  7844. left: 100%;
  7845. position: absolute;
  7846. min-width: 160px;
  7847. margin-left: 4px;
  7848. z-index: 1050;
  7849. }
  7850. .ant-menu-item,
  7851. .ant-menu-submenu-title {
  7852. margin: 0;
  7853. padding: 0 20px;
  7854. position: relative;
  7855. display: block;
  7856. white-space: nowrap;
  7857. }
  7858. .ant-menu-item .anticon,
  7859. .ant-menu-submenu-title .anticon {
  7860. min-width: 14px;
  7861. margin-right: 8px;
  7862. transition: all .3s;
  7863. }
  7864. .ant-menu > .ant-menu-item-divider {
  7865. height: 1px;
  7866. margin: 1px 0;
  7867. overflow: hidden;
  7868. padding: 0;
  7869. line-height: 0;
  7870. background-color: #e5e5e5;
  7871. }
  7872. .ant-menu-submenu {
  7873. position: relative;
  7874. }
  7875. .ant-menu-submenu > .ant-menu {
  7876. background-color: #fff;
  7877. border-radius: 4px;
  7878. }
  7879. .ant-menu-submenu-vertical > .ant-menu-submenu-title:after {
  7880. font-family: "anticon" !important;
  7881. font-style: normal;
  7882. vertical-align: baseline;
  7883. text-align: center;
  7884. text-transform: none;
  7885. text-rendering: auto;
  7886. position: absolute;
  7887. transition: transform .3s ease;
  7888. content: "\E61D";
  7889. right: 16px;
  7890. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  7891. transform: rotate(270deg) scale(0.75);
  7892. }
  7893. .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  7894. font-family: "anticon" !important;
  7895. font-style: normal;
  7896. vertical-align: baseline;
  7897. text-align: center;
  7898. text-transform: none;
  7899. text-rendering: auto;
  7900. position: absolute;
  7901. transition: transform .3s ease;
  7902. content: "\E61D";
  7903. right: 16px;
  7904. top: 0;
  7905. display: inline-block;
  7906. font-size: 12px;
  7907. font-size: 8px \9;
  7908. transform: scale(0.66666667) rotate(0deg);
  7909. /* IE6-IE8 */
  7910. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  7911. zoom: 1;
  7912. }
  7913. :root .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  7914. filter: none;
  7915. }
  7916. :root .ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  7917. font-size: 12px;
  7918. }
  7919. .ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title:after {
  7920. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  7921. transform: rotate(180deg) scale(0.75);
  7922. }
  7923. .ant-menu-vertical .ant-menu-submenu-selected {
  7924. color: #58a3ff;
  7925. }
  7926. .ant-menu-vertical .ant-menu-submenu-selected > a {
  7927. color: #58a3ff;
  7928. }
  7929. .ant-menu-horizontal {
  7930. border: 0;
  7931. border-bottom: 1px solid #e9e9e9;
  7932. box-shadow: none;
  7933. z-index: 0;
  7934. }
  7935. .ant-menu-horizontal > .ant-menu-item,
  7936. .ant-menu-horizontal > .ant-menu-submenu {
  7937. position: relative;
  7938. top: 1px;
  7939. float: left;
  7940. border-bottom: 2px solid transparent;
  7941. }
  7942. .ant-menu-horizontal > .ant-menu-item:hover,
  7943. .ant-menu-horizontal > .ant-menu-submenu:hover,
  7944. .ant-menu-horizontal > .ant-menu-item-active,
  7945. .ant-menu-horizontal > .ant-menu-submenu-active,
  7946. .ant-menu-horizontal > .ant-menu-item-open,
  7947. .ant-menu-horizontal > .ant-menu-submenu-open,
  7948. .ant-menu-horizontal > .ant-menu-item-selected,
  7949. .ant-menu-horizontal > .ant-menu-submenu-selected {
  7950. border-bottom: 2px solid #58a3ff;
  7951. color: #58a3ff;
  7952. }
  7953. .ant-menu-horizontal > .ant-menu-item > a,
  7954. .ant-menu-horizontal > .ant-menu-submenu > a {
  7955. display: block;
  7956. color: rgba(0, 0, 0, 0.65);
  7957. }
  7958. .ant-menu-horizontal > .ant-menu-item > a:hover,
  7959. .ant-menu-horizontal > .ant-menu-submenu > a:hover {
  7960. color: #58a3ff;
  7961. }
  7962. .ant-menu-horizontal:after {
  7963. content: " ";
  7964. display: block;
  7965. height: 0;
  7966. clear: both;
  7967. }
  7968. .ant-menu-vertical .ant-menu-item,
  7969. .ant-menu-inline .ant-menu-item,
  7970. .ant-menu-vertical .ant-menu-submenu-title,
  7971. .ant-menu-inline .ant-menu-submenu-title {
  7972. padding: 0 16px;
  7973. font-size: 12px;
  7974. line-height: 42px;
  7975. height: 42px;
  7976. overflow: hidden;
  7977. text-overflow: ellipsis;
  7978. }
  7979. .ant-menu-item-group-list .ant-menu-item,
  7980. .ant-menu-item-group-list .ant-menu-submenu-title {
  7981. padding: 0 16px 0 28px;
  7982. }
  7983. .ant-menu-vertical.ant-menu-sub {
  7984. padding: 0;
  7985. transform-origin: 0 0;
  7986. }
  7987. .ant-menu-vertical.ant-menu-sub > .ant-menu-item,
  7988. .ant-menu-vertical.ant-menu-sub > .ant-menu-submenu {
  7989. transform-origin: 0 0;
  7990. }
  7991. .ant-menu-root.ant-menu-vertical,
  7992. .ant-menu-root.ant-menu-inline {
  7993. box-shadow: none;
  7994. }
  7995. .ant-menu-sub.ant-menu-inline {
  7996. padding: 0;
  7997. border: 0;
  7998. box-shadow: none;
  7999. border-radius: 0;
  8000. }
  8001. .ant-menu-sub.ant-menu-inline > .ant-menu-item,
  8002. .ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  8003. line-height: 42px;
  8004. height: 42px;
  8005. list-style-type: disc;
  8006. list-style-position: inside;
  8007. }
  8008. .ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  8009. padding-left: 32px;
  8010. }
  8011. .ant-menu-item-disabled,
  8012. .ant-menu-submenu-disabled {
  8013. color: rgba(0, 0, 0, 0.25) !important;
  8014. cursor: not-allowed;
  8015. background: none;
  8016. border-color: transparent !important;
  8017. }
  8018. .ant-menu-item-disabled > a,
  8019. .ant-menu-submenu-disabled > a {
  8020. color: rgba(0, 0, 0, 0.25) !important;
  8021. pointer-events: none;
  8022. }
  8023. .ant-menu-dark,
  8024. .ant-menu-dark .ant-menu-sub {
  8025. color: rgba(255, 255, 255, 0.67);
  8026. background: #404040;
  8027. }
  8028. .ant-menu-dark .ant-menu-inline.ant-menu-sub {
  8029. background: #333;
  8030. }
  8031. .ant-menu-dark.ant-menu-horizontal {
  8032. border-bottom-color: #404040;
  8033. }
  8034. .ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
  8035. .ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  8036. border-color: #404040;
  8037. border-bottom: 0;
  8038. top: 0;
  8039. }
  8040. .ant-menu-dark .ant-menu-item,
  8041. .ant-menu-dark .ant-menu-item-group-title,
  8042. .ant-menu-dark .ant-menu-item > a {
  8043. color: rgba(255, 255, 255, 0.67);
  8044. }
  8045. .ant-menu-dark.ant-menu-inline,
  8046. .ant-menu-dark.ant-menu-vertical {
  8047. border-right: 0;
  8048. }
  8049. .ant-menu-dark.ant-menu-inline .ant-menu-item,
  8050. .ant-menu-dark.ant-menu-vertical .ant-menu-item {
  8051. border-right: 0;
  8052. margin-left: 0;
  8053. left: 0;
  8054. }
  8055. .ant-menu-dark .ant-menu-item:hover,
  8056. .ant-menu-dark .ant-menu-item-active,
  8057. .ant-menu-dark .ant-menu-submenu-active,
  8058. .ant-menu-dark:not(.ant-menu-inline) .ant-menu-submenu-open,
  8059. .ant-menu-dark .ant-menu-submenu-selected,
  8060. .ant-menu-dark .ant-menu-submenu:hover,
  8061. .ant-menu-dark .ant-menu-submenu-title:hover {
  8062. background-color: transparent;
  8063. color: #fff;
  8064. }
  8065. .ant-menu-dark .ant-menu-item:hover > a,
  8066. .ant-menu-dark .ant-menu-item-active > a,
  8067. .ant-menu-dark .ant-menu-submenu-active > a,
  8068. .ant-menu-dark:not(.ant-menu-inline) .ant-menu-submenu-open > a,
  8069. .ant-menu-dark .ant-menu-submenu-selected > a,
  8070. .ant-menu-dark .ant-menu-submenu:hover > a,
  8071. .ant-menu-dark .ant-menu-submenu-title:hover > a {
  8072. color: #fff;
  8073. }
  8074. .ant-menu-dark .ant-menu-item-selected {
  8075. border-right: 0;
  8076. color: #fff;
  8077. }
  8078. .ant-menu-dark .ant-menu-item-selected > a,
  8079. .ant-menu-dark .ant-menu-item-selected > a:hover {
  8080. color: #fff;
  8081. }
  8082. .ant-menu.ant-menu-dark .ant-menu-item-selected {
  8083. background-color: transparent;
  8084. }
  8085. .ant-menu-dark.ant-menu-inline .ant-menu-item-selected {
  8086. background-color: #58a3ff;
  8087. }
  8088. .ant-menu-dark .ant-menu-item-disabled,
  8089. .ant-menu-dark .ant-menu-submenu-disabled,
  8090. .ant-menu-dark .ant-menu-item-disabled > a,
  8091. .ant-menu-dark .ant-menu-submenu-disabled > a {
  8092. opacity: 0.8;
  8093. color: rgba(255, 255, 255, 0.35) !important;
  8094. }
  8095. .ant-calendar-picker-container {
  8096. position: absolute;
  8097. z-index: 1050;
  8098. }
  8099. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,
  8100. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight,
  8101. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,
  8102. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight {
  8103. animation-name: antSlideDownIn;
  8104. }
  8105. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,
  8106. .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight,
  8107. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,
  8108. .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight {
  8109. animation-name: antSlideUpIn;
  8110. }
  8111. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,
  8112. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight {
  8113. animation-name: antSlideDownOut;
  8114. }
  8115. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,
  8116. .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight {
  8117. animation-name: antSlideUpOut;
  8118. }
  8119. .ant-calendar-picker {
  8120. position: relative;
  8121. display: inline-block;
  8122. outline: none;
  8123. font-size: 12px;
  8124. transition: opacity 0.3s;
  8125. }
  8126. .ant-calendar-picker-input {
  8127. outline: none;
  8128. }
  8129. .ant-calendar-picker:hover .ant-calendar-picker-input {
  8130. border-color: #58a3ff;
  8131. }
  8132. .ant-calendar-picker-clear {
  8133. opacity: 0;
  8134. pointer-events: none;
  8135. z-index: 1;
  8136. position: absolute;
  8137. right: 7px;
  8138. background: #fff;
  8139. top: 50%;
  8140. font-size: 12px;
  8141. color: rgba(0, 0, 0, 0.25);
  8142. width: 14px;
  8143. height: 14px;
  8144. margin-top: -7px;
  8145. line-height: 14px;
  8146. cursor: pointer;
  8147. transition: color 0.3s, opacity 0.3s;
  8148. }
  8149. .ant-calendar-picker-clear:hover {
  8150. color: rgba(0, 0, 0, 0.43);
  8151. }
  8152. .ant-calendar-picker:hover .ant-calendar-picker-clear {
  8153. opacity: 1;
  8154. pointer-events: auto;
  8155. }
  8156. .ant-calendar-picker-icon {
  8157. position: absolute;
  8158. user-select: none;
  8159. transition: all .3s;
  8160. width: 12px;
  8161. height: 12px;
  8162. line-height: 12px;
  8163. right: 8px;
  8164. color: rgba(0, 0, 0, 0.43);
  8165. top: 50%;
  8166. margin-top: -6px;
  8167. }
  8168. .ant-calendar-picker-icon:after {
  8169. content: "\E6BB";
  8170. font-family: "anticon";
  8171. font-size: 12px;
  8172. color: rgba(0, 0, 0, 0.43);
  8173. display: inline-block;
  8174. line-height: 1;
  8175. vertical-align: bottom;
  8176. }
  8177. .ant-calendar {
  8178. position: relative;
  8179. outline: none;
  8180. width: 231px;
  8181. border: 1px solid #fff;
  8182. list-style: none;
  8183. font-size: 12px;
  8184. text-align: left;
  8185. background-color: #fff;
  8186. border-radius: 4px;
  8187. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  8188. background-clip: padding-box;
  8189. line-height: 1.5;
  8190. }
  8191. .ant-calendar-input-wrap {
  8192. height: 34px;
  8193. padding: 6px;
  8194. border-bottom: 1px solid #e9e9e9;
  8195. }
  8196. .ant-calendar-input {
  8197. border: 0;
  8198. width: 100%;
  8199. cursor: auto;
  8200. outline: 0;
  8201. height: 22px;
  8202. }
  8203. .ant-calendar-week-number {
  8204. width: 286px;
  8205. }
  8206. .ant-calendar-week-number-cell {
  8207. text-align: center;
  8208. }
  8209. .ant-calendar-header {
  8210. height: 34px;
  8211. line-height: 34px;
  8212. text-align: center;
  8213. user-select: none;
  8214. border-bottom: 1px solid #e9e9e9;
  8215. }
  8216. .ant-calendar-header a:hover {
  8217. color: #80b9ff;
  8218. }
  8219. .ant-calendar-header .ant-calendar-century-select,
  8220. .ant-calendar-header .ant-calendar-decade-select,
  8221. .ant-calendar-header .ant-calendar-year-select,
  8222. .ant-calendar-header .ant-calendar-month-select {
  8223. padding: 0 2px;
  8224. font-weight: bold;
  8225. display: inline-block;
  8226. color: rgba(0, 0, 0, 0.65);
  8227. line-height: 34px;
  8228. }
  8229. .ant-calendar-header .ant-calendar-century-select-arrow,
  8230. .ant-calendar-header .ant-calendar-decade-select-arrow,
  8231. .ant-calendar-header .ant-calendar-year-select-arrow,
  8232. .ant-calendar-header .ant-calendar-month-select-arrow {
  8233. display: none;
  8234. }
  8235. .ant-calendar-header .ant-calendar-prev-century-btn,
  8236. .ant-calendar-header .ant-calendar-next-century-btn,
  8237. .ant-calendar-header .ant-calendar-prev-decade-btn,
  8238. .ant-calendar-header .ant-calendar-next-decade-btn,
  8239. .ant-calendar-header .ant-calendar-prev-month-btn,
  8240. .ant-calendar-header .ant-calendar-next-month-btn,
  8241. .ant-calendar-header .ant-calendar-prev-year-btn,
  8242. .ant-calendar-header .ant-calendar-next-year-btn {
  8243. position: absolute;
  8244. top: 0;
  8245. color: rgba(0, 0, 0, 0.43);
  8246. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  8247. padding: 0 5px;
  8248. font-size: 16px;
  8249. display: inline-block;
  8250. line-height: 34px;
  8251. }
  8252. .ant-calendar-header .ant-calendar-prev-century-btn,
  8253. .ant-calendar-header .ant-calendar-prev-decade-btn,
  8254. .ant-calendar-header .ant-calendar-prev-year-btn {
  8255. left: 7px;
  8256. }
  8257. .ant-calendar-header .ant-calendar-prev-century-btn:after,
  8258. .ant-calendar-header .ant-calendar-prev-decade-btn:after,
  8259. .ant-calendar-header .ant-calendar-prev-year-btn:after {
  8260. content: '\AB';
  8261. }
  8262. .ant-calendar-header .ant-calendar-next-century-btn,
  8263. .ant-calendar-header .ant-calendar-next-decade-btn,
  8264. .ant-calendar-header .ant-calendar-next-year-btn {
  8265. right: 7px;
  8266. }
  8267. .ant-calendar-header .ant-calendar-next-century-btn:after,
  8268. .ant-calendar-header .ant-calendar-next-decade-btn:after,
  8269. .ant-calendar-header .ant-calendar-next-year-btn:after {
  8270. content: '\BB';
  8271. }
  8272. .ant-calendar-header .ant-calendar-prev-month-btn {
  8273. left: 29px;
  8274. }
  8275. .ant-calendar-header .ant-calendar-prev-month-btn:after {
  8276. content: '\2039';
  8277. }
  8278. .ant-calendar-header .ant-calendar-next-month-btn {
  8279. right: 29px;
  8280. }
  8281. .ant-calendar-header .ant-calendar-next-month-btn:after {
  8282. content: '\203A';
  8283. }
  8284. .ant-calendar-body {
  8285. padding: 4px 8px;
  8286. }
  8287. .ant-calendar table {
  8288. border-collapse: collapse;
  8289. max-width: 100%;
  8290. background-color: transparent;
  8291. width: 100%;
  8292. }
  8293. .ant-calendar table,
  8294. .ant-calendar th,
  8295. .ant-calendar td {
  8296. border: 0;
  8297. }
  8298. .ant-calendar-calendar-table {
  8299. border-spacing: 0;
  8300. margin-bottom: 0;
  8301. }
  8302. .ant-calendar-column-header {
  8303. line-height: 18px;
  8304. width: 33px;
  8305. padding: 6px 0;
  8306. text-align: center;
  8307. }
  8308. .ant-calendar-column-header .ant-calendar-column-header-inner {
  8309. display: block;
  8310. font-weight: normal;
  8311. }
  8312. .ant-calendar-week-number-header .ant-calendar-column-header-inner {
  8313. display: none;
  8314. }
  8315. .ant-calendar-cell {
  8316. padding: 4px 0;
  8317. }
  8318. .ant-calendar-date {
  8319. display: block;
  8320. margin: 0 auto;
  8321. color: rgba(0, 0, 0, 0.65);
  8322. border-radius: 2px;
  8323. width: 20px;
  8324. height: 20px;
  8325. line-height: 18px;
  8326. border: 1px solid transparent;
  8327. padding: 0;
  8328. background: transparent;
  8329. text-align: center;
  8330. transition: background 0.3s ease;
  8331. }
  8332. .ant-calendar-date-panel {
  8333. position: relative;
  8334. }
  8335. .ant-calendar-date:hover {
  8336. background: #f2f8ff;
  8337. cursor: pointer;
  8338. }
  8339. .ant-calendar-date:active {
  8340. color: #fff;
  8341. background: #80b9ff;
  8342. }
  8343. .ant-calendar-today .ant-calendar-date {
  8344. border-color: #58a3ff;
  8345. font-weight: bold;
  8346. color: #58a3ff;
  8347. }
  8348. .ant-calendar-last-month-cell .ant-calendar-date,
  8349. .ant-calendar-next-month-btn-day .ant-calendar-date {
  8350. color: rgba(0, 0, 0, 0.25);
  8351. }
  8352. .ant-calendar-selected-day .ant-calendar-date {
  8353. background: #58a3ff;
  8354. color: #fff;
  8355. border: 1px solid transparent;
  8356. }
  8357. .ant-calendar-selected-day .ant-calendar-date:hover {
  8358. background: #58a3ff;
  8359. }
  8360. .ant-calendar-disabled-cell .ant-calendar-date {
  8361. cursor: not-allowed;
  8362. color: #bcbcbc;
  8363. background: #f3f3f3;
  8364. border-radius: 0;
  8365. width: auto;
  8366. border: 1px solid transparent;
  8367. }
  8368. .ant-calendar-disabled-cell .ant-calendar-date:hover {
  8369. background: #f3f3f3;
  8370. }
  8371. .ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
  8372. border-top-left-radius: 4px;
  8373. border-bottom-left-radius: 4px;
  8374. }
  8375. .ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
  8376. border-top-right-radius: 4px;
  8377. border-bottom-right-radius: 4px;
  8378. }
  8379. .ant-calendar-footer-btn {
  8380. border-top: 1px solid #e9e9e9;
  8381. text-align: center;
  8382. display: block;
  8383. line-height: 38px;
  8384. }
  8385. .ant-calendar-footer > div {
  8386. display: inline-block;
  8387. }
  8388. .ant-calendar .ant-calendar-today-btn,
  8389. .ant-calendar .ant-calendar-clear-btn {
  8390. display: inline-block;
  8391. text-align: center;
  8392. margin: 0 0 0 8px;
  8393. }
  8394. .ant-calendar .ant-calendar-today-btn-disabled,
  8395. .ant-calendar .ant-calendar-clear-btn-disabled {
  8396. color: rgba(0, 0, 0, 0.25);
  8397. cursor: not-allowed;
  8398. }
  8399. .ant-calendar .ant-calendar-clear-btn {
  8400. display: none;
  8401. position: absolute;
  8402. right: 5px;
  8403. text-indent: -76px;
  8404. overflow: hidden;
  8405. width: 20px;
  8406. height: 20px;
  8407. text-align: center;
  8408. line-height: 20px;
  8409. top: 7px;
  8410. margin: 0;
  8411. }
  8412. .ant-calendar .ant-calendar-clear-btn:after {
  8413. font-family: 'anticon';
  8414. text-rendering: optimizeLegibility;
  8415. -webkit-font-smoothing: antialiased;
  8416. -moz-osx-font-smoothing: grayscale;
  8417. content: "\E62E";
  8418. font-size: 12px;
  8419. color: rgba(0, 0, 0, 0.25);
  8420. display: inline-block;
  8421. line-height: 1;
  8422. width: 20px;
  8423. text-indent: 43px;
  8424. transition: color 0.3s ease;
  8425. }
  8426. .ant-calendar .ant-calendar-clear-btn:hover:after {
  8427. color: rgba(0, 0, 0, 0.43);
  8428. }
  8429. .ant-calendar .ant-calendar-ok-btn {
  8430. display: inline-block;
  8431. margin-bottom: 0;
  8432. font-weight: 500;
  8433. text-align: center;
  8434. touch-action: manipulation;
  8435. cursor: pointer;
  8436. background-image: none;
  8437. border: 1px solid transparent;
  8438. white-space: nowrap;
  8439. line-height: 1.5;
  8440. padding: 4px 15px;
  8441. user-select: none;
  8442. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  8443. position: relative;
  8444. color: #fff;
  8445. background-color: #58a3ff;
  8446. border-color: #58a3ff;
  8447. padding: 1px 7px;
  8448. font-size: 12px;
  8449. border-radius: 4px;
  8450. position: absolute;
  8451. bottom: 8px;
  8452. right: 9px;
  8453. }
  8454. .ant-calendar .ant-calendar-ok-btn > .anticon {
  8455. line-height: 1;
  8456. }
  8457. .ant-calendar .ant-calendar-ok-btn,
  8458. .ant-calendar .ant-calendar-ok-btn:active,
  8459. .ant-calendar .ant-calendar-ok-btn:focus {
  8460. outline: 0;
  8461. }
  8462. .ant-calendar .ant-calendar-ok-btn:not([disabled]):hover {
  8463. text-decoration: none;
  8464. }
  8465. .ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
  8466. outline: 0;
  8467. transition: none;
  8468. }
  8469. .ant-calendar .ant-calendar-ok-btn.disabled,
  8470. .ant-calendar .ant-calendar-ok-btn[disabled] {
  8471. cursor: not-allowed;
  8472. }
  8473. .ant-calendar .ant-calendar-ok-btn.disabled > *,
  8474. .ant-calendar .ant-calendar-ok-btn[disabled] > * {
  8475. pointer-events: none;
  8476. }
  8477. .ant-calendar .ant-calendar-ok-btn-lg {
  8478. padding: 4px 15px 5px 15px;
  8479. font-size: 14px;
  8480. border-radius: 4px;
  8481. }
  8482. .ant-calendar .ant-calendar-ok-btn-sm {
  8483. padding: 1px 7px;
  8484. font-size: 12px;
  8485. border-radius: 4px;
  8486. }
  8487. .ant-calendar .ant-calendar-ok-btn > a:only-child {
  8488. color: currentColor;
  8489. }
  8490. .ant-calendar .ant-calendar-ok-btn > a:only-child:after {
  8491. content: '';
  8492. position: absolute;
  8493. top: 0;
  8494. left: 0;
  8495. bottom: 0;
  8496. right: 0;
  8497. background: transparent;
  8498. }
  8499. .ant-calendar .ant-calendar-ok-btn:hover,
  8500. .ant-calendar .ant-calendar-ok-btn:focus {
  8501. color: #fff;
  8502. background-color: #80b9ff;
  8503. border-color: #80b9ff;
  8504. }
  8505. .ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
  8506. .ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
  8507. color: currentColor;
  8508. }
  8509. .ant-calendar .ant-calendar-ok-btn:hover > a:only-child:after,
  8510. .ant-calendar .ant-calendar-ok-btn:focus > a:only-child:after {
  8511. content: '';
  8512. position: absolute;
  8513. top: 0;
  8514. left: 0;
  8515. bottom: 0;
  8516. right: 0;
  8517. background: transparent;
  8518. }
  8519. .ant-calendar .ant-calendar-ok-btn:active,
  8520. .ant-calendar .ant-calendar-ok-btn.active {
  8521. color: #fff;
  8522. background-color: #4386e7;
  8523. border-color: #4386e7;
  8524. }
  8525. .ant-calendar .ant-calendar-ok-btn:active > a:only-child,
  8526. .ant-calendar .ant-calendar-ok-btn.active > a:only-child {
  8527. color: currentColor;
  8528. }
  8529. .ant-calendar .ant-calendar-ok-btn:active > a:only-child:after,
  8530. .ant-calendar .ant-calendar-ok-btn.active > a:only-child:after {
  8531. content: '';
  8532. position: absolute;
  8533. top: 0;
  8534. left: 0;
  8535. bottom: 0;
  8536. right: 0;
  8537. background: transparent;
  8538. }
  8539. .ant-calendar .ant-calendar-ok-btn.disabled,
  8540. .ant-calendar .ant-calendar-ok-btn[disabled],
  8541. .ant-calendar .ant-calendar-ok-btn.disabled:hover,
  8542. .ant-calendar .ant-calendar-ok-btn[disabled]:hover,
  8543. .ant-calendar .ant-calendar-ok-btn.disabled:focus,
  8544. .ant-calendar .ant-calendar-ok-btn[disabled]:focus,
  8545. .ant-calendar .ant-calendar-ok-btn.disabled:active,
  8546. .ant-calendar .ant-calendar-ok-btn[disabled]:active,
  8547. .ant-calendar .ant-calendar-ok-btn.disabled.active,
  8548. .ant-calendar .ant-calendar-ok-btn[disabled].active {
  8549. color: rgba(0, 0, 0, 0.25);
  8550. background-color: #f7f7f7;
  8551. border-color: #d9d9d9;
  8552. }
  8553. .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
  8554. .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
  8555. .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
  8556. .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
  8557. .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
  8558. .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
  8559. .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
  8560. .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
  8561. .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
  8562. .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  8563. color: currentColor;
  8564. }
  8565. .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child:after,
  8566. .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child:after,
  8567. .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child:after,
  8568. .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child:after,
  8569. .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child:after,
  8570. .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child:after,
  8571. .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child:after,
  8572. .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child:after,
  8573. .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child:after,
  8574. .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child:after {
  8575. content: '';
  8576. position: absolute;
  8577. top: 0;
  8578. left: 0;
  8579. bottom: 0;
  8580. right: 0;
  8581. background: transparent;
  8582. }
  8583. .ant-calendar .ant-calendar-ok-btn-disabled {
  8584. color: rgba(0, 0, 0, 0.25);
  8585. background-color: #f7f7f7;
  8586. border-color: #d9d9d9;
  8587. cursor: not-allowed;
  8588. }
  8589. .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child {
  8590. color: currentColor;
  8591. }
  8592. .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child:after {
  8593. content: '';
  8594. position: absolute;
  8595. top: 0;
  8596. left: 0;
  8597. bottom: 0;
  8598. right: 0;
  8599. background: transparent;
  8600. }
  8601. .ant-calendar .ant-calendar-ok-btn-disabled:hover {
  8602. color: rgba(0, 0, 0, 0.25);
  8603. background-color: #f7f7f7;
  8604. border-color: #d9d9d9;
  8605. }
  8606. .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child {
  8607. color: currentColor;
  8608. }
  8609. .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child:after {
  8610. content: '';
  8611. position: absolute;
  8612. top: 0;
  8613. left: 0;
  8614. bottom: 0;
  8615. right: 0;
  8616. background: transparent;
  8617. }
  8618. .ant-calendar-range-picker-input {
  8619. background-color: transparent;
  8620. border: 0;
  8621. height: 18px;
  8622. line-height: 18px;
  8623. outline: 0;
  8624. width: 43%;
  8625. text-align: center;
  8626. }
  8627. .ant-calendar-range-picker-input[disabled] {
  8628. cursor: not-allowed;
  8629. }
  8630. .ant-calendar-range-picker-separator {
  8631. color: rgba(0, 0, 0, 0.43);
  8632. }
  8633. .ant-calendar-range {
  8634. width: 470px;
  8635. overflow: hidden;
  8636. }
  8637. .ant-calendar-range .ant-calendar-date-panel::after {
  8638. content: ".";
  8639. display: block;
  8640. height: 0;
  8641. clear: both;
  8642. visibility: hidden;
  8643. }
  8644. .ant-calendar-range-part {
  8645. width: 50%;
  8646. position: relative;
  8647. }
  8648. .ant-calendar-range-left {
  8649. float: left;
  8650. }
  8651. .ant-calendar-range-left .ant-calendar-time-picker-inner {
  8652. border-right: 2px solid #e9e9e9;
  8653. }
  8654. .ant-calendar-range-right {
  8655. float: right;
  8656. }
  8657. .ant-calendar-range-right .ant-calendar-time-picker-inner {
  8658. border-left: 2px solid #e9e9e9;
  8659. }
  8660. .ant-calendar-range-middle {
  8661. position: absolute;
  8662. left: 50%;
  8663. width: 20px;
  8664. margin-left: -132px;
  8665. text-align: center;
  8666. height: 34px;
  8667. line-height: 34px;
  8668. color: rgba(0, 0, 0, 0.43);
  8669. }
  8670. .ant-calendar-range-right .ant-calendar-date-input-wrap {
  8671. margin-left: -118px;
  8672. }
  8673. .ant-calendar-range.ant-calendar-time .ant-calendar-range-middle {
  8674. margin-left: -12px;
  8675. }
  8676. .ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap {
  8677. margin-left: 0;
  8678. }
  8679. .ant-calendar-range .ant-calendar-input-wrap {
  8680. position: relative;
  8681. height: 34px;
  8682. }
  8683. .ant-calendar-range .ant-calendar-input,
  8684. .ant-calendar-range .ant-calendar-time-picker-input {
  8685. position: relative;
  8686. display: inline-block;
  8687. padding: 4px 7px;
  8688. width: 100%;
  8689. height: 28px;
  8690. cursor: text;
  8691. font-size: 12px;
  8692. line-height: 1.5;
  8693. color: rgba(0, 0, 0, 0.65);
  8694. background-color: #fff;
  8695. background-image: none;
  8696. border: 1px solid #d9d9d9;
  8697. border-radius: 4px;
  8698. transition: all .3s;
  8699. height: 22px;
  8700. border: 0;
  8701. box-shadow: none;
  8702. }
  8703. .ant-calendar-range .ant-calendar-input::-moz-placeholder,
  8704. .ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
  8705. color: #ccc;
  8706. opacity: 1;
  8707. }
  8708. .ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
  8709. .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
  8710. color: #ccc;
  8711. }
  8712. .ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
  8713. .ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
  8714. color: #ccc;
  8715. }
  8716. .ant-calendar-range .ant-calendar-input:hover,
  8717. .ant-calendar-range .ant-calendar-time-picker-input:hover {
  8718. border-color: #80b9ff;
  8719. }
  8720. .ant-calendar-range .ant-calendar-input:focus,
  8721. .ant-calendar-range .ant-calendar-time-picker-input:focus {
  8722. border-color: #80b9ff;
  8723. outline: 0;
  8724. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  8725. }
  8726. .ant-calendar-range .ant-calendar-input[disabled],
  8727. .ant-calendar-range .ant-calendar-time-picker-input[disabled] {
  8728. background-color: #f7f7f7;
  8729. opacity: 1;
  8730. cursor: not-allowed;
  8731. color: rgba(0, 0, 0, 0.25);
  8732. }
  8733. .ant-calendar-range .ant-calendar-input[disabled]:hover,
  8734. .ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover {
  8735. border-color: #e2e2e2;
  8736. }
  8737. textarea.ant-calendar-range .ant-calendar-input,
  8738. textarea.ant-calendar-range .ant-calendar-time-picker-input {
  8739. max-width: 100%;
  8740. height: auto;
  8741. vertical-align: bottom;
  8742. }
  8743. .ant-calendar-range .ant-calendar-input-lg,
  8744. .ant-calendar-range .ant-calendar-time-picker-input-lg {
  8745. padding: 6px 7px;
  8746. height: 32px;
  8747. }
  8748. .ant-calendar-range .ant-calendar-input-sm,
  8749. .ant-calendar-range .ant-calendar-time-picker-input-sm {
  8750. padding: 1px 7px;
  8751. height: 22px;
  8752. }
  8753. .ant-calendar-range .ant-calendar-input:focus,
  8754. .ant-calendar-range .ant-calendar-time-picker-input:focus {
  8755. box-shadow: none;
  8756. }
  8757. .ant-calendar-range .ant-calendar-time-picker-icon {
  8758. display: none;
  8759. }
  8760. .ant-calendar-range.ant-calendar-week-number {
  8761. width: 574px;
  8762. }
  8763. .ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part {
  8764. width: 286px;
  8765. }
  8766. .ant-calendar-range .ant-calendar-year-panel,
  8767. .ant-calendar-range .ant-calendar-month-panel {
  8768. top: 34px;
  8769. }
  8770. .ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel {
  8771. top: 0;
  8772. }
  8773. .ant-calendar-range .ant-calendar-decade-panel-table,
  8774. .ant-calendar-range .ant-calendar-year-panel-table,
  8775. .ant-calendar-range .ant-calendar-month-panel-table {
  8776. height: 208px;
  8777. }
  8778. .ant-calendar-range .ant-calendar-in-range-cell {
  8779. border-radius: 0;
  8780. position: relative;
  8781. }
  8782. .ant-calendar-range .ant-calendar-in-range-cell > div {
  8783. position: relative;
  8784. z-index: 1;
  8785. }
  8786. .ant-calendar-range .ant-calendar-in-range-cell:before {
  8787. content: '';
  8788. display: block;
  8789. background: #f2f8ff;
  8790. border-radius: 0;
  8791. border: 0;
  8792. position: absolute;
  8793. top: 4px;
  8794. bottom: 4px;
  8795. left: 0;
  8796. right: 0;
  8797. }
  8798. .ant-calendar-range-bottom {
  8799. text-align: right;
  8800. }
  8801. .ant-calendar-range-bottom .ant-calendar-footer-btn {
  8802. padding-right: 16px;
  8803. }
  8804. div.ant-calendar-range-quick-selector {
  8805. display: block;
  8806. text-align: left;
  8807. border-top: 1px solid #e9e9e9;
  8808. padding: 10.5px 10px;
  8809. }
  8810. div.ant-calendar-range-quick-selector > a {
  8811. margin-right: 16px;
  8812. }
  8813. .ant-calendar-range .ant-calendar-header,
  8814. .ant-calendar-range .ant-calendar-month-panel-header,
  8815. .ant-calendar-range .ant-calendar-year-panel-header {
  8816. border-bottom: 0;
  8817. }
  8818. .ant-calendar-range .ant-calendar-body,
  8819. .ant-calendar-range .ant-calendar-month-panel-body,
  8820. .ant-calendar-range .ant-calendar-year-panel-body {
  8821. border-top: 1px solid #e9e9e9;
  8822. }
  8823. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker {
  8824. height: 207px;
  8825. width: 100%;
  8826. top: 68px;
  8827. z-index: 2;
  8828. }
  8829. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel {
  8830. height: 241px;
  8831. margin-top: -34px;
  8832. }
  8833. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
  8834. padding-top: 34px;
  8835. height: 100%;
  8836. background: none;
  8837. }
  8838. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
  8839. display: inline-block;
  8840. height: 100%;
  8841. background-color: #fff;
  8842. border-top: 1px solid #e9e9e9;
  8843. }
  8844. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select {
  8845. height: 100%;
  8846. }
  8847. .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul {
  8848. max-height: 100%;
  8849. }
  8850. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn {
  8851. padding: 9px 12px 9px 0;
  8852. display: block;
  8853. zoom: 1;
  8854. }
  8855. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:before,
  8856. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:after {
  8857. content: " ";
  8858. display: table;
  8859. }
  8860. .ant-calendar-range.ant-calendar-time .ant-calendar-footer-btn:after {
  8861. clear: both;
  8862. visibility: hidden;
  8863. font-size: 0;
  8864. height: 0;
  8865. }
  8866. .ant-calendar-range.ant-calendar-time .ant-calendar-ok-btn {
  8867. position: static;
  8868. height: 22px;
  8869. }
  8870. .ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  8871. margin-right: 12px;
  8872. }
  8873. .ant-calendar-range.ant-calendar-time .ant-calendar-today-btn {
  8874. margin: 8px 12px;
  8875. height: 22px;
  8876. line-height: 22px;
  8877. }
  8878. .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker {
  8879. height: 247px;
  8880. }
  8881. .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker-panel {
  8882. height: 281px;
  8883. }
  8884. .ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
  8885. border-top-color: transparent;
  8886. }
  8887. .ant-calendar-time-picker {
  8888. position: absolute;
  8889. width: 100%;
  8890. top: 34px;
  8891. background-color: #fff;
  8892. }
  8893. .ant-calendar-time-picker-panel {
  8894. z-index: 1050;
  8895. position: absolute;
  8896. width: 100%;
  8897. }
  8898. .ant-calendar-time-picker-inner {
  8899. display: inline-block;
  8900. position: relative;
  8901. outline: none;
  8902. list-style: none;
  8903. font-size: 12px;
  8904. text-align: left;
  8905. background-color: #fff;
  8906. background-clip: padding-box;
  8907. line-height: 1.5;
  8908. overflow: hidden;
  8909. width: 100%;
  8910. }
  8911. .ant-calendar-time-picker-combobox {
  8912. width: 100%;
  8913. }
  8914. .ant-calendar-time-picker-1-column,
  8915. .ant-calendar-time-picker-1-column .ant-calendar-time-picker-select {
  8916. width: 100%;
  8917. }
  8918. .ant-calendar-time-picker-2-columns .ant-calendar-time-picker-select {
  8919. width: 50%;
  8920. }
  8921. .ant-calendar-time-picker-1-column .ant-calendar-time-picker-select li,
  8922. .ant-calendar-time-picker-2-columns .ant-calendar-time-picker-select li {
  8923. padding: 0;
  8924. text-align: center;
  8925. }
  8926. .ant-calendar-time-picker-input-wrap {
  8927. display: none;
  8928. }
  8929. .ant-calendar-time-picker-select {
  8930. float: left;
  8931. font-size: 12px;
  8932. border: 1px solid #e9e9e9;
  8933. border-width: 0 1px;
  8934. margin-left: -1px;
  8935. box-sizing: border-box;
  8936. width: 33.6%;
  8937. overflow: hidden;
  8938. position: relative;
  8939. height: 206px;
  8940. }
  8941. .ant-calendar-time-picker-select:hover {
  8942. overflow-y: auto;
  8943. }
  8944. .ant-calendar-time-picker-select:first-child {
  8945. border-left: 0;
  8946. margin-left: 0;
  8947. }
  8948. .ant-calendar-time-picker-select:last-child {
  8949. border-right: 0;
  8950. }
  8951. .ant-calendar-time-picker-select ul {
  8952. list-style: none;
  8953. box-sizing: border-box;
  8954. margin: 0;
  8955. padding: 0;
  8956. width: 100%;
  8957. max-height: 206px;
  8958. }
  8959. .ant-calendar-time-picker-select li {
  8960. padding: 0 0 0 28px;
  8961. list-style: none;
  8962. box-sizing: content-box;
  8963. margin: 0;
  8964. width: 100%;
  8965. height: 24px;
  8966. line-height: 24px;
  8967. cursor: pointer;
  8968. user-select: none;
  8969. transition: background 0.3s ease;
  8970. }
  8971. .ant-calendar-time-picker-select li:last-child:after {
  8972. content: '';
  8973. height: 182px;
  8974. display: block;
  8975. }
  8976. .ant-calendar-time-picker-select li:hover {
  8977. background: #f2f8ff;
  8978. }
  8979. li.ant-calendar-time-picker-select-option-selected {
  8980. background: #f7f7f7;
  8981. font-weight: bold;
  8982. }
  8983. li.ant-calendar-time-picker-select-option-disabled {
  8984. color: rgba(0, 0, 0, 0.25);
  8985. }
  8986. li.ant-calendar-time-picker-select-option-disabled:hover {
  8987. background: transparent;
  8988. cursor: not-allowed;
  8989. }
  8990. .ant-calendar-time .ant-calendar-day-select {
  8991. padding: 0 2px;
  8992. font-weight: bold;
  8993. display: inline-block;
  8994. color: rgba(0, 0, 0, 0.65);
  8995. line-height: 34px;
  8996. }
  8997. .ant-calendar-time .ant-calendar-footer {
  8998. text-align: right;
  8999. position: relative;
  9000. height: auto;
  9001. line-height: auto;
  9002. }
  9003. .ant-calendar-time .ant-calendar-footer-btn {
  9004. padding: 10px 0;
  9005. line-height: 1.5;
  9006. text-align: right;
  9007. }
  9008. .ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn {
  9009. float: left;
  9010. margin: 0;
  9011. padding-left: 12px;
  9012. }
  9013. .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  9014. display: inline-block;
  9015. text-align: center;
  9016. margin-right: 60px;
  9017. }
  9018. .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
  9019. color: rgba(0, 0, 0, 0.25);
  9020. }
  9021. .ant-calendar-month-panel {
  9022. left: 0;
  9023. top: 1px;
  9024. bottom: 0;
  9025. right: 0;
  9026. background: #fff;
  9027. z-index: 10;
  9028. position: absolute;
  9029. outline: none;
  9030. border-radius: 4px;
  9031. }
  9032. .ant-calendar-month-panel-hidden {
  9033. display: none;
  9034. }
  9035. .ant-calendar-month-panel-header {
  9036. height: 34px;
  9037. line-height: 34px;
  9038. text-align: center;
  9039. user-select: none;
  9040. border-bottom: 1px solid #e9e9e9;
  9041. }
  9042. .ant-calendar-month-panel-header a:hover {
  9043. color: #80b9ff;
  9044. }
  9045. .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
  9046. .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
  9047. .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
  9048. .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
  9049. padding: 0 2px;
  9050. font-weight: bold;
  9051. display: inline-block;
  9052. color: rgba(0, 0, 0, 0.65);
  9053. line-height: 34px;
  9054. }
  9055. .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,
  9056. .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,
  9057. .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow,
  9058. .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow {
  9059. display: none;
  9060. }
  9061. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
  9062. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
  9063. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
  9064. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
  9065. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
  9066. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
  9067. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
  9068. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  9069. position: absolute;
  9070. top: 0;
  9071. color: rgba(0, 0, 0, 0.43);
  9072. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9073. padding: 0 5px;
  9074. font-size: 16px;
  9075. display: inline-block;
  9076. line-height: 34px;
  9077. }
  9078. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
  9079. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
  9080. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn {
  9081. left: 7px;
  9082. }
  9083. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:after,
  9084. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:after,
  9085. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:after {
  9086. content: '\AB';
  9087. }
  9088. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
  9089. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
  9090. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  9091. right: 7px;
  9092. }
  9093. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,
  9094. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,
  9095. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after {
  9096. content: '\BB';
  9097. }
  9098. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn {
  9099. left: 29px;
  9100. }
  9101. .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:after {
  9102. content: '\2039';
  9103. }
  9104. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn {
  9105. right: 29px;
  9106. }
  9107. .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:after {
  9108. content: '\203A';
  9109. }
  9110. .ant-calendar-month-panel-table {
  9111. table-layout: fixed;
  9112. width: 100%;
  9113. height: 248px;
  9114. border-collapse: separate;
  9115. }
  9116. .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
  9117. background: #58a3ff;
  9118. color: #fff;
  9119. }
  9120. .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
  9121. background: #58a3ff;
  9122. color: #fff;
  9123. }
  9124. .ant-calendar-month-panel-cell {
  9125. text-align: center;
  9126. }
  9127. .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
  9128. .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
  9129. cursor: not-allowed;
  9130. color: #bcbcbc;
  9131. background: #f3f3f3;
  9132. }
  9133. .ant-calendar-month-panel-month {
  9134. display: inline-block;
  9135. margin: 0 auto;
  9136. color: rgba(0, 0, 0, 0.65);
  9137. background: transparent;
  9138. text-align: center;
  9139. height: 24px;
  9140. line-height: 24px;
  9141. padding: 0 6px;
  9142. border-radius: 4px;
  9143. transition: background 0.3s ease;
  9144. }
  9145. .ant-calendar-month-panel-month:hover {
  9146. background: #f2f8ff;
  9147. cursor: pointer;
  9148. }
  9149. .ant-calendar-year-panel {
  9150. left: 0;
  9151. top: 1px;
  9152. bottom: 0;
  9153. right: 0;
  9154. background: #fff;
  9155. z-index: 10;
  9156. position: absolute;
  9157. outline: none;
  9158. border-radius: 4px;
  9159. }
  9160. .ant-calendar-year-panel-hidden {
  9161. display: none;
  9162. }
  9163. .ant-calendar-year-panel-header {
  9164. height: 34px;
  9165. line-height: 34px;
  9166. text-align: center;
  9167. user-select: none;
  9168. border-bottom: 1px solid #e9e9e9;
  9169. }
  9170. .ant-calendar-year-panel-header a:hover {
  9171. color: #80b9ff;
  9172. }
  9173. .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
  9174. .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
  9175. .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
  9176. .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
  9177. padding: 0 2px;
  9178. font-weight: bold;
  9179. display: inline-block;
  9180. color: rgba(0, 0, 0, 0.65);
  9181. line-height: 34px;
  9182. }
  9183. .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,
  9184. .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,
  9185. .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow,
  9186. .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow {
  9187. display: none;
  9188. }
  9189. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
  9190. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
  9191. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
  9192. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
  9193. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
  9194. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
  9195. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
  9196. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  9197. position: absolute;
  9198. top: 0;
  9199. color: rgba(0, 0, 0, 0.43);
  9200. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9201. padding: 0 5px;
  9202. font-size: 16px;
  9203. display: inline-block;
  9204. line-height: 34px;
  9205. }
  9206. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
  9207. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
  9208. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn {
  9209. left: 7px;
  9210. }
  9211. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:after,
  9212. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:after,
  9213. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:after {
  9214. content: '\AB';
  9215. }
  9216. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
  9217. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
  9218. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  9219. right: 7px;
  9220. }
  9221. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,
  9222. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,
  9223. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after {
  9224. content: '\BB';
  9225. }
  9226. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn {
  9227. left: 29px;
  9228. }
  9229. .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:after {
  9230. content: '\2039';
  9231. }
  9232. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn {
  9233. right: 29px;
  9234. }
  9235. .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:after {
  9236. content: '\203A';
  9237. }
  9238. .ant-calendar-year-panel-table {
  9239. table-layout: fixed;
  9240. width: 100%;
  9241. height: 248px;
  9242. border-collapse: separate;
  9243. }
  9244. .ant-calendar-year-panel-cell {
  9245. text-align: center;
  9246. }
  9247. .ant-calendar-year-panel-year {
  9248. display: inline-block;
  9249. margin: 0 auto;
  9250. color: rgba(0, 0, 0, 0.65);
  9251. background: transparent;
  9252. text-align: center;
  9253. height: 24px;
  9254. line-height: 24px;
  9255. padding: 0 6px;
  9256. border-radius: 4px;
  9257. transition: background 0.3s ease;
  9258. }
  9259. .ant-calendar-year-panel-year:hover {
  9260. background: #f2f8ff;
  9261. cursor: pointer;
  9262. }
  9263. .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
  9264. background: #58a3ff;
  9265. color: #fff;
  9266. }
  9267. .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
  9268. background: #58a3ff;
  9269. color: #fff;
  9270. }
  9271. .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
  9272. .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  9273. user-select: none;
  9274. color: rgba(0, 0, 0, 0.25);
  9275. }
  9276. .ant-calendar-decade-panel {
  9277. left: 0;
  9278. top: 0;
  9279. bottom: 0;
  9280. right: 0;
  9281. background: #fff;
  9282. z-index: 10;
  9283. position: absolute;
  9284. outline: none;
  9285. border-radius: 4px;
  9286. }
  9287. .ant-calendar-decade-panel-hidden {
  9288. display: none;
  9289. }
  9290. .ant-calendar-decade-panel-header {
  9291. height: 34px;
  9292. line-height: 34px;
  9293. text-align: center;
  9294. user-select: none;
  9295. border-bottom: 1px solid #e9e9e9;
  9296. }
  9297. .ant-calendar-decade-panel-header a:hover {
  9298. color: #80b9ff;
  9299. }
  9300. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
  9301. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
  9302. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
  9303. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
  9304. padding: 0 2px;
  9305. font-weight: bold;
  9306. display: inline-block;
  9307. color: rgba(0, 0, 0, 0.65);
  9308. line-height: 34px;
  9309. }
  9310. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,
  9311. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,
  9312. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow,
  9313. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow {
  9314. display: none;
  9315. }
  9316. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
  9317. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
  9318. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
  9319. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
  9320. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
  9321. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
  9322. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
  9323. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  9324. position: absolute;
  9325. top: 0;
  9326. color: rgba(0, 0, 0, 0.43);
  9327. font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
  9328. padding: 0 5px;
  9329. font-size: 16px;
  9330. display: inline-block;
  9331. line-height: 34px;
  9332. }
  9333. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
  9334. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
  9335. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn {
  9336. left: 7px;
  9337. }
  9338. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:after,
  9339. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:after,
  9340. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:after {
  9341. content: '\AB';
  9342. }
  9343. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
  9344. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
  9345. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  9346. right: 7px;
  9347. }
  9348. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,
  9349. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,
  9350. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after {
  9351. content: '\BB';
  9352. }
  9353. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn {
  9354. left: 29px;
  9355. }
  9356. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:after {
  9357. content: '\2039';
  9358. }
  9359. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn {
  9360. right: 29px;
  9361. }
  9362. .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:after {
  9363. content: '\203A';
  9364. }
  9365. .ant-calendar-decade-panel-table {
  9366. table-layout: fixed;
  9367. width: 100%;
  9368. height: 248px;
  9369. border-collapse: separate;
  9370. }
  9371. .ant-calendar-decade-panel-cell {
  9372. text-align: center;
  9373. white-space: nowrap;
  9374. }
  9375. .ant-calendar-decade-panel-decade {
  9376. display: inline-block;
  9377. margin: 0 auto;
  9378. color: rgba(0, 0, 0, 0.65);
  9379. background: transparent;
  9380. text-align: center;
  9381. height: 24px;
  9382. line-height: 24px;
  9383. padding: 0 6px;
  9384. border-radius: 4px;
  9385. transition: background 0.3s ease;
  9386. }
  9387. .ant-calendar-decade-panel-decade:hover {
  9388. background: #f2f8ff;
  9389. cursor: pointer;
  9390. }
  9391. .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
  9392. background: #58a3ff;
  9393. color: #fff;
  9394. }
  9395. .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
  9396. background: #58a3ff;
  9397. color: #fff;
  9398. }
  9399. .ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
  9400. .ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
  9401. user-select: none;
  9402. color: rgba(0, 0, 0, 0.25);
  9403. }
  9404. .ant-calendar-month .ant-calendar-month-panel,
  9405. .ant-calendar-month .ant-calendar-year-panel {
  9406. top: 0;
  9407. }
  9408. .ant-time-picker-panel {
  9409. max-width: 168px;
  9410. z-index: 1050;
  9411. position: absolute;
  9412. }
  9413. .ant-time-picker-panel-inner {
  9414. display: inline-block;
  9415. position: relative;
  9416. outline: none;
  9417. list-style: none;
  9418. font-size: 12px;
  9419. text-align: left;
  9420. background-color: #fff;
  9421. border-radius: 4px;
  9422. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  9423. background-clip: padding-box;
  9424. line-height: 1.5;
  9425. overflow: hidden;
  9426. left: -2px;
  9427. }
  9428. .ant-time-picker-panel-input {
  9429. margin: 0;
  9430. padding: 0;
  9431. border: 0;
  9432. width: 100%;
  9433. cursor: auto;
  9434. line-height: 1.5;
  9435. outline: 0;
  9436. }
  9437. .ant-time-picker-panel-input-wrap {
  9438. box-sizing: border-box;
  9439. position: relative;
  9440. padding: 6px;
  9441. border-bottom: 1px solid #e9e9e9;
  9442. }
  9443. .ant-time-picker-panel-input-invalid {
  9444. border-color: red;
  9445. }
  9446. .ant-time-picker-panel-clear-btn {
  9447. position: absolute;
  9448. right: 5px;
  9449. cursor: pointer;
  9450. overflow: hidden;
  9451. width: 20px;
  9452. height: 20px;
  9453. text-align: center;
  9454. line-height: 20px;
  9455. top: 5px;
  9456. margin: 0;
  9457. }
  9458. .ant-time-picker-panel-clear-btn:after {
  9459. font-size: 12px;
  9460. color: rgba(0, 0, 0, 0.25);
  9461. display: inline-block;
  9462. line-height: 1;
  9463. width: 20px;
  9464. transition: color 0.3s ease;
  9465. font-family: 'anticon';
  9466. text-rendering: optimizeLegibility;
  9467. -webkit-font-smoothing: antialiased;
  9468. -moz-osx-font-smoothing: grayscale;
  9469. content: "\E62E";
  9470. }
  9471. .ant-time-picker-panel-clear-btn:hover:after {
  9472. color: rgba(0, 0, 0, 0.43);
  9473. }
  9474. .ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap {
  9475. max-width: 112px;
  9476. }
  9477. .ant-time-picker-panel-select {
  9478. float: left;
  9479. font-size: 12px;
  9480. border-left: 1px solid #e9e9e9;
  9481. box-sizing: border-box;
  9482. width: 56px;
  9483. overflow: hidden;
  9484. position: relative;
  9485. max-height: 144px;
  9486. }
  9487. .ant-time-picker-panel-select:hover {
  9488. overflow-y: auto;
  9489. }
  9490. .ant-time-picker-panel-select:first-child {
  9491. border-left: 0;
  9492. margin-left: 0;
  9493. }
  9494. .ant-time-picker-panel-select:last-child {
  9495. border-right: 0;
  9496. }
  9497. .ant-time-picker-panel-select:only-child {
  9498. width: 100%;
  9499. }
  9500. .ant-time-picker-panel-select ul {
  9501. list-style: none;
  9502. box-sizing: border-box;
  9503. margin: 0;
  9504. padding: 0 0 120px;
  9505. width: 100%;
  9506. }
  9507. .ant-time-picker-panel-select li {
  9508. list-style: none;
  9509. box-sizing: content-box;
  9510. margin: 0;
  9511. padding: 0 0 0 16px;
  9512. width: 100%;
  9513. height: 24px;
  9514. line-height: 24px;
  9515. text-align: left;
  9516. cursor: pointer;
  9517. user-select: none;
  9518. transition: background 0.3s ease;
  9519. }
  9520. .ant-time-picker-panel-select li:hover {
  9521. background: #f2f8ff;
  9522. }
  9523. li.ant-time-picker-panel-select-option-selected {
  9524. background: #f7f7f7;
  9525. font-weight: bold;
  9526. }
  9527. li.ant-time-picker-panel-select-option-disabled {
  9528. color: rgba(0, 0, 0, 0.25);
  9529. }
  9530. li.ant-time-picker-panel-select-option-disabled:hover {
  9531. background: transparent;
  9532. cursor: not-allowed;
  9533. }
  9534. .ant-time-picker-panel-combobox {
  9535. zoom: 1;
  9536. }
  9537. .ant-time-picker-panel-combobox:before,
  9538. .ant-time-picker-panel-combobox:after {
  9539. content: " ";
  9540. display: table;
  9541. }
  9542. .ant-time-picker-panel-combobox:after {
  9543. clear: both;
  9544. visibility: hidden;
  9545. font-size: 0;
  9546. height: 0;
  9547. }
  9548. .ant-time-picker-panel-addon {
  9549. padding: 8px;
  9550. border-top: 1px solid #e9e9e9;
  9551. }
  9552. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft,
  9553. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight,
  9554. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft,
  9555. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight {
  9556. animation-name: antSlideDownIn;
  9557. }
  9558. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft,
  9559. .ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight,
  9560. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft,
  9561. .ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight {
  9562. animation-name: antSlideUpIn;
  9563. }
  9564. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft,
  9565. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight {
  9566. animation-name: antSlideDownOut;
  9567. }
  9568. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft,
  9569. .ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight {
  9570. animation-name: antSlideUpOut;
  9571. }
  9572. .ant-time-picker {
  9573. position: relative;
  9574. display: inline-block;
  9575. outline: none;
  9576. font-size: 12px;
  9577. transition: opacity 0.3s ease;
  9578. width: 100px;
  9579. }
  9580. .ant-time-picker-input {
  9581. position: relative;
  9582. display: inline-block;
  9583. padding: 4px 7px;
  9584. width: 100%;
  9585. height: 28px;
  9586. cursor: text;
  9587. font-size: 12px;
  9588. line-height: 1.5;
  9589. color: rgba(0, 0, 0, 0.65);
  9590. background-color: #fff;
  9591. background-image: none;
  9592. border: 1px solid #d9d9d9;
  9593. border-radius: 4px;
  9594. transition: all .3s;
  9595. }
  9596. .ant-time-picker-input::-moz-placeholder {
  9597. color: #ccc;
  9598. opacity: 1;
  9599. }
  9600. .ant-time-picker-input:-ms-input-placeholder {
  9601. color: #ccc;
  9602. }
  9603. .ant-time-picker-input::-webkit-input-placeholder {
  9604. color: #ccc;
  9605. }
  9606. .ant-time-picker-input:hover {
  9607. border-color: #80b9ff;
  9608. }
  9609. .ant-time-picker-input:focus {
  9610. border-color: #80b9ff;
  9611. outline: 0;
  9612. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  9613. }
  9614. .ant-time-picker-input[disabled] {
  9615. background-color: #f7f7f7;
  9616. opacity: 1;
  9617. cursor: not-allowed;
  9618. color: rgba(0, 0, 0, 0.25);
  9619. }
  9620. .ant-time-picker-input[disabled]:hover {
  9621. border-color: #e2e2e2;
  9622. }
  9623. textarea.ant-time-picker-input {
  9624. max-width: 100%;
  9625. height: auto;
  9626. vertical-align: bottom;
  9627. }
  9628. .ant-time-picker-input-lg {
  9629. padding: 6px 7px;
  9630. height: 32px;
  9631. }
  9632. .ant-time-picker-input-sm {
  9633. padding: 1px 7px;
  9634. height: 22px;
  9635. }
  9636. .ant-time-picker-large .ant-time-picker-input {
  9637. padding: 6px 7px;
  9638. height: 32px;
  9639. }
  9640. .ant-time-picker-small .ant-time-picker-input {
  9641. padding: 1px 7px;
  9642. height: 22px;
  9643. }
  9644. .ant-time-picker-open {
  9645. opacity: 0;
  9646. }
  9647. .ant-time-picker-icon {
  9648. position: absolute;
  9649. user-select: none;
  9650. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  9651. width: 12px;
  9652. height: 12px;
  9653. line-height: 12px;
  9654. right: 8px;
  9655. color: rgba(0, 0, 0, 0.43);
  9656. top: 50%;
  9657. margin-top: -6px;
  9658. }
  9659. .ant-time-picker-icon:after {
  9660. content: "\E641";
  9661. font-family: "anticon";
  9662. font-size: 12px;
  9663. color: rgba(0, 0, 0, 0.43);
  9664. display: inline-block;
  9665. line-height: 1;
  9666. vertical-align: bottom;
  9667. }
  9668. .ant-radio-group {
  9669. display: inline-block;
  9670. font-size: 12px;
  9671. }
  9672. .ant-radio-wrapper {
  9673. font-size: 12px;
  9674. display: inline-block;
  9675. position: relative;
  9676. white-space: nowrap;
  9677. margin-right: 8px;
  9678. cursor: pointer;
  9679. }
  9680. .ant-radio {
  9681. white-space: nowrap;
  9682. outline: none;
  9683. display: inline-block;
  9684. position: relative;
  9685. line-height: 1;
  9686. vertical-align: middle;
  9687. cursor: pointer;
  9688. }
  9689. .ant-radio-wrapper:hover .ant-radio .ant-radio-inner,
  9690. .ant-radio:hover .ant-radio-inner,
  9691. .ant-radio-focused .ant-radio-inner {
  9692. border-color: #58a3ff;
  9693. }
  9694. .ant-radio-inner {
  9695. position: relative;
  9696. top: 0;
  9697. left: 0;
  9698. display: block;
  9699. width: 14px;
  9700. height: 14px;
  9701. border-width: 1px;
  9702. border-style: solid;
  9703. border-radius: 14px;
  9704. border-color: #d9d9d9;
  9705. background-color: #fff;
  9706. transition: all 0.3s;
  9707. }
  9708. .ant-radio-inner:after {
  9709. position: absolute;
  9710. width: 6px;
  9711. height: 6px;
  9712. left: 3px;
  9713. top: 3px;
  9714. border-radius: 4px;
  9715. display: table;
  9716. border-top: 0;
  9717. border-left: 0;
  9718. content: ' ';
  9719. background-color: #58a3ff;
  9720. opacity: 0;
  9721. transform: scale(0);
  9722. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  9723. }
  9724. .ant-radio-input {
  9725. position: absolute;
  9726. left: 0;
  9727. z-index: 1;
  9728. cursor: pointer;
  9729. opacity: 0;
  9730. top: 0;
  9731. bottom: 0;
  9732. right: 0;
  9733. }
  9734. .ant-radio-checked .ant-radio-inner {
  9735. border-color: #58a3ff;
  9736. }
  9737. .ant-radio-checked .ant-radio-inner:after {
  9738. transform: scale(1);
  9739. opacity: 1;
  9740. transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  9741. }
  9742. .ant-radio-disabled .ant-radio-inner {
  9743. border-color: #d9d9d9 !important;
  9744. background-color: #f3f3f3;
  9745. }
  9746. .ant-radio-disabled .ant-radio-inner:after {
  9747. background-color: #ccc;
  9748. }
  9749. .ant-radio-disabled + span {
  9750. color: rgba(0, 0, 0, 0.25);
  9751. cursor: not-allowed;
  9752. }
  9753. span.ant-radio + * {
  9754. padding-left: 8px;
  9755. padding-right: 8px;
  9756. vertical-align: middle;
  9757. }
  9758. .ant-radio-button-wrapper {
  9759. margin: 0;
  9760. height: 28px;
  9761. line-height: 26px;
  9762. color: rgba(0, 0, 0, 0.65);
  9763. display: inline-block;
  9764. transition: all 0.3s ease;
  9765. cursor: pointer;
  9766. border: 1px solid #d9d9d9;
  9767. border-left: 0;
  9768. background: #fff;
  9769. padding: 0 16px;
  9770. }
  9771. .ant-radio-button-wrapper a {
  9772. color: rgba(0, 0, 0, 0.65);
  9773. }
  9774. .ant-radio-button-wrapper > .ant-radio-button {
  9775. margin-left: 0;
  9776. display: block;
  9777. width: 0;
  9778. height: 0;
  9779. }
  9780. .ant-radio-group-large .ant-radio-button-wrapper {
  9781. height: 32px;
  9782. line-height: 30px;
  9783. }
  9784. .ant-radio-group-small .ant-radio-button-wrapper {
  9785. height: 22px;
  9786. line-height: 20px;
  9787. padding: 0 12px;
  9788. }
  9789. .ant-radio-group-small .ant-radio-button-wrapper:first-child {
  9790. border-radius: 2px 0 0 2px;
  9791. }
  9792. .ant-radio-group-small .ant-radio-button-wrapper:last-child {
  9793. border-radius: 0 2px 2px 0;
  9794. }
  9795. .ant-radio-button-wrapper:first-child {
  9796. border-radius: 4px 0 0 4px;
  9797. border-left: 1px solid #d9d9d9;
  9798. }
  9799. .ant-radio-button-wrapper:last-child {
  9800. border-radius: 0 4px 4px 0;
  9801. }
  9802. .ant-radio-button-wrapper:first-child:last-child {
  9803. border-radius: 4px;
  9804. }
  9805. .ant-radio-button-wrapper:hover,
  9806. .ant-radio-button-wrapper-focused {
  9807. color: #58a3ff;
  9808. position: relative;
  9809. }
  9810. .ant-radio-button-wrapper .ant-radio-inner,
  9811. .ant-radio-button-wrapper input[type="checkbox"],
  9812. .ant-radio-button-wrapper input[type="radio"] {
  9813. opacity: 0;
  9814. filter: alpha(opacity=0);
  9815. width: 0;
  9816. height: 0;
  9817. }
  9818. .ant-radio-button-wrapper-checked {
  9819. background: #fff;
  9820. border-color: #58a3ff;
  9821. color: #58a3ff;
  9822. box-shadow: -1px 0 0 0 #58a3ff;
  9823. }
  9824. .ant-radio-button-wrapper-checked:first-child {
  9825. border-color: #58a3ff;
  9826. box-shadow: none!important;
  9827. }
  9828. .ant-radio-button-wrapper-checked:hover {
  9829. border-color: #80b9ff;
  9830. box-shadow: -1px 0 0 0 #80b9ff;
  9831. color: #80b9ff;
  9832. }
  9833. .ant-radio-button-wrapper-checked:active {
  9834. border-color: #4386e7;
  9835. box-shadow: -1px 0 0 0 #4386e7;
  9836. color: #4386e7;
  9837. }
  9838. .ant-radio-button-wrapper-disabled {
  9839. border-color: #d9d9d9;
  9840. background-color: #f7f7f7;
  9841. cursor: not-allowed;
  9842. color: rgba(0, 0, 0, 0.25);
  9843. }
  9844. .ant-radio-button-wrapper-disabled:first-child,
  9845. .ant-radio-button-wrapper-disabled:hover {
  9846. border-color: #d9d9d9;
  9847. background-color: #f7f7f7;
  9848. color: rgba(0, 0, 0, 0.25);
  9849. }
  9850. .ant-radio-button-wrapper-disabled:first-child {
  9851. border-left-color: #d9d9d9;
  9852. }
  9853. .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  9854. color: #fff;
  9855. background-color: #e6e6e6;
  9856. border-color: #d9d9d9;
  9857. box-shadow: none;
  9858. }
  9859. .ant-table-wrapper {
  9860. zoom: 1;
  9861. }
  9862. .ant-table-wrapper:before,
  9863. .ant-table-wrapper:after {
  9864. content: " ";
  9865. display: table;
  9866. }
  9867. .ant-table-wrapper:after {
  9868. clear: both;
  9869. visibility: hidden;
  9870. font-size: 0;
  9871. height: 0;
  9872. }
  9873. .ant-table {
  9874. font-size: 12px;
  9875. color: rgba(0, 0, 0, 0.65);
  9876. overflow: hidden;
  9877. position: relative;
  9878. border-radius: 4px 4px 0 0;
  9879. /* fix firefox scrollbar bug */
  9880. }
  9881. .ant-table-body {
  9882. transition: opacity 0.3s ease;
  9883. }
  9884. .ant-table table {
  9885. width: 100%;
  9886. border-collapse: separate;
  9887. border-spacing: 0;
  9888. text-align: left;
  9889. border-radius: 4px 4px 0 0;
  9890. overflow: hidden;
  9891. }
  9892. .ant-table-thead > tr > th {
  9893. background: #f7f7f7;
  9894. font-weight: bold;
  9895. transition: background .3s ease;
  9896. text-align: left;
  9897. }
  9898. .ant-table-thead > tr > th[colspan] {
  9899. text-align: center;
  9900. }
  9901. .ant-table-thead > tr > th .anticon-filter {
  9902. margin-left: 4px;
  9903. font-size: 12px;
  9904. cursor: pointer;
  9905. color: #aaa;
  9906. transition: all 0.3s ease;
  9907. }
  9908. .ant-table-thead > tr > th .anticon-filter:hover {
  9909. color: rgba(0, 0, 0, 0.65);
  9910. }
  9911. .ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter {
  9912. color: #58a3ff;
  9913. }
  9914. .ant-table-tbody > tr > td {
  9915. border-bottom: 1px solid #e9e9e9;
  9916. }
  9917. .ant-table-thead > tr,
  9918. .ant-table-tbody > tr {
  9919. transition: all .3s ease;
  9920. }
  9921. .ant-table-thead > tr.ant-table-row-hover,
  9922. .ant-table-tbody > tr.ant-table-row-hover,
  9923. .ant-table-thead > tr:hover,
  9924. .ant-table-tbody > tr:hover {
  9925. background: #f2f8ff;
  9926. }
  9927. .ant-table-thead > tr:hover {
  9928. background: none;
  9929. }
  9930. .ant-table-footer {
  9931. padding: 16px 8px;
  9932. background: #f7f7f7;
  9933. border-radius: 0 0 4px 4px;
  9934. position: relative;
  9935. }
  9936. .ant-table-footer:before {
  9937. content: '';
  9938. height: 1px;
  9939. background: #f7f7f7;
  9940. position: absolute;
  9941. top: -1px;
  9942. width: 100%;
  9943. left: 0;
  9944. }
  9945. .ant-table.ant-table-bordered .ant-table-footer {
  9946. border: 1px solid #e9e9e9;
  9947. }
  9948. .ant-table-title {
  9949. padding: 16px 8px;
  9950. position: relative;
  9951. top: 1px;
  9952. border-radius: 4px 4px 0 0;
  9953. }
  9954. .ant-table.ant-table-bordered .ant-table-title {
  9955. border: 1px solid #e9e9e9;
  9956. }
  9957. .ant-table-title + .ant-table-content {
  9958. position: relative;
  9959. border-radius: 4px 4px 0 0;
  9960. overflow: hidden;
  9961. }
  9962. .ant-table-bordered .ant-table-title + .ant-table-content,
  9963. .ant-table-bordered .ant-table-title + .ant-table-content table {
  9964. border-radius: 0;
  9965. }
  9966. .ant-table-without-column-header .ant-table-title + .ant-table-content,
  9967. .ant-table-without-column-header table {
  9968. border-radius: 0;
  9969. }
  9970. .ant-table-tbody > tr.ant-table-row-selected {
  9971. background: #fafafa;
  9972. }
  9973. .ant-table-thead > tr > th.ant-table-column-sort {
  9974. background: #eaeaea;
  9975. }
  9976. .ant-table-thead > tr > th,
  9977. .ant-table-tbody > tr > td {
  9978. padding: 16px 8px;
  9979. word-break: break-all;
  9980. }
  9981. .ant-table-thead > tr > th.ant-table-selection-column,
  9982. .ant-table-tbody > tr > td.ant-table-selection-column,
  9983. .ant-table-expand-icon-th,
  9984. .ant-table-row-expand-icon-cell {
  9985. text-align: center;
  9986. width: 48px;
  9987. }
  9988. .ant-table-header {
  9989. background: #f7f7f7;
  9990. overflow: hidden;
  9991. }
  9992. .ant-table-header table {
  9993. border-radius: 4px 4px 0 0;
  9994. }
  9995. .ant-table-loading {
  9996. position: relative;
  9997. }
  9998. .ant-table-loading .ant-table-body {
  9999. background: #fff;
  10000. opacity: 0.5;
  10001. }
  10002. .ant-table-loading .ant-table-spin-holder {
  10003. height: 20px;
  10004. line-height: 20px;
  10005. left: 50%;
  10006. top: 50%;
  10007. margin-left: -30px;
  10008. position: absolute;
  10009. }
  10010. .ant-table-loading .ant-table-with-pagination {
  10011. margin-top: -20px;
  10012. }
  10013. .ant-table-loading .ant-table-without-pagination {
  10014. margin-top: 10px;
  10015. }
  10016. .ant-table-middle .ant-table-thead > tr > th,
  10017. .ant-table-middle .ant-table-tbody > tr > td {
  10018. padding: 10px 8px;
  10019. }
  10020. .ant-table-middle .ant-table-title,
  10021. .ant-table-middle .ant-table-footer {
  10022. padding: 10px 8px;
  10023. }
  10024. .ant-table-small {
  10025. border: 1px solid #e9e9e9;
  10026. border-radius: 4px;
  10027. }
  10028. .ant-table-small .ant-table-header > table,
  10029. .ant-table-small .ant-table-body > table {
  10030. border: 0;
  10031. padding: 0 8px;
  10032. }
  10033. .ant-table-small .ant-table-thead > tr > th {
  10034. background: #fff;
  10035. border-bottom: 1px solid #e9e9e9;
  10036. }
  10037. .ant-table-small .ant-table-tbody > tr > td {
  10038. padding: 6px 8px;
  10039. }
  10040. .ant-table-small .ant-table-title,
  10041. .ant-table-small .ant-table-footer,
  10042. .ant-table-small .ant-table-thead > tr > th {
  10043. padding: 10px 8px;
  10044. }
  10045. .ant-table-small .ant-table-title {
  10046. border-bottom: 1px solid #e9e9e9;
  10047. top: 0;
  10048. }
  10049. .ant-table-small .ant-table-header {
  10050. background: #fff;
  10051. }
  10052. .ant-table-small .ant-table-header table {
  10053. border-bottom: 1px solid #e9e9e9;
  10054. }
  10055. .ant-table-small .ant-table-header .ant-table-thead > tr > th {
  10056. border-bottom: 0;
  10057. }
  10058. .ant-table-small .ant-table-row:last-child td {
  10059. border-bottom: 0;
  10060. }
  10061. .ant-table-column-sorter {
  10062. margin-left: 4px;
  10063. display: inline-block;
  10064. width: 12px;
  10065. height: 14px;
  10066. vertical-align: middle;
  10067. text-align: center;
  10068. }
  10069. .ant-table-column-sorter-up,
  10070. .ant-table-column-sorter-down {
  10071. line-height: 4px;
  10072. height: 5px;
  10073. display: block;
  10074. width: 12px;
  10075. cursor: pointer;
  10076. }
  10077. .ant-table-column-sorter-up:hover .anticon,
  10078. .ant-table-column-sorter-down:hover .anticon {
  10079. color: rgba(0, 0, 0, 0.65);
  10080. }
  10081. .ant-table-column-sorter-up.on .anticon-caret-up,
  10082. .ant-table-column-sorter-down.on .anticon-caret-up,
  10083. .ant-table-column-sorter-up.on .anticon-caret-down,
  10084. .ant-table-column-sorter-down.on .anticon-caret-down {
  10085. color: #58a3ff;
  10086. }
  10087. .ant-table-column-sorter .anticon-caret-up,
  10088. .ant-table-column-sorter .anticon-caret-down {
  10089. display: inline-block;
  10090. font-size: 12px;
  10091. font-size: 7px \9;
  10092. transform: scale(0.58333333) rotate(0deg);
  10093. /* IE6-IE8 */
  10094. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10095. zoom: 1;
  10096. line-height: 6px;
  10097. height: 6px;
  10098. color: #aaa;
  10099. }
  10100. :root .ant-table-column-sorter .anticon-caret-up,
  10101. :root .ant-table-column-sorter .anticon-caret-down {
  10102. filter: none;
  10103. }
  10104. :root .ant-table-column-sorter .anticon-caret-up,
  10105. :root .ant-table-column-sorter .anticon-caret-down {
  10106. font-size: 12px;
  10107. }
  10108. .ant-table-column-sorter .anticon-caret-up:before,
  10109. .ant-table-column-sorter .anticon-caret-down:before {
  10110. -moz-transform-origin: 53% 50%;
  10111. /* fix firefox position */
  10112. }
  10113. .ant-table-bordered .ant-table-header > table,
  10114. .ant-table-bordered .ant-table-body > table,
  10115. .ant-table-bordered .ant-table-fixed-left table,
  10116. .ant-table-bordered .ant-table-fixed-right table {
  10117. border: 1px solid #e9e9e9;
  10118. border-right: 0;
  10119. border-bottom: 0;
  10120. }
  10121. .ant-table-bordered.ant-table-empty .ant-table-placeholder {
  10122. border-left: 1px solid #e9e9e9;
  10123. border-right: 1px solid #e9e9e9;
  10124. }
  10125. .ant-table-bordered.ant-table-fixed-header .ant-table-header > table {
  10126. border-bottom: 0;
  10127. }
  10128. .ant-table-bordered.ant-table-fixed-header .ant-table-body > table {
  10129. border-top: 0;
  10130. border-top-left-radius: 0;
  10131. border-top-right-radius: 0;
  10132. }
  10133. .ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table {
  10134. border-top: 0;
  10135. }
  10136. .ant-table-bordered.ant-table-fixed-header .ant-table-placeholder {
  10137. border: 0;
  10138. }
  10139. .ant-table-bordered .ant-table-thead > tr > th {
  10140. border-bottom: 1px solid #e9e9e9;
  10141. }
  10142. .ant-table-bordered .ant-table-thead > tr > th,
  10143. .ant-table-bordered .ant-table-tbody > tr > td {
  10144. border-right: 1px solid #e9e9e9;
  10145. }
  10146. .ant-table-bordered.ant-table-small {
  10147. border-right: 0;
  10148. }
  10149. .ant-table-bordered.ant-table-small .ant-table-header > table,
  10150. .ant-table-bordered.ant-table-small .ant-table-body > table,
  10151. .ant-table-bordered.ant-table-small .ant-table-fixed-left table,
  10152. .ant-table-bordered.ant-table-small .ant-table-fixed-right table {
  10153. border: 0;
  10154. padding: 0;
  10155. }
  10156. .ant-table-bordered.ant-table-small .ant-table-title {
  10157. border: 0;
  10158. border-bottom: 1px solid #e9e9e9;
  10159. border-right: 1px solid #e9e9e9;
  10160. }
  10161. .ant-table-bordered.ant-table-small .ant-table-footer {
  10162. border: 0;
  10163. border-top: 1px solid #e9e9e9;
  10164. border-right: 1px solid #e9e9e9;
  10165. }
  10166. .ant-table-bordered.ant-table-small .ant-table-footer:before {
  10167. display: none;
  10168. }
  10169. .ant-table-bordered.ant-table-small .ant-table-placeholder {
  10170. border: 0;
  10171. }
  10172. .ant-table-placeholder {
  10173. position: relative;
  10174. padding: 16px 8px;
  10175. background: #fff;
  10176. border-bottom: 1px solid #e9e9e9;
  10177. text-align: center;
  10178. font-size: 12px;
  10179. color: rgba(0, 0, 0, 0.43);
  10180. }
  10181. .ant-table-placeholder .anticon {
  10182. margin-right: 4px;
  10183. }
  10184. .ant-table-pagination {
  10185. margin: 16px 0;
  10186. float: right;
  10187. }
  10188. .ant-table-filter-dropdown {
  10189. min-width: 96px;
  10190. margin-left: -8px;
  10191. background: #fff;
  10192. border-radius: 4px;
  10193. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  10194. }
  10195. .ant-table-filter-dropdown .ant-dropdown-menu {
  10196. border: 0;
  10197. box-shadow: none;
  10198. border-radius: 4px 4px 0 0;
  10199. }
  10200. .ant-table-filter-dropdown .ant-dropdown-menu-without-submenu {
  10201. max-height: 400px;
  10202. overflow-x: hidden;
  10203. }
  10204. .ant-table-filter-dropdown .ant-dropdown-menu-item > label + span {
  10205. padding: 0;
  10206. }
  10207. .ant-table-filter-dropdown .ant-dropdown-menu-sub {
  10208. border-radius: 4px;
  10209. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  10210. }
  10211. .ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title:after {
  10212. color: #58a3ff;
  10213. font-weight: bold;
  10214. text-shadow: 0 0 2px #dfeeff;
  10215. }
  10216. .ant-table-filter-dropdown .ant-dropdown-menu-item {
  10217. overflow: hidden;
  10218. }
  10219. .ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
  10220. .ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
  10221. border-radius: 0;
  10222. }
  10223. .ant-table-filter-dropdown-btns {
  10224. overflow: hidden;
  10225. padding: 7px 16px;
  10226. border-top: 1px solid #e9e9e9;
  10227. }
  10228. .ant-table-filter-dropdown-link {
  10229. color: #58a3ff;
  10230. }
  10231. .ant-table-filter-dropdown-link:hover {
  10232. color: #80b9ff;
  10233. }
  10234. .ant-table-filter-dropdown-link:active {
  10235. color: #4386e7;
  10236. }
  10237. .ant-table-filter-dropdown-link.confirm {
  10238. float: left;
  10239. }
  10240. .ant-table-filter-dropdown-link.clear {
  10241. float: right;
  10242. }
  10243. .ant-table-row-expand-icon {
  10244. cursor: pointer;
  10245. display: inline-block;
  10246. width: 17px;
  10247. height: 17px;
  10248. text-align: center;
  10249. line-height: 14px;
  10250. border: 1px solid #e9e9e9;
  10251. user-select: none;
  10252. background: #fff;
  10253. }
  10254. .ant-table-row-expand-icon-cell {
  10255. width: 18px;
  10256. }
  10257. .ant-table-row-expanded:after {
  10258. content: '-';
  10259. }
  10260. .ant-table-row-collapsed:after {
  10261. content: '+';
  10262. }
  10263. .ant-table-row-spaced {
  10264. visibility: hidden;
  10265. }
  10266. .ant-table-row-spaced:after {
  10267. content: '.';
  10268. }
  10269. .ant-table-row[class*="ant-table-row-level-0"] .ant-table-selection-column > span {
  10270. display: inline-block;
  10271. }
  10272. tr.ant-table-expanded-row,
  10273. tr.ant-table-expanded-row:hover {
  10274. background: #fbfbfb;
  10275. }
  10276. .ant-table .ant-table-row-indent + .ant-table-row-expand-icon {
  10277. margin-right: 8px;
  10278. }
  10279. .ant-table-scroll {
  10280. overflow: auto;
  10281. overflow-x: hidden;
  10282. }
  10283. .ant-table-scroll table {
  10284. width: auto;
  10285. min-width: 100%;
  10286. }
  10287. .ant-table-body-inner {
  10288. height: 100%;
  10289. }
  10290. .ant-table-fixed-header .ant-table-body {
  10291. position: relative;
  10292. background: #fff;
  10293. }
  10294. .ant-table-fixed-header .ant-table-body-inner {
  10295. overflow: scroll;
  10296. }
  10297. .ant-table-fixed-header .ant-table-scroll .ant-table-header {
  10298. overflow: scroll;
  10299. padding-bottom: 20px;
  10300. margin-bottom: -20px;
  10301. }
  10302. .ant-table-fixed-header.ant-table-empty .ant-table-scroll .ant-table-body {
  10303. padding-bottom: 20px;
  10304. margin-bottom: -20px;
  10305. }
  10306. .ant-table-fixed-left,
  10307. .ant-table-fixed-right {
  10308. position: absolute;
  10309. top: 0;
  10310. overflow: hidden;
  10311. transition: box-shadow 0.3s ease;
  10312. border-radius: 0;
  10313. }
  10314. .ant-table-fixed-left table,
  10315. .ant-table-fixed-right table {
  10316. width: auto;
  10317. background: #fff;
  10318. }
  10319. .ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,
  10320. .ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed {
  10321. border-radius: 0;
  10322. }
  10323. .ant-table-fixed-left {
  10324. left: 0;
  10325. box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.2);
  10326. }
  10327. .ant-table-fixed-left .ant-table-header {
  10328. overflow-y: hidden;
  10329. }
  10330. .ant-table-fixed-left .ant-table-body-inner {
  10331. margin-right: -20px;
  10332. padding-right: 20px;
  10333. }
  10334. .ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner {
  10335. padding-right: 0;
  10336. }
  10337. .ant-table-fixed-left,
  10338. .ant-table-fixed-left table {
  10339. border-radius: 4px 0 0 0;
  10340. }
  10341. .ant-table-fixed-right {
  10342. right: 0;
  10343. box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.2);
  10344. }
  10345. .ant-table-fixed-right,
  10346. .ant-table-fixed-right table {
  10347. border-radius: 0 4px 0 0;
  10348. }
  10349. .ant-table-fixed-right .ant-table-expanded-row {
  10350. color: transparent;
  10351. pointer-events: none;
  10352. }
  10353. .ant-table.ant-table-scroll-position-left .ant-table-fixed-left {
  10354. box-shadow: none;
  10355. }
  10356. .ant-table.ant-table-scroll-position-right .ant-table-fixed-right {
  10357. box-shadow: none;
  10358. }
  10359. .ant-dropdown {
  10360. position: absolute;
  10361. left: -9999px;
  10362. top: -9999px;
  10363. z-index: 1050;
  10364. display: block;
  10365. font-size: 12px;
  10366. font-weight: normal;
  10367. line-height: 1.5;
  10368. }
  10369. .ant-dropdown-wrap {
  10370. position: relative;
  10371. }
  10372. .ant-dropdown-wrap .ant-btn > .anticon-down {
  10373. display: inline-block;
  10374. font-size: 12px;
  10375. font-size: 10px \9;
  10376. transform: scale(0.83333333) rotate(0deg);
  10377. /* IE6-IE8 */
  10378. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10379. zoom: 1;
  10380. }
  10381. :root .ant-dropdown-wrap .ant-btn > .anticon-down {
  10382. filter: none;
  10383. }
  10384. :root .ant-dropdown-wrap .ant-btn > .anticon-down {
  10385. font-size: 12px;
  10386. }
  10387. .ant-dropdown-wrap .anticon-down:before {
  10388. transition: transform 0.2s ease;
  10389. }
  10390. .ant-dropdown-wrap-open .anticon-down:before {
  10391. transform: rotate(180deg);
  10392. }
  10393. .ant-dropdown-hidden,
  10394. .ant-dropdown-menu-hidden {
  10395. display: none;
  10396. }
  10397. .ant-dropdown-menu {
  10398. outline: none;
  10399. position: relative;
  10400. list-style-type: none;
  10401. padding: 0;
  10402. margin: 0;
  10403. text-align: left;
  10404. background-color: #fff;
  10405. border-radius: 4px;
  10406. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  10407. background-clip: padding-box;
  10408. }
  10409. .ant-dropdown-menu-item,
  10410. .ant-dropdown-menu-submenu-title {
  10411. padding: 7px 16px;
  10412. margin: 0;
  10413. clear: both;
  10414. font-size: 12px;
  10415. font-weight: normal;
  10416. color: rgba(0, 0, 0, 0.65);
  10417. white-space: nowrap;
  10418. cursor: pointer;
  10419. transition: all .3s;
  10420. }
  10421. .ant-dropdown-menu-item > a,
  10422. .ant-dropdown-menu-submenu-title > a {
  10423. color: rgba(0, 0, 0, 0.65);
  10424. display: block;
  10425. padding: 7px 16px;
  10426. margin: -7px -16px;
  10427. transition: all .3s;
  10428. }
  10429. .ant-dropdown-menu-item-selected,
  10430. .ant-dropdown-menu-submenu-title-selected,
  10431. .ant-dropdown-menu-item-selected > a,
  10432. .ant-dropdown-menu-submenu-title-selected > a {
  10433. color: #58a3ff;
  10434. background-color: #f2f8ff;
  10435. }
  10436. .ant-dropdown-menu-item:hover,
  10437. .ant-dropdown-menu-submenu-title:hover {
  10438. background-color: #f2f8ff;
  10439. }
  10440. .ant-dropdown-menu-item-disabled,
  10441. .ant-dropdown-menu-submenu-title-disabled {
  10442. color: rgba(0, 0, 0, 0.25);
  10443. cursor: not-allowed;
  10444. pointer-events: none;
  10445. }
  10446. .ant-dropdown-menu-item-disabled:hover,
  10447. .ant-dropdown-menu-submenu-title-disabled:hover {
  10448. color: rgba(0, 0, 0, 0.25);
  10449. background-color: #fff;
  10450. cursor: not-allowed;
  10451. }
  10452. .ant-dropdown-menu-item:first-child,
  10453. .ant-dropdown-menu-submenu-title:first-child,
  10454. .ant-dropdown-menu-item:first-child > a,
  10455. .ant-dropdown-menu-submenu-title:first-child > a {
  10456. border-radius: 4px 4px 0 0;
  10457. }
  10458. .ant-dropdown-menu-item:last-child,
  10459. .ant-dropdown-menu-submenu-title:last-child,
  10460. .ant-dropdown-menu-item:last-child > a,
  10461. .ant-dropdown-menu-submenu-title:last-child > a {
  10462. border-radius: 0 0 4px 4px;
  10463. }
  10464. .ant-dropdown-menu-item:only-child,
  10465. .ant-dropdown-menu-submenu-title:only-child,
  10466. .ant-dropdown-menu-item:only-child > a,
  10467. .ant-dropdown-menu-submenu-title:only-child > a {
  10468. border-radius: 4px;
  10469. }
  10470. .ant-dropdown-menu-item-divider,
  10471. .ant-dropdown-menu-submenu-title-divider {
  10472. height: 1px;
  10473. overflow: hidden;
  10474. background-color: #e9e9e9;
  10475. line-height: 0;
  10476. }
  10477. .ant-dropdown-menu-submenu-title:after {
  10478. font-family: "anticon" !important;
  10479. position: absolute;
  10480. content: "\E61F";
  10481. right: 12px;
  10482. color: rgba(0, 0, 0, 0.43);
  10483. display: inline-block;
  10484. font-size: 12px;
  10485. font-size: 10px \9;
  10486. transform: scale(0.83333333) rotate(0deg);
  10487. /* IE6-IE8 */
  10488. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10489. zoom: 1;
  10490. }
  10491. :root .ant-dropdown-menu-submenu-title:after {
  10492. filter: none;
  10493. }
  10494. :root .ant-dropdown-menu-submenu-title:after {
  10495. font-size: 12px;
  10496. }
  10497. .ant-dropdown-menu-submenu-vertical {
  10498. position: relative;
  10499. }
  10500. .ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  10501. top: 0;
  10502. left: 100%;
  10503. position: absolute;
  10504. min-width: 100%;
  10505. margin-left: 4px;
  10506. transform-origin: 0 0;
  10507. }
  10508. .ant-dropdown-menu-submenu:first-child .ant-dropdown-menu-submenu-title {
  10509. border-radius: 4px 4px 0 0;
  10510. }
  10511. .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
  10512. border-radius: 0 0 4px 4px;
  10513. }
  10514. .ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,
  10515. .ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,
  10516. .ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,
  10517. .ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,
  10518. .ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight,
  10519. .ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight {
  10520. animation-name: antSlideUpIn;
  10521. }
  10522. .ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,
  10523. .ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,
  10524. .ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,
  10525. .ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,
  10526. .ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight,
  10527. .ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight {
  10528. animation-name: antSlideDownIn;
  10529. }
  10530. .ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,
  10531. .ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,
  10532. .ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight {
  10533. animation-name: antSlideUpOut;
  10534. }
  10535. .ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,
  10536. .ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,
  10537. .ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight {
  10538. animation-name: antSlideDownOut;
  10539. }
  10540. .ant-dropdown-trigger .anticon-down,
  10541. .ant-dropdown-link .anticon-down {
  10542. display: inline-block;
  10543. font-size: 12px;
  10544. font-size: 10px \9;
  10545. transform: scale(0.83333333) rotate(0deg);
  10546. /* IE6-IE8 */
  10547. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10548. zoom: 1;
  10549. }
  10550. :root .ant-dropdown-trigger .anticon-down,
  10551. :root .ant-dropdown-link .anticon-down {
  10552. filter: none;
  10553. }
  10554. :root .ant-dropdown-trigger .anticon-down,
  10555. :root .ant-dropdown-link .anticon-down {
  10556. font-size: 12px;
  10557. }
  10558. .ant-dropdown-button {
  10559. white-space: nowrap;
  10560. }
  10561. .ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) {
  10562. padding-right: 7px;
  10563. }
  10564. .ant-dropdown-button .anticon-down {
  10565. display: inline-block;
  10566. font-size: 12px;
  10567. font-size: 10px \9;
  10568. transform: scale(0.83333333) rotate(0deg);
  10569. /* IE6-IE8 */
  10570. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10571. zoom: 1;
  10572. }
  10573. :root .ant-dropdown-button .anticon-down {
  10574. filter: none;
  10575. }
  10576. :root .ant-dropdown-button .anticon-down {
  10577. font-size: 12px;
  10578. }
  10579. .ant-dropdown-menu-dark,
  10580. .ant-dropdown-menu-dark .ant-dropdown-menu {
  10581. background: #404040;
  10582. }
  10583. .ant-dropdown-menu-dark .ant-dropdown-menu-item,
  10584. .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
  10585. .ant-dropdown-menu-dark .ant-dropdown-menu-item > a {
  10586. color: rgba(255, 255, 255, 0.67);
  10587. }
  10588. .ant-dropdown-menu-dark .ant-dropdown-menu-item:after,
  10589. .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:after,
  10590. .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:after {
  10591. color: rgba(255, 255, 255, 0.67);
  10592. }
  10593. .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
  10594. .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
  10595. .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover {
  10596. color: #fff;
  10597. background: transparent;
  10598. }
  10599. .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
  10600. .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
  10601. .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
  10602. background: #58a3ff;
  10603. color: #fff;
  10604. }
  10605. .ant-pagination {
  10606. font-size: 12px;
  10607. }
  10608. .ant-pagination:after {
  10609. content: " ";
  10610. display: block;
  10611. height: 0;
  10612. clear: both;
  10613. overflow: hidden;
  10614. visibility: hidden;
  10615. }
  10616. .ant-pagination-total-text {
  10617. float: left;
  10618. height: 30px;
  10619. line-height: 30px;
  10620. margin-right: 10px;
  10621. }
  10622. .ant-pagination-item {
  10623. cursor: pointer;
  10624. border-radius: 4px;
  10625. user-select: none;
  10626. min-width: 28px;
  10627. height: 28px;
  10628. line-height: 28px;
  10629. text-align: center;
  10630. list-style: none;
  10631. float: left;
  10632. border: 1px solid #d9d9d9;
  10633. background-color: #fff;
  10634. margin-right: 8px;
  10635. font-family: Arial;
  10636. }
  10637. .ant-pagination-item a {
  10638. text-decoration: none;
  10639. color: rgba(0, 0, 0, 0.65);
  10640. transition: none;
  10641. margin: 0 6px;
  10642. }
  10643. .ant-pagination-item:hover {
  10644. transition: all 0.3s ease;
  10645. border-color: #58a3ff;
  10646. }
  10647. .ant-pagination-item:hover a {
  10648. color: #58a3ff;
  10649. }
  10650. .ant-pagination-item-active {
  10651. background-color: #58a3ff;
  10652. border-color: #58a3ff;
  10653. }
  10654. .ant-pagination-item-active a,
  10655. .ant-pagination-item-active:hover a {
  10656. color: #fff;
  10657. }
  10658. .ant-pagination-jump-prev:after,
  10659. .ant-pagination-jump-next:after {
  10660. content: "\2022\2022\2022";
  10661. display: block;
  10662. letter-spacing: 2px;
  10663. color: rgba(0, 0, 0, 0.25);
  10664. text-align: center;
  10665. }
  10666. .ant-pagination-jump-prev:hover:after,
  10667. .ant-pagination-jump-next:hover:after {
  10668. color: #58a3ff;
  10669. display: inline-block;
  10670. font-size: 12px;
  10671. font-size: 8px \9;
  10672. transform: scale(0.66666667) rotate(0deg);
  10673. /* IE6-IE8 */
  10674. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10675. zoom: 1;
  10676. letter-spacing: -1px;
  10677. font-family: "anticon";
  10678. }
  10679. :root .ant-pagination-jump-prev:hover:after,
  10680. :root .ant-pagination-jump-next:hover:after {
  10681. filter: none;
  10682. }
  10683. :root .ant-pagination-jump-prev:hover:after,
  10684. :root .ant-pagination-jump-next:hover:after {
  10685. font-size: 12px;
  10686. }
  10687. .ant-pagination-jump-prev:hover:after {
  10688. content: "\E620\E620";
  10689. }
  10690. .ant-pagination-jump-next:hover:after {
  10691. content: "\E61F\E61F";
  10692. }
  10693. .ant-pagination-prev,
  10694. .ant-pagination-jump-prev,
  10695. .ant-pagination-jump-next {
  10696. margin-right: 8px;
  10697. }
  10698. .ant-pagination-prev,
  10699. .ant-pagination-next,
  10700. .ant-pagination-jump-prev,
  10701. .ant-pagination-jump-next {
  10702. font-family: Arial;
  10703. cursor: pointer;
  10704. color: rgba(0, 0, 0, 0.65);
  10705. border-radius: 4px;
  10706. list-style: none;
  10707. min-width: 28px;
  10708. height: 28px;
  10709. line-height: 28px;
  10710. float: left;
  10711. text-align: center;
  10712. transition: all 0.3s ease;
  10713. display: inline-block;
  10714. }
  10715. .ant-pagination-prev,
  10716. .ant-pagination-next {
  10717. border: 1px solid #d9d9d9;
  10718. background-color: #fff;
  10719. }
  10720. .ant-pagination-prev a,
  10721. .ant-pagination-next a {
  10722. color: rgba(0, 0, 0, 0.65);
  10723. }
  10724. .ant-pagination-prev a:after,
  10725. .ant-pagination-next a:after {
  10726. display: inline-block;
  10727. font-size: 12px;
  10728. font-size: 8px \9;
  10729. transform: scale(0.66666667) rotate(0deg);
  10730. /* IE6-IE8 */
  10731. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  10732. zoom: 1;
  10733. display: block;
  10734. height: 26px;
  10735. line-height: 26px;
  10736. font-family: "anticon";
  10737. text-align: center;
  10738. }
  10739. :root .ant-pagination-prev a:after,
  10740. :root .ant-pagination-next a:after {
  10741. filter: none;
  10742. }
  10743. :root .ant-pagination-prev a:after,
  10744. :root .ant-pagination-next a:after {
  10745. font-size: 12px;
  10746. }
  10747. .ant-pagination-prev:hover,
  10748. .ant-pagination-next:hover {
  10749. border-color: #58a3ff;
  10750. }
  10751. .ant-pagination-prev:hover a,
  10752. .ant-pagination-next:hover a {
  10753. color: #58a3ff;
  10754. }
  10755. .ant-pagination-prev a:after {
  10756. margin-top: -0.5px;
  10757. content: "\E620";
  10758. display: block;
  10759. }
  10760. .ant-pagination-next a:after {
  10761. content: "\E61F";
  10762. display: block;
  10763. }
  10764. .ant-pagination-disabled {
  10765. cursor: not-allowed;
  10766. }
  10767. .ant-pagination-disabled:hover {
  10768. border-color: #d9d9d9;
  10769. }
  10770. .ant-pagination-disabled:hover a {
  10771. color: rgba(0, 0, 0, 0.25);
  10772. cursor: not-allowed;
  10773. }
  10774. .ant-pagination-disabled a {
  10775. color: rgba(0, 0, 0, 0.25);
  10776. }
  10777. .ant-pagination-slash {
  10778. margin: 0 10px 0 5px;
  10779. }
  10780. .ant-pagination-options {
  10781. float: left;
  10782. margin-left: 15px;
  10783. }
  10784. .ant-pagination-options-size-changer {
  10785. float: left;
  10786. margin-right: 10px;
  10787. }
  10788. .ant-pagination-options-quick-jumper {
  10789. float: left;
  10790. height: 28px;
  10791. line-height: 28px;
  10792. }
  10793. .ant-pagination-options-quick-jumper input {
  10794. position: relative;
  10795. display: inline-block;
  10796. padding: 4px 7px;
  10797. width: 100%;
  10798. height: 28px;
  10799. cursor: text;
  10800. font-size: 12px;
  10801. line-height: 1.5;
  10802. color: rgba(0, 0, 0, 0.65);
  10803. background-color: #fff;
  10804. background-image: none;
  10805. border: 1px solid #d9d9d9;
  10806. border-radius: 4px;
  10807. transition: all .3s;
  10808. margin: 0 8px;
  10809. width: 50px;
  10810. }
  10811. .ant-pagination-options-quick-jumper input::-moz-placeholder {
  10812. color: #ccc;
  10813. opacity: 1;
  10814. }
  10815. .ant-pagination-options-quick-jumper input:-ms-input-placeholder {
  10816. color: #ccc;
  10817. }
  10818. .ant-pagination-options-quick-jumper input::-webkit-input-placeholder {
  10819. color: #ccc;
  10820. }
  10821. .ant-pagination-options-quick-jumper input:hover {
  10822. border-color: #80b9ff;
  10823. }
  10824. .ant-pagination-options-quick-jumper input:focus {
  10825. border-color: #80b9ff;
  10826. outline: 0;
  10827. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  10828. }
  10829. .ant-pagination-options-quick-jumper input[disabled] {
  10830. background-color: #f7f7f7;
  10831. opacity: 1;
  10832. cursor: not-allowed;
  10833. color: rgba(0, 0, 0, 0.25);
  10834. }
  10835. .ant-pagination-options-quick-jumper input[disabled]:hover {
  10836. border-color: #e2e2e2;
  10837. }
  10838. textarea.ant-pagination-options-quick-jumper input {
  10839. max-width: 100%;
  10840. height: auto;
  10841. vertical-align: bottom;
  10842. }
  10843. .ant-pagination-options-quick-jumper input-lg {
  10844. padding: 6px 7px;
  10845. height: 32px;
  10846. }
  10847. .ant-pagination-options-quick-jumper input-sm {
  10848. padding: 1px 7px;
  10849. height: 22px;
  10850. }
  10851. .ant-pagination-simple .ant-pagination-prev,
  10852. .ant-pagination-simple .ant-pagination-next {
  10853. border: 0;
  10854. height: 24px;
  10855. line-height: 24px;
  10856. margin: 0;
  10857. font-size: 18px;
  10858. }
  10859. .ant-pagination-simple .ant-pagination-simple-pager {
  10860. float: left;
  10861. margin-right: 8px;
  10862. }
  10863. .ant-pagination-simple .ant-pagination-simple-pager input {
  10864. margin: 0 8px;
  10865. box-sizing: border-box;
  10866. background-color: #fff;
  10867. border-radius: 4px;
  10868. border: 1px solid #d9d9d9;
  10869. outline: none;
  10870. padding: 5px 8px;
  10871. width: 30px;
  10872. height: 24px;
  10873. text-align: center;
  10874. transition: border-color 0.3s ease;
  10875. }
  10876. .ant-pagination-simple .ant-pagination-simple-pager input:hover {
  10877. border-color: #58a3ff;
  10878. }
  10879. .ant-pagination.mini .ant-pagination-total-text {
  10880. height: 20px;
  10881. line-height: 20px;
  10882. }
  10883. .ant-pagination.mini .ant-pagination-item {
  10884. border: 0;
  10885. margin: 0;
  10886. min-width: 20px;
  10887. height: 20px;
  10888. line-height: 20px;
  10889. }
  10890. .ant-pagination.mini .ant-pagination-prev,
  10891. .ant-pagination.mini .ant-pagination-next {
  10892. margin: 0;
  10893. min-width: 20px;
  10894. height: 20px;
  10895. line-height: 20px;
  10896. border: 0;
  10897. }
  10898. .ant-pagination.mini .ant-pagination-prev a:after,
  10899. .ant-pagination.mini .ant-pagination-next a:after {
  10900. height: 20px;
  10901. line-height: 20px;
  10902. }
  10903. .ant-pagination.mini .ant-pagination-jump-prev,
  10904. .ant-pagination.mini .ant-pagination-jump-next {
  10905. height: 20px;
  10906. line-height: 20px;
  10907. }
  10908. .ant-pagination.mini .ant-pagination-options {
  10909. margin-left: 8px;
  10910. }
  10911. .ant-pagination.mini .ant-pagination-options-quick-jumper {
  10912. height: 20px;
  10913. line-height: 20px;
  10914. }
  10915. .ant-pagination.mini .ant-pagination-options-quick-jumper input {
  10916. padding: 1px 7px;
  10917. height: 22px;
  10918. width: 44px;
  10919. }
  10920. @media only screen and (max-width: 1024px) {
  10921. .ant-pagination-item-after-jump-prev,
  10922. .ant-pagination-item-before-jump-next {
  10923. display: none;
  10924. }
  10925. }
  10926. .account-top {
  10927. width: 100%;
  10928. height: 84px;
  10929. border-bottom: 1px solid #eee;
  10930. background: #fff;
  10931. position: absolute;
  10932. top: 0;
  10933. left: 0;
  10934. z-index: 1;
  10935. }
  10936. .account-top .acc-top-user {
  10937. height: 34px;
  10938. line-height: 34px;
  10939. background: #f8f8f8;
  10940. }
  10941. .account-top .acc-top-user .acc-top-user-name {
  10942. margin-left: 10px;
  10943. }
  10944. .account-top .acc-top-user .acc-top-user-toindex {
  10945. float: right;
  10946. margin-right: 10px;
  10947. }
  10948. .account-top .acc-index {
  10949. height: 90px;
  10950. width: 16%;
  10951. position: absolute;
  10952. top: 34px;
  10953. left: 0;
  10954. color: #fff;
  10955. background: #4665bf;
  10956. padding: 27px 10px;
  10957. }
  10958. .account-top .acc-index .acc-index-imgbox {
  10959. width: 36px;
  10960. height: 36px;
  10961. padding-top: 36px;
  10962. position: relative;
  10963. overflow: hidden;
  10964. float: left;
  10965. }
  10966. .account-top .acc-index .acc-index-imgbox img {
  10967. position: absolute;
  10968. top: 0;
  10969. left: 0;
  10970. height: 36px;
  10971. width: auto;
  10972. }
  10973. .account-top .acc-index span {
  10974. margin-left: 10px;
  10975. font-size: 20px;
  10976. line-height: 36px;
  10977. }
  10978. .account-top .acc-index span a {
  10979. color: #fff;
  10980. }
  10981. .account-top .acc-top-tab {
  10982. margin-left: 16%;
  10983. height: 50px;
  10984. line-height: 50px;
  10985. font-size: 16px;
  10986. text-align: center;
  10987. background: #4665bf;
  10988. color: #fff;
  10989. border-left: 1px solid #344c8f;
  10990. }
  10991. .account-top .acc-top-tab .ant-row {
  10992. padding-left: 20px;
  10993. border-left: 1px solid #6b84cc;
  10994. }
  10995. .account-top .acc-top-tab .ant-row div {
  10996. margin: 0 10px;
  10997. }
  10998. .account-top .acc-top-tab .ant-row div a {
  10999. color: #fff;
  11000. }
  11001. .account-top .acc-top-tab .ant-row .active {
  11002. font-size: 18px;
  11003. }
  11004. .account-top .acc-top-tab .ant-row .active:after {
  11005. content: '';
  11006. position: absolute;
  11007. left: 0;
  11008. bottom: 0;
  11009. display: block;
  11010. width: 100%;
  11011. height: 3px;
  11012. background: #58a3ff;
  11013. }
  11014. .account-bottom {
  11015. width: 100%;
  11016. color: #d5e4f7;
  11017. background: #212831;
  11018. position: fixed;
  11019. bottom: 0;
  11020. left: 0;
  11021. z-index: 1;
  11022. text-align: center;
  11023. padding: 6px 0;
  11024. }
  11025. .manage-content {
  11026. height: 100%;
  11027. width: 100%;
  11028. padding-top: 84px;
  11029. padding-bottom: 40px;
  11030. background: #f0f0f0;
  11031. }
  11032. .manage-content .content-right {
  11033. width: 84%;
  11034. height: 100%;
  11035. float: left;
  11036. overflow-y: auto;
  11037. padding: 20px;
  11038. }
  11039. .manage-content .content-right .ant-spin-nested-loading {
  11040. height: 100%;
  11041. }
  11042. .manage-content .content-right .ant-spin-nested-loading .ant-spin-container {
  11043. height: 100%;
  11044. }
  11045. .manage-content .account-left {
  11046. width: 16%;
  11047. height: 100%;
  11048. padding-top: 40px;
  11049. float: left;
  11050. border-right: none;
  11051. }
  11052. .manage-content .account-left .ant-menu-submenu .ant-menu-submenu-title {
  11053. font-size: 16px;
  11054. }
  11055. .ant-switch {
  11056. position: relative;
  11057. display: inline-block;
  11058. box-sizing: border-box;
  11059. height: 22px;
  11060. min-width: 44px;
  11061. line-height: 20px;
  11062. vertical-align: middle;
  11063. border-radius: 20px;
  11064. border: 1px solid #ccc;
  11065. background-color: rgba(0, 0, 0, 0.25);
  11066. cursor: pointer;
  11067. transition: all 0.3s;
  11068. user-select: none;
  11069. }
  11070. .ant-switch-inner {
  11071. color: #fff;
  11072. font-size: 12px;
  11073. margin-left: 24px;
  11074. margin-right: 6px;
  11075. display: block;
  11076. }
  11077. .ant-switch:after {
  11078. position: absolute;
  11079. width: 18px;
  11080. height: 18px;
  11081. left: 1px;
  11082. top: 1px;
  11083. border-radius: 18px;
  11084. background-color: #fff;
  11085. content: " ";
  11086. cursor: pointer;
  11087. transition: all 0.3s, width 0.3s;
  11088. }
  11089. .ant-switch:active:after {
  11090. width: 24px;
  11091. }
  11092. .ant-switch:focus {
  11093. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  11094. outline: 0;
  11095. }
  11096. .ant-switch:focus:hover {
  11097. box-shadow: none;
  11098. }
  11099. .ant-switch-small {
  11100. height: 14px;
  11101. min-width: 28px;
  11102. line-height: 12px;
  11103. }
  11104. .ant-switch-small .ant-switch-inner {
  11105. margin-left: 18px;
  11106. margin-right: 3px;
  11107. }
  11108. .ant-switch-small:after {
  11109. width: 12px;
  11110. height: 12px;
  11111. top: 0;
  11112. left: 0.5px;
  11113. }
  11114. .ant-switch-small:active:after {
  11115. width: 16px;
  11116. }
  11117. .ant-switch-small.ant-switch-checked:after {
  11118. left: 100%;
  11119. margin-left: -12.5px;
  11120. }
  11121. .ant-switch-small.ant-switch-checked .ant-switch-inner {
  11122. margin-left: 3px;
  11123. margin-right: 18px;
  11124. }
  11125. .ant-switch-small:active.ant-switch-checked:after {
  11126. margin-left: -16.5px;
  11127. }
  11128. .ant-switch-checked {
  11129. border-color: #58a3ff;
  11130. background-color: #58a3ff;
  11131. }
  11132. .ant-switch-checked .ant-switch-inner {
  11133. margin-left: 6px;
  11134. margin-right: 24px;
  11135. }
  11136. .ant-switch-checked:after {
  11137. left: 100%;
  11138. margin-left: -19px;
  11139. }
  11140. .ant-switch-checked:active:after {
  11141. margin-left: -25px;
  11142. }
  11143. .ant-switch-disabled {
  11144. cursor: not-allowed;
  11145. background: #f4f4f4;
  11146. border-color: #f4f4f4;
  11147. }
  11148. .ant-switch-disabled:after {
  11149. background: #ccc;
  11150. cursor: not-allowed;
  11151. }
  11152. .ant-switch-disabled .ant-switch-inner {
  11153. color: rgba(0, 0, 0, 0.25);
  11154. }
  11155. .patent-content {
  11156. padding: 20px;
  11157. background: #fff;
  11158. }
  11159. .patent-content .content-title {
  11160. height: 32px;
  11161. margin-bottom: 10px;
  11162. }
  11163. .patent-content .content-title > span {
  11164. color: #333;
  11165. font-size: 16px;
  11166. margin-bottom: 10px;
  11167. }
  11168. .patent-content .content-title .patent-addNew {
  11169. float: right;
  11170. margin-left: 20px;
  11171. }
  11172. .patent-content .content-title .patent-addNew button {
  11173. background: #ea0862;
  11174. color: #fff;
  11175. border: none;
  11176. border-radius: 4px;
  11177. padding: 6px 10px;
  11178. }
  11179. .patent-content .patent-alert {
  11180. font-size: 14px;
  11181. padding: 8px 48px;
  11182. }
  11183. .patent-content .patent-alert > i {
  11184. font-size: 19px;
  11185. top: 8px;
  11186. }
  11187. .patent-content .patent-query {
  11188. margin-bottom: 10px;
  11189. }
  11190. .patent-content .patent-query > input {
  11191. width: 180px;
  11192. margin-right: 20px;
  11193. }
  11194. .patent-content .patent-query > div {
  11195. margin-right: 20px;
  11196. }
  11197. .patent-content .patent-query button {
  11198. margin-left: 20px;
  11199. }
  11200. .patent-content .patent-query > span {
  11201. margin-left: 20px;
  11202. }
  11203. .patent-content .patent-query > span > span {
  11204. margin-left: 10px;
  11205. }
  11206. .patent-content .patent-query .search-more > p {
  11207. margin-top: 10px;
  11208. }
  11209. .patent-content .patent-query .search-more > p > span {
  11210. margin-right: 10px;
  11211. }
  11212. .patent-content .patent-query .search-more > div {
  11213. margin-top: 10px;
  11214. }
  11215. .patent-content .patent-query .search-more > div > div {
  11216. margin-right: 20px;
  11217. }
  11218. .ant-modal-content .ant-modal-header {
  11219. padding: 10px 16px;
  11220. background: #2d2d2d;
  11221. }
  11222. .ant-modal-content .ant-modal-header .ant-modal-title {
  11223. color: #fff;
  11224. font-size: 16px;
  11225. font-weight: 400;
  11226. }
  11227. .ant-modal-content .ant-modal-body {
  11228. padding: 16px 26px;
  11229. }
  11230. .ant-modal-content .ant-modal-body .ant-form-item-label {
  11231. text-align: left;
  11232. }
  11233. .ant-modal-content .ant-modal-body .ant-form-item-control .mini-input {
  11234. width: 50%;
  11235. }
  11236. .ant-modal-content .ant-modal-body .ant-form-item-control .ant-checkbox-wrapper {
  11237. margin-left: 60px;
  11238. }
  11239. .ant-modal-content .ant-modal-body .ant-form-item-control .ant-checkbox-wrapper span {
  11240. vertical-align: middle;
  11241. }
  11242. .ant-modal-content .ant-modal-body .ant-form-item {
  11243. margin-bottom: 12px;
  11244. }
  11245. .ant-modal-content .avatar-uploader,
  11246. .ant-modal-content .avatar-uploader-trigger,
  11247. .ant-modal-content .avatar {
  11248. width: 150px;
  11249. height: 150px;
  11250. }
  11251. .ant-modal-content .avatar-uploader {
  11252. display: block;
  11253. border: 1px dashed #d9d9d9;
  11254. border-radius: 6px;
  11255. cursor: pointer;
  11256. }
  11257. .ant-modal-content .avatar-uploader-trigger {
  11258. display: table-cell;
  11259. vertical-align: middle;
  11260. font-size: 28px;
  11261. color: #999;
  11262. }
  11263. .patent-desc-content .ant-modal-body .express-desc-row {
  11264. margin-bottom: 16px;
  11265. }
  11266. .patent-desc-content .ant-modal-body .express-desc-row > div {
  11267. line-height: 28px;
  11268. }
  11269. .patent-desc-content .ant-modal-body .express-desc-row .ant-col-4 {
  11270. margin-right: 10px;
  11271. }
  11272. .patent-desc-content .ant-modal-body .express-desc-row .ant-col-5 {
  11273. margin-right: 10px;
  11274. }
  11275. .patent-desc-content .ant-modal-body .patent-process-list span {
  11276. width: 180px;
  11277. display: inline-block;
  11278. }
  11279. .patent-desc-content .ant-modal-body > div {
  11280. color: #333;
  11281. margin-bottom: 10px;
  11282. }
  11283. .patent-desc-content .ant-modal-body > div > p {
  11284. margin-bottom: 10px;
  11285. }
  11286. .patent-desc-content .ant-modal-body > div > textarea {
  11287. margin-top: 10px;
  11288. }
  11289. .patent-desc-content .ant-modal-body > div .widthHalf {
  11290. display: inline-block;
  11291. width: 50%;
  11292. }
  11293. .patent-desc-content .ant-modal-body > div .widthHalf input {
  11294. width: 200px;
  11295. }
  11296. .patent-desc-content .ant-modal-body > div .widthHalf .two2four {
  11297. letter-spacing: 2em;
  11298. margin-right: -2em;
  11299. }
  11300. .patent-desc-content .ant-modal-body > div .widthHalf .four2eight {
  11301. letter-spacing: 1.33333333em;
  11302. margin-right: -1.33333333em;
  11303. }
  11304. .patent-desc-content .ant-modal-body > div .widthHalf .seven2eight {
  11305. letter-spacing: 0.27272727em;
  11306. margin-right: -0.27272727em;
  11307. }
  11308. .patent-desc-content .ant-modal-body > div .widthHalf .three2eight {
  11309. letter-spacing: 2.5em;
  11310. margin-right: -2.5em;
  11311. }
  11312. .patent-desc-content .ant-modal-body > div .widthThird {
  11313. display: inline-block;
  11314. width: 33%;
  11315. }
  11316. .patent-desc-content .ant-modal-body > div span {
  11317. color: #666;
  11318. }
  11319. .patent-desc-content .ant-modal-body > div .avatar-uploader {
  11320. float: left;
  11321. margin-right: 40px;
  11322. }
  11323. .patent-desc-content .ant-modal-body .avatar-text span {
  11324. margin-right: 40px;
  11325. display: inline-block;
  11326. width: 150px;
  11327. text-align: center;
  11328. }
  11329. .applyFee-desc-content .ant-modal-body > p {
  11330. margin-bottom: 10px;
  11331. }
  11332. .applyFee-desc-content .ant-modal-body .applyFee-title span {
  11333. margin-right: 20px;
  11334. font-size: 16px;
  11335. }
  11336. .applyFee-desc-content .ant-modal-body .applyFee-fee {
  11337. margin-bottom: 10px;
  11338. }
  11339. .applyFee-desc-content .ant-modal-body .applyFee-fee > span {
  11340. margin-right: 10px;
  11341. }
  11342. .applyFee-desc-content .ant-modal-body .applyFee-fee > input {
  11343. width: 150px;
  11344. }
  11345. .applyFee-desc-content .ant-modal-body div.applyFee-fee span {
  11346. line-height: 22px;
  11347. vertical-align: middle;
  11348. }
  11349. .ant-steps {
  11350. font-size: 0;
  11351. width: 100%;
  11352. line-height: 1.5;
  11353. }
  11354. .ant-steps .ant-steps-item {
  11355. position: relative;
  11356. display: inline-block;
  11357. vertical-align: top;
  11358. }
  11359. .ant-steps .ant-steps-item.ant-steps-status-wait .ant-steps-head-inner {
  11360. border-color: rgba(0, 0, 0, 0.25);
  11361. background-color: #fff;
  11362. }
  11363. .ant-steps .ant-steps-item.ant-steps-status-wait .ant-steps-head-inner > .ant-steps-icon {
  11364. color: rgba(0, 0, 0, 0.25);
  11365. }
  11366. .ant-steps .ant-steps-item.ant-steps-status-wait .ant-steps-head-inner > .ant-steps-icon .ant-steps-icon-dot {
  11367. background: rgba(0, 0, 0, 0.25);
  11368. }
  11369. .ant-steps .ant-steps-item.ant-steps-status-wait .ant-steps-title {
  11370. color: rgba(0, 0, 0, 0.43);
  11371. }
  11372. .ant-steps .ant-steps-item.ant-steps-status-wait .ant-steps-description {
  11373. color: rgba(0, 0, 0, 0.43);
  11374. }
  11375. .ant-steps .ant-steps-item.ant-steps-status-wait .ant-steps-tail > i {
  11376. background-color: #e9e9e9;
  11377. }
  11378. .ant-steps .ant-steps-item.ant-steps-status-process .ant-steps-head-inner {
  11379. border-color: #58a3ff;
  11380. background-color: #58a3ff;
  11381. }
  11382. .ant-steps .ant-steps-item.ant-steps-status-process .ant-steps-head-inner > .ant-steps-icon {
  11383. color: #fff;
  11384. }
  11385. .ant-steps .ant-steps-item.ant-steps-status-process .ant-steps-head-inner > .ant-steps-icon .ant-steps-icon-dot {
  11386. background: #58a3ff;
  11387. }
  11388. .ant-steps .ant-steps-item.ant-steps-status-process .ant-steps-title {
  11389. color: rgba(0, 0, 0, 0.65);
  11390. }
  11391. .ant-steps .ant-steps-item.ant-steps-status-process .ant-steps-description {
  11392. color: rgba(0, 0, 0, 0.65);
  11393. }
  11394. .ant-steps .ant-steps-item.ant-steps-status-process .ant-steps-tail > i {
  11395. background-color: #e9e9e9;
  11396. }
  11397. .ant-steps .ant-steps-item.ant-steps-status-finish .ant-steps-head-inner {
  11398. border-color: #58a3ff;
  11399. background-color: #fff;
  11400. }
  11401. .ant-steps .ant-steps-item.ant-steps-status-finish .ant-steps-head-inner > .ant-steps-icon {
  11402. color: #58a3ff;
  11403. }
  11404. .ant-steps .ant-steps-item.ant-steps-status-finish .ant-steps-head-inner > .ant-steps-icon .ant-steps-icon-dot {
  11405. background: #58a3ff;
  11406. }
  11407. .ant-steps .ant-steps-item.ant-steps-status-finish .ant-steps-tail > i:after {
  11408. width: 100%;
  11409. background: #58a3ff;
  11410. transition: all 0.6s;
  11411. opacity: 1;
  11412. }
  11413. .ant-steps .ant-steps-item.ant-steps-status-finish .ant-steps-title {
  11414. color: rgba(0, 0, 0, 0.43);
  11415. }
  11416. .ant-steps .ant-steps-item.ant-steps-status-finish .ant-steps-description {
  11417. color: rgba(0, 0, 0, 0.43);
  11418. }
  11419. .ant-steps .ant-steps-item.ant-steps-status-error .ant-steps-head-inner {
  11420. border-color: #f04134;
  11421. background-color: #fff;
  11422. }
  11423. .ant-steps .ant-steps-item.ant-steps-status-error .ant-steps-head-inner > .ant-steps-icon {
  11424. color: #f04134;
  11425. }
  11426. .ant-steps .ant-steps-item.ant-steps-status-error .ant-steps-head-inner > .ant-steps-icon .ant-steps-icon-dot {
  11427. background: #f04134;
  11428. }
  11429. .ant-steps .ant-steps-item.ant-steps-status-error .ant-steps-title {
  11430. color: #f04134;
  11431. }
  11432. .ant-steps .ant-steps-item.ant-steps-status-error .ant-steps-description {
  11433. color: #f04134;
  11434. }
  11435. .ant-steps .ant-steps-item.ant-steps-status-error .ant-steps-tail > i {
  11436. background-color: #e9e9e9;
  11437. }
  11438. .ant-steps .ant-steps-item.ant-steps-next-error .ant-steps-tail > i,
  11439. .ant-steps .ant-steps-item.ant-steps-next-error .ant-steps-tail > i:after {
  11440. background-color: #f04134;
  11441. }
  11442. .ant-steps .ant-steps-item.ant-steps-custom .ant-steps-head-inner {
  11443. background: none;
  11444. border: 0;
  11445. width: auto;
  11446. height: auto;
  11447. }
  11448. .ant-steps .ant-steps-item.ant-steps-custom .ant-steps-head-inner > .ant-steps-icon {
  11449. font-size: 26px;
  11450. width: 26px;
  11451. height: 26px;
  11452. }
  11453. .ant-steps .ant-steps-item.ant-steps-custom.ant-steps-status-process .ant-steps-head-inner > .ant-steps-icon {
  11454. color: #58a3ff;
  11455. }
  11456. .ant-steps .ant-steps-head,
  11457. .ant-steps .ant-steps-main {
  11458. position: relative;
  11459. display: inline-block;
  11460. vertical-align: top;
  11461. }
  11462. .ant-steps .ant-steps-head {
  11463. background: #fff;
  11464. }
  11465. .ant-steps .ant-steps-head-inner {
  11466. display: block;
  11467. border: 1px solid rgba(0, 0, 0, 0.25);
  11468. width: 26px;
  11469. height: 26px;
  11470. line-height: 23px;
  11471. text-align: center;
  11472. border-radius: 26px;
  11473. font-size: 14px;
  11474. margin-right: 8px;
  11475. transition: background-color 0.3s ease, border-color 0.3s ease;
  11476. }
  11477. .ant-steps .ant-steps-head-inner > .ant-steps-icon {
  11478. line-height: 1;
  11479. color: #58a3ff;
  11480. position: relative;
  11481. }
  11482. .ant-steps .ant-steps-head-inner > .ant-steps-icon.anticon {
  11483. font-size: 12px;
  11484. }
  11485. .ant-steps .ant-steps-head-inner > .ant-steps-icon.anticon-cross,
  11486. .ant-steps .ant-steps-head-inner > .ant-steps-icon.anticon-check {
  11487. font-weight: bold;
  11488. }
  11489. .ant-steps .ant-steps-main {
  11490. margin-top: 2.5px;
  11491. }
  11492. .ant-steps .ant-steps-title {
  11493. font-size: 14px;
  11494. margin-bottom: 4px;
  11495. color: rgba(0, 0, 0, 0.65);
  11496. font-weight: bold;
  11497. background: #fff;
  11498. display: inline-block;
  11499. padding-right: 10px;
  11500. }
  11501. .ant-steps .ant-steps-title > a:first-child:last-child {
  11502. color: rgba(0, 0, 0, 0.65);
  11503. }
  11504. .ant-steps .ant-steps-item-last .ant-steps-title {
  11505. padding-right: 0;
  11506. width: 100%;
  11507. }
  11508. .ant-steps .ant-steps-description {
  11509. font-size: 12px;
  11510. color: rgba(0, 0, 0, 0.43);
  11511. }
  11512. .ant-steps .ant-steps-tail {
  11513. position: absolute;
  11514. left: 0;
  11515. width: 100%;
  11516. top: 13px;
  11517. padding: 0 10px;
  11518. }
  11519. .ant-steps .ant-steps-tail > i {
  11520. display: inline-block;
  11521. vertical-align: top;
  11522. background: #e9e9e9;
  11523. height: 1px;
  11524. border-radius: 1px;
  11525. width: 100%;
  11526. position: relative;
  11527. }
  11528. .ant-steps .ant-steps-tail > i:after {
  11529. position: absolute;
  11530. content: '';
  11531. top: 0;
  11532. width: 0;
  11533. background: #e9e9e9;
  11534. height: 100%;
  11535. opacity: 0;
  11536. }
  11537. .ant-steps.ant-steps-small .ant-steps-head-inner {
  11538. border: 1px solid rgba(0, 0, 0, 0.25);
  11539. width: 18px;
  11540. height: 18px;
  11541. line-height: 15px;
  11542. text-align: center;
  11543. border-radius: 18px;
  11544. font-size: 12px;
  11545. margin-right: 10px;
  11546. }
  11547. .ant-steps.ant-steps-small .ant-steps-head-inner > .ant-steps-icon.anticon {
  11548. display: inline-block;
  11549. font-size: 12px;
  11550. font-size: 9px \9;
  11551. transform: scale(0.75) rotate(0deg);
  11552. /* IE6-IE8 */
  11553. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  11554. zoom: 1;
  11555. top: 0;
  11556. }
  11557. :root .ant-steps.ant-steps-small .ant-steps-head-inner > .ant-steps-icon.anticon {
  11558. filter: none;
  11559. }
  11560. :root .ant-steps.ant-steps-small .ant-steps-head-inner > .ant-steps-icon.anticon {
  11561. font-size: 12px;
  11562. }
  11563. .ant-steps.ant-steps-small .ant-steps-main {
  11564. margin-top: 0;
  11565. }
  11566. .ant-steps.ant-steps-small .ant-steps-title {
  11567. font-size: 12px;
  11568. margin-bottom: 4px;
  11569. color: rgba(0, 0, 0, 0.65);
  11570. font-weight: bold;
  11571. }
  11572. .ant-steps.ant-steps-small .ant-steps-description {
  11573. font-size: 12px;
  11574. color: rgba(0, 0, 0, 0.43);
  11575. }
  11576. .ant-steps.ant-steps-small .ant-steps-tail {
  11577. top: 8px;
  11578. padding: 0 8px;
  11579. }
  11580. .ant-steps.ant-steps-small .ant-steps-tail > i {
  11581. height: 1px;
  11582. border-radius: 1px;
  11583. width: 100%;
  11584. }
  11585. .ant-steps.ant-steps-small .ant-steps-custom .ant-steps-head-inner > .ant-steps-icon {
  11586. font-size: 18px;
  11587. width: 18px;
  11588. height: 18px;
  11589. }
  11590. .ant-steps-vertical .ant-steps-item {
  11591. display: block;
  11592. }
  11593. .ant-steps-vertical .ant-steps-tail {
  11594. position: absolute;
  11595. left: 13px;
  11596. top: 0;
  11597. height: 100%;
  11598. width: 1px;
  11599. padding: 30px 0 4px;
  11600. }
  11601. .ant-steps-vertical .ant-steps-tail > i {
  11602. height: 100%;
  11603. width: 1px;
  11604. }
  11605. .ant-steps-vertical .ant-steps-tail > i:after {
  11606. height: 0;
  11607. width: 100%;
  11608. }
  11609. .ant-steps-vertical .ant-steps-status-finish .ant-steps-tail > i:after {
  11610. height: 100%;
  11611. }
  11612. .ant-steps-vertical .ant-steps-head {
  11613. float: left;
  11614. }
  11615. .ant-steps-vertical .ant-steps-head-inner {
  11616. margin-right: 16px;
  11617. }
  11618. .ant-steps-vertical .ant-steps-main {
  11619. min-height: 47px;
  11620. overflow: hidden;
  11621. display: block;
  11622. }
  11623. .ant-steps-vertical .ant-steps-main .ant-steps-title {
  11624. line-height: 26px;
  11625. }
  11626. .ant-steps-vertical .ant-steps-main .ant-steps-description {
  11627. padding-bottom: 12px;
  11628. }
  11629. .ant-steps-vertical.ant-steps-small .ant-steps-tail {
  11630. position: absolute;
  11631. left: 9px;
  11632. top: 0;
  11633. padding: 22px 0 4px;
  11634. }
  11635. .ant-steps-vertical.ant-steps-small .ant-steps-tail > i {
  11636. height: 100%;
  11637. }
  11638. .ant-steps-vertical.ant-steps-small .ant-steps-title {
  11639. line-height: 18px;
  11640. }
  11641. .ant-steps-horizontal.ant-steps-hidden {
  11642. visibility: hidden;
  11643. }
  11644. .ant-steps-horizontal .ant-steps-description {
  11645. max-width: 120px;
  11646. }
  11647. .ant-steps-horizontal .ant-steps-item:not(:first-child) .ant-steps-head {
  11648. padding-left: 10px;
  11649. margin-left: -10px;
  11650. }
  11651. .ant-steps-label-vertical .ant-steps-tail {
  11652. padding: 0 32px 0 60px;
  11653. }
  11654. .ant-steps-label-vertical .ant-steps-item .ant-steps-step {
  11655. display: inline-block;
  11656. text-align: center;
  11657. width: 120px;
  11658. }
  11659. .ant-steps-label-vertical .ant-steps-item:not(:first-child) .ant-steps-head {
  11660. margin-left: 0;
  11661. padding-left: 0;
  11662. }
  11663. .ant-steps-label-vertical .ant-steps-head {
  11664. display: inline-block;
  11665. padding-right: 10px;
  11666. }
  11667. .ant-steps-label-vertical .ant-steps-head-inner {
  11668. margin: 0 auto;
  11669. }
  11670. .ant-steps-label-vertical .ant-steps-main {
  11671. display: block;
  11672. margin-top: 10px;
  11673. }
  11674. .ant-steps-label-vertical .ant-steps-main .ant-steps-title {
  11675. padding-right: 0;
  11676. }
  11677. .ant-steps-label-vertical .ant-steps-main .ant-steps-description {
  11678. text-align: left;
  11679. }
  11680. .ant-steps-dot .ant-steps-tail {
  11681. padding: 0 0 0 60px;
  11682. width: 100%;
  11683. top: 1px;
  11684. }
  11685. .ant-steps-dot .ant-steps-tail > i {
  11686. height: 3px;
  11687. }
  11688. .ant-steps-dot .ant-steps-head {
  11689. padding-right: 0;
  11690. }
  11691. .ant-steps-dot .ant-steps-head-inner {
  11692. width: 5px;
  11693. height: 5px;
  11694. line-height: 5px;
  11695. border: 0;
  11696. }
  11697. .ant-steps-dot .ant-steps-head-inner .ant-steps-icon-dot {
  11698. float: left;
  11699. width: 100%;
  11700. height: 100%;
  11701. border-radius: 2.5px;
  11702. position: relative;
  11703. }
  11704. .ant-steps-dot .ant-steps-head-inner .ant-steps-icon-dot:after {
  11705. content: '';
  11706. background: rgba(255, 255, 255, 0.001);
  11707. width: 40px;
  11708. height: 24px;
  11709. position: absolute;
  11710. top: -8px;
  11711. left: -16px;
  11712. }
  11713. .ant-steps-dot .ant-steps-head-inner .ant-steps-icon-dot:hover {
  11714. transform: scale(1.3);
  11715. }
  11716. .ant-steps-dot .ant-steps-status-process .ant-steps-head {
  11717. top: -1px;
  11718. }
  11719. .ant-steps-dot .ant-steps-status-process .ant-steps-head-inner {
  11720. width: 7px;
  11721. height: 7px;
  11722. line-height: 7px;
  11723. }
  11724. .ant-steps-dot .ant-steps-status-process .ant-steps-head-inner .ant-steps-icon-dot {
  11725. border-radius: 3.5px;
  11726. }
  11727. .ant-steps-dot.ant-steps-vertical .ant-steps-tail {
  11728. left: 2px;
  11729. height: 100%;
  11730. padding: 0;
  11731. top: 15px;
  11732. }
  11733. .ant-steps-dot.ant-steps-vertical .ant-steps-tail > i {
  11734. height: 100%;
  11735. width: 3px;
  11736. }
  11737. .ant-steps-dot.ant-steps-vertical .ant-steps-head {
  11738. top: 12px;
  11739. left: 1px;
  11740. }
  11741. .ant-steps-dot.ant-steps-vertical .ant-steps-status-process .ant-steps-head {
  11742. left: 0;
  11743. }