zui.css 182 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714
  1. /*!
  2. * ZUI: Standard edition - v1.8.1 - 2018-01-18
  3. * http://zui.sexy
  4. * GitHub: https://github.com/easysoft/zui.git
  5. * Copyright (c) 2018 cnezsoft.com; Licensed MIT
  6. */
  7. /*! Some code copy from Bootstrap v3.0.0 by @fat and @mdo. (Copyright 2013 Twitter, Inc. Licensed under http://www.apache.org/licenses/)*/
  8. /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
  9. article,
  10. aside,
  11. details,
  12. figcaption,
  13. figure,
  14. footer,
  15. header,
  16. hgroup,
  17. main,
  18. nav,
  19. section,
  20. summary {
  21. display: block;
  22. }
  23. audio,
  24. canvas,
  25. video {
  26. display: inline-block;
  27. }
  28. audio:not([controls]) {
  29. display: none;
  30. height: 0;
  31. }
  32. [hidden],
  33. template {
  34. display: none;
  35. }
  36. html {
  37. font-family: sans-serif;
  38. -ms-text-size-adjust: 100%;
  39. -webkit-text-size-adjust: 100%;
  40. }
  41. body {
  42. margin: 0;
  43. }
  44. a {
  45. background: transparent;
  46. }
  47. a:focus {
  48. outline: thin dotted;
  49. }
  50. a:active,
  51. a:hover {
  52. outline: 0;
  53. }
  54. h1 {
  55. margin: .67em 0;
  56. font-size: 2em;
  57. }
  58. abbr[title] {
  59. border-bottom: 1px dotted;
  60. }
  61. b,
  62. strong {
  63. font-weight: bold;
  64. }
  65. dfn {
  66. font-style: italic;
  67. }
  68. hr {
  69. height: 0;
  70. -webkit-box-sizing: content-box;
  71. -moz-box-sizing: content-box;
  72. box-sizing: content-box;
  73. }
  74. mark {
  75. color: #000;
  76. background: #ff0;
  77. }
  78. code,
  79. kbd,
  80. pre,
  81. samp {
  82. font-family: monospace, serif;
  83. font-size: 1em;
  84. }
  85. pre {
  86. white-space: pre-wrap;
  87. }
  88. q {
  89. quotes: "\201C" "\201D" "\2018" "\2019";
  90. }
  91. small {
  92. font-size: 80%;
  93. }
  94. sub,
  95. sup {
  96. position: relative;
  97. font-size: 75%;
  98. line-height: 0;
  99. vertical-align: baseline;
  100. }
  101. sup {
  102. top: -.5em;
  103. }
  104. sub {
  105. bottom: -.25em;
  106. }
  107. img {
  108. border: 0;
  109. }
  110. svg:not(:root) {
  111. overflow: hidden;
  112. }
  113. figure {
  114. margin: 0;
  115. }
  116. fieldset {
  117. padding: .35em .625em .75em;
  118. margin: 0 2px;
  119. border: 1px solid #c0c0c0;
  120. }
  121. legend {
  122. padding: 0;
  123. border: 0;
  124. }
  125. button,
  126. input,
  127. select,
  128. textarea {
  129. margin: 0;
  130. font-family: inherit;
  131. font-size: 100%;
  132. }
  133. button,
  134. input {
  135. line-height: normal;
  136. }
  137. button,
  138. select {
  139. text-transform: none;
  140. }
  141. button,
  142. html input[type="button"],
  143. input[type="reset"],
  144. input[type="submit"] {
  145. -webkit-appearance: button;
  146. cursor: pointer;
  147. }
  148. button[disabled],
  149. html input[disabled] {
  150. cursor: default;
  151. }
  152. input[type="checkbox"],
  153. input[type="radio"] {
  154. -webkit-box-sizing: border-box;
  155. -moz-box-sizing: border-box;
  156. box-sizing: border-box;
  157. padding: 0;
  158. }
  159. input[type="search"] {
  160. -webkit-box-sizing: content-box;
  161. -moz-box-sizing: content-box;
  162. box-sizing: content-box;
  163. -webkit-appearance: textfield;
  164. }
  165. input[type="search"]::-webkit-search-cancel-button,
  166. input[type="search"]::-webkit-search-decoration {
  167. -webkit-appearance: none;
  168. }
  169. button::-moz-focus-inner,
  170. input::-moz-focus-inner {
  171. padding: 0;
  172. border: 0;
  173. }
  174. textarea {
  175. overflow: auto;
  176. vertical-align: top;
  177. }
  178. table {
  179. border-spacing: 0;
  180. border-collapse: collapse;
  181. }
  182. .clearfix:before,
  183. .clearfix:after,
  184. .container:before,
  185. .container:after,
  186. .container-fluid:before,
  187. .container-fluid:after,
  188. .container-fixed:before,
  189. .container-fixed:after,
  190. .container-fixed-md:before,
  191. .container-fixed-md:after,
  192. .container-fixed-sm:before,
  193. .container-fixed-sm:after,
  194. .container-fixed-xs:before,
  195. .container-fixed-xs:after,
  196. .row:before,
  197. .row:after,
  198. .dl-horizontal dd:before,
  199. .dl-horizontal dd:after,
  200. .btn-toolbar:before,
  201. .btn-toolbar:after,
  202. .btn-group-vertical > .btn-group:before,
  203. .btn-group-vertical > .btn-group:after,
  204. .form-horizontal .form-group:before,
  205. .form-horizontal .form-group:after,
  206. .panel-body:before,
  207. .panel-body:after,
  208. .pager-justify:before,
  209. .pager-justify:after,
  210. .pager-loose:before,
  211. .pager-loose:after,
  212. .nav:before,
  213. .nav:after,
  214. .navbar:before,
  215. .navbar:after,
  216. .navbar-header:before,
  217. .navbar-header:after,
  218. .navbar-collapse:before,
  219. .navbar-collapse:after,
  220. .modal-header:before,
  221. .modal-header:after,
  222. .modal-footer:before,
  223. .modal-footer:after,
  224. .cards:before,
  225. .cards:after,
  226. .btn-group-vertical > .btn-group-vertical:before,
  227. .btn-group-vertical > .btn-group-vertical:after {
  228. /* 1 */
  229. display: table;
  230. content: " ";
  231. /* 2 */
  232. }
  233. .clearfix:after,
  234. .container:after,
  235. .container-fluid:after,
  236. .container-fixed:after,
  237. .container-fixed-md:after,
  238. .container-fixed-sm:after,
  239. .container-fixed-xs:after,
  240. .row:after,
  241. .dl-horizontal dd:after,
  242. .btn-toolbar:after,
  243. .btn-group-vertical > .btn-group:after,
  244. .form-horizontal .form-group:after,
  245. .panel-body:after,
  246. .pager-justify:after,
  247. .pager-loose:after,
  248. .nav:after,
  249. .navbar:after,
  250. .navbar-header:after,
  251. .navbar-collapse:after,
  252. .modal-header:after,
  253. .modal-footer:after,
  254. .cards:after,
  255. .btn-group-vertical > .btn-group-vertical:after {
  256. clear: both;
  257. }
  258. .center-block {
  259. display: block;
  260. margin-right: auto;
  261. margin-left: auto;
  262. }
  263. .pull-right {
  264. float: right !important;
  265. }
  266. .pull-left {
  267. float: left !important;
  268. }
  269. .hide {
  270. display: none;
  271. }
  272. .showing {
  273. display: block;
  274. }
  275. .hidden {
  276. display: none!important;
  277. visibility: hidden !important;
  278. }
  279. .show {
  280. display: block!important;
  281. visibility: visible !important;
  282. }
  283. .invisible {
  284. visibility: hidden;
  285. }
  286. .text-hide {
  287. font: 0/0 a;
  288. color: transparent;
  289. text-shadow: none;
  290. background-color: transparent;
  291. border: 0;
  292. }
  293. .affix {
  294. position: fixed;
  295. }
  296. .with-padding {
  297. padding: 5px 12px;
  298. }
  299. .no-padding {
  300. padding: 0!important;
  301. }
  302. .visible-xs,
  303. .inline.visible-xs,
  304. .inline-block.visible-xs,
  305. tr.visible-xs,
  306. th.visible-xs,
  307. td.visible-xs {
  308. display: none !important;
  309. }
  310. @media (max-width: 767px) {
  311. .visible-xs {
  312. display: block !important;
  313. }
  314. .inline.visible-xs {
  315. display: inline !important;
  316. }
  317. .inline-block.visible-xs {
  318. display: inline-block !important;
  319. }
  320. tr.visible-xs {
  321. display: table-row !important;
  322. }
  323. th.visible-xs,
  324. td.visible-xs {
  325. display: table-cell !important;
  326. }
  327. }
  328. @media (min-width: 768px) and (max-width: 991px) {
  329. .visible-xs.visible-sm {
  330. display: block !important;
  331. }
  332. .inline.visible-xs.visible-sm {
  333. display: inline !important;
  334. }
  335. .inline-block.visible-xs.visible-sm {
  336. display: inline-block !important;
  337. }
  338. tr.visible-xs.visible-sm {
  339. display: table-row !important;
  340. }
  341. th.visible-xs.visible-sm,
  342. td.visible-xs.visible-sm {
  343. display: table-cell !important;
  344. }
  345. }
  346. @media (min-width: 992px) and (max-width: 1199px) {
  347. .visible-xs.visible-md {
  348. display: block !important;
  349. }
  350. .inline.visible-xs.visible-md {
  351. display: inline !important;
  352. }
  353. .inline-block.visible-xs.visible-md {
  354. display: inline-block !important;
  355. }
  356. tr.visible-xs.visible-md {
  357. display: table-row !important;
  358. }
  359. th.visible-xs.visible-md,
  360. td.visible-xs.visible-md {
  361. display: table-cell !important;
  362. }
  363. }
  364. @media (min-width: 1200px) {
  365. .visible-xs.visible-lg {
  366. display: block !important;
  367. }
  368. .inline.visible-xs.visible-lg {
  369. display: inline !important;
  370. }
  371. .inline-block.visible-xs.visible-lg {
  372. display: inline-block !important;
  373. }
  374. tr.visible-xs.visible-lg {
  375. display: table-row !important;
  376. }
  377. th.visible-xs.visible-lg,
  378. td.visible-xs.visible-lg {
  379. display: table-cell !important;
  380. }
  381. }
  382. .visible-sm,
  383. .inline.visible-sm,
  384. .inline-block.visible-sm,
  385. tr.visible-sm,
  386. th.visible-sm,
  387. td.visible-sm {
  388. display: none !important;
  389. }
  390. @media (max-width: 767px) {
  391. .visible-sm.visible-xs {
  392. display: block !important;
  393. }
  394. .inline.visible-sm.visible-xs {
  395. display: inline !important;
  396. }
  397. .inline-block.visible-sm.visible-xs {
  398. display: inline-block !important;
  399. }
  400. tr.visible-sm.visible-xs {
  401. display: table-row !important;
  402. }
  403. th.visible-sm.visible-xs,
  404. td.visible-sm.visible-xs {
  405. display: table-cell !important;
  406. }
  407. }
  408. @media (min-width: 768px) and (max-width: 991px) {
  409. .visible-sm {
  410. display: block !important;
  411. }
  412. .inline.visible-sm {
  413. display: inline !important;
  414. }
  415. .inline-block.visible-sm {
  416. display: inline-block !important;
  417. }
  418. tr.visible-sm {
  419. display: table-row !important;
  420. }
  421. th.visible-sm,
  422. td.visible-sm {
  423. display: table-cell !important;
  424. }
  425. }
  426. @media (min-width: 992px) and (max-width: 1199px) {
  427. .visible-sm.visible-md {
  428. display: block !important;
  429. }
  430. .inline.visible-sm.visible-md {
  431. display: inline !important;
  432. }
  433. .inline-block.visible-sm.visible-md {
  434. display: inline-block !important;
  435. }
  436. tr.visible-sm.visible-md {
  437. display: table-row !important;
  438. }
  439. th.visible-sm.visible-md,
  440. td.visible-sm.visible-md {
  441. display: table-cell !important;
  442. }
  443. }
  444. @media (min-width: 1200px) {
  445. .visible-sm.visible-lg {
  446. display: block !important;
  447. }
  448. .inline.visible-sm.visible-lg {
  449. display: inline !important;
  450. }
  451. .inline-block.visible-sm.visible-lg {
  452. display: inline-block !important;
  453. }
  454. tr.visible-sm.visible-lg {
  455. display: table-row !important;
  456. }
  457. th.visible-sm.visible-lg,
  458. td.visible-sm.visible-lg {
  459. display: table-cell !important;
  460. }
  461. }
  462. .visible-md,
  463. .inline.visible-md,
  464. .inline-block.visible-md,
  465. tr.visible-md,
  466. th.visible-md,
  467. td.visible-md {
  468. display: none !important;
  469. }
  470. @media (max-width: 767px) {
  471. .visible-md.visible-xs {
  472. display: block !important;
  473. }
  474. .inline.visible-md.visible-xs {
  475. display: inline !important;
  476. }
  477. .inline-block.visible-md.visible-xs {
  478. display: inline-block !important;
  479. }
  480. tr.visible-md.visible-xs {
  481. display: table-row !important;
  482. }
  483. th.visible-md.visible-xs,
  484. td.visible-md.visible-xs {
  485. display: table-cell !important;
  486. }
  487. }
  488. @media (min-width: 768px) and (max-width: 991px) {
  489. .visible-md.visible-sm {
  490. display: block !important;
  491. }
  492. .inline.visible-md.visible-sm {
  493. display: inline !important;
  494. }
  495. .inline-block.visible-md.visible-sm {
  496. display: inline-block !important;
  497. }
  498. tr.visible-md.visible-sm {
  499. display: table-row !important;
  500. }
  501. th.visible-md.visible-sm,
  502. td.visible-md.visible-sm {
  503. display: table-cell !important;
  504. }
  505. }
  506. @media (min-width: 992px) and (max-width: 1199px) {
  507. .visible-md {
  508. display: block !important;
  509. }
  510. .inline.visible-md {
  511. display: inline !important;
  512. }
  513. .inline-block.visible-md {
  514. display: inline-block !important;
  515. }
  516. tr.visible-md {
  517. display: table-row !important;
  518. }
  519. th.visible-md,
  520. td.visible-md {
  521. display: table-cell !important;
  522. }
  523. }
  524. @media (min-width: 1200px) {
  525. .visible-md.visible-lg {
  526. display: block !important;
  527. }
  528. .inline.visible-md.visible-lg {
  529. display: inline !important;
  530. }
  531. .inline-block.visible-md.visible-lg {
  532. display: inline-block !important;
  533. }
  534. tr.visible-md.visible-lg {
  535. display: table-row !important;
  536. }
  537. th.visible-md.visible-lg,
  538. td.visible-md.visible-lg {
  539. display: table-cell !important;
  540. }
  541. }
  542. .visible-lg,
  543. .inline.visible-lg,
  544. .inline-block.visible-lg,
  545. tr.visible-lg,
  546. th.visible-lg,
  547. td.visible-lg {
  548. display: none !important;
  549. }
  550. @media (max-width: 767px) {
  551. .visible-lg.visible-xs {
  552. display: block !important;
  553. }
  554. .inline.visible-lg.visible-xs {
  555. display: inline !important;
  556. }
  557. .inline-block.visible-lg.visible-xs {
  558. display: inline-block !important;
  559. }
  560. tr.visible-lg.visible-xs {
  561. display: table-row !important;
  562. }
  563. th.visible-lg.visible-xs,
  564. td.visible-lg.visible-xs {
  565. display: table-cell !important;
  566. }
  567. }
  568. @media (min-width: 768px) and (max-width: 991px) {
  569. .visible-lg.visible-sm {
  570. display: block !important;
  571. }
  572. .inline.visible-lg.visible-sm {
  573. display: inline !important;
  574. }
  575. .inline-block.visible-lg.visible-sm {
  576. display: inline-block !important;
  577. }
  578. tr.visible-lg.visible-sm {
  579. display: table-row !important;
  580. }
  581. th.visible-lg.visible-sm,
  582. td.visible-lg.visible-sm {
  583. display: table-cell !important;
  584. }
  585. }
  586. @media (min-width: 992px) and (max-width: 1199px) {
  587. .visible-lg.visible-md {
  588. display: block !important;
  589. }
  590. .inline.visible-lg.visible-md {
  591. display: inline !important;
  592. }
  593. .inline-block.visible-lg.visible-md {
  594. display: inline-block !important;
  595. }
  596. tr.visible-lg.visible-md {
  597. display: table-row !important;
  598. }
  599. th.visible-lg.visible-md,
  600. td.visible-lg.visible-md {
  601. display: table-cell !important;
  602. }
  603. }
  604. @media (min-width: 1200px) {
  605. .visible-lg {
  606. display: block !important;
  607. }
  608. .inline.visible-lg {
  609. display: inline !important;
  610. }
  611. .inline-block.visible-lg {
  612. display: inline-block !important;
  613. }
  614. tr.visible-lg {
  615. display: table-row !important;
  616. }
  617. th.visible-lg,
  618. td.visible-lg {
  619. display: table-cell !important;
  620. }
  621. }
  622. .hidden-xs {
  623. display: block !important;
  624. }
  625. .inline.hidden-xs {
  626. display: inline !important;
  627. }
  628. .inline-block.hidden-xs {
  629. display: inline-block !important;
  630. }
  631. tr.hidden-xs {
  632. display: table-row !important;
  633. }
  634. th.hidden-xs,
  635. td.hidden-xs {
  636. display: table-cell !important;
  637. }
  638. @media (max-width: 767px) {
  639. .hidden-xs,
  640. .inline.hidden-xs,
  641. .inline-block.hidden-xs,
  642. tr.hidden-xs,
  643. th.hidden-xs,
  644. td.hidden-xs {
  645. display: none !important;
  646. }
  647. }
  648. @media (min-width: 768px) and (max-width: 991px) {
  649. .hidden-xs.hidden-sm,
  650. .inline.hidden-xs.hidden-sm,
  651. .inline-block.hidden-xs.hidden-sm,
  652. tr.hidden-xs.hidden-sm,
  653. th.hidden-xs.hidden-sm,
  654. td.hidden-xs.hidden-sm {
  655. display: none !important;
  656. }
  657. }
  658. @media (min-width: 992px) and (max-width: 1199px) {
  659. .hidden-xs.hidden-md,
  660. .inline.hidden-xs.hidden-md,
  661. .inline-block.hidden-xs.hidden-md,
  662. tr.hidden-xs.hidden-md,
  663. th.hidden-xs.hidden-md,
  664. td.hidden-xs.hidden-md {
  665. display: none !important;
  666. }
  667. }
  668. @media (min-width: 1200px) {
  669. .hidden-xs.hidden-lg,
  670. .inline.hidden-xs.hidden-lg,
  671. .inline-block.hidden-xs.hidden-lg,
  672. tr.hidden-xs.hidden-lg,
  673. th.hidden-xs.hidden-lg,
  674. td.hidden-xs.hidden-lg {
  675. display: none !important;
  676. }
  677. }
  678. .hidden-sm {
  679. display: block !important;
  680. }
  681. .inline.hidden-sm {
  682. display: inline !important;
  683. }
  684. .inline-block.hidden-sm {
  685. display: inline-block !important;
  686. }
  687. tr.hidden-sm {
  688. display: table-row !important;
  689. }
  690. th.hidden-sm,
  691. td.hidden-sm {
  692. display: table-cell !important;
  693. }
  694. @media (max-width: 767px) {
  695. .hidden-sm.hidden-xs,
  696. .inline.hidden-sm.hidden-xs,
  697. .inline-block.hidden-sm.hidden-xs,
  698. tr.hidden-sm.hidden-xs,
  699. th.hidden-sm.hidden-xs,
  700. td.hidden-sm.hidden-xs {
  701. display: none !important;
  702. }
  703. }
  704. @media (min-width: 768px) and (max-width: 991px) {
  705. .hidden-sm,
  706. .inline.hidden-sm,
  707. .inline-block.hidden-sm,
  708. tr.hidden-sm,
  709. th.hidden-sm,
  710. td.hidden-sm {
  711. display: none !important;
  712. }
  713. }
  714. @media (min-width: 992px) and (max-width: 1199px) {
  715. .hidden-sm.hidden-md,
  716. .inline.hidden-sm.hidden-md,
  717. .inline-block.hidden-sm.hidden-md,
  718. tr.hidden-sm.hidden-md,
  719. th.hidden-sm.hidden-md,
  720. td.hidden-sm.hidden-md {
  721. display: none !important;
  722. }
  723. }
  724. @media (min-width: 1200px) {
  725. .hidden-sm.hidden-lg,
  726. .inline.hidden-sm.hidden-lg,
  727. .inline-block.hidden-sm.hidden-lg,
  728. tr.hidden-sm.hidden-lg,
  729. th.hidden-sm.hidden-lg,
  730. td.hidden-sm.hidden-lg {
  731. display: none !important;
  732. }
  733. }
  734. .hidden-md {
  735. display: block !important;
  736. }
  737. .inline.hidden-md {
  738. display: inline !important;
  739. }
  740. .inline-block.hidden-md {
  741. display: inline-block !important;
  742. }
  743. tr.hidden-md {
  744. display: table-row !important;
  745. }
  746. th.hidden-md,
  747. td.hidden-md {
  748. display: table-cell !important;
  749. }
  750. @media (max-width: 767px) {
  751. .hidden-md.hidden-xs,
  752. .inline.hidden-md.hidden-xs,
  753. .inline-block.hidden-md.hidden-xs,
  754. tr.hidden-md.hidden-xs,
  755. th.hidden-md.hidden-xs,
  756. td.hidden-md.hidden-xs {
  757. display: none !important;
  758. }
  759. }
  760. @media (min-width: 768px) and (max-width: 991px) {
  761. .hidden-md.hidden-sm,
  762. .inline.hidden-md.hidden-sm,
  763. .inline-block.hidden-md.hidden-sm,
  764. tr.hidden-md.hidden-sm,
  765. th.hidden-md.hidden-sm,
  766. td.hidden-md.hidden-sm {
  767. display: none !important;
  768. }
  769. }
  770. @media (min-width: 992px) and (max-width: 1199px) {
  771. .hidden-md,
  772. .inline.hidden-md,
  773. .inline-block.hidden-md,
  774. tr.hidden-md,
  775. th.hidden-md,
  776. td.hidden-md {
  777. display: none !important;
  778. }
  779. }
  780. @media (min-width: 1200px) {
  781. .hidden-md.hidden-lg,
  782. .inline.hidden-md.hidden-lg,
  783. .inline-block.hidden-md.hidden-lg,
  784. tr.hidden-md.hidden-lg,
  785. th.hidden-md.hidden-lg,
  786. td.hidden-md.hidden-lg {
  787. display: none !important;
  788. }
  789. }
  790. .hidden-lg {
  791. display: block !important;
  792. }
  793. .inline.hidden-lg {
  794. display: inline !important;
  795. }
  796. .inline-block.hidden-lg {
  797. display: inline-block !important;
  798. }
  799. tr.hidden-lg {
  800. display: table-row !important;
  801. }
  802. th.hidden-lg,
  803. td.hidden-lg {
  804. display: table-cell !important;
  805. }
  806. @media (max-width: 767px) {
  807. .hidden-lg.hidden-xs,
  808. .inline.hidden-lg.hidden-xs,
  809. .inline-block.hidden-lg.hidden-xs,
  810. tr.hidden-lg.hidden-xs,
  811. th.hidden-lg.hidden-xs,
  812. td.hidden-lg.hidden-xs {
  813. display: none !important;
  814. }
  815. }
  816. @media (min-width: 768px) and (max-width: 991px) {
  817. .hidden-lg.hidden-sm,
  818. .inline.hidden-lg.hidden-sm,
  819. .inline-block.hidden-lg.hidden-sm,
  820. tr.hidden-lg.hidden-sm,
  821. th.hidden-lg.hidden-sm,
  822. td.hidden-lg.hidden-sm {
  823. display: none !important;
  824. }
  825. }
  826. @media (min-width: 992px) and (max-width: 1199px) {
  827. .hidden-lg.hidden-md,
  828. .inline.hidden-lg.hidden-md,
  829. .inline-block.hidden-lg.hidden-md,
  830. tr.hidden-lg.hidden-md,
  831. th.hidden-lg.hidden-md,
  832. td.hidden-lg.hidden-md {
  833. display: none !important;
  834. }
  835. }
  836. @media (min-width: 1200px) {
  837. .hidden-lg,
  838. .inline.hidden-lg,
  839. .inline-block.hidden-lg,
  840. tr.hidden-lg,
  841. th.hidden-lg,
  842. td.hidden-lg {
  843. display: none !important;
  844. }
  845. }
  846. .visible-print,
  847. .inline.visible-print,
  848. .inline-block.visible-print,
  849. tr.visible-print,
  850. th.visible-print,
  851. td.visible-print {
  852. display: none !important;
  853. }
  854. @media print {
  855. .visible-print {
  856. display: block !important;
  857. }
  858. .inline.visible-print {
  859. display: inline !important;
  860. }
  861. .inline-block.visible-print {
  862. display: inline-block !important;
  863. }
  864. tr.visible-print {
  865. display: table-row !important;
  866. }
  867. th.visible-print,
  868. td.visible-print {
  869. display: table-cell !important;
  870. }
  871. .hidden-print,
  872. .inline.hidden-print,
  873. .inline-block.hidden-print,
  874. tr.hidden-print,
  875. th.hidden-print,
  876. td.hidden-print {
  877. display: none !important;
  878. }
  879. }
  880. *,
  881. *:before,
  882. *:after {
  883. -webkit-box-sizing: border-box;
  884. -moz-box-sizing: border-box;
  885. box-sizing: border-box;
  886. }
  887. html {
  888. font-size: 10px;
  889. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  890. }
  891. body {
  892. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, 'Microsoft Yahei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
  893. font-size: 13px;
  894. line-height: 1.53846154;
  895. color: #353535;
  896. background-color: #fff;
  897. }
  898. input,
  899. button,
  900. select,
  901. textarea {
  902. font-family: inherit;
  903. font-size: inherit;
  904. line-height: inherit;
  905. }
  906. a {
  907. color: #145ccd;
  908. text-decoration: none;
  909. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  910. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  911. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  912. }
  913. a:hover,
  914. a:focus {
  915. color: #0d3d88;
  916. text-decoration: underline;
  917. }
  918. a:focus {
  919. outline: thin dotted #333;
  920. outline: 5px auto -webkit-focus-ring-color;
  921. outline-offset: -2px;
  922. }
  923. a.disabled,
  924. a.disabled:hover,
  925. a.disabled:focus,
  926. a[disabled],
  927. a[disabled]:hover,
  928. a[disabled]:focus {
  929. color: #aaa;
  930. text-decoration: none;
  931. cursor: default;
  932. }
  933. audio,
  934. canvas,
  935. img,
  936. video {
  937. max-width: 100%;
  938. vertical-align: middle;
  939. }
  940. .sr-only {
  941. position: absolute;
  942. width: 1px;
  943. height: 1px;
  944. padding: 0;
  945. margin: -1px;
  946. overflow: hidden;
  947. clip: rect(0 0 0 0);
  948. border: 0;
  949. }
  950. ::-moz-selection {
  951. text-shadow: none;
  952. background: #b3d4fc;
  953. }
  954. ::selection {
  955. text-shadow: none;
  956. background: #b3d4fc;
  957. }
  958. fieldset {
  959. padding: 0;
  960. margin: 0;
  961. border: 0;
  962. }
  963. textarea {
  964. resize: vertical;
  965. }
  966. ol,
  967. ul {
  968. padding-left: 20px;
  969. }
  970. .container,
  971. .container-fluid,
  972. .container-fixed,
  973. .container-fixed-md,
  974. .container-fixed-sm,
  975. .container-fixed-xs {
  976. padding-right: 10px;
  977. padding-left: 10px;
  978. margin-right: auto;
  979. margin-left: auto;
  980. }
  981. @media (min-width: 768px) {
  982. .container {
  983. max-width: 740px;
  984. }
  985. }
  986. @media (min-width: 992px) {
  987. .container {
  988. max-width: 960px;
  989. }
  990. }
  991. @media (min-width: 1200px) {
  992. .container {
  993. max-width: 1160px;
  994. }
  995. }
  996. .container-fixed {
  997. width: 1160px;
  998. }
  999. .container-fixed-md {
  1000. width: 960px;
  1001. }
  1002. .container-fixed-sm {
  1003. width: 740px;
  1004. }
  1005. .container-fixed-xs {
  1006. width: 440px;
  1007. }
  1008. .row {
  1009. margin-right: -10px;
  1010. margin-left: -10px;
  1011. }
  1012. .col,
  1013. .col-xs-1,
  1014. .col-xs-2,
  1015. .col-xs-3,
  1016. .col-xs-4,
  1017. .col-xs-5,
  1018. .col-xs-6,
  1019. .col-xs-7,
  1020. .col-xs-8,
  1021. .col-xs-9,
  1022. .col-xs-10,
  1023. .col-xs-11,
  1024. .col-xs-12,
  1025. .col-sm-1,
  1026. .col-sm-2,
  1027. .col-sm-3,
  1028. .col-sm-4,
  1029. .col-sm-5,
  1030. .col-sm-6,
  1031. .col-sm-7,
  1032. .col-sm-8,
  1033. .col-sm-9,
  1034. .col-sm-10,
  1035. .col-sm-11,
  1036. .col-sm-12,
  1037. .col-md-1,
  1038. .col-md-2,
  1039. .col-md-3,
  1040. .col-md-4,
  1041. .col-md-5,
  1042. .col-md-6,
  1043. .col-md-7,
  1044. .col-md-8,
  1045. .col-md-9,
  1046. .col-md-10,
  1047. .col-md-11,
  1048. .col-md-12,
  1049. .col-lg-1,
  1050. .col-lg-2,
  1051. .col-lg-3,
  1052. .col-lg-4,
  1053. .col-lg-5,
  1054. .col-lg-6,
  1055. .col-lg-7,
  1056. .col-lg-8,
  1057. .col-lg-9,
  1058. .col-lg-10,
  1059. .col-lg-11,
  1060. .col-lg-12 {
  1061. position: relative;
  1062. min-height: 1px;
  1063. padding-right: 10px;
  1064. padding-left: 10px;
  1065. }
  1066. .col,
  1067. .col-xs,
  1068. .col-xs-1,
  1069. .col-xs-2,
  1070. .col-xs-3,
  1071. .col-xs-4,
  1072. .col-xs-5,
  1073. .col-xs-6,
  1074. .col-xs-7,
  1075. .col-xs-8,
  1076. .col-xs-9,
  1077. .col-xs-10,
  1078. .col-xs-11,
  1079. .col-xs-12 {
  1080. float: left;
  1081. }
  1082. .col-xs-1 {
  1083. width: 8.33333333%;
  1084. }
  1085. .col-xs-2 {
  1086. width: 16.66666667%;
  1087. }
  1088. .col-xs-3 {
  1089. width: 25%;
  1090. }
  1091. .col-xs-4 {
  1092. width: 33.33333333%;
  1093. }
  1094. .col-xs-5 {
  1095. width: 41.66666667%;
  1096. }
  1097. .col-xs-6 {
  1098. width: 50%;
  1099. }
  1100. .col-xs-7 {
  1101. width: 58.33333333%;
  1102. }
  1103. .col-xs-8 {
  1104. width: 66.66666667%;
  1105. }
  1106. .col-xs-9 {
  1107. width: 75%;
  1108. }
  1109. .col-xs-10 {
  1110. width: 83.33333333%;
  1111. }
  1112. .col-xs-11 {
  1113. width: 91.66666667%;
  1114. }
  1115. .col-xs-12 {
  1116. width: 100%;
  1117. }
  1118. @media (min-width: 768px) {
  1119. .col-sm-1,
  1120. .col-sm-2,
  1121. .col-sm-3,
  1122. .col-sm-4,
  1123. .col-sm-5,
  1124. .col-sm-6,
  1125. .col-sm-7,
  1126. .col-sm-8,
  1127. .col-sm-9,
  1128. .col-sm-10,
  1129. .col-sm-11,
  1130. .col-sm-12 {
  1131. float: left;
  1132. }
  1133. .col-sm-1 {
  1134. width: 8.33333333%;
  1135. }
  1136. .col-sm-2 {
  1137. width: 16.66666667%;
  1138. }
  1139. .col-sm-3 {
  1140. width: 25%;
  1141. }
  1142. .col-sm-4 {
  1143. width: 33.33333333%;
  1144. }
  1145. .col-sm-5 {
  1146. width: 41.66666667%;
  1147. }
  1148. .col-sm-6 {
  1149. width: 50%;
  1150. }
  1151. .col-sm-7 {
  1152. width: 58.33333333%;
  1153. }
  1154. .col-sm-8 {
  1155. width: 66.66666667%;
  1156. }
  1157. .col-sm-9 {
  1158. width: 75%;
  1159. }
  1160. .col-sm-10 {
  1161. width: 83.33333333%;
  1162. }
  1163. .col-sm-11 {
  1164. width: 91.66666667%;
  1165. }
  1166. .col-sm-12 {
  1167. width: 100%;
  1168. }
  1169. .col-sm-push-1 {
  1170. left: 8.33333333%;
  1171. }
  1172. .col-sm-push-2 {
  1173. left: 16.66666667%;
  1174. }
  1175. .col-sm-push-3 {
  1176. left: 25%;
  1177. }
  1178. .col-sm-push-4 {
  1179. left: 33.33333333%;
  1180. }
  1181. .col-sm-push-5 {
  1182. left: 41.66666667%;
  1183. }
  1184. .col-sm-push-6 {
  1185. left: 50%;
  1186. }
  1187. .col-sm-push-7 {
  1188. left: 58.33333333%;
  1189. }
  1190. .col-sm-push-8 {
  1191. left: 66.66666667%;
  1192. }
  1193. .col-sm-push-9 {
  1194. left: 75%;
  1195. }
  1196. .col-sm-push-10 {
  1197. left: 83.33333333%;
  1198. }
  1199. .col-sm-push-11 {
  1200. left: 91.66666667%;
  1201. }
  1202. .col-sm-pull-1 {
  1203. right: 8.33333333%;
  1204. }
  1205. .col-sm-pull-2 {
  1206. right: 16.66666667%;
  1207. }
  1208. .col-sm-pull-3 {
  1209. right: 25%;
  1210. }
  1211. .col-sm-pull-4 {
  1212. right: 33.33333333%;
  1213. }
  1214. .col-sm-pull-5 {
  1215. right: 41.66666667%;
  1216. }
  1217. .col-sm-pull-6 {
  1218. right: 50%;
  1219. }
  1220. .col-sm-pull-7 {
  1221. right: 58.33333333%;
  1222. }
  1223. .col-sm-pull-8 {
  1224. right: 66.66666667%;
  1225. }
  1226. .col-sm-pull-9 {
  1227. right: 75%;
  1228. }
  1229. .col-sm-pull-10 {
  1230. right: 83.33333333%;
  1231. }
  1232. .col-sm-pull-11 {
  1233. right: 91.66666667%;
  1234. }
  1235. .col-sm-offset-1 {
  1236. margin-left: 8.33333333%;
  1237. }
  1238. .col-sm-offset-2 {
  1239. margin-left: 16.66666667%;
  1240. }
  1241. .col-sm-offset-3 {
  1242. margin-left: 25%;
  1243. }
  1244. .col-sm-offset-4 {
  1245. margin-left: 33.33333333%;
  1246. }
  1247. .col-sm-offset-5 {
  1248. margin-left: 41.66666667%;
  1249. }
  1250. .col-sm-offset-6 {
  1251. margin-left: 50%;
  1252. }
  1253. .col-sm-offset-7 {
  1254. margin-left: 58.33333333%;
  1255. }
  1256. .col-sm-offset-8 {
  1257. margin-left: 66.66666667%;
  1258. }
  1259. .col-sm-offset-9 {
  1260. margin-left: 75%;
  1261. }
  1262. .col-sm-offset-10 {
  1263. margin-left: 83.33333333%;
  1264. }
  1265. .col-sm-offset-11 {
  1266. margin-left: 91.66666667%;
  1267. }
  1268. }
  1269. @media (min-width: 992px) {
  1270. .col-md-1,
  1271. .col-md-2,
  1272. .col-md-3,
  1273. .col-md-4,
  1274. .col-md-5,
  1275. .col-md-6,
  1276. .col-md-7,
  1277. .col-md-8,
  1278. .col-md-9,
  1279. .col-md-10,
  1280. .col-md-11,
  1281. .col-md-12 {
  1282. float: left;
  1283. }
  1284. .col-md-1 {
  1285. width: 8.33333333%;
  1286. }
  1287. .col-md-2 {
  1288. width: 16.66666667%;
  1289. }
  1290. .col-md-3 {
  1291. width: 25%;
  1292. }
  1293. .col-md-4 {
  1294. width: 33.33333333%;
  1295. }
  1296. .col-md-5 {
  1297. width: 41.66666667%;
  1298. }
  1299. .col-md-6 {
  1300. width: 50%;
  1301. }
  1302. .col-md-7 {
  1303. width: 58.33333333%;
  1304. }
  1305. .col-md-8 {
  1306. width: 66.66666667%;
  1307. }
  1308. .col-md-9 {
  1309. width: 75%;
  1310. }
  1311. .col-md-10 {
  1312. width: 83.33333333%;
  1313. }
  1314. .col-md-11 {
  1315. width: 91.66666667%;
  1316. }
  1317. .col-md-12 {
  1318. width: 100%;
  1319. }
  1320. .col-md-push-0 {
  1321. left: auto;
  1322. }
  1323. .col-md-push-1 {
  1324. left: 8.33333333%;
  1325. }
  1326. .col-md-push-2 {
  1327. left: 16.66666667%;
  1328. }
  1329. .col-md-push-3 {
  1330. left: 25%;
  1331. }
  1332. .col-md-push-4 {
  1333. left: 33.33333333%;
  1334. }
  1335. .col-md-push-5 {
  1336. left: 41.66666667%;
  1337. }
  1338. .col-md-push-6 {
  1339. left: 50%;
  1340. }
  1341. .col-md-push-7 {
  1342. left: 58.33333333%;
  1343. }
  1344. .col-md-push-8 {
  1345. left: 66.66666667%;
  1346. }
  1347. .col-md-push-9 {
  1348. left: 75%;
  1349. }
  1350. .col-md-push-10 {
  1351. left: 83.33333333%;
  1352. }
  1353. .col-md-push-11 {
  1354. left: 91.66666667%;
  1355. }
  1356. .col-md-pull-0 {
  1357. right: auto;
  1358. }
  1359. .col-md-pull-1 {
  1360. right: 8.33333333%;
  1361. }
  1362. .col-md-pull-2 {
  1363. right: 16.66666667%;
  1364. }
  1365. .col-md-pull-3 {
  1366. right: 25%;
  1367. }
  1368. .col-md-pull-4 {
  1369. right: 33.33333333%;
  1370. }
  1371. .col-md-pull-5 {
  1372. right: 41.66666667%;
  1373. }
  1374. .col-md-pull-6 {
  1375. right: 50%;
  1376. }
  1377. .col-md-pull-7 {
  1378. right: 58.33333333%;
  1379. }
  1380. .col-md-pull-8 {
  1381. right: 66.66666667%;
  1382. }
  1383. .col-md-pull-9 {
  1384. right: 75%;
  1385. }
  1386. .col-md-pull-10 {
  1387. right: 83.33333333%;
  1388. }
  1389. .col-md-pull-11 {
  1390. right: 91.66666667%;
  1391. }
  1392. .col-md-offset-0 {
  1393. margin-left: 0;
  1394. }
  1395. .col-md-offset-1 {
  1396. margin-left: 8.33333333%;
  1397. }
  1398. .col-md-offset-2 {
  1399. margin-left: 16.66666667%;
  1400. }
  1401. .col-md-offset-3 {
  1402. margin-left: 25%;
  1403. }
  1404. .col-md-offset-4 {
  1405. margin-left: 33.33333333%;
  1406. }
  1407. .col-md-offset-5 {
  1408. margin-left: 41.66666667%;
  1409. }
  1410. .col-md-offset-6 {
  1411. margin-left: 50%;
  1412. }
  1413. .col-md-offset-7 {
  1414. margin-left: 58.33333333%;
  1415. }
  1416. .col-md-offset-8 {
  1417. margin-left: 66.66666667%;
  1418. }
  1419. .col-md-offset-9 {
  1420. margin-left: 75%;
  1421. }
  1422. .col-md-offset-10 {
  1423. margin-left: 83.33333333%;
  1424. }
  1425. .col-md-offset-11 {
  1426. margin-left: 91.66666667%;
  1427. }
  1428. }
  1429. @media (min-width: 1200px) {
  1430. .col-lg-1,
  1431. .col-lg-2,
  1432. .col-lg-3,
  1433. .col-lg-4,
  1434. .col-lg-5,
  1435. .col-lg-6,
  1436. .col-lg-7,
  1437. .col-lg-8,
  1438. .col-lg-9,
  1439. .col-lg-10,
  1440. .col-lg-11,
  1441. .col-lg-12 {
  1442. float: left;
  1443. }
  1444. .col-lg-1 {
  1445. width: 8.33333333%;
  1446. }
  1447. .col-lg-2 {
  1448. width: 16.66666667%;
  1449. }
  1450. .col-lg-3 {
  1451. width: 25%;
  1452. }
  1453. .col-lg-4 {
  1454. width: 33.33333333%;
  1455. }
  1456. .col-lg-5 {
  1457. width: 41.66666667%;
  1458. }
  1459. .col-lg-6 {
  1460. width: 50%;
  1461. }
  1462. .col-lg-7 {
  1463. width: 58.33333333%;
  1464. }
  1465. .col-lg-8 {
  1466. width: 66.66666667%;
  1467. }
  1468. .col-lg-9 {
  1469. width: 75%;
  1470. }
  1471. .col-lg-10 {
  1472. width: 83.33333333%;
  1473. }
  1474. .col-lg-11 {
  1475. width: 91.66666667%;
  1476. }
  1477. .col-lg-12 {
  1478. width: 100%;
  1479. }
  1480. .col-lg-push-0 {
  1481. left: auto;
  1482. }
  1483. .col-lg-push-1 {
  1484. left: 8.33333333%;
  1485. }
  1486. .col-lg-push-2 {
  1487. left: 16.66666667%;
  1488. }
  1489. .col-lg-push-3 {
  1490. left: 25%;
  1491. }
  1492. .col-lg-push-4 {
  1493. left: 33.33333333%;
  1494. }
  1495. .col-lg-push-5 {
  1496. left: 41.66666667%;
  1497. }
  1498. .col-lg-push-6 {
  1499. left: 50%;
  1500. }
  1501. .col-lg-push-7 {
  1502. left: 58.33333333%;
  1503. }
  1504. .col-lg-push-8 {
  1505. left: 66.66666667%;
  1506. }
  1507. .col-lg-push-9 {
  1508. left: 75%;
  1509. }
  1510. .col-lg-push-10 {
  1511. left: 83.33333333%;
  1512. }
  1513. .col-lg-push-11 {
  1514. left: 91.66666667%;
  1515. }
  1516. .col-lg-pull-0 {
  1517. right: auto;
  1518. }
  1519. .col-lg-pull-1 {
  1520. right: 8.33333333%;
  1521. }
  1522. .col-lg-pull-2 {
  1523. right: 16.66666667%;
  1524. }
  1525. .col-lg-pull-3 {
  1526. right: 25%;
  1527. }
  1528. .col-lg-pull-4 {
  1529. right: 33.33333333%;
  1530. }
  1531. .col-lg-pull-5 {
  1532. right: 41.66666667%;
  1533. }
  1534. .col-lg-pull-6 {
  1535. right: 50%;
  1536. }
  1537. .col-lg-pull-7 {
  1538. right: 58.33333333%;
  1539. }
  1540. .col-lg-pull-8 {
  1541. right: 66.66666667%;
  1542. }
  1543. .col-lg-pull-9 {
  1544. right: 75%;
  1545. }
  1546. .col-lg-pull-10 {
  1547. right: 83.33333333%;
  1548. }
  1549. .col-lg-pull-11 {
  1550. right: 91.66666667%;
  1551. }
  1552. .col-lg-offset-0 {
  1553. margin-left: 0;
  1554. }
  1555. .col-lg-offset-1 {
  1556. margin-left: 8.33333333%;
  1557. }
  1558. .col-lg-offset-2 {
  1559. margin-left: 16.66666667%;
  1560. }
  1561. .col-lg-offset-3 {
  1562. margin-left: 25%;
  1563. }
  1564. .col-lg-offset-4 {
  1565. margin-left: 33.33333333%;
  1566. }
  1567. .col-lg-offset-5 {
  1568. margin-left: 41.66666667%;
  1569. }
  1570. .col-lg-offset-6 {
  1571. margin-left: 50%;
  1572. }
  1573. .col-lg-offset-7 {
  1574. margin-left: 58.33333333%;
  1575. }
  1576. .col-lg-offset-8 {
  1577. margin-left: 66.66666667%;
  1578. }
  1579. .col-lg-offset-9 {
  1580. margin-left: 75%;
  1581. }
  1582. .col-lg-offset-10 {
  1583. margin-left: 83.33333333%;
  1584. }
  1585. .col-lg-offset-11 {
  1586. margin-left: 91.66666667%;
  1587. }
  1588. }
  1589. p {
  1590. margin: 0 0 10px;
  1591. }
  1592. .lead {
  1593. margin-bottom: 20px;
  1594. font-size: 14px;
  1595. line-height: 1.4;
  1596. }
  1597. @media (min-width: 768px) {
  1598. .lead {
  1599. font-size: 19.5px;
  1600. }
  1601. }
  1602. small,
  1603. .small {
  1604. font-size: 85%;
  1605. }
  1606. cite {
  1607. font-style: normal;
  1608. }
  1609. .text-gray,
  1610. .text-muted {
  1611. color: #808080;
  1612. }
  1613. .text-gray a,
  1614. .text-muted a {
  1615. color: #737373;
  1616. }
  1617. .text-gray a:hover,
  1618. .text-muted a:hover,
  1619. .text-gray a:active,
  1620. .text-muted a:active {
  1621. color: #145ccd;
  1622. }
  1623. .text-primary {
  1624. color: #3280fc;
  1625. }
  1626. .text-yellow,
  1627. .text-warning {
  1628. color: #f1a325;
  1629. }
  1630. .text-red,
  1631. .text-danger {
  1632. color: #ea644a;
  1633. }
  1634. .text-green,
  1635. .text-success {
  1636. color: #38b03f;
  1637. }
  1638. .text-blue,
  1639. .text-info {
  1640. color: #03b8cf;
  1641. }
  1642. .text-brown,
  1643. .text-important {
  1644. color: #bd7b46;
  1645. }
  1646. .text-purple,
  1647. .text-special {
  1648. color: #8666b8;
  1649. }
  1650. .text-link {
  1651. color: #353535;
  1652. }
  1653. .text-link:hover,
  1654. .text-link:active {
  1655. color: #145ccd;
  1656. }
  1657. .text-left {
  1658. text-align: left;
  1659. }
  1660. .text-right {
  1661. text-align: right;
  1662. }
  1663. .text-center {
  1664. text-align: center;
  1665. }
  1666. .text-nowrap,
  1667. .nobr {
  1668. overflow: hidden;
  1669. white-space: nowrap;
  1670. }
  1671. .text-ellipsis {
  1672. overflow: hidden;
  1673. text-overflow: ellipsis;
  1674. white-space: nowrap;
  1675. }
  1676. ul,
  1677. ol {
  1678. margin-top: 0;
  1679. margin-bottom: 10px;
  1680. }
  1681. ul ul,
  1682. ol ul,
  1683. ul ol,
  1684. ol ol {
  1685. margin-bottom: 0;
  1686. }
  1687. .list-unstyled {
  1688. padding-left: 0;
  1689. list-style: none;
  1690. }
  1691. dl {
  1692. margin-bottom: 20px;
  1693. }
  1694. dt,
  1695. dd {
  1696. line-height: 1.53846154;
  1697. }
  1698. dt {
  1699. font-weight: bold;
  1700. }
  1701. dd {
  1702. margin-left: 0;
  1703. }
  1704. .dl-inline:before,
  1705. .dl-inline:after {
  1706. /* 1 */
  1707. display: table;
  1708. content: " ";
  1709. /* 2 */
  1710. }
  1711. .dl-inline:after {
  1712. clear: both;
  1713. }
  1714. .dl-inline:before,
  1715. .dl-inline:after {
  1716. /* 1 */
  1717. display: table;
  1718. content: " ";
  1719. /* 2 */
  1720. }
  1721. .dl-inline:after {
  1722. clear: both;
  1723. }
  1724. .dl-inline dt {
  1725. display: inline-block;
  1726. }
  1727. .dl-inline dd {
  1728. display: inline-block;
  1729. padding-right: 1em;
  1730. }
  1731. .dl-inline dd:last-child {
  1732. padding-right: 0;
  1733. }
  1734. @media (min-width: 768px) {
  1735. .dl-horizontal dt {
  1736. float: left;
  1737. width: 160px;
  1738. overflow: hidden;
  1739. clear: left;
  1740. text-align: right;
  1741. text-overflow: ellipsis;
  1742. white-space: nowrap;
  1743. }
  1744. .dl-horizontal dd {
  1745. margin-left: 180px;
  1746. }
  1747. }
  1748. blockquote {
  1749. padding: 10px 20px;
  1750. margin: 0 0 20px;
  1751. font-size: 16.25px;
  1752. border-left: 5px solid #e5e5e5;
  1753. }
  1754. blockquote p,
  1755. blockquote ul,
  1756. blockquote ol {
  1757. font-weight: 300;
  1758. }
  1759. blockquote p:last-child,
  1760. blockquote ul:last-child,
  1761. blockquote ol:last-child {
  1762. margin-bottom: 0;
  1763. }
  1764. blockquote small {
  1765. display: block;
  1766. line-height: 1.53846154;
  1767. color: #808080;
  1768. }
  1769. blockquote small:before {
  1770. content: '\2014 \00A0';
  1771. }
  1772. blockquote.pull-right {
  1773. padding-right: 15px;
  1774. padding-left: 0;
  1775. border-right: 5px solid #e5e5e5;
  1776. border-left: 0;
  1777. }
  1778. blockquote.pull-right p,
  1779. blockquote.pull-right small {
  1780. text-align: right;
  1781. }
  1782. blockquote.pull-right small:before {
  1783. content: '';
  1784. }
  1785. blockquote.pull-right small:after {
  1786. content: '\00A0 \2014';
  1787. }
  1788. .ol-pd-2 {
  1789. padding-left: 40px;
  1790. }
  1791. .ol-pd-3 {
  1792. padding-left: 60px;
  1793. }
  1794. .ol-pd-4 {
  1795. padding-left: 80px;
  1796. }
  1797. .bg-black,
  1798. .bg-default {
  1799. color: #fff;
  1800. background-color: #353535;
  1801. }
  1802. .bg-primary {
  1803. color: #fff;
  1804. background-color: #3280fc;
  1805. }
  1806. .bg-green,
  1807. .bg-success {
  1808. color: #fff;
  1809. background-color: #38b03f;
  1810. }
  1811. .bg-blue,
  1812. .bg-info {
  1813. color: #fff;
  1814. background-color: #03b8cf;
  1815. }
  1816. .bg-yellow,
  1817. .bg-warning {
  1818. color: #fff;
  1819. background-color: #f1a325;
  1820. }
  1821. .bg-red,
  1822. .bg-danger {
  1823. color: #fff;
  1824. background-color: #ea644a;
  1825. }
  1826. .bg-brown,
  1827. .bg-important {
  1828. color: #fff;
  1829. background-color: #bd7b46;
  1830. }
  1831. .bg-purple,
  1832. .bg-special {
  1833. color: #fff;
  1834. background-color: #8666b8;
  1835. }
  1836. .hl-gray,
  1837. .hl-default {
  1838. background-color: #f1f1f1;
  1839. }
  1840. .hl-primary {
  1841. background-color: #ebf2f9;
  1842. }
  1843. .hl-green,
  1844. .hl-success {
  1845. background-color: #ddf4df;
  1846. }
  1847. .hl-blue,
  1848. .hl-info {
  1849. background-color: #ddf3f5;
  1850. }
  1851. .hl-yellow,
  1852. .hl-warning {
  1853. background-color: #fff0d5;
  1854. }
  1855. .hl-red,
  1856. .hl-danger {
  1857. background-color: #ffe5e0;
  1858. }
  1859. .hl-brown,
  1860. .hl-important {
  1861. background-color: #f7ebe1;
  1862. }
  1863. .hl-purple,
  1864. .hl-special {
  1865. background-color: #f5eeff;
  1866. }
  1867. .page-header,
  1868. .header-dividing {
  1869. padding-bottom: 9px;
  1870. margin: 40px 0 20px;
  1871. border-bottom: 1px solid #e5e5e5;
  1872. }
  1873. h1,
  1874. h2,
  1875. h3,
  1876. h4,
  1877. h5,
  1878. h6 {
  1879. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, 'Microsoft Yahei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
  1880. font-weight: bold;
  1881. line-height: 1.1;
  1882. color: inherit;
  1883. }
  1884. h1 small,
  1885. h2 small,
  1886. h3 small,
  1887. h4 small,
  1888. h5 small,
  1889. h6 small {
  1890. font-weight: normal;
  1891. line-height: 1;
  1892. color: #808080;
  1893. }
  1894. h1,
  1895. h2,
  1896. h3 {
  1897. margin-top: 20px;
  1898. margin-bottom: 10px;
  1899. }
  1900. h1 small,
  1901. h2 small,
  1902. h3 small {
  1903. font-size: 65%;
  1904. }
  1905. h4,
  1906. h5,
  1907. h6 {
  1908. margin-top: 10px;
  1909. margin-bottom: 10px;
  1910. }
  1911. h4 small,
  1912. h5 small,
  1913. h6 small {
  1914. font-size: 75%;
  1915. }
  1916. h1 {
  1917. font-size: 26px;
  1918. }
  1919. h2 {
  1920. font-size: 20px;
  1921. }
  1922. h3 {
  1923. font-size: 16px;
  1924. }
  1925. h4 {
  1926. font-size: 14px;
  1927. }
  1928. h5 {
  1929. font-size: 13px;
  1930. }
  1931. h6 {
  1932. font-size: 12px;
  1933. }
  1934. .btn {
  1935. display: inline-block;
  1936. padding: 5px 12px;
  1937. margin-bottom: 0;
  1938. font-size: 13px;
  1939. font-weight: normal;
  1940. line-height: 1.53846154;
  1941. text-align: center;
  1942. white-space: nowrap;
  1943. vertical-align: middle;
  1944. cursor: pointer;
  1945. -webkit-user-select: none;
  1946. -moz-user-select: none;
  1947. -ms-user-select: none;
  1948. user-select: none;
  1949. border: 1px solid transparent;
  1950. border-radius: 4px;
  1951. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  1952. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  1953. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  1954. }
  1955. .btn:focus {
  1956. outline: thin dotted #333;
  1957. outline: 5px auto -webkit-focus-ring-color;
  1958. outline-offset: -2px;
  1959. }
  1960. .btn:hover,
  1961. .btn:focus {
  1962. color: #353535;
  1963. text-decoration: none;
  1964. }
  1965. .btn:active,
  1966. .btn.active {
  1967. background-image: none;
  1968. outline: none;
  1969. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1970. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1971. }
  1972. .btn.disabled,
  1973. .btn[disabled],
  1974. fieldset[disabled] .btn {
  1975. pointer-events: none;
  1976. cursor: not-allowed;
  1977. filter: alpha(opacity=65);
  1978. -webkit-box-shadow: none;
  1979. box-shadow: none;
  1980. opacity: .65;
  1981. }
  1982. .btn {
  1983. color: #353535;
  1984. text-shadow: 0 1px 0 #fff;
  1985. background-color: #f2f2f2;
  1986. border-color: #bfbfbf;
  1987. }
  1988. .btn:hover,
  1989. .btn:focus,
  1990. .btn:active,
  1991. .btn.active,
  1992. .open .dropdown-toggle.btn {
  1993. color: #353535;
  1994. background-color: #dedede;
  1995. border-color: #a1a1a1;
  1996. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1997. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1998. }
  1999. .btn:active,
  2000. .btn.active,
  2001. .open .dropdown-toggle.btn {
  2002. background-color: #ccc;
  2003. background-image: none;
  2004. border-color: #a6a6a6;
  2005. -webkit-box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2006. box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2007. }
  2008. .btn.disabled,
  2009. .btn[disabled],
  2010. fieldset[disabled] .btn,
  2011. .btn.disabled:hover,
  2012. .btn[disabled]:hover,
  2013. fieldset[disabled] .btn:hover,
  2014. .btn.disabled:focus,
  2015. .btn[disabled]:focus,
  2016. fieldset[disabled] .btn:focus,
  2017. .btn.disabled:active,
  2018. .btn[disabled]:active,
  2019. fieldset[disabled] .btn:active,
  2020. .btn.disabled.active,
  2021. .btn[disabled].active,
  2022. fieldset[disabled] .btn.active {
  2023. background-color: #f2f2f2;
  2024. border-color: #bfbfbf;
  2025. }
  2026. .btn-primary {
  2027. color: #fff;
  2028. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  2029. background-color: #3280fc;
  2030. border-color: #1970fc;
  2031. }
  2032. .btn-primary:hover,
  2033. .btn-primary:focus,
  2034. .btn-primary:active,
  2035. .btn-primary.active,
  2036. .open .dropdown-toggle.btn-primary {
  2037. color: #fff;
  2038. background-color: #0a67fb;
  2039. border-color: #0354d4;
  2040. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2041. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2042. }
  2043. .btn-primary:active,
  2044. .btn-primary.active,
  2045. .open .dropdown-toggle.btn-primary {
  2046. background-color: #0358de;
  2047. background-image: none;
  2048. border-color: #0358de;
  2049. -webkit-box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2050. box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2051. }
  2052. .btn-primary.disabled,
  2053. .btn-primary[disabled],
  2054. fieldset[disabled] .btn-primary,
  2055. .btn-primary.disabled:hover,
  2056. .btn-primary[disabled]:hover,
  2057. fieldset[disabled] .btn-primary:hover,
  2058. .btn-primary.disabled:focus,
  2059. .btn-primary[disabled]:focus,
  2060. fieldset[disabled] .btn-primary:focus,
  2061. .btn-primary.disabled:active,
  2062. .btn-primary[disabled]:active,
  2063. fieldset[disabled] .btn-primary:active,
  2064. .btn-primary.disabled.active,
  2065. .btn-primary[disabled].active,
  2066. fieldset[disabled] .btn-primary.active {
  2067. background-color: #3280fc;
  2068. border-color: #1970fc;
  2069. }
  2070. .btn-warning {
  2071. color: #fff;
  2072. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  2073. background-color: #f1a325;
  2074. border-color: #ed980f;
  2075. }
  2076. .btn-warning:hover,
  2077. .btn-warning:focus,
  2078. .btn-warning:active,
  2079. .btn-warning.active,
  2080. .open .dropdown-toggle.btn-warning {
  2081. color: #fff;
  2082. background-color: #df8f0e;
  2083. border-color: #b4730c;
  2084. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2085. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2086. }
  2087. .btn-warning:active,
  2088. .btn-warning.active,
  2089. .open .dropdown-toggle.btn-warning {
  2090. background-color: #bd7a0c;
  2091. background-image: none;
  2092. border-color: #bd7a0c;
  2093. -webkit-box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2094. box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2095. }
  2096. .btn-warning.disabled,
  2097. .btn-warning[disabled],
  2098. fieldset[disabled] .btn-warning,
  2099. .btn-warning.disabled:hover,
  2100. .btn-warning[disabled]:hover,
  2101. fieldset[disabled] .btn-warning:hover,
  2102. .btn-warning.disabled:focus,
  2103. .btn-warning[disabled]:focus,
  2104. fieldset[disabled] .btn-warning:focus,
  2105. .btn-warning.disabled:active,
  2106. .btn-warning[disabled]:active,
  2107. fieldset[disabled] .btn-warning:active,
  2108. .btn-warning.disabled.active,
  2109. .btn-warning[disabled].active,
  2110. fieldset[disabled] .btn-warning.active {
  2111. background-color: #f1a325;
  2112. border-color: #ed980f;
  2113. }
  2114. .btn-danger {
  2115. color: #fff;
  2116. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  2117. background-color: #ea644a;
  2118. border-color: #e75033;
  2119. }
  2120. .btn-danger:hover,
  2121. .btn-danger:focus,
  2122. .btn-danger:active,
  2123. .btn-danger.active,
  2124. .open .dropdown-toggle.btn-danger {
  2125. color: #fff;
  2126. background-color: #e64525;
  2127. border-color: #c63317;
  2128. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2129. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2130. }
  2131. .btn-danger:active,
  2132. .btn-danger.active,
  2133. .open .dropdown-toggle.btn-danger {
  2134. background-color: #cf3618;
  2135. background-image: none;
  2136. border-color: #cf3618;
  2137. -webkit-box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2138. box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2139. }
  2140. .btn-danger.disabled,
  2141. .btn-danger[disabled],
  2142. fieldset[disabled] .btn-danger,
  2143. .btn-danger.disabled:hover,
  2144. .btn-danger[disabled]:hover,
  2145. fieldset[disabled] .btn-danger:hover,
  2146. .btn-danger.disabled:focus,
  2147. .btn-danger[disabled]:focus,
  2148. fieldset[disabled] .btn-danger:focus,
  2149. .btn-danger.disabled:active,
  2150. .btn-danger[disabled]:active,
  2151. fieldset[disabled] .btn-danger:active,
  2152. .btn-danger.disabled.active,
  2153. .btn-danger[disabled].active,
  2154. fieldset[disabled] .btn-danger.active {
  2155. background-color: #ea644a;
  2156. border-color: #e75033;
  2157. }
  2158. .btn-success {
  2159. color: #fff;
  2160. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  2161. background-color: #38b03f;
  2162. border-color: #329d38;
  2163. }
  2164. .btn-success:hover,
  2165. .btn-success:focus,
  2166. .btn-success:active,
  2167. .btn-success.active,
  2168. .open .dropdown-toggle.btn-success {
  2169. color: #fff;
  2170. background-color: #2e9134;
  2171. border-color: #236e27;
  2172. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2173. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2174. }
  2175. .btn-success:active,
  2176. .btn-success.active,
  2177. .open .dropdown-toggle.btn-success {
  2178. background-color: #26762a;
  2179. background-image: none;
  2180. border-color: #26762a;
  2181. -webkit-box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2182. box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2183. }
  2184. .btn-success.disabled,
  2185. .btn-success[disabled],
  2186. fieldset[disabled] .btn-success,
  2187. .btn-success.disabled:hover,
  2188. .btn-success[disabled]:hover,
  2189. fieldset[disabled] .btn-success:hover,
  2190. .btn-success.disabled:focus,
  2191. .btn-success[disabled]:focus,
  2192. fieldset[disabled] .btn-success:focus,
  2193. .btn-success.disabled:active,
  2194. .btn-success[disabled]:active,
  2195. fieldset[disabled] .btn-success:active,
  2196. .btn-success.disabled.active,
  2197. .btn-success[disabled].active,
  2198. fieldset[disabled] .btn-success.active {
  2199. background-color: #38b03f;
  2200. border-color: #329d38;
  2201. }
  2202. .btn-info {
  2203. color: #fff;
  2204. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  2205. background-color: #03b8cf;
  2206. border-color: #03a2b6;
  2207. }
  2208. .btn-info:hover,
  2209. .btn-info:focus,
  2210. .btn-info:active,
  2211. .btn-info.active,
  2212. .open .dropdown-toggle.btn-info {
  2213. color: #fff;
  2214. background-color: #0294a7;
  2215. border-color: #026c7a;
  2216. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2217. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2218. }
  2219. .btn-info:active,
  2220. .btn-info.active,
  2221. .open .dropdown-toggle.btn-info {
  2222. background-color: #027584;
  2223. background-image: none;
  2224. border-color: #027584;
  2225. -webkit-box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2226. box-shadow: inset 0 4px 6px rgba(0, 0, 0, .15);
  2227. }
  2228. .btn-info.disabled,
  2229. .btn-info[disabled],
  2230. fieldset[disabled] .btn-info,
  2231. .btn-info.disabled:hover,
  2232. .btn-info[disabled]:hover,
  2233. fieldset[disabled] .btn-info:hover,
  2234. .btn-info.disabled:focus,
  2235. .btn-info[disabled]:focus,
  2236. fieldset[disabled] .btn-info:focus,
  2237. .btn-info.disabled:active,
  2238. .btn-info[disabled]:active,
  2239. fieldset[disabled] .btn-info:active,
  2240. .btn-info.disabled.active,
  2241. .btn-info[disabled].active,
  2242. fieldset[disabled] .btn-info.active {
  2243. background-color: #03b8cf;
  2244. border-color: #03a2b6;
  2245. }
  2246. .btn-link {
  2247. font-weight: normal;
  2248. color: #145ccd;
  2249. text-shadow: none;
  2250. cursor: pointer;
  2251. background: none;
  2252. -webkit-box-shadow: none;
  2253. box-shadow: none;
  2254. }
  2255. .btn-link,
  2256. .btn-link:active,
  2257. .btn-link[disabled],
  2258. fieldset[disabled] .btn-link,
  2259. .btn-link:hover,
  2260. .btn-link:focus {
  2261. border-color: transparent;
  2262. -webkit-box-shadow: none;
  2263. box-shadow: none;
  2264. }
  2265. .btn-link:hover,
  2266. .btn-link:focus {
  2267. color: #0d3d88;
  2268. }
  2269. .btn-link[disabled]:hover,
  2270. fieldset[disabled] .btn-link:hover,
  2271. .btn-link[disabled]:focus,
  2272. fieldset[disabled] .btn-link:focus {
  2273. color: #ddd;
  2274. text-decoration: none;
  2275. }
  2276. .btn-lg {
  2277. padding: 10px 16px;
  2278. font-size: 17px;
  2279. line-height: 1.25;
  2280. border-radius: 4px;
  2281. }
  2282. .btn-sm,
  2283. .btn-xs,
  2284. .btn-mini {
  2285. padding: 2px 8px;
  2286. font-size: 12px;
  2287. line-height: 1.5;
  2288. border-radius: 4px;
  2289. }
  2290. .btn-xs,
  2291. .btn-mini {
  2292. padding: 1px 5px;
  2293. }
  2294. .btn-block {
  2295. display: block;
  2296. width: 100%;
  2297. }
  2298. .btn-block + .btn-block {
  2299. margin-top: 5px;
  2300. }
  2301. input[type="submit"].btn-block,
  2302. input[type="reset"].btn-block,
  2303. input[type="button"].btn-block {
  2304. width: 100%;
  2305. }
  2306. .btn-group,
  2307. .btn-group-vertical {
  2308. position: relative;
  2309. display: inline-block;
  2310. vertical-align: middle;
  2311. }
  2312. .btn-group > .btn,
  2313. .btn-group-vertical > .btn {
  2314. position: relative;
  2315. float: left;
  2316. }
  2317. .btn-group > .btn:hover,
  2318. .btn-group > .btn:focus,
  2319. .btn-group > .btn:active,
  2320. .btn-group > .btn.active,
  2321. .btn-group-vertical > .btn:hover,
  2322. .btn-group-vertical > .btn:focus,
  2323. .btn-group-vertical > .btn:active,
  2324. .btn-group-vertical > .btn.active {
  2325. z-index: 2;
  2326. }
  2327. .btn-group > .btn:focus,
  2328. .btn-group-vertical > .btn:focus {
  2329. outline: none;
  2330. }
  2331. .btn-group .btn + .btn,
  2332. .btn-group .btn + .btn-group,
  2333. .btn-group .btn-group + .btn,
  2334. .btn-group .btn-group + .btn-group,
  2335. .btn-group-vertical .btn + .btn,
  2336. .btn-group-vertical .btn + .btn-group-vertical,
  2337. .btn-group-vertical .btn-group-vertical + .btn,
  2338. .btn-group-vertical .btn-group-vertical + .btn-group-vertical {
  2339. margin-left: -1px;
  2340. }
  2341. .btn-toolbar {
  2342. margin-left: -5px;
  2343. }
  2344. .btn-toolbar .btn,
  2345. .btn-toolbar .btn-group,
  2346. .btn-toolbar .input-group,
  2347. .btn-toolbar .btn-group-vertical {
  2348. float: left;
  2349. }
  2350. .btn-toolbar > .btn,
  2351. .btn-toolbar > .btn-group,
  2352. .btn-toolbar > .input-group,
  2353. .btn-toolbar > .btn-group-vertical {
  2354. margin-left: 5px;
  2355. }
  2356. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
  2357. .btn-group-vertical > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2358. border-radius: 0;
  2359. }
  2360. .btn-group > .btn:first-child,
  2361. .btn-group-vertical > .btn:first-child {
  2362. margin-left: 0;
  2363. }
  2364. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle),
  2365. .btn-group-vertical > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2366. border-top-right-radius: 0;
  2367. border-bottom-right-radius: 0;
  2368. }
  2369. .btn-group > .btn:last-child:not(:first-child),
  2370. .btn-group > .dropdown-toggle:not(:first-child),
  2371. .btn-group-vertical > .btn:last-child:not(:first-child),
  2372. .btn-group-vertical > .dropdown-toggle:not(:first-child) {
  2373. border-top-left-radius: 0;
  2374. border-bottom-left-radius: 0;
  2375. }
  2376. .btn-group > .btn-group,
  2377. .btn-group-vertical > .btn-group-vertical {
  2378. float: left;
  2379. }
  2380. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn,
  2381. .btn-group-vertical > .btn-group-vertical:not(:first-child):not(:last-child) > .btn {
  2382. border-radius: 0;
  2383. }
  2384. .btn-group > .btn-group:first-child > .btn:last-child,
  2385. .btn-group > .btn-group:first-child > .dropdown-toggle,
  2386. .btn-group-vertical > .btn-group-vertical:first-child > .btn:last-child,
  2387. .btn-group-vertical > .btn-group-vertical:first-child > .dropdown-toggle {
  2388. border-top-right-radius: 0;
  2389. border-bottom-right-radius: 0;
  2390. }
  2391. .btn-group > .btn-group:last-child > .btn:first-child,
  2392. .btn-group-vertical > .btn-group-vertical:last-child > .btn:first-child {
  2393. border-top-left-radius: 0;
  2394. border-bottom-left-radius: 0;
  2395. }
  2396. .btn-group .dropdown-toggle:active,
  2397. .btn-group.open .dropdown-toggle,
  2398. .btn-group-vertical .dropdown-toggle:active,
  2399. .btn-group-vertical.open .dropdown-toggle {
  2400. outline: 0;
  2401. }
  2402. .btn-group-xs > .btn {
  2403. padding: 2px 8px;
  2404. padding: 1px 5px;
  2405. font-size: 12px;
  2406. line-height: 1.5;
  2407. border-radius: 4px;
  2408. }
  2409. .btn-group-sm > .btn {
  2410. padding: 2px 8px;
  2411. font-size: 12px;
  2412. line-height: 1.5;
  2413. border-radius: 4px;
  2414. }
  2415. .btn-group-lg > .btn {
  2416. padding: 10px 16px;
  2417. font-size: 17px;
  2418. line-height: 1.25;
  2419. border-radius: 4px;
  2420. }
  2421. .btn-group > .btn + .dropdown-toggle,
  2422. .btn-group-vertical > .btn + .dropdown-toggle {
  2423. padding-right: 8px;
  2424. padding-left: 8px;
  2425. }
  2426. .btn-group > .btn-lg + .dropdown-toggle,
  2427. .btn-group-vertical > .btn-lg + .dropdown-toggle {
  2428. padding-right: 12px;
  2429. padding-left: 12px;
  2430. }
  2431. .btn-group.open .dropdown-toggle,
  2432. .btn-group-vertical.open .dropdown-toggle {
  2433. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2434. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2435. }
  2436. .btn-group.open .dropdown-toggle.btn-link,
  2437. .btn-group-vertical.open .dropdown-toggle.btn-link {
  2438. -webkit-box-shadow: none;
  2439. box-shadow: none;
  2440. }
  2441. .btn .caret {
  2442. margin-left: 0;
  2443. }
  2444. .btn-lg .caret {
  2445. border-width: 5px 5px 0;
  2446. border-bottom-width: 0;
  2447. }
  2448. .dropup .btn-lg .caret {
  2449. border-width: 0 5px 5px;
  2450. }
  2451. .btn-group-justified {
  2452. display: table;
  2453. width: 100%;
  2454. table-layout: fixed;
  2455. border-collapse: separate;
  2456. }
  2457. .btn-group-justified > .btn,
  2458. .btn-group-justified > .btn-group,
  2459. .btn-group-justified > .btn-group-vertical {
  2460. display: table-cell;
  2461. float: none;
  2462. width: 1%;
  2463. }
  2464. .btn-group-justified > .btn-group .btn,
  2465. .btn-group-justified > .btn-group-vertical .btn {
  2466. width: 100%;
  2467. }
  2468. .btn-group-justified > .btn-group .dropdown-menu,
  2469. .btn-group-justified > .btn-group-vertical .dropdown-menu {
  2470. left: auto;
  2471. }
  2472. [data-toggle="buttons"] > .btn input[type="radio"],
  2473. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  2474. [data-toggle="buttons"] > .btn input[type="checkbox"],
  2475. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
  2476. [data-toggle="buttons"] > .btn-group-vertical > .btn input[type="radio"],
  2477. [data-toggle="buttons"] > .btn-group-vertical > .btn input[type="checkbox"] {
  2478. position: absolute;
  2479. clip: rect(0, 0, 0, 0);
  2480. pointer-events: none;
  2481. }
  2482. .btn-group-vertical > .btn,
  2483. .btn-group-vertical > .btn-group,
  2484. .btn-group-vertical > .btn-group > .btn,
  2485. .btn-group-vertical > .btn-group-vertical,
  2486. .btn-group-vertical > .btn-group-vertical > .btn {
  2487. display: block;
  2488. float: none;
  2489. width: 100%;
  2490. max-width: 100%;
  2491. }
  2492. .btn-group-vertical > .btn-group > .btn,
  2493. .btn-group-vertical > .btn-group-vertical > .btn {
  2494. float: none;
  2495. }
  2496. .btn-group-vertical > .btn + .btn,
  2497. .btn-group-vertical > .btn + .btn-group,
  2498. .btn-group-vertical > .btn-group + .btn,
  2499. .btn-group-vertical > .btn-group + .btn-group,
  2500. .btn-group-vertical > .btn + .btn-group-vertical,
  2501. .btn-group-vertical > .btn-group-vertical + .btn,
  2502. .btn-group-vertical > .btn-group-vertical + .btn-group-vertical {
  2503. margin-top: -1px;
  2504. margin-left: 0;
  2505. }
  2506. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  2507. border-radius: 0;
  2508. }
  2509. .btn-group-vertical > .btn:first-child:not(:last-child),
  2510. .btn-group-vertical > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2511. border-top-left-radius: 4px;
  2512. border-top-right-radius: 4px;
  2513. border-bottom-right-radius: 0;
  2514. border-bottom-left-radius: 0;
  2515. }
  2516. .btn-group-vertical > .btn:last-child:not(:first-child) {
  2517. border-top-left-radius: 0;
  2518. border-top-right-radius: 0;
  2519. border-bottom-right-radius: 4px;
  2520. border-bottom-left-radius: 4px;
  2521. }
  2522. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn,
  2523. .btn-group-vertical > .btn-group-vertical:not(:first-child):not(:last-child) > .btn {
  2524. border-radius: 0;
  2525. }
  2526. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  2527. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle,
  2528. .btn-group-vertical > .btn-group-vertical:first-child:not(:last-child) > .btn:last-child,
  2529. .btn-group-vertical > .btn-group-vertical:first-child:not(:last-child) > .dropdown-toggle {
  2530. border-bottom-right-radius: 0;
  2531. border-bottom-left-radius: 0;
  2532. }
  2533. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child,
  2534. .btn-group-vertical > .btn-group-vertical:last-child:not(:first-child) > .btn:first-child {
  2535. border-top-left-radius: 0;
  2536. border-top-right-radius: 0;
  2537. }
  2538. @-webkit-keyframes progress-bar-stripes {
  2539. from {
  2540. background-position: 40px 0;
  2541. }
  2542. to {
  2543. background-position: 0 0;
  2544. }
  2545. }
  2546. @-o-keyframes progress-bar-stripes {
  2547. from {
  2548. background-position: 40px 0;
  2549. }
  2550. to {
  2551. background-position: 0 0;
  2552. }
  2553. }
  2554. @keyframes progress-bar-stripes {
  2555. from {
  2556. background-position: 40px 0;
  2557. }
  2558. to {
  2559. background-position: 0 0;
  2560. }
  2561. }
  2562. .progress {
  2563. height: 20px;
  2564. margin-bottom: 20px;
  2565. overflow: hidden;
  2566. background-color: #e5e5e5;
  2567. border-radius: 4px;
  2568. }
  2569. .progress-bar {
  2570. float: left;
  2571. width: 0;
  2572. height: 100%;
  2573. font-size: 12px;
  2574. color: #fff;
  2575. text-align: center;
  2576. background-color: #3280fc;
  2577. -webkit-transition: width .6s ease;
  2578. -o-transition: width .6s ease;
  2579. transition: width .6s ease;
  2580. }
  2581. .progress-striped .progress-bar {
  2582. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2583. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2584. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2585. -webkit-background-size: 40px 40px;
  2586. background-size: 40px 40px;
  2587. }
  2588. .progress.active .progress-bar {
  2589. -webkit-animation: progress-bar-stripes 2s linear infinite;
  2590. -o-animation: progress-bar-stripes 2s linear infinite;
  2591. animation: progress-bar-stripes 2s linear infinite;
  2592. }
  2593. .progress-bar-success {
  2594. background-color: #38b03f;
  2595. }
  2596. .progress-bar-info {
  2597. background-color: #03b8cf;
  2598. }
  2599. .progress-bar-warning {
  2600. background-color: #f1a325;
  2601. }
  2602. .progress-bar-danger {
  2603. background-color: #ea644a;
  2604. }
  2605. .img-responsive,
  2606. .carousel-inner > .item > img,
  2607. .carousel-inner > .item > a > img {
  2608. display: block;
  2609. max-width: 100%;
  2610. height: auto;
  2611. }
  2612. .img-rounded {
  2613. border-radius: 6px;
  2614. }
  2615. .img-thumbnail {
  2616. display: inline-block;
  2617. max-width: 100%;
  2618. height: auto;
  2619. padding: 4px;
  2620. line-height: 1.53846154;
  2621. background-color: #fff;
  2622. border: 1px solid #ddd;
  2623. border-radius: 4px;
  2624. -webkit-transition: all .2s ease-in-out;
  2625. -o-transition: all .2s ease-in-out;
  2626. transition: all .2s ease-in-out;
  2627. }
  2628. .img-circle {
  2629. border-radius: 50%;
  2630. }
  2631. hr {
  2632. margin-top: 20px;
  2633. margin-bottom: 20px;
  2634. border: 0;
  2635. border-top: 1px solid #e5e5e5;
  2636. }
  2637. hr.divider-sm {
  2638. margin-top: 10px;
  2639. margin-bottom: 10px;
  2640. }
  2641. hr.divider {
  2642. margin: 0;
  2643. }
  2644. .label {
  2645. display: inline;
  2646. padding: .2em .6em .2em;
  2647. font-size: 75%;
  2648. line-height: 1;
  2649. color: #fff;
  2650. text-align: center;
  2651. white-space: nowrap;
  2652. vertical-align: middle;
  2653. background-color: #808080;
  2654. border-radius: .25em;
  2655. }
  2656. .label[href]:hover,
  2657. .label[href]:focus {
  2658. color: #fff;
  2659. background-color: #666;
  2660. }
  2661. .label.label-circle {
  2662. color: #808080;
  2663. background: none;
  2664. border: 1px solid #808080;
  2665. }
  2666. a.label:hover,
  2667. a.label:focus {
  2668. color: #fff;
  2669. text-decoration: none;
  2670. cursor: pointer;
  2671. }
  2672. .label:empty {
  2673. display: none;
  2674. }
  2675. .label-badge {
  2676. display: inline-block;
  2677. min-width: 18px;
  2678. padding: 3px 7px;
  2679. font-size: 12px;
  2680. line-height: 1;
  2681. border-radius: 9px;
  2682. }
  2683. .label-dot {
  2684. display: inline-block;
  2685. width: 10px;
  2686. height: 10px;
  2687. padding: 0;
  2688. line-height: 13px;
  2689. text-indent: -9999em;
  2690. border-radius: 5px;
  2691. }
  2692. .label-dot:empty {
  2693. display: inline-block;
  2694. }
  2695. .label-primary {
  2696. background-color: #3280fc;
  2697. }
  2698. .label-primary[href]:hover,
  2699. .label-primary[href]:focus {
  2700. color: #fff;
  2701. background-color: #0462f7;
  2702. }
  2703. .label-primary.label-circle {
  2704. color: #3280fc;
  2705. background: none;
  2706. border: 1px solid #3280fc;
  2707. }
  2708. .label-success {
  2709. background-color: #38b03f;
  2710. }
  2711. .label-success[href]:hover,
  2712. .label-success[href]:focus {
  2713. color: #fff;
  2714. background-color: #2c8931;
  2715. }
  2716. .label-success.label-circle {
  2717. color: #38b03f;
  2718. background: none;
  2719. border: 1px solid #38b03f;
  2720. }
  2721. .label-info {
  2722. background-color: #03b8cf;
  2723. }
  2724. .label-info[href]:hover,
  2725. .label-info[href]:focus {
  2726. color: #fff;
  2727. background-color: #028b9d;
  2728. }
  2729. .label-info.label-circle {
  2730. color: #03b8cf;
  2731. background: none;
  2732. border: 1px solid #03b8cf;
  2733. }
  2734. .label-warning {
  2735. background-color: #f1a325;
  2736. }
  2737. .label-warning[href]:hover,
  2738. .label-warning[href]:focus {
  2739. color: #fff;
  2740. background-color: #d5890e;
  2741. }
  2742. .label-warning.label-circle {
  2743. color: #f1a325;
  2744. background: none;
  2745. border: 1px solid #f1a325;
  2746. }
  2747. .label-danger {
  2748. background-color: #ea644a;
  2749. }
  2750. .label-danger[href]:hover,
  2751. .label-danger[href]:focus {
  2752. color: #fff;
  2753. background-color: #e53d1c;
  2754. }
  2755. .label-danger.label-circle {
  2756. color: #ea644a;
  2757. background: none;
  2758. border: 1px solid #ea644a;
  2759. }
  2760. .nav-primary > li > a > .label,
  2761. .btn .label {
  2762. position: relative;
  2763. top: -1px;
  2764. }
  2765. .btn-primary .label,
  2766. .btn-success .label,
  2767. .btn-info .label,
  2768. .btn-danger .label,
  2769. .btn-warning .label {
  2770. background-color: rgba(0, 0, 0, .2);
  2771. }
  2772. .list-group-item.active > .label,
  2773. .nav-primary > .active > a > .label,
  2774. .nav-pills > .active > a > .label {
  2775. color: #145ccd;
  2776. background-color: #fff;
  2777. }
  2778. .nav > li > a > .label {
  2779. margin-left: 3px;
  2780. }
  2781. .breadcrumb {
  2782. padding: 8px 15px;
  2783. margin-bottom: 20px;
  2784. list-style: none;
  2785. border-radius: 4px;
  2786. }
  2787. .breadcrumb > li {
  2788. display: inline-block;
  2789. }
  2790. .breadcrumb > li + li:before {
  2791. padding: 0 5px;
  2792. color: #ccc;
  2793. content: "/\00a0";
  2794. }
  2795. .breadcrumb > .active {
  2796. color: #808080;
  2797. }
  2798. @font-face {
  2799. font-family: ZenIcon;
  2800. font-style: normal;
  2801. font-weight: normal;
  2802. src: url('../fonts/zenicon.eot?v=2.2.0');
  2803. src: url('../fonts/zenicon.eot?#iefix&v=2.2.0') format('embedded-opentype'), url('../fonts/zenicon.woff?v=2.2.0') format('woff'), url('../fonts/zenicon.ttf?v=2.2.0') format('truetype'), url('../fonts/zenicon.svg#regular?v=2.2.0') format('svg');
  2804. }
  2805. .icon,
  2806. [class^="icon-"],
  2807. [class*=" icon-"] {
  2808. font-family: ZenIcon;
  2809. font-size: 14px;
  2810. font-style: normal;
  2811. font-weight: normal;
  2812. font-variant: normal;
  2813. line-height: 1;
  2814. text-transform: none;
  2815. speak: none;
  2816. -webkit-font-smoothing: antialiased;
  2817. -moz-osx-font-smoothing: grayscale;
  2818. }
  2819. .icon:before {
  2820. display: inline-block;
  2821. min-width: 14px;
  2822. text-align: center;
  2823. }
  2824. a .icon,
  2825. a [class^="icon-"],
  2826. a [class*=" icon-"] {
  2827. display: inline;
  2828. }
  2829. .icon-lg:before {
  2830. font-size: 1.33333333em;
  2831. vertical-align: -10%;
  2832. }
  2833. .icon-2x {
  2834. font-size: 28px;
  2835. }
  2836. .icon-3x {
  2837. font-size: 42px;
  2838. }
  2839. .icon-4x {
  2840. font-size: 56px;
  2841. }
  2842. .icon-5x {
  2843. font-size: 70px;
  2844. }
  2845. .icon-spin {
  2846. display: inline-block;
  2847. -webkit-animation: spin 2s infinite linear;
  2848. -o-animation: spin 2s infinite linear;
  2849. animation: spin 2s infinite linear;
  2850. }
  2851. a .icon-spin {
  2852. display: inline-block;
  2853. text-decoration: none;
  2854. }
  2855. @-webkit-keyframes spin {
  2856. 0% {
  2857. -webkit-transform: rotate(0deg);
  2858. transform: rotate(0deg);
  2859. }
  2860. 100% {
  2861. -webkit-transform: rotate(359deg);
  2862. transform: rotate(359deg);
  2863. }
  2864. }
  2865. @-o-keyframes spin {
  2866. 0% {
  2867. -o-transform: rotate(0deg);
  2868. transform: rotate(0deg);
  2869. }
  2870. 100% {
  2871. -o-transform: rotate(359deg);
  2872. transform: rotate(359deg);
  2873. }
  2874. }
  2875. @keyframes spin {
  2876. 0% {
  2877. -webkit-transform: rotate(0deg);
  2878. -o-transform: rotate(0deg);
  2879. transform: rotate(0deg);
  2880. }
  2881. 100% {
  2882. -webkit-transform: rotate(359deg);
  2883. -o-transform: rotate(359deg);
  2884. transform: rotate(359deg);
  2885. }
  2886. }
  2887. .icon-rotate-90 {
  2888. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  2889. -webkit-transform: rotate(90deg);
  2890. -ms-transform: rotate(90deg);
  2891. -o-transform: rotate(90deg);
  2892. transform: rotate(90deg);
  2893. }
  2894. .icon-rotate-180 {
  2895. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  2896. -webkit-transform: rotate(180deg);
  2897. -ms-transform: rotate(180deg);
  2898. -o-transform: rotate(180deg);
  2899. transform: rotate(180deg);
  2900. }
  2901. .icon-rotate-270 {
  2902. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  2903. -webkit-transform: rotate(270deg);
  2904. -ms-transform: rotate(270deg);
  2905. -o-transform: rotate(270deg);
  2906. transform: rotate(270deg);
  2907. }
  2908. .icon-flip-horizontal {
  2909. -webkit-transform: scale(-1, 1);
  2910. -ms-transform: scale(-1, 1);
  2911. -o-transform: scale(-1, 1);
  2912. transform: scale(-1, 1);
  2913. }
  2914. .icon-flip-vertical {
  2915. -webkit-transform: scale(1, -1);
  2916. -ms-transform: scale(1, -1);
  2917. -o-transform: scale(1, -1);
  2918. transform: scale(1, -1);
  2919. }
  2920. .icon.icon-rotate-90,
  2921. .icon.icon-rotate-180,
  2922. .icon.icon-rotate-270,
  2923. .icon.icon-flip-horizontal,
  2924. .icon.icon-flip-vertical {
  2925. display: inline-block;
  2926. }
  2927. .icon-resize:before {
  2928. content: '\e667';
  2929. }
  2930. .icon-expand-full:before {
  2931. content: '\e6a3';
  2932. }
  2933. .icon-arrows-alt:before {
  2934. content: '\e6a3';
  2935. }
  2936. .icon-fullscreen:before {
  2937. content: '\e6a3';
  2938. }
  2939. .icon-collapse-full:before {
  2940. content: '\e682';
  2941. }
  2942. .icon-yinyang:before {
  2943. content: '\e687';
  2944. }
  2945. .icon-taiji:before {
  2946. content: '\e687';
  2947. }
  2948. .icon-window:before {
  2949. content: '\e68e';
  2950. }
  2951. .icon-window-alt:before {
  2952. content: '\e68f';
  2953. }
  2954. .icon-carousel:before {
  2955. content: '\e6b0';
  2956. }
  2957. .icon-spinner-snake:before {
  2958. content: '\e97b';
  2959. }
  2960. .icon-spinner-indicator:before {
  2961. content: '\e97c';
  2962. }
  2963. .icon-check-board:before {
  2964. content: '\e9b8';
  2965. }
  2966. .icon-bar-chart:before {
  2967. content: '\f080';
  2968. }
  2969. .icon-bar-chart-o:before {
  2970. content: '\f080';
  2971. }
  2972. .icon-github:before {
  2973. content: '\f09b';
  2974. }
  2975. .icon-dot-circle:before {
  2976. content: '\f192';
  2977. }
  2978. .icon-dot-circle-o:before {
  2979. content: '\f192';
  2980. }
  2981. .icon-cube-alt:before {
  2982. content: '\f1b2';
  2983. }
  2984. .icon-cubes:before {
  2985. content: '\f1b3';
  2986. }
  2987. .icon-file-pdf:before {
  2988. content: '\f1c1';
  2989. }
  2990. .icon-file-word:before {
  2991. content: '\f1c2';
  2992. }
  2993. .icon-file-excel:before {
  2994. content: '\f1c3';
  2995. }
  2996. .icon-file-powerpoint:before {
  2997. content: '\f1c4';
  2998. }
  2999. .icon-file-image:before {
  3000. content: '\f1c5';
  3001. }
  3002. .icon-file-photo:before {
  3003. content: '\f1c5';
  3004. }
  3005. .icon-file-picture:before {
  3006. content: '\f1c5';
  3007. }
  3008. .icon-file-archive:before {
  3009. content: '\f1c6';
  3010. }
  3011. .icon-file-zip:before {
  3012. content: '\f1c6';
  3013. }
  3014. .icon-file-audio:before {
  3015. content: '\f1c7';
  3016. }
  3017. .icon-file-sound:before {
  3018. content: '\f1c7';
  3019. }
  3020. .icon-file-movie:before {
  3021. content: '\f1c8';
  3022. }
  3023. .icon-file-video:before {
  3024. content: '\f1c8';
  3025. }
  3026. .icon-file-code:before {
  3027. content: '\f1c9';
  3028. }
  3029. .icon-circle-o-notch:before {
  3030. content: '\f1ce';
  3031. }
  3032. .icon-chanzhi:before {
  3033. content: '\e906';
  3034. }
  3035. .icon-chanzhi-pro:before {
  3036. content: '\e905';
  3037. }
  3038. .icon-zsite:before {
  3039. content: '\e904';
  3040. }
  3041. .icon-zsite-pro:before {
  3042. content: '\e903';
  3043. }
  3044. .icon-qq:before {
  3045. content: '\f600';
  3046. }
  3047. .icon-wechat:before {
  3048. content: '\f1d7';
  3049. }
  3050. .icon-weixin:before {
  3051. content: '\f1d7';
  3052. }
  3053. .icon-history:before {
  3054. content: '\f1da';
  3055. }
  3056. .icon-circle-thin:before {
  3057. content: '\f1db';
  3058. }
  3059. .icon-sliders:before {
  3060. content: '\f1de';
  3061. }
  3062. .icon-newspaper-o:before {
  3063. content: '\f1ea';
  3064. }
  3065. .icon-calculator:before {
  3066. content: '\f1ec';
  3067. }
  3068. .icon-paint-brush:before {
  3069. content: '\f1fc';
  3070. }
  3071. .icon-area-chart:before {
  3072. content: '\f1fe';
  3073. }
  3074. .icon-pie-chart:before {
  3075. content: '\f200';
  3076. }
  3077. .icon-line-chart:before {
  3078. content: '\f201';
  3079. }
  3080. .icon-toggle-off:before {
  3081. content: '\f204';
  3082. }
  3083. .icon-toggle-on:before {
  3084. content: '\f205';
  3085. }
  3086. .icon-diamond:before {
  3087. content: '\f219';
  3088. }
  3089. .icon-venus:before {
  3090. content: '\f221';
  3091. }
  3092. .icon-mars:before {
  3093. content: '\f222';
  3094. }
  3095. .icon-server:before {
  3096. content: '\f233';
  3097. }
  3098. .icon-music:before {
  3099. content: '\e602';
  3100. }
  3101. .icon-search:before {
  3102. content: '\e603';
  3103. }
  3104. .icon-envelope:before {
  3105. content: '\e604';
  3106. }
  3107. .icon-heart:before {
  3108. content: '\e605';
  3109. }
  3110. .icon-star:before {
  3111. content: '\e606';
  3112. }
  3113. .icon-star-empty:before {
  3114. content: '\e607';
  3115. }
  3116. .icon-user:before {
  3117. content: '\e608';
  3118. }
  3119. .icon-film:before {
  3120. content: '\e609';
  3121. }
  3122. .icon-th-large:before {
  3123. content: '\e60a';
  3124. }
  3125. .icon-th:before {
  3126. content: '\e60b';
  3127. }
  3128. .icon-th-list:before {
  3129. content: '\e60c';
  3130. }
  3131. .icon-ok:before {
  3132. content: '\e60d';
  3133. }
  3134. .icon-check:before {
  3135. content: '\e60d';
  3136. }
  3137. .icon-remove:before {
  3138. content: '\d7';
  3139. }
  3140. .icon-times:before {
  3141. content: '\d7';
  3142. }
  3143. .icon-zoom-in:before {
  3144. content: '\e60f';
  3145. }
  3146. .icon-zoom-out:before {
  3147. content: '\e610';
  3148. }
  3149. .icon-off:before {
  3150. content: '\e611';
  3151. }
  3152. .icon-cog:before {
  3153. content: '\e613';
  3154. }
  3155. .icon-trash:before {
  3156. content: '\e614';
  3157. }
  3158. .icon-home:before {
  3159. content: '\e615';
  3160. }
  3161. .icon-file-o:before {
  3162. content: '\e616';
  3163. }
  3164. .icon-file-alt:before {
  3165. content: '\e616';
  3166. }
  3167. .icon-time:before {
  3168. content: '\e617';
  3169. }
  3170. .icon-download-alt:before {
  3171. content: '\e618';
  3172. }
  3173. .icon-download:before {
  3174. content: '\e619';
  3175. }
  3176. .icon-upload:before {
  3177. content: '\e61a';
  3178. }
  3179. .icon-inbox:before {
  3180. content: '\e61b';
  3181. }
  3182. .icon-play-circle:before {
  3183. content: '\e61c';
  3184. }
  3185. .icon-repeat:before {
  3186. content: '\e61d';
  3187. }
  3188. .icon-refresh:before {
  3189. content: '\e61e';
  3190. }
  3191. .icon-list-alt:before {
  3192. content: '\e61f';
  3193. }
  3194. .icon-lock:before {
  3195. content: '\e620';
  3196. }
  3197. .icon-flag:before {
  3198. content: '\e621';
  3199. }
  3200. .icon-headphones:before {
  3201. content: '\e622';
  3202. }
  3203. .icon-volume-off:before {
  3204. content: '\e623';
  3205. }
  3206. .icon-volume-up:before {
  3207. content: '\e625';
  3208. }
  3209. .icon-qrcode:before {
  3210. content: '\e626';
  3211. }
  3212. .icon-barcode:before {
  3213. content: '\e627';
  3214. }
  3215. .icon-tag:before {
  3216. content: '\e628';
  3217. }
  3218. .icon-tags:before {
  3219. content: '\e629';
  3220. }
  3221. .icon-book:before {
  3222. content: '\e62a';
  3223. }
  3224. .icon-bookmark:before {
  3225. content: '\e62b';
  3226. }
  3227. .icon-print:before {
  3228. content: '\e62c';
  3229. }
  3230. .icon-camera:before {
  3231. content: '\e62d';
  3232. }
  3233. .icon-font:before {
  3234. content: '\e62e';
  3235. }
  3236. .icon-bold:before {
  3237. content: '\e62f';
  3238. }
  3239. .icon-italic:before {
  3240. content: '\f033';
  3241. }
  3242. .icon-header:before {
  3243. content: '\f1dc';
  3244. }
  3245. .icon-underline:before {
  3246. content: '\f0cd';
  3247. }
  3248. .icon-strikethrough:before {
  3249. content: '\f0cc';
  3250. }
  3251. .icon-eraser:before {
  3252. content: '\f12d';
  3253. }
  3254. .icon-align-justify:before {
  3255. content: '\e636';
  3256. }
  3257. .icon-list:before {
  3258. content: '\e637';
  3259. }
  3260. .icon-picture:before {
  3261. content: '\e63b';
  3262. }
  3263. .icon-pencil:before {
  3264. content: '\e63c';
  3265. }
  3266. .icon-map-marker:before {
  3267. content: '\e63d';
  3268. }
  3269. .icon-adjust:before {
  3270. content: '\e63e';
  3271. }
  3272. .icon-tint:before {
  3273. content: '\e63f';
  3274. }
  3275. .icon-edit:before {
  3276. content: '\e640';
  3277. }
  3278. .icon-share:before {
  3279. content: '\e641';
  3280. }
  3281. .icon-checked:before {
  3282. content: '\e642';
  3283. }
  3284. .icon-move:before {
  3285. content: '\e643';
  3286. }
  3287. .icon-arrows:before {
  3288. content: '\e643';
  3289. }
  3290. .icon-step-backward:before {
  3291. content: '\e644';
  3292. }
  3293. .icon-fast-backward:before {
  3294. content: '\e645';
  3295. }
  3296. .icon-backward:before {
  3297. content: '\e646';
  3298. }
  3299. .icon-play:before {
  3300. content: '\e647';
  3301. }
  3302. .icon-pause:before {
  3303. content: '\e648';
  3304. }
  3305. .icon-stop:before {
  3306. content: '\e649';
  3307. }
  3308. .icon-forward:before {
  3309. content: '\e64a';
  3310. }
  3311. .icon-fast-forward:before {
  3312. content: '\e64b';
  3313. }
  3314. .icon-step-forward:before {
  3315. content: '\e64c';
  3316. }
  3317. .icon-eject:before {
  3318. content: '\e64d';
  3319. }
  3320. .icon-chevron-left:before {
  3321. content: '\e64e';
  3322. }
  3323. .icon-chevron-right:before {
  3324. content: '\e64f';
  3325. }
  3326. .icon-plus-sign:before {
  3327. content: '\e650';
  3328. }
  3329. .icon-minus-sign:before {
  3330. content: '\e651';
  3331. }
  3332. .icon-remove-sign:before {
  3333. content: '\e652';
  3334. }
  3335. .icon-ok-sign:before {
  3336. content: '\e653';
  3337. }
  3338. .icon-check-circle:before {
  3339. content: '\e653';
  3340. }
  3341. .icon-question-sign:before {
  3342. content: '\e654';
  3343. }
  3344. .icon-info-sign:before {
  3345. content: '\e655';
  3346. }
  3347. .icon-remove-circle:before {
  3348. content: '\e657';
  3349. }
  3350. .icon-ok-circle:before {
  3351. content: '\e658';
  3352. }
  3353. .icon-check-circle-o:before {
  3354. content: '\e658';
  3355. }
  3356. .icon-ban-circle:before {
  3357. content: '\e659';
  3358. }
  3359. .icon-arrow-left:before {
  3360. content: '\e65a';
  3361. }
  3362. .icon-arrow-right:before {
  3363. content: '\e65b';
  3364. }
  3365. .icon-arrow-up:before {
  3366. content: '\e65c';
  3367. }
  3368. .icon-arrow-down:before {
  3369. content: '\e65d';
  3370. }
  3371. .icon-share-alt:before {
  3372. content: '\e65e';
  3373. }
  3374. .icon-resize-full:before {
  3375. content: '\e65f';
  3376. }
  3377. .icon-resize-small:before {
  3378. content: '\e660';
  3379. }
  3380. .icon-plus:before {
  3381. content: '\e661';
  3382. }
  3383. .icon-minus:before {
  3384. content: '\e662';
  3385. }
  3386. .icon-asterisk:before {
  3387. content: '\e663';
  3388. }
  3389. .icon-exclamation-sign:before {
  3390. content: '\e664';
  3391. }
  3392. .icon-gift:before {
  3393. content: '\e665';
  3394. }
  3395. .icon-leaf:before {
  3396. content: '\e666';
  3397. }
  3398. .icon-eye-open:before {
  3399. content: '\e668';
  3400. }
  3401. .icon-eye-close:before {
  3402. content: '\e669';
  3403. }
  3404. .icon-warning-sign:before {
  3405. content: '\e66a';
  3406. }
  3407. .icon-plane:before {
  3408. content: '\e66b';
  3409. }
  3410. .icon-calendar:before {
  3411. content: '\e66c';
  3412. }
  3413. .icon-random:before {
  3414. content: '\e66d';
  3415. }
  3416. .icon-comment:before {
  3417. content: '\e66e';
  3418. }
  3419. .icon-chevron-up:before {
  3420. content: '\e670';
  3421. }
  3422. .icon-chevron-down:before {
  3423. content: '\e671';
  3424. }
  3425. .icon-shopping-cart:before {
  3426. content: '\e673';
  3427. }
  3428. .icon-folder-close:before {
  3429. content: '\e674';
  3430. }
  3431. .icon-folder-open:before {
  3432. content: '\e675';
  3433. }
  3434. .icon-resize-v:before {
  3435. content: '\e676';
  3436. }
  3437. .icon-resize-h:before {
  3438. content: '\e677';
  3439. }
  3440. .icon-bar-chart-alt:before {
  3441. content: '\e678';
  3442. }
  3443. .icon-camera-retro:before {
  3444. content: '\e679';
  3445. }
  3446. .icon-key:before {
  3447. content: '\e67a';
  3448. }
  3449. .icon-cogs:before {
  3450. content: '\e67b';
  3451. }
  3452. .icon-comments:before {
  3453. content: '\e67c';
  3454. }
  3455. .icon-thumbs-o-up:before {
  3456. content: '\e67d';
  3457. }
  3458. .icon-thumbs-o-down:before {
  3459. content: '\e67e';
  3460. }
  3461. .icon-star-half:before {
  3462. content: '\e67f';
  3463. }
  3464. .icon-heart-empty:before {
  3465. content: '\e680';
  3466. }
  3467. .icon-signout:before {
  3468. content: '\e681';
  3469. }
  3470. .icon-pushpin:before {
  3471. content: '\e683';
  3472. }
  3473. .icon-external-link:before {
  3474. content: '\e684';
  3475. }
  3476. .icon-signin:before {
  3477. content: '\e685';
  3478. }
  3479. .icon-trophy:before {
  3480. content: '\e686';
  3481. }
  3482. .icon-upload-alt:before {
  3483. content: '\e688';
  3484. }
  3485. .icon-lemon:before {
  3486. content: '\e689';
  3487. }
  3488. .icon-phone:before {
  3489. content: '\e68a';
  3490. }
  3491. .icon-check-empty:before {
  3492. content: '\e68b';
  3493. }
  3494. .icon-bookmark-empty:before {
  3495. content: '\e68c';
  3496. }
  3497. .icon-phone-sign:before {
  3498. content: '\e68d';
  3499. }
  3500. .icon-credit:before {
  3501. content: '\e690';
  3502. }
  3503. .icon-rss:before {
  3504. content: '\e691';
  3505. }
  3506. .icon-hdd:before {
  3507. content: '\e692';
  3508. }
  3509. .icon-bullhorn:before {
  3510. content: '\e693';
  3511. }
  3512. .icon-bell:before {
  3513. content: '\e694';
  3514. }
  3515. .icon-certificate:before {
  3516. content: '\e695';
  3517. }
  3518. .icon-hand-right:before {
  3519. content: '\e696';
  3520. }
  3521. .icon-hand-left:before {
  3522. content: '\e697';
  3523. }
  3524. .icon-hand-up:before {
  3525. content: '\e698';
  3526. }
  3527. .icon-hand-down:before {
  3528. content: '\e699';
  3529. }
  3530. .icon-circle-arrow-left:before {
  3531. content: '\e69a';
  3532. }
  3533. .icon-circle-arrow-right:before {
  3534. content: '\e69b';
  3535. }
  3536. .icon-circle-arrow-up:before {
  3537. content: '\e69c';
  3538. }
  3539. .icon-circle-arrow-down:before {
  3540. content: '\e69d';
  3541. }
  3542. .icon-globe:before {
  3543. content: '\e69e';
  3544. }
  3545. .icon-wrench:before {
  3546. content: '\e69f';
  3547. }
  3548. .icon-tasks:before {
  3549. content: '\e6a0';
  3550. }
  3551. .icon-filter:before {
  3552. content: '\e6a1';
  3553. }
  3554. .icon-group:before {
  3555. content: '\e6a4';
  3556. }
  3557. .icon-link:before {
  3558. content: '\e6a5';
  3559. }
  3560. .icon-cloud:before {
  3561. content: '\e6a6';
  3562. }
  3563. .icon-beaker:before {
  3564. content: '\e6a7';
  3565. }
  3566. .icon-cut:before {
  3567. content: '\e6a8';
  3568. }
  3569. .icon-copy:before {
  3570. content: '\e6a9';
  3571. }
  3572. .icon-paper-clip:before {
  3573. content: '\e6aa';
  3574. }
  3575. .icon-save:before {
  3576. content: '\e6ab';
  3577. }
  3578. .icon-sign-blank:before {
  3579. content: '\e6ac';
  3580. }
  3581. .icon-bars:before {
  3582. content: '\e6ad';
  3583. }
  3584. .icon-reorder:before {
  3585. content: '\e6ad';
  3586. }
  3587. .icon-list-ul:before {
  3588. content: '\e6ae';
  3589. }
  3590. .icon-list-ol:before {
  3591. content: '\e6af';
  3592. }
  3593. .icon-table:before {
  3594. content: '\e6b2';
  3595. }
  3596. .icon-magic:before {
  3597. content: '\e6b3';
  3598. }
  3599. .icon-caret-down:before {
  3600. content: '\e6b8';
  3601. }
  3602. .icon-caret-up:before {
  3603. content: '\e6b9';
  3604. }
  3605. .icon-caret-left:before {
  3606. content: '\e6ba';
  3607. }
  3608. .icon-caret-right:before {
  3609. content: '\e6bb';
  3610. }
  3611. .icon-columns:before {
  3612. content: '\e6bc';
  3613. }
  3614. .icon-sort:before {
  3615. content: '\e6bd';
  3616. }
  3617. .icon-sort-down:before {
  3618. content: '\e6be';
  3619. }
  3620. .icon-sort-up:before {
  3621. content: '\e6bf';
  3622. }
  3623. .icon-envelope-alt:before {
  3624. content: '\e6c0';
  3625. }
  3626. .icon-undo:before {
  3627. content: '\e6c1';
  3628. }
  3629. .icon-dashboard:before {
  3630. content: '\e6c3';
  3631. }
  3632. .icon-comment-alt:before {
  3633. content: '\e6c4';
  3634. }
  3635. .icon-comments-alt:before {
  3636. content: '\e6c5';
  3637. }
  3638. .icon-bolt:before {
  3639. content: '\e6c6';
  3640. }
  3641. .icon-sitemap:before {
  3642. content: '\e6c7';
  3643. }
  3644. .icon-umbrella:before {
  3645. content: '\e6c8';
  3646. }
  3647. .icon-paste:before {
  3648. content: '\e6c9';
  3649. }
  3650. .icon-lightbulb:before {
  3651. content: '\e6ca';
  3652. }
  3653. .icon-exchange:before {
  3654. content: '\e6cb';
  3655. }
  3656. .icon-cloud-download:before {
  3657. content: '\e6cc';
  3658. }
  3659. .icon-cloud-upload:before {
  3660. content: '\e6cd';
  3661. }
  3662. .icon-bell-alt:before {
  3663. content: '\e6d1';
  3664. }
  3665. .icon-coffee:before {
  3666. content: '\e6d2';
  3667. }
  3668. .icon-file-text-o:before {
  3669. content: '\e6d4';
  3670. }
  3671. .icon-file-text-alt:before {
  3672. content: '\e6d4';
  3673. }
  3674. .icon-building:before {
  3675. content: '\e6d5';
  3676. }
  3677. .icon-double-angle-left:before {
  3678. content: '\e6dc';
  3679. }
  3680. .icon-double-angle-right:before {
  3681. content: '\e6dd';
  3682. }
  3683. .icon-double-angle-up:before {
  3684. content: '\e6de';
  3685. }
  3686. .icon-double-angle-down:before {
  3687. content: '\e6df';
  3688. }
  3689. .icon-angle-left:before {
  3690. content: '\e6e0';
  3691. }
  3692. .icon-angle-right:before {
  3693. content: '\e6e1';
  3694. }
  3695. .icon-angle-up:before {
  3696. content: '\e6e2';
  3697. }
  3698. .icon-angle-down:before {
  3699. content: '\e6e3';
  3700. }
  3701. .icon-desktop:before {
  3702. content: '\e6e4';
  3703. }
  3704. .icon-laptop:before {
  3705. content: '\e6e5';
  3706. }
  3707. .icon-tablet:before {
  3708. content: '\e6e6';
  3709. }
  3710. .icon-mobile:before {
  3711. content: '\e6e7';
  3712. }
  3713. .icon-circle-blank:before {
  3714. content: '\e6e8';
  3715. }
  3716. .icon-quote-left:before {
  3717. content: '\e6e9';
  3718. }
  3719. .icon-quote-right:before {
  3720. content: '\e6ea';
  3721. }
  3722. .icon-spinner:before {
  3723. content: '\e6eb';
  3724. }
  3725. .icon-circle:before {
  3726. content: '\e6ec';
  3727. }
  3728. .icon-reply:before {
  3729. content: '\e6ed';
  3730. }
  3731. .icon-folder-close-alt:before {
  3732. content: '\e6ef';
  3733. }
  3734. .icon-folder-open-alt:before {
  3735. content: '\e6f0';
  3736. }
  3737. .icon-expand-alt:before {
  3738. content: '\e6f1';
  3739. }
  3740. .icon-collapse-alt:before {
  3741. content: '\e6f2';
  3742. }
  3743. .icon-smile:before {
  3744. content: '\e6f3';
  3745. }
  3746. .icon-frown:before {
  3747. content: '\e6f4';
  3748. }
  3749. .icon-meh:before {
  3750. content: '\e6f5';
  3751. }
  3752. .icon-gamepad:before {
  3753. content: '\e6f6';
  3754. }
  3755. .icon-keyboard:before {
  3756. content: '\e6f7';
  3757. }
  3758. .icon-flag-alt:before {
  3759. content: '\e6f8';
  3760. }
  3761. .icon-flag-checkered:before {
  3762. content: '\e6f9';
  3763. }
  3764. .icon-terminal:before {
  3765. content: '\e6fa';
  3766. }
  3767. .icon-code:before {
  3768. content: '\e6fb';
  3769. }
  3770. .icon-reply-all:before {
  3771. content: '\e6fc';
  3772. }
  3773. .icon-star-half-full:before {
  3774. content: '\e6fd';
  3775. }
  3776. .icon-location-arrow:before {
  3777. content: '\e6fe';
  3778. }
  3779. .icon-crop:before {
  3780. content: '\e6ff';
  3781. }
  3782. .icon-code-fork:before {
  3783. content: '\e700';
  3784. }
  3785. .icon-unlink:before {
  3786. content: '\e701';
  3787. }
  3788. .icon-question:before {
  3789. content: '\e702';
  3790. }
  3791. .icon-info:before {
  3792. content: '\e703';
  3793. }
  3794. .icon-shield:before {
  3795. content: '\e70b';
  3796. }
  3797. .icon-calendar-empty:before {
  3798. content: '\e70c';
  3799. }
  3800. .icon-rocket:before {
  3801. content: '\e70e';
  3802. }
  3803. .icon-chevron-sign-left:before {
  3804. content: '\e70f';
  3805. }
  3806. .icon-chevron-sign-right:before {
  3807. content: '\e710';
  3808. }
  3809. .icon-chevron-sign-up:before {
  3810. content: '\e711';
  3811. }
  3812. .icon-chevron-sign-down:before {
  3813. content: '\e712';
  3814. }
  3815. .icon-html5:before {
  3816. content: '\e713';
  3817. }
  3818. .icon-anchor:before {
  3819. content: '\e714';
  3820. }
  3821. .icon-unlock-alt:before {
  3822. content: '\e715';
  3823. }
  3824. .icon-bullseye:before {
  3825. content: '\e716';
  3826. }
  3827. .icon-ellipsis-h:before {
  3828. content: '\e717';
  3829. }
  3830. .icon-ellipsis-v:before {
  3831. content: '\e718';
  3832. }
  3833. .icon-rss-sign:before {
  3834. content: '\e719';
  3835. }
  3836. .icon-play-sign:before {
  3837. content: '\e71a';
  3838. }
  3839. .icon-minus-sign-alt:before {
  3840. content: '\e71c';
  3841. }
  3842. .icon-plus-sign-alt:before {
  3843. content: '\f0fe';
  3844. }
  3845. .icon-check-minus:before {
  3846. content: '\e71d';
  3847. }
  3848. .icon-check-plus:before {
  3849. content: '\f196';
  3850. }
  3851. .icon-level-up:before {
  3852. content: '\e71e';
  3853. }
  3854. .icon-level-down:before {
  3855. content: '\e71f';
  3856. }
  3857. .icon-check-sign:before {
  3858. content: '\e720';
  3859. }
  3860. .icon-edit-sign:before {
  3861. content: '\e721';
  3862. }
  3863. .icon-external-link-sign:before {
  3864. content: '\e722';
  3865. }
  3866. .icon-share-sign:before {
  3867. content: '\e723';
  3868. }
  3869. .icon-compass:before {
  3870. content: '\e724';
  3871. }
  3872. .icon-collapse:before {
  3873. content: '\e725';
  3874. }
  3875. .icon-collapse-top:before {
  3876. content: '\e726';
  3877. }
  3878. .icon-expand:before {
  3879. content: '\e727';
  3880. }
  3881. .icon-dollar:before {
  3882. content: '\e728';
  3883. }
  3884. .icon-yen:before {
  3885. content: '\e729';
  3886. }
  3887. .icon-file:before {
  3888. content: '\e72b';
  3889. }
  3890. .icon-file-text:before {
  3891. content: '\e72c';
  3892. }
  3893. .icon-sort-by-alphabet:before {
  3894. content: '\e72d';
  3895. }
  3896. .icon-sort-by-alphabet-alt:before {
  3897. content: '\e72e';
  3898. }
  3899. .icon-sort-by-attributes:before {
  3900. content: '\e72f';
  3901. }
  3902. .icon-sort-by-attributes-alt:before {
  3903. content: '\e730';
  3904. }
  3905. .icon-sort-by-order:before {
  3906. content: '\e731';
  3907. }
  3908. .icon-sort-by-order-alt:before {
  3909. content: '\e732';
  3910. }
  3911. .icon-thumbs-up:before {
  3912. content: '\e733';
  3913. }
  3914. .icon-thumbs-down:before {
  3915. content: '\e734';
  3916. }
  3917. .icon-long-arrow-down:before {
  3918. content: '\e736';
  3919. }
  3920. .icon-long-arrow-up:before {
  3921. content: '\e737';
  3922. }
  3923. .icon-long-arrow-left:before {
  3924. content: '\e738';
  3925. }
  3926. .icon-long-arrow-right:before {
  3927. content: '\e739';
  3928. }
  3929. .icon-apple:before {
  3930. content: '\e73a';
  3931. }
  3932. .icon-windows:before {
  3933. content: '\e73b';
  3934. }
  3935. .icon-android:before {
  3936. content: '\e73c';
  3937. }
  3938. .icon-linux:before {
  3939. content: '\e73d';
  3940. }
  3941. .icon-sun:before {
  3942. content: '\e742';
  3943. }
  3944. .icon-moon:before {
  3945. content: '\e743';
  3946. }
  3947. .icon-archive:before {
  3948. content: '\e744';
  3949. }
  3950. .icon-bug:before {
  3951. content: '\e745';
  3952. }
  3953. .icon-zhifubao:before,
  3954. .icon-alipay:before {
  3955. content: '\e901';
  3956. }
  3957. .icon-zhifubao-square:before,
  3958. .icon-alipay-square:before {
  3959. content: '\e900';
  3960. }
  3961. .icon-taobao:before {
  3962. content: '\e902';
  3963. }
  3964. .icon-weibo:before {
  3965. content: '\e746';
  3966. }
  3967. .icon-renren:before {
  3968. content: '\e747';
  3969. }
  3970. .icon-chrome:before {
  3971. content: '\e76c';
  3972. }
  3973. .icon-firefox:before {
  3974. content: '\e76d';
  3975. }
  3976. .icon-ie:before {
  3977. content: '\e76e';
  3978. }
  3979. .icon-opera:before {
  3980. content: '\e76f';
  3981. }
  3982. .icon-safari:before {
  3983. content: '\e770';
  3984. }
  3985. .icon-node:before {
  3986. content: '\e76a';
  3987. }
  3988. .icon-layout:before {
  3989. content: '\e768';
  3990. }
  3991. .icon-usecase:before {
  3992. content: '\e74a';
  3993. }
  3994. .icon-stack:before {
  3995. content: '\e769';
  3996. }
  3997. .icon-branch:before {
  3998. content: '\e74b';
  3999. }
  4000. .icon-chat:before {
  4001. content: '\e74c';
  4002. }
  4003. .icon-chat-line:before {
  4004. content: '\e74f';
  4005. }
  4006. .icon-comment-line:before {
  4007. content: '\e74f';
  4008. }
  4009. .icon-chat-dot:before {
  4010. content: '\e750';
  4011. }
  4012. .icon-cube:before {
  4013. content: '\e751';
  4014. }
  4015. .icon-database:before {
  4016. content: '\f1c0';
  4017. }
  4018. .icon-align-left:before {
  4019. content: '\e633';
  4020. }
  4021. fieldset {
  4022. padding: 0;
  4023. margin: 0;
  4024. border: 0;
  4025. }
  4026. legend {
  4027. display: block;
  4028. width: 100%;
  4029. padding: 0;
  4030. margin-bottom: 20px;
  4031. font-size: 19.5px;
  4032. line-height: inherit;
  4033. color: #333;
  4034. border: 0;
  4035. border-bottom: 1px solid #e5e5e5;
  4036. }
  4037. label {
  4038. display: inline-block;
  4039. margin-bottom: 5px;
  4040. font-weight: bold;
  4041. }
  4042. input[type="search"] {
  4043. -webkit-box-sizing: border-box;
  4044. -moz-box-sizing: border-box;
  4045. box-sizing: border-box;
  4046. }
  4047. input[type="radio"],
  4048. input[type="checkbox"] {
  4049. margin: 5px 0 0;
  4050. margin-top: 0 \9;
  4051. /* IE8-9 */
  4052. line-height: normal;
  4053. }
  4054. input[type="file"] {
  4055. display: block;
  4056. }
  4057. select[multiple],
  4058. select[size] {
  4059. height: auto;
  4060. }
  4061. select:-moz-focusring {
  4062. color: transparent;
  4063. text-shadow: 0 0 0 #000;
  4064. }
  4065. select optgroup {
  4066. font-family: inherit;
  4067. font-size: inherit;
  4068. font-style: inherit;
  4069. }
  4070. input[type="file"]:focus,
  4071. input[type="radio"]:focus,
  4072. input[type="checkbox"]:focus {
  4073. outline: thin dotted #333;
  4074. outline: 5px auto -webkit-focus-ring-color;
  4075. outline-offset: -2px;
  4076. }
  4077. input[type="number"]::-webkit-outer-spin-button,
  4078. input[type="number"]::-webkit-inner-spin-button {
  4079. height: auto;
  4080. }
  4081. .form-control::-webkit-input-placeholder {
  4082. color: #808080;
  4083. }
  4084. .form-control::-moz-placeholder {
  4085. color: #808080;
  4086. }
  4087. .form-control:-ms-input-placeholder {
  4088. color: #808080;
  4089. }
  4090. .form-control::placeholder {
  4091. color: #808080;
  4092. }
  4093. .form-control {
  4094. display: block;
  4095. width: 100%;
  4096. height: 32px;
  4097. padding: 5px 8px;
  4098. font-size: 13px;
  4099. line-height: 1.53846154;
  4100. color: #222;
  4101. vertical-align: middle;
  4102. background-color: #fff;
  4103. border: 1px solid #ccc;
  4104. border-radius: 4px;
  4105. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4106. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4107. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  4108. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  4109. transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  4110. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  4111. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  4112. }
  4113. .form-control:focus,
  4114. .form-control.focus {
  4115. border-color: #145ccd;
  4116. outline: 0;
  4117. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(20, 92, 205, .6);
  4118. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(20, 92, 205, .6);
  4119. }
  4120. .form-control[disabled],
  4121. .form-control[readonly],
  4122. fieldset[disabled] .form-control {
  4123. cursor: not-allowed;
  4124. background-color: #e5e5e5;
  4125. }
  4126. .form-control[readonly] {
  4127. cursor: default;
  4128. }
  4129. textarea.form-control {
  4130. height: auto;
  4131. }
  4132. .form-group {
  4133. margin-bottom: 15px;
  4134. }
  4135. .radio,
  4136. .checkbox {
  4137. position: relative;
  4138. display: block;
  4139. margin-top: 10px;
  4140. margin-bottom: 10px;
  4141. }
  4142. .radio label,
  4143. .checkbox label {
  4144. min-height: 20px;
  4145. padding-left: 20px;
  4146. margin-bottom: 0;
  4147. font-weight: normal;
  4148. cursor: pointer;
  4149. }
  4150. .radio input[type="radio"],
  4151. .radio-inline input[type="radio"],
  4152. .checkbox input[type="checkbox"],
  4153. .checkbox-inline input[type="checkbox"] {
  4154. position: absolute;
  4155. margin-top: 3px;
  4156. margin-top: 4px \9;
  4157. margin-left: -20px;
  4158. }
  4159. .os-android .radio input[type="radio"],
  4160. .os-android .radio-inline input[type="radio"],
  4161. .os-android .checkbox input[type="checkbox"],
  4162. .os-android .checkbox-inline input[type="checkbox"] {
  4163. margin-top: 0;
  4164. }
  4165. .radio + .radio,
  4166. .checkbox + .checkbox {
  4167. margin-top: -5px;
  4168. }
  4169. .radio-inline,
  4170. .checkbox-inline {
  4171. position: relative;
  4172. display: inline-block;
  4173. padding-left: 20px;
  4174. margin-bottom: 0;
  4175. font-weight: normal;
  4176. vertical-align: middle;
  4177. cursor: pointer;
  4178. }
  4179. .radio-inline + .radio-inline,
  4180. .checkbox-inline + .checkbox-inline {
  4181. margin-top: 0;
  4182. margin-left: 10px;
  4183. }
  4184. input[type="radio"][disabled],
  4185. input[type="checkbox"][disabled],
  4186. input[type="radio"].disabled,
  4187. input[type="checkbox"].disabled,
  4188. fieldset[disabled] input[type="radio"],
  4189. fieldset[disabled] input[type="checkbox"] {
  4190. cursor: not-allowed;
  4191. }
  4192. .radio-inline.disabled,
  4193. .checkbox-inline.disabled,
  4194. fieldset[disabled] .radio-inline,
  4195. fieldset[disabled] .checkbox-inline {
  4196. cursor: not-allowed;
  4197. }
  4198. .radio.disabled label,
  4199. .checkbox.disabled label,
  4200. fieldset[disabled] .radio label,
  4201. fieldset[disabled] .checkbox label {
  4202. cursor: not-allowed;
  4203. }
  4204. .input-sm {
  4205. height: 24px;
  4206. padding: 2px 8px;
  4207. font-size: 12px;
  4208. line-height: 1.5;
  4209. border-radius: 3px;
  4210. }
  4211. select.input-sm {
  4212. height: 24px;
  4213. line-height: 24px;
  4214. }
  4215. textarea.input-sm {
  4216. height: auto;
  4217. }
  4218. .input-lg {
  4219. height: 43px;
  4220. padding: 10px 16px;
  4221. font-size: 17px;
  4222. line-height: 1.25;
  4223. border-radius: 6px;
  4224. }
  4225. select.input-lg {
  4226. height: 43px;
  4227. line-height: 43px;
  4228. }
  4229. textarea.input-lg {
  4230. height: auto;
  4231. }
  4232. .has-warning .help-block,
  4233. .has-warning > label {
  4234. color: #f1a325;
  4235. }
  4236. .has-warning .form-control {
  4237. border-color: #f1a325;
  4238. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4239. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4240. }
  4241. .has-warning .form-control:focus {
  4242. border-color: #d5890e;
  4243. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f7cb85;
  4244. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f7cb85;
  4245. }
  4246. .has-warning .input-group-addon {
  4247. color: #f1a325;
  4248. background-color: #fff0d5;
  4249. border-color: #f1a325;
  4250. }
  4251. .has-error .help-block,
  4252. .has-error > label {
  4253. color: #ea644a;
  4254. }
  4255. .has-error .form-control {
  4256. border-color: #ea644a;
  4257. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4258. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4259. }
  4260. .has-error .form-control:focus {
  4261. border-color: #e53d1c;
  4262. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f5b2a5;
  4263. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f5b2a5;
  4264. }
  4265. .has-error .input-group-addon {
  4266. color: #ea644a;
  4267. background-color: #ffe5e0;
  4268. border-color: #ea644a;
  4269. }
  4270. .has-success .help-block,
  4271. .has-success > label {
  4272. color: #38b03f;
  4273. }
  4274. .has-success .form-control {
  4275. border-color: #38b03f;
  4276. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4277. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4278. }
  4279. .has-success .form-control:focus {
  4280. border-color: #2c8931;
  4281. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #79d57f;
  4282. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #79d57f;
  4283. }
  4284. .has-success .input-group-addon {
  4285. color: #38b03f;
  4286. background-color: #ddf4df;
  4287. border-color: #38b03f;
  4288. }
  4289. .form-control-static {
  4290. min-height: 33px;
  4291. padding-top: 6px;
  4292. padding-bottom: 6px;
  4293. margin-bottom: 0;
  4294. }
  4295. .help-block {
  4296. display: block;
  4297. margin: 5px 0;
  4298. color: #757575;
  4299. }
  4300. @media (min-width: 768px) {
  4301. .form-inline .form-group {
  4302. display: inline-block;
  4303. margin-bottom: 0;
  4304. vertical-align: middle;
  4305. }
  4306. .form-inline .form-control {
  4307. display: inline-block;
  4308. width: auto;
  4309. vertical-align: middle;
  4310. }
  4311. .form-inline .radio,
  4312. .form-inline .checkbox {
  4313. display: inline-block;
  4314. padding-left: 0;
  4315. margin-top: 0;
  4316. margin-bottom: 0;
  4317. }
  4318. .form-inline .radio input[type="radio"],
  4319. .form-inline .checkbox input[type="checkbox"] {
  4320. float: none;
  4321. margin-left: 0;
  4322. }
  4323. }
  4324. .form-horizontal .form-group > label,
  4325. .form-horizontal .radio,
  4326. .form-horizontal .checkbox,
  4327. .form-horizontal .radio-inline,
  4328. .form-horizontal .checkbox-inline {
  4329. padding-top: 6px;
  4330. margin-top: 0;
  4331. margin-bottom: 0;
  4332. }
  4333. .form-horizontal .form-group {
  4334. margin-right: -10px;
  4335. margin-left: -10px;
  4336. }
  4337. @media (min-width: 768px) {
  4338. .form-horizontal .form-group > label {
  4339. text-align: right;
  4340. }
  4341. }
  4342. .required {
  4343. position: relative;
  4344. }
  4345. .required:after {
  4346. position: absolute;
  4347. top: 0;
  4348. right: -10px;
  4349. display: inline-block;
  4350. font-size: 17px;
  4351. color: #ea644a;
  4352. content: '*';
  4353. }
  4354. .form-horizontal .required:after {
  4355. top: 5px;
  4356. right: -1px;
  4357. }
  4358. .form-condensed .form-group {
  4359. margin-bottom: 10px;
  4360. }
  4361. .form-condensed .form-control {
  4362. height: 24px;
  4363. padding: 2px 8px;
  4364. font-size: 12px;
  4365. line-height: 1.5;
  4366. border-radius: 3px;
  4367. }
  4368. select.form-condensed .form-control {
  4369. height: 24px;
  4370. line-height: 24px;
  4371. }
  4372. textarea.form-condensed .form-control {
  4373. height: auto;
  4374. }
  4375. .form-condensed textarea.form-control {
  4376. height: auto;
  4377. }
  4378. .form-condensed .btn {
  4379. padding: 2px 8px;
  4380. font-size: 12px;
  4381. line-height: 1.5;
  4382. border-radius: 4px;
  4383. }
  4384. .form-condensed .input-group > .form-control,
  4385. .form-condensed .input-group > .input-group-addon,
  4386. .form-condensed .input-group > .input-group-btn > .btn {
  4387. padding: 2px 8px;
  4388. font-size: 12px;
  4389. border-radius: 3px;
  4390. }
  4391. .form-condensed .input-group .form-control:first-child,
  4392. .form-condensed .input-group-addon:first-child,
  4393. .form-condensed .input-group-btn:first-child > .btn,
  4394. .form-condensed .input-group-btn:first-child > .btn-group > .btn,
  4395. .form-condensed .input-group-btn:first-child > .dropdown-toggle,
  4396. .form-condensed .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  4397. .form-condensed .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
  4398. .form-condensed .input-group-btn:first-child > .btn-group-vertical > .btn,
  4399. .form-condensed .input-group-btn:last-child > .btn-group-vertical:not(:last-child) > .btn {
  4400. border-top-right-radius: 0;
  4401. border-bottom-right-radius: 0;
  4402. }
  4403. .form-condensed .input-group .form-control:last-child,
  4404. .form-condensed .input-group-addon:last-child,
  4405. .form-condensed .input-group-btn:last-child > .btn,
  4406. .form-condensed .input-group-btn:last-child > .btn-group > .btn,
  4407. .form-condensed .input-group-btn:last-child > .dropdown-toggle,
  4408. .form-condensed .input-group-btn:first-child > .btn:not(:first-child),
  4409. .form-condensed .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
  4410. .form-condensed .input-group-btn:last-child > .btn-group-vertical > .btn,
  4411. .form-condensed .input-group-btn:first-child > .btn-group-vertical:not(:first-child) > .btn {
  4412. border-top-left-radius: 0;
  4413. border-bottom-left-radius: 0;
  4414. }
  4415. .form-condensed .input-group-addon:first-child {
  4416. border-right: 0;
  4417. }
  4418. .form-condensed .input-group-addon:last-child {
  4419. border-left: 0;
  4420. }
  4421. .form-condensed .input-group-addon.fix-border,
  4422. .form-condensed .input-group-btn.fix-border > .btn {
  4423. border-right: 0;
  4424. border-left: 0;
  4425. border-radius: 0;
  4426. }
  4427. .form-condensed.form-horizontal .form-group > label,
  4428. .form-condensed.form-horizontal .radio,
  4429. .form-condensed.form-horizontal .checkbox,
  4430. .form-condensed.form-horizontal .radio-inline,
  4431. .form-condensed.form-horizontal .checkbox-inline {
  4432. padding-top: 1px;
  4433. }
  4434. .switch {
  4435. position: relative;
  4436. }
  4437. .switch > input {
  4438. position: absolute;
  4439. top: 0;
  4440. left: 0;
  4441. display: block;
  4442. width: 100%;
  4443. height: 100%;
  4444. margin: 0;
  4445. opacity: 0;
  4446. }
  4447. .switch > label {
  4448. display: block;
  4449. padding: 5px 0 5px 35px;
  4450. margin: 0;
  4451. font-weight: normal;
  4452. line-height: 20px;
  4453. }
  4454. .switch > label:before,
  4455. .switch > label:after {
  4456. position: absolute;
  4457. top: 5px;
  4458. left: 0;
  4459. display: block;
  4460. width: 30px;
  4461. height: 20px;
  4462. pointer-events: none;
  4463. content: ' ';
  4464. border: 1px solid #ddd;
  4465. border-radius: 10px;
  4466. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  4467. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  4468. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  4469. }
  4470. .switch > label:after {
  4471. top: 6px;
  4472. width: 18px;
  4473. height: 18px;
  4474. background-color: #fff;
  4475. border-color: #ccc;
  4476. border-radius: 9px;
  4477. -webkit-box-shadow: rgba(0, 0, 0, .05) 0 1px 4px, rgba(0, 0, 0, .12) 0 1px 2px;
  4478. box-shadow: rgba(0, 0, 0, .05) 0 1px 4px, rgba(0, 0, 0, .12) 0 1px 2px;
  4479. }
  4480. .switch > input:checked + label:before {
  4481. background-color: #3280fc;
  4482. border-color: #3280fc;
  4483. }
  4484. .switch > input:checked + label:after {
  4485. left: 11px;
  4486. border-color: #fff;
  4487. }
  4488. .switch.text-left > label {
  4489. padding: 5px 35px 5px 0;
  4490. }
  4491. .switch.text-left > label:before,
  4492. .switch.text-left > label:after {
  4493. right: 0;
  4494. left: auto;
  4495. }
  4496. .switch.text-left > label:after {
  4497. right: 12px;
  4498. }
  4499. .switch.text-left > input:checked + label:after {
  4500. right: 1px;
  4501. left: auto;
  4502. }
  4503. .switch.disabled {
  4504. pointer-events: none;
  4505. }
  4506. .switch.disabled > label,
  4507. .switch > input[disabled] + label {
  4508. color: #ddd;
  4509. pointer-events: none;
  4510. }
  4511. .switch.disabled > label:before,
  4512. .switch > input[disabled] + label:before {
  4513. background-color: #fafafa;
  4514. }
  4515. .switch.disabled > label:after,
  4516. .switch > input[disabled] + label:after {
  4517. opacity: .7;
  4518. }
  4519. .switch.disabled > input:checked + label:before,
  4520. .switch > input[disabled]:checked + label:before {
  4521. background-color: #ccc;
  4522. border-color: #ccc;
  4523. }
  4524. .switch input:focus + label {
  4525. color: #3280fc;
  4526. }
  4527. .switch input:focus + label:before {
  4528. border-color: #3280fc;
  4529. }
  4530. .switch-inline {
  4531. display: inline-block;
  4532. }
  4533. .checkbox-primary {
  4534. position: relative;
  4535. display: inline-block;
  4536. }
  4537. .checkbox-primary > label {
  4538. padding-left: 25px;
  4539. cursor: pointer;
  4540. }
  4541. .checkbox-primary > label:before,
  4542. .checkbox-primary > label:after {
  4543. position: absolute;
  4544. top: 2px;
  4545. right: 0;
  4546. left: 0;
  4547. display: block;
  4548. width: 16px;
  4549. height: 16px;
  4550. line-height: 16px;
  4551. text-align: center;
  4552. content: ' ';
  4553. border-radius: 2px;
  4554. }
  4555. .checkbox-primary > label:after {
  4556. z-index: 1;
  4557. border: 1px solid #808080;
  4558. -webkit-transition: .4s cubic-bezier(.175, .885, .32, 1);
  4559. -o-transition: .4s cubic-bezier(.175, .885, .32, 1);
  4560. transition: .4s cubic-bezier(.175, .885, .32, 1);
  4561. -webkit-transition-property: border, background-color;
  4562. -o-transition-property: border, background-color;
  4563. transition-property: border, background-color;
  4564. }
  4565. .checkbox-primary > label:before {
  4566. top: 3px;
  4567. z-index: 2;
  4568. font-family: ZenIcon;
  4569. font-size: 14px;
  4570. font-style: normal;
  4571. font-weight: normal;
  4572. font-variant: normal;
  4573. line-height: 1;
  4574. text-transform: none;
  4575. content: '\e60d';
  4576. opacity: 0;
  4577. -webkit-transition: .2s cubic-bezier(.175, .885, .32, 1);
  4578. -o-transition: .2s cubic-bezier(.175, .885, .32, 1);
  4579. transition: .2s cubic-bezier(.175, .885, .32, 1);
  4580. -webkit-transition-property: opacity, -webkit-transform;
  4581. -o-transition-property: opacity, -o-transform;
  4582. transition-property: opacity, -webkit-transform;
  4583. transition-property: opacity, transform;
  4584. transition-property: opacity, transform, -webkit-transform, -o-transform;
  4585. -webkit-transform: scale(0);
  4586. -ms-transform: scale(0);
  4587. -o-transform: scale(0);
  4588. transform: scale(0);
  4589. speak: none;
  4590. -webkit-font-smoothing: antialiased;
  4591. -moz-osx-font-smoothing: grayscale;
  4592. }
  4593. .checkbox-primary.checked > label:after {
  4594. background-color: #3280fc;
  4595. border-color: #3280fc;
  4596. border-width: 4px;
  4597. }
  4598. .checkbox-primary.checked > label:before {
  4599. color: white;
  4600. opacity: 1;
  4601. -webkit-transform: scale(1);
  4602. -ms-transform: scale(1);
  4603. -o-transform: scale(1);
  4604. transform: scale(1);
  4605. }
  4606. .close {
  4607. float: right;
  4608. font-size: 19.5px;
  4609. font-weight: bold;
  4610. line-height: 1;
  4611. color: #000;
  4612. text-shadow: 0 1px 0 #fff;
  4613. filter: alpha(opacity=20);
  4614. opacity: .2;
  4615. }
  4616. .close:hover,
  4617. .close:focus {
  4618. color: #000;
  4619. text-decoration: none;
  4620. cursor: pointer;
  4621. filter: alpha(opacity=50);
  4622. opacity: .5;
  4623. }
  4624. button.close {
  4625. -webkit-appearance: none;
  4626. padding: 0;
  4627. cursor: pointer;
  4628. background: transparent;
  4629. border: 0;
  4630. }
  4631. @media (min-width: 768px) {
  4632. ::-webkit-scrollbar {
  4633. width: 10px;
  4634. height: 10px;
  4635. }
  4636. ::-webkit-scrollbar-button {
  4637. width: 0;
  4638. height: 0;
  4639. }
  4640. ::-webkit-scrollbar-button:start:decrement,
  4641. ::-webkit-scrollbar-button:end:increment {
  4642. display: block;
  4643. }
  4644. ::-webkit-scrollbar-button:vertical:start:increment,
  4645. ::-webkit-scrollbar-button:vertical:end:decrement {
  4646. display: none;
  4647. }
  4648. ::-webkit-scrollbar-track:vertical,
  4649. ::-webkit-scrollbar-track:horizontal,
  4650. ::-webkit-scrollbar-thumb:vertical,
  4651. ::-webkit-scrollbar-thumb:horizontal,
  4652. ::-webkit-scrollbar-track:vertical,
  4653. ::-webkit-scrollbar-track:horizontal,
  4654. ::-webkit-scrollbar-thumb:vertical,
  4655. ::-webkit-scrollbar-thumb:horizontal {
  4656. border-color: transparent;
  4657. border-style: solid;
  4658. }
  4659. ::-webkit-scrollbar-track:vertical::-webkit-scrollbar-track:horizontal {
  4660. background-color: #fff;
  4661. -webkit-background-clip: padding-box;
  4662. background-clip: padding-box;
  4663. }
  4664. ::-webkit-scrollbar-thumb {
  4665. min-height: 28px;
  4666. padding-top: 100;
  4667. background-color: rgba(0, 0, 0, .2);
  4668. -webkit-background-clip: padding-box;
  4669. background-clip: padding-box;
  4670. border-radius: 5px;
  4671. -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1), inset 0 -1px 0 rgba(0, 0, 0, .07);
  4672. }
  4673. ::-webkit-scrollbar-thumb:hover {
  4674. background-color: rgba(0, 0, 0, .4);
  4675. -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .25);
  4676. }
  4677. ::-webkit-scrollbar-thumb:active {
  4678. background-color: rgba(0, 0, 0, .5);
  4679. -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .35);
  4680. }
  4681. ::-webkit-scrollbar-track:vertical,
  4682. ::-webkit-scrollbar-track:horizontal,
  4683. ::-webkit-scrollbar-thumb:vertical,
  4684. ::-webkit-scrollbar-thumb:horizontal {
  4685. border-width: 0;
  4686. }
  4687. ::-webkit-scrollbar-track:hover {
  4688. background-color: rgba(0, 0, 0, .05);
  4689. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1);
  4690. }
  4691. ::-webkit-scrollbar-track:active {
  4692. background-color: rgba(0, 0, 0, .05);
  4693. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .14), inset -1px -1px 0 rgba(0, 0, 0, .07);
  4694. }
  4695. .scrollbar-hover::-webkit-scrollbar,
  4696. .scrollbar-hover::-webkit-scrollbar-button,
  4697. .scrollbar-hover::-webkit-scrollbar-track,
  4698. .scrollbar-hover::-webkit-scrollbar-thumb {
  4699. visibility: hidden;
  4700. }
  4701. .scrollbar-hover:hover::-webkit-scrollbar,
  4702. .scrollbar-hover:hover::-webkit-scrollbar-button,
  4703. .scrollbar-hover:hover::-webkit-scrollbar-track,
  4704. .scrollbar-hover:hover::-webkit-scrollbar-thumb {
  4705. visibility: visible;
  4706. }
  4707. }
  4708. table {
  4709. max-width: 100%;
  4710. background-color: transparent;
  4711. }
  4712. caption {
  4713. padding-top: 8px;
  4714. padding-bottom: 8px;
  4715. color: #808080;
  4716. text-align: left;
  4717. }
  4718. th {
  4719. text-align: left;
  4720. }
  4721. .table {
  4722. width: 100%;
  4723. margin-bottom: 20px;
  4724. }
  4725. .table th,
  4726. .table td {
  4727. padding: 8px;
  4728. line-height: 1.53846154;
  4729. vertical-align: top;
  4730. border-bottom: 1px solid #ddd;
  4731. -webkit-transition: background .2s cubic-bezier(.175, .885, .32, 1);
  4732. -o-transition: background .2s cubic-bezier(.175, .885, .32, 1);
  4733. transition: background .2s cubic-bezier(.175, .885, .32, 1);
  4734. }
  4735. .table > thead > tr > th {
  4736. vertical-align: bottom;
  4737. background-color: #f1f1f1;
  4738. border-bottom: 1px solid #ddd;
  4739. }
  4740. .table > tbody + tbody {
  4741. border-top: 2px solid #ddd;
  4742. }
  4743. .table-fixed {
  4744. table-layout: fixed;
  4745. }
  4746. .table-fixed th,
  4747. .table-fixed td {
  4748. overflow: hidden;
  4749. white-space: nowrap;
  4750. }
  4751. .table-fixed tfoot > tr > th,
  4752. .table-fixed tfoot > tr > td,
  4753. .table-fixed .nofixed,
  4754. .table-fixed .nofixed {
  4755. overflow: visible;
  4756. }
  4757. .table-borderless thead > tr > th,
  4758. .table-borderless th,
  4759. .table-borderless td {
  4760. border: none;
  4761. }
  4762. .table-auto {
  4763. width: auto;
  4764. max-width: 100%;
  4765. }
  4766. .table-condensed th,
  4767. .table-condensed td {
  4768. padding: 5px;
  4769. }
  4770. .table-bordered {
  4771. border: 1px solid #ddd;
  4772. }
  4773. .table-bordered th,
  4774. .table-bordered td {
  4775. border: 1px solid #ddd;
  4776. }
  4777. .table-striped > tbody > tr:nth-child(odd) > td,
  4778. .table-striped > tbody > tr:nth-child(odd) > th {
  4779. background-color: #f9f9f9;
  4780. }
  4781. .table-hover > tbody > tr:hover > td,
  4782. .table-hover > tbody > tr:hover > th {
  4783. background-color: #ebf2f9;
  4784. }
  4785. table col[class*="col-"] {
  4786. display: table-column;
  4787. float: none;
  4788. }
  4789. table td[class*="col-"],
  4790. table th[class*="col-"] {
  4791. display: table-cell;
  4792. float: none;
  4793. }
  4794. .table tr > td.active,
  4795. .table tr > th.active,
  4796. .table tr.active > td,
  4797. .table tr.active > th {
  4798. background-color: #ffe7bc;
  4799. }
  4800. .table > thead > tr > td.success,
  4801. .table > tbody > tr > td.success,
  4802. .table > tfoot > tr > td.success,
  4803. .table > thead > tr > th.success,
  4804. .table > tbody > tr > th.success,
  4805. .table > tfoot > tr > th.success,
  4806. .table > thead > tr.success > td,
  4807. .table > tbody > tr.success > td,
  4808. .table > tfoot > tr.success > td,
  4809. .table > thead > tr.success > th,
  4810. .table > tbody > tr.success > th,
  4811. .table > tfoot > tr.success > th {
  4812. background-color: #ddf4df;
  4813. border-color: #bae8b6;
  4814. }
  4815. .table-hover > tbody > tr > td.success:hover,
  4816. .table-hover > tbody > tr > th.success:hover,
  4817. .table-hover > tbody > tr.success:hover > td,
  4818. .table-hover > tbody > tr.success:hover > th {
  4819. background-color: #caeecd;
  4820. border-color: #a8e1a3;
  4821. }
  4822. .table > thead > tr > td.danger,
  4823. .table > tbody > tr > td.danger,
  4824. .table > tfoot > tr > td.danger,
  4825. .table > thead > tr > th.danger,
  4826. .table > tbody > tr > th.danger,
  4827. .table > tfoot > tr > th.danger,
  4828. .table > thead > tr.danger > td,
  4829. .table > tbody > tr.danger > td,
  4830. .table > tfoot > tr.danger > td,
  4831. .table > thead > tr.danger > th,
  4832. .table > tbody > tr.danger > th,
  4833. .table > tfoot > tr.danger > th {
  4834. background-color: #ffe5e0;
  4835. border-color: #ffc6c7;
  4836. }
  4837. .table-hover > tbody > tr > td.danger:hover,
  4838. .table-hover > tbody > tr > th.danger:hover,
  4839. .table-hover > tbody > tr.danger:hover > td,
  4840. .table-hover > tbody > tr.danger:hover > th {
  4841. background-color: #ffd0c6;
  4842. border-color: #ffadad;
  4843. }
  4844. .table > thead > tr > td.warning,
  4845. .table > tbody > tr > td.warning,
  4846. .table > tfoot > tr > td.warning,
  4847. .table > thead > tr > th.warning,
  4848. .table > tbody > tr > th.warning,
  4849. .table > tfoot > tr > th.warning,
  4850. .table > thead > tr.warning > td,
  4851. .table > tbody > tr.warning > td,
  4852. .table > tfoot > tr.warning > td,
  4853. .table > thead > tr.warning > th,
  4854. .table > tbody > tr.warning > th,
  4855. .table > tfoot > tr.warning > th {
  4856. background-color: #fff0d5;
  4857. border-color: #ffdcbc;
  4858. }
  4859. .table-hover > tbody > tr > td.warning:hover,
  4860. .table-hover > tbody > tr > th.warning:hover,
  4861. .table-hover > tbody > tr.warning:hover > td,
  4862. .table-hover > tbody > tr.warning:hover > th {
  4863. background-color: #ffe7bc;
  4864. border-color: #ffcea2;
  4865. }
  4866. .table-responsive {
  4867. min-height: .01%;
  4868. overflow-x: auto;
  4869. }
  4870. @media screen and (max-width: 767px) {
  4871. .table-responsive {
  4872. width: 100%;
  4873. margin-bottom: 15px;
  4874. overflow-y: hidden;
  4875. -ms-overflow-style: -ms-autohiding-scrollbar;
  4876. border: 1px solid #ddd;
  4877. }
  4878. .table-responsive > .table {
  4879. margin-bottom: 0;
  4880. }
  4881. .table-responsive > .table > thead > tr > th,
  4882. .table-responsive > .table > tbody > tr > th,
  4883. .table-responsive > .table > tfoot > tr > th,
  4884. .table-responsive > .table > thead > tr > td,
  4885. .table-responsive > .table > tbody > tr > td,
  4886. .table-responsive > .table > tfoot > tr > td {
  4887. white-space: nowrap;
  4888. }
  4889. .table-responsive > .table-bordered {
  4890. border: 0;
  4891. }
  4892. .table-responsive > .table-bordered th {
  4893. border-top: none;
  4894. }
  4895. .table-responsive > .table-bordered > thead > tr > th:first-child,
  4896. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  4897. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  4898. .table-responsive > .table-bordered > thead > tr > td:first-child,
  4899. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  4900. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  4901. border-left: 0;
  4902. }
  4903. .table-responsive > .table-bordered > thead > tr > th:last-child,
  4904. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  4905. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  4906. .table-responsive > .table-bordered > thead > tr > td:last-child,
  4907. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  4908. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  4909. border-right: 0;
  4910. }
  4911. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  4912. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  4913. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  4914. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  4915. border-bottom: 0;
  4916. }
  4917. }
  4918. .list-group {
  4919. padding-left: 0;
  4920. margin-bottom: 20px;
  4921. }
  4922. .list-group-item {
  4923. position: relative;
  4924. display: block;
  4925. padding: 10px 15px;
  4926. margin-bottom: -1px;
  4927. background-color: #fff;
  4928. border: 1px solid #ddd;
  4929. }
  4930. .list-group-item:first-child {
  4931. border-top-left-radius: 4px;
  4932. border-top-right-radius: 4px;
  4933. }
  4934. .list-group-item:last-child {
  4935. margin-bottom: 0;
  4936. border-bottom-right-radius: 4px;
  4937. border-bottom-left-radius: 4px;
  4938. }
  4939. .list-group-item > .label-badge {
  4940. float: right;
  4941. }
  4942. .list-group-item > .label-badge + .label-badge {
  4943. margin-right: 5px;
  4944. }
  4945. a.list-group-item {
  4946. color: #555;
  4947. }
  4948. a.list-group-item .list-group-item-heading {
  4949. color: #333;
  4950. }
  4951. a.list-group-item:hover,
  4952. a.list-group-item:focus {
  4953. color: #353535;
  4954. text-decoration: none;
  4955. background-color: #ebf2f9;
  4956. }
  4957. .list-group-item.active,
  4958. .list-group-item.active:hover,
  4959. .list-group-item.active:focus {
  4960. z-index: 2;
  4961. color: #fff;
  4962. background-color: #3280fc;
  4963. border-color: #3280fc;
  4964. }
  4965. .list-group-item.active .list-group-item-heading,
  4966. .list-group-item.active:hover .list-group-item-heading,
  4967. .list-group-item.active:focus .list-group-item-heading {
  4968. color: inherit;
  4969. }
  4970. .list-group-item.active .list-group-item-text,
  4971. .list-group-item.active:hover .list-group-item-text,
  4972. .list-group-item.active:focus .list-group-item-text {
  4973. color: #e6e6e6;
  4974. }
  4975. .list-group-item-heading {
  4976. margin-top: 0;
  4977. margin-bottom: 5px;
  4978. color: #333;
  4979. }
  4980. .list-group-item-text {
  4981. margin-bottom: 0;
  4982. line-height: 1.3;
  4983. }
  4984. .panel {
  4985. margin-bottom: 20px;
  4986. background-color: #fff;
  4987. border: 1px solid transparent;
  4988. border-color: #ddd;
  4989. border-radius: 4px;
  4990. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  4991. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  4992. }
  4993. .panel > .panel-heading {
  4994. color: #333;
  4995. background-color: #f5f5f5;
  4996. border-color: #ddd;
  4997. }
  4998. .panel > .panel-heading + .panel-collapse .panel-body {
  4999. border-top-color: #ddd;
  5000. }
  5001. .panel > .panel-footer + .panel-collapse .panel-body {
  5002. border-bottom-color: #ddd;
  5003. }
  5004. .panel-body {
  5005. padding: 15px;
  5006. }
  5007. .panel > .table {
  5008. margin-bottom: 0;
  5009. }
  5010. .panel > .panel-body + .table {
  5011. border-top: 1px solid #ddd;
  5012. }
  5013. .panel-heading {
  5014. padding: 8px 15px;
  5015. border-bottom: 1px solid transparent;
  5016. border-top-left-radius: 3px;
  5017. border-top-right-radius: 3px;
  5018. }
  5019. .panel-title {
  5020. margin-top: 0;
  5021. margin-bottom: 0;
  5022. font-size: 15px;
  5023. }
  5024. .panel-title > a {
  5025. color: inherit;
  5026. }
  5027. .panel-footer {
  5028. padding: 10px 15px;
  5029. background-color: #f5f5f5;
  5030. border-top: 1px solid #ddd;
  5031. border-bottom-right-radius: 3px;
  5032. border-bottom-left-radius: 3px;
  5033. }
  5034. .panel-primary {
  5035. border-color: #3280fc;
  5036. }
  5037. .panel-primary > .panel-heading {
  5038. color: #fff;
  5039. background-color: #3280fc;
  5040. border-color: #3280fc;
  5041. }
  5042. .panel-primary > .panel-heading + .panel-collapse .panel-body {
  5043. border-top-color: #3280fc;
  5044. }
  5045. .panel-primary > .panel-footer + .panel-collapse .panel-body {
  5046. border-bottom-color: #3280fc;
  5047. }
  5048. .panel-success {
  5049. border-color: #bae8b6;
  5050. }
  5051. .panel-success > .panel-heading {
  5052. color: #38b03f;
  5053. background-color: #ddf4df;
  5054. border-color: #bae8b6;
  5055. }
  5056. .panel-success > .panel-heading + .panel-collapse .panel-body {
  5057. border-top-color: #bae8b6;
  5058. }
  5059. .panel-success > .panel-footer + .panel-collapse .panel-body {
  5060. border-bottom-color: #bae8b6;
  5061. }
  5062. .panel-warning {
  5063. border-color: #ffdcbc;
  5064. }
  5065. .panel-warning > .panel-heading {
  5066. color: #f1a325;
  5067. background-color: #fff0d5;
  5068. border-color: #ffdcbc;
  5069. }
  5070. .panel-warning > .panel-heading + .panel-collapse .panel-body {
  5071. border-top-color: #ffdcbc;
  5072. }
  5073. .panel-warning > .panel-footer + .panel-collapse .panel-body {
  5074. border-bottom-color: #ffdcbc;
  5075. }
  5076. .panel-danger {
  5077. border-color: #ffc6c7;
  5078. }
  5079. .panel-danger > .panel-heading {
  5080. color: #ea644a;
  5081. background-color: #ffe5e0;
  5082. border-color: #ffc6c7;
  5083. }
  5084. .panel-danger > .panel-heading + .panel-collapse .panel-body {
  5085. border-top-color: #ffc6c7;
  5086. }
  5087. .panel-danger > .panel-footer + .panel-collapse .panel-body {
  5088. border-bottom-color: #ffc6c7;
  5089. }
  5090. .panel-info {
  5091. border-color: #a2e4de;
  5092. }
  5093. .panel-info > .panel-heading {
  5094. color: #03b8cf;
  5095. background-color: #ddf3f5;
  5096. border-color: #a2e4de;
  5097. }
  5098. .panel-info > .panel-heading + .panel-collapse .panel-body {
  5099. border-top-color: #a2e4de;
  5100. }
  5101. .panel-info > .panel-footer + .panel-collapse .panel-body {
  5102. border-bottom-color: #a2e4de;
  5103. }
  5104. .panel-group {
  5105. margin-bottom: 20px;
  5106. }
  5107. .panel-group .panel {
  5108. margin-bottom: 0;
  5109. border-radius: 4px;
  5110. }
  5111. .panel-group .panel + .panel {
  5112. margin-top: 5px;
  5113. }
  5114. .panel-group .panel-heading {
  5115. border-bottom: 0;
  5116. }
  5117. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5118. .panel-group .panel-heading + .panel-collapse > .list-group {
  5119. border-top: 1px solid #ddd;
  5120. }
  5121. .panel-group .panel-footer {
  5122. border-top: 0;
  5123. }
  5124. .panel-group .panel-footer + .panel-collapse .panel-body {
  5125. border-bottom: 1px solid #ddd;
  5126. }
  5127. .panel > .list-group,
  5128. .panel > .panel-collapse > .list-group {
  5129. margin-bottom: 0;
  5130. }
  5131. .panel > .list-group .list-group-item,
  5132. .panel > .panel-collapse > .list-group .list-group-item {
  5133. border-width: 1px 0;
  5134. border-radius: 0;
  5135. }
  5136. .panel > .list-group:first-child .list-group-item:first-child,
  5137. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5138. border-top: 0;
  5139. border-top-left-radius: 3px;
  5140. border-top-right-radius: 3px;
  5141. }
  5142. .panel > .list-group:last-child .list-group-item:last-child,
  5143. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5144. border-bottom: 0;
  5145. border-bottom-right-radius: 3px;
  5146. border-bottom-left-radius: 3px;
  5147. }
  5148. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5149. border-top-left-radius: 0;
  5150. border-top-right-radius: 0;
  5151. }
  5152. .panel-heading + .list-group .list-group-item:first-child {
  5153. border-top-width: 0;
  5154. }
  5155. .list-group + .panel-footer {
  5156. border-top-width: 0;
  5157. }
  5158. .alert {
  5159. padding: 15px;
  5160. margin-bottom: 20px;
  5161. color: #282828;
  5162. background-color: #f1f1f1;
  5163. border-radius: 3px;
  5164. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  5165. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  5166. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  5167. }
  5168. .alert hr {
  5169. border-top-color: #e4e4e4;
  5170. }
  5171. .alert .alert-link {
  5172. color: #161616;
  5173. }
  5174. .alert h4 {
  5175. margin-top: 0;
  5176. color: inherit;
  5177. }
  5178. .alert hr {
  5179. margin: 10px 0;
  5180. }
  5181. .alert p,
  5182. .alert ul {
  5183. margin-bottom: 0;
  5184. }
  5185. .alert p + p {
  5186. margin-top: 5px;
  5187. }
  5188. .alert-link {
  5189. font-weight: bold;
  5190. }
  5191. .alert > [class*="icon-"] {
  5192. float: left;
  5193. margin-top: -5px;
  5194. font-size: 42px;
  5195. opacity: .6;
  5196. -webkit-transition: opacity .2s cubic-bezier(.175, .885, .32, 1);
  5197. -o-transition: opacity .2s cubic-bezier(.175, .885, .32, 1);
  5198. transition: opacity .2s cubic-bezier(.175, .885, .32, 1);
  5199. }
  5200. .alert > [class*="icon-"] + .content {
  5201. min-height: 30px;
  5202. margin-left: 64px;
  5203. }
  5204. .alert.with-icon {
  5205. display: table;
  5206. width: 100%;
  5207. }
  5208. .alert.with-icon > [class*="icon-"],
  5209. .alert.with-icon > [class*="icon-"] + .content {
  5210. display: table-cell;
  5211. float: none;
  5212. min-height: 0;
  5213. margin: 0;
  5214. vertical-align: middle;
  5215. }
  5216. .alert.with-icon > [class*="icon-"] {
  5217. width: 48px;
  5218. text-align: center;
  5219. }
  5220. .alert.with-icon > [class*="icon-"] + .content {
  5221. padding-left: 1em;
  5222. }
  5223. .alert-block {
  5224. margin: 0;
  5225. border-radius: 0;
  5226. }
  5227. .alert-dismissable {
  5228. padding-right: 35px;
  5229. }
  5230. .alert-dismissable .close {
  5231. position: relative;
  5232. top: -6px;
  5233. right: -21px;
  5234. color: inherit;
  5235. }
  5236. .alert-primary {
  5237. color: #282828;
  5238. background-color: #ebf2f9;
  5239. }
  5240. .alert-primary hr {
  5241. border-top-color: #d0e0f1;
  5242. }
  5243. .alert-primary .alert-link {
  5244. color: #161616;
  5245. }
  5246. .alert-success {
  5247. color: #329d38;
  5248. background-color: #ddf4df;
  5249. }
  5250. .alert-success hr {
  5251. border-top-color: #bae8b6;
  5252. }
  5253. .alert-success .alert-link {
  5254. color: #29822e;
  5255. }
  5256. .alert-info {
  5257. color: #03a2b6;
  5258. background-color: #ddf3f5;
  5259. }
  5260. .alert-info hr {
  5261. border-top-color: #a2e4de;
  5262. }
  5263. .alert-info .alert-link {
  5264. color: #028293;
  5265. }
  5266. .alert-warning {
  5267. color: #ed980f;
  5268. background-color: #fff0d5;
  5269. }
  5270. .alert-warning hr {
  5271. border-top-color: #ffdcbc;
  5272. }
  5273. .alert-warning .alert-link {
  5274. color: #cc830d;
  5275. }
  5276. .alert-danger {
  5277. color: #e75033;
  5278. background-color: #ffe5e0;
  5279. }
  5280. .alert-danger hr {
  5281. border-top-color: #ffc6c7;
  5282. }
  5283. .alert-danger .alert-link {
  5284. color: #dd391a;
  5285. }
  5286. .alert-inverse {
  5287. color: #fff;
  5288. background-color: #353535;
  5289. border-color: #353535;
  5290. }
  5291. .alert-inverse hr {
  5292. border-top-color: #ddd;
  5293. border-top-color: rgba(221, 221, 221, .25);
  5294. }
  5295. .alert-inverse .alert-link {
  5296. color: rgba(255, 255, 255, .8);
  5297. }
  5298. .alert-primary-inverse {
  5299. color: #fff;
  5300. background-color: #3280fc;
  5301. border-color: #3280fc;
  5302. }
  5303. .alert-primary-inverse hr {
  5304. border-top-color: #ddd;
  5305. border-top-color: rgba(221, 221, 221, .25);
  5306. }
  5307. .alert-primary-inverse .alert-link {
  5308. color: rgba(255, 255, 255, .8);
  5309. }
  5310. .alert-success-inverse {
  5311. color: #fff;
  5312. background-color: #38b03f;
  5313. border-color: #38b03f;
  5314. }
  5315. .alert-success-inverse hr {
  5316. border-top-color: #ddd;
  5317. border-top-color: rgba(221, 221, 221, .25);
  5318. }
  5319. .alert-success-inverse .alert-link {
  5320. color: rgba(255, 255, 255, .8);
  5321. }
  5322. .alert-info-inverse {
  5323. color: #fff;
  5324. background-color: #03b8cf;
  5325. border-color: #03b8cf;
  5326. }
  5327. .alert-info-inverse hr {
  5328. border-top-color: #ddd;
  5329. border-top-color: rgba(221, 221, 221, .25);
  5330. }
  5331. .alert-info-inverse .alert-link {
  5332. color: rgba(255, 255, 255, .8);
  5333. }
  5334. .alert-warning-inverse {
  5335. color: #fff;
  5336. background-color: #f1a325;
  5337. border-color: #f1a325;
  5338. }
  5339. .alert-warning-inverse hr {
  5340. border-top-color: #ddd;
  5341. border-top-color: rgba(221, 221, 221, .25);
  5342. }
  5343. .alert-warning-inverse .alert-link {
  5344. color: rgba(255, 255, 255, .8);
  5345. }
  5346. .alert-danger-inverse {
  5347. color: #fff;
  5348. background-color: #ea644a;
  5349. border-color: #ea644a;
  5350. }
  5351. .alert-danger-inverse hr {
  5352. border-top-color: #ddd;
  5353. border-top-color: rgba(221, 221, 221, .25);
  5354. }
  5355. .alert-danger-inverse .alert-link {
  5356. color: rgba(255, 255, 255, .8);
  5357. }
  5358. .input-control-icon-left,
  5359. .input-control-icon-right,
  5360. .input-control-label-left,
  5361. .input-control-label-right {
  5362. position: absolute;
  5363. top: 1px;
  5364. z-index: 5;
  5365. height: 30px;
  5366. line-height: 30px;
  5367. opacity: .5;
  5368. }
  5369. .input-control-icon-left,
  5370. .input-control-icon-right {
  5371. width: 30px;
  5372. text-align: center;
  5373. }
  5374. .input-control-label-left,
  5375. .input-control-icon-left {
  5376. left: 1px;
  5377. }
  5378. .input-control-label-right,
  5379. .input-control-icon-right {
  5380. right: 1px;
  5381. }
  5382. .input-control-label-left,
  5383. .input-control-label-right {
  5384. width: 70px;
  5385. padding: 0 8px;
  5386. overflow: hidden;
  5387. text-overflow: ellipsis;
  5388. }
  5389. .has-label-left-sm > .input-control-label-left,
  5390. .has-label-left-sm > .input-control-label-right {
  5391. width: 55px;
  5392. }
  5393. .has-label-left-lg > .input-control-label-left,
  5394. .has-label-left-lg > .input-control-label-right {
  5395. width: 95px;
  5396. }
  5397. .input-control {
  5398. position: relative;
  5399. }
  5400. .input-control.has-icon-left > .form-control {
  5401. padding-left: 30px;
  5402. }
  5403. .input-control.has-icon-right > .form-control {
  5404. padding-right: 30px;
  5405. }
  5406. .input-control.has-label-left > .form-control {
  5407. padding-left: 70px;
  5408. }
  5409. .input-control.has-label-right > .form-control {
  5410. padding-right: 70px;
  5411. }
  5412. .input-control.has-label-left-sm > .form-control {
  5413. padding-left: 55px;
  5414. }
  5415. .input-control.has-label-right-sm > .form-control {
  5416. padding-right: 55px;
  5417. }
  5418. .input-control.has-label-left-lg > .form-control {
  5419. padding-left: 95px;
  5420. }
  5421. .input-control.has-label-right-lg > .form-control {
  5422. padding-right: 95px;
  5423. }
  5424. .input-control > a:hover {
  5425. background-color: #f1f1f1;
  5426. opacity: 1;
  5427. }
  5428. .form-control:focus + [class^="input-control-"],
  5429. .form-control:focus + [class^="input-control-"] + [class^="input-control-"] {
  5430. opacity: 1;
  5431. }
  5432. .form-control:focus + .input-control-label-left {
  5433. color: #145ccd;
  5434. }
  5435. .empty + .search-clear-btn,
  5436. .empty + .search-icon + .search-clear-btn {
  5437. opacity: 0 !important;
  5438. }
  5439. input:placeholder-shown + .search-clear-btn,
  5440. input:placeholder-shown + .search-icon + .search-clear-btn {
  5441. opacity: 0 !important;
  5442. }
  5443. .search-box-circle .input-control-icon-left,
  5444. .search-box-circle .input-control-icon-right,
  5445. .search-box-circle > .form-control {
  5446. border-radius: 16px;
  5447. }
  5448. .search-box-circle + .input-group-btn > .btn {
  5449. border-radius: 0 16px 16px 0;
  5450. }
  5451. .input-group {
  5452. position: relative;
  5453. display: table;
  5454. border-collapse: separate;
  5455. }
  5456. .input-group[class*="col-"] {
  5457. float: none;
  5458. padding-right: 0;
  5459. padding-left: 0;
  5460. }
  5461. .input-group .form-control {
  5462. position: relative;
  5463. z-index: 2;
  5464. float: left;
  5465. width: 100%;
  5466. margin-bottom: 0;
  5467. }
  5468. .input-group-addon,
  5469. .input-group-btn,
  5470. .input-group .form-control {
  5471. display: table-cell;
  5472. }
  5473. .input-group-addon:not(:first-child):not(:last-child),
  5474. .input-group-btn:not(:first-child):not(:last-child),
  5475. .input-group .form-control:not(:first-child):not(:last-child) {
  5476. border-radius: 0;
  5477. }
  5478. .input-group-addon,
  5479. .input-group-btn {
  5480. width: 1%;
  5481. white-space: nowrap;
  5482. vertical-align: middle;
  5483. }
  5484. .input-group-addon {
  5485. padding: 5px 12px;
  5486. font-size: 13px;
  5487. font-weight: normal;
  5488. line-height: 1;
  5489. color: #222;
  5490. text-align: center;
  5491. background-color: #e5e5e5;
  5492. border: 1px solid #ccc;
  5493. border-radius: 4px;
  5494. }
  5495. .input-group-addon input[type="radio"],
  5496. .input-group-addon input[type="checkbox"] {
  5497. margin-top: 0;
  5498. }
  5499. .input-group-addon.fix-border {
  5500. border-right: 0;
  5501. border-left: 0;
  5502. }
  5503. .input-group-addon:empty {
  5504. width: 1px;
  5505. padding: 0;
  5506. }
  5507. .input-group-addon.fix-padding {
  5508. width: 1px;
  5509. padding: 0;
  5510. }
  5511. .input-group-btn.fix-border > .btn {
  5512. border-right: 0;
  5513. border-left: 0;
  5514. border-radius: 0;
  5515. }
  5516. .input-group .form-control:first-child,
  5517. .input-group-addon:first-child,
  5518. .input-group-btn:first-child > .btn,
  5519. .input-group-btn:first-child > .btn-group > .btn,
  5520. .input-group-btn:first-child > .dropdown-toggle,
  5521. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  5522. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
  5523. .input-group-btn:first-child > .btn-group-vertical > .btn,
  5524. .input-group-btn:last-child > .btn-group-vertical:not(:last-child) > .btn {
  5525. border-top-right-radius: 0;
  5526. border-bottom-right-radius: 0;
  5527. }
  5528. .input-group .form-control:last-child,
  5529. .input-group-addon:last-child,
  5530. .input-group-btn:last-child > .btn,
  5531. .input-group-btn:last-child > .btn-group > .btn,
  5532. .input-group-btn:last-child > .dropdown-toggle,
  5533. .input-group-btn:first-child > .btn:not(:first-child),
  5534. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
  5535. .input-group-btn:last-child > .btn-group-vertical > .btn,
  5536. .input-group-btn:first-child > .btn-group-vertical:not(:first-child) > .btn {
  5537. border-top-left-radius: 0;
  5538. border-bottom-left-radius: 0;
  5539. }
  5540. .input-group-addon:first-child {
  5541. border-right: 0;
  5542. }
  5543. .input-group-addon:last-child {
  5544. border-left: 0;
  5545. }
  5546. .input-group-btn {
  5547. position: relative;
  5548. font-size: 0;
  5549. white-space: nowrap;
  5550. }
  5551. .input-group-btn > .btn {
  5552. position: relative;
  5553. }
  5554. .input-group-btn > .btn + .btn {
  5555. margin-left: -1px;
  5556. }
  5557. .input-group-btn > .btn:hover,
  5558. .input-group-btn > .btn:focus,
  5559. .input-group-btn > .btn:active {
  5560. z-index: 2;
  5561. }
  5562. .input-group-btn:first-child > .btn,
  5563. .input-group-btn:first-child > .btn-group,
  5564. .input-group-btn:first-child > .btn-group-vertical {
  5565. margin-right: -1px;
  5566. }
  5567. .input-group-btn:last-child > .btn,
  5568. .input-group-btn:last-child > .btn-group,
  5569. .input-group-btn:last-child > .btn-group-vertical {
  5570. margin-left: -1px;
  5571. }
  5572. .input-group-lg > .form-control,
  5573. .input-group-lg > .input-group-addon,
  5574. .input-group-lg > .input-group-btn > .btn {
  5575. height: 43px;
  5576. padding: 10px 16px;
  5577. font-size: 17px;
  5578. line-height: 1.25;
  5579. border-radius: 6px;
  5580. }
  5581. select.input-group-lg > .form-control,
  5582. select.input-group-lg > .input-group-addon,
  5583. select.input-group-lg > .input-group-btn > .btn {
  5584. height: 43px;
  5585. line-height: 43px;
  5586. }
  5587. textarea.input-group-lg > .form-control,
  5588. textarea.input-group-lg > .input-group-addon,
  5589. textarea.input-group-lg > .input-group-btn > .btn {
  5590. height: auto;
  5591. }
  5592. .input-group-sm > .form-control,
  5593. .input-group-sm > .input-group-addon,
  5594. .input-group-sm > .input-group-btn > .btn {
  5595. height: 24px;
  5596. padding: 2px 8px;
  5597. font-size: 12px;
  5598. line-height: 1.5;
  5599. border-radius: 3px;
  5600. }
  5601. select.input-group-sm > .form-control,
  5602. select.input-group-sm > .input-group-addon,
  5603. select.input-group-sm > .input-group-btn > .btn {
  5604. height: 24px;
  5605. line-height: 24px;
  5606. }
  5607. textarea.input-group-sm > .form-control,
  5608. textarea.input-group-sm > .input-group-addon,
  5609. textarea.input-group-sm > .input-group-btn > .btn {
  5610. height: auto;
  5611. }
  5612. .input-group-addon.input-sm {
  5613. padding: 2px 8px;
  5614. font-size: 12px;
  5615. border-radius: 3px;
  5616. }
  5617. .input-group-addon.input-lg {
  5618. padding: 10px 16px;
  5619. font-size: 17px;
  5620. border-radius: 6px;
  5621. }
  5622. .code,
  5623. code,
  5624. kbd,
  5625. pre,
  5626. samp {
  5627. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  5628. }
  5629. kbd,
  5630. code {
  5631. padding: 2px 4px;
  5632. font-size: 90%;
  5633. color: #37474f;
  5634. background-color: #f3f5f7;
  5635. border-radius: 4px;
  5636. }
  5637. kbd {
  5638. padding: 1px 4px;
  5639. font-weight: bold;
  5640. color: #666;
  5641. background-color: #f1f1f1;
  5642. border: 1px solid #d7d7d7;
  5643. border-bottom-width: 2px;
  5644. }
  5645. pre {
  5646. display: block;
  5647. padding: 9.5px;
  5648. margin: 0 0 10px;
  5649. font-size: 12px;
  5650. line-height: 1.38461538;
  5651. color: #333;
  5652. word-break: break-all;
  5653. word-wrap: break-word;
  5654. background-color: #f5f5f5;
  5655. border: 1px solid #ccc;
  5656. border-radius: 4px;
  5657. }
  5658. pre code {
  5659. padding: 0;
  5660. margin: 0;
  5661. font-size: inherit;
  5662. color: inherit;
  5663. white-space: pre-wrap;
  5664. background-color: transparent;
  5665. border: 0;
  5666. }
  5667. .pre-scrollable {
  5668. max-height: 340px;
  5669. overflow-y: scroll;
  5670. }
  5671. .com {
  5672. color: #93a1a1;
  5673. }
  5674. .lit {
  5675. color: #195f91;
  5676. }
  5677. .pun,
  5678. .opn,
  5679. .clo {
  5680. color: #93a1a1;
  5681. }
  5682. .fun {
  5683. color: #dc322f;
  5684. }
  5685. .str,
  5686. .atv {
  5687. color: #d14;
  5688. }
  5689. .kwd,
  5690. .prettyprint .tag {
  5691. color: #1e347b;
  5692. }
  5693. .typ,
  5694. .atn,
  5695. .dec,
  5696. .var {
  5697. color: teal;
  5698. }
  5699. .pln {
  5700. color: #48484c;
  5701. }
  5702. .prettyprint.linenums {
  5703. -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
  5704. box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
  5705. }
  5706. .prettyprint ol.linenums {
  5707. padding-left: 35px;
  5708. margin-bottom: 0;
  5709. line-height: 20px;
  5710. color: #bebec5;
  5711. text-shadow: 0 1px 0 #fff;
  5712. }
  5713. .pager {
  5714. display: inline-block;
  5715. padding-left: 0;
  5716. margin: 20px 0;
  5717. list-style: none;
  5718. }
  5719. .pager > li {
  5720. display: inline;
  5721. }
  5722. .pager > li > a,
  5723. .pager > li > span {
  5724. position: relative;
  5725. float: left;
  5726. padding: 5px 12px;
  5727. margin-left: -1px;
  5728. line-height: 1.53846154;
  5729. text-decoration: none;
  5730. background-color: #fff;
  5731. border: 1px solid #ddd;
  5732. }
  5733. .pager > li:first-child > a,
  5734. .pager > li:first-child > span {
  5735. margin-left: 0;
  5736. border-top-left-radius: 4px;
  5737. border-bottom-left-radius: 4px;
  5738. }
  5739. .pager > li:last-child > a,
  5740. .pager > li:last-child > span {
  5741. border-top-right-radius: 4px;
  5742. border-bottom-right-radius: 4px;
  5743. }
  5744. .pager > li > a:hover,
  5745. .pager > li > span:hover,
  5746. .pager > li > a:focus,
  5747. .pager > li > span:focus {
  5748. z-index: 2;
  5749. background-color: #e5e5e5;
  5750. }
  5751. .pager > li.active > a,
  5752. .pager > li.active > span,
  5753. .pager > li.active > a:hover,
  5754. .pager > li.active > span:hover {
  5755. z-index: 3;
  5756. color: #fff;
  5757. cursor: default;
  5758. background-color: #3280fc;
  5759. border-color: #3280fc;
  5760. }
  5761. .pager > li.disabled > span,
  5762. .pager > li.disabled > span:hover,
  5763. .pager > li.disabled > span:focus,
  5764. .pager > li.disabled > a,
  5765. .pager > li.disabled > a:hover,
  5766. .pager > li.disabled > a:focus {
  5767. color: #ddd;
  5768. pointer-events: none;
  5769. cursor: not-allowed;
  5770. background-color: #fff;
  5771. border-color: #ddd;
  5772. }
  5773. .pager-justify {
  5774. display: block;
  5775. }
  5776. .pager-justify .next > a,
  5777. .pager-justify .next > span {
  5778. float: right;
  5779. border-radius: 4px;
  5780. }
  5781. .pager-justify .previous > a,
  5782. .pager-justify .previous > span {
  5783. float: left;
  5784. border-radius: 4px;
  5785. }
  5786. .pager-goto {
  5787. width: 100px;
  5788. text-align: center;
  5789. }
  5790. .pager > li > div {
  5791. float: left;
  5792. }
  5793. .pager > li .pager-goto,
  5794. .pager > li .pager-size-menu,
  5795. .pager > li.space {
  5796. margin: 0 5px;
  5797. }
  5798. .pager-label {
  5799. position: relative;
  5800. float: left;
  5801. padding: 5px 4px;
  5802. margin-left: -1px;
  5803. line-height: 1.53846154;
  5804. text-decoration: none;
  5805. border: 1px solid transparent;
  5806. }
  5807. .pager-item-left > a {
  5808. border-top-left-radius: 4px;
  5809. border-bottom-left-radius: 4px;
  5810. }
  5811. .pager-item-right > a {
  5812. border-top-right-radius: 4px;
  5813. border-bottom-right-radius: 4px;
  5814. }
  5815. .pager-lg > li > a,
  5816. .pager-lg > li > span {
  5817. padding: 10px 16px;
  5818. font-size: 17px;
  5819. }
  5820. .pager-lg > li:first-child > a,
  5821. .pager-lg > li:first-child > span {
  5822. border-top-left-radius: 6px;
  5823. border-bottom-left-radius: 6px;
  5824. }
  5825. .pager-lg > li:last-child > a,
  5826. .pager-lg > li:last-child > span {
  5827. border-top-right-radius: 6px;
  5828. border-bottom-right-radius: 6px;
  5829. }
  5830. .pager-sm > li > a,
  5831. .pager-sm > li > span {
  5832. padding: 2px 8px;
  5833. font-size: 12px;
  5834. }
  5835. .pager-sm > li:first-child > a,
  5836. .pager-sm > li:first-child > span {
  5837. border-top-left-radius: 3px;
  5838. border-bottom-left-radius: 3px;
  5839. }
  5840. .pager-sm > li:last-child > a,
  5841. .pager-sm > li:last-child > span {
  5842. border-top-right-radius: 3px;
  5843. border-bottom-right-radius: 3px;
  5844. }
  5845. .pager-pills > li:first-child > a,
  5846. .pager-pills > li:first-child > span {
  5847. border-radius: 16px 0 0 16px;
  5848. }
  5849. .pager-pills > li:last-child > a,
  5850. .pager-pills > li:last-child > span {
  5851. border-radius: 0 16px 16px 0;
  5852. }
  5853. .pager-pills.pager-justify > li > a,
  5854. .pager-pills.pager-justify > li > span {
  5855. border-radius: 16px;
  5856. }
  5857. .pager-loose {
  5858. display: block;
  5859. margin: 20px 0;
  5860. }
  5861. .pager-loose.pager-pills > li > a,
  5862. .pager-loose.pager-pills > li > span {
  5863. border-radius: 16px;
  5864. }
  5865. .pager-loose > li > a,
  5866. .pager-loose > li > span {
  5867. margin-left: 5px;
  5868. border-radius: 4px;
  5869. }
  5870. .pager-loose > li:first-child > a,
  5871. .pager-loose > li:first-child > span {
  5872. margin-left: 0;
  5873. }
  5874. .nav {
  5875. padding-left: 0;
  5876. margin-bottom: 0;
  5877. list-style: none;
  5878. }
  5879. .nav > .nav-heading {
  5880. padding: 8px 15px;
  5881. font-weight: bold;
  5882. color: #808080;
  5883. }
  5884. .nav > li {
  5885. position: relative;
  5886. display: block;
  5887. }
  5888. .nav > li > a {
  5889. position: relative;
  5890. display: block;
  5891. padding: 8px 15px;
  5892. color: #353535;
  5893. }
  5894. .nav > li > a:hover,
  5895. .nav > li > a:focus {
  5896. color: #0d3d88;
  5897. text-decoration: none;
  5898. background-color: #f1f1f1;
  5899. }
  5900. .nav > li.disabled > a {
  5901. color: #ddd;
  5902. }
  5903. .nav > li.disabled > a:hover,
  5904. .nav > li.disabled > a:focus {
  5905. color: #ddd;
  5906. text-decoration: none;
  5907. cursor: not-allowed;
  5908. background-color: transparent;
  5909. }
  5910. .nav .open > a,
  5911. .nav .open > a:hover,
  5912. .nav .open > a:focus {
  5913. background-color: #f1f1f1;
  5914. border-color: #145ccd;
  5915. }
  5916. .nav > li > a > img {
  5917. max-width: none;
  5918. }
  5919. .nav-pills > li {
  5920. float: left;
  5921. }
  5922. .nav-pills > li > a {
  5923. border-radius: 20px;
  5924. }
  5925. .nav-pills > li + li {
  5926. margin-left: 2px;
  5927. }
  5928. .nav-pills > li.active > a,
  5929. .nav-pills > li.active > a:hover,
  5930. .nav-pills > li.active > a:focus {
  5931. color: #fff;
  5932. background-color: #3280fc;
  5933. }
  5934. .nav-primary > li {
  5935. float: left;
  5936. margin-left: -1px;
  5937. }
  5938. .nav-primary > li:first-child > a {
  5939. margin-left: 0;
  5940. border-top-left-radius: 4px;
  5941. border-bottom-left-radius: 4px;
  5942. }
  5943. .nav-primary > li:last-child > a {
  5944. border-top-right-radius: 4px;
  5945. border-bottom-right-radius: 4px;
  5946. }
  5947. .nav-primary > li > a {
  5948. border: 1px solid #ddd;
  5949. }
  5950. .nav-primary > li.active > a,
  5951. .nav-primary > li.active > a:hover,
  5952. .nav-primary > li.active > a:focus {
  5953. color: #fff;
  5954. background-color: #3280fc;
  5955. border-color: #3280fc;
  5956. }
  5957. .nav-secondary > li {
  5958. float: left;
  5959. }
  5960. .nav-secondary > li > a {
  5961. border-bottom: 2px solid #e5e5e5;
  5962. }
  5963. .nav-secondary > li.active > a,
  5964. .nav-secondary > li.active > a:hover,
  5965. .nav-secondary > li.active > a:focus {
  5966. color: #3280fc;
  5967. border-bottom-color: #3280fc;
  5968. }
  5969. .nav-secondary > li.nav-heading {
  5970. border-bottom: 2px solid #e5e5e5;
  5971. }
  5972. .nav-stacked > li {
  5973. float: none;
  5974. }
  5975. .nav-stacked > li + li {
  5976. margin-top: 2px;
  5977. margin-left: 0;
  5978. }
  5979. .nav-stacked.nav-primary > li,
  5980. .nav-stacked.nav-primary > li > a {
  5981. margin-left: 0;
  5982. border-bottom-right-radius: 0;
  5983. border-bottom-left-radius: 0;
  5984. }
  5985. .nav-stacked.nav-primary > li + li {
  5986. margin-top: -1px;
  5987. }
  5988. .nav-stacked.nav-primary > li:first-child {
  5989. margin-top: 0;
  5990. }
  5991. .nav-stacked.nav-primary > li:first-child > a,
  5992. .nav-stacked.nav-primary > li:first-child.nav-heading {
  5993. margin-left: 0;
  5994. border-top-left-radius: 4px;
  5995. border-top-right-radius: 4px;
  5996. }
  5997. .nav-stacked.nav-primary > li:last-child > a {
  5998. border-top-left-radius: 0;
  5999. border-top-right-radius: 0;
  6000. border-bottom-right-radius: 4px;
  6001. border-bottom-left-radius: 4px;
  6002. }
  6003. .nav-stacked.nav-primary > li.nav-heading {
  6004. background-color: #f1f1f1;
  6005. border: 1px solid #ddd;
  6006. }
  6007. .nav-stacked.nav-secondary > li > a {
  6008. border: none;
  6009. border-top-right-radius: 4px;
  6010. border-bottom-right-radius: 4px;
  6011. -webkit-box-shadow: inset 2px 0 0 #f5f5f5;
  6012. box-shadow: inset 2px 0 0 #f5f5f5;
  6013. }
  6014. .nav-stacked.nav-secondary > li > a:hover {
  6015. -webkit-box-shadow: inset 2px 0 0 #e5e5e5;
  6016. box-shadow: inset 2px 0 0 #e5e5e5;
  6017. }
  6018. .nav-stacked.nav-secondary > li + li {
  6019. margin-top: -1px;
  6020. }
  6021. .nav-stacked.nav-secondary > li:first-child {
  6022. margin-top: 0;
  6023. }
  6024. .nav-stacked.nav-secondary > li.active > a,
  6025. .nav-stacked.nav-secondary > li.active > a:hover,
  6026. .nav-stacked.nav-secondary > li.active > a:focus {
  6027. background-color: #f5f5f5;
  6028. -webkit-box-shadow: inset 2px 0 0 #3280fc;
  6029. box-shadow: inset 2px 0 0 #3280fc;
  6030. }
  6031. .nav-stacked.nav-secondary > li.nav-heading {
  6032. border-bottom: 1px solid #ddd;
  6033. }
  6034. .nav-justified {
  6035. width: 100%;
  6036. }
  6037. .nav-justified > li {
  6038. float: none;
  6039. }
  6040. .nav-justified > li > a {
  6041. margin-bottom: 5px;
  6042. text-align: center;
  6043. }
  6044. @media (min-width: 768px) {
  6045. .nav-justified > li {
  6046. display: table-cell;
  6047. width: 1%;
  6048. }
  6049. .nav-justified > li > a {
  6050. margin-bottom: 0;
  6051. }
  6052. .nav-justified.nav-primary > li + li > a {
  6053. border-left: 0;
  6054. }
  6055. }
  6056. .nav-tabs {
  6057. border-bottom: 1px solid #ddd;
  6058. }
  6059. .nav-tabs > li {
  6060. float: left;
  6061. margin-bottom: -1px;
  6062. }
  6063. .nav-tabs > li > a {
  6064. margin-right: 2px;
  6065. line-height: 1.53846154;
  6066. border: 1px solid transparent;
  6067. border-radius: 4px 4px 0 0;
  6068. }
  6069. .nav-tabs > li > a:hover {
  6070. border-color: #e5e5e5 #e5e5e5 #ddd;
  6071. }
  6072. .nav-tabs > li.active > a,
  6073. .nav-tabs > li.active > a:hover,
  6074. .nav-tabs > li.active > a:focus {
  6075. color: #808080;
  6076. cursor: default;
  6077. background-color: #fff;
  6078. border: 1px solid #ddd;
  6079. border-bottom-color: transparent;
  6080. }
  6081. .nav-tabs.nav-justified {
  6082. width: 100%;
  6083. border-bottom: 0;
  6084. }
  6085. .nav-tabs.nav-justified > li {
  6086. float: none;
  6087. }
  6088. .nav-tabs.nav-justified > li > a {
  6089. margin-bottom: 5px;
  6090. text-align: center;
  6091. }
  6092. @media (min-width: 768px) {
  6093. .nav-tabs.nav-justified > li {
  6094. display: table-cell;
  6095. width: 1%;
  6096. }
  6097. .nav-tabs.nav-justified > li > a {
  6098. margin-bottom: 0;
  6099. }
  6100. .nav-tabs.nav-justified.nav-primary > li + li > a {
  6101. border-left: 0;
  6102. }
  6103. }
  6104. .nav-tabs.nav-justified > li > a {
  6105. margin-right: 0;
  6106. border-radius: 4px;
  6107. }
  6108. .nav-tabs.nav-justified > .active > a,
  6109. .nav-tabs.nav-justified > .active > a:hover,
  6110. .nav-tabs.nav-justified > .active > a:focus {
  6111. border: 1px solid #ddd;
  6112. }
  6113. @media (min-width: 768px) {
  6114. .nav-tabs.nav-justified > li > a {
  6115. border-bottom: 1px solid #ddd;
  6116. border-radius: 4px 4px 0 0;
  6117. }
  6118. .nav-tabs.nav-justified > .active > a,
  6119. .nav-tabs.nav-justified > .active > a:hover,
  6120. .nav-tabs.nav-justified > .active > a:focus {
  6121. border-bottom-color: #fff;
  6122. }
  6123. }
  6124. @-moz-document url-prefix() {
  6125. .nav-tabs > li.active > a:focus .nav-tabs > li > a:focus {
  6126. outline: 0;
  6127. }
  6128. }
  6129. .nav-tabs.nav-stacked {
  6130. border-right: 1px solid #ddd;
  6131. border-bottom: none;
  6132. }
  6133. .nav-tabs.nav-stacked > li {
  6134. float: none;
  6135. margin-right: -1px;
  6136. margin-bottom: 0;
  6137. }
  6138. .nav-tabs.nav-stacked > li > a {
  6139. margin-right: 0;
  6140. border-radius: 4px 0 0 4px;
  6141. }
  6142. .nav-tabs.nav-stacked > li.active > a,
  6143. .nav-tabs.nav-stacked > li.active > a:hover,
  6144. .nav-tabs.nav-stacked > li.active > a:focus {
  6145. border: 1px solid #ddd;
  6146. border-right-color: transparent;
  6147. }
  6148. .nav-tabs-justified {
  6149. border-bottom: 0;
  6150. }
  6151. .nav-tabs-justified > li > a {
  6152. margin-right: 0;
  6153. border-radius: 4px;
  6154. }
  6155. .nav-tabs-justified > .active > a,
  6156. .nav-tabs-justified > .active > a:hover,
  6157. .nav-tabs-justified > .active > a:focus {
  6158. border: 1px solid #ddd;
  6159. }
  6160. @media (min-width: 768px) {
  6161. .nav-tabs-justified > li > a {
  6162. border-bottom: 1px solid #ddd;
  6163. border-radius: 4px 4px 0 0;
  6164. }
  6165. .nav-tabs-justified > .active > a,
  6166. .nav-tabs-justified > .active > a:hover,
  6167. .nav-tabs-justified > .active > a:focus {
  6168. border-bottom-color: #fff;
  6169. }
  6170. }
  6171. .tab-content > .tab-pane {
  6172. display: none;
  6173. }
  6174. .tab-content > .active {
  6175. display: block;
  6176. }
  6177. .nav-tabs .dropdown-menu {
  6178. margin-top: -1px;
  6179. border-top-left-radius: 0;
  6180. border-top-right-radius: 0;
  6181. }
  6182. .navbar {
  6183. position: relative;
  6184. min-height: 40px;
  6185. margin-bottom: 20px;
  6186. border: 1px solid transparent;
  6187. }
  6188. @media (min-width: 768px) {
  6189. .navbar {
  6190. border-radius: 4px;
  6191. }
  6192. }
  6193. @media (min-width: 768px) {
  6194. .navbar-header {
  6195. float: left;
  6196. }
  6197. }
  6198. .navbar-collapse {
  6199. padding-right: 10px;
  6200. padding-left: 10px;
  6201. overflow-x: visible;
  6202. -webkit-overflow-scrolling: touch;
  6203. border-top: 1px solid transparent;
  6204. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  6205. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  6206. }
  6207. .navbar-collapse.in {
  6208. overflow-y: auto;
  6209. }
  6210. @media (min-width: 768px) {
  6211. .navbar-collapse {
  6212. width: auto;
  6213. border-top: 0;
  6214. -webkit-box-shadow: none;
  6215. box-shadow: none;
  6216. }
  6217. .navbar-collapse.collapse {
  6218. display: block !important;
  6219. height: auto !important;
  6220. padding-bottom: 0;
  6221. overflow: visible !important;
  6222. }
  6223. .navbar-collapse.in {
  6224. overflow-y: visible;
  6225. }
  6226. .navbar-fixed-top .navbar-collapse,
  6227. .navbar-static-top .navbar-collapse,
  6228. .navbar-fixed-bottom .navbar-collapse {
  6229. padding-right: 0;
  6230. padding-left: 0;
  6231. }
  6232. }
  6233. .navbar-fixed-top .navbar-collapse,
  6234. .navbar-fixed-bottom .navbar-collapse {
  6235. max-height: 340px;
  6236. }
  6237. @media (max-device-width: 480px) and (orientation: landscape) {
  6238. .navbar-fixed-top .navbar-collapse,
  6239. .navbar-fixed-bottom .navbar-collapse {
  6240. max-height: 200px;
  6241. }
  6242. }
  6243. .container > .navbar-header,
  6244. .container-fluid > .navbar-header,
  6245. .container > .navbar-collapse,
  6246. .container-fluid > .navbar-collapse {
  6247. margin-right: -10px;
  6248. margin-left: -10px;
  6249. }
  6250. @media (min-width: 768px) {
  6251. .container > .navbar-header,
  6252. .container-fluid > .navbar-header,
  6253. .container > .navbar-collapse,
  6254. .container-fluid > .navbar-collapse {
  6255. margin-right: 0;
  6256. margin-left: 0;
  6257. }
  6258. }
  6259. .navbar-static-top {
  6260. z-index: 1000;
  6261. border-width: 0 0 1px;
  6262. }
  6263. @media (min-width: 768px) {
  6264. .navbar-static-top {
  6265. border-radius: 0;
  6266. }
  6267. }
  6268. .navbar-fixed-top,
  6269. .navbar-fixed-bottom {
  6270. position: fixed;
  6271. right: 0;
  6272. left: 0;
  6273. z-index: 1030;
  6274. }
  6275. @media (min-width: 768px) {
  6276. .navbar-fixed-top,
  6277. .navbar-fixed-bottom {
  6278. border-radius: 0;
  6279. }
  6280. }
  6281. .navbar-fixed-top {
  6282. top: 0;
  6283. border-width: 0 0 1px;
  6284. }
  6285. .navbar-fixed-bottom {
  6286. bottom: 0;
  6287. margin-bottom: 0;
  6288. border-width: 1px 0 0;
  6289. }
  6290. .navbar-brand {
  6291. float: left;
  6292. height: 40px;
  6293. padding: 10px 15px;
  6294. font-size: 17px;
  6295. line-height: 20px;
  6296. }
  6297. .navbar-brand:hover,
  6298. .navbar-brand:focus {
  6299. text-decoration: none;
  6300. }
  6301. .navbar-brand > img {
  6302. display: block;
  6303. }
  6304. @media (min-width: 768px) {
  6305. .navbar > .container .navbar-brand,
  6306. .navbar > .container-fluid .navbar-brand {
  6307. margin-left: -10px;
  6308. }
  6309. }
  6310. .navbar-toggle {
  6311. position: relative;
  6312. float: right;
  6313. padding: 9px 10px;
  6314. margin-top: 3px;
  6315. margin-right: 3px;
  6316. margin-bottom: 3px;
  6317. background-color: transparent;
  6318. background-image: none;
  6319. border: 1px solid transparent;
  6320. border-radius: 4px;
  6321. }
  6322. .navbar-toggle:focus {
  6323. outline: 0;
  6324. }
  6325. .navbar-toggle .icon-bar {
  6326. display: block;
  6327. width: 22px;
  6328. height: 2px;
  6329. border-radius: 1px;
  6330. }
  6331. .navbar-toggle .icon-bar + .icon-bar {
  6332. margin-top: 4px;
  6333. }
  6334. @media (min-width: 768px) {
  6335. .navbar-toggle {
  6336. display: none;
  6337. }
  6338. }
  6339. .navbar-nav {
  6340. margin: 5px -10px;
  6341. }
  6342. .navbar-nav > li > a {
  6343. padding-top: 10px;
  6344. padding-bottom: 10px;
  6345. line-height: 20px;
  6346. }
  6347. @media (max-width: 767px) {
  6348. .navbar-nav .open .dropdown-menu {
  6349. position: static;
  6350. float: none;
  6351. width: auto;
  6352. margin-top: 0;
  6353. background-color: transparent;
  6354. border: 0;
  6355. -webkit-box-shadow: none;
  6356. box-shadow: none;
  6357. }
  6358. .navbar-nav .open .dropdown-menu > li > a,
  6359. .navbar-nav .open .dropdown-menu .dropdown-header {
  6360. padding: 5px 15px 5px 25px;
  6361. }
  6362. .navbar-nav .open .dropdown-menu > li > a {
  6363. line-height: 20px;
  6364. }
  6365. .navbar-nav .open .dropdown-menu > li > a:hover,
  6366. .navbar-nav .open .dropdown-menu > li > a:focus {
  6367. background-image: none;
  6368. }
  6369. }
  6370. @media (min-width: 768px) {
  6371. .navbar-nav {
  6372. float: left;
  6373. margin: 0;
  6374. }
  6375. .navbar-nav > li {
  6376. float: left;
  6377. }
  6378. .navbar-nav > li > a {
  6379. padding-top: 10px;
  6380. padding-bottom: 10px;
  6381. }
  6382. .navbar-nav.nav-justified > li {
  6383. float: none;
  6384. }
  6385. }
  6386. .navbar-nav > li > .dropdown-menu {
  6387. margin-top: 0;
  6388. border-top-left-radius: 0;
  6389. border-top-right-radius: 0;
  6390. }
  6391. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  6392. border-bottom-right-radius: 0;
  6393. border-bottom-left-radius: 0;
  6394. }
  6395. .navbar-nav.pull-right > li > .dropdown-menu,
  6396. .navbar-nav > li > .dropdown-menu.pull-right {
  6397. right: 0;
  6398. left: auto;
  6399. }
  6400. .navbar-btn {
  6401. margin-top: 4px;
  6402. margin-bottom: 4px;
  6403. }
  6404. .navbar-text {
  6405. float: left;
  6406. margin-top: 10px;
  6407. margin-bottom: 10px;
  6408. }
  6409. @media (min-width: 768px) {
  6410. .navbar-text {
  6411. margin-right: 10px;
  6412. margin-left: 10px;
  6413. }
  6414. }
  6415. @media (min-width: 768px) {
  6416. .navbar-left {
  6417. float: left !important;
  6418. }
  6419. .navbar-right {
  6420. float: right !important;
  6421. margin-right: -10px;
  6422. }
  6423. .navbar-right ~ .navbar-right {
  6424. margin-right: 0;
  6425. }
  6426. }
  6427. .navbar-default {
  6428. background-color: #f7f7f7;
  6429. border-color: #dedede;
  6430. }
  6431. .navbar-default .navbar-brand {
  6432. color: #333;
  6433. }
  6434. .navbar-default .navbar-brand:hover,
  6435. .navbar-default .navbar-brand:focus {
  6436. color: #1a1a1a;
  6437. background-color: transparent;
  6438. }
  6439. .navbar-default .navbar-text {
  6440. color: #333;
  6441. }
  6442. .navbar-default .navbar-nav > li > a {
  6443. color: #333;
  6444. }
  6445. .navbar-default .navbar-nav > li > a:hover,
  6446. .navbar-default .navbar-nav > li > a:focus {
  6447. color: #222;
  6448. background-color: #e5e5e5;
  6449. }
  6450. .navbar-default .navbar-nav > .active > a,
  6451. .navbar-default .navbar-nav > .active > a:hover,
  6452. .navbar-default .navbar-nav > .active > a:focus {
  6453. color: #555;
  6454. background-color: #e7e7e7;
  6455. }
  6456. .navbar-default .navbar-nav > .disabled > a,
  6457. .navbar-default .navbar-nav > .disabled > a:hover,
  6458. .navbar-default .navbar-nav > .disabled > a:focus {
  6459. color: #ccc;
  6460. background-color: transparent;
  6461. }
  6462. .navbar-default .navbar-toggle:hover,
  6463. .navbar-default .navbar-toggle:focus {
  6464. background-color: #ddd;
  6465. }
  6466. .navbar-default .navbar-toggle .icon-bar {
  6467. background-color: #808080;
  6468. }
  6469. .navbar-default .navbar-collapse,
  6470. .navbar-default .navbar-form {
  6471. border-color: #dedede;
  6472. }
  6473. .navbar-default .navbar-nav > .open > a,
  6474. .navbar-default .navbar-nav > .open > a:hover,
  6475. .navbar-default .navbar-nav > .open > a:focus {
  6476. color: #555;
  6477. background-color: #e7e7e7;
  6478. }
  6479. @media (max-width: 767px) {
  6480. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  6481. color: #333;
  6482. }
  6483. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  6484. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  6485. color: #222;
  6486. background-color: #e5e5e5;
  6487. }
  6488. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  6489. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  6490. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  6491. color: #555;
  6492. background-color: #e7e7e7;
  6493. }
  6494. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  6495. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  6496. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  6497. color: #ccc;
  6498. background-color: transparent;
  6499. }
  6500. }
  6501. .navbar-default .navbar-link {
  6502. color: #333;
  6503. }
  6504. .navbar-default .navbar-link:hover {
  6505. color: #222;
  6506. }
  6507. .navbar-default .btn-link {
  6508. color: #333;
  6509. }
  6510. .navbar-default .btn-link:hover,
  6511. .navbar-default .btn-link:focus {
  6512. color: #222;
  6513. }
  6514. .navbar-default .btn-link[disabled]:hover,
  6515. fieldset[disabled] .navbar-default .btn-link:hover,
  6516. .navbar-default .btn-link[disabled]:focus,
  6517. fieldset[disabled] .navbar-default .btn-link:focus {
  6518. color: #ccc;
  6519. }
  6520. .navbar-inverse {
  6521. background-color: #145ccd;
  6522. border-color: #10479f;
  6523. }
  6524. .navbar-inverse .navbar-brand {
  6525. color: #ddd;
  6526. }
  6527. .navbar-inverse .navbar-brand:hover,
  6528. .navbar-inverse .navbar-brand:focus {
  6529. color: #fff;
  6530. background-color: transparent;
  6531. }
  6532. .navbar-inverse .navbar-text {
  6533. color: #ddd;
  6534. }
  6535. .navbar-inverse .navbar-nav > li > a {
  6536. color: #ddd;
  6537. }
  6538. .navbar-inverse .navbar-nav > li > a:hover,
  6539. .navbar-inverse .navbar-nav > li > a:focus {
  6540. color: #fff;
  6541. background-color: #1868e8;
  6542. }
  6543. .navbar-inverse .navbar-nav > .active > a,
  6544. .navbar-inverse .navbar-nav > .active > a:hover,
  6545. .navbar-inverse .navbar-nav > .active > a:focus {
  6546. color: #fff;
  6547. background-color: #2a74ea;
  6548. }
  6549. .navbar-inverse .navbar-nav > .disabled > a,
  6550. .navbar-inverse .navbar-nav > .disabled > a:hover,
  6551. .navbar-inverse .navbar-nav > .disabled > a:focus {
  6552. color: #444;
  6553. background-color: transparent;
  6554. }
  6555. .navbar-inverse .navbar-toggle:hover,
  6556. .navbar-inverse .navbar-toggle:focus {
  6557. background-color: #1251b6;
  6558. }
  6559. .navbar-inverse .navbar-toggle .icon-bar {
  6560. background-color: #fff;
  6561. }
  6562. .navbar-inverse .navbar-collapse,
  6563. .navbar-inverse .navbar-form {
  6564. border-color: #114dad;
  6565. }
  6566. .navbar-inverse .navbar-nav > .open > a,
  6567. .navbar-inverse .navbar-nav > .open > a:hover,
  6568. .navbar-inverse .navbar-nav > .open > a:focus {
  6569. color: #fff;
  6570. background-color: #2a74ea;
  6571. }
  6572. @media (max-width: 767px) {
  6573. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  6574. border-color: #10479f;
  6575. }
  6576. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  6577. background-color: #10479f;
  6578. }
  6579. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  6580. color: #ddd;
  6581. }
  6582. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  6583. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  6584. color: #fff;
  6585. background-color: #1868e8;
  6586. }
  6587. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  6588. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  6589. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  6590. color: #fff;
  6591. background-color: #2a74ea;
  6592. }
  6593. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  6594. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  6595. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  6596. color: #444;
  6597. background-color: transparent;
  6598. }
  6599. }
  6600. .navbar-inverse .navbar-link {
  6601. color: #ddd;
  6602. }
  6603. .navbar-inverse .navbar-link:hover {
  6604. color: #fff;
  6605. }
  6606. .navbar-form {
  6607. padding: 10px 10px;
  6608. margin-top: 4px;
  6609. margin-right: -10px;
  6610. margin-bottom: 4px;
  6611. margin-left: -10px;
  6612. border-top: 1px solid transparent;
  6613. border-bottom: 1px solid transparent;
  6614. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  6615. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  6616. }
  6617. @media (min-width: 768px) {
  6618. .navbar-form .form-group {
  6619. display: inline-block;
  6620. margin-bottom: 0;
  6621. vertical-align: middle;
  6622. }
  6623. .navbar-form .form-control {
  6624. display: inline-block;
  6625. width: auto;
  6626. vertical-align: middle;
  6627. }
  6628. .navbar-form .radio,
  6629. .navbar-form .checkbox {
  6630. display: inline-block;
  6631. padding-left: 0;
  6632. margin-top: 0;
  6633. margin-bottom: 0;
  6634. }
  6635. .navbar-form .radio input[type="radio"],
  6636. .navbar-form .checkbox input[type="checkbox"] {
  6637. float: none;
  6638. margin-left: 0;
  6639. }
  6640. }
  6641. @media (max-width: 767px) {
  6642. .navbar-form .form-group {
  6643. margin-bottom: 5px;
  6644. }
  6645. .navbar-form .form-group:last-child {
  6646. margin-bottom: 0;
  6647. }
  6648. }
  6649. @media (min-width: 768px) {
  6650. .navbar-form {
  6651. width: auto;
  6652. padding-top: 0;
  6653. padding-bottom: 0;
  6654. margin-right: 0;
  6655. margin-left: 0;
  6656. border: 0;
  6657. -webkit-box-shadow: none;
  6658. box-shadow: none;
  6659. }
  6660. }
  6661. .fade {
  6662. opacity: 0;
  6663. -webkit-transition: opacity .15s linear;
  6664. -o-transition: opacity .15s linear;
  6665. transition: opacity .15s linear;
  6666. }
  6667. .fade.in {
  6668. opacity: 1;
  6669. }
  6670. .scale {
  6671. -webkit-transition: all .15s ease;
  6672. -o-transition: all .15s ease;
  6673. transition: all .15s ease;
  6674. -webkit-transform: scale(.8);
  6675. -ms-transform: scale(.8);
  6676. -o-transform: scale(.8);
  6677. transform: scale(.8);
  6678. }
  6679. .scale.in {
  6680. -webkit-transform: scale(1);
  6681. -ms-transform: scale(1);
  6682. -o-transform: scale(1);
  6683. transform: scale(1);
  6684. }
  6685. .collapse {
  6686. display: none;
  6687. }
  6688. .collapse.in {
  6689. display: block;
  6690. }
  6691. tr.collapse.in {
  6692. display: table-row;
  6693. }
  6694. tbody.collapse.in {
  6695. display: table-row-group;
  6696. }
  6697. .collapsing {
  6698. position: relative;
  6699. height: 0;
  6700. overflow: hidden;
  6701. -webkit-transition: height .35s ease;
  6702. -o-transition: height .35s ease;
  6703. transition: height .35s ease;
  6704. }
  6705. .modal-open {
  6706. overflow: hidden;
  6707. }
  6708. .modal {
  6709. position: fixed;
  6710. top: 0;
  6711. right: 0;
  6712. bottom: 0;
  6713. left: 0;
  6714. z-index: 1050;
  6715. display: none;
  6716. overflow: hidden;
  6717. -webkit-overflow-scrolling: touch;
  6718. outline: 0;
  6719. }
  6720. .modal.fade .modal-dialog {
  6721. -webkit-transition: -webkit-transform .3s ease-out;
  6722. -o-transition: -o-transform .3s ease-out;
  6723. transition: -webkit-transform .3s ease-out;
  6724. transition: transform .3s ease-out;
  6725. transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
  6726. -webkit-transform: translate(0, -25%);
  6727. -ms-transform: translate(0, -25%);
  6728. -o-transform: translate(0, -25%);
  6729. transform: translate(0, -25%);
  6730. }
  6731. .modal.in .modal-dialog {
  6732. -webkit-transform: translate(0, 0);
  6733. -ms-transform: translate(0, 0);
  6734. -o-transform: translate(0, 0);
  6735. transform: translate(0, 0);
  6736. }
  6737. .modal > .loader {
  6738. display: none;
  6739. }
  6740. .modal.modal-loading .modal-dialog {
  6741. opacity: 0;
  6742. }
  6743. .modal.modal-loading .loader {
  6744. position: absolute;
  6745. top: 35%;
  6746. left: 50%;
  6747. display: block;
  6748. width: 80px;
  6749. margin-left: -40px;
  6750. font-size: 56px;
  6751. color: #fff;
  6752. text-align: center;
  6753. }
  6754. .modal-open .modal {
  6755. overflow-x: hidden;
  6756. overflow-y: auto;
  6757. }
  6758. .modal-iframe .modal-body > iframe {
  6759. border-radius: 0 0 6px 6px;
  6760. }
  6761. .modal-dialog {
  6762. position: relative;
  6763. width: auto;
  6764. background-color: #fff;
  6765. -webkit-background-clip: padding-box;
  6766. background-clip: padding-box;
  6767. border: 1px solid #999;
  6768. border: 1px solid rgba(0, 0, 0, .2);
  6769. border-radius: 6px;
  6770. outline: 0;
  6771. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  6772. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  6773. }
  6774. .modal-dialog.modal-moveable {
  6775. position: absolute;
  6776. margin: 0;
  6777. }
  6778. .modal-dialog.modal-moveable .modal-header {
  6779. cursor: move;
  6780. }
  6781. .modal-backdrop {
  6782. position: fixed;
  6783. top: 0;
  6784. right: 0;
  6785. bottom: 0;
  6786. left: 0;
  6787. z-index: 1040;
  6788. background-color: #000;
  6789. }
  6790. .modal-backdrop.fade {
  6791. filter: alpha(opacity=0);
  6792. opacity: 0;
  6793. }
  6794. .modal-backdrop.in {
  6795. filter: alpha(opacity=50);
  6796. opacity: .5;
  6797. }
  6798. .modal-header {
  6799. min-height: 16.53846154px;
  6800. padding: 15px;
  6801. border-bottom: 1px solid #e5e5e5;
  6802. }
  6803. .modal-header .close {
  6804. margin-top: -2px;
  6805. }
  6806. .modal-title {
  6807. margin: 0;
  6808. line-height: 1.53846154;
  6809. }
  6810. .modal-body {
  6811. position: relative;
  6812. padding: 15px;
  6813. }
  6814. .modal-footer {
  6815. padding: 15px;
  6816. text-align: right;
  6817. border-top: 1px solid #e5e5e5;
  6818. }
  6819. .modal-footer .btn + .btn {
  6820. margin-bottom: 0;
  6821. margin-left: 5px;
  6822. }
  6823. .modal-footer .btn-group .btn + .btn,
  6824. .modal-footer .btn-group-vertical .btn + .btn {
  6825. margin-left: -1px;
  6826. }
  6827. .modal-footer .btn-block + .btn-block {
  6828. margin-left: 0;
  6829. }
  6830. .modal-scrollbar-measure {
  6831. position: absolute;
  6832. top: -9999px;
  6833. width: 50px;
  6834. height: 50px;
  6835. overflow: scroll;
  6836. }
  6837. @media (min-width: 768px) {
  6838. .modal-dialog {
  6839. width: 600px;
  6840. margin: 30px auto;
  6841. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  6842. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  6843. }
  6844. .modal-sm {
  6845. width: 300px;
  6846. }
  6847. }
  6848. @media (min-width: 992px) {
  6849. .modal-lg {
  6850. width: 900px;
  6851. }
  6852. }
  6853. /* full screen modal */
  6854. .modal-fullscreen {
  6855. position: relative;
  6856. width: 100%!important;
  6857. height: 100%!important;
  6858. margin: 0;
  6859. border-radius: 0;
  6860. }
  6861. .modal-fullscreen .modal-body {
  6862. position: absolute;
  6863. top: 52px;
  6864. right: 0;
  6865. bottom: 0;
  6866. left: 0;
  6867. overflow-y: auto;
  6868. }
  6869. .tooltip {
  6870. position: absolute;
  6871. z-index: 1030;
  6872. display: block;
  6873. font-size: 12px;
  6874. line-height: 1.4;
  6875. visibility: visible;
  6876. filter: alpha(opacity=0);
  6877. opacity: 0;
  6878. }
  6879. .tooltip.in {
  6880. filter: alpha(opacity=100);
  6881. opacity: 1;
  6882. }
  6883. .tooltip.top {
  6884. padding: 5px 0;
  6885. margin-top: -3px;
  6886. }
  6887. .tooltip.right {
  6888. padding: 0 5px;
  6889. margin-left: 3px;
  6890. }
  6891. .tooltip.bottom {
  6892. padding: 5px 0;
  6893. margin-top: 3px;
  6894. }
  6895. .tooltip.left {
  6896. padding: 0 5px;
  6897. margin-left: -3px;
  6898. }
  6899. .tooltip-inner {
  6900. max-width: 200px;
  6901. padding: 3px 8px;
  6902. color: #fff;
  6903. text-align: center;
  6904. text-decoration: none;
  6905. background-color: #353535;
  6906. border-radius: 4px;
  6907. }
  6908. .tooltip-arrow {
  6909. position: absolute;
  6910. width: 0;
  6911. height: 0;
  6912. border-color: transparent;
  6913. border-style: solid;
  6914. }
  6915. .tooltip.top .tooltip-arrow {
  6916. bottom: 0;
  6917. left: 50%;
  6918. margin-left: -5px;
  6919. border-width: 5px 5px 0;
  6920. border-top-color: #353535;
  6921. }
  6922. .tooltip.top-left .tooltip-arrow {
  6923. bottom: 0;
  6924. left: 5px;
  6925. border-width: 5px 5px 0;
  6926. border-top-color: #353535;
  6927. }
  6928. .tooltip.top-right .tooltip-arrow {
  6929. right: 5px;
  6930. bottom: 0;
  6931. border-width: 5px 5px 0;
  6932. border-top-color: #353535;
  6933. }
  6934. .tooltip.right .tooltip-arrow {
  6935. top: 50%;
  6936. left: 0;
  6937. margin-top: -5px;
  6938. border-width: 5px 5px 5px 0;
  6939. border-right-color: #353535;
  6940. }
  6941. .tooltip.left .tooltip-arrow {
  6942. top: 50%;
  6943. right: 0;
  6944. margin-top: -5px;
  6945. border-width: 5px 0 5px 5px;
  6946. border-left-color: #353535;
  6947. }
  6948. .tooltip.bottom .tooltip-arrow {
  6949. top: 0;
  6950. left: 50%;
  6951. margin-left: -5px;
  6952. border-width: 0 5px 5px;
  6953. border-bottom-color: #353535;
  6954. }
  6955. .tooltip.bottom-left .tooltip-arrow {
  6956. top: 0;
  6957. left: 5px;
  6958. border-width: 0 5px 5px;
  6959. border-bottom-color: #353535;
  6960. }
  6961. .tooltip.bottom-right .tooltip-arrow {
  6962. top: 0;
  6963. right: 5px;
  6964. border-width: 0 5px 5px;
  6965. border-bottom-color: #353535;
  6966. }
  6967. .tooltip-primary .tooltip-inner {
  6968. background-color: #3280fc;
  6969. }
  6970. .tooltip-primary.tooltip.top .tooltip-arrow {
  6971. border-top-color: #3280fc;
  6972. }
  6973. .tooltip-primary.tooltip.top-left .tooltip-arrow {
  6974. border-top-color: #3280fc;
  6975. }
  6976. .tooltip-primary.tooltip.top-right .tooltip-arrow {
  6977. border-top-color: #3280fc;
  6978. }
  6979. .tooltip-primary.tooltip.right .tooltip-arrow {
  6980. border-right-color: #3280fc;
  6981. }
  6982. .tooltip-primary.tooltip.left .tooltip-arrow {
  6983. border-left-color: #3280fc;
  6984. }
  6985. .tooltip-primary.tooltip.bottom .tooltip-arrow {
  6986. border-bottom-color: #3280fc;
  6987. }
  6988. .tooltip-primary.tooltip.bottom-left .tooltip-arrow {
  6989. border-bottom-color: #3280fc;
  6990. }
  6991. .tooltip-primary.tooltip.bottom-right .tooltip-arrow {
  6992. border-bottom-color: #3280fc;
  6993. }
  6994. .tooltip-success .tooltip-inner {
  6995. background-color: #38b03f;
  6996. }
  6997. .tooltip-success.tooltip.top .tooltip-arrow {
  6998. border-top-color: #38b03f;
  6999. }
  7000. .tooltip-success.tooltip.top-left .tooltip-arrow {
  7001. border-top-color: #38b03f;
  7002. }
  7003. .tooltip-success.tooltip.top-right .tooltip-arrow {
  7004. border-top-color: #38b03f;
  7005. }
  7006. .tooltip-success.tooltip.right .tooltip-arrow {
  7007. border-right-color: #38b03f;
  7008. }
  7009. .tooltip-success.tooltip.left .tooltip-arrow {
  7010. border-left-color: #38b03f;
  7011. }
  7012. .tooltip-success.tooltip.bottom .tooltip-arrow {
  7013. border-bottom-color: #38b03f;
  7014. }
  7015. .tooltip-success.tooltip.bottom-left .tooltip-arrow {
  7016. border-bottom-color: #38b03f;
  7017. }
  7018. .tooltip-success.tooltip.bottom-right .tooltip-arrow {
  7019. border-bottom-color: #38b03f;
  7020. }
  7021. .tooltip-info .tooltip-inner {
  7022. background-color: #03b8cf;
  7023. }
  7024. .tooltip-info.tooltip.top .tooltip-arrow {
  7025. border-top-color: #03b8cf;
  7026. }
  7027. .tooltip-info.tooltip.top-left .tooltip-arrow {
  7028. border-top-color: #03b8cf;
  7029. }
  7030. .tooltip-info.tooltip.top-right .tooltip-arrow {
  7031. border-top-color: #03b8cf;
  7032. }
  7033. .tooltip-info.tooltip.right .tooltip-arrow {
  7034. border-right-color: #03b8cf;
  7035. }
  7036. .tooltip-info.tooltip.left .tooltip-arrow {
  7037. border-left-color: #03b8cf;
  7038. }
  7039. .tooltip-info.tooltip.bottom .tooltip-arrow {
  7040. border-bottom-color: #03b8cf;
  7041. }
  7042. .tooltip-info.tooltip.bottom-left .tooltip-arrow {
  7043. border-bottom-color: #03b8cf;
  7044. }
  7045. .tooltip-info.tooltip.bottom-right .tooltip-arrow {
  7046. border-bottom-color: #03b8cf;
  7047. }
  7048. .tooltip-warning .tooltip-inner {
  7049. background-color: #f1a325;
  7050. }
  7051. .tooltip-warning.tooltip.top .tooltip-arrow {
  7052. border-top-color: #f1a325;
  7053. }
  7054. .tooltip-warning.tooltip.top-left .tooltip-arrow {
  7055. border-top-color: #f1a325;
  7056. }
  7057. .tooltip-warning.tooltip.top-right .tooltip-arrow {
  7058. border-top-color: #f1a325;
  7059. }
  7060. .tooltip-warning.tooltip.right .tooltip-arrow {
  7061. border-right-color: #f1a325;
  7062. }
  7063. .tooltip-warning.tooltip.left .tooltip-arrow {
  7064. border-left-color: #f1a325;
  7065. }
  7066. .tooltip-warning.tooltip.bottom .tooltip-arrow {
  7067. border-bottom-color: #f1a325;
  7068. }
  7069. .tooltip-warning.tooltip.bottom-left .tooltip-arrow {
  7070. border-bottom-color: #f1a325;
  7071. }
  7072. .tooltip-warning.tooltip.bottom-right .tooltip-arrow {
  7073. border-bottom-color: #f1a325;
  7074. }
  7075. .tooltip-danger .tooltip-inner {
  7076. background-color: #ea644a;
  7077. }
  7078. .tooltip-danger.tooltip.top .tooltip-arrow {
  7079. border-top-color: #ea644a;
  7080. }
  7081. .tooltip-danger.tooltip.top-left .tooltip-arrow {
  7082. border-top-color: #ea644a;
  7083. }
  7084. .tooltip-danger.tooltip.top-right .tooltip-arrow {
  7085. border-top-color: #ea644a;
  7086. }
  7087. .tooltip-danger.tooltip.right .tooltip-arrow {
  7088. border-right-color: #ea644a;
  7089. }
  7090. .tooltip-danger.tooltip.left .tooltip-arrow {
  7091. border-left-color: #ea644a;
  7092. }
  7093. .tooltip-danger.tooltip.bottom .tooltip-arrow {
  7094. border-bottom-color: #ea644a;
  7095. }
  7096. .tooltip-danger.tooltip.bottom-left .tooltip-arrow {
  7097. border-bottom-color: #ea644a;
  7098. }
  7099. .tooltip-danger.tooltip.bottom-right .tooltip-arrow {
  7100. border-bottom-color: #ea644a;
  7101. }
  7102. .popover {
  7103. position: absolute;
  7104. top: 0;
  7105. left: 0;
  7106. z-index: 1010;
  7107. display: none;
  7108. max-width: 300px;
  7109. text-align: left;
  7110. white-space: normal;
  7111. background-color: #fff;
  7112. -webkit-background-clip: padding-box;
  7113. background-clip: padding-box;
  7114. border: 1px solid #ccc;
  7115. border: 1px solid rgba(0, 0, 0, .2);
  7116. border-radius: 4px;
  7117. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  7118. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  7119. }
  7120. .popover.top {
  7121. margin-top: -10px;
  7122. }
  7123. .popover.right {
  7124. margin-left: 10px;
  7125. }
  7126. .popover.bottom {
  7127. margin-top: 10px;
  7128. }
  7129. .popover.left {
  7130. margin-left: -10px;
  7131. }
  7132. .popover.no-arrow.top {
  7133. margin-top: 0;
  7134. }
  7135. .popover.no-arrow.right {
  7136. margin-left: 0;
  7137. }
  7138. .popover.no-arrow.bottom {
  7139. margin-top: 0;
  7140. }
  7141. .popover.no-arrow.left {
  7142. margin-left: 0;
  7143. }
  7144. .popover-title {
  7145. padding: 8px 14px;
  7146. margin: 0;
  7147. font-size: 13px;
  7148. font-weight: normal;
  7149. line-height: 18px;
  7150. background-color: #f7f7f7;
  7151. border-bottom: 1px solid #ebebeb;
  7152. border-radius: 4px 4px 0 0;
  7153. }
  7154. .popover-content {
  7155. padding: 9px 14px;
  7156. }
  7157. .popover .arrow,
  7158. .popover .arrow:after {
  7159. position: absolute;
  7160. display: block;
  7161. width: 0;
  7162. height: 0;
  7163. border-color: transparent;
  7164. border-style: solid;
  7165. }
  7166. .popover .arrow {
  7167. border-width: 11px;
  7168. }
  7169. .popover .arrow:after {
  7170. content: "";
  7171. border-width: 10px;
  7172. }
  7173. .popover.top .arrow {
  7174. bottom: -11px;
  7175. left: 50%;
  7176. margin-left: -11px;
  7177. border-top-color: #999;
  7178. border-top-color: rgba(0, 0, 0, .25);
  7179. border-bottom-width: 0;
  7180. }
  7181. .popover.top .arrow:after {
  7182. bottom: 1px;
  7183. margin-left: -10px;
  7184. content: " ";
  7185. border-top-color: #fff;
  7186. border-bottom-width: 0;
  7187. }
  7188. .popover.right .arrow {
  7189. top: 50%;
  7190. left: -11px;
  7191. margin-top: -11px;
  7192. border-right-color: #999;
  7193. border-right-color: rgba(0, 0, 0, .25);
  7194. border-left-width: 0;
  7195. }
  7196. .popover.right .arrow:after {
  7197. bottom: -10px;
  7198. left: 1px;
  7199. content: " ";
  7200. border-right-color: #fff;
  7201. border-left-width: 0;
  7202. }
  7203. .popover.bottom .arrow {
  7204. top: -11px;
  7205. left: 50%;
  7206. margin-left: -11px;
  7207. border-top-width: 0;
  7208. border-bottom-color: #999;
  7209. border-bottom-color: rgba(0, 0, 0, .25);
  7210. }
  7211. .popover.bottom .arrow:after {
  7212. top: 1px;
  7213. margin-left: -10px;
  7214. content: " ";
  7215. border-top-width: 0;
  7216. border-bottom-color: #fff;
  7217. }
  7218. .popover.left .arrow {
  7219. top: 50%;
  7220. right: -11px;
  7221. margin-top: -11px;
  7222. border-right-width: 0;
  7223. border-left-color: #999;
  7224. border-left-color: rgba(0, 0, 0, .25);
  7225. }
  7226. .popover.left .arrow:after {
  7227. right: 1px;
  7228. bottom: -10px;
  7229. content: " ";
  7230. border-right-width: 0;
  7231. border-left-color: #fff;
  7232. }
  7233. .popover-primary {
  7234. border-color: #3280fc;
  7235. }
  7236. .popover-primary .popover-title {
  7237. color: #fff;
  7238. background-color: #3280fc;
  7239. }
  7240. .popover-primary.popover.top .arrow {
  7241. border-top-color: #3280fc;
  7242. }
  7243. .popover-primary.popover.right .arrow {
  7244. border-right-color: #3280fc;
  7245. }
  7246. .popover-primary.popover.left .arrow {
  7247. border-left-color: #3280fc;
  7248. }
  7249. .popover-primary.popover.bottom .arrow,
  7250. .popover-primary.popover.bottom .arrow:after {
  7251. border-bottom-color: #3280fc;
  7252. }
  7253. .popover-success {
  7254. border-color: #38b03f;
  7255. }
  7256. .popover-success .popover-title {
  7257. color: #fff;
  7258. background-color: #38b03f;
  7259. }
  7260. .popover-success.popover.top .arrow {
  7261. border-top-color: #38b03f;
  7262. }
  7263. .popover-success.popover.right .arrow {
  7264. border-right-color: #38b03f;
  7265. }
  7266. .popover-success.popover.left .arrow {
  7267. border-left-color: #38b03f;
  7268. }
  7269. .popover-success.popover.bottom .arrow,
  7270. .popover-success.popover.bottom .arrow:after {
  7271. border-bottom-color: #38b03f;
  7272. }
  7273. .popover-info {
  7274. border-color: #03b8cf;
  7275. }
  7276. .popover-info .popover-title {
  7277. color: #fff;
  7278. background-color: #03b8cf;
  7279. }
  7280. .popover-info.popover.top .arrow {
  7281. border-top-color: #03b8cf;
  7282. }
  7283. .popover-info.popover.right .arrow {
  7284. border-right-color: #03b8cf;
  7285. }
  7286. .popover-info.popover.left .arrow {
  7287. border-left-color: #03b8cf;
  7288. }
  7289. .popover-info.popover.bottom .arrow,
  7290. .popover-info.popover.bottom .arrow:after {
  7291. border-bottom-color: #03b8cf;
  7292. }
  7293. .popover-warning {
  7294. border-color: #f1a325;
  7295. }
  7296. .popover-warning .popover-title {
  7297. color: #fff;
  7298. background-color: #f1a325;
  7299. }
  7300. .popover-warning.popover.top .arrow {
  7301. border-top-color: #f1a325;
  7302. }
  7303. .popover-warning.popover.right .arrow {
  7304. border-right-color: #f1a325;
  7305. }
  7306. .popover-warning.popover.left .arrow {
  7307. border-left-color: #f1a325;
  7308. }
  7309. .popover-warning.popover.bottom .arrow,
  7310. .popover-warning.popover.bottom .arrow:after {
  7311. border-bottom-color: #f1a325;
  7312. }
  7313. .popover-danger {
  7314. border-color: #ea644a;
  7315. }
  7316. .popover-danger .popover-title {
  7317. color: #fff;
  7318. background-color: #ea644a;
  7319. }
  7320. .popover-danger.popover.top .arrow {
  7321. border-top-color: #ea644a;
  7322. }
  7323. .popover-danger.popover.right .arrow {
  7324. border-right-color: #ea644a;
  7325. }
  7326. .popover-danger.popover.left .arrow {
  7327. border-left-color: #ea644a;
  7328. }
  7329. .popover-danger.popover.bottom .arrow,
  7330. .popover-danger.popover.bottom .arrow:after {
  7331. border-bottom-color: #ea644a;
  7332. }
  7333. .caret {
  7334. display: inline-block;
  7335. width: 0;
  7336. height: 0;
  7337. margin-bottom: 2px;
  7338. margin-left: 2px;
  7339. vertical-align: middle;
  7340. border-top: 4px dashed;
  7341. border-top: 4px solid \9;
  7342. border-right: 4px solid transparent;
  7343. border-left: 4px solid transparent;
  7344. }
  7345. .dropup,
  7346. .dropdown {
  7347. position: relative;
  7348. }
  7349. .dropdown-toggle:focus {
  7350. outline: 0;
  7351. }
  7352. .dropdown-menu {
  7353. position: absolute;
  7354. top: 100%;
  7355. left: 0;
  7356. z-index: 1000;
  7357. display: none;
  7358. float: left;
  7359. min-width: 160px;
  7360. padding: 5px 0;
  7361. margin: 2px 0 0;
  7362. font-size: 13px;
  7363. list-style: none;
  7364. background-color: #fff;
  7365. -webkit-background-clip: padding-box;
  7366. background-clip: padding-box;
  7367. border: 1px solid #cbcbcb;
  7368. border: 1px solid rgba(0, 0, 0, .15);
  7369. border-radius: 4px;
  7370. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  7371. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  7372. }
  7373. .dropdown-menu.pull-right {
  7374. right: 0;
  7375. left: auto;
  7376. }
  7377. .dropdown-menu .divider {
  7378. height: 1px;
  7379. margin: 9px 0;
  7380. overflow: hidden;
  7381. background-color: #e5e5e5;
  7382. }
  7383. .dropdown-menu > li > a {
  7384. display: block;
  7385. padding: 3px 20px;
  7386. clear: both;
  7387. font-weight: normal;
  7388. line-height: 1.53846154;
  7389. color: #353535;
  7390. white-space: nowrap;
  7391. }
  7392. .dropdown-menu > li > a:hover,
  7393. .dropdown-menu > li > a:focus {
  7394. color: #fff;
  7395. text-decoration: none;
  7396. background-color: #3280fc;
  7397. }
  7398. .dropdown-menu > .active > a,
  7399. .dropdown-menu > .active > a:hover,
  7400. .dropdown-menu > .active > a:focus {
  7401. color: #fff;
  7402. text-decoration: none;
  7403. background-color: #3280fc;
  7404. outline: 0;
  7405. }
  7406. .dropdown-menu > .disabled > a,
  7407. .dropdown-menu > .disabled > a:hover,
  7408. .dropdown-menu > .disabled > a:focus {
  7409. color: #ddd;
  7410. }
  7411. .dropdown-menu > .disabled > a:hover,
  7412. .dropdown-menu > .disabled > a:focus {
  7413. text-decoration: none;
  7414. cursor: not-allowed;
  7415. background-color: transparent;
  7416. background-image: none;
  7417. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  7418. }
  7419. .dropdown-hover .dropdown-menu {
  7420. margin: -1px 0;
  7421. }
  7422. .dropdown-hover:hover > .dropdown-menu,
  7423. .open > .dropdown-menu {
  7424. display: block;
  7425. }
  7426. .dropdown-hover:hover > a,
  7427. .open > a {
  7428. outline: 0;
  7429. }
  7430. .dropdown-header {
  7431. display: block;
  7432. padding: 3px 20px;
  7433. font-size: 12px;
  7434. font-weight: bold;
  7435. line-height: 1.53846154;
  7436. color: #808080;
  7437. }
  7438. .dropdown-backdrop {
  7439. position: fixed;
  7440. top: 0;
  7441. right: 0;
  7442. bottom: 0;
  7443. left: 0;
  7444. z-index: 990;
  7445. }
  7446. .pull-right > .dropdown-menu {
  7447. right: 0;
  7448. left: auto;
  7449. }
  7450. .dropup .caret,
  7451. .navbar-fixed-bottom .dropdown .caret {
  7452. content: "";
  7453. border-top: 0 dotted;
  7454. border-bottom: 4px solid;
  7455. }
  7456. .dropup .dropdown-menu,
  7457. .navbar-fixed-bottom .dropdown .dropdown-menu {
  7458. top: auto;
  7459. bottom: 100%;
  7460. margin-bottom: 1px;
  7461. }
  7462. @media (min-width: 768px) {
  7463. .navbar-right .dropdown-menu {
  7464. right: 0;
  7465. left: auto;
  7466. }
  7467. }
  7468. .dropdown-submenu {
  7469. position: relative;
  7470. }
  7471. .dropdown-submenu > .dropdown-menu {
  7472. top: 0;
  7473. left: 100%;
  7474. margin-top: -6px;
  7475. margin-left: -1px;
  7476. border-radius: 4px;
  7477. }
  7478. .dropdown-submenu.open > .dropdown-menu,
  7479. .dropdown-submenu:hover > .dropdown-menu {
  7480. display: block;
  7481. }
  7482. .dropup .dropdown-submenu > .dropdown-menu {
  7483. top: auto;
  7484. bottom: 0;
  7485. margin-top: 0;
  7486. margin-bottom: -2px;
  7487. border-radius: 4px;
  7488. }
  7489. .dropdown-submenu > a:after {
  7490. display: block;
  7491. float: right;
  7492. width: 0;
  7493. height: 0;
  7494. margin-top: 5px;
  7495. margin-right: -10px;
  7496. content: " ";
  7497. border-color: transparent;
  7498. border-style: solid;
  7499. border-width: 5px 0 5px 5px;
  7500. border-left-color: #ccc;
  7501. }
  7502. .dropdown-submenu:hover > a:after {
  7503. border-left-color: #fff;
  7504. }
  7505. .dropdown-submenu > a {
  7506. min-width: 160px;
  7507. }
  7508. .dropdown-submenu > .dropdown-menu.pull-left {
  7509. left: -100%;
  7510. }
  7511. .dropdown-submenu:hover > a,
  7512. .dropdown-submenu:focus > a {
  7513. color: #fff;
  7514. text-decoration: none;
  7515. background-color: #3280fc;
  7516. }
  7517. .carousel {
  7518. position: relative;
  7519. }
  7520. .carousel-inner {
  7521. position: relative;
  7522. width: 100%;
  7523. overflow: hidden;
  7524. }
  7525. .carousel-inner > .item {
  7526. position: relative;
  7527. display: none;
  7528. -webkit-transition: .6s ease-in-out left;
  7529. -o-transition: .6s ease-in-out left;
  7530. transition: .6s ease-in-out left;
  7531. }
  7532. .carousel-inner > .item > img,
  7533. .carousel-inner > .item > a > img {
  7534. line-height: 1;
  7535. }
  7536. .carousel-inner > .active,
  7537. .carousel-inner > .next,
  7538. .carousel-inner > .prev {
  7539. display: block;
  7540. }
  7541. .carousel-inner > .active {
  7542. left: 0;
  7543. }
  7544. .carousel-inner > .next,
  7545. .carousel-inner > .prev {
  7546. position: absolute;
  7547. top: 0;
  7548. width: 100%;
  7549. }
  7550. .carousel-inner > .next {
  7551. left: 100%;
  7552. }
  7553. .carousel-inner > .prev {
  7554. left: -100%;
  7555. }
  7556. .carousel-inner > .next.left,
  7557. .carousel-inner > .prev.right {
  7558. left: 0;
  7559. }
  7560. .carousel-inner > .active.left {
  7561. left: -100%;
  7562. }
  7563. .carousel-inner > .active.right {
  7564. left: 100%;
  7565. }
  7566. .carousel-control {
  7567. position: absolute;
  7568. top: 0;
  7569. bottom: 0;
  7570. left: 0;
  7571. width: 10%;
  7572. color: #fff;
  7573. text-align: center;
  7574. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  7575. filter: alpha(opacity=40);
  7576. outline: none;
  7577. opacity: .4;
  7578. }
  7579. .carousel-control > .icon {
  7580. font-size: 20px;
  7581. }
  7582. .carousel-control.left {
  7583. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .3)), to(rgba(0, 0, 0, .0001)));
  7584. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .0001) 100%);
  7585. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .0001) 100%);
  7586. background-image: linear-gradient(to right, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .0001) 100%);
  7587. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d000000', endColorstr='#00000000', GradientType=1);
  7588. background-repeat: repeat-x;
  7589. }
  7590. .carousel-control.right {
  7591. right: 0;
  7592. left: auto;
  7593. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .3)));
  7594. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .3) 100%);
  7595. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .3) 100%);
  7596. background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .3) 100%);
  7597. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=1);
  7598. background-repeat: repeat-x;
  7599. }
  7600. .carousel-control:hover,
  7601. .carousel-control:focus {
  7602. color: #fff;
  7603. text-decoration: none;
  7604. filter: alpha(opacity=100);
  7605. outline: none;
  7606. opacity: 1;
  7607. }
  7608. .carousel-control .icon-prev,
  7609. .carousel-control .icon-next,
  7610. .carousel-control .icon-chevron-left,
  7611. .carousel-control .icon-chevron-right {
  7612. position: absolute;
  7613. top: 50%;
  7614. z-index: 5;
  7615. display: inline-block;
  7616. }
  7617. .carousel-control .icon-prev,
  7618. .carousel-control .icon-chevron-left {
  7619. left: 50%;
  7620. }
  7621. .carousel-control .icon-next,
  7622. .carousel-control .icon-chevron-right {
  7623. right: 50%;
  7624. }
  7625. .carousel-control .icon-prev,
  7626. .carousel-control .icon-next {
  7627. width: 20px;
  7628. height: 20px;
  7629. margin-top: -10px;
  7630. margin-left: -10px;
  7631. font-family: serif;
  7632. }
  7633. .carousel-control .icon-prev:before {
  7634. content: '\2039';
  7635. }
  7636. .carousel-control .icon-next:before {
  7637. content: '\203a';
  7638. }
  7639. .carousel-caption {
  7640. position: absolute;
  7641. right: 15%;
  7642. bottom: 20px;
  7643. left: 15%;
  7644. z-index: 10;
  7645. padding-top: 20px;
  7646. padding-bottom: 20px;
  7647. color: #fff;
  7648. text-align: center;
  7649. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  7650. }
  7651. .carousel-caption .btn {
  7652. text-shadow: none;
  7653. }
  7654. @media screen and (min-width: 768px) {
  7655. .carousel-control .icon-prev,
  7656. .carousel-control .icon-next {
  7657. top: 40%;
  7658. width: 30px;
  7659. height: 30px;
  7660. margin-top: -15px;
  7661. margin-left: -15px;
  7662. font-size: 80px;
  7663. }
  7664. .carousel-control .icon-prev {
  7665. left: 30%;
  7666. }
  7667. .carousel-control .icon-next {
  7668. right: 25%;
  7669. }
  7670. .carousel-caption {
  7671. right: 20%;
  7672. left: 20%;
  7673. padding-bottom: 30px;
  7674. }
  7675. .carousel-indicators {
  7676. bottom: 20px;
  7677. }
  7678. }
  7679. .carousel-indicators {
  7680. position: absolute;
  7681. bottom: 10px;
  7682. left: 50%;
  7683. z-index: 15;
  7684. width: 60%;
  7685. padding-left: 0;
  7686. margin-left: -30%;
  7687. text-align: center;
  7688. list-style: none;
  7689. }
  7690. .carousel-indicators li {
  7691. display: inline-block;
  7692. width: 10px;
  7693. height: 10px;
  7694. margin: 1px;
  7695. text-indent: -999px;
  7696. cursor: pointer;
  7697. border: 1px solid #fff;
  7698. border-radius: 10px;
  7699. }
  7700. .carousel-indicators .active {
  7701. width: 12px;
  7702. height: 12px;
  7703. margin: 0;
  7704. background-color: #fff;
  7705. }
  7706. [data-toggle="lightbox"] {
  7707. cursor: pointer;
  7708. }
  7709. .modal-lightbox .close {
  7710. position: absolute;
  7711. top: 0;
  7712. right: 0;
  7713. z-index: 10;
  7714. display: block;
  7715. width: 40px;
  7716. height: 40px;
  7717. font-size: 14px;
  7718. color: #fff;
  7719. text-align: center;
  7720. background-color: #353535;
  7721. background-color: rgba(53, 53, 53, .2);
  7722. filter: alpha(opacity=80);
  7723. opacity: .8;
  7724. -webkit-transition: opacity .2s cubic-bezier(.175, .885, .32, 1), background-color .2s cubic-bezier(.175, .885, .32, 1);
  7725. -o-transition: opacity .2s cubic-bezier(.175, .885, .32, 1), background-color .2s cubic-bezier(.175, .885, .32, 1);
  7726. transition: opacity .2s cubic-bezier(.175, .885, .32, 1), background-color .2s cubic-bezier(.175, .885, .32, 1);
  7727. }
  7728. .modal-lightbox .controller {
  7729. position: absolute;
  7730. top: 0;
  7731. display: none;
  7732. height: 100%;
  7733. padding: 0;
  7734. line-height: 100%;
  7735. color: #fff;
  7736. cursor: pointer;
  7737. background-color: transparent;
  7738. border: none;
  7739. outline: none;
  7740. -webkit-transition: background .2s cubic-bezier(.175, .885, .32, 1);
  7741. -o-transition: background .2s cubic-bezier(.175, .885, .32, 1);
  7742. transition: background .2s cubic-bezier(.175, .885, .32, 1);
  7743. }
  7744. .modal-lightbox .controller.show {
  7745. display: block;
  7746. }
  7747. .modal-lightbox .controller > .icon {
  7748. display: inline-block;
  7749. width: 60px;
  7750. height: 50px;
  7751. line-height: 50px;
  7752. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  7753. background-color: transparent;
  7754. -webkit-transition: background .2s cubic-bezier(.175, .885, .32, 1);
  7755. -o-transition: background .2s cubic-bezier(.175, .885, .32, 1);
  7756. transition: background .2s cubic-bezier(.175, .885, .32, 1);
  7757. }
  7758. .modal-lightbox .controller > .icon:before {
  7759. font-size: 20px;
  7760. }
  7761. .modal-lightbox .controller.prev {
  7762. left: 0;
  7763. }
  7764. .modal-lightbox .controller.next {
  7765. right: 0;
  7766. }
  7767. .modal-lightbox .modal-dialog {
  7768. position: relative;
  7769. max-width: 100%;
  7770. max-height: 100%;
  7771. margin-bottom: 0;
  7772. background: none;
  7773. border: none;
  7774. -webkit-box-shadow: none;
  7775. box-shadow: none;
  7776. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7777. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7778. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7779. }
  7780. .modal-lightbox .modal-dialog:hover .close,
  7781. .modal-lightbox .modal-dialog:focus .close {
  7782. background-color: rgba(53, 53, 53, .5);
  7783. filter: alpha(opacity=100);
  7784. opacity: 1;
  7785. }
  7786. .modal-lightbox .modal-dialog:hover .close:hover,
  7787. .modal-lightbox .modal-dialog:focus .close:hover {
  7788. background-color: rgba(53, 53, 53, .9);
  7789. }
  7790. .modal-lightbox .modal-dialog:hover .controller > .icon,
  7791. .modal-lightbox .modal-dialog:focus .controller > .icon {
  7792. text-shadow: none;
  7793. background-color: #353535;
  7794. background-color: rgba(53, 53, 53, .5);
  7795. }
  7796. .modal-lightbox .modal-dialog:hover .controller:hover > .icon,
  7797. .modal-lightbox .modal-dialog:focus .controller:hover > .icon {
  7798. background-color: #353535;
  7799. background-color: rgba(53, 53, 53, .9);
  7800. }
  7801. .modal-lightbox .caption {
  7802. display: none;
  7803. }
  7804. .modal-lightbox.lightbox-with-caption .caption {
  7805. position: absolute;
  7806. bottom: 0;
  7807. display: block;
  7808. width: 100%;
  7809. padding: 10px 15px;
  7810. color: #fff;
  7811. text-align: center;
  7812. text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
  7813. background: rgba(0, 0, 0, .15);
  7814. opacity: .5;
  7815. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7816. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7817. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7818. }
  7819. .modal-lightbox.lightbox-with-caption .modal-dialog:hover .caption {
  7820. background: rgba(0, 0, 0, .6);
  7821. opacity: 1;
  7822. }
  7823. .lightbox-img {
  7824. display: block;
  7825. width: inherit;
  7826. max-width: 100%;
  7827. height: auto;
  7828. padding: 0;
  7829. margin: 0 auto;
  7830. cursor: pointer;
  7831. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  7832. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  7833. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7834. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7835. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  7836. }
  7837. .messager {
  7838. display: table;
  7839. margin: 10px;
  7840. overflow: hidden;
  7841. color: #fff;
  7842. pointer-events: auto;
  7843. background-color: #353535;
  7844. background-color: rgba(0, 0, 0, .8);
  7845. border-radius: 20px;
  7846. }
  7847. .messager-content {
  7848. display: table-cell;
  7849. padding: 10px 15px;
  7850. vertical-align: top;
  7851. }
  7852. .messager-content > [class^='icon-'] {
  7853. display: inline-block;
  7854. margin-right: 8px;
  7855. }
  7856. .messager-actions {
  7857. display: table-cell;
  7858. vertical-align: top;
  7859. }
  7860. .messager-actions > .action {
  7861. min-width: 40px;
  7862. height: 40px;
  7863. padding: 0 12px;
  7864. color: #fafafa;
  7865. color: rgba(255, 255, 255, .6);
  7866. text-align: center;
  7867. text-shadow: none;
  7868. background: none;
  7869. border: none;
  7870. }
  7871. .messager-actions > .action.close {
  7872. padding-bottom: 5px;
  7873. font-size: 20px;
  7874. font-weight: normal;
  7875. opacity: 1;
  7876. }
  7877. .messager-actions > .action:hover {
  7878. color: #fff;
  7879. background: rgba(0, 0, 0, .1);
  7880. }
  7881. .messager-actions .action-icon + .action-text {
  7882. margin-left: 8px;
  7883. }
  7884. .messagers-holder {
  7885. position: fixed;
  7886. z-index: 99999;
  7887. padding: 10px;
  7888. pointer-events: none;
  7889. -webkit-transition: top .2s cubic-bezier(.175, .885, .32, 1);
  7890. -o-transition: top .2s cubic-bezier(.175, .885, .32, 1);
  7891. transition: top .2s cubic-bezier(.175, .885, .32, 1);
  7892. }
  7893. .messagers-holder.top {
  7894. top: 0;
  7895. }
  7896. .messagers-holder.top-left {
  7897. top: 0;
  7898. left: 0;
  7899. }
  7900. .messagers-holder.top-right {
  7901. top: 0;
  7902. right: 0;
  7903. }
  7904. .messagers-holder.bottom {
  7905. bottom: 0;
  7906. }
  7907. .messagers-holder.bottom-left {
  7908. bottom: 0;
  7909. left: 0;
  7910. }
  7911. .messagers-holder.bottom-right {
  7912. right: 0;
  7913. bottom: 0;
  7914. }
  7915. .messagers-holder.top-right .messager,
  7916. .messagers-holder.bottom-right .messager {
  7917. margin-left: auto;
  7918. }
  7919. .messagers-holder.center {
  7920. top: 0;
  7921. }
  7922. .messagers-holder.top,
  7923. .messagers-holder.bottom,
  7924. .messagers-holder.center {
  7925. right: 0;
  7926. left: 0;
  7927. }
  7928. .messagers-holder.top .messager,
  7929. .messagers-holder.bottom .messager,
  7930. .messagers-holder.center .messager {
  7931. margin: 10px auto;
  7932. }
  7933. .messager-primary {
  7934. background-color: #3280fc;
  7935. }
  7936. .messager-success {
  7937. background-color: #38b03f;
  7938. }
  7939. .messager-info {
  7940. background-color: #03b8cf;
  7941. }
  7942. .messager-warning {
  7943. background-color: #f1a325;
  7944. }
  7945. .messager-danger {
  7946. background-color: #ea644a;
  7947. }
  7948. .messager-important {
  7949. background-color: #bd7b46;
  7950. }
  7951. .messager-special {
  7952. background-color: #8666b8;
  7953. }
  7954. .article {
  7955. padding: 20px;
  7956. }
  7957. .article > header h1,
  7958. .article > header h2,
  7959. .article > header h3 {
  7960. margin-bottom: 20px;
  7961. line-height: 1.5;
  7962. }
  7963. .article > header > .abstract,
  7964. .article > header > dl {
  7965. padding: 10px 15px;
  7966. font-size: 12px;
  7967. color: #686868;
  7968. background-color: #f1f1f1;
  7969. }
  7970. .article > header > .abstract > p:last-child,
  7971. .article > header > dl > p:last-child {
  7972. margin-bottom: 0;
  7973. }
  7974. .article > header > dl {
  7975. margin: 0;
  7976. border-bottom: 1px solid #e9e9e9;
  7977. }
  7978. .article > header > dl.pull-right {
  7979. background-color: transparent;
  7980. border: none;
  7981. }
  7982. .article > footer {
  7983. border-top: 1px dashed #d7d7d7;
  7984. }
  7985. .article > footer > p {
  7986. padding: 10px 15px;
  7987. }
  7988. .article > .content,
  7989. .article-content {
  7990. padding: 20px 0;
  7991. font-size: 14px;
  7992. line-height: 1.78571429;
  7993. }
  7994. .article > .content h1,
  7995. .article-content h1 {
  7996. font-size: 20px;
  7997. }
  7998. .article > .content h2,
  7999. .article-content h2 {
  8000. font-size: 18px;
  8001. }
  8002. .article > .content h3,
  8003. .article-content h3 {
  8004. font-size: 16px;
  8005. }
  8006. .article > .content h4,
  8007. .article-content h4 {
  8008. margin-top: 15px;
  8009. font-size: 14px;
  8010. }
  8011. .article > .content h5,
  8012. .article-content h5 {
  8013. margin-top: 15px;
  8014. font-size: 13px;
  8015. }
  8016. .article > .content h6,
  8017. .article-content h6 {
  8018. margin-top: 15px;
  8019. font-size: 11px;
  8020. }
  8021. .article > .content img,
  8022. .article-content img {
  8023. margin: 10px 0;
  8024. }
  8025. .article > .content p > img,
  8026. .article-content p > img {
  8027. margin-right: 10px;
  8028. }
  8029. .article > .content p > img[align='right'],
  8030. .article-content p > img[align='right'] {
  8031. margin-left: 10px;
  8032. }
  8033. .article > .content dl,
  8034. .article-content dl {
  8035. padding-right: 2em;
  8036. padding-left: 2em;
  8037. }
  8038. .article > .content table,
  8039. .article-content table {
  8040. margin-bottom: 20px;
  8041. }
  8042. .article > .content table th,
  8043. .article-content table th,
  8044. .article > .content table td,
  8045. .article-content table td {
  8046. padding: 8px;
  8047. line-height: 1.53846154;
  8048. vertical-align: top;
  8049. border-bottom: 1px solid #ddd;
  8050. }
  8051. .article > .content table > thead > tr > th,
  8052. .article-content table > thead > tr > th {
  8053. vertical-align: bottom;
  8054. background-color: #f1f1f1;
  8055. border-bottom: 1px solid #ddd;
  8056. }
  8057. .article-content p {
  8058. margin-bottom: 0;
  8059. }
  8060. .article-content table {
  8061. width: 100%;
  8062. }
  8063. .article > .content table th,
  8064. .article > .content table td,
  8065. .article > .content table > thead > tr > th {
  8066. border: 1px solid #ddd;
  8067. }
  8068. body.article-content {
  8069. padding: 8px;
  8070. }
  8071. .article-condensed {
  8072. padding: 20px 0;
  8073. }
  8074. .article-condensed > header {
  8075. padding: 0 20px;
  8076. }
  8077. .article-condensed > header > .abstract,
  8078. .article-condensed > header > dl {
  8079. padding: 10px 15px;
  8080. margin: 0 -20px;
  8081. }
  8082. .article-condensed > .content,
  8083. .article-condensed > .article-content {
  8084. padding: 20px;
  8085. }
  8086. .article-condensed > .content > img,
  8087. .article-condensed > .article-content > img,
  8088. .article-condensed > .content > pre,
  8089. .article-condensed > .article-content > pre {
  8090. margin-right: -20px;
  8091. margin-left: -20px;
  8092. border-radius: 0;
  8093. }
  8094. .article-condensed > .content > pre,
  8095. .article-condensed > .article-content > pre {
  8096. border-right: none;
  8097. border-left: none;
  8098. }
  8099. .article-condensed > footer {
  8100. border-top: 1px dashed #d7d7d7;
  8101. }
  8102. .article-condensed > footer > p {
  8103. padding: 10px 15px;
  8104. }
  8105. .article-condensed > footer > .pager-justify > .previous > a {
  8106. border-left: none;
  8107. border-radius: 0;
  8108. }
  8109. .article-condensed > footer > .pager-justify > .next > a {
  8110. border-right: none;
  8111. border-radius: 0;
  8112. }
  8113. .comments > header {
  8114. border-bottom: 1px solid #e5e5e5;
  8115. }
  8116. .comments > header > .alert {
  8117. padding: 7.5px 15px;
  8118. margin-bottom: -10px;
  8119. }
  8120. .comments > header h1,
  8121. .comments > header h2,
  8122. .comments > header h3 {
  8123. padding: 10px 0;
  8124. margin: 10px 0;
  8125. }
  8126. .comments > footer {
  8127. padding-top: 10px;
  8128. }
  8129. .comments > footer > .reply-form > .avatar {
  8130. display: block;
  8131. float: left;
  8132. width: 40px;
  8133. height: 40px;
  8134. margin-top: 10px;
  8135. }
  8136. .comments > footer > .reply-form > .avatar + .form {
  8137. padding-left: 50px;
  8138. }
  8139. .comment {
  8140. padding: 10px 0;
  8141. border-bottom: 1px solid #e5e5e5;
  8142. }
  8143. .comment:before,
  8144. .comment:after {
  8145. /* 1 */
  8146. display: table;
  8147. content: " ";
  8148. /* 2 */
  8149. }
  8150. .comment:after {
  8151. clear: both;
  8152. }
  8153. .comment:before,
  8154. .comment:after {
  8155. /* 1 */
  8156. display: table;
  8157. content: " ";
  8158. /* 2 */
  8159. }
  8160. .comment:after {
  8161. clear: both;
  8162. }
  8163. .comment > .avatar,
  8164. .comment > .content {
  8165. display: block;
  8166. }
  8167. .comment > .avatar {
  8168. float: left;
  8169. width: 40px;
  8170. height: 40px;
  8171. margin-top: 10px;
  8172. }
  8173. .comment > .avatar + .content {
  8174. padding-left: 50px;
  8175. }
  8176. .comment > .content > .text {
  8177. margin-top: 5px;
  8178. }
  8179. .comment > .content > .actions {
  8180. margin-top: 4px;
  8181. }
  8182. .comment > .content > .actions > a {
  8183. display: inline-block;
  8184. color: #808080;
  8185. }
  8186. .comment > .content > .actions > a + a {
  8187. margin-left: 5px;
  8188. }
  8189. .comment:hover > .content > .actions > a {
  8190. color: #145ccd;
  8191. }
  8192. .comment > .comments-list {
  8193. padding-top: 10px;
  8194. padding-bottom: 0;
  8195. padding-left: 30px;
  8196. margin-left: 20px;
  8197. border-left: 1px dashed #e5e5e5;
  8198. }
  8199. .comment > .comments-list > .comment {
  8200. border: none;
  8201. border-top: 1px solid #e5e5e5;
  8202. }
  8203. .comment > .comments-list > .comment:last-child {
  8204. padding-bottom: 0;
  8205. }
  8206. .list {
  8207. padding: 0 15px;
  8208. }
  8209. .list > header {
  8210. padding-bottom: 10px;
  8211. border-bottom: 1px solid #e5e5e5;
  8212. }
  8213. .items .item {
  8214. padding: 10px 0;
  8215. border-bottom: 1px solid #e5e5e5;
  8216. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8217. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8218. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8219. }
  8220. .items .item-heading > h6,
  8221. .items .item-heading h5,
  8222. .items .item-heading h4,
  8223. .items .item-heading h3,
  8224. .items .item-heading h2,
  8225. .items .item-heading h1 {
  8226. margin-top: 5px;
  8227. }
  8228. .items .item-content:before,
  8229. .items .item-content:after {
  8230. /* 1 */
  8231. display: table;
  8232. content: " ";
  8233. /* 2 */
  8234. }
  8235. .items .item-content:after {
  8236. clear: both;
  8237. }
  8238. .items .item-content:before,
  8239. .items .item-content:after {
  8240. /* 1 */
  8241. display: table;
  8242. content: " ";
  8243. /* 2 */
  8244. }
  8245. .items .item-content:after {
  8246. clear: both;
  8247. }
  8248. .items .item-content > .media {
  8249. max-width: 100%;
  8250. margin: 5px 0;
  8251. }
  8252. .items .item-content > .media.pull-left {
  8253. max-width: 150px;
  8254. margin: 0;
  8255. margin-right: 8px;
  8256. }
  8257. .items .item-content > .media.pull-right {
  8258. max-width: 150px;
  8259. margin: 0;
  8260. margin-left: 8px;
  8261. }
  8262. .items .item-footer {
  8263. padding-top: 5px;
  8264. }
  8265. .items .item-footer > a {
  8266. color: #808080;
  8267. }
  8268. .items-hover .item:hover {
  8269. background-color: #f5f5f5;
  8270. }
  8271. .list-condensed {
  8272. padding: 0;
  8273. }
  8274. .list-condensed > header,
  8275. .list-condensed > footer,
  8276. .list-condensed > .items > .item {
  8277. padding-right: 15px;
  8278. padding-left: 15px;
  8279. }
  8280. .cards {
  8281. padding-top: 10px;
  8282. padding-bottom: 10px;
  8283. margin-right: -10px;
  8284. margin-left: -10px;
  8285. }
  8286. .card {
  8287. position: relative;
  8288. display: block;
  8289. padding: 0;
  8290. margin-bottom: 20px;
  8291. overflow: hidden;
  8292. border: 1px solid #ddd;
  8293. border-radius: 4px;
  8294. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  8295. box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  8296. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8297. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8298. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8299. }
  8300. .card > img {
  8301. display: block;
  8302. max-width: 100%;
  8303. height: auto;
  8304. filter: alpha(opacity=100);
  8305. opacity: 1;
  8306. }
  8307. .card > .media-wrapper {
  8308. display: block;
  8309. width: 100%;
  8310. overflow: hidden;
  8311. text-align: center;
  8312. background-color: #f1f1f1;
  8313. filter: alpha(opacity=100);
  8314. opacity: 1;
  8315. -webkit-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8316. -o-transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8317. transition: all .4s cubic-bezier(.175, .885, .32, 1);
  8318. }
  8319. .card > .media-wrapper > img {
  8320. max-width: 100%;
  8321. vertical-align: middle;
  8322. }
  8323. .card .card-heading {
  8324. display: block;
  8325. padding: 10px;
  8326. margin: 0;
  8327. overflow: hidden;
  8328. text-overflow: ellipsis;
  8329. white-space: nowrap;
  8330. }
  8331. .card .card-content,
  8332. .card .card-actions {
  8333. padding: 0 10px 10px 10px;
  8334. overflow: hidden;
  8335. text-overflow: ellipsis;
  8336. }
  8337. .card .card-actions .btn + .pull-right {
  8338. padding: 6px 0;
  8339. line-height: 20px;
  8340. }
  8341. .card:hover {
  8342. text-decoration: none;
  8343. -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .175);
  8344. box-shadow: 0 1px 5px rgba(0, 0, 0, .175);
  8345. }
  8346. .card:hover > img,
  8347. .card:hover > .media-wrapper {
  8348. background-color: #e5e5e5;
  8349. filter: alpha(opacity=90);
  8350. opacity: .9;
  8351. }
  8352. .card:hover > .card-reveal {
  8353. top: 0;
  8354. }
  8355. .cards-borderless .card {
  8356. border: none;
  8357. border-radius: 0;
  8358. -webkit-box-shadow: none;
  8359. box-shadow: none;
  8360. }
  8361. .cards-borderless .card > img,
  8362. .cards-borderless .card > .media-wrapper {
  8363. overflow: hidden;
  8364. border-radius: 4px;
  8365. }
  8366. .cards-borderless .card > .card-heading,
  8367. .cards-borderless .card > .card-actions,
  8368. .cards-borderless .card > .card-content {
  8369. padding-right: 0;
  8370. padding-left: 0;
  8371. }
  8372. .card > .caption {
  8373. position: absolute;
  8374. top: -100%;
  8375. left: 0;
  8376. display: block;
  8377. width: 100%;
  8378. padding: 5px 10px;
  8379. overflow: hidden;
  8380. color: #fff;
  8381. text-align: center;
  8382. background-color: #666;
  8383. background-color: rgba(0, 0, 0, .7);
  8384. filter: alpha(opacity=0);
  8385. opacity: 0;
  8386. -webkit-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  8387. -o-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  8388. transition: all .8s cubic-bezier(.175, .885, .32, 1);
  8389. }
  8390. .card:hover > .caption {
  8391. top: 0;
  8392. filter: alpha(opacity=100);
  8393. opacity: 1;
  8394. }
  8395. .cards-condensed {
  8396. padding: 0;
  8397. border: 1px solid #ddd;
  8398. border-top: 0;
  8399. border-left: 0;
  8400. }
  8401. .cards-condensed > [class^="col-"],
  8402. .cards-condensed > [class*=" col-"] {
  8403. padding: 0;
  8404. }
  8405. .cards-condensed .card {
  8406. padding: 10px;
  8407. margin: 0;
  8408. border-right: 0;
  8409. border-bottom: 0;
  8410. border-radius: 0;
  8411. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .015);
  8412. box-shadow: 0 1px 2px rgba(0, 0, 0, .015);
  8413. }
  8414. .card > .card-reveal {
  8415. position: absolute;
  8416. top: 100%;
  8417. left: 0;
  8418. width: 100%;
  8419. height: 100%;
  8420. background-color: #f1f1f1;
  8421. -webkit-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  8422. -o-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  8423. transition: all .8s cubic-bezier(.175, .885, .32, 1);
  8424. }
  8425. .card > .card-reveal > .card-heading {
  8426. padding: 20px 10px;
  8427. }
  8428. .card:hover > .card-reveal {
  8429. top: 0;
  8430. }
  8431. .tree {
  8432. padding-left: 0;
  8433. }
  8434. .tree ul {
  8435. position: relative;
  8436. display: none;
  8437. padding-left: 0;
  8438. }
  8439. .tree li {
  8440. position: relative;
  8441. padding: 2px 0 2px 20px;
  8442. list-style: none;
  8443. }
  8444. .tree li:before {
  8445. position: absolute;
  8446. top: 10px;
  8447. left: 8px;
  8448. display: block;
  8449. width: 3px;
  8450. height: 3px;
  8451. content: ' ';
  8452. background-color: #999;
  8453. }
  8454. .tree li.has-list:before {
  8455. display: none;
  8456. }
  8457. .tree li > .list-toggle {
  8458. position: absolute;
  8459. top: -1px;
  8460. left: 0;
  8461. z-index: 10;
  8462. width: 20px;
  8463. line-height: 24px;
  8464. color: #808080;
  8465. text-align: center;
  8466. cursor: pointer;
  8467. }
  8468. .tree li > .list-toggle:before {
  8469. content: '\f196';
  8470. }
  8471. .tree li > .list-toggle:hover,
  8472. .tree li > .list-toggle:active {
  8473. color: #0d3d88;
  8474. }
  8475. .tree li.open > ul {
  8476. display: block;
  8477. }
  8478. .tree li.open > .list-toggle:before {
  8479. content: '\e71d';
  8480. }
  8481. .tree-actions {
  8482. display: inline-block;
  8483. margin-left: 5px;
  8484. opacity: 0;
  8485. -webkit-transition: opacity .1s;
  8486. -o-transition: opacity .1s;
  8487. transition: opacity .1s;
  8488. }
  8489. .tree-action {
  8490. display: inline-block;
  8491. margin-left: 5px;
  8492. color: #808080;
  8493. }
  8494. .tree-action:hover,
  8495. .tree-action:active {
  8496. text-decoration: none;
  8497. }
  8498. .tree li:hover > .tree-actions,
  8499. .tree-item-wrapper:hover > .tree-actions {
  8500. opacity: 1;
  8501. }
  8502. .tree-drag-holder {
  8503. background-color: #ebf2f9;
  8504. opacity: .4;
  8505. }
  8506. .tree .sort-handler {
  8507. cursor: move;
  8508. }
  8509. .tree-animate ul {
  8510. opacity: 0;
  8511. -webkit-transition: opacity .2s cubic-bezier(.175, .885, .32, 1), -webkit-transform .2s cubic-bezier(.175, .885, .32, 1);
  8512. -o-transition: opacity .2s cubic-bezier(.175, .885, .32, 1), -o-transform .2s cubic-bezier(.175, .885, .32, 1);
  8513. transition: opacity .2s cubic-bezier(.175, .885, .32, 1), -webkit-transform .2s cubic-bezier(.175, .885, .32, 1);
  8514. transition: opacity .2s cubic-bezier(.175, .885, .32, 1), transform .2s cubic-bezier(.175, .885, .32, 1);
  8515. transition: opacity .2s cubic-bezier(.175, .885, .32, 1), transform .2s cubic-bezier(.175, .885, .32, 1), -webkit-transform .2s cubic-bezier(.175, .885, .32, 1), -o-transform .2s cubic-bezier(.175, .885, .32, 1);
  8516. -webkit-transform: scale(1, .5);
  8517. -ms-transform: scale(1, .5);
  8518. -o-transform: scale(1, .5);
  8519. transform: scale(1, .5);
  8520. }
  8521. .tree-animate li.open.in > ul {
  8522. opacity: 1;
  8523. -webkit-transform: scale(1, 1);
  8524. -ms-transform: scale(1, 1);
  8525. -o-transform: scale(1, 1);
  8526. transform: scale(1, 1);
  8527. }
  8528. .tree-animate.tree-lines li.has-list.open > ul:after {
  8529. top: -5px;
  8530. bottom: 12px;
  8531. left: -11px;
  8532. }
  8533. .tree-lines ul > li:after {
  8534. position: absolute;
  8535. top: 11px;
  8536. left: -10px;
  8537. z-index: 1;
  8538. display: block;
  8539. width: 22px;
  8540. content: ' ';
  8541. border-top: 1px dotted #999;
  8542. }
  8543. .tree-lines ul > li:before,
  8544. .tree-lines ul > li.has-list:before {
  8545. position: absolute;
  8546. top: -12px;
  8547. bottom: 12px;
  8548. left: -11px;
  8549. display: block;
  8550. width: auto;
  8551. height: auto;
  8552. content: ' ';
  8553. background: none;
  8554. border: none;
  8555. border-left: 1px dotted #999;
  8556. }
  8557. .tree-lines ul > li:last-child:before {
  8558. bottom: auto;
  8559. height: 23px;
  8560. }
  8561. .tree-lines ul > li:first-child:before {
  8562. top: -5px;
  8563. }
  8564. .tree-lines ul > li.tree-single-item:before {
  8565. height: 19px;
  8566. }
  8567. .tree-lines ul > li.has-list:after {
  8568. width: 14px;
  8569. }
  8570. .tree-lines ul > li.drag-shadow:after {
  8571. display: none;
  8572. }
  8573. .tree-folders li > .list-toggle:before {
  8574. content: '\e6ef';
  8575. }
  8576. .tree-folders li.open > .list-toggle:before {
  8577. content: '\e6f0';
  8578. }
  8579. .tree-folders.tree-lines ul > li:first-child:before {
  8580. top: -6px;
  8581. }
  8582. .tree-folders.tree-lines li.has-list.open > ul:after {
  8583. top: 16px;
  8584. }
  8585. .tree-folders ul > li.has-list:after {
  8586. width: 13px;
  8587. }
  8588. .tree-folders ul > li.has-list.open:after {
  8589. width: 15px;
  8590. }
  8591. .tree-chevrons li > .list-toggle:before {
  8592. content: '\e710';
  8593. }
  8594. .tree-chevrons li.open > .list-toggle:before {
  8595. content: '\e712';
  8596. }
  8597. .tree-chevrons li:before {
  8598. top: 6px;
  8599. left: 4px;
  8600. width: 10px;
  8601. height: 10px;
  8602. background-color: #ddd;
  8603. border-radius: 5px;
  8604. }
  8605. .tree-chevrons ul > li:after {
  8606. width: 13px;
  8607. }
  8608. .tree-angles li > .list-toggle:before {
  8609. content: '\e6e1';
  8610. }
  8611. .tree-angles li.open > .list-toggle:before {
  8612. content: '\e6e3';
  8613. }
  8614. .tree-angles ul > li.has-list:after {
  8615. width: 15px;
  8616. }
  8617. .tree-menu {
  8618. overflow: hidden;
  8619. border: 1px solid #ddd;
  8620. border-radius: 4px;
  8621. }
  8622. .tree-menu li {
  8623. padding: 0;
  8624. }
  8625. .tree-menu li:before {
  8626. display: none;
  8627. }
  8628. .tree-menu li > a {
  8629. display: block;
  8630. padding: 8px;
  8631. margin-bottom: -1px;
  8632. color: #353535;
  8633. }
  8634. .tree-menu li > a > .icon {
  8635. display: inline-block;
  8636. width: 20px;
  8637. color: inherit;
  8638. text-align: left;
  8639. opacity: .6;
  8640. }
  8641. .tree-menu li > a:hover,
  8642. .tree-menu li > a:active,
  8643. .tree-menu li > a:focus {
  8644. color: #0d3d88;
  8645. text-decoration: none;
  8646. background-color: rgba(0, 0, 0, .04);
  8647. }
  8648. .tree-menu li > a:hover > .icon,
  8649. .tree-menu li > a:active > .icon,
  8650. .tree-menu li > a:focus > .icon {
  8651. opacity: .9;
  8652. }
  8653. .tree-menu li .list-toggle {
  8654. top: 6px;
  8655. right: 4px;
  8656. left: auto;
  8657. width: 24px;
  8658. height: 24px;
  8659. filter: alpha(opacity=45);
  8660. opacity: .45;
  8661. -webkit-transition: all .3s;
  8662. -o-transition: all .3s;
  8663. transition: all .3s;
  8664. }
  8665. .tree-menu li .list-toggle:before {
  8666. content: '\e64f';
  8667. }
  8668. .tree-menu li.open > .list-toggle {
  8669. filter: alpha(opacity=75);
  8670. opacity: .75;
  8671. -webkit-transform: rotate(90deg);
  8672. -ms-transform: rotate(90deg);
  8673. -o-transform: rotate(90deg);
  8674. transform: rotate(90deg);
  8675. }
  8676. .tree-menu li.open > .list-toggle:before {
  8677. content: '\e64f';
  8678. }
  8679. .tree-menu li > ul {
  8680. background-color: rgba(0, 0, 0, .04);
  8681. }
  8682. .tree-menu li li a {
  8683. padding-left: 28px;
  8684. border-top-color: transparent;
  8685. border-bottom-color: transparent;
  8686. }
  8687. .tree-menu li li li a {
  8688. padding-left: 48px;
  8689. }
  8690. .tree-menu li li li li a {
  8691. padding-left: 68px;
  8692. }
  8693. .tree-menu li.active > a {
  8694. color: #fff;
  8695. background-color: #3280fc;
  8696. border-color: #3280fc;
  8697. }
  8698. .tree-menu li.active > .list-toggle {
  8699. color: #fff;
  8700. }
  8701. .tree-menu > li > a {
  8702. border: 1px solid transparent;
  8703. border-bottom-color: #ddd;
  8704. }
  8705. .tree-menu > li.open + li > a {
  8706. border-top-color: #ddd;
  8707. }