bootstrap.css 147 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247
  1. /**
  2. * UI v1.1.0
  3. * Copyright 2017-2018 Muyao
  4. * Licensed under the Muyao License 1.0
  5. */
  6. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  7. html {
  8. font-family: sans-serif;
  9. -webkit-text-size-adjust: 100%;
  10. -ms-text-size-adjust: 100%;
  11. }
  12. body {
  13. margin: 0;
  14. }
  15. article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  16. display: block;
  17. }
  18. audio, canvas, progress, video {
  19. display: inline-block;
  20. vertical-align: baseline;
  21. }
  22. audio:not([controls]) {
  23. display: none;
  24. height: 0;
  25. }
  26. [hidden], template {
  27. display: none;
  28. }
  29. a {
  30. background-color: transparent;
  31. }
  32. a:active, a:hover {
  33. outline: 0;
  34. }
  35. abbr[title] {
  36. border-bottom: 1px dotted;
  37. }
  38. b, strong {
  39. font-weight: bold;
  40. }
  41. dfn {
  42. font-style: italic;
  43. }
  44. h1 {
  45. margin: .67em 0;
  46. font-size: 2em;
  47. }
  48. mark {
  49. color: #000;
  50. background: #ff0;
  51. }
  52. small {
  53. font-size: 80%;
  54. }
  55. sub, sup {
  56. position: relative;
  57. font-size: 75%;
  58. line-height: 0;
  59. vertical-align: baseline;
  60. }
  61. sup {
  62. top: -.5em;
  63. }
  64. sub {
  65. bottom: -.25em;
  66. }
  67. img {
  68. border: 0;
  69. }
  70. svg:not(:root) {
  71. overflow: hidden;
  72. }
  73. figure {
  74. margin: 1em 40px;
  75. }
  76. hr {
  77. height: 0;
  78. -webkit-box-sizing: content-box;
  79. -moz-box-sizing: content-box;
  80. box-sizing: content-box;
  81. }
  82. pre {
  83. overflow: auto;
  84. }
  85. code, kbd, pre, samp {
  86. font-family: monospace, monospace;
  87. font-size: 1em;
  88. }
  89. button, input, optgroup, select, textarea {
  90. margin: 0;
  91. font: inherit;
  92. color: inherit;
  93. }
  94. button {
  95. overflow: visible;
  96. }
  97. button, select {
  98. text-transform: none;
  99. }
  100. button, html input[type="button"], input[type="reset"], input[type="submit"] {
  101. -webkit-appearance: button;
  102. cursor: pointer;
  103. }
  104. button[disabled], html input[disabled] {
  105. cursor: default;
  106. }
  107. button::-moz-focus-inner, input::-moz-focus-inner {
  108. padding: 0;
  109. border: 0;
  110. }
  111. input {
  112. line-height: normal;
  113. }
  114. input[type="checkbox"], input[type="radio"] {
  115. -webkit-box-sizing: border-box;
  116. -moz-box-sizing: border-box;
  117. box-sizing: border-box;
  118. padding: 0;
  119. }
  120. input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  121. height: auto;
  122. }
  123. input[type="search"] {
  124. -webkit-box-sizing: content-box;
  125. -moz-box-sizing: content-box;
  126. box-sizing: content-box;
  127. -webkit-appearance: textfield;
  128. }
  129. input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  130. -webkit-appearance: none;
  131. }
  132. fieldset {
  133. padding: .35em .625em .75em;
  134. margin: 0 2px;
  135. border: 1px solid #c0c0c0;
  136. }
  137. legend {
  138. padding: 0;
  139. border: 0;
  140. }
  141. textarea {
  142. overflow: auto;
  143. }
  144. optgroup {
  145. font-weight: bold;
  146. }
  147. table {
  148. border-spacing: 0;
  149. border-collapse: collapse;
  150. }
  151. td, th {
  152. padding: 0;
  153. }
  154. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  155. @media print {
  156. *, *:before, *:after {
  157. color: #000 !important;
  158. text-shadow: none !important;
  159. background: transparent !important;
  160. -webkit-box-shadow: none !important;
  161. box-shadow: none !important;
  162. }
  163. a, a:visited {
  164. text-decoration: underline;
  165. }
  166. a[href]:after {
  167. content: " (" attr(href) ")";
  168. }
  169. abbr[title]:after {
  170. content: " (" attr(title) ")";
  171. }
  172. a[href^="#"]:after, a[href^="javascript:"]:after {
  173. content: "";
  174. }
  175. pre, blockquote {
  176. border: 1px solid #999;
  177. page-break-inside: avoid;
  178. }
  179. thead {
  180. display: table-header-group;
  181. }
  182. tr, img {
  183. page-break-inside: avoid;
  184. }
  185. img {
  186. max-width: 100% !important;
  187. }
  188. p, h2, h3 {
  189. orphans: 3;
  190. widows: 3;
  191. }
  192. h2, h3 {
  193. page-break-after: avoid;
  194. }
  195. .navbar {
  196. display: none;
  197. }
  198. .btn > .caret, .dropup > .btn > .caret {
  199. border-top-color: #000 !important;
  200. }
  201. .label {
  202. border: 1px solid #000;
  203. }
  204. .table {
  205. border-collapse: collapse !important;
  206. }
  207. .table td, .table th {
  208. background-color: #fff !important;
  209. }
  210. .table-bordered th, .table-bordered td {
  211. border: 1px solid #ddd !important;
  212. }
  213. }
  214. * {
  215. -webkit-box-sizing: border-box;
  216. -moz-box-sizing: border-box;
  217. box-sizing: border-box;
  218. }
  219. *:before, *:after {
  220. -webkit-box-sizing: border-box;
  221. -moz-box-sizing: border-box;
  222. box-sizing: border-box;
  223. }
  224. html {
  225. font-size: 10px;
  226. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  227. }
  228. body {
  229. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft Yahei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  230. font-size: 14px;
  231. line-height: 1.43;
  232. color: #76838f;
  233. background-color: #fff;
  234. }
  235. input, button, select, textarea {
  236. font-family: inherit;
  237. font-size: inherit;
  238. line-height: inherit;
  239. }
  240. a {
  241. color: #62a8ea;
  242. text-decoration: none;
  243. }
  244. a:hover, a:focus {
  245. color: #89bceb;
  246. text-decoration: underline;
  247. }
  248. a:focus {
  249. outline: thin dotted;
  250. outline: 5px auto -webkit-focus-ring-color;
  251. outline: none;
  252. outline-offset: -2px;
  253. }
  254. figure {
  255. margin: 0;
  256. }
  257. img {
  258. vertical-align: middle;
  259. }
  260. .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
  261. display: block;
  262. max-width: 100%;
  263. height: auto;
  264. }
  265. .img-rounded {
  266. border-radius: 4px;
  267. }
  268. .img-thumbnail {
  269. display: inline-block;
  270. max-width: 100%;
  271. height: auto;
  272. padding: 4px;
  273. line-height: 1.43;
  274. background-color: #fff;
  275. border: 1px solid #e4eaec;
  276. border-radius: 3px;
  277. -webkit-transition: all .2s ease-in-out;
  278. -o-transition: all .2s ease-in-out;
  279. transition: all .2s ease-in-out;
  280. }
  281. .img-circle {
  282. border-radius: 50%;
  283. }
  284. hr {
  285. margin-top: 20px;
  286. margin-bottom: 20px;
  287. border: 0;
  288. border-top: 1px solid #e4eaec;
  289. }
  290. .sr-only {
  291. position: absolute;
  292. width: 1px;
  293. height: 1px;
  294. padding: 0;
  295. margin: -1px;
  296. overflow: hidden;
  297. clip: rect(0, 0, 0, 0);
  298. border: 0;
  299. }
  300. .sr-only-focusable:active, .sr-only-focusable:focus {
  301. position: static;
  302. width: auto;
  303. height: auto;
  304. margin: 0;
  305. overflow: visible;
  306. clip: auto;
  307. }
  308. [role="button"] {
  309. cursor: pointer;
  310. }
  311. h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  312. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft Yahei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  313. font-weight: 500;
  314. line-height: 1.2;
  315. color: inherit;
  316. }
  317. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  318. font-weight: normal;
  319. line-height: 1;
  320. color: #a3afb7;
  321. }
  322. h1, .h1, h2, .h2, h3, .h3 {
  323. margin-top: 20px;
  324. margin-bottom: 10px;
  325. }
  326. h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
  327. font-size: 65%;
  328. }
  329. h4, .h4, h5, .h5, h6, .h6 {
  330. margin-top: 11px;
  331. margin-bottom: 11px;
  332. }
  333. h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  334. font-size: 75%;
  335. }
  336. h1, .h1 {
  337. font-size: 22px;
  338. }
  339. h2, .h2 {
  340. font-size: 20px;
  341. }
  342. h3, .h3 {
  343. font-size: 18px;
  344. }
  345. h4, .h4 {
  346. font-size: 16px;
  347. }
  348. h5, .h5 {
  349. font-size: 14px;
  350. }
  351. h6, .h6 {
  352. font-size: 12px;
  353. }
  354. p {
  355. margin: 0 0 11px;
  356. }
  357. .lead {
  358. margin-bottom: 22px;
  359. font-size: 16px;
  360. font-weight: 300;
  361. line-height: 1.4;
  362. }
  363. @media (min-width: 768px) {
  364. .lead {
  365. font-size: 21px;
  366. }
  367. }
  368. small, .small {
  369. font-size: 85%;
  370. }
  371. mark, .mark {
  372. padding: .2em;
  373. background-color: #f2a654;
  374. }
  375. .text-left {
  376. text-align: left;
  377. }
  378. .text-right {
  379. text-align: right;
  380. }
  381. .text-center {
  382. text-align: center;
  383. }
  384. .text-justify {
  385. text-align: justify;
  386. }
  387. .text-nowrap {
  388. white-space: nowrap;
  389. }
  390. .text-lowercase {
  391. text-transform: lowercase;
  392. }
  393. .text-uppercase {
  394. text-transform: uppercase;
  395. }
  396. .text-capitalize {
  397. text-transform: capitalize;
  398. }
  399. .text-muted {
  400. color: #526069;
  401. }
  402. .text-primary {
  403. color: #62a8ea;
  404. }
  405. a.text-primary:hover, a.text-primary:focus {
  406. color: #358fe4;
  407. }
  408. .text-success {
  409. color: #fff;
  410. }
  411. a.text-success:hover, a.text-success:focus {
  412. color: #e6e6e6;
  413. }
  414. .text-info {
  415. color: #fff;
  416. }
  417. a.text-info:hover, a.text-info:focus {
  418. color: #e6e6e6;
  419. }
  420. .text-warning {
  421. color: #fff;
  422. }
  423. a.text-warning:hover, a.text-warning:focus {
  424. color: #e6e6e6;
  425. }
  426. .text-danger {
  427. color: #fff;
  428. }
  429. a.text-danger:hover, a.text-danger:focus {
  430. color: #e6e6e6;
  431. }
  432. .bg-primary {
  433. color: #fff;
  434. background-color: #62a8ea;
  435. }
  436. a.bg-primary:hover, a.bg-primary:focus {
  437. background-color: #358fe4;
  438. }
  439. .bg-success {
  440. background-color: #46be8a;
  441. }
  442. a.bg-success:hover, a.bg-success:focus {
  443. background-color: #369b6f;
  444. }
  445. .bg-info {
  446. background-color: #57c7d4;
  447. }
  448. a.bg-info:hover, a.bg-info:focus {
  449. background-color: #33b6c5;
  450. }
  451. .bg-warning {
  452. background-color: #f2a654;
  453. }
  454. a.bg-warning:hover, a.bg-warning:focus {
  455. background-color: #ee8d25;
  456. }
  457. .bg-danger {
  458. background-color: #f96868;
  459. }
  460. a.bg-danger:hover, a.bg-danger:focus {
  461. background-color: #f73737;
  462. }
  463. .page-header {
  464. padding-bottom: 10px;
  465. margin: 44px 0 22px;
  466. border-bottom: 1px solid transparent;
  467. }
  468. ul, ol {
  469. margin-top: 0;
  470. margin-bottom: 11px;
  471. }
  472. ul ul, ol ul, ul ol, ol ol {
  473. margin-bottom: 0;
  474. }
  475. .list-unstyled {
  476. padding-left: 0;
  477. list-style: none;
  478. }
  479. .list-inline {
  480. padding-left: 0;
  481. margin-left: -5px;
  482. list-style: none;
  483. }
  484. .list-inline > li {
  485. display: inline-block;
  486. padding-right: 5px;
  487. padding-left: 5px;
  488. }
  489. dl {
  490. margin-top: 0;
  491. margin-bottom: 22px;
  492. }
  493. dt, dd {
  494. line-height: 1.6;
  495. }
  496. dt {
  497. font-weight: bold;
  498. }
  499. dd {
  500. margin-left: 0;
  501. }
  502. @media (min-width: 768px) {
  503. .dl-horizontal dt {
  504. float: left;
  505. width: 160px;
  506. overflow: hidden;
  507. clear: left;
  508. text-align: right;
  509. text-overflow: ellipsis;
  510. white-space: nowrap;
  511. }
  512. .dl-horizontal dd {
  513. margin-left: 180px;
  514. }
  515. }
  516. abbr[title], abbr[data-original-title] {
  517. cursor: help;
  518. border-bottom: 1px dotted #e4eaec;
  519. }
  520. .initialism {
  521. font-size: 90%;
  522. text-transform: uppercase;
  523. }
  524. blockquote {
  525. padding: 11px 22px;
  526. margin: 0 0 22px;
  527. font-size: 17.5px;
  528. border-left: 5px solid #e4eaec;
  529. }
  530. blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
  531. margin-bottom: 0;
  532. }
  533. blockquote footer, blockquote small, blockquote .small {
  534. display: block;
  535. font-size: 80%;
  536. line-height: 1.6;
  537. color: #a3afb7;
  538. }
  539. blockquote footer:before, blockquote small:before, blockquote .small:before {
  540. content: "\2014 \00A0";
  541. }
  542. .blockquote-reverse, blockquote.pull-right {
  543. padding-right: 15px;
  544. padding-left: 0;
  545. text-align: right;
  546. border-right: 5px solid #e4eaec;
  547. border-left: 0;
  548. }
  549. .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
  550. content: "";
  551. }
  552. .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
  553. content: "\00A0 \2014";
  554. }
  555. address {
  556. margin-bottom: 22px;
  557. font-style: normal;
  558. line-height: 1.6;
  559. }
  560. code, kbd, pre, samp {
  561. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  562. }
  563. code {
  564. padding: 2px 4px;
  565. font-size: 90%;
  566. color: #5683ad;
  567. background-color: rgba(232, 241, 248, .1);
  568. border-radius: 3px;
  569. }
  570. kbd {
  571. padding: 2px 4px;
  572. font-size: 90%;
  573. color: #fff;
  574. background-color: #62a8ea;
  575. border-radius: 2px;
  576. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  577. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  578. }
  579. kbd kbd {
  580. padding: 0;
  581. font-size: 100%;
  582. font-weight: bold;
  583. -webkit-box-shadow: none;
  584. box-shadow: none;
  585. }
  586. pre {
  587. display: block;
  588. padding: 10.5px;
  589. margin: 0 0 11px;
  590. font-size: 13px;
  591. line-height: 1.6;
  592. color: inherit;
  593. word-break: break-all;
  594. word-wrap: break-word;
  595. background-color: #fff;
  596. border: 1px solid #ecf5fc;
  597. border-radius: 3px;
  598. }
  599. pre code {
  600. padding: 0;
  601. font-size: inherit;
  602. color: inherit;
  603. white-space: pre-wrap;
  604. background-color: transparent;
  605. border-radius: 0;
  606. }
  607. .pre-scrollable {
  608. max-height: 340px;
  609. overflow-y: scroll;
  610. }
  611. .container {
  612. padding-right: 12px;
  613. padding-left: 12px;
  614. margin-right: auto;
  615. margin-left: auto;
  616. }
  617. @media (min-width: 768px) {
  618. .container {
  619. width: 744px;
  620. }
  621. }
  622. @media (min-width: 992px) {
  623. .container {
  624. width: 964px;
  625. }
  626. }
  627. @media (min-width: 1200px) {
  628. .container {
  629. width: 1164px;
  630. }
  631. }
  632. .container-fluid {
  633. padding-right: 12px;
  634. padding-left: 12px;
  635. margin-right: auto;
  636. margin-left: auto;
  637. }
  638. .row {
  639. margin-right: -12px;
  640. margin-left: -12px;
  641. }
  642. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  643. position: relative;
  644. min-height: 1px;
  645. padding-right: 12px;
  646. padding-left: 12px;
  647. }
  648. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  649. float: left;
  650. }
  651. .col-xs-12 {
  652. width: 100%;
  653. }
  654. .col-xs-11 {
  655. width: 91.66666667%;
  656. }
  657. .col-xs-10 {
  658. width: 83.33333333%;
  659. }
  660. .col-xs-9 {
  661. width: 75%;
  662. }
  663. .col-xs-8 {
  664. width: 66.66666667%;
  665. }
  666. .col-xs-7 {
  667. width: 58.33333333%;
  668. }
  669. .col-xs-6 {
  670. width: 50%;
  671. }
  672. .col-xs-5 {
  673. width: 41.66666667%;
  674. }
  675. .col-xs-4 {
  676. width: 33.33333333%;
  677. }
  678. .col-xs-3 {
  679. width: 25%;
  680. }
  681. .col-xs-2 {
  682. width: 16.66666667%;
  683. }
  684. .col-xs-1 {
  685. width: 8.33333333%;
  686. }
  687. .col-xs-pull-12 {
  688. right: 100%;
  689. }
  690. .col-xs-pull-11 {
  691. right: 91.66666667%;
  692. }
  693. .col-xs-pull-10 {
  694. right: 83.33333333%;
  695. }
  696. .col-xs-pull-9 {
  697. right: 75%;
  698. }
  699. .col-xs-pull-8 {
  700. right: 66.66666667%;
  701. }
  702. .col-xs-pull-7 {
  703. right: 58.33333333%;
  704. }
  705. .col-xs-pull-6 {
  706. right: 50%;
  707. }
  708. .col-xs-pull-5 {
  709. right: 41.66666667%;
  710. }
  711. .col-xs-pull-4 {
  712. right: 33.33333333%;
  713. }
  714. .col-xs-pull-3 {
  715. right: 25%;
  716. }
  717. .col-xs-pull-2 {
  718. right: 16.66666667%;
  719. }
  720. .col-xs-pull-1 {
  721. right: 8.33333333%;
  722. }
  723. .col-xs-pull-0 {
  724. right: auto;
  725. }
  726. .col-xs-push-12 {
  727. left: 100%;
  728. }
  729. .col-xs-push-11 {
  730. left: 91.66666667%;
  731. }
  732. .col-xs-push-10 {
  733. left: 83.33333333%;
  734. }
  735. .col-xs-push-9 {
  736. left: 75%;
  737. }
  738. .col-xs-push-8 {
  739. left: 66.66666667%;
  740. }
  741. .col-xs-push-7 {
  742. left: 58.33333333%;
  743. }
  744. .col-xs-push-6 {
  745. left: 50%;
  746. }
  747. .col-xs-push-5 {
  748. left: 41.66666667%;
  749. }
  750. .col-xs-push-4 {
  751. left: 33.33333333%;
  752. }
  753. .col-xs-push-3 {
  754. left: 25%;
  755. }
  756. .col-xs-push-2 {
  757. left: 16.66666667%;
  758. }
  759. .col-xs-push-1 {
  760. left: 8.33333333%;
  761. }
  762. .col-xs-push-0 {
  763. left: auto;
  764. }
  765. .col-xs-offset-12 {
  766. margin-left: 100%;
  767. }
  768. .col-xs-offset-11 {
  769. margin-left: 91.66666667%;
  770. }
  771. .col-xs-offset-10 {
  772. margin-left: 83.33333333%;
  773. }
  774. .col-xs-offset-9 {
  775. margin-left: 75%;
  776. }
  777. .col-xs-offset-8 {
  778. margin-left: 66.66666667%;
  779. }
  780. .col-xs-offset-7 {
  781. margin-left: 58.33333333%;
  782. }
  783. .col-xs-offset-6 {
  784. margin-left: 50%;
  785. }
  786. .col-xs-offset-5 {
  787. margin-left: 41.66666667%;
  788. }
  789. .col-xs-offset-4 {
  790. margin-left: 33.33333333%;
  791. }
  792. .col-xs-offset-3 {
  793. margin-left: 25%;
  794. }
  795. .col-xs-offset-2 {
  796. margin-left: 16.66666667%;
  797. }
  798. .col-xs-offset-1 {
  799. margin-left: 8.33333333%;
  800. }
  801. .col-xs-offset-0 {
  802. margin-left: 0;
  803. }
  804. @media (min-width: 768px) {
  805. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  806. float: left;
  807. }
  808. .col-sm-12 {
  809. width: 100%;
  810. }
  811. .col-sm-11 {
  812. width: 91.66666667%;
  813. }
  814. .col-sm-10 {
  815. width: 83.33333333%;
  816. }
  817. .col-sm-9 {
  818. width: 75%;
  819. }
  820. .col-sm-8 {
  821. width: 66.66666667%;
  822. }
  823. .col-sm-7 {
  824. width: 58.33333333%;
  825. }
  826. .col-sm-6 {
  827. width: 50%;
  828. }
  829. .col-sm-5 {
  830. width: 41.66666667%;
  831. }
  832. .col-sm-4 {
  833. width: 33.33333333%;
  834. }
  835. .col-sm-3 {
  836. width: 25%;
  837. }
  838. .col-sm-2 {
  839. width: 16.66666667%;
  840. }
  841. .col-sm-1 {
  842. width: 8.33333333%;
  843. }
  844. .col-sm-pull-12 {
  845. right: 100%;
  846. }
  847. .col-sm-pull-11 {
  848. right: 91.66666667%;
  849. }
  850. .col-sm-pull-10 {
  851. right: 83.33333333%;
  852. }
  853. .col-sm-pull-9 {
  854. right: 75%;
  855. }
  856. .col-sm-pull-8 {
  857. right: 66.66666667%;
  858. }
  859. .col-sm-pull-7 {
  860. right: 58.33333333%;
  861. }
  862. .col-sm-pull-6 {
  863. right: 50%;
  864. }
  865. .col-sm-pull-5 {
  866. right: 41.66666667%;
  867. }
  868. .col-sm-pull-4 {
  869. right: 33.33333333%;
  870. }
  871. .col-sm-pull-3 {
  872. right: 25%;
  873. }
  874. .col-sm-pull-2 {
  875. right: 16.66666667%;
  876. }
  877. .col-sm-pull-1 {
  878. right: 8.33333333%;
  879. }
  880. .col-sm-pull-0 {
  881. right: auto;
  882. }
  883. .col-sm-push-12 {
  884. left: 100%;
  885. }
  886. .col-sm-push-11 {
  887. left: 91.66666667%;
  888. }
  889. .col-sm-push-10 {
  890. left: 83.33333333%;
  891. }
  892. .col-sm-push-9 {
  893. left: 75%;
  894. }
  895. .col-sm-push-8 {
  896. left: 66.66666667%;
  897. }
  898. .col-sm-push-7 {
  899. left: 58.33333333%;
  900. }
  901. .col-sm-push-6 {
  902. left: 50%;
  903. }
  904. .col-sm-push-5 {
  905. left: 41.66666667%;
  906. }
  907. .col-sm-push-4 {
  908. left: 33.33333333%;
  909. }
  910. .col-sm-push-3 {
  911. left: 25%;
  912. }
  913. .col-sm-push-2 {
  914. left: 16.66666667%;
  915. }
  916. .col-sm-push-1 {
  917. left: 8.33333333%;
  918. }
  919. .col-sm-push-0 {
  920. left: auto;
  921. }
  922. .col-sm-offset-12 {
  923. margin-left: 100%;
  924. }
  925. .col-sm-offset-11 {
  926. margin-left: 91.66666667%;
  927. }
  928. .col-sm-offset-10 {
  929. margin-left: 83.33333333%;
  930. }
  931. .col-sm-offset-9 {
  932. margin-left: 75%;
  933. }
  934. .col-sm-offset-8 {
  935. margin-left: 66.66666667%;
  936. }
  937. .col-sm-offset-7 {
  938. margin-left: 58.33333333%;
  939. }
  940. .col-sm-offset-6 {
  941. margin-left: 50%;
  942. }
  943. .col-sm-offset-5 {
  944. margin-left: 41.66666667%;
  945. }
  946. .col-sm-offset-4 {
  947. margin-left: 33.33333333%;
  948. }
  949. .col-sm-offset-3 {
  950. margin-left: 25%;
  951. }
  952. .col-sm-offset-2 {
  953. margin-left: 16.66666667%;
  954. }
  955. .col-sm-offset-1 {
  956. margin-left: 8.33333333%;
  957. }
  958. .col-sm-offset-0 {
  959. margin-left: 0;
  960. }
  961. }
  962. @media (min-width: 992px) {
  963. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  964. float: left;
  965. }
  966. .col-md-12 {
  967. width: 100%;
  968. }
  969. .col-md-11 {
  970. width: 91.66666667%;
  971. }
  972. .col-md-10 {
  973. width: 83.33333333%;
  974. }
  975. .col-md-9 {
  976. width: 75%;
  977. }
  978. .col-md-8 {
  979. width: 66.66666667%;
  980. }
  981. .col-md-7 {
  982. width: 58.33333333%;
  983. }
  984. .col-md-6 {
  985. width: 50%;
  986. }
  987. .col-md-5 {
  988. width: 41.66666667%;
  989. }
  990. .col-md-4 {
  991. width: 33.33333333%;
  992. }
  993. .col-md-3 {
  994. width: 25%;
  995. }
  996. .col-md-2 {
  997. width: 16.66666667%;
  998. }
  999. .col-md-1 {
  1000. width: 8.33333333%;
  1001. }
  1002. .col-md-pull-12 {
  1003. right: 100%;
  1004. }
  1005. .col-md-pull-11 {
  1006. right: 91.66666667%;
  1007. }
  1008. .col-md-pull-10 {
  1009. right: 83.33333333%;
  1010. }
  1011. .col-md-pull-9 {
  1012. right: 75%;
  1013. }
  1014. .col-md-pull-8 {
  1015. right: 66.66666667%;
  1016. }
  1017. .col-md-pull-7 {
  1018. right: 58.33333333%;
  1019. }
  1020. .col-md-pull-6 {
  1021. right: 50%;
  1022. }
  1023. .col-md-pull-5 {
  1024. right: 41.66666667%;
  1025. }
  1026. .col-md-pull-4 {
  1027. right: 33.33333333%;
  1028. }
  1029. .col-md-pull-3 {
  1030. right: 25%;
  1031. }
  1032. .col-md-pull-2 {
  1033. right: 16.66666667%;
  1034. }
  1035. .col-md-pull-1 {
  1036. right: 8.33333333%;
  1037. }
  1038. .col-md-pull-0 {
  1039. right: auto;
  1040. }
  1041. .col-md-push-12 {
  1042. left: 100%;
  1043. }
  1044. .col-md-push-11 {
  1045. left: 91.66666667%;
  1046. }
  1047. .col-md-push-10 {
  1048. left: 83.33333333%;
  1049. }
  1050. .col-md-push-9 {
  1051. left: 75%;
  1052. }
  1053. .col-md-push-8 {
  1054. left: 66.66666667%;
  1055. }
  1056. .col-md-push-7 {
  1057. left: 58.33333333%;
  1058. }
  1059. .col-md-push-6 {
  1060. left: 50%;
  1061. }
  1062. .col-md-push-5 {
  1063. left: 41.66666667%;
  1064. }
  1065. .col-md-push-4 {
  1066. left: 33.33333333%;
  1067. }
  1068. .col-md-push-3 {
  1069. left: 25%;
  1070. }
  1071. .col-md-push-2 {
  1072. left: 16.66666667%;
  1073. }
  1074. .col-md-push-1 {
  1075. left: 8.33333333%;
  1076. }
  1077. .col-md-push-0 {
  1078. left: auto;
  1079. }
  1080. .col-md-offset-12 {
  1081. margin-left: 100%;
  1082. }
  1083. .col-md-offset-11 {
  1084. margin-left: 91.66666667%;
  1085. }
  1086. .col-md-offset-10 {
  1087. margin-left: 83.33333333%;
  1088. }
  1089. .col-md-offset-9 {
  1090. margin-left: 75%;
  1091. }
  1092. .col-md-offset-8 {
  1093. margin-left: 66.66666667%;
  1094. }
  1095. .col-md-offset-7 {
  1096. margin-left: 58.33333333%;
  1097. }
  1098. .col-md-offset-6 {
  1099. margin-left: 50%;
  1100. }
  1101. .col-md-offset-5 {
  1102. margin-left: 41.66666667%;
  1103. }
  1104. .col-md-offset-4 {
  1105. margin-left: 33.33333333%;
  1106. }
  1107. .col-md-offset-3 {
  1108. margin-left: 25%;
  1109. }
  1110. .col-md-offset-2 {
  1111. margin-left: 16.66666667%;
  1112. }
  1113. .col-md-offset-1 {
  1114. margin-left: 8.33333333%;
  1115. }
  1116. .col-md-offset-0 {
  1117. margin-left: 0;
  1118. }
  1119. }
  1120. @media (min-width: 1200px) {
  1121. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  1122. float: left;
  1123. }
  1124. .col-lg-12 {
  1125. width: 100%;
  1126. }
  1127. .col-lg-11 {
  1128. width: 91.66666667%;
  1129. }
  1130. .col-lg-10 {
  1131. width: 83.33333333%;
  1132. }
  1133. .col-lg-9 {
  1134. width: 75%;
  1135. }
  1136. .col-lg-8 {
  1137. width: 66.66666667%;
  1138. }
  1139. .col-lg-7 {
  1140. width: 58.33333333%;
  1141. }
  1142. .col-lg-6 {
  1143. width: 50%;
  1144. }
  1145. .col-lg-5 {
  1146. width: 41.66666667%;
  1147. }
  1148. .col-lg-4 {
  1149. width: 33.33333333%;
  1150. }
  1151. .col-lg-3 {
  1152. width: 25%;
  1153. }
  1154. .col-lg-2 {
  1155. width: 16.66666667%;
  1156. }
  1157. .col-lg-1 {
  1158. width: 8.33333333%;
  1159. }
  1160. .col-lg-pull-12 {
  1161. right: 100%;
  1162. }
  1163. .col-lg-pull-11 {
  1164. right: 91.66666667%;
  1165. }
  1166. .col-lg-pull-10 {
  1167. right: 83.33333333%;
  1168. }
  1169. .col-lg-pull-9 {
  1170. right: 75%;
  1171. }
  1172. .col-lg-pull-8 {
  1173. right: 66.66666667%;
  1174. }
  1175. .col-lg-pull-7 {
  1176. right: 58.33333333%;
  1177. }
  1178. .col-lg-pull-6 {
  1179. right: 50%;
  1180. }
  1181. .col-lg-pull-5 {
  1182. right: 41.66666667%;
  1183. }
  1184. .col-lg-pull-4 {
  1185. right: 33.33333333%;
  1186. }
  1187. .col-lg-pull-3 {
  1188. right: 25%;
  1189. }
  1190. .col-lg-pull-2 {
  1191. right: 16.66666667%;
  1192. }
  1193. .col-lg-pull-1 {
  1194. right: 8.33333333%;
  1195. }
  1196. .col-lg-pull-0 {
  1197. right: auto;
  1198. }
  1199. .col-lg-push-12 {
  1200. left: 100%;
  1201. }
  1202. .col-lg-push-11 {
  1203. left: 91.66666667%;
  1204. }
  1205. .col-lg-push-10 {
  1206. left: 83.33333333%;
  1207. }
  1208. .col-lg-push-9 {
  1209. left: 75%;
  1210. }
  1211. .col-lg-push-8 {
  1212. left: 66.66666667%;
  1213. }
  1214. .col-lg-push-7 {
  1215. left: 58.33333333%;
  1216. }
  1217. .col-lg-push-6 {
  1218. left: 50%;
  1219. }
  1220. .col-lg-push-5 {
  1221. left: 41.66666667%;
  1222. }
  1223. .col-lg-push-4 {
  1224. left: 33.33333333%;
  1225. }
  1226. .col-lg-push-3 {
  1227. left: 25%;
  1228. }
  1229. .col-lg-push-2 {
  1230. left: 16.66666667%;
  1231. }
  1232. .col-lg-push-1 {
  1233. left: 8.33333333%;
  1234. }
  1235. .col-lg-push-0 {
  1236. left: auto;
  1237. }
  1238. .col-lg-offset-12 {
  1239. margin-left: 100%;
  1240. }
  1241. .col-lg-offset-11 {
  1242. margin-left: 91.66666667%;
  1243. }
  1244. .col-lg-offset-10 {
  1245. margin-left: 83.33333333%;
  1246. }
  1247. .col-lg-offset-9 {
  1248. margin-left: 75%;
  1249. }
  1250. .col-lg-offset-8 {
  1251. margin-left: 66.66666667%;
  1252. }
  1253. .col-lg-offset-7 {
  1254. margin-left: 58.33333333%;
  1255. }
  1256. .col-lg-offset-6 {
  1257. margin-left: 50%;
  1258. }
  1259. .col-lg-offset-5 {
  1260. margin-left: 41.66666667%;
  1261. }
  1262. .col-lg-offset-4 {
  1263. margin-left: 33.33333333%;
  1264. }
  1265. .col-lg-offset-3 {
  1266. margin-left: 25%;
  1267. }
  1268. .col-lg-offset-2 {
  1269. margin-left: 16.66666667%;
  1270. }
  1271. .col-lg-offset-1 {
  1272. margin-left: 8.33333333%;
  1273. }
  1274. .col-lg-offset-0 {
  1275. margin-left: 0;
  1276. }
  1277. }
  1278. table {
  1279. background-color: transparent;
  1280. }
  1281. caption {
  1282. padding-top: 6px;
  1283. padding-bottom: 6px;
  1284. color: #526069;
  1285. text-align: left;
  1286. }
  1287. th {
  1288. text-align: left;
  1289. }
  1290. .table {
  1291. width: 100%;
  1292. max-width: 100%;
  1293. margin-bottom: 22px;
  1294. }
  1295. .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  1296. padding: 6px;
  1297. line-height: 1.6;
  1298. vertical-align: top;
  1299. border-top: 1px solid #e4eaec;
  1300. }
  1301. .table > thead > tr > th {
  1302. vertical-align: bottom;
  1303. border-bottom: 2px solid #e4eaec;
  1304. }
  1305. .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
  1306. border-top: 0;
  1307. }
  1308. .table > tbody + tbody {
  1309. border-top: 2px solid #e4eaec;
  1310. }
  1311. .table .table {
  1312. background-color: #fff;
  1313. }
  1314. .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
  1315. padding: 5px;
  1316. }
  1317. .table-bordered {
  1318. border: 1px solid #e4eaec;
  1319. }
  1320. .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  1321. border: 1px solid #e4eaec;
  1322. }
  1323. .table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  1324. border-bottom-width: 2px;
  1325. }
  1326. .table-striped > tbody > tr:nth-of-type(odd) {
  1327. background-color: rgba(243, 247, 249, .3);
  1328. }
  1329. .table-hover > tbody > tr:hover {
  1330. background-color: #f3f7f9;
  1331. }
  1332. table col[class*="col-"] {
  1333. position: static;
  1334. display: table-column;
  1335. float: none;
  1336. }
  1337. table td[class*="col-"], table th[class*="col-"] {
  1338. position: static;
  1339. display: table-cell;
  1340. float: none;
  1341. }
  1342. .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
  1343. background-color: #f3f7f9;
  1344. }
  1345. .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  1346. background-color: #e2ecf1;
  1347. }
  1348. .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
  1349. background-color: #46be8a;
  1350. }
  1351. .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  1352. background-color: #3dae7d;
  1353. }
  1354. .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  1355. background-color: #57c7d4;
  1356. }
  1357. .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  1358. background-color: #43c0cf;
  1359. }
  1360. .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
  1361. background-color: #f2a654;
  1362. }
  1363. .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  1364. background-color: #f09a3c;
  1365. }
  1366. .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
  1367. background-color: #f96868;
  1368. }
  1369. .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  1370. background-color: #f84f4f;
  1371. }
  1372. .table-responsive {
  1373. min-height: .01%;
  1374. overflow-x: auto;
  1375. }
  1376. @media screen and (max-width: 767px) {
  1377. .table-responsive {
  1378. width: 100%;
  1379. margin-bottom: 16.5px;
  1380. overflow-y: hidden;
  1381. -ms-overflow-style: -ms-autohiding-scrollbar;
  1382. border: 1px solid #e4eaec;
  1383. }
  1384. .table-responsive > .table {
  1385. margin-bottom: 0;
  1386. }
  1387. .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
  1388. white-space: nowrap;
  1389. }
  1390. .table-responsive > .table-bordered {
  1391. border: 0;
  1392. }
  1393. .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1394. border-left: 0;
  1395. }
  1396. .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1397. border-right: 0;
  1398. }
  1399. .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  1400. border-bottom: 0;
  1401. }
  1402. }
  1403. fieldset {
  1404. min-width: 0;
  1405. padding: 0;
  1406. margin: 0;
  1407. border: 0;
  1408. }
  1409. legend {
  1410. display: block;
  1411. width: 100%;
  1412. padding: 0;
  1413. margin-bottom: 22px;
  1414. font-size: 21px;
  1415. line-height: inherit;
  1416. color: inherit;
  1417. border: 0;
  1418. border-bottom: 1px solid transparent;
  1419. }
  1420. label {
  1421. display: inline-block;
  1422. max-width: 100%;
  1423. margin-bottom: 5px;
  1424. font-weight: bold;
  1425. }
  1426. input[type="search"] {
  1427. -webkit-box-sizing: border-box;
  1428. -moz-box-sizing: border-box;
  1429. box-sizing: border-box;
  1430. }
  1431. input[type="radio"], input[type="checkbox"] {
  1432. margin: 4px 0 0;
  1433. margin-top: 1px \9;
  1434. line-height: normal;
  1435. }
  1436. input[type="file"] {
  1437. display: block;
  1438. }
  1439. input[type="range"] {
  1440. display: block;
  1441. width: 100%;
  1442. }
  1443. select[multiple], select[size] {
  1444. height: auto;
  1445. }
  1446. input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  1447. outline: thin dotted;
  1448. outline: 5px auto -webkit-focus-ring-color;
  1449. outline: none;
  1450. outline-offset: -2px;
  1451. }
  1452. output {
  1453. display: block;
  1454. padding-top: 5px;
  1455. font-size: 14px;
  1456. line-height: 1.6;
  1457. color: #76838f;
  1458. }
  1459. .form-control {
  1460. /*display: block;*/
  1461. width: 100%;
  1462. height: 32px;
  1463. padding: 4px 12px;
  1464. font-size: 14px;
  1465. line-height: 1.6;
  1466. color: #76838f;
  1467. background-color: #fff;
  1468. background-image: none;
  1469. border: 1px solid #e4eaec;
  1470. border-radius: 3px;
  1471. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1472. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1473. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1474. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  1475. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1476. transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  1477. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1478. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  1479. }
  1480. .form-control:focus {
  1481. border-color: #62a8ea;
  1482. outline: 0;
  1483. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(98, 168, 234, .6);
  1484. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(98, 168, 234, .6);
  1485. }
  1486. .form-control.focus, .form-control:focus {
  1487. border-color: #62a8ea;
  1488. -webkit-box-shadow: none;
  1489. box-shadow: none;
  1490. }
  1491. .form-control::-moz-placeholder {
  1492. color: #a3afb7;
  1493. opacity: 1;
  1494. }
  1495. .form-control:-ms-input-placeholder {
  1496. color: #a3afb7;
  1497. }
  1498. .form-control::-webkit-input-placeholder {
  1499. color: #a3afb7;
  1500. }
  1501. .form-control::-ms-expand {
  1502. background-color: transparent;
  1503. border: 0;
  1504. }
  1505. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  1506. background-color: #f3f7f9;
  1507. opacity: 1;
  1508. }
  1509. .form-control[disabled], fieldset[disabled] .form-control {
  1510. cursor: not-allowed;
  1511. }
  1512. textarea.form-control {
  1513. height: auto;
  1514. }
  1515. input[type="search"] {
  1516. -webkit-appearance: none;
  1517. }
  1518. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  1519. input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control {
  1520. line-height: 32px;
  1521. }
  1522. input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] {
  1523. line-height: 26px;
  1524. }
  1525. input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] {
  1526. line-height: 38px;
  1527. }
  1528. }
  1529. .form-group {
  1530. margin-bottom: 12px;
  1531. }
  1532. .radio, .checkbox {
  1533. position: relative;
  1534. display: block;
  1535. margin-top: 10px;
  1536. margin-bottom: 10px;
  1537. }
  1538. .radio label, .checkbox label {
  1539. min-height: 22px;
  1540. padding-left: 20px;
  1541. margin-bottom: 0;
  1542. font-weight: normal;
  1543. cursor: pointer;
  1544. }
  1545. .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  1546. position: absolute;
  1547. margin-top: 4px \9;
  1548. margin-left: -20px;
  1549. }
  1550. .radio + .radio, .checkbox + .checkbox {
  1551. margin-top: -5px;
  1552. }
  1553. .radio-inline, .checkbox-inline {
  1554. position: relative;
  1555. display: inline-block;
  1556. padding-left: 20px;
  1557. margin-bottom: 0;
  1558. font-weight: normal;
  1559. vertical-align: middle;
  1560. cursor: pointer;
  1561. }
  1562. .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  1563. margin-top: 0;
  1564. margin-left: 10px;
  1565. }
  1566. input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
  1567. cursor: not-allowed;
  1568. }
  1569. .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
  1570. cursor: not-allowed;
  1571. }
  1572. .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
  1573. cursor: not-allowed;
  1574. }
  1575. .form-control-static {
  1576. min-height: 36px;
  1577. padding-top: 5px;
  1578. padding-bottom: 5px;
  1579. margin-bottom: 0;
  1580. }
  1581. .form-control-static.input-lg, .form-control-static.input-sm {
  1582. padding-right: 0;
  1583. padding-left: 0;
  1584. }
  1585. .input-sm {
  1586. height: 26px;
  1587. padding: 3px 10px;
  1588. font-size: 12px;
  1589. line-height: 1.5;
  1590. border-radius: 2px;
  1591. }
  1592. select.input-sm {
  1593. height: 26px;
  1594. line-height: 26px;
  1595. }
  1596. textarea.input-sm, select[multiple] .input-sm {
  1597. height: auto;
  1598. }
  1599. select.input-sm {
  1600. padding-top: 0;
  1601. padding-bottom: 0;
  1602. }
  1603. .form-group-sm .form-control {
  1604. height: 26px;
  1605. padding: 3px 10px;
  1606. font-size: 12px;
  1607. line-height: 1.5;
  1608. border-radius: 2px;
  1609. }
  1610. .form-group-sm select.form-control {
  1611. height: 26px;
  1612. line-height: 26px;
  1613. }
  1614. .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control {
  1615. height: auto;
  1616. }
  1617. .form-group-sm .form-control-static {
  1618. height: 26px;
  1619. min-height: 34px;
  1620. padding: 4px 10px;
  1621. font-size: 12px;
  1622. line-height: 1.5;
  1623. }
  1624. .input-lg {
  1625. height: 38px;
  1626. padding: 6px 18px;
  1627. font-size: 18px;
  1628. line-height: 1.3333333;
  1629. border-radius: 4px;
  1630. }
  1631. select.input-lg {
  1632. height: 38px;
  1633. line-height: 38px;
  1634. }
  1635. textarea.input-lg, select[multiple] .input-lg {
  1636. height: auto;
  1637. }
  1638. select.input-lg {
  1639. padding-top: 0;
  1640. padding-bottom: 0;
  1641. }
  1642. .form-group-lg .form-control {
  1643. height: 38px;
  1644. padding: 6px 18px;
  1645. font-size: 18px;
  1646. line-height: 1.3333333;
  1647. border-radius: 4px;
  1648. }
  1649. .form-group-lg select.form-control {
  1650. height: 38px;
  1651. line-height: 38px;
  1652. }
  1653. .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control {
  1654. height: auto;
  1655. }
  1656. .form-group-lg .form-control-static {
  1657. height: 38px;
  1658. min-height: 40px;
  1659. padding: 7px 18px;
  1660. font-size: 18px;
  1661. line-height: 1.3333333;
  1662. }
  1663. .has-feedback {
  1664. position: relative;
  1665. }
  1666. .has-feedback .form-control {
  1667. padding-right: 40px;
  1668. }
  1669. .form-control-feedback {
  1670. position: absolute;
  1671. top: 0;
  1672. right: 0;
  1673. z-index: 2;
  1674. display: block;
  1675. width: 32px;
  1676. height: 32px;
  1677. line-height: 32px;
  1678. text-align: center;
  1679. pointer-events: none;
  1680. }
  1681. .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback {
  1682. width: 38px;
  1683. height: 38px;
  1684. line-height: 38px;
  1685. }
  1686. .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback {
  1687. width: 26px;
  1688. height: 26px;
  1689. line-height: 26px;
  1690. }
  1691. .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  1692. color: #fff;
  1693. }
  1694. .has-success .form-control {
  1695. border-color: #fff;
  1696. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1697. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1698. }
  1699. .has-success .form-control:focus {
  1700. border-color: #e6e6e6;
  1701. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #fff;
  1702. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #fff;
  1703. }
  1704. .has-success .input-group-addon {
  1705. color: #fff;
  1706. background-color: #46be8a;
  1707. border-color: #fff;
  1708. }
  1709. .has-success .form-control-feedback {
  1710. color: #fff;
  1711. }
  1712. .has-success .form-control {
  1713. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  1714. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  1715. }
  1716. .has-success .form-control:focus {
  1717. border-color: #fff;
  1718. outline: 0;
  1719. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, .6);
  1720. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, .6);
  1721. }
  1722. .has-success .form-control.focus, .has-success .form-control:focus {
  1723. border-color: #fff;
  1724. -webkit-box-shadow: none;
  1725. box-shadow: none;
  1726. }
  1727. .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  1728. color: #fff;
  1729. }
  1730. .has-warning .form-control {
  1731. border-color: #fff;
  1732. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1733. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1734. }
  1735. .has-warning .form-control:focus {
  1736. border-color: #e6e6e6;
  1737. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #fff;
  1738. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #fff;
  1739. }
  1740. .has-warning .input-group-addon {
  1741. color: #fff;
  1742. background-color: #f2a654;
  1743. border-color: #fff;
  1744. }
  1745. .has-warning .form-control-feedback {
  1746. color: #fff;
  1747. }
  1748. .has-warning .form-control {
  1749. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  1750. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  1751. }
  1752. .has-warning .form-control:focus {
  1753. border-color: #fff;
  1754. outline: 0;
  1755. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, .6);
  1756. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, .6);
  1757. }
  1758. .has-warning .form-control.focus, .has-warning .form-control:focus {
  1759. border-color: #fff;
  1760. -webkit-box-shadow: none;
  1761. box-shadow: none;
  1762. }
  1763. .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  1764. color: #fff;
  1765. }
  1766. .has-error .form-control {
  1767. border-color: #fff;
  1768. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1769. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  1770. }
  1771. .has-error .form-control:focus {
  1772. border-color: #e6e6e6;
  1773. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #fff;
  1774. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #fff;
  1775. }
  1776. .has-error .input-group-addon {
  1777. color: #fff;
  1778. background-color: #f96868;
  1779. border-color: #fff;
  1780. }
  1781. .has-error .form-control-feedback {
  1782. color: #fff;
  1783. }
  1784. .has-error .form-control {
  1785. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  1786. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  1787. }
  1788. .has-error .form-control:focus {
  1789. border-color: #fff;
  1790. outline: 0;
  1791. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, .6);
  1792. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, .6);
  1793. }
  1794. .has-error .form-control.focus, .has-error .form-control:focus {
  1795. border-color: #fff;
  1796. -webkit-box-shadow: none;
  1797. box-shadow: none;
  1798. }
  1799. .has-feedback label ~ .form-control-feedback {
  1800. top: 27px;
  1801. }
  1802. .has-feedback label.sr-only ~ .form-control-feedback {
  1803. top: 0;
  1804. }
  1805. .help-block {
  1806. display: block;
  1807. margin-top: 5px;
  1808. margin-bottom: 10px;
  1809. color: #bcc2c8;
  1810. }
  1811. @media (min-width: 768px) {
  1812. .form-inline .form-group {
  1813. display: inline-block;
  1814. margin-bottom: 0;
  1815. vertical-align: middle;
  1816. }
  1817. .form-inline .form-control {
  1818. display: inline-block;
  1819. width: auto;
  1820. vertical-align: middle;
  1821. }
  1822. .form-inline .form-control-static {
  1823. display: inline-block;
  1824. }
  1825. .form-inline .input-group {
  1826. display: inline-table;
  1827. vertical-align: middle;
  1828. }
  1829. .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
  1830. width: auto;
  1831. }
  1832. .form-inline .input-group > .form-control {
  1833. width: 100%;
  1834. }
  1835. .form-inline .control-label {
  1836. margin-bottom: 0;
  1837. vertical-align: middle;
  1838. }
  1839. .form-inline .radio, .form-inline .checkbox {
  1840. display: inline-block;
  1841. margin-top: 0;
  1842. margin-bottom: 0;
  1843. vertical-align: middle;
  1844. }
  1845. .form-inline .radio label, .form-inline .checkbox label {
  1846. padding-left: 0;
  1847. }
  1848. .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
  1849. position: relative;
  1850. margin-left: 0;
  1851. }
  1852. .form-inline .has-feedback .form-control-feedback {
  1853. top: 0;
  1854. }
  1855. }
  1856. .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  1857. padding-top: 5px;
  1858. margin-top: 0;
  1859. margin-bottom: 0;
  1860. }
  1861. .form-horizontal .radio, .form-horizontal .checkbox {
  1862. min-height: 27px;
  1863. }
  1864. .form-horizontal .form-group {
  1865. margin-right: -12px;
  1866. margin-left: -12px;
  1867. }
  1868. @media (min-width: 768px) {
  1869. .form-horizontal .control-label {
  1870. padding-top: 5px;
  1871. margin-bottom: 0;
  1872. text-align: right;
  1873. }
  1874. }
  1875. .form-horizontal .has-feedback .form-control-feedback {
  1876. right: 12px;
  1877. }
  1878. @media (min-width: 768px) {
  1879. .form-horizontal .form-group-lg .control-label {
  1880. padding-top: 7px;
  1881. font-size: 18px;
  1882. }
  1883. }
  1884. @media (min-width: 768px) {
  1885. .form-horizontal .form-group-sm .control-label {
  1886. padding-top: 4px;
  1887. font-size: 12px;
  1888. }
  1889. }
  1890. .btn {
  1891. display: inline-block;
  1892. padding: 6px 12px;
  1893. margin-bottom: 0;
  1894. font-size: 14px;
  1895. font-weight: 400;
  1896. line-height: 1.42857143;
  1897. text-align: center;
  1898. white-space: nowrap;
  1899. vertical-align: middle;
  1900. -ms-touch-action: manipulation;
  1901. touch-action: manipulation;
  1902. cursor: pointer;
  1903. -webkit-user-select: none;
  1904. -moz-user-select: none;
  1905. -ms-user-select: none;
  1906. user-select: none;
  1907. background-image: none;
  1908. border: 1px solid transparent;
  1909. border-radius: 3px;
  1910. outline:none;
  1911. }
  1912. .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
  1913. outline: thin dotted;
  1914. outline: 5px auto -webkit-focus-ring-color;
  1915. outline: none;
  1916. outline-offset: -2px;
  1917. }
  1918. .btn:hover, .btn:focus, .btn.focus {
  1919. color: #76838f;
  1920. text-decoration: none;
  1921. }
  1922. .btn:active, .btn.active {
  1923. background-image: none;
  1924. outline: 0;
  1925. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1926. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1927. }
  1928. .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  1929. cursor: not-allowed;
  1930. filter: alpha(opacity=65);
  1931. -webkit-box-shadow: none;
  1932. box-shadow: none;
  1933. opacity: .65;
  1934. }
  1935. a.btn.disabled, fieldset[disabled] a.btn {
  1936. pointer-events: none;
  1937. }
  1938. .btn-default {
  1939. color: #76838f;
  1940. background-color: #e4eaec;
  1941. border-color: #e4eaec;
  1942. }
  1943. .btn-default:focus, .btn-default.focus {
  1944. color: #76838f;
  1945. background-color: #c6d3d7;
  1946. border-color: #99b0b7;
  1947. }
  1948. .btn-default:hover {
  1949. color: #76838f;
  1950. background-color: #c6d3d7;
  1951. border-color: #c0ced3;
  1952. }
  1953. .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  1954. color: #76838f;
  1955. background-color: #c6d3d7;
  1956. border-color: #c0ced3;
  1957. }
  1958. .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus {
  1959. color: #76838f;
  1960. background-color: #b1c2c8;
  1961. border-color: #99b0b7;
  1962. }
  1963. .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  1964. background-image: none;
  1965. }
  1966. .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus {
  1967. background-color: #e4eaec;
  1968. border-color: #e4eaec;
  1969. }
  1970. .btn-default .badge {
  1971. color: #e4eaec;
  1972. background-color: #76838f;
  1973. }
  1974. .btn-primary {
  1975. color: #fff;
  1976. background-color: #20a0ff;
  1977. border-color: #20a0ff;
  1978. }
  1979. .btn-primary:focus, .btn-primary.focus {
  1980. color: #fff;
  1981. background-color: #4db3ff;
  1982. border-color: #4db3ff;
  1983. }
  1984. .btn-primary:hover {
  1985. color: #fff;
  1986. background-color: #4db3ff;
  1987. border-color: #4db3ff;
  1988. }
  1989. .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  1990. color: #fff;
  1991. background-color: #4db3ff;
  1992. border-color: #4db3ff;
  1993. }
  1994. .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
  1995. color: #fff;
  1996. background-color: #4db3ff;
  1997. border-color: #4db3ff;
  1998. }
  1999. .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  2000. background-image: none;
  2001. }
  2002. .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus {
  2003. background-color: #eef1f6;
  2004. border-color: #d1dbe5;
  2005. color: #bfcbd9;
  2006. }
  2007. .btn-primary .badge {
  2008. color: #4db3ff;
  2009. background-color: #fff;
  2010. }
  2011. .btn-success {
  2012. color: #fff;
  2013. background-color: #46be8a;
  2014. border-color: #46be8a;
  2015. }
  2016. .btn-success:focus, .btn-success.focus {
  2017. color: #fff;
  2018. background-color: #369b6f;
  2019. border-color: #226246;
  2020. }
  2021. .btn-success:hover {
  2022. color: #fff;
  2023. background-color: #369b6f;
  2024. border-color: #34936a;
  2025. }
  2026. .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  2027. color: #fff;
  2028. background-color: #369b6f;
  2029. border-color: #34936a;
  2030. }
  2031. .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus {
  2032. color: #fff;
  2033. background-color: #2d805c;
  2034. border-color: #226246;
  2035. }
  2036. .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  2037. background-image: none;
  2038. }
  2039. .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus {
  2040. background-color: #46be8a;
  2041. border-color: #46be8a;
  2042. }
  2043. .btn-success .badge {
  2044. color: #46be8a;
  2045. background-color: #fff;
  2046. }
  2047. .btn-info {
  2048. color: #fff;
  2049. background-color: #57c7d4;
  2050. border-color: #57c7d4;
  2051. }
  2052. .btn-info:focus, .btn-info.focus {
  2053. color: #fff;
  2054. background-color: #33b6c5;
  2055. border-color: #237e89;
  2056. }
  2057. .btn-info:hover {
  2058. color: #fff;
  2059. background-color: #33b6c5;
  2060. border-color: #30afbd;
  2061. }
  2062. .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  2063. color: #fff;
  2064. background-color: #33b6c5;
  2065. border-color: #30afbd;
  2066. }
  2067. .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus {
  2068. color: #fff;
  2069. background-color: #2b9ca9;
  2070. border-color: #237e89;
  2071. }
  2072. .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  2073. background-image: none;
  2074. }
  2075. .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus {
  2076. background-color: #57c7d4;
  2077. border-color: #57c7d4;
  2078. }
  2079. .btn-info .badge {
  2080. color: #57c7d4;
  2081. background-color: #fff;
  2082. }
  2083. .btn-warning {
  2084. color: #fff;
  2085. background-color: #f2a654;
  2086. border-color: #f2a654;
  2087. }
  2088. .btn-warning:focus, .btn-warning.focus {
  2089. color: #fff;
  2090. background-color: #ee8d25;
  2091. border-color: #b8660e;
  2092. }
  2093. .btn-warning:hover {
  2094. color: #fff;
  2095. background-color: #ee8d25;
  2096. border-color: #ee881b;
  2097. }
  2098. .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  2099. color: #fff;
  2100. background-color: #ee8d25;
  2101. border-color: #ee881b;
  2102. }
  2103. .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus {
  2104. color: #fff;
  2105. background-color: #de7c11;
  2106. border-color: #b8660e;
  2107. }
  2108. .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  2109. background-image: none;
  2110. }
  2111. .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus {
  2112. background-color: #f2a654;
  2113. border-color: #f2a654;
  2114. }
  2115. .btn-warning .badge {
  2116. color: #f2a654;
  2117. background-color: #fff;
  2118. }
  2119. .btn-danger {
  2120. color: #fff;
  2121. background-color: #f96868;
  2122. border-color: #f96868;
  2123. }
  2124. .btn-danger:focus, .btn-danger.focus {
  2125. color: #fff;
  2126. background-color: #f73737;
  2127. border-color: #d90909;
  2128. }
  2129. .btn-danger:hover {
  2130. color: #fff;
  2131. background-color: #f73737;
  2132. border-color: #f72d2d;
  2133. }
  2134. .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  2135. color: #fff;
  2136. background-color: #f73737;
  2137. border-color: #f72d2d;
  2138. }
  2139. .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus {
  2140. color: #fff;
  2141. background-color: #f61515;
  2142. border-color: #d90909;
  2143. }
  2144. .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  2145. background-image: none;
  2146. }
  2147. .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus {
  2148. background-color: #f96868;
  2149. border-color: #f96868;
  2150. }
  2151. .btn-danger .badge {
  2152. color: #f96868;
  2153. background-color: #fff;
  2154. }
  2155. .btn-link {
  2156. font-weight: normal;
  2157. color: #62a8ea;
  2158. border-radius: 0;
  2159. }
  2160. .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  2161. background-color: transparent;
  2162. -webkit-box-shadow: none;
  2163. box-shadow: none;
  2164. }
  2165. .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  2166. border-color: transparent;
  2167. }
  2168. .btn-link:hover, .btn-link:focus {
  2169. color: #89bceb;
  2170. text-decoration: underline;
  2171. background-color: transparent;
  2172. }
  2173. .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
  2174. color: #a3afb7;
  2175. text-decoration: none;
  2176. }
  2177. .btn-lg, .btn-group-lg > .btn {
  2178. padding: 10px 16px;
  2179. font-size: 18px;
  2180. line-height: 1.3333333;
  2181. border-radius: 6px;
  2182. }
  2183. .btn-sm, .btn-group-sm > .btn {
  2184. padding: 5px 10px;
  2185. font-size: 12px;
  2186. line-height: 1.5;
  2187. border-radius: 3px;
  2188. }
  2189. .btn-xs, .btn-group-xs > .btn {
  2190. padding: 1px 5px;
  2191. font-size: 12px;
  2192. line-height: 1.5;
  2193. border-radius: 3px;
  2194. }
  2195. .btn-block {
  2196. display: block;
  2197. width: 100%;
  2198. }
  2199. .btn-block + .btn-block {
  2200. margin-top: 5px;
  2201. }
  2202. input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  2203. width: 100%;
  2204. }
  2205. .fade {
  2206. opacity: 0;
  2207. -webkit-transition: opacity .15s linear;
  2208. -o-transition: opacity .15s linear;
  2209. transition: opacity .15s linear;
  2210. }
  2211. .fade.in {
  2212. opacity: 1;
  2213. }
  2214. .collapse {
  2215. display: none;
  2216. }
  2217. .collapse.in {
  2218. display: block;
  2219. }
  2220. tr.collapse.in {
  2221. display: table-row;
  2222. }
  2223. tbody.collapse.in {
  2224. display: table-row-group;
  2225. }
  2226. .collapsing {
  2227. position: relative;
  2228. height: 0;
  2229. overflow: hidden;
  2230. -webkit-transition-timing-function: ease;
  2231. -o-transition-timing-function: ease;
  2232. transition-timing-function: ease;
  2233. -webkit-transition-duration: .35s;
  2234. -o-transition-duration: .35s;
  2235. transition-duration: .35s;
  2236. -webkit-transition-property: height, visibility;
  2237. -o-transition-property: height, visibility;
  2238. transition-property: height, visibility;
  2239. }
  2240. .caret {
  2241. display: inline-block;
  2242. width: 0;
  2243. height: 0;
  2244. margin-left: 2px;
  2245. vertical-align: middle;
  2246. border-top: 4px dashed;
  2247. border-top: 4px solid \9;
  2248. border-right: 4px solid transparent;
  2249. border-left: 4px solid transparent;
  2250. }
  2251. .dropup, .dropdown {
  2252. position: relative;
  2253. }
  2254. .dropdown-toggle:focus {
  2255. outline: 0;
  2256. }
  2257. .dropdown-menu {
  2258. position: absolute;
  2259. top: 100%;
  2260. left: 0;
  2261. z-index: 1200;
  2262. display: none;
  2263. float: left;
  2264. min-width: 160px;
  2265. padding: 5px 0;
  2266. margin: 2px 0 0;
  2267. font-size: 14px;
  2268. text-align: left;
  2269. list-style: none;
  2270. background-color: #fff;
  2271. -webkit-background-clip: padding-box;
  2272. background-clip: padding-box;
  2273. border: 1px solid #ccc;
  2274. border: 1px solid #e4eaec;
  2275. border-radius: 3px;
  2276. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  2277. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  2278. }
  2279. .dropdown-menu.pull-right {
  2280. right: 0;
  2281. left: auto;
  2282. }
  2283. .dropdown-menu .divider {
  2284. height: 1px;
  2285. margin: 10px 0;
  2286. overflow: hidden;
  2287. background-color: #e4eaec;
  2288. }
  2289. .dropdown-menu > li > a {
  2290. display: block;
  2291. padding: 3px 20px;
  2292. clear: both;
  2293. font-weight: normal;
  2294. line-height: 1.6;
  2295. color: #76838f;
  2296. white-space: nowrap;
  2297. }
  2298. .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  2299. color: #76838f;
  2300. text-decoration: none;
  2301. background-color: #f3f7f9;
  2302. }
  2303. .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  2304. color: #76838f;
  2305. text-decoration: none;
  2306. background-color: #f3f7f9;
  2307. outline: 0;
  2308. }
  2309. .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  2310. color: #ccd5db;
  2311. }
  2312. .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  2313. text-decoration: none;
  2314. cursor: not-allowed;
  2315. background-color: transparent;
  2316. background-image: none;
  2317. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2318. }
  2319. .open > .dropdown-menu {
  2320. display: block;
  2321. }
  2322. .open > a {
  2323. outline: 0;
  2324. }
  2325. .dropdown-menu-right {
  2326. right: 0;
  2327. left: auto;
  2328. }
  2329. .dropdown-menu-left {
  2330. right: auto;
  2331. left: 0;
  2332. }
  2333. .dropdown-header {
  2334. display: block;
  2335. padding: 3px 20px;
  2336. font-size: 12px;
  2337. line-height: 1.6;
  2338. color: #37474f;
  2339. white-space: nowrap;
  2340. }
  2341. .dropdown-backdrop {
  2342. position: fixed;
  2343. top: 0;
  2344. right: 0;
  2345. bottom: 0;
  2346. left: 0;
  2347. z-index: 1190;
  2348. }
  2349. .pull-right > .dropdown-menu {
  2350. right: 0;
  2351. left: auto;
  2352. }
  2353. .dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  2354. content: "";
  2355. border-top: 0;
  2356. border-bottom: 4px dashed;
  2357. border-bottom: 4px solid \9;
  2358. }
  2359. .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  2360. top: auto;
  2361. bottom: 100%;
  2362. margin-bottom: 2px;
  2363. }
  2364. @media (min-width: 768px) {
  2365. .navbar-right .dropdown-menu {
  2366. right: 0;
  2367. left: auto;
  2368. }
  2369. .navbar-right .dropdown-menu-left {
  2370. right: auto;
  2371. left: 0;
  2372. }
  2373. }
  2374. .btn-group, .btn-group-vertical {
  2375. position: relative;
  2376. display: inline-block;
  2377. vertical-align: middle;
  2378. }
  2379. .btn-group > .btn, .btn-group-vertical > .btn {
  2380. position: relative;
  2381. float: left;
  2382. }
  2383. .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
  2384. z-index: 2;
  2385. }
  2386. .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  2387. margin-left: -1px;
  2388. }
  2389. .btn-toolbar {
  2390. margin-left: -5px;
  2391. }
  2392. .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
  2393. float: left;
  2394. }
  2395. .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  2396. margin-left: 5px;
  2397. }
  2398. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2399. border-radius: 0;
  2400. }
  2401. .btn-group > .btn:first-child {
  2402. margin-left: 0;
  2403. }
  2404. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2405. border-top-right-radius: 0;
  2406. border-bottom-right-radius: 0;
  2407. }
  2408. .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  2409. border-top-left-radius: 0;
  2410. border-bottom-left-radius: 0;
  2411. }
  2412. .btn-group > .btn-group {
  2413. float: left;
  2414. }
  2415. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  2416. border-radius: 0;
  2417. }
  2418. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  2419. border-top-right-radius: 0;
  2420. border-bottom-right-radius: 0;
  2421. }
  2422. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  2423. border-top-left-radius: 0;
  2424. border-bottom-left-radius: 0;
  2425. }
  2426. .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  2427. outline: 0;
  2428. }
  2429. .btn-group > .btn + .dropdown-toggle {
  2430. padding-right: 8px;
  2431. padding-left: 8px;
  2432. }
  2433. .btn-group > .btn-lg + .dropdown-toggle {
  2434. padding-right: 12px;
  2435. padding-left: 12px;
  2436. }
  2437. .btn-group.open .dropdown-toggle {
  2438. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2439. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2440. }
  2441. .btn-group.open .dropdown-toggle.btn-link {
  2442. -webkit-box-shadow: none;
  2443. box-shadow: none;
  2444. }
  2445. .btn .caret {
  2446. margin-left: 0;
  2447. }
  2448. .btn-lg .caret {
  2449. border-width: 5px 5px 0;
  2450. border-bottom-width: 0;
  2451. }
  2452. .dropup .btn-lg .caret {
  2453. border-width: 0 5px 5px;
  2454. }
  2455. .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  2456. display: block;
  2457. float: none;
  2458. width: 100%;
  2459. max-width: 100%;
  2460. }
  2461. .btn-group-vertical > .btn-group > .btn {
  2462. float: none;
  2463. }
  2464. .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  2465. margin-top: -1px;
  2466. margin-left: 0;
  2467. }
  2468. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  2469. border-radius: 0;
  2470. }
  2471. .btn-group-vertical > .btn:first-child:not(:last-child) {
  2472. border-top-left-radius: 3px;
  2473. border-top-right-radius: 3px;
  2474. border-bottom-right-radius: 0;
  2475. border-bottom-left-radius: 0;
  2476. }
  2477. .btn-group-vertical > .btn:last-child:not(:first-child) {
  2478. border-top-left-radius: 0;
  2479. border-top-right-radius: 0;
  2480. border-bottom-right-radius: 3px;
  2481. border-bottom-left-radius: 3px;
  2482. }
  2483. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  2484. border-radius: 0;
  2485. }
  2486. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  2487. border-bottom-right-radius: 0;
  2488. border-bottom-left-radius: 0;
  2489. }
  2490. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  2491. border-top-left-radius: 0;
  2492. border-top-right-radius: 0;
  2493. }
  2494. .btn-group-justified {
  2495. display: table;
  2496. width: 100%;
  2497. table-layout: fixed;
  2498. border-collapse: separate;
  2499. }
  2500. .btn-group-justified > .btn, .btn-group-justified > .btn-group {
  2501. display: table-cell;
  2502. float: none;
  2503. width: 1%;
  2504. }
  2505. .btn-group-justified > .btn-group .btn {
  2506. width: 100%;
  2507. }
  2508. .btn-group-justified > .btn-group .dropdown-menu {
  2509. left: auto;
  2510. }
  2511. [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  2512. position: absolute;
  2513. clip: rect(0, 0, 0, 0);
  2514. pointer-events: none;
  2515. }
  2516. .input-group {
  2517. position: relative;
  2518. display: table;
  2519. border-collapse: separate;
  2520. }
  2521. .input-group[class*="col-"] {
  2522. float: none;
  2523. padding-right: 0;
  2524. padding-left: 0;
  2525. }
  2526. .input-group .form-control {
  2527. position: relative;
  2528. z-index: 2;
  2529. float: left;
  2530. width: 100%;
  2531. margin-bottom: 0;
  2532. }
  2533. .input-group .form-control:focus {
  2534. z-index: 3;
  2535. }
  2536. .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  2537. height: 38px;
  2538. padding: 6px 18px;
  2539. font-size: 18px;
  2540. line-height: 1.3333333;
  2541. border-radius: 4px;
  2542. }
  2543. select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  2544. height: 38px;
  2545. line-height: 38px;
  2546. }
  2547. textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple] .input-group-lg > .form-control, select[multiple] .input-group-lg > .input-group-addon, select[multiple] .input-group-lg > .input-group-btn > .btn {
  2548. height: auto;
  2549. }
  2550. select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  2551. padding-top: 0;
  2552. padding-bottom: 0;
  2553. }
  2554. .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  2555. height: 26px;
  2556. padding: 3px 10px;
  2557. font-size: 12px;
  2558. line-height: 1.5;
  2559. border-radius: 2px;
  2560. }
  2561. select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  2562. height: 26px;
  2563. line-height: 26px;
  2564. }
  2565. textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple] .input-group-sm > .form-control, select[multiple] .input-group-sm > .input-group-addon, select[multiple] .input-group-sm > .input-group-btn > .btn {
  2566. height: auto;
  2567. }
  2568. select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  2569. padding-top: 0;
  2570. padding-bottom: 0;
  2571. }
  2572. .input-group-addon, .input-group-btn, .input-group .form-control {
  2573. display: table-cell;
  2574. }
  2575. .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  2576. border-radius: 0;
  2577. }
  2578. .input-group-addon, .input-group-btn {
  2579. width: 1%;
  2580. white-space: nowrap;
  2581. vertical-align: middle;
  2582. }
  2583. .input-group-addon {
  2584. padding: 4px 12px;
  2585. font-size: 14px;
  2586. font-weight: normal;
  2587. line-height: 1;
  2588. color: #76838f;
  2589. text-align: center;
  2590. background-color: #f3f7f9;
  2591. border: 1px solid #e4eaec;
  2592. border-radius: 3px;
  2593. }
  2594. .input-group-addon.input-sm {
  2595. padding: 3px 10px;
  2596. font-size: 12px;
  2597. border-radius: 2px;
  2598. }
  2599. .input-group-addon.input-lg {
  2600. padding: 6px 18px;
  2601. font-size: 18px;
  2602. border-radius: 4px;
  2603. }
  2604. .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
  2605. margin-top: 0;
  2606. }
  2607. .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  2608. border-top-right-radius: 0;
  2609. border-bottom-right-radius: 0;
  2610. }
  2611. .input-group-addon:first-child {
  2612. border-right: 0;
  2613. }
  2614. .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  2615. border-top-left-radius: 0;
  2616. border-bottom-left-radius: 0;
  2617. }
  2618. .input-group-addon:last-child {
  2619. border-left: 0;
  2620. }
  2621. .input-group-btn {
  2622. position: relative;
  2623. font-size: 0;
  2624. white-space: nowrap;
  2625. }
  2626. .input-group-btn > .btn {
  2627. position: relative;
  2628. }
  2629. .input-group-btn > .btn + .btn {
  2630. margin-left: -1px;
  2631. }
  2632. .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  2633. z-index: 2;
  2634. }
  2635. .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  2636. margin-right: -1px;
  2637. }
  2638. .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  2639. z-index: 2;
  2640. margin-left: -1px;
  2641. }
  2642. .nav {
  2643. padding-left: 0;
  2644. margin-bottom: 0;
  2645. list-style: none;
  2646. }
  2647. .nav > li {
  2648. position: relative;
  2649. display: block;
  2650. }
  2651. .nav > li > a {
  2652. position: relative;
  2653. display: block;
  2654. padding: 10px 15px;
  2655. }
  2656. .nav > li > a:hover, .nav > li > a:focus {
  2657. text-decoration: none;
  2658. background-color: #f3f7f9;
  2659. }
  2660. .nav > li.disabled > a {
  2661. color: #a3afb7;
  2662. }
  2663. .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  2664. color: #a3afb7;
  2665. text-decoration: none;
  2666. cursor: not-allowed;
  2667. background-color: transparent;
  2668. }
  2669. .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  2670. background-color: #f3f7f9;
  2671. border-color: #62a8ea;
  2672. }
  2673. .nav .nav-divider {
  2674. height: 1px;
  2675. margin: 10px 0;
  2676. overflow: hidden;
  2677. background-color: #e5e5e5;
  2678. }
  2679. .nav > li > a > img {
  2680. max-width: none;
  2681. }
  2682. .nav-tabs {
  2683. border-bottom: 1px solid #e4eaec;
  2684. }
  2685. .nav-tabs > li {
  2686. float: left;
  2687. margin-bottom: -1px;
  2688. }
  2689. .nav-tabs > li > a {
  2690. margin-right: 2px;
  2691. line-height: 1.6;
  2692. border: 1px solid transparent;
  2693. border-radius: 3px 3px 0 0;
  2694. }
  2695. .nav-tabs > li > a:hover {
  2696. border-color: transparent transparent #e4eaec;
  2697. }
  2698. .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  2699. color: #4e97d9;
  2700. cursor: default;
  2701. background-color: #fff;
  2702. border: 1px solid #e4eaec;
  2703. border-bottom-color: transparent;
  2704. }
  2705. .nav-tabs.nav-justified {
  2706. width: 100%;
  2707. border-bottom: 0;
  2708. }
  2709. .nav-tabs.nav-justified > li {
  2710. float: none;
  2711. }
  2712. .nav-tabs.nav-justified > li > a {
  2713. margin-bottom: 5px;
  2714. text-align: center;
  2715. }
  2716. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  2717. top: auto;
  2718. left: auto;
  2719. }
  2720. @media (min-width: 768px) {
  2721. .nav-tabs.nav-justified > li {
  2722. display: table-cell;
  2723. width: 1%;
  2724. }
  2725. .nav-tabs.nav-justified > li > a {
  2726. margin-bottom: 0;
  2727. }
  2728. }
  2729. .nav-tabs.nav-justified > li > a {
  2730. margin-right: 0;
  2731. border-radius: 3px;
  2732. }
  2733. .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  2734. border: 1px solid #e4eaec;
  2735. }
  2736. @media (min-width: 768px) {
  2737. .nav-tabs.nav-justified > li > a {
  2738. border-bottom: 1px solid #e4eaec;
  2739. border-radius: 3px 3px 0 0;
  2740. }
  2741. .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  2742. border-bottom-color: #fff;
  2743. }
  2744. }
  2745. .nav-pills > li {
  2746. float: left;
  2747. }
  2748. .nav-pills > li > a {
  2749. border-radius: 3px;
  2750. }
  2751. .nav-pills > li + li {
  2752. margin-left: 2px;
  2753. }
  2754. .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  2755. color: #fff;
  2756. background-color: #62a8ea;
  2757. }
  2758. .nav-stacked > li {
  2759. float: none;
  2760. }
  2761. .nav-stacked > li + li {
  2762. margin-top: 2px;
  2763. margin-left: 0;
  2764. }
  2765. .nav-justified {
  2766. width: 100%;
  2767. }
  2768. .nav-justified > li {
  2769. float: none;
  2770. }
  2771. .nav-justified > li > a {
  2772. margin-bottom: 5px;
  2773. text-align: center;
  2774. }
  2775. .nav-justified > .dropdown .dropdown-menu {
  2776. top: auto;
  2777. left: auto;
  2778. }
  2779. @media (min-width: 768px) {
  2780. .nav-justified > li {
  2781. display: table-cell;
  2782. width: 1%;
  2783. }
  2784. .nav-justified > li > a {
  2785. margin-bottom: 0;
  2786. }
  2787. }
  2788. .nav-tabs-justified {
  2789. border-bottom: 0;
  2790. }
  2791. .nav-tabs-justified > li > a {
  2792. margin-right: 0;
  2793. border-radius: 3px;
  2794. }
  2795. .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
  2796. border: 1px solid #e4eaec;
  2797. }
  2798. @media (min-width: 768px) {
  2799. .nav-tabs-justified > li > a {
  2800. border-bottom: 1px solid #e4eaec;
  2801. border-radius: 3px 3px 0 0;
  2802. }
  2803. .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
  2804. border-bottom-color: #fff;
  2805. }
  2806. }
  2807. .tab-content > .tab-pane {
  2808. display: none;
  2809. }
  2810. .tab-content > .active {
  2811. display: block;
  2812. }
  2813. .nav-tabs .dropdown-menu {
  2814. margin-top: -1px;
  2815. border-top-left-radius: 0;
  2816. border-top-right-radius: 0;
  2817. }
  2818. .navbar {
  2819. position: relative;
  2820. min-height: 60px;
  2821. margin-bottom: 22px;
  2822. border: 1px solid transparent;
  2823. }
  2824. @media (min-width: 768px) {
  2825. .navbar {
  2826. border-radius: 3px;
  2827. }
  2828. }
  2829. @media (min-width: 768px) {
  2830. .navbar-header {
  2831. float: left;
  2832. }
  2833. }
  2834. .navbar-collapse {
  2835. padding-right: 12px;
  2836. padding-left: 12px;
  2837. overflow-x: visible;
  2838. -webkit-overflow-scrolling: touch;
  2839. border-top: 1px solid transparent;
  2840. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  2841. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  2842. }
  2843. .navbar-collapse.in {
  2844. overflow-y: auto;
  2845. }
  2846. @media (min-width: 768px) {
  2847. .navbar-collapse {
  2848. width: auto;
  2849. border-top: 0;
  2850. -webkit-box-shadow: none;
  2851. box-shadow: none;
  2852. }
  2853. .navbar-collapse.collapse {
  2854. display: block !important;
  2855. height: auto !important;
  2856. padding-bottom: 0;
  2857. overflow: visible !important;
  2858. }
  2859. .navbar-collapse.in {
  2860. overflow-y: visible;
  2861. }
  2862. .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  2863. padding-right: 0;
  2864. padding-left: 0;
  2865. }
  2866. }
  2867. .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  2868. max-height: 340px;
  2869. }
  2870. @media (max-device-width: 480px) and (orientation: landscape) {
  2871. .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  2872. max-height: 200px;
  2873. }
  2874. }
  2875. .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  2876. margin-right: -12px;
  2877. margin-left: -12px;
  2878. }
  2879. @media (min-width: 768px) {
  2880. .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  2881. margin-right: 0;
  2882. margin-left: 0;
  2883. }
  2884. }
  2885. .navbar-static-top {
  2886. z-index: 1200;
  2887. border-width: 0 0 1px;
  2888. }
  2889. @media (min-width: 768px) {
  2890. .navbar-static-top {
  2891. border-radius: 0;
  2892. }
  2893. }
  2894. .navbar-fixed-top, .navbar-fixed-bottom {
  2895. position: fixed;
  2896. right: 0;
  2897. left: 0;
  2898. z-index: 1030;
  2899. }
  2900. @media (min-width: 768px) {
  2901. .navbar-fixed-top, .navbar-fixed-bottom {
  2902. border-radius: 0;
  2903. }
  2904. }
  2905. .navbar-fixed-top {
  2906. top: 0;
  2907. border-width: 0 0 1px;
  2908. }
  2909. .navbar-fixed-bottom {
  2910. bottom: 0;
  2911. margin-bottom: 0;
  2912. border-width: 1px 0 0;
  2913. }
  2914. .navbar-brand {
  2915. float: left;
  2916. height: 60px;
  2917. padding: 19px 12px;
  2918. font-size: 18px;
  2919. line-height: 22px;
  2920. }
  2921. .navbar-brand:hover, .navbar-brand:focus {
  2922. text-decoration: none;
  2923. }
  2924. .navbar-brand > img {
  2925. display: block;
  2926. }
  2927. @media (min-width: 768px) {
  2928. .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
  2929. margin-left: -12px;
  2930. }
  2931. }
  2932. .navbar-toggle {
  2933. position: relative;
  2934. float: right;
  2935. padding: 9px 10px;
  2936. margin-top: 13px;
  2937. margin-right: 12px;
  2938. margin-bottom: 13px;
  2939. background-color: transparent;
  2940. background-image: none;
  2941. border: 1px solid transparent;
  2942. border-radius: 3px;
  2943. }
  2944. .navbar-toggle:focus {
  2945. outline: 0;
  2946. }
  2947. .navbar-toggle .icon-bar {
  2948. display: block;
  2949. width: 22px;
  2950. height: 2px;
  2951. border-radius: 1px;
  2952. }
  2953. .navbar-toggle .icon-bar + .icon-bar {
  2954. margin-top: 4px;
  2955. }
  2956. @media (min-width: 768px) {
  2957. .navbar-toggle {
  2958. display: none;
  2959. }
  2960. }
  2961. .navbar-nav {
  2962. margin: 9.5px -12px;
  2963. }
  2964. .navbar-nav > li > a {
  2965. padding-top: 10px;
  2966. padding-bottom: 10px;
  2967. line-height: 22px;
  2968. }
  2969. @media (max-width: 767px) {
  2970. .navbar-nav .open .dropdown-menu {
  2971. position: static;
  2972. float: none;
  2973. width: auto;
  2974. margin-top: 0;
  2975. background-color: transparent;
  2976. border: 0;
  2977. -webkit-box-shadow: none;
  2978. box-shadow: none;
  2979. }
  2980. .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
  2981. padding: 5px 15px 5px 25px;
  2982. }
  2983. .navbar-nav .open .dropdown-menu > li > a {
  2984. line-height: 22px;
  2985. }
  2986. .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
  2987. background-image: none;
  2988. }
  2989. }
  2990. @media (min-width: 768px) {
  2991. .navbar-nav {
  2992. float: left;
  2993. margin: 0;
  2994. }
  2995. .navbar-nav > li {
  2996. float: left;
  2997. }
  2998. .navbar-nav > li > a {
  2999. padding-top: 19px;
  3000. padding-bottom: 19px;
  3001. }
  3002. }
  3003. .navbar-form {
  3004. padding: 10px 12px;
  3005. margin-top: 14px;
  3006. margin-right: -12px;
  3007. margin-bottom: 14px;
  3008. margin-left: -12px;
  3009. border-top: 1px solid transparent;
  3010. border-bottom: 1px solid transparent;
  3011. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  3012. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  3013. }
  3014. @media (min-width: 768px) {
  3015. .navbar-form .form-group {
  3016. display: inline-block;
  3017. margin-bottom: 0;
  3018. vertical-align: middle;
  3019. }
  3020. .navbar-form .form-control {
  3021. display: inline-block;
  3022. width: auto;
  3023. vertical-align: middle;
  3024. }
  3025. .navbar-form .form-control-static {
  3026. display: inline-block;
  3027. }
  3028. .navbar-form .input-group {
  3029. display: inline-table;
  3030. vertical-align: middle;
  3031. }
  3032. .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
  3033. width: auto;
  3034. }
  3035. .navbar-form .input-group > .form-control {
  3036. width: 100%;
  3037. }
  3038. .navbar-form .control-label {
  3039. margin-bottom: 0;
  3040. vertical-align: middle;
  3041. }
  3042. .navbar-form .radio, .navbar-form .checkbox {
  3043. display: inline-block;
  3044. margin-top: 0;
  3045. margin-bottom: 0;
  3046. vertical-align: middle;
  3047. }
  3048. .navbar-form .radio label, .navbar-form .checkbox label {
  3049. padding-left: 0;
  3050. }
  3051. .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
  3052. position: relative;
  3053. margin-left: 0;
  3054. }
  3055. .navbar-form .has-feedback .form-control-feedback {
  3056. top: 0;
  3057. }
  3058. }
  3059. @media (max-width: 767px) {
  3060. .navbar-form .form-group {
  3061. margin-bottom: 5px;
  3062. }
  3063. .navbar-form .form-group:last-child {
  3064. margin-bottom: 0;
  3065. }
  3066. }
  3067. @media (min-width: 768px) {
  3068. .navbar-form {
  3069. width: auto;
  3070. padding-top: 0;
  3071. padding-bottom: 0;
  3072. margin-right: 0;
  3073. margin-left: 0;
  3074. border: 0;
  3075. -webkit-box-shadow: none;
  3076. box-shadow: none;
  3077. }
  3078. }
  3079. .navbar-nav > li > .dropdown-menu {
  3080. margin-top: 0;
  3081. border-top-left-radius: 0;
  3082. border-top-right-radius: 0;
  3083. }
  3084. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  3085. margin-bottom: 0;
  3086. border-top-left-radius: 3px;
  3087. border-top-right-radius: 3px;
  3088. border-bottom-right-radius: 0;
  3089. border-bottom-left-radius: 0;
  3090. }
  3091. .navbar-btn {
  3092. margin-top: 14px;
  3093. margin-bottom: 14px;
  3094. }
  3095. .navbar-btn.btn-sm {
  3096. margin-top: 17px;
  3097. margin-bottom: 17px;
  3098. }
  3099. .navbar-btn.btn-xs {
  3100. margin-top: 19px;
  3101. margin-bottom: 19px;
  3102. }
  3103. .navbar-text {
  3104. margin-top: 19px;
  3105. margin-bottom: 19px;
  3106. }
  3107. @media (min-width: 768px) {
  3108. .navbar-text {
  3109. float: left;
  3110. margin-right: 12px;
  3111. margin-left: 12px;
  3112. }
  3113. }
  3114. @media (min-width: 768px) {
  3115. .navbar-left {
  3116. float: left !important;
  3117. }
  3118. .navbar-right {
  3119. float: right !important;
  3120. margin-right: -12px;
  3121. }
  3122. .navbar-right ~ .navbar-right {
  3123. margin-right: 0;
  3124. }
  3125. }
  3126. .navbar-default {
  3127. background-color: #fff;
  3128. border-color: #e4eaec;
  3129. }
  3130. .navbar-default .navbar-brand {
  3131. color: #37474f;
  3132. }
  3133. .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  3134. color: #37474f;
  3135. background-color: transparent;
  3136. }
  3137. .navbar-default .navbar-text {
  3138. color: #76838f;
  3139. }
  3140. .navbar-default .navbar-nav > li > a {
  3141. color: #76838f;
  3142. }
  3143. .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  3144. color: #526069;
  3145. background-color: rgba(243, 247, 249, .3);
  3146. }
  3147. .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  3148. color: #526069;
  3149. background-color: rgba(243, 247, 249, .6);
  3150. }
  3151. .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  3152. color: #ccd5db;
  3153. background-color: transparent;
  3154. }
  3155. .navbar-default .navbar-toggle {
  3156. border-color: transparent;
  3157. }
  3158. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  3159. background-color: rgba(243, 247, 249, .3);
  3160. }
  3161. .navbar-default .navbar-toggle .icon-bar {
  3162. background-color: #76838f;
  3163. }
  3164. .navbar-default .navbar-collapse, .navbar-default .navbar-form {
  3165. border-color: #e4eaec;
  3166. }
  3167. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  3168. color: #526069;
  3169. background-color: rgba(243, 247, 249, .6);
  3170. }
  3171. @media (max-width: 767px) {
  3172. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3173. color: #76838f;
  3174. }
  3175. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  3176. color: #526069;
  3177. background-color: rgba(243, 247, 249, .3);
  3178. }
  3179. .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  3180. color: #526069;
  3181. background-color: rgba(243, 247, 249, .6);
  3182. }
  3183. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3184. color: #ccd5db;
  3185. background-color: transparent;
  3186. }
  3187. }
  3188. .navbar-default .navbar-link {
  3189. color: #76838f;
  3190. }
  3191. .navbar-default .navbar-link:hover {
  3192. color: #526069;
  3193. }
  3194. .navbar-default .btn-link {
  3195. color: #76838f;
  3196. }
  3197. .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  3198. color: #526069;
  3199. }
  3200. .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
  3201. color: #ccd5db;
  3202. }
  3203. .navbar-inverse {
  3204. background-color: #62a8ea;
  3205. border-color: rgba(0, 0, 0, .1);
  3206. }
  3207. .navbar-inverse .navbar-brand {
  3208. color: #fff;
  3209. }
  3210. .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  3211. color: #fff;
  3212. background-color: transparent;
  3213. }
  3214. .navbar-inverse .navbar-text {
  3215. color: #fff;
  3216. }
  3217. .navbar-inverse .navbar-nav > li > a {
  3218. color: #fff;
  3219. }
  3220. .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  3221. color: #fff;
  3222. background-color: rgba(0, 0, 0, .1);
  3223. }
  3224. .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  3225. color: #fff;
  3226. background-color: rgba(0, 0, 0, .1);
  3227. }
  3228. .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  3229. color: #fff;
  3230. background-color: transparent;
  3231. }
  3232. .navbar-inverse .navbar-toggle {
  3233. border-color: transparent;
  3234. }
  3235. .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  3236. background-color: rgba(0, 0, 0, .1);
  3237. }
  3238. .navbar-inverse .navbar-toggle .icon-bar {
  3239. background-color: #fff;
  3240. }
  3241. .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  3242. border-color: #4397e6;
  3243. }
  3244. .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  3245. color: #fff;
  3246. background-color: rgba(0, 0, 0, .1);
  3247. }
  3248. @media (max-width: 767px) {
  3249. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  3250. border-color: rgba(0, 0, 0, .1);
  3251. }
  3252. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  3253. background-color: rgba(0, 0, 0, .1);
  3254. }
  3255. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  3256. color: #fff;
  3257. }
  3258. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  3259. color: #fff;
  3260. background-color: rgba(0, 0, 0, .1);
  3261. }
  3262. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  3263. color: #fff;
  3264. background-color: rgba(0, 0, 0, .1);
  3265. }
  3266. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3267. color: #fff;
  3268. background-color: transparent;
  3269. }
  3270. }
  3271. .navbar-inverse .navbar-link {
  3272. color: #fff;
  3273. }
  3274. .navbar-inverse .navbar-link:hover {
  3275. color: #fff;
  3276. }
  3277. .navbar-inverse .btn-link {
  3278. color: #fff;
  3279. }
  3280. .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  3281. color: #fff;
  3282. }
  3283. .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
  3284. color: #fff;
  3285. }
  3286. .breadcrumb {
  3287. padding: 8px 10px;
  3288. margin-bottom: 22px;
  3289. list-style: none;
  3290. background-color: transparent;
  3291. border-radius: 3px;
  3292. }
  3293. .breadcrumb > li {
  3294. display: inline-block;
  3295. }
  3296. .breadcrumb > li + li:before {
  3297. padding: 0 5px;
  3298. color: #62a8ea;
  3299. content: "/\00a0";
  3300. }
  3301. .breadcrumb > .active {
  3302. color: #76838f;
  3303. }
  3304. .pagination {
  3305. display: inline-block;
  3306. padding-left: 0;
  3307. margin: 22px 0;
  3308. border-radius: 3px;
  3309. }
  3310. .pagination > li {
  3311. display: inline;
  3312. }
  3313. .pagination > li > a, .pagination > li > span {
  3314. position: relative;
  3315. float: left;
  3316. padding: 4px 12px;
  3317. margin-left: -1px;
  3318. line-height: 1.6;
  3319. color: #76838f;
  3320. text-decoration: none;
  3321. background-color: transparent;
  3322. border: 1px solid #e4eaec;
  3323. }
  3324. .pagination > li:first-child > a, .pagination > li:first-child > span {
  3325. margin-left: 0;
  3326. border-top-left-radius: 3px;
  3327. border-bottom-left-radius: 3px;
  3328. }
  3329. .pagination > li:last-child > a, .pagination > li:last-child > span {
  3330. border-top-right-radius: 3px;
  3331. border-bottom-right-radius: 3px;
  3332. }
  3333. .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  3334. z-index: 2;
  3335. color: #89bceb;
  3336. background-color: #f3f7f9;
  3337. border-color: #e4eaec;
  3338. }
  3339. .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  3340. z-index: 3;
  3341. color: #fff;
  3342. cursor: default;
  3343. background-color: #62a8ea;
  3344. border-color: #62a8ea;
  3345. }
  3346. .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  3347. color: #ccd5db;
  3348. pointer-events: none;
  3349. cursor: not-allowed;
  3350. background-color: transparent;
  3351. border-color: #e4eaec;
  3352. }
  3353. .pagination-lg > li > a, .pagination-lg > li > span {
  3354. padding: 6px 18px;
  3355. font-size: 18px;
  3356. line-height: 1.3333333;
  3357. }
  3358. .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  3359. border-top-left-radius: 4px;
  3360. border-bottom-left-radius: 4px;
  3361. }
  3362. .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  3363. border-top-right-radius: 4px;
  3364. border-bottom-right-radius: 4px;
  3365. }
  3366. .pagination-sm > li > a, .pagination-sm > li > span {
  3367. padding: 3px 10px;
  3368. font-size: 12px;
  3369. line-height: 1.5;
  3370. }
  3371. .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  3372. border-top-left-radius: 2px;
  3373. border-bottom-left-radius: 2px;
  3374. }
  3375. .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  3376. border-top-right-radius: 2px;
  3377. border-bottom-right-radius: 2px;
  3378. }
  3379. .pager {
  3380. padding-left: 0;
  3381. margin: 22px 0;
  3382. text-align: center;
  3383. list-style: none;
  3384. }
  3385. .pager li {
  3386. display: inline;
  3387. }
  3388. .pager li > a, .pager li > span {
  3389. display: inline-block;
  3390. padding: 5px 14px;
  3391. background-color: transparent;
  3392. border: 1px solid #e4eaec;
  3393. border-radius: 3px;
  3394. }
  3395. .pager li > a:hover, .pager li > a:focus {
  3396. text-decoration: none;
  3397. background-color: #fff;
  3398. }
  3399. .pager .next > a, .pager .next > span {
  3400. float: right;
  3401. }
  3402. .pager .previous > a, .pager .previous > span {
  3403. float: left;
  3404. }
  3405. .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
  3406. color: #ccd5db;
  3407. pointer-events: none;
  3408. cursor: not-allowed;
  3409. background-color: transparent;
  3410. }
  3411. .label {
  3412. display: inline;
  3413. padding: .2em .6em .3em;
  3414. font-size: 75%;
  3415. font-weight: bold;
  3416. line-height: 1;
  3417. color: #fff;
  3418. text-align: center;
  3419. white-space: nowrap;
  3420. vertical-align: baseline;
  3421. border-radius: .25em;
  3422. }
  3423. a.label:hover, a.label:focus {
  3424. color: #fff;
  3425. text-decoration: none;
  3426. cursor: pointer;
  3427. }
  3428. .label:empty {
  3429. display: none;
  3430. }
  3431. .btn .label {
  3432. position: relative;
  3433. top: -1px;
  3434. }
  3435. .label-default {
  3436. background-color: #e4eaec;
  3437. }
  3438. .label-default[href]:hover, .label-default[href]:focus {
  3439. background-color: #c6d3d7;
  3440. }
  3441. .label-primary {
  3442. background-color: #62a8ea;
  3443. }
  3444. .label-primary[href]:hover, .label-primary[href]:focus {
  3445. background-color: #358fe4;
  3446. }
  3447. .label-success {
  3448. background-color: #46be8a;
  3449. }
  3450. .label-success[href]:hover, .label-success[href]:focus {
  3451. background-color: #369b6f;
  3452. }
  3453. .label-info {
  3454. background-color: #57c7d4;
  3455. }
  3456. .label-info[href]:hover, .label-info[href]:focus {
  3457. background-color: #33b6c5;
  3458. }
  3459. .label-warning {
  3460. background-color: #f2a654;
  3461. }
  3462. .label-warning[href]:hover, .label-warning[href]:focus {
  3463. background-color: #ee8d25;
  3464. }
  3465. .label-danger {
  3466. background-color: #f96868;
  3467. }
  3468. .label-danger[href]:hover, .label-danger[href]:focus {
  3469. background-color: #f73737;
  3470. }
  3471. .badge {
  3472. display: inline-block;
  3473. min-width: 10px;
  3474. padding: 3px 7px;
  3475. font-size: 12px;
  3476. font-weight: 500;
  3477. line-height: 1;
  3478. color: #76838f;
  3479. text-align: center;
  3480. white-space: nowrap;
  3481. vertical-align: middle;
  3482. background-color: #e4eaec;
  3483. border-radius: 15px;
  3484. }
  3485. .badge:empty {
  3486. display: none;
  3487. }
  3488. .btn .badge {
  3489. position: relative;
  3490. top: -1px;
  3491. }
  3492. .btn-xs .badge, .btn-group-xs > .btn .badge {
  3493. top: 0;
  3494. padding: 1px 5px;
  3495. }
  3496. a.badge:hover, a.badge:focus {
  3497. color: #a3afb7;
  3498. text-decoration: none;
  3499. cursor: pointer;
  3500. }
  3501. .list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  3502. color: #526069;
  3503. background-color: #e4eaec;
  3504. }
  3505. .list-group-item > .badge {
  3506. float: right;
  3507. }
  3508. .list-group-item > .badge + .badge {
  3509. margin-right: 5px;
  3510. }
  3511. .nav-pills > li > a > .badge {
  3512. margin-left: 3px;
  3513. }
  3514. .jumbotron {
  3515. padding-top: 20px;
  3516. padding-bottom: 20px;
  3517. margin-bottom: 20px;
  3518. color: inherit;
  3519. background-color: #e4eaec;
  3520. }
  3521. .jumbotron h1, .jumbotron .h1 {
  3522. color: inherit;
  3523. }
  3524. .jumbotron p {
  3525. margin-bottom: 10px;
  3526. font-size: 21px;
  3527. font-weight: 200;
  3528. }
  3529. .jumbotron > hr {
  3530. border-top-color: #c6d3d7;
  3531. }
  3532. .container .jumbotron, .container-fluid .jumbotron {
  3533. padding-right: 12px;
  3534. padding-left: 12px;
  3535. border-radius: 4px;
  3536. }
  3537. .jumbotron .container {
  3538. max-width: 100%;
  3539. }
  3540. @media screen and (min-width: 768px) {
  3541. .jumbotron {
  3542. padding-top: 32px;
  3543. padding-bottom: 32px;
  3544. }
  3545. .container .jumbotron, .container-fluid .jumbotron {
  3546. padding-right: 40px;
  3547. padding-left: 40px;
  3548. }
  3549. .jumbotron h1, .jumbotron .h1 {
  3550. font-size: 63px;
  3551. }
  3552. }
  3553. .thumbnail {
  3554. display: block;
  3555. padding: 4px;
  3556. margin-bottom: 22px;
  3557. line-height: 1.6;
  3558. background-color: #fff;
  3559. border: 1px solid #e4eaec;
  3560. border-radius: 3px;
  3561. -webkit-transition: border .2s ease-in-out;
  3562. -o-transition: border .2s ease-in-out;
  3563. transition: border .2s ease-in-out;
  3564. }
  3565. .thumbnail > img, .thumbnail a > img {
  3566. margin-right: auto;
  3567. margin-left: auto;
  3568. }
  3569. a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  3570. border-color: #62a8ea;
  3571. }
  3572. .thumbnail .caption {
  3573. padding: 9px;
  3574. color: #76838f;
  3575. }
  3576. .alert {
  3577. padding: 10px;
  3578. margin-bottom: 22px;
  3579. border: 1px solid transparent;
  3580. border-radius: 3px;
  3581. }
  3582. .alert h4 {
  3583. margin-top: 0;
  3584. color: inherit;
  3585. }
  3586. .alert .alert-link {
  3587. font-weight: 700;
  3588. }
  3589. .alert > p, .alert > ul {
  3590. margin-bottom: 0;
  3591. }
  3592. .alert > p + p {
  3593. margin-top: 5px;
  3594. }
  3595. .alert-dismissable, .alert-dismissible {
  3596. padding-right: 30px;
  3597. }
  3598. .alert-dismissable .close, .alert-dismissible .close {
  3599. position: relative;
  3600. top: -2px;
  3601. right: -21px;
  3602. color: inherit;
  3603. }
  3604. .alert-success {
  3605. color: #46be8a;
  3606. background-color: rgba(231, 250, 242, .8);
  3607. border-color: #e7faf2;
  3608. }
  3609. .alert-success hr {
  3610. border-top-color: #d2f6e7;
  3611. }
  3612. .alert-success .alert-link {
  3613. color: #369b6f;
  3614. }
  3615. .alert-info {
  3616. color: #57c7d4;
  3617. background-color: rgba(236, 249, 250, .8);
  3618. border-color: #ecf9fa;
  3619. }
  3620. .alert-info hr {
  3621. border-top-color: #d8f3f5;
  3622. }
  3623. .alert-info .alert-link {
  3624. color: #33b6c5;
  3625. }
  3626. .alert-warning {
  3627. color: #f2a654;
  3628. background-color: rgba(255, 243, 230, .8);
  3629. border-color: #fff3e6;
  3630. }
  3631. .alert-warning hr {
  3632. border-top-color: #ffe7cc;
  3633. }
  3634. .alert-warning .alert-link {
  3635. color: #ee8d25;
  3636. }
  3637. .alert-danger {
  3638. color: #f96868;
  3639. background-color: rgba(255, 234, 234, .8);
  3640. border-color: #ffeaea;
  3641. }
  3642. .alert-danger hr {
  3643. border-top-color: #ffd0d0;
  3644. }
  3645. .alert-danger .alert-link {
  3646. color: #f73737;
  3647. }
  3648. @-webkit-keyframes progress-bar-stripes {
  3649. from {
  3650. background-position: 40px 0;
  3651. }
  3652. to {
  3653. background-position: 0 0;
  3654. }
  3655. }
  3656. @-o-keyframes progress-bar-stripes {
  3657. from {
  3658. background-position: 40px 0;
  3659. }
  3660. to {
  3661. background-position: 0 0;
  3662. }
  3663. }
  3664. @keyframes progress-bar-stripes {
  3665. from {
  3666. background-position: 40px 0;
  3667. }
  3668. to {
  3669. background-position: 0 0;
  3670. }
  3671. }
  3672. .progress {
  3673. height: 22px;
  3674. margin-bottom: 22px;
  3675. overflow: hidden;
  3676. background-color: #e4eaec;
  3677. border-radius: 3px;
  3678. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  3679. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  3680. }
  3681. .progress-bar {
  3682. float: left;
  3683. width: 0;
  3684. height: 100%;
  3685. font-size: 12px;
  3686. line-height: 22px;
  3687. color: #fff;
  3688. text-align: center;
  3689. background-color: #62a8ea;
  3690. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  3691. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  3692. -webkit-transition: width .6s ease;
  3693. -o-transition: width .6s ease;
  3694. transition: width .6s ease;
  3695. }
  3696. .progress-striped .progress-bar, .progress-bar-striped {
  3697. 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);
  3698. 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);
  3699. 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);
  3700. -webkit-background-size: 40px 40px;
  3701. background-size: 40px 40px;
  3702. }
  3703. .progress.active .progress-bar, .progress-bar.active {
  3704. -webkit-animation: progress-bar-stripes 2s linear infinite;
  3705. -o-animation: progress-bar-stripes 2s linear infinite;
  3706. animation: progress-bar-stripes 2s linear infinite;
  3707. }
  3708. .progress-bar-success {
  3709. background-color: #46be8a;
  3710. }
  3711. .progress-striped .progress-bar-success {
  3712. 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);
  3713. 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);
  3714. 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);
  3715. }
  3716. .progress-bar-info {
  3717. background-color: #57c7d4;
  3718. }
  3719. .progress-striped .progress-bar-info {
  3720. 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);
  3721. 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);
  3722. 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);
  3723. }
  3724. .progress-bar-warning {
  3725. background-color: #f2a654;
  3726. }
  3727. .progress-striped .progress-bar-warning {
  3728. 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);
  3729. 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);
  3730. 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);
  3731. }
  3732. .progress-bar-danger {
  3733. background-color: #f96868;
  3734. }
  3735. .progress-striped .progress-bar-danger {
  3736. 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);
  3737. 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);
  3738. 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);
  3739. }
  3740. .media {
  3741. margin-top: 15px;
  3742. }
  3743. .media:first-child {
  3744. margin-top: 0;
  3745. }
  3746. .media, .media-body {
  3747. overflow: hidden;
  3748. zoom: 1;
  3749. }
  3750. .media-body {
  3751. width: 10000px;
  3752. }
  3753. .media-object {
  3754. display: block;
  3755. }
  3756. .media-object.img-thumbnail {
  3757. max-width: none;
  3758. }
  3759. .media-right, .media > .pull-right {
  3760. padding-left: 10px;
  3761. }
  3762. .media-left, .media > .pull-left {
  3763. padding-right: 10px;
  3764. }
  3765. .media-left, .media-right, .media-body {
  3766. display: table-cell;
  3767. vertical-align: top;
  3768. }
  3769. .media-middle {
  3770. vertical-align: middle;
  3771. }
  3772. .media-bottom {
  3773. vertical-align: bottom;
  3774. }
  3775. .media-heading {
  3776. margin-top: 0;
  3777. margin-bottom: 5px;
  3778. }
  3779. .media-list {
  3780. padding-left: 0;
  3781. list-style: none;
  3782. }
  3783. .list-group {
  3784. padding-left: 0;
  3785. margin-bottom: 20px;
  3786. }
  3787. .list-group-item {
  3788. position: relative;
  3789. display: block;
  3790. padding: 10px 15px;
  3791. margin-bottom: -1px;
  3792. background-color: #fff;
  3793. border: 1px solid transparent;
  3794. }
  3795. .list-group-item:first-child {
  3796. border-top-left-radius: 3px;
  3797. border-top-right-radius: 3px;
  3798. }
  3799. .list-group-item:last-child {
  3800. margin-bottom: 0;
  3801. border-bottom-right-radius: 3px;
  3802. border-bottom-left-radius: 3px;
  3803. }
  3804. a.list-group-item, button.list-group-item {
  3805. color: #76838f;
  3806. }
  3807. a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
  3808. color: #37474f;
  3809. }
  3810. a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus {
  3811. color: #76838f;
  3812. text-decoration: none;
  3813. background-color: #f3f7f9;
  3814. }
  3815. button.list-group-item {
  3816. width: 100%;
  3817. text-align: left;
  3818. }
  3819. .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  3820. color: #ccd5db;
  3821. cursor: not-allowed;
  3822. background-color: transparent;
  3823. }
  3824. .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  3825. color: inherit;
  3826. }
  3827. .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  3828. color: #ccd5db;
  3829. }
  3830. .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  3831. z-index: 2;
  3832. color: #62a8ea;
  3833. background-color: transparent;
  3834. border-color: transparent;
  3835. }
  3836. .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
  3837. color: inherit;
  3838. }
  3839. .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  3840. color: #fff;
  3841. }
  3842. .list-group-item-success {
  3843. color: #fff;
  3844. background-color: #46be8a;
  3845. }
  3846. a.list-group-item-success, button.list-group-item-success {
  3847. color: #fff;
  3848. }
  3849. a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
  3850. color: inherit;
  3851. }
  3852. a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus {
  3853. color: #fff;
  3854. background-color: #3dae7d;
  3855. }
  3856. a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus {
  3857. color: #fff;
  3858. background-color: #fff;
  3859. border-color: #fff;
  3860. }
  3861. .list-group-item-info {
  3862. color: #fff;
  3863. background-color: #57c7d4;
  3864. }
  3865. a.list-group-item-info, button.list-group-item-info {
  3866. color: #fff;
  3867. }
  3868. a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
  3869. color: inherit;
  3870. }
  3871. a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus {
  3872. color: #fff;
  3873. background-color: #43c0cf;
  3874. }
  3875. a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus {
  3876. color: #fff;
  3877. background-color: #fff;
  3878. border-color: #fff;
  3879. }
  3880. .list-group-item-warning {
  3881. color: #fff;
  3882. background-color: #f2a654;
  3883. }
  3884. a.list-group-item-warning, button.list-group-item-warning {
  3885. color: #fff;
  3886. }
  3887. a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
  3888. color: inherit;
  3889. }
  3890. a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus {
  3891. color: #fff;
  3892. background-color: #f09a3c;
  3893. }
  3894. a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus {
  3895. color: #fff;
  3896. background-color: #fff;
  3897. border-color: #fff;
  3898. }
  3899. .list-group-item-danger {
  3900. color: #fff;
  3901. background-color: #f96868;
  3902. }
  3903. a.list-group-item-danger, button.list-group-item-danger {
  3904. color: #fff;
  3905. }
  3906. a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
  3907. color: inherit;
  3908. }
  3909. a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus {
  3910. color: #fff;
  3911. background-color: #f84f4f;
  3912. }
  3913. a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus {
  3914. color: #fff;
  3915. background-color: #fff;
  3916. border-color: #fff;
  3917. }
  3918. .list-group-item-heading {
  3919. margin-top: 0;
  3920. margin-bottom: 5px;
  3921. }
  3922. .list-group-item-text {
  3923. margin-bottom: 0;
  3924. line-height: 1.3;
  3925. }
  3926. .panel {
  3927. margin-bottom: 22px;
  3928. background-color: #fff;
  3929. border: 1px solid transparent;
  3930. border-radius: 1px;
  3931. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  3932. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  3933. }
  3934. .panel-body {
  3935. padding: 20px;
  3936. }
  3937. .panel-heading {
  3938. padding: 16px 20px;
  3939. border-bottom: 1px solid transparent;
  3940. border-top-left-radius: 0;
  3941. border-top-right-radius: 0;
  3942. }
  3943. .panel-heading > .dropdown .dropdown-toggle {
  3944. color: inherit;
  3945. }
  3946. .panel-title {
  3947. margin-top: 0;
  3948. margin-bottom: 0;
  3949. font-size: 16px;
  3950. color: inherit;
  3951. }
  3952. .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a {
  3953. color: inherit;
  3954. }
  3955. .panel-footer {
  3956. padding: 0 20px 10px;
  3957. background-color: transparent;
  3958. border-top: 1px solid #e4eaec;
  3959. border-bottom-right-radius: 0;
  3960. border-bottom-left-radius: 0;
  3961. }
  3962. .panel > .list-group, .panel > .panel-collapse > .list-group {
  3963. margin-bottom: 0;
  3964. }
  3965. .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
  3966. border-width: 1px 0;
  3967. border-radius: 0;
  3968. }
  3969. .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  3970. border-top: 0;
  3971. border-top-left-radius: 0;
  3972. border-top-right-radius: 0;
  3973. }
  3974. .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  3975. border-bottom: 0;
  3976. border-bottom-right-radius: 0;
  3977. border-bottom-left-radius: 0;
  3978. }
  3979. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  3980. border-top-left-radius: 0;
  3981. border-top-right-radius: 0;
  3982. }
  3983. .panel-heading + .list-group .list-group-item:first-child {
  3984. border-top-width: 0;
  3985. }
  3986. .list-group + .panel-footer {
  3987. border-top-width: 0;
  3988. }
  3989. .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
  3990. margin-bottom: 0;
  3991. }
  3992. .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
  3993. padding-right: 20px;
  3994. padding-left: 20px;
  3995. }
  3996. .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
  3997. border-top-left-radius: 0;
  3998. border-top-right-radius: 0;
  3999. }
  4000. .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  4001. border-top-left-radius: 0;
  4002. border-top-right-radius: 0;
  4003. }
  4004. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  4005. border-top-left-radius: 0;
  4006. }
  4007. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  4008. border-top-right-radius: 0;
  4009. }
  4010. .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
  4011. border-bottom-right-radius: 0;
  4012. border-bottom-left-radius: 0;
  4013. }
  4014. .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  4015. border-bottom-right-radius: 0;
  4016. border-bottom-left-radius: 0;
  4017. }
  4018. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  4019. border-bottom-left-radius: 0;
  4020. }
  4021. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  4022. border-bottom-right-radius: 0;
  4023. }
  4024. .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
  4025. border-top: 1px solid #e4eaec;
  4026. }
  4027. .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
  4028. border-top: 0;
  4029. }
  4030. .panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  4031. border: 0;
  4032. }
  4033. .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  4034. border-left: 0;
  4035. }
  4036. .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  4037. border-right: 0;
  4038. }
  4039. .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  4040. border-bottom: 0;
  4041. }
  4042. .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  4043. border-bottom: 0;
  4044. }
  4045. .panel > .table-responsive {
  4046. margin-bottom: 0;
  4047. border: 0;
  4048. }
  4049. .panel-group {
  4050. margin-bottom: 22px;
  4051. }
  4052. .panel-group .panel {
  4053. margin-bottom: 0;
  4054. border-radius: 1px;
  4055. }
  4056. .panel-group .panel + .panel {
  4057. margin-top: 5px;
  4058. }
  4059. .panel-group .panel-heading {
  4060. border-bottom: 0;
  4061. }
  4062. .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
  4063. border-top: 1px solid #e4eaec;
  4064. }
  4065. .panel-group .panel-footer {
  4066. border-top: 0;
  4067. }
  4068. .panel-group .panel-footer + .panel-collapse .panel-body {
  4069. border-bottom: 1px solid #e4eaec;
  4070. }
  4071. .panel-default {
  4072. border-color: #e4eaec;
  4073. }
  4074. .panel-default > .panel-heading {
  4075. color: #76838f;
  4076. background-color: #e4eaec;
  4077. border-color: #e4eaec;
  4078. }
  4079. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  4080. border-top-color: #e4eaec;
  4081. }
  4082. .panel-default > .panel-heading .badge {
  4083. color: #e4eaec;
  4084. background-color: #76838f;
  4085. }
  4086. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  4087. border-bottom-color: #e4eaec;
  4088. }
  4089. .panel-primary {
  4090. border-color: #62a8ea;
  4091. }
  4092. .panel-primary > .panel-heading {
  4093. color: #fff;
  4094. background-color: #62a8ea;
  4095. border-color: #62a8ea;
  4096. }
  4097. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  4098. border-top-color: #62a8ea;
  4099. }
  4100. .panel-primary > .panel-heading .badge {
  4101. color: #62a8ea;
  4102. background-color: #fff;
  4103. }
  4104. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  4105. border-bottom-color: #62a8ea;
  4106. }
  4107. .panel-success {
  4108. border-color: #3dae6a;
  4109. }
  4110. .panel-success > .panel-heading {
  4111. color: #fff;
  4112. background-color: #46be8a;
  4113. border-color: #3dae6a;
  4114. }
  4115. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  4116. border-top-color: #3dae6a;
  4117. }
  4118. .panel-success > .panel-heading .badge {
  4119. color: #46be8a;
  4120. background-color: #fff;
  4121. }
  4122. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  4123. border-bottom-color: #3dae6a;
  4124. }
  4125. .panel-info {
  4126. border-color: #3bcdc4;
  4127. }
  4128. .panel-info > .panel-heading {
  4129. color: #fff;
  4130. background-color: #57c7d4;
  4131. border-color: #3bcdc4;
  4132. }
  4133. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  4134. border-top-color: #3bcdc4;
  4135. }
  4136. .panel-info > .panel-heading .badge {
  4137. color: #57c7d4;
  4138. background-color: #fff;
  4139. }
  4140. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  4141. border-bottom-color: #3bcdc4;
  4142. }
  4143. .panel-warning {
  4144. border-color: #f18246;
  4145. }
  4146. .panel-warning > .panel-heading {
  4147. color: #fff;
  4148. background-color: #f2a654;
  4149. border-color: #f18246;
  4150. }
  4151. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  4152. border-top-color: #f18246;
  4153. }
  4154. .panel-warning > .panel-heading .badge {
  4155. color: #f2a654;
  4156. background-color: #fff;
  4157. }
  4158. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  4159. border-bottom-color: #f18246;
  4160. }
  4161. .panel-danger {
  4162. border-color: #f85974;
  4163. }
  4164. .panel-danger > .panel-heading {
  4165. color: #fff;
  4166. background-color: #f96868;
  4167. border-color: #f85974;
  4168. }
  4169. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  4170. border-top-color: #f85974;
  4171. }
  4172. .panel-danger > .panel-heading .badge {
  4173. color: #f96868;
  4174. background-color: #fff;
  4175. }
  4176. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  4177. border-bottom-color: #f85974;
  4178. }
  4179. .embed-responsive {
  4180. position: relative;
  4181. display: block;
  4182. height: 0;
  4183. padding: 0;
  4184. overflow: hidden;
  4185. }
  4186. .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  4187. position: absolute;
  4188. top: 0;
  4189. bottom: 0;
  4190. left: 0;
  4191. width: 100%;
  4192. height: 100%;
  4193. border: 0;
  4194. }
  4195. .embed-responsive-16by9 {
  4196. padding-bottom: 56.25%;
  4197. }
  4198. .embed-responsive-4by3 {
  4199. padding-bottom: 75%;
  4200. }
  4201. .well {
  4202. min-height: 20px;
  4203. padding: 19px;
  4204. margin-bottom: 20px;
  4205. background-color: #f3f7f9;
  4206. border: 1px solid #e4eaec;
  4207. border-radius: 3px;
  4208. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  4209. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  4210. }
  4211. .well blockquote {
  4212. border-color: #ddd;
  4213. border-color: rgba(0, 0, 0, .15);
  4214. }
  4215. .well-lg {
  4216. padding: 24px;
  4217. border-radius: 4px;
  4218. }
  4219. .well-sm {
  4220. padding: 9px;
  4221. border-radius: 2px;
  4222. }
  4223. .close {
  4224. float: right;
  4225. font-size: 21px;
  4226. font-weight: 700;
  4227. line-height: 1;
  4228. color: #000;
  4229. text-shadow: none;
  4230. filter: alpha(opacity=20);
  4231. opacity: .2;
  4232. }
  4233. .close:hover, .close:focus {
  4234. color: #000;
  4235. text-decoration: none;
  4236. cursor: pointer;
  4237. filter: alpha(opacity=50);
  4238. opacity: .5;
  4239. }
  4240. button.close {
  4241. -webkit-appearance: none;
  4242. padding: 0;
  4243. cursor: pointer;
  4244. background: transparent;
  4245. border: 0;
  4246. }
  4247. .modal-open {
  4248. overflow: hidden;
  4249. }
  4250. .modal {
  4251. position: fixed;
  4252. top: 0;
  4253. right: 0;
  4254. bottom: 0;
  4255. left: 0;
  4256. z-index: 1050;
  4257. display: none;
  4258. overflow: hidden;
  4259. -webkit-overflow-scrolling: touch;
  4260. outline: 0;
  4261. }
  4262. .modal.fade .modal-dialog {
  4263. -webkit-transition: -webkit-transform .3s ease-out;
  4264. -moz-transition: -moz-transform .3s ease-out;
  4265. -o-transition: -o-transform .3s ease-out;
  4266. transition: -webkit-transform .3s ease-out;
  4267. transition: transform .3s ease-out;
  4268. transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
  4269. -webkit-transform: translate(0, -25%);
  4270. -ms-transform: translate(0, -25%);
  4271. -o-transform: translate(0, -25%);
  4272. transform: translate(0, -25%);
  4273. }
  4274. .modal.in .modal-dialog {
  4275. -webkit-transform: translate(0, 0);
  4276. -ms-transform: translate(0, 0);
  4277. -o-transform: translate(0, 0);
  4278. transform: translate(0, 0);
  4279. }
  4280. .modal-open .modal {
  4281. overflow-x: hidden;
  4282. overflow-y: auto;
  4283. }
  4284. .modal-dialog {
  4285. position: relative;
  4286. width: auto;
  4287. margin: 10px;
  4288. }
  4289. .modal-content {
  4290. position: relative;
  4291. background-color: #fff;
  4292. -webkit-background-clip: padding-box;
  4293. background-clip: padding-box;
  4294. border: 1px solid #999;
  4295. border: 1px solid transparent;
  4296. border-radius: 4px;
  4297. outline: 0;
  4298. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  4299. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  4300. }
  4301. .modal-backdrop {
  4302. position: fixed;
  4303. top: 0;
  4304. right: 0;
  4305. bottom: 0;
  4306. left: 0;
  4307. z-index: 1040;
  4308. background-color: #000;
  4309. }
  4310. .modal-backdrop.fade {
  4311. filter: alpha(opacity=0);
  4312. opacity: 0;
  4313. }
  4314. .modal-backdrop.in {
  4315. filter: alpha(opacity=50);
  4316. opacity: .5;
  4317. }
  4318. .modal-header {
  4319. padding: 10px 20px;
  4320. border-bottom: 1px solid #e4eaec;
  4321. }
  4322. .modal-header .close {
  4323. margin-top: -2px;
  4324. }
  4325. .modal-title {
  4326. margin: 0;
  4327. line-height: 1.6;
  4328. }
  4329. .modal-body {
  4330. position: relative;
  4331. padding: 20px;
  4332. }
  4333. .modal-footer {
  4334. padding: 20px;
  4335. text-align: right;
  4336. border-top: 1px solid #e4eaec;
  4337. }
  4338. .modal-footer .btn + .btn {
  4339. margin-bottom: 0;
  4340. margin-left: 5px;
  4341. }
  4342. .modal-footer .btn-group .btn + .btn {
  4343. margin-left: -1px;
  4344. }
  4345. .modal-footer .btn-block + .btn-block {
  4346. margin-left: 0;
  4347. }
  4348. .modal-scrollbar-measure {
  4349. position: absolute;
  4350. top: -9999px;
  4351. width: 50px;
  4352. height: 50px;
  4353. overflow: scroll;
  4354. }
  4355. @media (min-width: 768px) {
  4356. .modal-dialog {
  4357. width: 500px;
  4358. margin: 30px auto;
  4359. }
  4360. .modal-content {
  4361. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  4362. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  4363. }
  4364. .modal-sm {
  4365. width: 300px;
  4366. }
  4367. }
  4368. @media (min-width: 992px) {
  4369. .modal-lg {
  4370. width: 900px;
  4371. }
  4372. }
  4373. .tooltip {
  4374. position: absolute;
  4375. z-index: 1900;
  4376. display: block;
  4377. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft Yahei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  4378. font-size: 12px;
  4379. font-style: normal;
  4380. font-weight: normal;
  4381. line-height: 1.6;
  4382. text-align: left;
  4383. text-align: start;
  4384. text-decoration: none;
  4385. text-shadow: none;
  4386. text-transform: none;
  4387. letter-spacing: normal;
  4388. word-break: normal;
  4389. word-spacing: normal;
  4390. word-wrap: normal;
  4391. white-space: normal;
  4392. filter: alpha(opacity=0);
  4393. opacity: 0;
  4394. line-break: auto;
  4395. }
  4396. .tooltip.in {
  4397. filter: alpha(opacity=90);
  4398. opacity: .9;
  4399. }
  4400. .tooltip.top {
  4401. padding: 4px 0;
  4402. margin-top: -3px;
  4403. }
  4404. .tooltip.right {
  4405. padding: 0 4px;
  4406. margin-left: 3px;
  4407. }
  4408. .tooltip.bottom {
  4409. padding: 4px 0;
  4410. margin-top: 3px;
  4411. }
  4412. .tooltip.left {
  4413. padding: 0 4px;
  4414. margin-left: -3px;
  4415. }
  4416. .tooltip-inner {
  4417. max-width: 200px;
  4418. padding: 3px 8px;
  4419. color: #fff;
  4420. text-align: center;
  4421. background-color: rgba(0, 0, 0, .8);
  4422. border-radius: 3px;
  4423. }
  4424. .tooltip-arrow {
  4425. position: absolute;
  4426. width: 0;
  4427. height: 0;
  4428. border-color: transparent;
  4429. border-style: solid;
  4430. }
  4431. .tooltip.top .tooltip-arrow {
  4432. bottom: 0;
  4433. left: 50%;
  4434. margin-left: -4px;
  4435. border-width: 4px 4px 0;
  4436. border-top-color: rgba(0, 0, 0, .8);
  4437. }
  4438. .tooltip.top-left .tooltip-arrow {
  4439. right: 4px;
  4440. bottom: 0;
  4441. margin-bottom: -4px;
  4442. border-width: 4px 4px 0;
  4443. border-top-color: rgba(0, 0, 0, .8);
  4444. }
  4445. .tooltip.top-right .tooltip-arrow {
  4446. bottom: 0;
  4447. left: 4px;
  4448. margin-bottom: -4px;
  4449. border-width: 4px 4px 0;
  4450. border-top-color: rgba(0, 0, 0, .8);
  4451. }
  4452. .tooltip.right .tooltip-arrow {
  4453. top: 50%;
  4454. left: 0;
  4455. margin-top: -4px;
  4456. border-width: 4px 4px 4px 0;
  4457. border-right-color: rgba(0, 0, 0, .8);
  4458. }
  4459. .tooltip.left .tooltip-arrow {
  4460. top: 50%;
  4461. right: 0;
  4462. margin-top: -4px;
  4463. border-width: 4px 0 4px 4px;
  4464. border-left-color: rgba(0, 0, 0, .8);
  4465. }
  4466. .tooltip.bottom .tooltip-arrow {
  4467. top: 0;
  4468. left: 50%;
  4469. margin-left: -4px;
  4470. border-width: 0 4px 4px;
  4471. border-bottom-color: rgba(0, 0, 0, .8);
  4472. }
  4473. .tooltip.bottom-left .tooltip-arrow {
  4474. top: 0;
  4475. right: 4px;
  4476. margin-top: -4px;
  4477. border-width: 0 4px 4px;
  4478. border-bottom-color: rgba(0, 0, 0, .8);
  4479. }
  4480. .tooltip.bottom-right .tooltip-arrow {
  4481. top: 0;
  4482. left: 4px;
  4483. margin-top: -4px;
  4484. border-width: 0 4px 4px;
  4485. border-bottom-color: rgba(0, 0, 0, .8);
  4486. }
  4487. .popover {
  4488. position: absolute;
  4489. top: 0;
  4490. left: 0;
  4491. z-index: 1800;
  4492. display: none;
  4493. max-width: 276px;
  4494. padding: 1px;
  4495. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft Yahei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  4496. font-size: 14px;
  4497. font-style: normal;
  4498. font-weight: normal;
  4499. line-height: 1.6;
  4500. text-align: left;
  4501. text-align: start;
  4502. text-decoration: none;
  4503. text-shadow: none;
  4504. text-transform: none;
  4505. letter-spacing: normal;
  4506. word-break: normal;
  4507. word-spacing: normal;
  4508. word-wrap: normal;
  4509. white-space: normal;
  4510. background-color: #fff;
  4511. -webkit-background-clip: padding-box;
  4512. background-clip: padding-box;
  4513. border: 1px solid #e4eaec;
  4514. border: 1px solid rgba(204, 213, 219, .8);
  4515. border-radius: 4px;
  4516. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  4517. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  4518. line-break: auto;
  4519. }
  4520. .popover.top {
  4521. margin-top: -6px;
  4522. }
  4523. .popover.right {
  4524. margin-left: 6px;
  4525. }
  4526. .popover.bottom {
  4527. margin-top: 6px;
  4528. }
  4529. .popover.left {
  4530. margin-left: -6px;
  4531. }
  4532. .popover-title {
  4533. padding: 8px 14px;
  4534. margin: 0;
  4535. font-size: 14px;
  4536. background-color: #f3f7f9;
  4537. border-bottom: 1px solid #e2ecf1;
  4538. border-radius: 3px 3px 0 0;
  4539. }
  4540. .popover-content {
  4541. padding: 9px 14px;
  4542. }
  4543. .popover > .arrow, .popover > .arrow:after {
  4544. position: absolute;
  4545. display: block;
  4546. width: 0;
  4547. height: 0;
  4548. border-color: transparent;
  4549. border-style: solid;
  4550. }
  4551. .popover > .arrow {
  4552. border-width: 7px;
  4553. }
  4554. .popover > .arrow:after {
  4555. content: "";
  4556. border-width: 6px;
  4557. }
  4558. .popover.top > .arrow {
  4559. bottom: -7px;
  4560. left: 50%;
  4561. margin-left: -7px;
  4562. border-top-color: #a8bbc2;
  4563. border-top-color: rgba(204, 213, 219, .85);
  4564. border-bottom-width: 0;
  4565. }
  4566. .popover.top > .arrow:after {
  4567. bottom: 1px;
  4568. margin-left: -6px;
  4569. content: " ";
  4570. border-top-color: #fff;
  4571. border-bottom-width: 0;
  4572. }
  4573. .popover.right > .arrow {
  4574. top: 50%;
  4575. left: -7px;
  4576. margin-top: -7px;
  4577. border-right-color: #a8bbc2;
  4578. border-right-color: rgba(204, 213, 219, .85);
  4579. border-left-width: 0;
  4580. }
  4581. .popover.right > .arrow:after {
  4582. bottom: -6px;
  4583. left: 1px;
  4584. content: " ";
  4585. border-right-color: #fff;
  4586. border-left-width: 0;
  4587. }
  4588. .popover.bottom > .arrow {
  4589. top: -7px;
  4590. left: 50%;
  4591. margin-left: -7px;
  4592. border-top-width: 0;
  4593. border-bottom-color: #a8bbc2;
  4594. border-bottom-color: rgba(204, 213, 219, .85);
  4595. }
  4596. .popover.bottom > .arrow:after {
  4597. top: 1px;
  4598. margin-left: -6px;
  4599. content: " ";
  4600. border-top-width: 0;
  4601. border-bottom-color: #fff;
  4602. }
  4603. .popover.left > .arrow {
  4604. top: 50%;
  4605. right: -7px;
  4606. margin-top: -7px;
  4607. border-right-width: 0;
  4608. border-left-color: #a8bbc2;
  4609. border-left-color: rgba(204, 213, 219, .85);
  4610. }
  4611. .popover.left > .arrow:after {
  4612. right: 1px;
  4613. bottom: -6px;
  4614. content: " ";
  4615. border-right-width: 0;
  4616. border-left-color: #fff;
  4617. }
  4618. .carousel {
  4619. position: relative;
  4620. }
  4621. .carousel-inner {
  4622. position: relative;
  4623. width: 100%;
  4624. overflow: hidden;
  4625. }
  4626. .carousel-inner > .item {
  4627. position: relative;
  4628. display: none;
  4629. -webkit-transition: .6s ease-in-out left;
  4630. -o-transition: .6s ease-in-out left;
  4631. transition: .6s ease-in-out left;
  4632. }
  4633. .carousel-inner > .item > img, .carousel-inner > .item > a > img {
  4634. line-height: 1;
  4635. }
  4636. @media all and (transform-3d), (-webkit-transform-3d) {
  4637. .carousel-inner > .item {
  4638. -webkit-transition: -webkit-transform .6s ease-in-out;
  4639. -moz-transition: -moz-transform .6s ease-in-out;
  4640. -o-transition: -o-transform .6s ease-in-out;
  4641. transition: -webkit-transform .6s ease-in-out;
  4642. transition: transform .6s ease-in-out;
  4643. transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out;
  4644. -webkit-backface-visibility: hidden;
  4645. -moz-backface-visibility: hidden;
  4646. backface-visibility: hidden;
  4647. -webkit-perspective: 1000px;
  4648. -moz-perspective: 1000px;
  4649. perspective: 1000px;
  4650. }
  4651. .carousel-inner > .item.next, .carousel-inner > .item.active.right {
  4652. left: 0;
  4653. -webkit-transform: translate3d(100%, 0, 0);
  4654. transform: translate3d(100%, 0, 0);
  4655. }
  4656. .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
  4657. left: 0;
  4658. -webkit-transform: translate3d(-100%, 0, 0);
  4659. transform: translate3d(-100%, 0, 0);
  4660. }
  4661. .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
  4662. left: 0;
  4663. -webkit-transform: translate3d(0, 0, 0);
  4664. transform: translate3d(0, 0, 0);
  4665. }
  4666. }
  4667. .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  4668. display: block;
  4669. }
  4670. .carousel-inner > .active {
  4671. left: 0;
  4672. }
  4673. .carousel-inner > .next, .carousel-inner > .prev {
  4674. position: absolute;
  4675. top: 0;
  4676. width: 100%;
  4677. }
  4678. .carousel-inner > .next {
  4679. left: 100%;
  4680. }
  4681. .carousel-inner > .prev {
  4682. left: -100%;
  4683. }
  4684. .carousel-inner > .next.left, .carousel-inner > .prev.right {
  4685. left: 0;
  4686. }
  4687. .carousel-inner > .active.left {
  4688. left: -100%;
  4689. }
  4690. .carousel-inner > .active.right {
  4691. left: 100%;
  4692. }
  4693. .carousel-control {
  4694. position: absolute;
  4695. top: 0;
  4696. bottom: 0;
  4697. left: 0;
  4698. width: 15%;
  4699. font-size: 16px;
  4700. color: #fff;
  4701. text-align: center;
  4702. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  4703. background-color: rgba(0, 0, 0, 0);
  4704. filter: alpha(opacity=0);
  4705. opacity: 0;
  4706. }
  4707. .carousel-control.left {
  4708. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  4709. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  4710. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  4711. background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  4712. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  4713. background-repeat: repeat-x;
  4714. }
  4715. .carousel-control.right {
  4716. right: 0;
  4717. left: auto;
  4718. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  4719. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  4720. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  4721. background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  4722. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  4723. background-repeat: repeat-x;
  4724. }
  4725. .carousel-control:hover, .carousel-control:focus {
  4726. color: #fff;
  4727. text-decoration: none;
  4728. filter: alpha(opacity=90);
  4729. outline: 0;
  4730. opacity: .9;
  4731. }
  4732. .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
  4733. position: absolute;
  4734. top: 50%;
  4735. z-index: 5;
  4736. display: inline-block;
  4737. margin-top: -10px;
  4738. }
  4739. .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
  4740. left: 50%;
  4741. margin-left: -10px;
  4742. }
  4743. .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
  4744. right: 50%;
  4745. margin-right: -10px;
  4746. }
  4747. .carousel-control .icon-prev, .carousel-control .icon-next {
  4748. width: 20px;
  4749. height: 20px;
  4750. font-family: serif;
  4751. line-height: 1;
  4752. }
  4753. .carousel-control .icon-prev:before {
  4754. content: "\2039";
  4755. }
  4756. .carousel-control .icon-next:before {
  4757. content: "\203a";
  4758. }
  4759. .carousel-indicators {
  4760. position: absolute;
  4761. bottom: 10px;
  4762. left: 50%;
  4763. z-index: 15;
  4764. width: 60%;
  4765. padding-left: 0;
  4766. margin-left: -30%;
  4767. text-align: center;
  4768. list-style: none;
  4769. }
  4770. .carousel-indicators li {
  4771. display: inline-block;
  4772. width: 10px;
  4773. height: 10px;
  4774. margin: 1px;
  4775. text-indent: -999px;
  4776. cursor: pointer;
  4777. background-color: #000 \9;
  4778. background-color: rgba(0, 0, 0, 0);
  4779. border: 1px solid #fff;
  4780. border-radius: 10px;
  4781. }
  4782. .carousel-indicators .active {
  4783. width: 12px;
  4784. height: 12px;
  4785. margin: 0;
  4786. background-color: #fff;
  4787. }
  4788. .carousel-caption {
  4789. position: absolute;
  4790. right: 15%;
  4791. bottom: 20px;
  4792. left: 15%;
  4793. z-index: 10;
  4794. padding-top: 20px;
  4795. padding-bottom: 20px;
  4796. color: #fff;
  4797. text-align: center;
  4798. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  4799. }
  4800. .carousel-caption .btn {
  4801. text-shadow: none;
  4802. }
  4803. @media screen and (min-width: 768px) {
  4804. .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
  4805. width: 24px;
  4806. height: 24px;
  4807. margin-top: -8px;
  4808. font-size: 24px;
  4809. }
  4810. .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
  4811. margin-left: -8px;
  4812. }
  4813. .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
  4814. margin-right: -8px;
  4815. }
  4816. .carousel-caption {
  4817. right: 20%;
  4818. left: 20%;
  4819. padding-bottom: 30px;
  4820. }
  4821. .carousel-indicators {
  4822. bottom: 20px;
  4823. }
  4824. }
  4825. .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
  4826. display: table;
  4827. content: " ";
  4828. }
  4829. .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after {
  4830. clear: both;
  4831. }
  4832. .center-block {
  4833. display: block;
  4834. margin-right: auto;
  4835. margin-left: auto;
  4836. }
  4837. .pull-right {
  4838. float: right !important;
  4839. }
  4840. .pull-left {
  4841. float: left !important;
  4842. }
  4843. .hide {
  4844. display: none !important;
  4845. }
  4846. .show {
  4847. display: block !important;
  4848. }
  4849. .invisible {
  4850. visibility: hidden;
  4851. }
  4852. .text-hide {
  4853. font: 0/0 a;
  4854. color: transparent;
  4855. text-shadow: none;
  4856. background-color: transparent;
  4857. border: 0;
  4858. }
  4859. .hidden {
  4860. display: none !important;
  4861. }
  4862. .affix {
  4863. position: fixed;
  4864. }
  4865. @-ms-viewport {
  4866. width: device-width;
  4867. }
  4868. .visible-xs, .visible-sm, .visible-md, .visible-lg {
  4869. display: none !important;
  4870. }
  4871. .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  4872. display: none !important;
  4873. }
  4874. @media (max-width: 767px) {
  4875. .visible-xs {
  4876. display: block !important;
  4877. }
  4878. table.visible-xs {
  4879. display: table !important;
  4880. }
  4881. tr.visible-xs {
  4882. display: table-row !important;
  4883. }
  4884. th.visible-xs, td.visible-xs {
  4885. display: table-cell !important;
  4886. }
  4887. }
  4888. @media (max-width: 767px) {
  4889. .visible-xs-block {
  4890. display: block !important;
  4891. }
  4892. }
  4893. @media (max-width: 767px) {
  4894. .visible-xs-inline {
  4895. display: inline !important;
  4896. }
  4897. }
  4898. @media (max-width: 767px) {
  4899. .visible-xs-inline-block {
  4900. display: inline-block !important;
  4901. }
  4902. }
  4903. @media (min-width: 768px) and (max-width: 991px) {
  4904. .visible-sm {
  4905. display: block !important;
  4906. }
  4907. table.visible-sm {
  4908. display: table !important;
  4909. }
  4910. tr.visible-sm {
  4911. display: table-row !important;
  4912. }
  4913. th.visible-sm, td.visible-sm {
  4914. display: table-cell !important;
  4915. }
  4916. }
  4917. @media (min-width: 768px) and (max-width: 991px) {
  4918. .visible-sm-block {
  4919. display: block !important;
  4920. }
  4921. }
  4922. @media (min-width: 768px) and (max-width: 991px) {
  4923. .visible-sm-inline {
  4924. display: inline !important;
  4925. }
  4926. }
  4927. @media (min-width: 768px) and (max-width: 991px) {
  4928. .visible-sm-inline-block {
  4929. display: inline-block !important;
  4930. }
  4931. }
  4932. @media (min-width: 992px) and (max-width: 1199px) {
  4933. .visible-md {
  4934. display: block !important;
  4935. }
  4936. table.visible-md {
  4937. display: table !important;
  4938. }
  4939. tr.visible-md {
  4940. display: table-row !important;
  4941. }
  4942. th.visible-md, td.visible-md {
  4943. display: table-cell !important;
  4944. }
  4945. }
  4946. @media (min-width: 992px) and (max-width: 1199px) {
  4947. .visible-md-block {
  4948. display: block !important;
  4949. }
  4950. }
  4951. @media (min-width: 992px) and (max-width: 1199px) {
  4952. .visible-md-inline {
  4953. display: inline !important;
  4954. }
  4955. }
  4956. @media (min-width: 992px) and (max-width: 1199px) {
  4957. .visible-md-inline-block {
  4958. display: inline-block !important;
  4959. }
  4960. }
  4961. @media (min-width: 1200px) {
  4962. .visible-lg {
  4963. display: block !important;
  4964. }
  4965. table.visible-lg {
  4966. display: table !important;
  4967. }
  4968. tr.visible-lg {
  4969. display: table-row !important;
  4970. }
  4971. th.visible-lg, td.visible-lg {
  4972. display: table-cell !important;
  4973. }
  4974. }
  4975. @media (min-width: 1200px) {
  4976. .visible-lg-block {
  4977. display: block !important;
  4978. }
  4979. }
  4980. @media (min-width: 1200px) {
  4981. .visible-lg-inline {
  4982. display: inline !important;
  4983. }
  4984. }
  4985. @media (min-width: 1200px) {
  4986. .visible-lg-inline-block {
  4987. display: inline-block !important;
  4988. }
  4989. }
  4990. @media (max-width: 767px) {
  4991. .hidden-xs {
  4992. display: none !important;
  4993. }
  4994. }
  4995. @media (min-width: 768px) and (max-width: 991px) {
  4996. .hidden-sm {
  4997. display: none !important;
  4998. }
  4999. }
  5000. @media (min-width: 992px) and (max-width: 1199px) {
  5001. .hidden-md {
  5002. display: none !important;
  5003. }
  5004. }
  5005. @media (min-width: 1200px) {
  5006. .hidden-lg {
  5007. display: none !important;
  5008. }
  5009. }
  5010. .visible-print {
  5011. display: none !important;
  5012. }
  5013. @media print {
  5014. .visible-print {
  5015. display: block !important;
  5016. }
  5017. table.visible-print {
  5018. display: table !important;
  5019. }
  5020. tr.visible-print {
  5021. display: table-row !important;
  5022. }
  5023. th.visible-print, td.visible-print {
  5024. display: table-cell !important;
  5025. }
  5026. }
  5027. .visible-print-block {
  5028. display: none !important;
  5029. }
  5030. @media print {
  5031. .visible-print-block {
  5032. display: block !important;
  5033. }
  5034. }
  5035. .visible-print-inline {
  5036. display: none !important;
  5037. }
  5038. @media print {
  5039. .visible-print-inline {
  5040. display: inline !important;
  5041. }
  5042. }
  5043. .visible-print-inline-block {
  5044. display: none !important;
  5045. }
  5046. @media print {
  5047. .visible-print-inline-block {
  5048. display: inline-block !important;
  5049. }
  5050. }
  5051. @media print {
  5052. .hidden-print {
  5053. display: none !important;
  5054. }
  5055. }