css.css 256 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803
  1. .am-container,.am-g-fixed {
  2. max-width: 1000px
  3. }
  4. .am-container:after,.am-container:before,.am-g:after,.am-g:before,[class*=am-avg-]:after,[class*=am-avg-]:before {
  5. display: table;
  6. content: " "
  7. }
  8. .am-container:after,.am-g:after,[class*=am-avg-]:after {
  9. clear: both
  10. }
  11. .am-scrollbar-measure {
  12. width: 100px;
  13. height: 100px;
  14. overflow: scroll;
  15. position: absolute;
  16. top: -9999px
  17. }
  18. .am-container {
  19. -webkit-box-sizing: border-box;
  20. box-sizing: border-box;
  21. margin-left: auto;
  22. margin-right: auto;
  23. padding-left: 1rem;
  24. padding-right: 1rem;
  25. width: 100%
  26. }
  27. .am-container>.am-g {
  28. width: auto;
  29. margin-left: -1rem;
  30. margin-right: -1rem
  31. }
  32. @media only screen and (min-width:641px) {
  33. .am-container {
  34. padding-left: 1.5rem;
  35. padding-right: 1.5rem
  36. }
  37. .am-container>.am-g {
  38. margin-left: -1.5rem;
  39. margin-right: -1.5rem
  40. }
  41. }
  42. .am-g {
  43. margin: 0 auto;
  44. width: 100%
  45. }
  46. .am-g .am-g {
  47. margin-left: -1rem;
  48. margin-right: -1rem;
  49. width: auto
  50. }
  51. .am-g .am-g.am-g-collapse {
  52. margin-left: 0;
  53. margin-right: 0;
  54. width: auto
  55. }
  56. @media only screen and (min-width:641px) {
  57. .am-g .am-g {
  58. margin-left: -1.5rem;
  59. margin-right: -1.5rem
  60. }
  61. }
  62. .am-g.am-g-collapse .am-g {
  63. margin-left: 0;
  64. margin-right: 0
  65. }
  66. .am-g-collapse [class*=am-u-] {
  67. padding-left: 0;
  68. padding-right: 0
  69. }[class*=am-u-] {
  70. width: 100%;
  71. padding-left: 1rem;
  72. padding-right: 1rem;
  73. float: left;
  74. position: relative
  75. }[class*=am-u-]+[class*=am-u-]:last-child {
  76. float: right
  77. }[class*=am-u-]+[class*=am-u-].am-u-end {
  78. float: left
  79. }[class*=am-u-pull-] {
  80. left: auto
  81. }[class*=am-u-push-] {
  82. right: auto
  83. }
  84. @media only screen {
  85. .am-u-sm-1 {
  86. width: 8.33333333%
  87. }
  88. .am-u-sm-2 {
  89. width: 16.66666667%
  90. }
  91. .am-u-sm-3 {
  92. width: 25%
  93. }
  94. .am-u-sm-4 {
  95. width: 33.33333333%
  96. }
  97. .am-u-sm-5 {
  98. width: 41.66666667%
  99. }
  100. .am-u-sm-6 {
  101. width: 50%
  102. }
  103. .am-u-sm-7 {
  104. width: 58.33333333%
  105. }
  106. .am-u-sm-8 {
  107. width: 66.66666667%
  108. }
  109. .am-u-sm-9 {
  110. width: 75%
  111. }
  112. .am-u-sm-10 {
  113. width: 83.33333333%
  114. }
  115. .am-u-sm-11 {
  116. width: 91.66666667%
  117. }
  118. .am-u-sm-12 {
  119. width: 100%
  120. }
  121. .am-u-sm-pull-0 {
  122. right: 0
  123. }
  124. .am-u-sm-pull-1 {
  125. right: 8.33333333%
  126. }
  127. .am-u-sm-pull-2 {
  128. right: 16.66666667%
  129. }
  130. .am-u-sm-pull-3 {
  131. right: 25%
  132. }
  133. .am-u-sm-pull-4 {
  134. right: 33.33333333%
  135. }
  136. .am-u-sm-pull-5 {
  137. right: 41.66666667%
  138. }
  139. .am-u-sm-pull-6 {
  140. right: 50%
  141. }
  142. .am-u-sm-pull-7 {
  143. right: 58.33333333%
  144. }
  145. .am-u-sm-pull-8 {
  146. right: 66.66666667%
  147. }
  148. .am-u-sm-pull-9 {
  149. right: 75%
  150. }
  151. .am-u-sm-pull-10 {
  152. right: 83.33333333%
  153. }
  154. .am-u-sm-pull-11 {
  155. right: 91.66666667%
  156. }
  157. .am-u-sm-push-0 {
  158. left: 0
  159. }
  160. .am-u-sm-push-1 {
  161. left: 8.33333333%
  162. }
  163. .am-u-sm-push-2 {
  164. left: 16.66666667%
  165. }
  166. .am-u-sm-push-3 {
  167. left: 25%
  168. }
  169. .am-u-sm-push-4 {
  170. left: 33.33333333%
  171. }
  172. .am-u-sm-push-5 {
  173. left: 41.66666667%
  174. }
  175. .am-u-sm-push-6 {
  176. left: 50%
  177. }
  178. .am-u-sm-push-7 {
  179. left: 58.33333333%
  180. }
  181. .am-u-sm-push-8 {
  182. left: 66.66666667%
  183. }
  184. .am-u-sm-push-9 {
  185. left: 75%
  186. }
  187. .am-u-sm-push-10 {
  188. left: 83.33333333%
  189. }
  190. .am-u-sm-push-11 {
  191. left: 91.66666667%
  192. }
  193. .am-u-sm-offset-0 {
  194. margin-left: 0
  195. }
  196. .am-u-sm-offset-1 {
  197. margin-left: 8.33333333%
  198. }
  199. .am-u-sm-offset-2 {
  200. margin-left: 16.66666667%
  201. }
  202. .am-u-sm-offset-3 {
  203. margin-left: 25%
  204. }
  205. .am-u-sm-offset-4 {
  206. margin-left: 33.33333333%
  207. }
  208. .am-u-sm-offset-5 {
  209. margin-left: 41.66666667%
  210. }
  211. .am-u-sm-offset-6 {
  212. margin-left: 50%
  213. }
  214. .am-u-sm-offset-7 {
  215. margin-left: 58.33333333%
  216. }
  217. .am-u-sm-offset-8 {
  218. margin-left: 66.66666667%
  219. }
  220. .am-u-sm-offset-9 {
  221. margin-left: 75%
  222. }
  223. .am-u-sm-offset-10 {
  224. margin-left: 83.33333333%
  225. }
  226. .am-u-sm-offset-11 {
  227. margin-left: 91.66666667%
  228. }
  229. .am-u-sm-reset-order {
  230. margin-left: 0;
  231. margin-right: 0;
  232. left: auto;
  233. right: auto;
  234. float: left
  235. }[ class*=am-u-].am-u-sm-centered {
  236. margin-left: auto;
  237. margin-right: auto;
  238. float: none
  239. }[ class*=am-u-].am-u-sm-centered:last-child {
  240. float: none
  241. }[ class*=am-u-].am-u-sm-uncentered {
  242. margin-left: 0;
  243. margin-right: 0;
  244. float: left
  245. }[ class*=am-u-].am-u-sm-uncentered:last-child {
  246. float: left
  247. }
  248. }
  249. @media only screen and (min-width:641px) {
  250. [ class*=am-u-] {
  251. padding-left: 1.5rem;
  252. padding-right: 1.5rem
  253. }
  254. .am-u-md-1 {
  255. width: 8.33333333%
  256. }
  257. .am-u-md-2 {
  258. width: 16.66666667%
  259. }
  260. .am-u-md-3 {
  261. width: 25%
  262. }
  263. .am-u-md-4 {
  264. width: 33.33333333%
  265. }
  266. .am-u-md-5 {
  267. width: 41.66666667%
  268. }
  269. .am-u-md-6 {
  270. width: 50%
  271. }
  272. .am-u-md-7 {
  273. width: 58.33333333%
  274. }
  275. .am-u-md-8 {
  276. width: 66.66666667%
  277. }
  278. .am-u-md-9 {
  279. width: 75%
  280. }
  281. .am-u-md-10 {
  282. width: 83.33333333%
  283. }
  284. .am-u-md-11 {
  285. width: 91.66666667%
  286. }
  287. .am-u-md-12 {
  288. width: 100%
  289. }
  290. .am-u-md-pull-0 {
  291. right: 0
  292. }
  293. .am-u-md-pull-1 {
  294. right: 8.33333333%
  295. }
  296. .am-u-md-pull-2 {
  297. right: 16.66666667%
  298. }
  299. .am-u-md-pull-3 {
  300. right: 25%
  301. }
  302. .am-u-md-pull-4 {
  303. right: 33.33333333%
  304. }
  305. .am-u-md-pull-5 {
  306. right: 41.66666667%
  307. }
  308. .am-u-md-pull-6 {
  309. right: 50%
  310. }
  311. .am-u-md-pull-7 {
  312. right: 58.33333333%
  313. }
  314. .am-u-md-pull-8 {
  315. right: 66.66666667%
  316. }
  317. .am-u-md-pull-9 {
  318. right: 75%
  319. }
  320. .am-u-md-pull-10 {
  321. right: 83.33333333%
  322. }
  323. .am-u-md-pull-11 {
  324. right: 91.66666667%
  325. }
  326. .am-u-md-push-0 {
  327. left: 0
  328. }
  329. .am-u-md-push-1 {
  330. left: 8.33333333%
  331. }
  332. .am-u-md-push-2 {
  333. left: 16.66666667%
  334. }
  335. .am-u-md-push-3 {
  336. left: 25%
  337. }
  338. .am-u-md-push-4 {
  339. left: 33.33333333%
  340. }
  341. .am-u-md-push-5 {
  342. left: 41.66666667%
  343. }
  344. .am-u-md-push-6 {
  345. left: 50%
  346. }
  347. .am-u-md-push-7 {
  348. left: 58.33333333%
  349. }
  350. .am-u-md-push-8 {
  351. left: 66.66666667%
  352. }
  353. .am-u-md-push-9 {
  354. left: 75%
  355. }
  356. .am-u-md-push-10 {
  357. left: 83.33333333%
  358. }
  359. .am-u-md-push-11 {
  360. left: 91.66666667%
  361. }
  362. .am-u-md-offset-0 {
  363. margin-left: 0
  364. }
  365. .am-u-md-offset-1 {
  366. margin-left: 8.33333333%
  367. }
  368. .am-u-md-offset-2 {
  369. margin-left: 16.66666667%
  370. }
  371. .am-u-md-offset-3 {
  372. margin-left: 25%
  373. }
  374. .am-u-md-offset-4 {
  375. margin-left: 33.33333333%
  376. }
  377. .am-u-md-offset-5 {
  378. margin-left: 41.66666667%
  379. }
  380. .am-u-md-offset-6 {
  381. margin-left: 50%
  382. }
  383. .am-u-md-offset-7 {
  384. margin-left: 58.33333333%
  385. }
  386. .am-u-md-offset-8 {
  387. margin-left: 66.66666667%
  388. }
  389. .am-u-md-offset-9 {
  390. margin-left: 75%
  391. }
  392. .am-u-md-offset-10 {
  393. margin-left: 83.33333333%
  394. }
  395. .am-u-md-offset-11 {
  396. margin-left: 91.66666667%
  397. }
  398. .am-u-md-reset-order {
  399. margin-left: 0;
  400. margin-right: 0;
  401. left: auto;
  402. right: auto;
  403. float: left
  404. }[ class*=am-u-].am-u-md-centered {
  405. margin-left: auto;
  406. margin-right: auto;
  407. float: none
  408. }[ class*=am-u-].am-u-md-centered:last-child {
  409. float: none
  410. }[ class*=am-u-].am-u-md-uncentered {
  411. margin-left: 0;
  412. margin-right: 0;
  413. float: left
  414. }[ class*=am-u-].am-u-md-uncentered:last-child {
  415. float: left
  416. }
  417. }
  418. @media only screen and (min-width:1025px) {
  419. .am-u-lg-1 {
  420. width: 8.33333333%
  421. }
  422. .am-u-lg-2 {
  423. width: 16.66666667%
  424. }
  425. .am-u-lg-3 {
  426. width: 25%
  427. }
  428. .am-u-lg-4 {
  429. width: 33.33333333%
  430. }
  431. .am-u-lg-5 {
  432. width: 41.66666667%
  433. }
  434. .am-u-lg-6 {
  435. width: 50%
  436. }
  437. .am-u-lg-7 {
  438. width: 58.33333333%
  439. }
  440. .am-u-lg-8 {
  441. width: 66.66666667%
  442. }
  443. .am-u-lg-9 {
  444. width: 75%
  445. }
  446. .am-u-lg-10 {
  447. width: 83.33333333%
  448. }
  449. .am-u-lg-11 {
  450. width: 91.66666667%
  451. }
  452. .am-u-lg-12 {
  453. width: 100%
  454. }
  455. .am-u-lg-pull-0 {
  456. right: 0
  457. }
  458. .am-u-lg-pull-1 {
  459. right: 8.33333333%
  460. }
  461. .am-u-lg-pull-2 {
  462. right: 16.66666667%
  463. }
  464. .am-u-lg-pull-3 {
  465. right: 25%
  466. }
  467. .am-u-lg-pull-4 {
  468. right: 33.33333333%
  469. }
  470. .am-u-lg-pull-5 {
  471. right: 41.66666667%
  472. }
  473. .am-u-lg-pull-6 {
  474. right: 50%
  475. }
  476. .am-u-lg-pull-7 {
  477. right: 58.33333333%
  478. }
  479. .am-u-lg-pull-8 {
  480. right: 66.66666667%
  481. }
  482. .am-u-lg-pull-9 {
  483. right: 75%
  484. }
  485. .am-u-lg-pull-10 {
  486. right: 83.33333333%
  487. }
  488. .am-u-lg-pull-11 {
  489. right: 91.66666667%
  490. }
  491. .am-u-lg-push-0 {
  492. left: 0
  493. }
  494. .am-u-lg-push-1 {
  495. left: 8.33333333%
  496. }
  497. .am-u-lg-push-2 {
  498. left: 16.66666667%
  499. }
  500. .am-u-lg-push-3 {
  501. left: 25%
  502. }
  503. .am-u-lg-push-4 {
  504. left: 33.33333333%
  505. }
  506. .am-u-lg-push-5 {
  507. left: 41.66666667%
  508. }
  509. .am-u-lg-push-6 {
  510. left: 50%
  511. }
  512. .am-u-lg-push-7 {
  513. left: 58.33333333%
  514. }
  515. .am-u-lg-push-8 {
  516. left: 66.66666667%
  517. }
  518. .am-u-lg-push-9 {
  519. left: 75%
  520. }
  521. .am-u-lg-push-10 {
  522. left: 83.33333333%
  523. }
  524. .am-u-lg-push-11 {
  525. left: 91.66666667%
  526. }
  527. .am-u-lg-offset-0 {
  528. margin-left: 0
  529. }
  530. .am-u-lg-offset-1 {
  531. margin-left: 8.33333333%
  532. }
  533. .am-u-lg-offset-2 {
  534. margin-left: 16.66666667%
  535. }
  536. .am-u-lg-offset-3 {
  537. margin-left: 25%
  538. }
  539. .am-u-lg-offset-4 {
  540. margin-left: 33.33333333%
  541. }
  542. .am-u-lg-offset-5 {
  543. margin-left: 41.66666667%
  544. }
  545. .am-u-lg-offset-6 {
  546. margin-left: 50%
  547. }
  548. .am-u-lg-offset-7 {
  549. margin-left: 58.33333333%
  550. }
  551. .am-u-lg-offset-8 {
  552. margin-left: 66.66666667%
  553. }
  554. .am-u-lg-offset-9 {
  555. margin-left: 75%
  556. }
  557. .am-u-lg-offset-10 {
  558. margin-left: 83.33333333%
  559. }
  560. .am-u-lg-offset-11 {
  561. margin-left: 91.66666667%
  562. }
  563. .am-u-lg-reset-order {
  564. margin-left: 0;
  565. margin-right: 0;
  566. left: auto;
  567. right: auto;
  568. float: left
  569. }[ class*=am-u-].am-u-lg-centered {
  570. margin-left: auto;
  571. margin-right: auto;
  572. float: none
  573. }[ class*=am-u-].am-u-lg-centered:last-child {
  574. float: none
  575. }[ class*=am-u-].am-u-lg-uncentered {
  576. margin-left: 0;
  577. margin-right: 0;
  578. float: left
  579. }[ class*=am-u-].am-u-lg-uncentered:last-child {
  580. float: left
  581. }
  582. }[class*=am-avg-] {
  583. display: block;
  584. padding: 0;
  585. margin: 0;
  586. list-style: none
  587. }[class*=am-avg-]>li {
  588. display: block;
  589. height: auto;
  590. float: left
  591. }
  592. @media only screen {
  593. .am-avg-sm-1>li {
  594. width: 100%
  595. }
  596. .am-avg-sm-1>li:nth-of-type(n) {
  597. clear: none
  598. }
  599. .am-avg-sm-1>li:nth-of-type(1n+1) {
  600. clear: both
  601. }
  602. .am-avg-sm-2>li {
  603. width: 50%
  604. }
  605. .am-avg-sm-2>li:nth-of-type(n) {
  606. clear: none
  607. }
  608. .am-avg-sm-2>li:nth-of-type(2n+1) {
  609. clear: both
  610. }
  611. .am-avg-sm-3>li {
  612. width: 33.33333333%
  613. }
  614. .am-avg-sm-3>li:nth-of-type(n) {
  615. clear: none
  616. }
  617. .am-avg-sm-3>li:nth-of-type(3n+1) {
  618. clear: both
  619. }
  620. .am-avg-sm-4>li {
  621. width: 25%
  622. }
  623. .am-avg-sm-4>li:nth-of-type(n) {
  624. clear: none
  625. }
  626. .am-avg-sm-4>li:nth-of-type(4n+1) {
  627. clear: both
  628. }
  629. .am-avg-sm-5>li {
  630. width: 20%
  631. }
  632. .am-avg-sm-5>li:nth-of-type(n) {
  633. clear: none
  634. }
  635. .am-avg-sm-5>li:nth-of-type(5n+1) {
  636. clear: both
  637. }
  638. .am-avg-sm-6>li {
  639. width: 16.66666667%
  640. }
  641. .am-avg-sm-6>li:nth-of-type(n) {
  642. clear: none
  643. }
  644. .am-avg-sm-6>li:nth-of-type(6n+1) {
  645. clear: both
  646. }
  647. .am-avg-sm-7>li {
  648. width: 14.28571429%
  649. }
  650. .am-avg-sm-7>li:nth-of-type(n) {
  651. clear: none
  652. }
  653. .am-avg-sm-7>li:nth-of-type(7n+1) {
  654. clear: both
  655. }
  656. .am-avg-sm-8>li {
  657. width: 12.5%
  658. }
  659. .am-avg-sm-8>li:nth-of-type(n) {
  660. clear: none
  661. }
  662. .am-avg-sm-8>li:nth-of-type(8n+1) {
  663. clear: both
  664. }
  665. .am-avg-sm-9>li {
  666. width: 11.11111111%
  667. }
  668. .am-avg-sm-9>li:nth-of-type(n) {
  669. clear: none
  670. }
  671. .am-avg-sm-9>li:nth-of-type(9n+1) {
  672. clear: both
  673. }
  674. .am-avg-sm-10>li {
  675. width: 10%
  676. }
  677. .am-avg-sm-10>li:nth-of-type(n) {
  678. clear: none
  679. }
  680. .am-avg-sm-10>li:nth-of-type(10n+1) {
  681. clear: both
  682. }
  683. .am-avg-sm-11>li {
  684. width: 9.09090909%
  685. }
  686. .am-avg-sm-11>li:nth-of-type(n) {
  687. clear: none
  688. }
  689. .am-avg-sm-11>li:nth-of-type(11n+1) {
  690. clear: both
  691. }
  692. .am-avg-sm-12>li {
  693. width: 8.33333333%
  694. }
  695. .am-avg-sm-12>li:nth-of-type(n) {
  696. clear: none
  697. }
  698. .am-avg-sm-12>li:nth-of-type(12n+1) {
  699. clear: both
  700. }
  701. }
  702. @media only screen and (min-width:641px) {
  703. .am-avg-md-1>li {
  704. width: 100%
  705. }
  706. .am-avg-md-1>li:nth-of-type(n) {
  707. clear: none
  708. }
  709. .am-avg-md-1>li:nth-of-type(1n+1) {
  710. clear: both
  711. }
  712. .am-avg-md-2>li {
  713. width: 50%
  714. }
  715. .am-avg-md-2>li:nth-of-type(n) {
  716. clear: none
  717. }
  718. .am-avg-md-2>li:nth-of-type(2n+1) {
  719. clear: both
  720. }
  721. .am-avg-md-3>li {
  722. width: 33.33333333%
  723. }
  724. .am-avg-md-3>li:nth-of-type(n) {
  725. clear: none
  726. }
  727. .am-avg-md-3>li:nth-of-type(3n+1) {
  728. clear: both
  729. }
  730. .am-avg-md-4>li {
  731. width: 25%
  732. }
  733. .am-avg-md-4>li:nth-of-type(n) {
  734. clear: none
  735. }
  736. .am-avg-md-4>li:nth-of-type(4n+1) {
  737. clear: both
  738. }
  739. .am-avg-md-5>li {
  740. width: 20%
  741. }
  742. .am-avg-md-5>li:nth-of-type(n) {
  743. clear: none
  744. }
  745. .am-avg-md-5>li:nth-of-type(5n+1) {
  746. clear: both
  747. }
  748. .am-avg-md-6>li {
  749. width: 16.66666667%
  750. }
  751. .am-avg-md-6>li:nth-of-type(n) {
  752. clear: none
  753. }
  754. .am-avg-md-6>li:nth-of-type(6n+1) {
  755. clear: both
  756. }
  757. .am-avg-md-7>li {
  758. width: 14.28571429%
  759. }
  760. .am-avg-md-7>li:nth-of-type(n) {
  761. clear: none
  762. }
  763. .am-avg-md-7>li:nth-of-type(7n+1) {
  764. clear: both
  765. }
  766. .am-avg-md-8>li {
  767. width: 12.5%
  768. }
  769. .am-avg-md-8>li:nth-of-type(n) {
  770. clear: none
  771. }
  772. .am-avg-md-8>li:nth-of-type(8n+1) {
  773. clear: both
  774. }
  775. .am-avg-md-9>li {
  776. width: 11.11111111%
  777. }
  778. .am-avg-md-9>li:nth-of-type(n) {
  779. clear: none
  780. }
  781. .am-avg-md-9>li:nth-of-type(9n+1) {
  782. clear: both
  783. }
  784. .am-avg-md-10>li {
  785. width: 10%
  786. }
  787. .am-avg-md-10>li:nth-of-type(n) {
  788. clear: none
  789. }
  790. .am-avg-md-10>li:nth-of-type(10n+1) {
  791. clear: both
  792. }
  793. .am-avg-md-11>li {
  794. width: 9.09090909%
  795. }
  796. .am-avg-md-11>li:nth-of-type(n) {
  797. clear: none
  798. }
  799. .am-avg-md-11>li:nth-of-type(11n+1) {
  800. clear: both
  801. }
  802. .am-avg-md-12>li {
  803. width: 8.33333333%
  804. }
  805. .am-avg-md-12>li:nth-of-type(n) {
  806. clear: none
  807. }
  808. .am-avg-md-12>li:nth-of-type(12n+1) {
  809. clear: both
  810. }
  811. }
  812. @media only screen and (min-width:1025px) {
  813. .am-avg-lg-1>li {
  814. width: 100%
  815. }
  816. .am-avg-lg-1>li:nth-of-type(n) {
  817. clear: none
  818. }
  819. .am-avg-lg-1>li:nth-of-type(1n+1) {
  820. clear: both
  821. }
  822. .am-avg-lg-2>li {
  823. width: 50%
  824. }
  825. .am-avg-lg-2>li:nth-of-type(n) {
  826. clear: none
  827. }
  828. .am-avg-lg-2>li:nth-of-type(2n+1) {
  829. clear: both
  830. }
  831. .am-avg-lg-3>li {
  832. width: 33.33333333%
  833. }
  834. .am-avg-lg-3>li:nth-of-type(n) {
  835. clear: none
  836. }
  837. .am-avg-lg-3>li:nth-of-type(3n+1) {
  838. clear: both
  839. }
  840. .am-avg-lg-4>li {
  841. width: 25%
  842. }
  843. .am-avg-lg-4>li:nth-of-type(n) {
  844. clear: none
  845. }
  846. .am-avg-lg-4>li:nth-of-type(4n+1) {
  847. clear: both
  848. }
  849. .am-avg-lg-5>li {
  850. width: 20%
  851. }
  852. .am-avg-lg-5>li:nth-of-type(n) {
  853. clear: none
  854. }
  855. .am-avg-lg-5>li:nth-of-type(5n+1) {
  856. clear: both
  857. }
  858. .am-avg-lg-6>li {
  859. width: 16.66666667%
  860. }
  861. .am-avg-lg-6>li:nth-of-type(n) {
  862. clear: none
  863. }
  864. .am-avg-lg-6>li:nth-of-type(6n+1) {
  865. clear: both
  866. }
  867. .am-avg-lg-7>li {
  868. width: 14.28571429%
  869. }
  870. .am-avg-lg-7>li:nth-of-type(n) {
  871. clear: none
  872. }
  873. .am-avg-lg-7>li:nth-of-type(7n+1) {
  874. clear: both
  875. }
  876. .am-avg-lg-8>li {
  877. width: 12.5%
  878. }
  879. .am-avg-lg-8>li:nth-of-type(n) {
  880. clear: none
  881. }
  882. .am-avg-lg-8>li:nth-of-type(8n+1) {
  883. clear: both
  884. }
  885. .am-avg-lg-9>li {
  886. width: 11.11111111%
  887. }
  888. .am-avg-lg-9>li:nth-of-type(n) {
  889. clear: none
  890. }
  891. .am-avg-lg-9>li:nth-of-type(9n+1) {
  892. clear: both
  893. }
  894. .am-avg-lg-10>li {
  895. width: 10%
  896. }
  897. .am-avg-lg-10>li:nth-of-type(n) {
  898. clear: none
  899. }
  900. .am-avg-lg-10>li:nth-of-type(10n+1) {
  901. clear: both
  902. }
  903. .am-avg-lg-11>li {
  904. width: 9.09090909%
  905. }
  906. .am-avg-lg-11>li:nth-of-type(n) {
  907. clear: none
  908. }
  909. .am-avg-lg-11>li:nth-of-type(11n+1) {
  910. clear: both
  911. }
  912. .am-avg-lg-12>li {
  913. width: 8.33333333%
  914. }
  915. .am-avg-lg-12>li:nth-of-type(n) {
  916. clear: none
  917. }
  918. .am-avg-lg-12>li:nth-of-type(12n+1) {
  919. clear: both
  920. }
  921. }
  922. .am-form-horizontal .am-form-group:after,.am-nav:after,.am-topbar-collapse:after,.am-topbar:after {
  923. clear: both
  924. }
  925. code,kbd,pre,samp {
  926. font-family: Monaco,Menlo,Consolas,"Courier New",FontAwesome,monospace
  927. }
  928. code {
  929. padding: 2px 4px;
  930. color: #c7254e;
  931. white-space: nowrap;
  932. border-radius: 0
  933. }
  934. pre {
  935. display: block;
  936. padding: 1rem;
  937. margin: 1rem 0;
  938. word-break: break-all;
  939. word-wrap: break-word;
  940. color: #555;
  941. border: 1px solid #dedede;
  942. border-radius: 0
  943. }
  944. pre code {
  945. padding: 0;
  946. font-size: inherit;
  947. color: inherit;
  948. border-radius: 0
  949. }
  950. .am-pre-scrollable {
  951. max-height: 24rem;
  952. overflow-y: scroll
  953. }
  954. .am-btn {
  955. display: inline-block;
  956. margin-bottom: 0;
  957. padding: .5em 1em;
  958. font-size: 1.6rem;
  959. font-weight: 400;
  960. line-height: 1.2;
  961. text-align: center;
  962. white-space: nowrap;
  963. background-image: none;
  964. border: 1px solid transparent;
  965. border-radius: 0;
  966. cursor: pointer;
  967. outline: 0;
  968. -webkit-appearance: none;
  969. -webkit-user-select: none;
  970. -moz-user-select: none;
  971. -ms-user-select: none;
  972. user-select: none;
  973. -webkit-transition: background-color .3s ease-out,border-color .3s ease-out;
  974. transition: background-color .3s ease-out,border-color .3s ease-out
  975. }
  976. .am-btn-block,legend {
  977. display: block;
  978. width: 100%
  979. }
  980. .am-pagination,th {
  981. text-align: left
  982. }
  983. .am-btn:active:focus,.am-btn:focus {
  984. outline: dotted thin;
  985. outline: -webkit-focus-ring-color auto 1px;
  986. outline-offset: -2px
  987. }
  988. .am-btn:focus,.am-btn:hover {
  989. color: #444;
  990. text-decoration: none
  991. }
  992. .am-btn.am-active,.am-btn:active {
  993. background-image: none;
  994. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.15);
  995. box-shadow: inset 0 3px 5px rgba(0,0,0,.15)
  996. }
  997. .am-btn.am-disabled,.am-btn[disabled],fieldset[disabled] .am-btn {
  998. pointer-events: none;
  999. border-color: transparent;
  1000. cursor: not-allowed;
  1001. opacity: .45;
  1002. -webkit-box-shadow: none;
  1003. box-shadow: none
  1004. }
  1005. .am-btn.am-round {
  1006. border-radius: 1000px
  1007. }
  1008. .am-btn.am-radius {
  1009. border-radius: 2px
  1010. }
  1011. .am-btn-default {
  1012. color: #444;
  1013. background-color: #e6e6e6;
  1014. border-color: #e6e6e6
  1015. }
  1016. a.am-btn-default:visited {
  1017. color: #444
  1018. }
  1019. .am-active .am-btn-default.am-dropdown-toggle,.am-btn-default.am-active,.am-btn-default:active,.am-btn-default:focus,.am-btn-default:hover {
  1020. color: #444;
  1021. border-color: #c7c7c7
  1022. }
  1023. .am-btn-default:focus,.am-btn-default:hover {
  1024. background-color: #d4d4d4
  1025. }
  1026. .am-active .am-btn-default.am-dropdown-toggle,.am-btn-default.am-active,.am-btn-default:active {
  1027. background-image: none;
  1028. background-color: #c2c2c2
  1029. }
  1030. .am-btn-default.am-disabled,.am-btn-default.am-disabled.am-active,.am-btn-default.am-disabled:active,.am-btn-default.am-disabled:focus,.am-btn-default.am-disabled:hover,.am-btn-default[disabled],.am-btn-default[disabled].am-active,.am-btn-default[disabled]:active,.am-btn-default[disabled]:focus,.am-btn-default[disabled]:hover,fieldset[disabled] .am-btn-default,fieldset[disabled] .am-btn-default.am-active,fieldset[disabled] .am-btn-default:active,fieldset[disabled] .am-btn-default:focus,fieldset[disabled] .am-btn-default:hover {
  1031. background-color: #e6e6e6;
  1032. border-color: #e6e6e6
  1033. }
  1034. .am-btn-group .am-btn-default,.am-btn-group-stacked .am-btn-default {
  1035. border-color: #d9d9d9
  1036. }
  1037. .am-btn-primary {
  1038. color: #fff;
  1039. background-color: #0e90d2;
  1040. border-color: #0e90d2
  1041. }
  1042. a.am-btn-primary:visited {
  1043. color: #fff
  1044. }
  1045. .am-active .am-btn-primary.am-dropdown-toggle,.am-btn-primary.am-active,.am-btn-primary:active,.am-btn-primary:focus,.am-btn-primary:hover {
  1046. color: #fff;
  1047. border-color: #0a6999
  1048. }
  1049. .am-btn-primary:focus,.am-btn-primary:hover {
  1050. background-color: #0c79b1
  1051. }
  1052. .am-active .am-btn-primary.am-dropdown-toggle,.am-btn-primary.am-active,.am-btn-primary:active {
  1053. background-image: none;
  1054. background-color: #0a628f
  1055. }
  1056. .am-btn-primary.am-disabled,.am-btn-primary.am-disabled.am-active,.am-btn-primary.am-disabled:active,.am-btn-primary.am-disabled:focus,.am-btn-primary.am-disabled:hover,.am-btn-primary[disabled],.am-btn-primary[disabled].am-active,.am-btn-primary[disabled]:active,.am-btn-primary[disabled]:focus,.am-btn-primary[disabled]:hover,fieldset[disabled] .am-btn-primary,fieldset[disabled] .am-btn-primary.am-active,fieldset[disabled] .am-btn-primary:active,fieldset[disabled] .am-btn-primary:focus,fieldset[disabled] .am-btn-primary:hover {
  1057. background-color: #0e90d2;
  1058. border-color: #0e90d2
  1059. }
  1060. .am-btn-group .am-btn-primary,.am-btn-group-stacked .am-btn-primary {
  1061. border-color: #0c80ba
  1062. }
  1063. .am-btn-warning {
  1064. color: #fff;
  1065. background-color: #F37B1D;
  1066. border-color: #F37B1D
  1067. }
  1068. a.am-btn-warning:visited {
  1069. color: #fff
  1070. }
  1071. .am-active .am-btn-warning.am-dropdown-toggle,.am-btn-warning.am-active,.am-btn-warning:active,.am-btn-warning:focus,.am-btn-warning:hover {
  1072. color: #fff;
  1073. border-color: #c85e0b
  1074. }
  1075. .am-btn-warning:focus,.am-btn-warning:hover {
  1076. background-color: #e0690c
  1077. }
  1078. .am-active .am-btn-warning.am-dropdown-toggle,.am-btn-warning.am-active,.am-btn-warning:active {
  1079. background-image: none;
  1080. background-color: #be590a
  1081. }
  1082. .am-btn-warning.am-disabled,.am-btn-warning.am-disabled.am-active,.am-btn-warning.am-disabled:active,.am-btn-warning.am-disabled:focus,.am-btn-warning.am-disabled:hover,.am-btn-warning[disabled],.am-btn-warning[disabled].am-active,.am-btn-warning[disabled]:active,.am-btn-warning[disabled]:focus,.am-btn-warning[disabled]:hover,fieldset[disabled] .am-btn-warning,fieldset[disabled] .am-btn-warning.am-active,fieldset[disabled] .am-btn-warning:active,fieldset[disabled] .am-btn-warning:focus,fieldset[disabled] .am-btn-warning:hover {
  1083. background-color: #F37B1D;
  1084. border-color: #F37B1D
  1085. }
  1086. .am-btn-group .am-btn-warning,.am-btn-group-stacked .am-btn-warning {
  1087. border-color: #ea6e0c
  1088. }
  1089. .am-btn-danger {
  1090. color: #fff;
  1091. background-color: #dd514c;
  1092. border-color: #dd514c
  1093. }
  1094. a.am-btn-danger:visited {
  1095. color: #fff
  1096. }
  1097. .am-active .am-btn-danger.am-dropdown-toggle,.am-btn-danger.am-active,.am-btn-danger:active,.am-btn-danger:focus,.am-btn-danger:hover {
  1098. color: #fff;
  1099. border-color: #c62b26
  1100. }
  1101. .am-btn-danger:focus,.am-btn-danger:hover {
  1102. background-color: #d7342e
  1103. }
  1104. .am-active .am-btn-danger.am-dropdown-toggle,.am-btn-danger.am-active,.am-btn-danger:active {
  1105. background-image: none;
  1106. background-color: #be2924
  1107. }
  1108. .am-btn-danger.am-disabled,.am-btn-danger.am-disabled.am-active,.am-btn-danger.am-disabled:active,.am-btn-danger.am-disabled:focus,.am-btn-danger.am-disabled:hover,.am-btn-danger[disabled],.am-btn-danger[disabled].am-active,.am-btn-danger[disabled]:active,.am-btn-danger[disabled]:focus,.am-btn-danger[disabled]:hover,fieldset[disabled] .am-btn-danger,fieldset[disabled] .am-btn-danger.am-active,fieldset[disabled] .am-btn-danger:active,fieldset[disabled] .am-btn-danger:focus,fieldset[disabled] .am-btn-danger:hover {
  1109. background-color: #dd514c;
  1110. border-color: #dd514c
  1111. }
  1112. .am-btn-group .am-btn-danger,.am-btn-group-stacked .am-btn-danger {
  1113. border-color: #d93c37
  1114. }
  1115. .am-btn-success {
  1116. color: #fff;
  1117. background-color: #5eb95e;
  1118. border-color: #5eb95e
  1119. }
  1120. a.am-btn-success:visited {
  1121. color: #fff
  1122. }
  1123. .am-active .am-btn-success.am-dropdown-toggle,.am-btn-success.am-active,.am-btn-success:active,.am-btn-success:focus,.am-btn-success:hover {
  1124. color: #fff;
  1125. border-color: #429842
  1126. }
  1127. .am-btn-success:focus,.am-btn-success:hover {
  1128. background-color: #4aaa4a
  1129. }
  1130. .am-active .am-btn-success.am-dropdown-toggle,.am-btn-success.am-active,.am-btn-success:active {
  1131. background-image: none;
  1132. background-color: #3f913f
  1133. }
  1134. .am-btn-success.am-disabled,.am-btn-success.am-disabled.am-active,.am-btn-success.am-disabled:active,.am-btn-success.am-disabled:focus,.am-btn-success.am-disabled:hover,.am-btn-success[disabled],.am-btn-success[disabled].am-active,.am-btn-success[disabled]:active,.am-btn-success[disabled]:focus,.am-btn-success[disabled]:hover,fieldset[disabled] .am-btn-success,fieldset[disabled] .am-btn-success.am-active,fieldset[disabled] .am-btn-success:active,fieldset[disabled] .am-btn-success:focus,fieldset[disabled] .am-btn-success:hover {
  1135. background-color: #5eb95e;
  1136. border-color: #5eb95e
  1137. }
  1138. .am-btn-group .am-btn-success,.am-btn-group-stacked .am-btn-success {
  1139. border-color: #4db14d
  1140. }
  1141. .am-btn-secondary {
  1142. color: #fff;
  1143. background-color: #3bb4f2;
  1144. border-color: #3bb4f2
  1145. }
  1146. a.am-btn-secondary:visited {
  1147. color: #fff
  1148. }
  1149. .am-active .am-btn-secondary.am-dropdown-toggle,.am-btn-secondary.am-active,.am-btn-secondary:active,.am-btn-secondary:focus,.am-btn-secondary:hover {
  1150. color: #fff;
  1151. border-color: #0f9ae0
  1152. }
  1153. .am-btn-secondary:focus,.am-btn-secondary:hover {
  1154. background-color: #19a7f0
  1155. }
  1156. .am-active .am-btn-secondary.am-dropdown-toggle,.am-btn-secondary.am-active,.am-btn-secondary:active {
  1157. background-image: none;
  1158. background-color: #0e93d7
  1159. }
  1160. .am-btn-secondary.am-disabled,.am-btn-secondary.am-disabled.am-active,.am-btn-secondary.am-disabled:active,.am-btn-secondary.am-disabled:focus,.am-btn-secondary.am-disabled:hover,.am-btn-secondary[disabled],.am-btn-secondary[disabled].am-active,.am-btn-secondary[disabled]:active,.am-btn-secondary[disabled]:focus,.am-btn-secondary[disabled]:hover,fieldset[disabled] .am-btn-secondary,fieldset[disabled] .am-btn-secondary.am-active,fieldset[disabled] .am-btn-secondary:active,fieldset[disabled] .am-btn-secondary:focus,fieldset[disabled] .am-btn-secondary:hover {
  1161. background-color: #3bb4f2;
  1162. border-color: #3bb4f2
  1163. }
  1164. .am-btn-group .am-btn-secondary,.am-btn-group-stacked .am-btn-secondary {
  1165. border-color: #23abf0
  1166. }
  1167. .am-btn-link {
  1168. color: #0e90d2;
  1169. font-weight: 400;
  1170. cursor: pointer;
  1171. border-radius: 0
  1172. }
  1173. .am-btn-link,.am-btn-link:active,.am-btn-link[disabled],fieldset[disabled] .am-btn-link {
  1174. background-color: transparent;
  1175. -webkit-box-shadow: none;
  1176. box-shadow: none
  1177. }
  1178. .am-btn-link,.am-btn-link:active,.am-btn-link:focus,.am-btn-link:hover {
  1179. border-color: transparent
  1180. }
  1181. .am-btn-link:focus,.am-btn-link:hover {
  1182. color: #095f8a;
  1183. text-decoration: underline;
  1184. background-color: transparent
  1185. }
  1186. .am-btn-link[disabled]:focus,.am-btn-link[disabled]:hover,fieldset[disabled] .am-btn-link:focus,fieldset[disabled] .am-btn-link:hover {
  1187. color: #999;
  1188. text-decoration: none
  1189. }
  1190. .am-btn-xs {
  1191. font-size: 1.2rem
  1192. }
  1193. .am-btn-sm {
  1194. font-size: 1.4rem
  1195. }
  1196. .am-btn-lg {
  1197. font-size: 1.8rem
  1198. }
  1199. .am-btn-xl,legend {
  1200. font-size: 2rem
  1201. }
  1202. .am-btn-block {
  1203. padding-left: 0;
  1204. padding-right: 0
  1205. }
  1206. .am-btn-block+.am-btn-block {
  1207. margin-top: 5px
  1208. }
  1209. input[type=button].am-btn-block,input[type=reset].am-btn-block,input[type=submit].am-btn-block {
  1210. width: 100%
  1211. }
  1212. .am-btn.am-btn-loading .am-icon-spin {
  1213. margin-right: 5px
  1214. }
  1215. table {
  1216. border-collapse: collapse;
  1217. border-spacing: 0;
  1218. max-width: 100%;
  1219. background-color: transparent;
  1220. empty-cells: show
  1221. }
  1222. table code {
  1223. white-space: normal
  1224. }
  1225. .am-table {
  1226. width: 100%;
  1227. margin-bottom: 1.6rem;
  1228. border-spacing: 0;
  1229. border-collapse: separate
  1230. }
  1231. .am-table>tbody>tr>td,.am-table>tbody>tr>th,.am-table>tfoot>tr>td,.am-table>tfoot>tr>th,.am-table>thead>tr>td,.am-table>thead>tr>th {
  1232. padding: .7rem;
  1233. line-height: 1.6;
  1234. vertical-align: top;
  1235. border-top: 1px solid #ddd
  1236. }
  1237. .am-table>thead>tr>th {
  1238. vertical-align: bottom;
  1239. border-bottom: 1px solid #ddd
  1240. }
  1241. .am-table>caption+thead>tr:first-child>td,.am-table>caption+thead>tr:first-child>th,.am-table>colgroup+thead>tr:first-child>td,.am-table>colgroup+thead>tr:first-child>th,.am-table>thead:first-child>tr:first-child>td,.am-table>thead:first-child>tr:first-child>th {
  1242. border-top: 0
  1243. }
  1244. .am-table>tbody+tbody tr:first-child td {
  1245. border-top: 2px solid #ddd
  1246. }
  1247. .am-table-bordered {
  1248. border: 1px solid #ddd;
  1249. border-left: none
  1250. }
  1251. .am-table-bordered>tbody>tr>td,.am-table-bordered>tbody>tr>th,.am-table-bordered>tfoot>tr>td,.am-table-bordered>tfoot>tr>th,.am-table-bordered>thead>tr>td,.am-table-bordered>thead>tr>th {
  1252. border-left: 1px solid #ddd
  1253. }
  1254. .am-table-bordered>tbody>tr:first-child>td,.am-table-bordered>tbody>tr:first-child>th {
  1255. border-top: none
  1256. }
  1257. .am-table-bordered>thead+tbody>tr:first-child>td,.am-table-bordered>thead+tbody>tr:first-child>th {
  1258. border-top: 1px solid #ddd
  1259. }
  1260. .am-table-radius {
  1261. border: 1px solid #ddd;
  1262. border-radius: 2px
  1263. }
  1264. .am-table-radius>thead>tr:first-child>td:first-child,.am-table-radius>thead>tr:first-child>th:first-child {
  1265. border-top-left-radius: 2px;
  1266. border-left: none
  1267. }
  1268. .am-table-radius>thead>tr:first-child>td:last-child,.am-table-radius>thead>tr:first-child>th:last-child {
  1269. border-top-right-radius: 2px;
  1270. border-right: none
  1271. }
  1272. .am-table-radius>tbody>tr>td:first-child,.am-table-radius>tbody>tr>th:first-child {
  1273. border-left: none
  1274. }
  1275. .am-table-radius>tbody>tr>td:last-child,.am-table-radius>tbody>tr>th:last-child {
  1276. border-right: none
  1277. }
  1278. .am-table-radius>tbody>tr:last-child>td,.am-table-radius>tbody>tr:last-child>th {
  1279. border-bottom: none
  1280. }
  1281. .am-table-radius>tbody>tr:last-child>td:first-child,.am-table-radius>tbody>tr:last-child>th:first-child {
  1282. border-bottom-left-radius: 2px
  1283. }
  1284. .am-table-radius>tbody>tr:last-child>td:last-child,.am-table-radius>tbody>tr:last-child>th:last-child {
  1285. border-bottom-right-radius: 2px
  1286. }
  1287. .am-table-striped>tbody>tr:nth-child(odd)>td,.am-table-striped>tbody>tr:nth-child(odd)>th {
  1288. background-color: #f9f9f9
  1289. }
  1290. .am-table-hover>tbody>tr:hover>td,.am-table-hover>tbody>tr:hover>th {
  1291. background-color: #e9e9e9
  1292. }
  1293. .am-table-compact>tbody>tr>td,.am-table-compact>tbody>tr>th,.am-table-compact>tfoot>tr>td,.am-table-compact>tfoot>tr>th,.am-table-compact>thead>tr>td,.am-table-compact>thead>tr>th {
  1294. padding: .4rem
  1295. }
  1296. .am-table-centered>tbody>tr>td,.am-table-centered>tbody>tr>th,.am-table-centered>tfoot>tr>td,.am-table-centered>tfoot>tr>th,.am-table-centered>thead>tr>td,.am-table-centered>thead>tr>th {
  1297. text-align: center
  1298. }
  1299. .am-table>tbody>tr.am-active>td,.am-table>tbody>tr.am-active>th,.am-table>tbody>tr>td.am-active,.am-table>tbody>tr>th.am-active,.am-table>tfoot>tr.am-active>td,.am-table>tfoot>tr.am-active>th,.am-table>tfoot>tr>td.am-active,.am-table>tfoot>tr>th.am-active,.am-table>thead>tr.am-active>td,.am-table>thead>tr.am-active>th,.am-table>thead>tr>td.am-active,.am-table>thead>tr>th.am-active {
  1300. background-color: #ffd
  1301. }
  1302. .am-table>tbody>tr.am-disabled>td,.am-table>tbody>tr.am-disabled>th,.am-table>tbody>tr>td.am-disabled,.am-table>tbody>tr>th.am-disabled,.am-table>tfoot>tr.am-disabled>td,.am-table>tfoot>tr.am-disabled>th,.am-table>tfoot>tr>td.am-disabled,.am-table>tfoot>tr>th.am-disabled,.am-table>thead>tr.am-disabled>td,.am-table>thead>tr.am-disabled>th,.am-table>thead>tr>td.am-disabled,.am-table>thead>tr>th.am-disabled {
  1303. color: #999
  1304. }
  1305. .am-table>tbody>tr.am-primary>td,.am-table>tbody>tr.am-primary>th,.am-table>tbody>tr>td.am-primary,.am-table>tbody>tr>th.am-primary,.am-table>tfoot>tr.am-primary>td,.am-table>tfoot>tr.am-primary>th,.am-table>tfoot>tr>td.am-primary,.am-table>tfoot>tr>th.am-primary,.am-table>thead>tr.am-primary>td,.am-table>thead>tr.am-primary>th,.am-table>thead>tr>td.am-primary,.am-table>thead>tr>th.am-primary {
  1306. color: #0b76ac;
  1307. background-color: rgba(14,144,210,.115)
  1308. }
  1309. .am-table>tbody>tr.am-success>td,.am-table>tbody>tr.am-success>th,.am-table>tbody>tr>td.am-success,.am-table>tbody>tr>th.am-success,.am-table>tfoot>tr.am-success>td,.am-table>tfoot>tr.am-success>th,.am-table>tfoot>tr>td.am-success,.am-table>tfoot>tr>th.am-success,.am-table>thead>tr.am-success>td,.am-table>thead>tr.am-success>th,.am-table>thead>tr>td.am-success,.am-table>thead>tr>th.am-success {
  1310. color: #5eb95e;
  1311. background-color: rgba(94,185,94,.115)
  1312. }
  1313. .am-table>tbody>tr.am-warning>td,.am-table>tbody>tr.am-warning>th,.am-table>tbody>tr>td.am-warning,.am-table>tbody>tr>th.am-warning,.am-table>tfoot>tr.am-warning>td,.am-table>tfoot>tr.am-warning>th,.am-table>tfoot>tr>td.am-warning,.am-table>tfoot>tr>th.am-warning,.am-table>thead>tr.am-warning>td,.am-table>thead>tr.am-warning>th,.am-table>thead>tr>td.am-warning,.am-table>thead>tr>th.am-warning {
  1314. color: #F37B1D;
  1315. background-color: rgba(243,123,29,.115)
  1316. }
  1317. .am-table>tbody>tr.am-danger>td,.am-table>tbody>tr.am-danger>th,.am-table>tbody>tr>td.am-danger,.am-table>tbody>tr>th.am-danger,.am-table>tfoot>tr.am-danger>td,.am-table>tfoot>tr.am-danger>th,.am-table>tfoot>tr>td.am-danger,.am-table>tfoot>tr>th.am-danger,.am-table>thead>tr.am-danger>td,.am-table>thead>tr.am-danger>th,.am-table>thead>tr>td.am-danger,.am-table>thead>tr>th.am-danger {
  1318. color: #dd514c;
  1319. background-color: rgba(221,81,76,.115)
  1320. }
  1321. fieldset {
  1322. border: none
  1323. }
  1324. legend {
  1325. margin-bottom: 2rem;
  1326. line-height: inherit;
  1327. color: #333;
  1328. border-bottom: 1px solid #e5e5e5;
  1329. padding-bottom: .5rem
  1330. }
  1331. label {
  1332. display: inline-block;
  1333. margin-bottom: 5px;
  1334. font-weight: 700
  1335. }
  1336. input[type=search] {
  1337. -webkit-box-sizing: border-box;
  1338. box-sizing: border-box
  1339. }
  1340. input[type=checkbox],input[type=radio] {
  1341. margin: 4px 0 0;
  1342. margin-top: 1px\9;
  1343. line-height: normal
  1344. }
  1345. input[type=file] {
  1346. display: block
  1347. }
  1348. select[multiple],select[size] {
  1349. height: auto
  1350. }
  1351. select optgroup {
  1352. font-size: inherit;
  1353. font-style: inherit;
  1354. font-family: inherit
  1355. }
  1356. input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus {
  1357. outline: dotted thin;
  1358. outline: -webkit-focus-ring-color auto 1px;
  1359. outline-offset: -2px
  1360. }
  1361. input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
  1362. height: auto
  1363. }
  1364. output {
  1365. display: block;
  1366. padding-top: 1.6rem;
  1367. font-size: 1.6rem;
  1368. line-height: 1.6;
  1369. color: #555;
  1370. vertical-align: middle
  1371. }
  1372. .am-form input[type=number],.am-form input[type=search],.am-form input[type=text],.am-form input[type=password],.am-form input[type=datetime],.am-form input[type=datetime-local],.am-form input[type=date],.am-form input[type=month],.am-form input[type=time],.am-form input[type=week],.am-form input[type=email],.am-form input[type=url],.am-form input[type=tel],.am-form input[type=color],.am-form select,.am-form textarea,.am-form-field {
  1373. display: block;
  1374. width: 100%;
  1375. padding: .5em;
  1376. font-size: 1.6rem;
  1377. line-height: 1.2;
  1378. color: #555;
  1379. vertical-align: middle;
  1380. background-color: #fff;
  1381. background-image: none;
  1382. border: 1px solid #ccc;
  1383. border-radius: 0;
  1384. -webkit-appearance: none;
  1385. -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  1386. transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  1387. transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  1388. transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out
  1389. }
  1390. .am-form input[type=number]:focus,.am-form input[type=search]:focus,.am-form input[type=text]:focus,.am-form input[type=password]:focus,.am-form input[type=datetime]:focus,.am-form input[type=datetime-local]:focus,.am-form input[type=date]:focus,.am-form input[type=month]:focus,.am-form input[type=time]:focus,.am-form input[type=week]:focus,.am-form input[type=email]:focus,.am-form input[type=url]:focus,.am-form input[type=tel]:focus,.am-form input[type=color]:focus,.am-form select:focus,.am-form textarea:focus,.am-form-field:focus {
  1391. background-color: #fefffe;
  1392. border-color: #3bb4f2;
  1393. outline: 0;
  1394. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px rgba(59,180,242,.3);
  1395. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px rgba(59,180,242,.3)
  1396. }
  1397. .am-form input[type=number]::-webkit-input-placeholder,.am-form input[type=search]::-webkit-input-placeholder,.am-form input[type=text]::-webkit-input-placeholder,.am-form input[type=password]::-webkit-input-placeholder,.am-form input[type=datetime]::-webkit-input-placeholder,.am-form input[type=datetime-local]::-webkit-input-placeholder,.am-form input[type=date]::-webkit-input-placeholder,.am-form input[type=month]::-webkit-input-placeholder,.am-form input[type=time]::-webkit-input-placeholder,.am-form input[type=week]::-webkit-input-placeholder,.am-form input[type=email]::-webkit-input-placeholder,.am-form input[type=url]::-webkit-input-placeholder,.am-form input[type=tel]::-webkit-input-placeholder,.am-form input[type=color]::-webkit-input-placeholder,.am-form select::-webkit-input-placeholder,.am-form textarea::-webkit-input-placeholder,.am-form-field::-webkit-input-placeholder {
  1398. color: #999
  1399. }
  1400. .am-form input[type=number]::-moz-placeholder,.am-form input[type=search]::-moz-placeholder,.am-form input[type=text]::-moz-placeholder,.am-form input[type=password]::-moz-placeholder,.am-form input[type=datetime]::-moz-placeholder,.am-form input[type=datetime-local]::-moz-placeholder,.am-form input[type=date]::-moz-placeholder,.am-form input[type=month]::-moz-placeholder,.am-form input[type=time]::-moz-placeholder,.am-form input[type=week]::-moz-placeholder,.am-form input[type=email]::-moz-placeholder,.am-form input[type=url]::-moz-placeholder,.am-form input[type=tel]::-moz-placeholder,.am-form input[type=color]::-moz-placeholder,.am-form select::-moz-placeholder,.am-form textarea::-moz-placeholder,.am-form-field::-moz-placeholder {
  1401. color: #999;
  1402. opacity: 1
  1403. }
  1404. .am-form input[type=number]:-ms-input-placeholder,.am-form input[type=search]:-ms-input-placeholder,.am-form input[type=text]:-ms-input-placeholder,.am-form input[type=password]:-ms-input-placeholder,.am-form input[type=datetime]:-ms-input-placeholder,.am-form input[type=datetime-local]:-ms-input-placeholder,.am-form input[type=date]:-ms-input-placeholder,.am-form input[type=month]:-ms-input-placeholder,.am-form input[type=time]:-ms-input-placeholder,.am-form input[type=week]:-ms-input-placeholder,.am-form input[type=email]:-ms-input-placeholder,.am-form input[type=url]:-ms-input-placeholder,.am-form input[type=tel]:-ms-input-placeholder,.am-form input[type=color]:-ms-input-placeholder,.am-form select:-ms-input-placeholder,.am-form textarea:-ms-input-placeholder,.am-form-field:-ms-input-placeholder {
  1405. color: #999
  1406. }
  1407. .am-form input[type=number]::placeholder,.am-form input[type=search]::placeholder,.am-form input[type=text]::placeholder,.am-form input[type=password]::placeholder,.am-form input[type=datetime]::placeholder,.am-form input[type=datetime-local]::placeholder,.am-form input[type=date]::placeholder,.am-form input[type=month]::placeholder,.am-form input[type=time]::placeholder,.am-form input[type=week]::placeholder,.am-form input[type=email]::placeholder,.am-form input[type=url]::placeholder,.am-form input[type=tel]::placeholder,.am-form input[type=color]::placeholder,.am-form select::placeholder,.am-form textarea::placeholder,.am-form-field::placeholder {
  1408. color: #999
  1409. }
  1410. .am-form input[type=number][disabled],.am-form input[type=number][readonly],.am-form input[type=search][disabled],.am-form input[type=search][readonly],.am-form input[type=text][disabled],.am-form input[type=text][readonly],.am-form input[type=password][disabled],.am-form input[type=password][readonly],.am-form input[type=datetime][disabled],.am-form input[type=datetime][readonly],.am-form input[type=datetime-local][disabled],.am-form input[type=datetime-local][readonly],.am-form input[type=date][disabled],.am-form input[type=date][readonly],.am-form input[type=month][disabled],.am-form input[type=month][readonly],.am-form input[type=time][disabled],.am-form input[type=time][readonly],.am-form input[type=week][disabled],.am-form input[type=week][readonly],.am-form input[type=email][disabled],.am-form input[type=email][readonly],.am-form input[type=url][disabled],.am-form input[type=url][readonly],.am-form input[type=tel][disabled],.am-form input[type=tel][readonly],.am-form input[type=color][disabled],.am-form input[type=color][readonly],.am-form select[disabled],.am-form select[readonly],.am-form textarea[disabled],.am-form textarea[readonly],.am-form-field[disabled],.am-form-field[readonly],fieldset[disabled] .am-form input[type=number],fieldset[disabled] .am-form input[type=search],fieldset[disabled] .am-form input[type=text],fieldset[disabled] .am-form input[type=password],fieldset[disabled] .am-form input[type=datetime],fieldset[disabled] .am-form input[type=datetime-local],fieldset[disabled] .am-form input[type=date],fieldset[disabled] .am-form input[type=month],fieldset[disabled] .am-form input[type=time],fieldset[disabled] .am-form input[type=week],fieldset[disabled] .am-form input[type=email],fieldset[disabled] .am-form input[type=url],fieldset[disabled] .am-form input[type=tel],fieldset[disabled] .am-form input[type=color],fieldset[disabled] .am-form select,fieldset[disabled] .am-form textarea,fieldset[disabled] .am-form-field {
  1411. cursor: not-allowed;
  1412. background-color: #eee
  1413. }
  1414. .am-form input[type=number].am-radius,.am-form input[type=search].am-radius,.am-form input[type=text].am-radius,.am-form input[type=password].am-radius,.am-form input[type=datetime].am-radius,.am-form input[type=datetime-local].am-radius,.am-form input[type=date].am-radius,.am-form input[type=month].am-radius,.am-form input[type=time].am-radius,.am-form input[type=week].am-radius,.am-form input[type=email].am-radius,.am-form input[type=url].am-radius,.am-form input[type=tel].am-radius,.am-form input[type=color].am-radius,.am-form select.am-radius,.am-form textarea.am-radius,.am-form-field.am-radius {
  1415. border-radius: 2px
  1416. }
  1417. .am-form input[type=number].am-round,.am-form input[type=search].am-round,.am-form input[type=text].am-round,.am-form input[type=password].am-round,.am-form input[type=datetime].am-round,.am-form input[type=datetime-local].am-round,.am-form input[type=date].am-round,.am-form input[type=month].am-round,.am-form input[type=time].am-round,.am-form input[type=week].am-round,.am-form input[type=email].am-round,.am-form input[type=url].am-round,.am-form input[type=tel].am-round,.am-form input[type=color].am-round,.am-form select.am-round,.am-form textarea.am-round,.am-form-field.am-round {
  1418. border-radius: 1000px
  1419. }
  1420. .am-form select[multiple],.am-form select[size],.am-form textarea {
  1421. height: auto
  1422. }
  1423. .am-form select {
  1424. -webkit-appearance: none!important;
  1425. -moz-appearance: none!important;
  1426. -webkit-border-radius: 0;
  1427. background: url(data:image/svg+xml;
  1428. base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+) 100% center no-repeat #fff
  1429. }
  1430. .am-form select[multiple=multiple] {
  1431. background-image: none
  1432. }
  1433. .am-form-help {
  1434. display: block;
  1435. margin-top: 5px;
  1436. margin-bottom: 10px;
  1437. color: #999;
  1438. font-size: 1.3rem
  1439. }
  1440. .am-form-group {
  1441. margin-bottom: 1.5rem
  1442. }
  1443. .am-form-file {
  1444. position: relative;
  1445. overflow: hidden
  1446. }
  1447. .am-form-file input[type=file] {
  1448. position: absolute;
  1449. left: 0;
  1450. top: 0;
  1451. z-index: 1;
  1452. width: 100%;
  1453. opacity: 0;
  1454. cursor: pointer;
  1455. font-size: 50rem
  1456. }
  1457. .am-checkbox,.am-radio {
  1458. display: block;
  1459. min-height: 1.92rem;
  1460. margin-top: 10px;
  1461. margin-bottom: 10px;
  1462. vertical-align: middle
  1463. }
  1464. .am-checkbox label,.am-radio label {
  1465. display: inline;
  1466. margin-bottom: 0;
  1467. font-weight: 400;
  1468. cursor: pointer
  1469. }
  1470. .am-checkbox input[type=checkbox],.am-checkbox-inline input[type=checkbox],.am-radio input[type=radio],.am-radio-inline input[type=radio] {
  1471. float: left;
  1472. margin-left: -20px;
  1473. outline: 0
  1474. }
  1475. .am-checkbox+.am-checkbox,.am-radio+.am-radio {
  1476. margin-top: -5px
  1477. }
  1478. .am-checkbox-inline,.am-radio-inline {
  1479. display: inline-block;
  1480. margin-bottom: 0;
  1481. vertical-align: middle;
  1482. font-weight: 400;
  1483. cursor: pointer
  1484. }
  1485. .am-checkbox-inline+.am-checkbox-inline,.am-radio-inline+.am-radio-inline {
  1486. margin-top: 0;
  1487. margin-left: 10px
  1488. }
  1489. .am-checkbox-inline[disabled],.am-checkbox[disabled],.am-radio-inline[disabled],.am-radio[disabled],fieldset[disabled] .am-checkbox,fieldset[disabled] .am-checkbox-inline,fieldset[disabled] .am-radio,fieldset[disabled] .am-radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=radio][disabled] {
  1490. cursor: not-allowed
  1491. }
  1492. .am-form-warning .am-checkbox,.am-form-warning .am-checkbox-inline,.am-form-warning .am-form-help,.am-form-warning .am-form-label,.am-form-warning .am-radio,.am-form-warning .am-radio-inline,.am-form-warning [class*=icon-],.am-form-warning label {
  1493. color: #F37B1D
  1494. }
  1495. .am-form-warning .am-form-field {
  1496. border-color: #F37B1D!important;
  1497. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  1498. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  1499. }
  1500. .am-form-warning .am-form-field:focus {
  1501. background-color: #fefffe;
  1502. border-color: #d2620b;
  1503. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px #f8b47e!important;
  1504. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px #f8b47e!important
  1505. }
  1506. .am-form-error .am-checkbox,.am-form-error .am-checkbox-inline,.am-form-error .am-form-help,.am-form-error .am-form-label,.am-form-error .am-radio,.am-form-error .am-radio-inline,.am-form-error [class*=icon-],.am-form-error label {
  1507. color: #dd514c
  1508. }
  1509. .am-field-error,.am-form-error .am-form-field {
  1510. border-color: #dd514c!important;
  1511. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  1512. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  1513. }
  1514. .am-field-error:focus,.am-form-error .am-form-field:focus {
  1515. background-color: #fefffe;
  1516. border-color: #cf2d27;
  1517. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px #eda4a2!important;
  1518. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px #eda4a2!important
  1519. }
  1520. .am-form-success .am-checkbox,.am-form-success .am-checkbox-inline,.am-form-success .am-form-help,.am-form-success .am-form-label,.am-form-success .am-radio,.am-form-success .am-radio-inline,.am-form-success [class*=icon-],.am-form-success label {
  1521. color: #5eb95e
  1522. }
  1523. .am-field-valid,.am-form-success .am-form-field {
  1524. border-color: #5eb95e!important;
  1525. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  1526. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  1527. }
  1528. .am-field-valid:focus,.am-form-success .am-form-field:focus {
  1529. background-color: #fefffe;
  1530. border-color: #459f45;
  1531. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px #a5d8a5!important;
  1532. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px #a5d8a5!important
  1533. }
  1534. .am-form-horizontal .am-checkbox,.am-form-horizontal .am-checkbox-inline,.am-form-horizontal .am-form-label,.am-form-horizontal .am-radio,.am-form-horizontal .am-radio-inline {
  1535. margin-top: 0;
  1536. margin-bottom: 0;
  1537. padding-top: .6em
  1538. }
  1539. .am-form-horizontal .am-form-group:after,.am-form-horizontal .am-form-group:before {
  1540. content: " ";
  1541. display: table
  1542. }
  1543. @media only screen and (min-width:641px) {
  1544. .am-form-horizontal .am-form-label {
  1545. text-align: right
  1546. }
  1547. .am-form-inline .am-form-group,.am-form-inline .am-form-label {
  1548. margin-bottom: 0;
  1549. vertical-align: middle
  1550. }
  1551. .am-form-inline .am-form-group {
  1552. display: inline-block
  1553. }
  1554. .am-form-inline .am-form-field {
  1555. display: inline-block;
  1556. width: auto;
  1557. vertical-align: middle
  1558. }
  1559. .am-form-inline .am-input-group {
  1560. display: inline-table;
  1561. vertical-align: middle
  1562. }
  1563. .am-form-inline .am-input-group .am-form-label,.am-form-inline .am-input-group .am-input-group-btn,.am-form-inline .am-input-group .am-input-group-label {
  1564. width: auto
  1565. }
  1566. .am-form-inline .am-input-group>.am-form-field {
  1567. width: 100%
  1568. }
  1569. .am-form-inline .am-checkbox,.am-form-inline .am-radio {
  1570. display: inline-block;
  1571. margin-top: 0;
  1572. margin-bottom: 0;
  1573. padding-left: 0;
  1574. vertical-align: middle
  1575. }
  1576. .am-form-inline .am-checkbox input[type=checkbox],.am-form-inline .am-radio input[type=radio] {
  1577. float: none;
  1578. margin-left: 0
  1579. }
  1580. }
  1581. .am-input-sm {
  1582. font-size: 1.4rem!important
  1583. }
  1584. .am-input-lg {
  1585. font-size: 1.8rem!important
  1586. }
  1587. .am-form-group-sm .am-checkbox,.am-form-group-sm .am-form-field,.am-form-group-sm .am-form-label,.am-form-group-sm .am-radio {
  1588. font-size: 1.4rem!important
  1589. }
  1590. .am-form-group-lg .am-checkbox,.am-form-group-lg .am-form-field,.am-form-group-lg .am-form-label,.am-form-group-lg .am-radio {
  1591. font-size: 1.8rem!important
  1592. }
  1593. .am-form-group-lg input[type=checkbox],.am-form-group-lg input[type=radio] {
  1594. margin-top: 7px
  1595. }
  1596. .am-form-icon {
  1597. position: relative
  1598. }
  1599. .am-form-icon .am-form-field {
  1600. padding-left: 1.75em!important
  1601. }
  1602. .am-form-icon [class*=am-icon-] {
  1603. position: absolute;
  1604. left: .5em;
  1605. top: 50%;
  1606. display: block;
  1607. margin-top: -.5em;
  1608. line-height: 1;
  1609. z-index: 2
  1610. }
  1611. .am-form-icon label~[class*=am-icon-] {
  1612. top: 70%
  1613. }
  1614. .am-form-feedback {
  1615. position: relative
  1616. }
  1617. .am-form-feedback .am-form-field {
  1618. padding-left: .5em!important;
  1619. padding-right: 1.75em!important
  1620. }
  1621. .am-form-feedback [class*=am-icon-] {
  1622. right: .5em;
  1623. left: auto
  1624. }
  1625. .am-form-horizontal .am-form-feedback [class*=am-icon-] {
  1626. right: 1.6em
  1627. }
  1628. .am-form-set {
  1629. margin-bottom: 1.5rem;
  1630. padding: 0
  1631. }
  1632. .am-form-set>input {
  1633. position: relative;
  1634. top: -1px;
  1635. border-radius: 0!important
  1636. }
  1637. .am-form-set>input:focus {
  1638. z-index: 2
  1639. }
  1640. .am-form-set>input:first-child {
  1641. top: 1px;
  1642. border-top-right-radius: 0!important;
  1643. border-top-left-radius: 0!important
  1644. }
  1645. .am-form-set>input:last-child {
  1646. top: -2px;
  1647. border-bottom-right-radius: 0!important;
  1648. border-bottom-left-radius: 0!important
  1649. }
  1650. .am-img-thumbnail {
  1651. display: inline-block;
  1652. max-width: 100%;
  1653. height: auto;
  1654. padding: 2px;
  1655. line-height: 1.6;
  1656. background-color: #fff;
  1657. border: 1px solid #ddd;
  1658. border-radius: 0;
  1659. -webkit-transition: all .2s ease-in-out;
  1660. transition: all .2s ease-in-out
  1661. }
  1662. .am-img-thumbnail.am-radius {
  1663. border-radius: 2px
  1664. }
  1665. .am-img-responsive {
  1666. display: block;
  1667. max-width: 100%;
  1668. height: auto
  1669. }
  1670. .am-nav {
  1671. margin-bottom: 0;
  1672. padding: 0;
  1673. list-style: none
  1674. }
  1675. .am-nav:after,.am-nav:before {
  1676. content: " ";
  1677. display: table
  1678. }
  1679. .am-nav>li,.am-nav>li>a {
  1680. display: block;
  1681. position: relative
  1682. }
  1683. .am-nav>li+li {
  1684. margin-top: 5px
  1685. }
  1686. .am-nav>li+.am-nav-header {
  1687. margin-top: 1em
  1688. }
  1689. .am-nav>li>a {
  1690. padding: .4em 1em;
  1691. border-radius: 0
  1692. }
  1693. .am-nav>li>a:focus,.am-nav>li>a:hover {
  1694. text-decoration: none;
  1695. background-color: #eee
  1696. }
  1697. .am-nav>li.am-active>a,.am-nav>li.am-active>a:focus,.am-nav>li.am-active>a:hover {
  1698. color: #fff;
  1699. background-color: #0e90d2;
  1700. cursor: default
  1701. }
  1702. .am-nav>li.am-disabled>a {
  1703. color: #999
  1704. }
  1705. .am-nav>li.am-disabled>a:focus,.am-nav>li.am-disabled>a:hover {
  1706. color: #999;
  1707. text-decoration: none;
  1708. background-color: transparent;
  1709. cursor: not-allowed
  1710. }
  1711. .am-nav-header {
  1712. padding: .4em 1em;
  1713. text-transform: uppercase;
  1714. font-weight: 700;
  1715. font-size: 100%;
  1716. color: #555
  1717. }
  1718. .am-nav-divider {
  1719. margin: 15px 1em!important;
  1720. border-top: 1px solid #ddd;
  1721. -webkit-box-shadow: 0 1px 0 #fff;
  1722. box-shadow: 0 1px 0 #fff
  1723. }
  1724. .am-nav-pills>li {
  1725. float: left
  1726. }
  1727. .am-nav-pills>li+li {
  1728. margin-left: 5px;
  1729. margin-top: 0
  1730. }
  1731. .am-nav-tabs {
  1732. border-bottom: 1px solid #ddd
  1733. }
  1734. .am-nav-tabs>li {
  1735. float: left;
  1736. margin-bottom: -1px
  1737. }
  1738. .am-nav-tabs>li+li {
  1739. margin-top: 0
  1740. }
  1741. .am-nav-tabs>li>a {
  1742. margin-right: 5px;
  1743. line-height: 1.6;
  1744. border: 1px solid transparent;
  1745. border-radius: 0
  1746. }
  1747. .am-nav-tabs>li>a:hover {
  1748. border-color: #eee #eee #ddd
  1749. }
  1750. .am-nav-tabs>li.am-active>a,.am-nav-tabs>li.am-active>a:focus,.am-nav-tabs>li.am-active>a:hover {
  1751. color: #555;
  1752. background-color: #fff;
  1753. border: 1px solid #ddd;
  1754. border-bottom-color: transparent;
  1755. cursor: default
  1756. }
  1757. .am-topbar,.am-topbar a {
  1758. color: #666
  1759. }
  1760. .am-nav-tabs.am-nav-justify {
  1761. border-bottom: 0
  1762. }
  1763. .am-nav-tabs.am-nav-justify>li>a {
  1764. margin-right: 0;
  1765. border-bottom: 1px solid #ddd;
  1766. border-radius: 0
  1767. }
  1768. .am-nav-tabs.am-nav-justify>.am-active>a,.am-nav-tabs.am-nav-justify>.am-active>a:focus,.am-nav-tabs.am-nav-justify>.am-active>a:hover {
  1769. border-bottom-color: #fff
  1770. }
  1771. .am-nav-justify {
  1772. width: 100%;
  1773. display: -webkit-box;
  1774. display: -webkit-flex;
  1775. display: -ms-flexbox;
  1776. display: flex
  1777. }
  1778. .am-nav-justify>li {
  1779. float: none;
  1780. -webkit-box-flex: 1;
  1781. -webkit-flex: 1;
  1782. -ms-flex: 1;
  1783. flex: 1
  1784. }
  1785. .am-nav-justify>li>a {
  1786. text-align: center;
  1787. margin-bottom: 0
  1788. }
  1789. .am-list,.am-topbar {
  1790. margin-bottom: 1.6rem
  1791. }
  1792. .lte9 .am-nav-justify>li {
  1793. display: table-cell;
  1794. width: 1%
  1795. }
  1796. .am-topbar-collapse:after,.am-topbar-collapse:before,.am-topbar:after,.am-topbar:before {
  1797. content: " ";
  1798. display: table
  1799. }
  1800. .am-topbar {
  1801. position: relative;
  1802. min-height: 50px;
  1803. background: #f8f8f8;
  1804. border-width: 0 0 1px;
  1805. border-style: solid;
  1806. border-color: #ddd
  1807. }
  1808. .am-topbar-brand a:hover {
  1809. color: #4d4d4d
  1810. }
  1811. .am-topbar-collapse {
  1812. width: 100%;
  1813. overflow-x: visible;
  1814. padding: 10px;
  1815. clear: both;
  1816. -webkit-overflow-scrolling: touch
  1817. }
  1818. .am-topbar-collapse.am-in {
  1819. overflow-y: auto
  1820. }
  1821. @media only screen and (min-width:641px) {
  1822. .am-topbar-brand {
  1823. float: left
  1824. }
  1825. .am-topbar-collapse {
  1826. margin-top: 0;
  1827. padding: 0;
  1828. width: auto;
  1829. clear: none
  1830. }
  1831. .am-topbar-collapse.am-collapse {
  1832. display: block!important;
  1833. height: auto!important;
  1834. padding: 0;
  1835. overflow: visible!important
  1836. }
  1837. .am-topbar-collapse.am-in {
  1838. overflow-y: visible
  1839. }
  1840. .am-topbar-toggle {
  1841. display: none
  1842. }
  1843. }
  1844. .am-article:after,.am-btn-group-stacked>.am-btn-group:after,.am-btn-toolbar:after,.am-comment:after,.am-divider,.am-intro-more-bottom,.am-pagination:after,.am-slider .am-slides:after,.am-tabs-bd:after,ul.am-dropdown-content>li>a {
  1845. clear: both
  1846. }
  1847. .am-topbar-brand {
  1848. margin: 0;
  1849. padding: 0 10px;
  1850. float: left;
  1851. font-size: 1.8rem;
  1852. height: 50px;
  1853. line-height: 50px
  1854. }
  1855. .am-topbar-toggle {
  1856. position: relative;
  1857. float: right;
  1858. margin-right: 10px
  1859. }
  1860. @media only screen and (max-width:640px) {
  1861. body {
  1862. word-wrap: break-word;
  1863. -webkit-hyphens: auto;
  1864. -ms-hyphens: auto;
  1865. -moz-hyphens: auto;
  1866. hyphens: auto
  1867. }
  1868. .am-topbar-nav {
  1869. margin-bottom: 8px
  1870. }
  1871. .am-topbar-nav>li {
  1872. float: none
  1873. }
  1874. .am-topbar-nav>li+li {
  1875. margin-left: 0;
  1876. margin-top: 5px
  1877. }
  1878. }
  1879. @media only screen and (min-width:641px) {
  1880. .am-topbar-nav {
  1881. float: left
  1882. }
  1883. .am-topbar-nav>li>a {
  1884. position: relative;
  1885. line-height: 50px;
  1886. padding: 0 10px
  1887. }
  1888. .am-topbar-nav>li>a:after {
  1889. position: absolute;
  1890. left: 50%;
  1891. margin-left: -7px;
  1892. bottom: -1px;
  1893. content: "";
  1894. display: inline-block;
  1895. width: 0;
  1896. height: 0;
  1897. vertical-align: middle;
  1898. border-bottom: 7px solid #f8f8f8;
  1899. border-right: 7px solid transparent;
  1900. border-left: 7px solid transparent;
  1901. border-top: 0 dotted;
  1902. -webkit-transform: rotate(360deg);
  1903. -ms-transform: rotate(360deg);
  1904. transform: rotate(360deg);
  1905. opacity: 0;
  1906. -webkit-transition: opacity .1s;
  1907. transition: opacity .1s
  1908. }
  1909. .am-topbar-nav>li>a:hover:after {
  1910. opacity: 1;
  1911. border-bottom-color: #666
  1912. }
  1913. .am-topbar-nav>li.am-dropdown>a:after {
  1914. display: none
  1915. }
  1916. .am-topbar-nav>li.am-active>a,.am-topbar-nav>li.am-active>a:focus,.am-topbar-nav>li.am-active>a:hover {
  1917. border-radius: 0;
  1918. color: #0e90d2;
  1919. background: 0 0
  1920. }
  1921. .am-topbar-nav>li.am-active>a:after {
  1922. opacity: 1;
  1923. border-bottom-color: #0e90d2
  1924. }
  1925. }
  1926. @media only screen and (max-width:640px) {
  1927. .am-topbar-collapse .am-dropdown.am-active .am-dropdown-content {
  1928. float: none;
  1929. position: relative;
  1930. width: 100%
  1931. }
  1932. .am-topbar-form .am-form-group {
  1933. margin-bottom: 5px
  1934. }
  1935. .am-topbar-collapse .am-btn,.am-topbar-collapse .am-topbar-btn {
  1936. display: block;
  1937. width: 100%
  1938. }
  1939. }
  1940. @media only screen and (min-width:641px) {
  1941. .am-topbar-left {
  1942. float: left
  1943. }
  1944. .am-topbar-right {
  1945. float: right;
  1946. margin-right: 10px
  1947. }
  1948. .am-topbar-form {
  1949. padding: 0 10px;
  1950. margin-top: 8px
  1951. }
  1952. .am-topbar-form .am-form-group+.am-btn {
  1953. margin-left: 5px
  1954. }
  1955. }
  1956. .am-topbar-btn {
  1957. margin-top: 8px
  1958. }
  1959. .am-topbar-inverse {
  1960. background-color: #0e90d2;
  1961. border-color: #0b6fa2;
  1962. color: #eee
  1963. }
  1964. .am-topbar-inverse a {
  1965. color: #eee
  1966. }
  1967. .am-topbar-inverse .am-topbar-brand a {
  1968. color: #fff
  1969. }
  1970. .am-topbar-inverse .am-topbar-brand a:focus,.am-topbar-inverse .am-topbar-brand a:hover {
  1971. color: #fff;
  1972. background-color: transparent
  1973. }
  1974. .am-topbar-inverse .am-topbar-nav>li>a {
  1975. color: #eee
  1976. }
  1977. .am-topbar-inverse .am-topbar-nav>li>a:focus,.am-topbar-inverse .am-topbar-nav>li>a:hover {
  1978. color: #fff;
  1979. background-color: rgba(0,0,0,.05)
  1980. }
  1981. .am-topbar-inverse .am-topbar-nav>li>a:focus:after,.am-topbar-inverse .am-topbar-nav>li>a:hover:after {
  1982. border-bottom-color: #0b6fa2
  1983. }
  1984. .am-topbar-inverse .am-topbar-nav>li>a:after {
  1985. border-bottom-color: #0e90d2
  1986. }
  1987. .am-topbar-inverse .am-topbar-nav>li.am-active>a,.am-topbar-inverse .am-topbar-nav>li.am-active>a:focus,.am-topbar-inverse .am-topbar-nav>li.am-active>a:hover {
  1988. color: #fff;
  1989. background-color: rgba(0,0,0,.1)
  1990. }
  1991. .am-topbar-inverse .am-topbar-nav>li.am-active>a:after,.am-topbar-inverse .am-topbar-nav>li.am-active>a:focus:after,.am-topbar-inverse .am-topbar-nav>li.am-active>a:hover:after {
  1992. border-bottom-color: #fff
  1993. }
  1994. .am-topbar-inverse .am-topbar-nav>li .disabled>a,.am-topbar-inverse .am-topbar-nav>li .disabled>a:focus,.am-topbar-inverse .am-topbar-nav>li .disabled>a:hover {
  1995. color: #444;
  1996. background-color: transparent
  1997. }
  1998. .am-topbar-fixed-bottom,.am-topbar-fixed-top {
  1999. position: fixed;
  2000. right: 0;
  2001. left: 0;
  2002. z-index: 1000;
  2003. -webkit-transform: translate3d(0,0,0);
  2004. transform: translate3d(0,0,0)
  2005. }
  2006. .am-topbar-fixed-top {
  2007. top: 0
  2008. }
  2009. .am-topbar-fixed-bottom {
  2010. bottom: 0;
  2011. margin-bottom: 0;
  2012. border-width: 1px 0 0
  2013. }
  2014. .am-with-topbar-fixed-top {
  2015. padding-top: 51px
  2016. }
  2017. .am-with-topbar-fixed-bottom {
  2018. padding-bottom: 51px
  2019. }
  2020. @media only screen and (max-width:640px) {
  2021. .am-topbar-fixed-bottom .am-topbar-collapse {
  2022. position: absolute;
  2023. bottom: 100%;
  2024. margin-bottom: 1px;
  2025. background-color: #f8f8f8
  2026. }
  2027. .am-topbar-fixed-bottom .am-topbar-collapse .am-dropdown-content:after,.am-topbar-fixed-bottom .am-topbar-collapse .am-dropdown-content:before {
  2028. display: none
  2029. }
  2030. .am-topbar-fixed-bottom.am-topbar-inverse .am-topbar-collapse {
  2031. background-color: #0e90d2
  2032. }
  2033. }
  2034. .am-breadcrumb {
  2035. padding: .7em .5em;
  2036. margin-bottom: 2rem;
  2037. list-style: none;
  2038. background-color: transparent;
  2039. border-radius: 0;
  2040. font-size: 85%
  2041. }
  2042. .am-breadcrumb>li {
  2043. display: inline-block
  2044. }
  2045. .am-breadcrumb>li [class*=am-icon-]:before {
  2046. color: #999;
  2047. margin-right: 5px
  2048. }
  2049. .am-breadcrumb>li+li:before {
  2050. content: "脗禄\00a0";
  2051. padding: 0 8px;
  2052. color: #ccc
  2053. }
  2054. .am-breadcrumb>.am-active {
  2055. color: #999
  2056. }
  2057. .am-breadcrumb-slash>li+li:before {
  2058. content: "/\00a0"
  2059. }
  2060. .am-pagination {
  2061. padding-left: 0;
  2062. margin: 1.5rem 0;
  2063. list-style: none;
  2064. color: #999
  2065. }
  2066. *+.am-article-divider,.am-article+.am-article {
  2067. margin-top: 2.4rem
  2068. }
  2069. .am-pagination:after,.am-pagination:before {
  2070. content: " ";
  2071. display: table
  2072. }
  2073. .am-pagination>li {
  2074. display: inline-block
  2075. }
  2076. .am-pagination>li>a,.am-pagination>li>span {
  2077. position: relative;
  2078. display: block;
  2079. padding: .5em 1em;
  2080. text-decoration: none;
  2081. line-height: 1.2;
  2082. background-color: #fff;
  2083. border: 1px solid #ddd;
  2084. border-radius: 0;
  2085. margin-bottom: 5px;
  2086. margin-right: 5px
  2087. }
  2088. .am-pagination .am-pagination-next a,.am-pagination .am-pagination-prev a {
  2089. border-radius: 0
  2090. }
  2091. .am-pagination>li:last-child>a,.am-pagination>li:last-child>span {
  2092. margin-right: 0
  2093. }
  2094. .am-pagination>li>a:focus,.am-pagination>li>a:hover,.am-pagination>li>span:focus,.am-pagination>li>span:hover {
  2095. background-color: #eee
  2096. }
  2097. .am-pagination>.am-active>a,.am-pagination>.am-active>a:focus,.am-pagination>.am-active>a:hover,.am-pagination>.am-active>span,.am-pagination>.am-active>span:focus,.am-pagination>.am-active>span:hover {
  2098. z-index: 2;
  2099. color: #fff;
  2100. background-color: #0e90d2;
  2101. border-color: #0e90d2;
  2102. cursor: default
  2103. }
  2104. .am-pagination>.am-disabled>a,.am-pagination>.am-disabled>a:focus,.am-pagination>.am-disabled>a:hover,.am-pagination>.am-disabled>span,.am-pagination>.am-disabled>span:focus,.am-pagination>.am-disabled>span:hover {
  2105. color: #999;
  2106. background-color: #fff;
  2107. border-color: #ddd;
  2108. cursor: not-allowed;
  2109. pointer-events: none
  2110. }
  2111. .am-pagination .am-pagination-prev {
  2112. float: left
  2113. }
  2114. .am-pagination .am-pagination-next {
  2115. float: right
  2116. }
  2117. .am-pagination-centered {
  2118. text-align: center
  2119. }
  2120. .am-pagination-right {
  2121. text-align: right
  2122. }
  2123. .am-badge,.am-close,.am-icon-btn,.am-icon-fw,.am-icon-li,.am-progress-bar {
  2124. text-align: center
  2125. }[class*=am-animation-] {
  2126. -webkit-animation-duration: .5s;
  2127. animation-duration: .5s;
  2128. -webkit-animation-timing-function: ease-out;
  2129. animation-timing-function: ease-out;
  2130. -webkit-animation-fill-mode: both;
  2131. animation-fill-mode: both
  2132. }
  2133. @media screen {
  2134. .cssanimations [data-am-scrollspy*=animation] {
  2135. opacity: 0
  2136. }
  2137. }
  2138. .am-animation-fade {
  2139. -webkit-animation-name: am-fade;
  2140. animation-name: am-fade;
  2141. -webkit-animation-duration: .8s;
  2142. animation-duration: .8s;
  2143. -webkit-animation-timing-function: linear;
  2144. animation-timing-function: linear
  2145. }
  2146. .am-animation-scale-up {
  2147. -webkit-animation-name: am-scale-up;
  2148. animation-name: am-scale-up
  2149. }
  2150. .am-animation-scale-down {
  2151. -webkit-animation-name: am-scale-down;
  2152. animation-name: am-scale-down
  2153. }
  2154. .am-animation-slide-top {
  2155. -webkit-animation-name: am-slide-top;
  2156. animation-name: am-slide-top
  2157. }
  2158. .am-animation-slide-bottom {
  2159. -webkit-animation-name: am-slide-bottom;
  2160. animation-name: am-slide-bottom
  2161. }
  2162. .am-animation-slide-left {
  2163. -webkit-animation-name: am-slide-left;
  2164. animation-name: am-slide-left
  2165. }
  2166. .am-animation-slide-right {
  2167. -webkit-animation-name: am-slide-right;
  2168. animation-name: am-slide-right
  2169. }
  2170. .am-animation-slide-top-fixed {
  2171. -webkit-animation-name: am-slide-top-fixed;
  2172. animation-name: am-slide-top-fixed
  2173. }
  2174. .am-animation-shake {
  2175. -webkit-animation-name: am-shake;
  2176. animation-name: am-shake
  2177. }
  2178. .am-animation-spin {
  2179. -webkit-animation: am-spin 2s infinite linear;
  2180. animation: am-spin 2s infinite linear
  2181. }
  2182. .am-animation-left-spring {
  2183. -webkit-animation: am-left-spring .3s ease-in-out;
  2184. animation: am-left-spring .3s ease-in-out
  2185. }
  2186. .am-animation-right-spring {
  2187. -webkit-animation: am-right-spring .3s ease-in-out;
  2188. animation: am-right-spring .3s ease-in-out
  2189. }
  2190. .am-animation-reverse {
  2191. -webkit-animation-direction: reverse;
  2192. animation-direction: reverse
  2193. }
  2194. .am-animation-paused {
  2195. -webkit-animation-play-state: paused!important;
  2196. animation-play-state: paused!important
  2197. }
  2198. .am-animation-delay-1 {
  2199. -webkit-animation-delay: 1s;
  2200. animation-delay: 1s
  2201. }
  2202. .am-animation-delay-2 {
  2203. -webkit-animation-delay: 2s;
  2204. animation-delay: 2s
  2205. }
  2206. .am-animation-delay-3 {
  2207. -webkit-animation-delay: 3s;
  2208. animation-delay: 3s
  2209. }
  2210. .am-animation-delay-4 {
  2211. -webkit-animation-delay: 4s;
  2212. animation-delay: 4s
  2213. }
  2214. .am-animation-delay-5 {
  2215. -webkit-animation-delay: 5s;
  2216. animation-delay: 5s
  2217. }
  2218. .am-animation-delay-6 {
  2219. -webkit-animation-delay: 6s;
  2220. animation-delay: 6s
  2221. }
  2222. @-webkit-keyframes am-fade {
  2223. 0% {
  2224. opacity: 0
  2225. }
  2226. 100% {
  2227. opacity: 1
  2228. }
  2229. }
  2230. @keyframes am-fade {
  2231. 0% {
  2232. opacity: 0
  2233. }
  2234. 100% {
  2235. opacity: 1
  2236. }
  2237. }
  2238. @-webkit-keyframes am-scale-up {
  2239. 0% {
  2240. opacity: 0;
  2241. -webkit-transform: scale(.2);
  2242. transform: scale(.2)
  2243. }
  2244. 100% {
  2245. opacity: 1;
  2246. -webkit-transform: scale(1);
  2247. transform: scale(1)
  2248. }
  2249. }
  2250. @keyframes am-scale-up {
  2251. 0% {
  2252. opacity: 0;
  2253. -webkit-transform: scale(.2);
  2254. transform: scale(.2)
  2255. }
  2256. 100% {
  2257. opacity: 1;
  2258. -webkit-transform: scale(1);
  2259. transform: scale(1)
  2260. }
  2261. }
  2262. @-webkit-keyframes am-scale-down {
  2263. 0% {
  2264. opacity: 0;
  2265. -webkit-transform: scale(1.8);
  2266. transform: scale(1.8)
  2267. }
  2268. 100% {
  2269. opacity: 1;
  2270. -webkit-transform: scale(1);
  2271. transform: scale(1)
  2272. }
  2273. }
  2274. @keyframes am-scale-down {
  2275. 0% {
  2276. opacity: 0;
  2277. -webkit-transform: scale(1.8);
  2278. transform: scale(1.8)
  2279. }
  2280. 100% {
  2281. opacity: 1;
  2282. -webkit-transform: scale(1);
  2283. transform: scale(1)
  2284. }
  2285. }
  2286. @-webkit-keyframes am-slide-top {
  2287. 0% {
  2288. opacity: 0;
  2289. -webkit-transform: translateY(-100%);
  2290. transform: translateY(-100%)
  2291. }
  2292. 100% {
  2293. opacity: 1;
  2294. -webkit-transform: translateY(0);
  2295. transform: translateY(0)
  2296. }
  2297. }
  2298. @keyframes am-slide-top {
  2299. 0% {
  2300. opacity: 0;
  2301. -webkit-transform: translateY(-100%);
  2302. transform: translateY(-100%)
  2303. }
  2304. 100% {
  2305. opacity: 1;
  2306. -webkit-transform: translateY(0);
  2307. transform: translateY(0)
  2308. }
  2309. }
  2310. @-webkit-keyframes am-slide-bottom {
  2311. 0% {
  2312. opacity: 0;
  2313. -webkit-transform: translateY(100%);
  2314. transform: translateY(100%)
  2315. }
  2316. 100% {
  2317. opacity: 1;
  2318. -webkit-transform: translateY(0);
  2319. transform: translateY(0)
  2320. }
  2321. }
  2322. @keyframes am-slide-bottom {
  2323. 0% {
  2324. opacity: 0;
  2325. -webkit-transform: translateY(100%);
  2326. transform: translateY(100%)
  2327. }
  2328. 100% {
  2329. opacity: 1;
  2330. -webkit-transform: translateY(0);
  2331. transform: translateY(0)
  2332. }
  2333. }
  2334. @-webkit-keyframes am-slide-left {
  2335. 0% {
  2336. opacity: 0;
  2337. -webkit-transform: translateX(-100%);
  2338. transform: translateX(-100%)
  2339. }
  2340. 100% {
  2341. opacity: 1;
  2342. -webkit-transform: translateX(0);
  2343. transform: translateX(0)
  2344. }
  2345. }
  2346. @keyframes am-slide-left {
  2347. 0% {
  2348. opacity: 0;
  2349. -webkit-transform: translateX(-100%);
  2350. transform: translateX(-100%)
  2351. }
  2352. 100% {
  2353. opacity: 1;
  2354. -webkit-transform: translateX(0);
  2355. transform: translateX(0)
  2356. }
  2357. }
  2358. @-webkit-keyframes am-slide-right {
  2359. 0% {
  2360. opacity: 0;
  2361. -webkit-transform: translateX(100%);
  2362. transform: translateX(100%)
  2363. }
  2364. 100% {
  2365. opacity: 1;
  2366. -webkit-transform: translateX(0);
  2367. transform: translateX(0)
  2368. }
  2369. }
  2370. @keyframes am-slide-right {
  2371. 0% {
  2372. opacity: 0;
  2373. -webkit-transform: translateX(100%);
  2374. transform: translateX(100%)
  2375. }
  2376. 100% {
  2377. opacity: 1;
  2378. -webkit-transform: translateX(0);
  2379. transform: translateX(0)
  2380. }
  2381. }
  2382. @-webkit-keyframes am-shake {
  2383. 0%,100% {
  2384. -webkit-transform: translateX(0);
  2385. transform: translateX(0)
  2386. }
  2387. 10% {
  2388. -webkit-transform: translateX(-9px);
  2389. transform: translateX(-9px)
  2390. }
  2391. 20% {
  2392. -webkit-transform: translateX(8px);
  2393. transform: translateX(8px)
  2394. }
  2395. 30% {
  2396. -webkit-transform: translateX(-7px);
  2397. transform: translateX(-7px)
  2398. }
  2399. 40% {
  2400. -webkit-transform: translateX(6px);
  2401. transform: translateX(6px)
  2402. }
  2403. 50% {
  2404. -webkit-transform: translateX(-5px);
  2405. transform: translateX(-5px)
  2406. }
  2407. 60% {
  2408. -webkit-transform: translateX(4px);
  2409. transform: translateX(4px)
  2410. }
  2411. 70% {
  2412. -webkit-transform: translateX(-3px);
  2413. transform: translateX(-3px)
  2414. }
  2415. 80% {
  2416. -webkit-transform: translateX(2px);
  2417. transform: translateX(2px)
  2418. }
  2419. 90% {
  2420. -webkit-transform: translateX(-1px);
  2421. transform: translateX(-1px)
  2422. }
  2423. }
  2424. @keyframes am-shake {
  2425. 0%,100% {
  2426. -webkit-transform: translateX(0);
  2427. transform: translateX(0)
  2428. }
  2429. 10% {
  2430. -webkit-transform: translateX(-9px);
  2431. transform: translateX(-9px)
  2432. }
  2433. 20% {
  2434. -webkit-transform: translateX(8px);
  2435. transform: translateX(8px)
  2436. }
  2437. 30% {
  2438. -webkit-transform: translateX(-7px);
  2439. transform: translateX(-7px)
  2440. }
  2441. 40% {
  2442. -webkit-transform: translateX(6px);
  2443. transform: translateX(6px)
  2444. }
  2445. 50% {
  2446. -webkit-transform: translateX(-5px);
  2447. transform: translateX(-5px)
  2448. }
  2449. 60% {
  2450. -webkit-transform: translateX(4px);
  2451. transform: translateX(4px)
  2452. }
  2453. 70% {
  2454. -webkit-transform: translateX(-3px);
  2455. transform: translateX(-3px)
  2456. }
  2457. 80% {
  2458. -webkit-transform: translateX(2px);
  2459. transform: translateX(2px)
  2460. }
  2461. 90% {
  2462. -webkit-transform: translateX(-1px);
  2463. transform: translateX(-1px)
  2464. }
  2465. }
  2466. @-webkit-keyframes am-slide-top-fixed {
  2467. 0% {
  2468. opacity: 0;
  2469. -webkit-transform: translateY(-10px);
  2470. transform: translateY(-10px)
  2471. }
  2472. 100% {
  2473. opacity: 1;
  2474. -webkit-transform: translateY(0);
  2475. transform: translateY(0)
  2476. }
  2477. }
  2478. @keyframes am-slide-top-fixed {
  2479. 0% {
  2480. opacity: 0;
  2481. -webkit-transform: translateY(-10px);
  2482. transform: translateY(-10px)
  2483. }
  2484. 100% {
  2485. opacity: 1;
  2486. -webkit-transform: translateY(0);
  2487. transform: translateY(0)
  2488. }
  2489. }
  2490. @-webkit-keyframes am-slide-bottom-fixed {
  2491. 0% {
  2492. opacity: 0;
  2493. -webkit-transform: translateY(10px);
  2494. transform: translateY(10px)
  2495. }
  2496. 100% {
  2497. opacity: 1;
  2498. -webkit-transform: translateY(0);
  2499. transform: translateY(0)
  2500. }
  2501. }
  2502. @keyframes am-slide-bottom-fixed {
  2503. 0% {
  2504. opacity: 0;
  2505. -webkit-transform: translateY(10px);
  2506. transform: translateY(10px)
  2507. }
  2508. 100% {
  2509. opacity: 1;
  2510. -webkit-transform: translateY(0);
  2511. transform: translateY(0)
  2512. }
  2513. }
  2514. @-webkit-keyframes am-spin {
  2515. 0% {
  2516. -webkit-transform: rotate(0);
  2517. transform: rotate(0)
  2518. }
  2519. 100% {
  2520. -webkit-transform: rotate(359deg);
  2521. transform: rotate(359deg)
  2522. }
  2523. }
  2524. @keyframes am-spin {
  2525. 0% {
  2526. -webkit-transform: rotate(0);
  2527. transform: rotate(0)
  2528. }
  2529. 100% {
  2530. -webkit-transform: rotate(359deg);
  2531. transform: rotate(359deg)
  2532. }
  2533. }
  2534. @-webkit-keyframes am-right-spring {
  2535. 0%,100% {
  2536. -webkit-transform: translateX(0);
  2537. transform: translateX(0)
  2538. }
  2539. 50% {
  2540. -webkit-transform: translateX(-20%);
  2541. transform: translateX(-20%)
  2542. }
  2543. }
  2544. @keyframes am-right-spring {
  2545. 0%,100% {
  2546. -webkit-transform: translateX(0);
  2547. transform: translateX(0)
  2548. }
  2549. 50% {
  2550. -webkit-transform: translateX(-20%);
  2551. transform: translateX(-20%)
  2552. }
  2553. }
  2554. @-webkit-keyframes am-left-spring {
  2555. 0%,100% {
  2556. -webkit-transform: translateX(0);
  2557. transform: translateX(0)
  2558. }
  2559. 50% {
  2560. -webkit-transform: translateX(20%);
  2561. transform: translateX(20%)
  2562. }
  2563. }
  2564. @keyframes am-left-spring {
  2565. 0%,100% {
  2566. -webkit-transform: translateX(0);
  2567. transform: translateX(0)
  2568. }
  2569. 50% {
  2570. -webkit-transform: translateX(20%);
  2571. transform: translateX(20%)
  2572. }
  2573. }
  2574. .am-article:after,.am-article:before {
  2575. content: " ";
  2576. display: table
  2577. }
  2578. .am-article>:last-child {
  2579. margin-bottom: 0
  2580. }
  2581. .am-article-title {
  2582. font-size: 2.8rem;
  2583. line-height: 1.15;
  2584. font-weight: 400
  2585. }
  2586. .am-article-title a {
  2587. color: inherit;
  2588. text-decoration: none
  2589. }
  2590. .am-article-meta {
  2591. font-size: 1.2rem;
  2592. line-height: 1.5;
  2593. color: #999
  2594. }
  2595. .am-article-lead {
  2596. color: #666;
  2597. font-size: 1.4rem;
  2598. line-height: 1.5;
  2599. border: 1px solid #dedede;
  2600. border-radius: 2px;
  2601. background: #f9f9f9;
  2602. padding: 10px
  2603. }
  2604. .am-badge,.am-badge.am-square {
  2605. border-radius: 0
  2606. }
  2607. .am-article-divider {
  2608. margin-bottom: 2.4rem;
  2609. border-color: #eee
  2610. }
  2611. .am-article-bd blockquote {
  2612. font-family: Georgia,"Times New Roman",Times,Kai,"Kaiti SC",KaiTi,BiauKai,FontAwesome,serif
  2613. }
  2614. .am-article-bd img {
  2615. display: block;
  2616. max-width: 100%
  2617. }
  2618. .am-badge {
  2619. display: inline-block;
  2620. min-width: 10px;
  2621. padding: .25em .625em;
  2622. font-size: 1.2rem;
  2623. font-weight: 700;
  2624. color: #fff;
  2625. line-height: 1;
  2626. vertical-align: baseline;
  2627. white-space: nowrap;
  2628. background-color: #999
  2629. }
  2630. .am-badge:empty {
  2631. display: none
  2632. }
  2633. .am-badge.am-radius {
  2634. border-radius: 2px
  2635. }
  2636. .am-badge.am-round {
  2637. border-radius: 1000px
  2638. }
  2639. a.am-badge:focus,a.am-badge:hover {
  2640. color: #fff;
  2641. text-decoration: none;
  2642. cursor: pointer
  2643. }
  2644. .am-badge-primary {
  2645. background-color: #0e90d2
  2646. }
  2647. .am-badge-secondary {
  2648. background-color: #3bb4f2
  2649. }
  2650. .am-badge-success {
  2651. background-color: #5eb95e
  2652. }
  2653. .am-badge-warning {
  2654. background-color: #F37B1D
  2655. }
  2656. .am-badge-danger {
  2657. background-color: #dd514c
  2658. }
  2659. .am-comment:after,.am-comment:before {
  2660. content: " ";
  2661. display: table
  2662. }
  2663. .am-comment-avatar {
  2664. float: left;
  2665. width: 32px;
  2666. height: 32px;
  2667. border-radius: 50%;
  2668. border: 1px solid transparent
  2669. }
  2670. @media only screen and (min-width:641px) {
  2671. .am-comment-avatar {
  2672. width: 48px;
  2673. height: 48px
  2674. }
  2675. }
  2676. .am-comment-main {
  2677. position: relative;
  2678. margin-left: 42px;
  2679. border: 1px solid #dedede;
  2680. border-radius: 0
  2681. }
  2682. .am-btn-group-stacked>.am-btn-group:not(:first-child):not(:last-child)>.am-btn,.am-btn-group-stacked>.am-btn:not(:first-child):not(:last-child),.am-btn-group>.am-btn-group:not(:first-child):not(:last-child)>.am-btn,.am-btn-group>.am-btn:not(:first-child):not(:last-child):not(.am-dropdown-toggle) {
  2683. border-radius: 0
  2684. }
  2685. .am-comment-main:after,.am-comment-main:before {
  2686. position: absolute;
  2687. top: 10px;
  2688. left: -8px;
  2689. right: 100%;
  2690. width: 0;
  2691. height: 0;
  2692. display: block;
  2693. content: " ";
  2694. border-color: transparent;
  2695. border-style: solid solid outset;
  2696. border-width: 8px 8px 8px 0;
  2697. pointer-events: none
  2698. }
  2699. .am-comment-main:before {
  2700. border-right-color: #dedede;
  2701. z-index: 1
  2702. }
  2703. .am-comment-main:after {
  2704. border-right-color: #f8f8f8;
  2705. margin-left: 1px;
  2706. z-index: 2
  2707. }
  2708. @media only screen and (min-width:641px) {
  2709. .am-comment-main {
  2710. margin-left: 63px
  2711. }
  2712. }
  2713. .am-comment-hd {
  2714. background: #f8f8f8;
  2715. border-bottom: 1px solid #eee;
  2716. display: -webkit-box;
  2717. display: -webkit-flex;
  2718. display: -ms-flexbox;
  2719. display: flex
  2720. }
  2721. .am-comment-title {
  2722. margin: 0 0 8px;
  2723. font-size: 1.6rem;
  2724. line-height: 1.2
  2725. }
  2726. .am-comment-actions,.am-comment-meta {
  2727. font-size: 13px;
  2728. color: #999
  2729. }
  2730. .am-comment-meta {
  2731. -webkit-box-flex: 1;
  2732. -webkit-flex: 1;
  2733. -ms-flex: 1;
  2734. flex: 1;
  2735. padding: 10px 15px;
  2736. line-height: 1.2;
  2737. white-space: nowrap;
  2738. text-overflow: ellipsis;
  2739. overflow: hidden
  2740. }
  2741. .am-comment-meta a {
  2742. color: #999
  2743. }
  2744. .am-comment-author {
  2745. font-weight: 700;
  2746. color: #999
  2747. }
  2748. .am-comment-bd {
  2749. padding: 15px;
  2750. overflow: hidden
  2751. }
  2752. .am-comment-bd>:last-child {
  2753. margin-bottom: 0
  2754. }
  2755. .am-comment-footer {
  2756. padding: 0 15px 5px
  2757. }
  2758. .am-comment-footer .am-comment-actions a+a {
  2759. margin-left: 5px
  2760. }
  2761. .am-comment-actions a {
  2762. display: inline-block;
  2763. padding: 10px 5px;
  2764. line-height: 1;
  2765. color: #999;
  2766. opacity: .7
  2767. }
  2768. .am-comment-actions a:hover {
  2769. color: #0e90d2;
  2770. opacity: 1
  2771. }
  2772. .am-comment-hd .am-comment-actions {
  2773. padding-right: .5rem
  2774. }
  2775. .am-comment-flip .am-comment-avatar {
  2776. float: right
  2777. }
  2778. .am-btn-group>.am-btn-group,.am-btn-toolbar .am-btn-group,.am-btn-toolbar .am-input-group {
  2779. float: left
  2780. }
  2781. .am-comment-flip .am-comment-main {
  2782. margin-left: auto;
  2783. margin-right: 42px
  2784. }
  2785. @media only screen and (min-width:641px) {
  2786. .am-comment-flip .am-comment-main {
  2787. margin-right: 63px
  2788. }
  2789. }
  2790. .am-comment-flip .am-comment-main:after,.am-comment-flip .am-comment-main:before {
  2791. left: auto;
  2792. right: -8px;
  2793. border-width: 8px 0 8px 8px
  2794. }
  2795. .am-comment-flip .am-comment-main:before {
  2796. border-left-color: #dedede
  2797. }
  2798. .am-comment-flip .am-comment-main:after {
  2799. border-left-color: #f8f8f8;
  2800. margin-right: 1px;
  2801. margin-left: auto
  2802. }
  2803. .am-comment-primary .am-comment-avatar,.am-comment-primary .am-comment-main {
  2804. border-color: #0e90d2
  2805. }
  2806. .am-comment-primary .am-comment-main:before {
  2807. border-right-color: #0e90d2
  2808. }
  2809. .am-comment-primary.am-comment-flip .am-comment-main:before {
  2810. border-left-color: #0e90d2;
  2811. border-right-color: transparent
  2812. }
  2813. .am-comment-primary.am-comment-flip .am-comment-main:after {
  2814. border-left-color: #f8f8f8
  2815. }
  2816. .am-comment-highlight .am-comment-avatar,.am-comment-highlight .am-comment-main,.am-comment-secondary .am-comment-avatar,.am-comment-secondary .am-comment-main {
  2817. border-color: #3bb4f2
  2818. }
  2819. .am-comment-highlight .am-comment-main:before,.am-comment-secondary .am-comment-main:before {
  2820. border-right-color: #3bb4f2
  2821. }
  2822. .am-comment-highlight.am-comment-flip .am-comment-main:before,.am-comment-secondary.am-comment-flip .am-comment-main:before {
  2823. border-left-color: #3bb4f2;
  2824. border-right-color: transparent
  2825. }
  2826. .am-comment-highlight.am-comment-flip .am-comment-main:after,.am-comment-secondary.am-comment-flip .am-comment-main:after {
  2827. border-left-color: #f8f8f8
  2828. }
  2829. .am-comment-success .am-comment-avatar,.am-comment-success .am-comment-main {
  2830. border-color: #5eb95e
  2831. }
  2832. .am-comment-success .am-comment-main:before {
  2833. border-right-color: #5eb95e
  2834. }
  2835. .am-comment-success.am-comment-flip .am-comment-main:before {
  2836. border-left-color: #5eb95e;
  2837. border-right-color: transparent
  2838. }
  2839. .am-comment-success.am-comment-flip .am-comment-main:after {
  2840. border-left-color: #f8f8f8
  2841. }
  2842. .am-comment-warning .am-comment-avatar,.am-comment-warning .am-comment-main {
  2843. border-color: #F37B1D
  2844. }
  2845. .am-comment-warning .am-comment-main:before {
  2846. border-right-color: #F37B1D
  2847. }
  2848. .am-comment-warning.am-comment-flip .am-comment-main:before {
  2849. border-left-color: #F37B1D;
  2850. border-right-color: transparent
  2851. }
  2852. .am-comment-warning.am-comment-flip .am-comment-main:after {
  2853. border-left-color: #f8f8f8
  2854. }
  2855. .am-comment-danger .am-comment-avatar,.am-comment-danger .am-comment-main {
  2856. border-color: #dd514c
  2857. }
  2858. .am-comment-danger .am-comment-main:before {
  2859. border-right-color: #dd514c
  2860. }
  2861. .am-comment-danger.am-comment-flip .am-comment-main:before {
  2862. border-left-color: #dd514c;
  2863. border-right-color: transparent
  2864. }
  2865. .am-comment-danger.am-comment-flip .am-comment-main:after {
  2866. border-left-color: #f8f8f8
  2867. }
  2868. .am-comments-list {
  2869. padding: 0;
  2870. list-style: none
  2871. }
  2872. .am-comments-list .am-comment {
  2873. margin: 1.6rem 0 0;
  2874. list-style: none
  2875. }
  2876. @media only screen and (min-width:641px) {
  2877. .am-comments-list-flip .am-comment-main {
  2878. margin-right: 64px
  2879. }
  2880. .am-comments-list-flip .am-comment-flip .am-comment-main {
  2881. margin-left: 64px
  2882. }
  2883. }
  2884. .am-btn-group,.am-btn-group-stacked {
  2885. position: relative;
  2886. display: inline-block;
  2887. vertical-align: middle
  2888. }
  2889. .am-btn-group-stacked>.am-btn,.am-btn-group>.am-btn {
  2890. position: relative;
  2891. float: left
  2892. }
  2893. .am-btn-group-stacked>.am-btn.active,.am-btn-group-stacked>.am-btn:active,.am-btn-group-stacked>.am-btn:focus,.am-btn-group-stacked>.am-btn:hover,.am-btn-group>.am-btn.active,.am-btn-group>.am-btn:active,.am-btn-group>.am-btn:focus,.am-btn-group>.am-btn:hover {
  2894. z-index: 2
  2895. }
  2896. .am-btn-group-stacked>.am-btn:focus,.am-btn-group>.am-btn:focus {
  2897. outline: 0
  2898. }
  2899. .am-btn-group .am-btn+.am-btn,.am-btn-group .am-btn+.am-btn-group,.am-btn-group .am-btn-group+.am-btn,.am-btn-group .am-btn-group+.am-btn-group {
  2900. margin-left: -1px
  2901. }
  2902. .am-btn-toolbar {
  2903. margin-left: -5px
  2904. }
  2905. .am-btn-toolbar:after,.am-btn-toolbar:before {
  2906. content: " ";
  2907. display: table
  2908. }
  2909. .am-btn-toolbar>.am-btn,.am-btn-toolbar>.am-btn-group,.am-btn-toolbar>.am-input-group {
  2910. margin-left: 5px
  2911. }
  2912. .am-btn-group>.am-btn:first-child {
  2913. margin-left: 0
  2914. }
  2915. .am-btn-group>.am-btn:first-child:not(:last-child):not(.am-dropdown-toggle) {
  2916. border-bottom-right-radius: 0;
  2917. border-top-right-radius: 0
  2918. }
  2919. .am-btn-group>.am-btn:last-child:not(:first-child),.am-btn-group>.am-dropdown-toggle:not(:first-child) {
  2920. border-bottom-left-radius: 0;
  2921. border-top-left-radius: 0
  2922. }
  2923. .am-btn-group>.am-btn-group:first-child>.am-btn:last-child,.am-btn-group>.am-btn-group:first-child>.am-dropdown-toggle {
  2924. border-bottom-right-radius: 0;
  2925. border-top-right-radius: 0
  2926. }
  2927. .am-btn-group>.am-btn-group:last-child>.am-btn:first-child {
  2928. border-bottom-left-radius: 0;
  2929. border-top-left-radius: 0
  2930. }
  2931. .am-btn-group-xs>.am-btn {
  2932. font-size: 1.2rem
  2933. }
  2934. .am-btn-group-sm>.am-btn {
  2935. font-size: 1.4rem
  2936. }
  2937. .am-btn-group-lg>.am-btn {
  2938. font-size: 1.8rem
  2939. }
  2940. .am-btn-group-stacked>.am-btn,.am-btn-group-stacked>.am-btn-group,.am-btn-group-stacked>.am-btn-group>.am-btn {
  2941. display: block;
  2942. float: none;
  2943. width: 100%;
  2944. max-width: 100%
  2945. }
  2946. .am-btn-group-stacked>.am-btn-group:after,.am-btn-group-stacked>.am-btn-group:before {
  2947. content: " ";
  2948. display: table
  2949. }
  2950. .am-btn-group-justify,.am-pureview-slider li {
  2951. display: -webkit-box;
  2952. display: -webkit-flex;
  2953. display: -ms-flexbox
  2954. }
  2955. .am-btn-group-stacked>.am-btn-group>.am-btn {
  2956. float: none
  2957. }
  2958. .am-btn-group-stacked>.am-btn+.am-btn,.am-btn-group-stacked>.am-btn+.am-btn-group,.am-btn-group-stacked>.am-btn-group+.am-btn,.am-btn-group-stacked>.am-btn-group+.am-btn-group {
  2959. margin-top: -1px;
  2960. margin-left: 0
  2961. }
  2962. .am-input-group-label input[type=checkbox],.am-input-group-label input[type=radio],.am-list-item-hd {
  2963. margin-top: 0
  2964. }
  2965. .am-btn-group-stacked>.am-btn:first-child:not(:last-child) {
  2966. border-top-right-radius: 0;
  2967. border-bottom-right-radius: 0;
  2968. border-bottom-left-radius: 0
  2969. }
  2970. .am-btn-group-stacked>.am-btn:last-child:not(:first-child) {
  2971. border-bottom-left-radius: 0;
  2972. border-top-right-radius: 0;
  2973. border-top-left-radius: 0
  2974. }
  2975. .am-btn-group-stacked>.am-btn-group:first-child:not(:last-child)>.am-btn:last-child,.am-btn-group-stacked>.am-btn-group:first-child:not(:last-child)>.am-dropdown-toggle {
  2976. border-bottom-right-radius: 0;
  2977. border-bottom-left-radius: 0
  2978. }
  2979. .am-btn-group-stacked>.am-btn-group:last-child:not(:first-child)>.am-btn:first-child {
  2980. border-top-right-radius: 0;
  2981. border-top-left-radius: 0
  2982. }
  2983. .am-btn-group-justify {
  2984. width: 100%;
  2985. display: flex
  2986. }
  2987. .am-btn-group-justify>.am-btn,.am-btn-group-justify>.am-btn-group {
  2988. float: none;
  2989. -webkit-box-flex: 1;
  2990. -webkit-flex: 1;
  2991. -ms-flex: 1;
  2992. flex: 1
  2993. }
  2994. .am-btn-group-justify>.am-btn-group .am-btn {
  2995. width: 100%
  2996. }
  2997. .lte9 .am-btn-group-justify {
  2998. display: table;
  2999. table-layout: fixed;
  3000. border-collapse: separate
  3001. }
  3002. .lte9 .am-btn-group-justify>.am-btn,.lte9 .am-btn-group-justify>.am-btn-group {
  3003. float: none;
  3004. display: table-cell;
  3005. width: 1%
  3006. }
  3007. .am-btn-group .am-dropdown {
  3008. float: left;
  3009. margin-left: -1px
  3010. }
  3011. .am-btn-group .am-dropdown>.am-btn {
  3012. border-bottom-left-radius: 0;
  3013. border-top-left-radius: 0
  3014. }
  3015. .am-btn-group .am-active .am-dropdown-toggle {
  3016. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  3017. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  3018. }
  3019. .am-btn-group .am-active .am-dropdown-toggle.am-btn-link {
  3020. -webkit-box-shadow: none;
  3021. box-shadow: none
  3022. }
  3023. .am-btn-group .am-active .am-dropdown-toggle,.am-btn-group .am-dropdown-toggle:active {
  3024. outline: 0
  3025. }
  3026. .am-btn-group-check>.am-btn>input[type=checkbox],.am-btn-group-check>.am-btn>input[type=radio],[data-am-button]>.am-btn>input[type=checkbox],[data-am-button]>.am-btn>input[type=radio] {
  3027. position: absolute;
  3028. z-index: -1;
  3029. opacity: 0
  3030. }
  3031. .am-close {
  3032. display: inline-block;
  3033. width: 24px;
  3034. font-size: 20px;
  3035. font-weight: 700;
  3036. line-height: 24px;
  3037. color: #000;
  3038. text-shadow: 0 1px 0 #fff;
  3039. opacity: .2;
  3040. -webkit-transition: all .3s;
  3041. transition: all .3s
  3042. }
  3043. .am-close:focus,.am-close:hover {
  3044. color: #000;
  3045. text-decoration: none;
  3046. cursor: pointer;
  3047. opacity: .5;
  3048. outline: 0
  3049. }
  3050. .am-close[class*=am-icon-] {
  3051. font-size: 16px
  3052. }
  3053. button.am-close {
  3054. padding: 0;
  3055. cursor: pointer;
  3056. background: 0 0;
  3057. border: 0;
  3058. -webkit-appearance: none
  3059. }
  3060. a.am-close:hover {
  3061. color: inherit;
  3062. text-decoration: none;
  3063. cursor: pointer
  3064. }
  3065. .am-close-alt {
  3066. border-radius: 50%;
  3067. background: #eee;
  3068. opacity: .7;
  3069. -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.25);
  3070. box-shadow: 0 0 0 1px rgba(0,0,0,.25)
  3071. }
  3072. .am-close-alt:focus,.am-close-alt:hover {
  3073. opacity: 1
  3074. }
  3075. .am-close-spin:hover {
  3076. -webkit-transform: rotate(360deg);
  3077. -ms-transform: rotate(360deg);
  3078. transform: rotate(360deg)
  3079. }
  3080. @font-face {
  3081. font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.5.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.5.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.5.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.5.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal
  3082. }[class*=am-icon-] {
  3083. display: inline-block;
  3084. font-style: normal
  3085. }
  3086. .am-slider-default .am-direction-nav a:before,[class*=am-icon-]:before {
  3087. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  3088. -webkit-transform: translate(0,0);
  3089. -ms-transform: translate(0,0);
  3090. text-rendering: auto;
  3091. -moz-osx-font-smoothing: grayscale
  3092. }[class*=am-icon-]:before {
  3093. display: inline-block;
  3094. font-size: inherit;
  3095. -webkit-font-smoothing: antialiased;
  3096. transform: translate(0,0)
  3097. }
  3098. .am-icon-border {
  3099. padding: .2em .25em .15em;
  3100. border: .08em solid #eee;
  3101. border-radius: .1em
  3102. }[class*=am-icon-].am-fl {
  3103. margin-right: .3em
  3104. }[class*=am-icon-].am-fr {
  3105. margin-left: .3em
  3106. }
  3107. .am-icon-sm:before {
  3108. font-size: 150%;
  3109. vertical-align: -10%
  3110. }
  3111. .am-icon-md:before {
  3112. font-size: 200%;
  3113. vertical-align: -16%
  3114. }
  3115. .am-icon-lg:before {
  3116. font-size: 250%;
  3117. vertical-align: -22%
  3118. }
  3119. .am-icon-btn {
  3120. -webkit-box-sizing: border-box;
  3121. box-sizing: border-box;
  3122. display: inline-block;
  3123. width: 48px;
  3124. height: 48px;
  3125. font-size: 24px;
  3126. line-height: 48px;
  3127. border-radius: 50%;
  3128. background-color: #eee;
  3129. color: #555
  3130. }
  3131. .am-icon-btn:focus,.am-icon-btn:hover {
  3132. background-color: #f5f5f5;
  3133. color: #333;
  3134. text-decoration: none;
  3135. outline: 0
  3136. }
  3137. .am-icon-btn:active {
  3138. background-color: #ddd;
  3139. color: #333
  3140. }
  3141. .am-icon-btn.am-danger,.am-icon-btn.am-primary,.am-icon-btn.am-secondary,.am-icon-btn.am-success,.am-icon-btn.am-warning {
  3142. color: #fff
  3143. }
  3144. .am-icon-btn.am-primary {
  3145. background-color: #0e90d2
  3146. }
  3147. .am-icon-btn.am-secondary {
  3148. background-color: #3bb4f2
  3149. }
  3150. .am-icon-btn.am-success {
  3151. background-color: #5eb95e
  3152. }
  3153. .am-icon-btn.am-warning {
  3154. background-color: #F37B1D
  3155. }
  3156. .am-icon-btn.am-danger {
  3157. background-color: #dd514c
  3158. }
  3159. .am-icon-btn-sm {
  3160. width: 32px;
  3161. height: 32px;
  3162. font-size: 16px;
  3163. line-height: 32px
  3164. }
  3165. .am-icon-btn-lg {
  3166. width: 64px;
  3167. height: 64px;
  3168. font-size: 28px;
  3169. line-height: 64px
  3170. }
  3171. .am-icon-fw {
  3172. width: 1.25em
  3173. }
  3174. @-webkit-keyframes icon-spin {
  3175. 0% {
  3176. -webkit-transform: rotate(0);
  3177. transform: rotate(0)
  3178. }
  3179. 100% {
  3180. -webkit-transform: rotate(359deg);
  3181. transform: rotate(359deg)
  3182. }
  3183. }
  3184. @keyframes icon-spin {
  3185. 0% {
  3186. -webkit-transform: rotate(0);
  3187. transform: rotate(0)
  3188. }
  3189. 100% {
  3190. -webkit-transform: rotate(359deg);
  3191. transform: rotate(359deg)
  3192. }
  3193. }
  3194. .am-icon-spin {
  3195. -webkit-animation: icon-spin 2s infinite linear;
  3196. animation: icon-spin 2s infinite linear
  3197. }
  3198. .am-icon-pulse {
  3199. -webkit-animation: icon-spin 1s infinite steps(8);
  3200. animation: icon-spin 1s infinite steps(8)
  3201. }
  3202. .am-icon-ul {
  3203. padding-left: 0;
  3204. margin-left: 2.14285714em;
  3205. list-style-type: none
  3206. }
  3207. .am-input-group-btn:last-child>.am-btn,.am-input-group-btn:last-child>.am-btn-group,.am-input-group-btn>.am-btn+.am-btn {
  3208. margin-left: -1px
  3209. }
  3210. .am-icon-ul>li {
  3211. position: relative
  3212. }
  3213. .am-icon-li {
  3214. position: absolute;
  3215. left: -2.14285714em;
  3216. width: 2.14285714em;
  3217. top: .14285714em
  3218. }
  3219. .am-input-group {
  3220. position: relative;
  3221. display: table;
  3222. border-collapse: separate
  3223. }
  3224. .am-input-group .am-form-field {
  3225. position: relative;
  3226. z-index: 2;
  3227. float: left;
  3228. width: 100%;
  3229. margin-bottom: 0
  3230. }
  3231. .am-input-group .am-form-field,.am-input-group-btn,.am-input-group-label {
  3232. display: table-cell
  3233. }
  3234. .am-input-group .am-form-field:not(:first-child):not(:last-child),.am-input-group-btn:not(:first-child):not(:last-child),.am-input-group-label:not(:first-child):not(:last-child) {
  3235. border-radius: 0
  3236. }
  3237. .am-input-group-btn,.am-input-group-label {
  3238. width: 1%;
  3239. white-space: nowrap;
  3240. vertical-align: middle
  3241. }
  3242. .am-input-group-label {
  3243. height: 38px;
  3244. padding: 0 1em;
  3245. font-size: 1.6rem;
  3246. font-weight: 400;
  3247. line-height: 36px;
  3248. color: #555;
  3249. text-align: center;
  3250. background-color: #eee;
  3251. border: 1px solid #ccc;
  3252. border-radius: 0
  3253. }
  3254. .am-input-group .am-form-field:first-child,.am-input-group-btn:first-child>.am-btn,.am-input-group-btn:first-child>.am-btn-group>.am-btn,.am-input-group-btn:first-child>.am-dropdown-toggle,.am-input-group-btn:last-child>.am-btn-group:not(:last-child)>.am-btn,.am-input-group-btn:last-child>.am-btn:not(:last-child):not(.dropdown-toggle),.am-input-group-label:first-child {
  3255. border-bottom-right-radius: 0;
  3256. border-top-right-radius: 0
  3257. }
  3258. .am-input-group-label:first-child {
  3259. border-right: 0
  3260. }
  3261. .am-input-group .am-form-field:last-child,.am-input-group-btn:first-child>.am-btn-group:not(:first-child)>.am-btn,.am-input-group-btn:first-child>.am-btn:not(:first-child),.am-input-group-btn:last-child>.am-btn,.am-input-group-btn:last-child>.am-btn-group>.am-btn,.am-input-group-btn:last-child>.am-dropdown-toggle,.am-input-group-label:last-child {
  3262. border-bottom-left-radius: 0;
  3263. border-top-left-radius: 0
  3264. }
  3265. .am-input-group-label:last-child {
  3266. border-left: 0
  3267. }
  3268. .am-input-group-btn {
  3269. position: relative;
  3270. font-size: 0;
  3271. white-space: nowrap
  3272. }
  3273. .am-input-group-btn>.am-btn {
  3274. position: relative;
  3275. border-color: #ccc
  3276. }
  3277. .am-input-group-btn>.am-btn:active,.am-input-group-btn>.am-btn:focus,.am-input-group-btn>.am-btn:hover {
  3278. z-index: 2
  3279. }
  3280. .am-input-group-btn:first-child>.am-btn,.am-input-group-btn:first-child>.am-btn-group {
  3281. margin-right: -2px
  3282. }
  3283. .am-input-group .am-form-field,.am-input-group-btn>.am-btn {
  3284. height: 38px;
  3285. padding-bottom: auto
  3286. }
  3287. .am-input-group-lg>.am-form-field,.am-input-group-lg>.am-input-group-btn>.am-btn,.am-input-group-lg>.am-input-group-label {
  3288. height: 42px;
  3289. font-size: 1.8rem!important
  3290. }
  3291. .am-input-group-lg>.am-input-group-label {
  3292. line-height: 40px
  3293. }
  3294. .am-input-group-sm>.am-form-field,.am-input-group-sm>.am-input-group-btn>.am-btn,.am-input-group-sm>.am-input-group-label {
  3295. height: 33px;
  3296. font-size: 1.4rem!important
  3297. }
  3298. .am-input-group-sm>.am-input-group-label {
  3299. line-height: 31px
  3300. }
  3301. .am-input-group-primary .am-input-group-label {
  3302. background: #0e90d2;
  3303. color: #fff
  3304. }
  3305. .am-input-group-primary .am-input-group-btn>.am-btn,.am-input-group-primary .am-input-group-label,.am-input-group-primary.am-input-group .am-form-field {
  3306. border-color: #0e90d2
  3307. }
  3308. .am-input-group-secondary .am-input-group-label {
  3309. background: #3bb4f2;
  3310. color: #fff
  3311. }
  3312. .am-input-group-secondary .am-input-group-btn>.am-btn,.am-input-group-secondary .am-input-group-label,.am-input-group-secondary.am-input-group .am-form-field {
  3313. border-color: #3bb4f2
  3314. }
  3315. .am-input-group-success .am-input-group-label {
  3316. background: #5eb95e;
  3317. color: #fff
  3318. }
  3319. .am-input-group-success .am-input-group-btn>.am-btn,.am-input-group-success .am-input-group-label,.am-input-group-success.am-input-group .am-form-field {
  3320. border-color: #5eb95e
  3321. }
  3322. .am-input-group-warning .am-input-group-label {
  3323. background: #F37B1D;
  3324. color: #fff
  3325. }
  3326. .am-input-group-warning .am-input-group-btn>.am-btn,.am-input-group-warning .am-input-group-label,.am-input-group-warning.am-input-group .am-form-field {
  3327. border-color: #F37B1D
  3328. }
  3329. .am-input-group-danger .am-input-group-label {
  3330. background: #dd514c;
  3331. color: #fff
  3332. }
  3333. .am-input-group-danger .am-input-group-btn>.am-btn,.am-input-group-danger .am-input-group-label,.am-input-group-danger.am-input-group .am-form-field {
  3334. border-color: #dd514c
  3335. }
  3336. .am-list {
  3337. padding-left: 0
  3338. }
  3339. .am-list>li {
  3340. position: relative;
  3341. display: block;
  3342. margin-bottom: -1px;
  3343. background-color: #fff;
  3344. border: 1px solid #dedede;
  3345. border-width: 1px 0
  3346. }
  3347. .am-angle,.am-sr-only {
  3348. position: absolute
  3349. }
  3350. .am-list>li>a {
  3351. display: block;
  3352. padding: 1rem 0
  3353. }
  3354. .am-list>li>a.am-active,.am-list>li>a.am-active:focus,.am-list>li>a.am-active:hover {
  3355. z-index: 2;
  3356. color: #fff;
  3357. background-color: #0e90d2;
  3358. border-color: #0e90d2
  3359. }
  3360. .am-list>li>a.am-active .am-list-item-heading,.am-list>li>a.am-active:focus .am-list-item-heading,.am-list>li>a.am-active:hover .am-list-item-heading {
  3361. color: inherit
  3362. }
  3363. .am-list>li>a.am-active .am-list-item-text,.am-list>li>a.am-active:focus .am-list-item-text,.am-list>li>a.am-active:hover .am-list-item-text {
  3364. color: #b2e2fa
  3365. }
  3366. .am-list>li>.am-badge {
  3367. float: right
  3368. }
  3369. .am-list>li>.am-badge+.am-badge {
  3370. margin-right: 5px
  3371. }
  3372. .am-list-static>li {
  3373. padding: .8rem .2rem
  3374. }
  3375. .am-list-border>li>a,.am-list-static.am-list-border>li {
  3376. padding: 1rem
  3377. }
  3378. .am-list-border>li {
  3379. border-width: 1px
  3380. }
  3381. .am-list-border>li:first-child,.am-list-border>li:first-child>a {
  3382. border-top-right-radius: 0;
  3383. border-top-left-radius: 0
  3384. }
  3385. .am-list-border>li:last-child,.am-list-border>li:last-child>a {
  3386. margin-bottom: 0;
  3387. border-bottom-right-radius: 0;
  3388. border-bottom-left-radius: 0
  3389. }
  3390. .am-list-border>li>a:focus,.am-list-border>li>a:hover {
  3391. background-color: #f5f5f5
  3392. }
  3393. .am-list-striped>li:nth-of-type(even) {
  3394. background: #f5f5f5
  3395. }
  3396. .am-progress-striped .am-progress-bar,.am-progress-striped .am-progress-bar-secondary {
  3397. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  3398. 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)
  3399. }
  3400. .am-list-item-text {
  3401. line-height: 1.4;
  3402. font-size: 1.3rem;
  3403. color: #999;
  3404. margin: 0
  3405. }
  3406. .am-panel {
  3407. margin-bottom: 20px;
  3408. background-color: #fff;
  3409. border: 1px solid transparent;
  3410. border-radius: 0;
  3411. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  3412. box-shadow: 0 1px 1px rgba(0,0,0,.05)
  3413. }
  3414. .am-panel-hd,.am-panel>.am-table:first-child>tbody:first-child>tr:first-child td:first-child,.am-panel>.am-table:first-child>tbody:first-child>tr:first-child th:first-child,.am-panel>.am-table:first-child>thead:first-child>tr:first-child td:first-child,.am-panel>.am-table:first-child>thead:first-child>tr:first-child th:first-child {
  3415. border-top-left-radius: 0
  3416. }
  3417. .am-panel-hd,.am-panel>.am-table:first-child>tbody:first-child>tr:first-child td:last-child,.am-panel>.am-table:first-child>tbody:first-child>tr:first-child th:last-child,.am-panel>.am-table:first-child>thead:first-child>tr:first-child td:last-child,.am-panel>.am-table:first-child>thead:first-child>tr:first-child th:last-child {
  3418. border-top-right-radius: 0
  3419. }
  3420. .am-panel-footer,.am-panel>.am-table:last-child>tbody:last-child>tr:last-child td:first-child,.am-panel>.am-table:last-child>tbody:last-child>tr:last-child th:first-child,.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child td:first-child,.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child th:first-child {
  3421. border-bottom-left-radius: 0
  3422. }
  3423. .am-panel-footer,.am-panel>.am-table:last-child>tbody:last-child>tr:last-child td:last-child,.am-panel>.am-table:last-child>tbody:last-child>tr:last-child th:last-child,.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child td:last-child,.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child th:last-child {
  3424. border-bottom-right-radius: 0
  3425. }
  3426. .am-panel-hd {
  3427. padding: .6rem 1.25rem;
  3428. border-bottom: 1px solid transparent
  3429. }
  3430. .am-panel-bd {
  3431. padding: 1.25rem
  3432. }
  3433. .am-panel-title {
  3434. margin: 0;
  3435. font-size: 100%;
  3436. color: inherit
  3437. }
  3438. .am-panel-title>a {
  3439. color: inherit
  3440. }
  3441. .am-panel-footer {
  3442. padding: .6rem 1.25rem;
  3443. background-color: #f5f5f5;
  3444. border-top: 1px solid #ddd
  3445. }
  3446. .am-panel-default {
  3447. border-color: #ddd
  3448. }
  3449. .am-panel-default>.am-panel-hd {
  3450. color: #444;
  3451. background-color: #f5f5f5;
  3452. border-color: #ddd
  3453. }
  3454. .am-panel-default>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
  3455. border-top-color: #ddd
  3456. }
  3457. .am-panel-default>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
  3458. border-bottom-color: #ddd
  3459. }
  3460. .am-panel-primary {
  3461. border-color: #10a0ea
  3462. }
  3463. .am-panel-primary>.am-panel-hd {
  3464. color: #fff;
  3465. background-color: #0e90d2;
  3466. border-color: #10a0ea
  3467. }
  3468. .am-panel-primary>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
  3469. border-top-color: #10a0ea
  3470. }
  3471. .am-panel-primary>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
  3472. border-bottom-color: #10a0ea
  3473. }
  3474. .am-panel-secondary {
  3475. border-color: #caebfb
  3476. }
  3477. .am-panel-secondary>.am-panel-hd {
  3478. color: #14a6ef;
  3479. background-color: rgba(59,180,242,.15);
  3480. border-color: #caebfb
  3481. }
  3482. .am-panel-secondary>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
  3483. border-top-color: #caebfb
  3484. }
  3485. .am-panel-secondary>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
  3486. border-bottom-color: #caebfb
  3487. }
  3488. .am-panel-success {
  3489. border-color: #c9e7c9
  3490. }
  3491. .am-panel-success>.am-panel-hd {
  3492. color: #5eb95e;
  3493. background-color: rgba(94,185,94,.15);
  3494. border-color: #c9e7c9
  3495. }
  3496. .am-panel-success>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
  3497. border-top-color: #c9e7c9
  3498. }
  3499. .am-panel-success>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
  3500. border-bottom-color: #c9e7c9
  3501. }
  3502. .am-panel-warning {
  3503. border-color: #fbd0ae
  3504. }
  3505. .am-panel-warning>.am-panel-hd {
  3506. color: #F37B1D;
  3507. background-color: rgba(243,123,29,.15);
  3508. border-color: #fbd0ae
  3509. }
  3510. .am-panel-warning>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
  3511. border-top-color: #fbd0ae
  3512. }
  3513. .am-panel-warning>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
  3514. border-bottom-color: #fbd0ae
  3515. }
  3516. .am-panel-danger {
  3517. border-color: #f5cecd
  3518. }
  3519. .am-panel-danger>.am-panel-hd {
  3520. color: #dd514c;
  3521. background-color: rgba(221,81,76,.15);
  3522. border-color: #f5cecd
  3523. }
  3524. .am-panel-danger>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
  3525. border-top-color: #f5cecd
  3526. }
  3527. .am-panel-danger>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
  3528. border-bottom-color: #f5cecd
  3529. }
  3530. .am-panel-group .am-panel-hd,.am-panel>.am-table-bd>tbody>tr:first-child>td,.am-panel>.am-table-bd>tbody>tr:first-child>th,.am-panel>.am-table-bd>tbody>tr:last-child>td,.am-panel>.am-table-bd>tbody>tr:last-child>th,.am-panel>.am-table-bd>tfoot>tr:last-child>td,.am-panel>.am-table-bd>tfoot>tr:last-child>th,.am-panel>.am-table-bd>thead>tr:first-child>td,.am-panel>.am-table-bd>thead>tr:first-child>th {
  3531. border-bottom: 0
  3532. }
  3533. .am-panel>.am-table {
  3534. margin-bottom: 0
  3535. }
  3536. .am-panel>.am-table:first-child {
  3537. border-top-right-radius: 0;
  3538. border-top-left-radius: 0
  3539. }
  3540. .am-panel>.am-table:last-child {
  3541. border-bottom-right-radius: 0;
  3542. border-bottom-left-radius: 0
  3543. }
  3544. .am-panel>.am-panel-bd+.am-table {
  3545. border-top: 1px solid #ddd
  3546. }
  3547. .am-panel>.am-table>tbody:first-child>tr:first-child td,.am-panel>.am-table>tbody:first-child>tr:first-child th {
  3548. border-top: 0
  3549. }
  3550. .am-panel>.am-table-bd {
  3551. border: 0
  3552. }
  3553. .am-panel>.am-table-bd>tbody>tr>td:first-child,.am-panel>.am-table-bd>tbody>tr>th:first-child,.am-panel>.am-table-bd>tfoot>tr>td:first-child,.am-panel>.am-table-bd>tfoot>tr>th:first-child,.am-panel>.am-table-bd>thead>tr>td:first-child,.am-panel>.am-table-bd>thead>tr>th:first-child {
  3554. border-left: 0
  3555. }
  3556. .am-panel>.am-table-bd>tbody>tr>td:last-child,.am-panel>.am-table-bd>tbody>tr>th:last-child,.am-panel>.am-table-bd>tfoot>tr>td:last-child,.am-panel>.am-table-bd>tfoot>tr>th:last-child,.am-panel>.am-table-bd>thead>tr>td:last-child,.am-panel>.am-table-bd>thead>tr>th:last-child {
  3557. border-right: 0
  3558. }
  3559. .am-panel>.am-list {
  3560. margin: 0
  3561. }
  3562. .am-panel>.am-list-static li,.am-panel>.am-list>li>a {
  3563. padding-left: 1rem;
  3564. padding-right: 1rem
  3565. }
  3566. .am-panel-group {
  3567. margin-bottom: 2rem
  3568. }
  3569. .am-panel-group .am-panel {
  3570. margin-bottom: 0;
  3571. border-radius: 0
  3572. }
  3573. .am-panel-group .am-panel+.am-panel {
  3574. margin-top: 6px
  3575. }
  3576. .am-panel-group .am-panel-hd+.am-panel-collapse .am-panel-bd {
  3577. border-top: 1px solid #ddd
  3578. }
  3579. .am-panel-group .am-panel-footer {
  3580. border-top: 0
  3581. }
  3582. .am-panel-group .am-panel-footer+.am-panel-collapse .am-panel-bd {
  3583. border-bottom: 1px solid #ddd
  3584. }
  3585. @-webkit-keyframes progress-bar-stripes {
  3586. from {
  3587. background-position: 36px 0
  3588. }
  3589. to {
  3590. background-position: 0 0
  3591. }
  3592. }
  3593. @keyframes progress-bar-stripes {
  3594. from {
  3595. background-position: 36px 0
  3596. }
  3597. to {
  3598. background-position: 0 0
  3599. }
  3600. }
  3601. .am-progress {
  3602. overflow: hidden;
  3603. height: 2rem;
  3604. margin-bottom: 2rem;
  3605. background-color: #f5f5f5;
  3606. border-radius: 0;
  3607. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  3608. box-shadow: inset 0 1px 2px rgba(0,0,0,.1)
  3609. }
  3610. .am-progress-bar {
  3611. float: left;
  3612. width: 0;
  3613. height: 100%;
  3614. font-size: 1.2rem;
  3615. line-height: 2rem;
  3616. color: #fff;
  3617. background-color: #0e90d2;
  3618. -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  3619. box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  3620. -webkit-transition: width .6s ease;
  3621. transition: width .6s ease
  3622. }
  3623. .am-progress-striped .am-progress-bar {
  3624. 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);
  3625. -webkit-background-size: 36px 36px;
  3626. background-size: 36px 36px
  3627. }
  3628. .am-progress.am-active .am-progress-bar {
  3629. -webkit-animation: progress-bar-stripes 2s linear infinite;
  3630. animation: progress-bar-stripes 2s linear infinite
  3631. }
  3632. .am-progress-bar[aria-valuenow="1"],.am-progress-bar[aria-valuenow="2"] {
  3633. min-width: 30px
  3634. }
  3635. .am-progress-bar[aria-valuenow="0"] {
  3636. color: #999;
  3637. min-width: 30px;
  3638. background: 0 0;
  3639. -webkit-box-shadow: none;
  3640. box-shadow: none
  3641. }
  3642. .am-progress-bar-secondary {
  3643. background-color: #3bb4f2
  3644. }
  3645. .am-progress-striped .am-progress-bar-secondary {
  3646. 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)
  3647. }
  3648. .am-progress-striped .am-progress-bar-success,.am-progress-striped .am-progress-bar-warning {
  3649. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  3650. 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)
  3651. }
  3652. .am-progress-bar-success {
  3653. background-color: #5eb95e
  3654. }
  3655. .am-progress-striped .am-progress-bar-success {
  3656. 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)
  3657. }
  3658. .am-progress-bar-warning {
  3659. background-color: #F37B1D
  3660. }
  3661. .am-progress-striped .am-progress-bar-warning {
  3662. 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)
  3663. }
  3664. .am-progress-bar-danger {
  3665. background-color: #dd514c
  3666. }
  3667. .am-progress-striped .am-progress-bar-danger {
  3668. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  3669. 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);
  3670. 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)
  3671. }
  3672. .am-progress-xs {
  3673. height: .6rem
  3674. }
  3675. .am-progress-sm {
  3676. height: 1.2rem
  3677. }
  3678. .am-thumbnail {
  3679. display: block;
  3680. padding: 2px;
  3681. margin-bottom: 2rem;
  3682. background-color: #fff;
  3683. border: 1px solid #ddd;
  3684. border-radius: 0;
  3685. -webkit-transition: all .2s ease-in-out;
  3686. transition: all .2s ease-in-out
  3687. }
  3688. .am-thumbnail a>img,.am-thumbnail>img {
  3689. margin-left: auto;
  3690. margin-right: auto;
  3691. display: block
  3692. }
  3693. .am-thumbnail a.am-thumbnail.active,.am-thumbnail a.am-thumbnail:focus,.am-thumbnail a.am-thumbnail:hover {
  3694. border-color: #0e90d2;
  3695. background-color: #fff
  3696. }
  3697. .am-thumbnail a>img,.am-thumbnail>img,img.am-thumbnail {
  3698. max-width: 100%;
  3699. height: auto
  3700. }
  3701. .am-thumbnail-caption {
  3702. margin: 0;
  3703. padding: .8rem;
  3704. color: #333;
  3705. font-weight: 400
  3706. }
  3707. .am-thumbnail-caption :last-child {
  3708. margin-bottom: 0
  3709. }
  3710. .am-thumbnails {
  3711. margin-left: -.5rem;
  3712. margin-right: -.5rem
  3713. }
  3714. .am-thumbnails>li {
  3715. padding: 0 .5rem 1rem
  3716. }
  3717. .am-scrollable-horizontal {
  3718. width: 100%;
  3719. overflow-y: hidden;
  3720. overflow-x: auto;
  3721. -ms-overflow-style: -ms-autohiding-scrollbar;
  3722. -webkit-overflow-scrolling: touch
  3723. }
  3724. .am-scrollable-vertical {
  3725. height: 240px;
  3726. overflow-y: scroll;
  3727. -webkit-overflow-scrolling: touch;
  3728. resize: vertical
  3729. }
  3730. .am-square {
  3731. border-radius: 0
  3732. }
  3733. .am-radius {
  3734. border-radius: 2px
  3735. }
  3736. .am-round {
  3737. border-radius: 1000px
  3738. }
  3739. .am-circle {
  3740. border-radius: 50%
  3741. }
  3742. .am-cf:after,.am-cf:before {
  3743. content: " ";
  3744. display: table
  3745. }
  3746. .am-cf:after {
  3747. clear: both
  3748. }
  3749. .am-fl {
  3750. float: left
  3751. }
  3752. .am-fr {
  3753. float: right
  3754. }
  3755. .am-nbfc {
  3756. overflow: hidden
  3757. }
  3758. .am-center {
  3759. display: block;
  3760. margin-left: auto;
  3761. margin-right: auto
  3762. }
  3763. .am-block {
  3764. display: block!important
  3765. }
  3766. .am-inline {
  3767. display: inline!important
  3768. }
  3769. .am-inline-block {
  3770. display: inline-block!important
  3771. }
  3772. .am-hide {
  3773. display: none!important;
  3774. visibility: hidden!important
  3775. }
  3776. .am-vertical-align {
  3777. font-size: 0
  3778. }
  3779. .am-vertical-align:before {
  3780. content: '';
  3781. display: inline-block;
  3782. height: 100%;
  3783. vertical-align: middle
  3784. }
  3785. .am-vertical-align-bottom,.am-vertical-align-middle {
  3786. display: inline-block;
  3787. font-size: 1.6rem;
  3788. max-width: 100%
  3789. }
  3790. .am-vertical-align-middle {
  3791. vertical-align: middle
  3792. }
  3793. .am-vertical-align-bottom {
  3794. vertical-align: bottom
  3795. }
  3796. .am-responsive-width {
  3797. -webkit-box-sizing: border-box;
  3798. box-sizing: border-box;
  3799. max-width: 100%;
  3800. height: auto
  3801. }
  3802. .am-margin {
  3803. margin: 1.6rem
  3804. }
  3805. .am-margin-0 {
  3806. margin: 0!important
  3807. }
  3808. .am-margin-xs {
  3809. margin: .5rem
  3810. }
  3811. .am-margin-sm {
  3812. margin: 1rem
  3813. }
  3814. .am-margin-lg {
  3815. margin: 2.4rem
  3816. }
  3817. .am-margin-xl {
  3818. margin: 3.2rem
  3819. }
  3820. .am-margin-horizontal {
  3821. margin-left: 1.6rem;
  3822. margin-right: 1.6rem
  3823. }
  3824. .am-margin-horizontal-0 {
  3825. margin-left: 0!important;
  3826. margin-right: 0!important
  3827. }
  3828. .am-margin-horizontal-xs {
  3829. margin-left: .5rem;
  3830. margin-right: .5rem
  3831. }
  3832. .am-margin-horizontal-sm {
  3833. margin-left: 1rem;
  3834. margin-right: 1rem
  3835. }
  3836. .am-margin-horizontal-lg {
  3837. margin-left: 2.4rem;
  3838. margin-right: 2.4rem
  3839. }
  3840. .am-margin-horizontal-xl {
  3841. margin-left: 3.2rem;
  3842. margin-right: 3.2rem
  3843. }
  3844. .am-margin-vertical {
  3845. margin-top: 1.6rem;
  3846. margin-bottom: 1.6rem
  3847. }
  3848. .am-margin-vertical-0 {
  3849. margin-top: 0!important;
  3850. margin-bottom: 0!important
  3851. }
  3852. .am-margin-vertical-xs {
  3853. margin-top: .5rem;
  3854. margin-bottom: .5rem
  3855. }
  3856. .am-margin-vertical-sm {
  3857. margin-top: 1rem;
  3858. margin-bottom: 1rem
  3859. }
  3860. .am-margin-vertical-lg {
  3861. margin-top: 2.4rem;
  3862. margin-bottom: 2.4rem
  3863. }
  3864. .am-margin-vertical-xl {
  3865. margin-top: 3.2rem;
  3866. margin-bottom: 3.2rem
  3867. }
  3868. .am-margin-top {
  3869. margin-top: 1.6rem
  3870. }
  3871. .am-margin-top-0 {
  3872. margin-top: 0!important
  3873. }
  3874. .am-margin-top-xs {
  3875. margin-top: .5rem
  3876. }
  3877. .am-margin-top-sm {
  3878. margin-top: 1rem
  3879. }
  3880. .am-margin-top-lg {
  3881. margin-top: 2.4rem
  3882. }
  3883. .am-margin-top-xl {
  3884. margin-top: 3.2rem
  3885. }
  3886. .am-margin-bottom {
  3887. margin-bottom: 1.6rem
  3888. }
  3889. .am-margin-bottom-0 {
  3890. margin-bottom: 0!important
  3891. }
  3892. .am-margin-bottom-xs {
  3893. margin-bottom: .5rem
  3894. }
  3895. .am-margin-bottom-sm {
  3896. margin-bottom: 1rem
  3897. }
  3898. .am-margin-bottom-lg {
  3899. margin-bottom: 2.4rem
  3900. }
  3901. .am-margin-bottom-xl {
  3902. margin-bottom: 3.2rem
  3903. }
  3904. .am-margin-left {
  3905. margin-left: 1.6rem
  3906. }
  3907. .am-margin-left-0 {
  3908. margin-left: 0!important
  3909. }
  3910. .am-margin-left-xs {
  3911. margin-left: .5rem
  3912. }
  3913. .am-margin-left-sm {
  3914. margin-left: 1rem
  3915. }
  3916. .am-margin-left-lg {
  3917. margin-left: 2.4rem
  3918. }
  3919. .am-margin-left-xl {
  3920. margin-left: 3.2rem
  3921. }
  3922. .am-margin-right {
  3923. margin-right: 1.6rem
  3924. }
  3925. .am-margin-right-0 {
  3926. margin-right: 0!important
  3927. }
  3928. .am-margin-right-xs {
  3929. margin-right: .5rem
  3930. }
  3931. .am-margin-right-sm {
  3932. margin-right: 1rem
  3933. }
  3934. .am-margin-right-lg {
  3935. margin-right: 2.4rem
  3936. }
  3937. .am-margin-right-xl {
  3938. margin-right: 3.2rem
  3939. }
  3940. .am-padding {
  3941. padding: 1.6rem
  3942. }
  3943. .am-padding-0 {
  3944. padding: 0!important
  3945. }
  3946. .am-padding-xs {
  3947. padding: .5rem
  3948. }
  3949. .am-padding-sm {
  3950. padding: 1rem
  3951. }
  3952. .am-padding-lg {
  3953. padding: 2.4rem
  3954. }
  3955. .am-padding-xl {
  3956. padding: 3.2rem
  3957. }
  3958. .am-padding-horizontal {
  3959. padding-left: 1.6rem;
  3960. padding-right: 1.6rem
  3961. }
  3962. .am-padding-horizontal-0 {
  3963. padding-left: 0!important;
  3964. padding-right: 0!important
  3965. }
  3966. .am-padding-horizontal-xs {
  3967. padding-left: .5rem;
  3968. padding-right: .5rem
  3969. }
  3970. .am-padding-horizontal-sm {
  3971. padding-left: 1rem;
  3972. padding-right: 1rem
  3973. }
  3974. .am-padding-horizontal-lg {
  3975. padding-left: 2.4rem;
  3976. padding-right: 2.4rem
  3977. }
  3978. .am-padding-horizontal-xl {
  3979. padding-left: 3.2rem;
  3980. padding-right: 3.2rem
  3981. }
  3982. .am-padding-vertical {
  3983. padding-top: 1.6rem;
  3984. padding-bottom: 1.6rem
  3985. }
  3986. .am-padding-vertical-0 {
  3987. padding-top: 0!important;
  3988. padding-bottom: 0!important
  3989. }
  3990. .am-padding-vertical-xs {
  3991. padding-top: .5rem;
  3992. padding-bottom: .5rem
  3993. }
  3994. .am-padding-vertical-sm {
  3995. padding-top: 1rem;
  3996. padding-bottom: 1rem
  3997. }
  3998. .am-padding-vertical-lg {
  3999. padding-top: 2.4rem;
  4000. padding-bottom: 2.4rem
  4001. }
  4002. .am-padding-vertical-xl {
  4003. padding-top: 3.2rem;
  4004. padding-bottom: 3.2rem
  4005. }
  4006. .am-padding-top {
  4007. padding-top: 1.6rem
  4008. }
  4009. .am-padding-top-0 {
  4010. padding-top: 0!important
  4011. }
  4012. .am-padding-top-xs {
  4013. padding-top: .5rem
  4014. }
  4015. .am-padding-top-sm {
  4016. padding-top: 1rem
  4017. }
  4018. .am-padding-top-lg {
  4019. padding-top: 2.4rem
  4020. }
  4021. .am-padding-top-xl {
  4022. padding-top: 3.2rem
  4023. }
  4024. .am-padding-bottom {
  4025. padding-bottom: 1.6rem
  4026. }
  4027. .am-padding-bottom-0 {
  4028. padding-bottom: 0!important
  4029. }
  4030. .am-padding-bottom-xs {
  4031. padding-bottom: .5rem
  4032. }
  4033. .am-padding-bottom-sm {
  4034. padding-bottom: 1rem
  4035. }
  4036. .am-padding-bottom-lg {
  4037. padding-bottom: 2.4rem
  4038. }
  4039. .am-padding-bottom-xl {
  4040. padding-bottom: 3.2rem
  4041. }
  4042. .am-padding-left {
  4043. padding-left: 1.6rem
  4044. }
  4045. .am-padding-left-0 {
  4046. padding-left: 0!important
  4047. }
  4048. .am-padding-left-xs {
  4049. padding-left: .5rem
  4050. }
  4051. .am-padding-left-sm {
  4052. padding-left: 1rem
  4053. }
  4054. .am-padding-left-lg {
  4055. padding-left: 2.4rem
  4056. }
  4057. .am-padding-left-xl {
  4058. padding-left: 3.2rem
  4059. }
  4060. .am-padding-right {
  4061. padding-right: 1.6rem
  4062. }
  4063. .am-padding-right-0 {
  4064. padding-right: 0!important
  4065. }
  4066. .am-padding-right-xs {
  4067. padding-right: .5rem
  4068. }
  4069. .am-padding-right-sm {
  4070. padding-right: 1rem
  4071. }
  4072. .am-padding-right-lg {
  4073. padding-right: 2.4rem
  4074. }
  4075. .am-padding-right-xl {
  4076. padding-right: 3.2rem
  4077. }
  4078. @media only screen {
  4079. .am-hide-lg,.am-hide-lg-only,.am-hide-lg-up,.am-hide-md,.am-hide-md-only,.am-hide-md-up,.am-show-lg-down,.am-show-md-down,.am-show-sm,.am-show-sm-down,.am-show-sm-only,.am-show-sm-up {
  4080. display: inherit!important
  4081. }
  4082. .am-hide-lg-down,.am-hide-md-down,.am-hide-sm,.am-hide-sm-down,.am-hide-sm-only,.am-hide-sm-up,.am-show-lg,.am-show-lg-only,.am-show-lg-up,.am-show-md,.am-show-md-only,.am-show-md-up {
  4083. display: none!important
  4084. }
  4085. table.am-hide-lg,table.am-hide-lg-only,table.am-hide-lg-up,table.am-hide-md,table.am-hide-md-only,table.am-hide-md-up,table.am-show-lg-down,table.am-show-md-down,table.am-show-sm,table.am-show-sm-down,table.am-show-sm-only,table.am-show-sm-up {
  4086. display: table!important
  4087. }
  4088. thead.am-hide-lg,thead.am-hide-lg-only,thead.am-hide-lg-up,thead.am-hide-md,thead.am-hide-md-only,thead.am-hide-md-up,thead.am-show-lg-down,thead.am-show-md-down,thead.am-show-sm,thead.am-show-sm-down,thead.am-show-sm-only,thead.am-show-sm-up {
  4089. display: table-header-group!important
  4090. }
  4091. tbody.am-hide-lg,tbody.am-hide-lg-only,tbody.am-hide-lg-up,tbody.am-hide-md,tbody.am-hide-md-only,tbody.am-hide-md-up,tbody.am-show-lg-down,tbody.am-show-md-down,tbody.am-show-sm,tbody.am-show-sm-down,tbody.am-show-sm-only,tbody.am-show-sm-up {
  4092. display: table-row-group!important
  4093. }
  4094. tr.am-hide-lg,tr.am-hide-lg-only,tr.am-hide-lg-up,tr.am-hide-md,tr.am-hide-md-only,tr.am-hide-md-up,tr.am-show-lg-down,tr.am-show-md-down,tr.am-show-sm,tr.am-show-sm-down,tr.am-show-sm-only,tr.am-show-sm-up {
  4095. display: table-row!important
  4096. }
  4097. td.am-hide-lg,td.am-hide-lg-only,td.am-hide-lg-up,td.am-hide-md,td.am-hide-md-only,td.am-hide-md-up,td.am-show-lg-down,td.am-show-md-down,td.am-show-sm,td.am-show-sm-down,td.am-show-sm-only,td.am-show-sm-up,th.am-hide-lg,th.am-hide-lg-only,th.am-hide-lg-up,th.am-hide-md,th.am-hide-md-only,th.am-hide-md-up,th.am-show-lg-down,th.am-show-md-down,th.am-show-sm,th.am-show-sm-down,th.am-show-sm-only,th.am-show-sm-up {
  4098. display: table-cell!important
  4099. }
  4100. .am-text-left {
  4101. text-align: left!important
  4102. }
  4103. .am-text-right {
  4104. text-align: right!important
  4105. }
  4106. .am-text-center {
  4107. text-align: center!important
  4108. }
  4109. .am-text-justify {
  4110. text-align: justify!important
  4111. }
  4112. }
  4113. @media only screen and (min-width:641px) {
  4114. .am-hide-lg,.am-hide-lg-only,.am-hide-lg-up,.am-hide-sm,.am-hide-sm-down,.am-hide-sm-only,.am-show-lg-down,.am-show-md,.am-show-md-down,.am-show-md-only,.am-show-md-up,.am-show-sm-up {
  4115. display: inherit!important
  4116. }
  4117. .am-hide-lg-down,.am-hide-md,.am-hide-md-down,.am-hide-md-only,.am-hide-md-up,.am-hide-sm-up,.am-show-lg,.am-show-lg-only,.am-show-lg-up,.am-show-sm,.am-show-sm-down,.am-show-sm-only {
  4118. display: none!important
  4119. }
  4120. table.am-hide-lg,table.am-hide-lg-only,table.am-hide-lg-up,table.am-hide-sm,table.am-hide-sm-down,table.am-hide-sm-only,table.am-show-lg-down,table.am-show-md,table.am-show-md-down,table.am-show-md-only,table.am-show-md-up,table.am-show-sm-up {
  4121. display: table!important
  4122. }
  4123. thead.am-hide-lg,thead.am-hide-lg-only,thead.am-hide-lg-up,thead.am-hide-sm,thead.am-hide-sm-down,thead.am-hide-sm-only,thead.am-show-lg-down,thead.am-show-md,thead.am-show-md-down,thead.am-show-md-only,thead.am-show-md-up,thead.am-show-sm-up {
  4124. display: table-header-group!important
  4125. }
  4126. tbody.am-hide-lg,tbody.am-hide-lg-only,tbody.am-hide-lg-up,tbody.am-hide-sm,tbody.am-hide-sm-down,tbody.am-hide-sm-only,tbody.am-show-lg-down,tbody.am-show-md,tbody.am-show-md-down,tbody.am-show-md-only,tbody.am-show-md-up,tbody.am-show-sm-up {
  4127. display: table-row-group!important
  4128. }
  4129. tr.am-hide-lg,tr.am-hide-lg-only,tr.am-hide-lg-up,tr.am-hide-sm,tr.am-hide-sm-down,tr.am-hide-sm-only,tr.am-show-lg-down,tr.am-show-md,tr.am-show-md-down,tr.am-show-md-only,tr.am-show-md-up,tr.am-show-sm-up {
  4130. display: table-row!important
  4131. }
  4132. td.am-hide-lg,td.am-hide-lg-only,td.am-hide-lg-up,td.am-hide-sm,td.am-hide-sm-down,td.am-hide-sm-only,td.am-show-lg-down,td.am-show-md,td.am-show-md-down,td.am-show-md-only,td.am-show-md-up,td.am-show-sm-up,th.am-hide-lg,th.am-hide-lg-only,th.am-hide-lg-up,th.am-hide-sm,th.am-hide-sm-down,th.am-hide-sm-only,th.am-show-lg-down,th.am-show-md,th.am-show-md-down,th.am-show-md-only,th.am-show-md-up,th.am-show-sm-up {
  4133. display: table-cell!important
  4134. }
  4135. }
  4136. @media only screen and (min-width:1025px) {
  4137. .am-hide-md,.am-hide-md-down,.am-hide-md-only,.am-hide-sm,.am-hide-sm-down,.am-hide-sm-only,.am-show-lg,.am-show-lg-down,.am-show-lg-only,.am-show-lg-up,.am-show-md-up,.am-show-sm-up {
  4138. display: inherit!important
  4139. }
  4140. .am-hide-lg,.am-hide-lg-down,.am-hide-lg-only,.am-hide-lg-up,.am-hide-md-up,.am-hide-sm-up,.am-show-md,.am-show-md-down,.am-show-md-only,.am-show-sm,.am-show-sm-down,.am-show-sm-only {
  4141. display: none!important
  4142. }
  4143. table.am-hide-md,table.am-hide-md-down,table.am-hide-md-only,table.am-hide-sm,table.am-hide-sm-down,table.am-hide-sm-only,table.am-show-lg,table.am-show-lg-down,table.am-show-lg-only,table.am-show-lg-up,table.am-show-md-up,table.am-show-sm-up {
  4144. display: table!important
  4145. }
  4146. thead.am-hide-md,thead.am-hide-md-down,thead.am-hide-md-only,thead.am-hide-sm,thead.am-hide-sm-down,thead.am-hide-sm-only,thead.am-show-lg,thead.am-show-lg-down,thead.am-show-lg-only,thead.am-show-lg-up,thead.am-show-md-up,thead.am-show-sm-up {
  4147. display: table-header-group!important
  4148. }
  4149. tbody.am-hide-md,tbody.am-hide-md-down,tbody.am-hide-md-only,tbody.am-hide-sm,tbody.am-hide-sm-down,tbody.am-hide-sm-only,tbody.am-show-lg,tbody.am-show-lg-down,tbody.am-show-lg-only,tbody.am-show-lg-up,tbody.am-show-md-up,tbody.am-show-sm-up {
  4150. display: table-row-group!important
  4151. }
  4152. tr.am-hide-md,tr.am-hide-md-down,tr.am-hide-md-only,tr.am-hide-sm,tr.am-hide-sm-down,tr.am-hide-sm-only,tr.am-show-lg,tr.am-show-lg-down,tr.am-show-lg-only,tr.am-show-lg-up,tr.am-show-md-up,tr.am-show-sm-up {
  4153. display: table-row!important
  4154. }
  4155. td.am-hide-md,td.am-hide-md-down,td.am-hide-md-only,td.am-hide-sm,td.am-hide-sm-down,td.am-hide-sm-only,td.am-show-lg,td.am-show-lg-down,td.am-show-lg-only,td.am-show-lg-up,td.am-show-md-up,td.am-show-sm-up,th.am-hide-md,th.am-hide-md-down,th.am-hide-md-only,th.am-hide-sm,th.am-hide-sm-down,th.am-hide-sm-only,th.am-show-lg,th.am-show-lg-down,th.am-show-lg-only,th.am-show-lg-up,th.am-show-md-up,th.am-show-sm-up {
  4156. display: table-cell!important
  4157. }
  4158. }
  4159. @media only screen and (orientation:landscape) {
  4160. .am-hide-portrait,.am-show-landscape {
  4161. display: inherit!important
  4162. }
  4163. .am-hide-landscape,.am-show-portrait {
  4164. display: none!important
  4165. }
  4166. }
  4167. @media only screen and (orientation:portrait) {
  4168. .am-hide-landscape,.am-show-portrait {
  4169. display: inherit!important
  4170. }
  4171. .am-hide-portrait,.am-show-landscape {
  4172. display: none!important
  4173. }
  4174. }
  4175. .am-sans-serif {
  4176. font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",FontAwesome,sans-serif
  4177. }
  4178. .am-serif {
  4179. font-family: Georgia,"Times New Roman",Times,SimSun,FontAwesome,serif
  4180. }
  4181. .am-kai {
  4182. font-family: Georgia,"Times New Roman",Times,Kai,"Kaiti SC",KaiTi,BiauKai,FontAwesome,serif
  4183. }
  4184. .am-monospace {
  4185. font-family: Monaco,Menlo,Consolas,"Courier New",FontAwesome,monospace
  4186. }
  4187. .am-text-primary {
  4188. color: #0e90d2
  4189. }
  4190. .am-text-secondary {
  4191. color: #3bb4f2
  4192. }
  4193. .am-text-success {
  4194. color: #5eb95e
  4195. }
  4196. .am-text-warning {
  4197. color: #F37B1D
  4198. }
  4199. .am-text-danger {
  4200. color: #dd514c
  4201. }
  4202. .am-link-muted,.am-link-muted a {
  4203. color: #666
  4204. }
  4205. .am-link-muted a:hover,.am-link-muted:hover {
  4206. color: #555
  4207. }
  4208. .am-text-default {
  4209. font-size: 1.6rem
  4210. }
  4211. .am-text-xs {
  4212. font-size: 1.2rem
  4213. }
  4214. .am-text-sm {
  4215. font-size: 1.4rem
  4216. }
  4217. .am-text-lg {
  4218. font-size: 1.8rem
  4219. }
  4220. .am-text-xl {
  4221. font-size: 2.4rem
  4222. }
  4223. .am-text-xxl {
  4224. font-size: 3.2rem
  4225. }
  4226. .am-text-xxxl {
  4227. font-size: 4.2rem
  4228. }
  4229. .am-ellipsis,.am-text-truncate {
  4230. word-wrap: normal;
  4231. text-overflow: ellipsis;
  4232. white-space: nowrap;
  4233. overflow: hidden
  4234. }
  4235. .am-text-break {
  4236. word-wrap: break-word;
  4237. -webkit-hyphens: auto;
  4238. -ms-hyphens: auto;
  4239. -moz-hyphens: auto;
  4240. hyphens: auto
  4241. }
  4242. .am-text-nowrap {
  4243. white-space: nowrap
  4244. }[class*=am-align-] {
  4245. margin-bottom: 1rem
  4246. }
  4247. .am-align-left {
  4248. margin-right: 1rem;
  4249. float: left
  4250. }
  4251. .am-align-right {
  4252. margin-left: 1rem;
  4253. float: right
  4254. }
  4255. .am-sr-only {
  4256. width: 1px;
  4257. height: 1px;
  4258. margin: -1px;
  4259. padding: 0;
  4260. overflow: hidden;
  4261. clip: rect(0,0,0,0);
  4262. border: 0
  4263. }
  4264. .am-text-ir {
  4265. font: 0/0 a;
  4266. color: transparent;
  4267. text-shadow: none;
  4268. background-color: transparent;
  4269. border: 0
  4270. }
  4271. .am-alert,.am-alert a {
  4272. color: #fff
  4273. }
  4274. @media only screen and (max-width:640px) {
  4275. .am-sm-only-text-left {
  4276. text-align: left!important
  4277. }
  4278. .am-sm-only-text-right {
  4279. text-align: right!important
  4280. }
  4281. .am-sm-only-text-center {
  4282. text-align: center!important
  4283. }
  4284. .am-sm-only-text-justify {
  4285. text-align: justify!important
  4286. }
  4287. }
  4288. @media only screen and (min-width:641px) and (max-width:1024px) {
  4289. .am-md-only-text-left {
  4290. text-align: left!important
  4291. }
  4292. .am-md-only-text-right {
  4293. text-align: right!important
  4294. }
  4295. .am-md-only-text-center {
  4296. text-align: center!important
  4297. }
  4298. .am-md-only-text-justify {
  4299. text-align: justify!important
  4300. }
  4301. }
  4302. @media only screen and (min-width:641px) {
  4303. .am-md-text-left {
  4304. text-align: left!important
  4305. }
  4306. .am-md-text-right {
  4307. text-align: right!important
  4308. }
  4309. .am-md-text-center {
  4310. text-align: center!important
  4311. }
  4312. .am-md-text-justify {
  4313. text-align: justify!important
  4314. }
  4315. }
  4316. @media only screen and (min-width:1025px) {
  4317. .am-lg-text-left {
  4318. text-align: left!important
  4319. }
  4320. .am-lg-text-right {
  4321. text-align: right!important
  4322. }
  4323. .am-lg-text-center {
  4324. text-align: center!important
  4325. }
  4326. .am-lg-text-justify {
  4327. text-align: justify!important
  4328. }
  4329. }
  4330. .am-text-top {
  4331. vertical-align: top!important
  4332. }
  4333. .am-text-middle {
  4334. vertical-align: middle!important
  4335. }
  4336. .am-text-bottom {
  4337. vertical-align: bottom!important
  4338. }
  4339. .am-angle:after,.am-angle:before {
  4340. position: absolute;
  4341. display: block;
  4342. content: "";
  4343. width: 0;
  4344. height: 0;
  4345. border: 8px dashed transparent;
  4346. z-index: 1
  4347. }
  4348. .am-angle-up {
  4349. top: 0
  4350. }
  4351. .am-angle-up:after,.am-angle-up:before {
  4352. border-bottom-style: solid;
  4353. border-width: 0 8px 8px
  4354. }
  4355. .am-angle-up:before {
  4356. border-bottom-color: #ddd;
  4357. bottom: 0
  4358. }
  4359. .am-angle-up:after {
  4360. border-bottom-color: #fff;
  4361. bottom: -1px
  4362. }
  4363. .am-angle-down {
  4364. bottom: -9px
  4365. }
  4366. .am-angle-down:after,.am-angle-down:before {
  4367. border-top-style: solid;
  4368. border-width: 8px 8px 0
  4369. }
  4370. .am-angle-down:before {
  4371. border-top-color: #ddd;
  4372. bottom: 0
  4373. }
  4374. .am-angle-down:after {
  4375. border-top-color: #fff;
  4376. bottom: 1px
  4377. }
  4378. .am-angle-left {
  4379. left: -9px
  4380. }
  4381. .am-angle-left:after,.am-angle-left:before {
  4382. border-right-style: solid;
  4383. border-width: 8px 8px 8px 0
  4384. }
  4385. .am-angle-left:before {
  4386. border-right-color: #ddd;
  4387. left: 0
  4388. }
  4389. .am-angle-left:after {
  4390. border-right-color: #fff;
  4391. left: 1px
  4392. }
  4393. .am-angle-right {
  4394. right: 0
  4395. }
  4396. .am-angle-right:after,.am-angle-right:before {
  4397. border-left-style: solid;
  4398. border-width: 8px 0 8px 8px
  4399. }
  4400. .am-angle-right:before {
  4401. border-left-color: #ddd;
  4402. left: 0
  4403. }
  4404. .am-angle-right:after {
  4405. border-left-color: #fff;
  4406. left: -1px
  4407. }
  4408. .am-alert {
  4409. margin-bottom: 1em;
  4410. padding: .625em;
  4411. background: #0e90d2;
  4412. border: 1px solid #0c7cb5;
  4413. border-radius: 0
  4414. }
  4415. .am-alert h1,.am-alert h2,.am-alert h3,.am-alert h4,.am-alert h5,.am-alert h6 {
  4416. color: inherit
  4417. }
  4418. .am-alert .am-close {
  4419. opacity: .4
  4420. }
  4421. .am-alert .am-close:hover {
  4422. opacity: .6
  4423. }
  4424. *+.am-alert {
  4425. margin-top: 1em
  4426. }
  4427. .am-alert>:last-child {
  4428. margin-bottom: 0
  4429. }
  4430. .am-form-group .am-alert {
  4431. margin: 5px 0 0;
  4432. padding: .25em .625em;
  4433. font-size: 1.3rem
  4434. }
  4435. .am-alert>.am-close:first-child {
  4436. float: right;
  4437. height: auto;
  4438. margin: -3px -5px auto auto
  4439. }
  4440. .am-alert>.am-close:first-child+* {
  4441. margin-top: 0
  4442. }
  4443. .am-alert-secondary {
  4444. background-color: #eee;
  4445. border-color: #dfdfdf;
  4446. color: #555
  4447. }
  4448. .am-alert-success {
  4449. background-color: #5eb95e;
  4450. border-color: #4bad4b;
  4451. color: #fff
  4452. }
  4453. .am-alert-warning {
  4454. background-color: #F37B1D;
  4455. border-color: #e56c0c;
  4456. color: #fff
  4457. }
  4458. .am-alert-danger {
  4459. background-color: #dd514c;
  4460. border-color: #d83832;
  4461. color: #fff
  4462. }
  4463. .am-dropdown {
  4464. position: relative;
  4465. display: inline-block
  4466. }
  4467. .am-dropdown-toggle:focus {
  4468. outline: 0
  4469. }
  4470. .am-dropdown-content {
  4471. position: absolute;
  4472. top: 100%;
  4473. left: 0;
  4474. z-index: 1020;
  4475. display: none;
  4476. float: left;
  4477. min-width: 160px;
  4478. padding: 15px;
  4479. margin: 9px 0 0;
  4480. text-align: left;
  4481. line-height: 1.6;
  4482. background-color: #fff;
  4483. border: 1px solid #ddd;
  4484. border-radius: 0;
  4485. -webkit-background-clip: padding-box;
  4486. background-clip: padding-box;
  4487. -webkit-animation-duration: .15s;
  4488. animation-duration: .15s
  4489. }
  4490. .am-dropdown-content:after,.am-dropdown-content:before {
  4491. position: absolute;
  4492. display: block;
  4493. content: "";
  4494. width: 0;
  4495. height: 0;
  4496. border: 8px dashed transparent;
  4497. z-index: 1;
  4498. border-bottom-style: solid;
  4499. border-width: 0 8px 8px;
  4500. left: 10px;
  4501. top: -8px;
  4502. pointer-events: none
  4503. }
  4504. .am-dropdown-content:before {
  4505. border-bottom-color: #ddd;
  4506. bottom: 0
  4507. }
  4508. .am-dropdown-content:after {
  4509. border-bottom-color: #fff;
  4510. bottom: -1px;
  4511. top: -7px
  4512. }
  4513. .am-active>.am-dropdown-content {
  4514. display: block
  4515. }
  4516. .am-dropdown-content :first-child {
  4517. margin-top: 0
  4518. }
  4519. .am-dropdown-up .am-dropdown-content {
  4520. top: auto;
  4521. bottom: 100%;
  4522. margin: 0 0 9px
  4523. }
  4524. .am-dropdown-up .am-dropdown-content:after,.am-dropdown-up .am-dropdown-content:before {
  4525. border-bottom: none;
  4526. border-top: 8px solid #ddd;
  4527. top: auto;
  4528. bottom: -8px
  4529. }
  4530. .am-dropdown-up .am-dropdown-content:after {
  4531. bottom: -7px;
  4532. border-top-color: #fff
  4533. }
  4534. .am-dropdown-flip .am-dropdown-content {
  4535. left: auto;
  4536. right: 0
  4537. }
  4538. .am-dropdown-flip .am-dropdown-content:after,.am-dropdown-flip .am-dropdown-content:before {
  4539. left: auto;
  4540. right: 10px
  4541. }
  4542. .am-fr>.am-dropdown-content,ul.am-dropdown-content.am-fr {
  4543. right: 0;
  4544. left: auto
  4545. }
  4546. ul.am-dropdown-content {
  4547. list-style: none;
  4548. padding: 5px 0
  4549. }
  4550. ul.am-dropdown-content .am-divider {
  4551. height: 1px;
  4552. margin: 0;
  4553. overflow: hidden;
  4554. background-color: #e5e5e5
  4555. }
  4556. ul.am-dropdown-content>li>a {
  4557. display: block;
  4558. padding: 6px 20px;
  4559. font-weight: 400;
  4560. color: #333;
  4561. white-space: nowrap
  4562. }
  4563. ul.am-dropdown-content>li>a:focus,ul.am-dropdown-content>li>a:hover {
  4564. text-decoration: none;
  4565. color: #262626;
  4566. background-color: #f5f5f5
  4567. }
  4568. ul.am-dropdown-content>.am-active>a,ul.am-dropdown-content>.am-active>a:focus,ul.am-dropdown-content>.am-active>a:hover {
  4569. color: #fff;
  4570. text-decoration: none;
  4571. outline: 0;
  4572. background-color: #0e90d2
  4573. }
  4574. ul.am-dropdown-content>.am-disabled>a,ul.am-dropdown-content>.am-disabled>a:focus,ul.am-dropdown-content>.am-disabled>a:hover {
  4575. color: #999
  4576. }
  4577. ul.am-dropdown-content>.am-disabled>a:focus,ul.am-dropdown-content>.am-disabled>a:hover {
  4578. text-decoration: none;
  4579. background-color: transparent;
  4580. background-image: none;
  4581. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  4582. cursor: not-allowed
  4583. }
  4584. .am-dropdown-header {
  4585. display: block;
  4586. padding: 6px 20px;
  4587. font-size: 1.2rem;
  4588. color: #999
  4589. }
  4590. .am-fr>.am-dropdown-content:before {
  4591. right: 10px;
  4592. left: auto
  4593. }
  4594. .am-dropdown-animation {
  4595. -webkit-animation: am-dropdown-animation .15s ease-out;
  4596. animation: am-dropdown-animation .15s ease-out
  4597. }
  4598. @-webkit-keyframes am-dropdown-animation {
  4599. 0% {
  4600. opacity: 1;
  4601. -webkit-transform: translateY(0);
  4602. transform: translateY(0)
  4603. }
  4604. 100% {
  4605. opacity: 0;
  4606. -webkit-transform: translateY(-10px);
  4607. transform: translateY(-10px)
  4608. }
  4609. }
  4610. @keyframes am-dropdown-animation {
  4611. 0% {
  4612. opacity: 1;
  4613. -webkit-transform: translateY(0);
  4614. transform: translateY(0)
  4615. }
  4616. 100% {
  4617. opacity: 0;
  4618. -webkit-transform: translateY(-10px);
  4619. transform: translateY(-10px)
  4620. }
  4621. }
  4622. .am-slider a:focus,.am-slider a:hover {
  4623. outline: 0
  4624. }
  4625. .am-control-nav,.am-direction-nav,.am-slides {
  4626. margin: 0;
  4627. padding: 0;
  4628. list-style: none
  4629. }
  4630. .am-slider {
  4631. margin: 0;
  4632. padding: 0;
  4633. position: relative
  4634. }
  4635. .am-slider .am-slides:after,.am-slider .am-slides:before {
  4636. content: " ";
  4637. display: table
  4638. }
  4639. .am-slider .am-slides>li {
  4640. display: none;
  4641. -webkit-backface-visibility: hidden;
  4642. position: relative
  4643. }
  4644. .no-js .am-slider .am-slides>li:first-child {
  4645. display: block
  4646. }
  4647. .am-slider .am-slides img {
  4648. width: 100%;
  4649. display: block
  4650. }
  4651. .am-pauseplay span {
  4652. text-transform: capitalize
  4653. }
  4654. .am-viewport {
  4655. -webkit-transition: all 1s ease;
  4656. transition: all 1s ease
  4657. }
  4658. .am-slider-carousel li {
  4659. margin-right: 5px
  4660. }
  4661. .am-control-nav {
  4662. position: absolute
  4663. }
  4664. .am-control-nav li {
  4665. display: inline-block
  4666. }
  4667. .am-control-thumbs {
  4668. position: static;
  4669. overflow: hidden
  4670. }
  4671. .am-control-thumbs img {
  4672. -webkit-transition: all 1s ease;
  4673. transition: all 1s ease
  4674. }
  4675. .am-slider-slide .am-slides>li {
  4676. display: none;
  4677. position: relative
  4678. }
  4679. @media all and (transform-3d),(-webkit-transform-3d) {
  4680. .am-slider-slide .am-slides>li {
  4681. -webkit-transition: -webkit-transform .6s ease-in-out;
  4682. transition: -webkit-transform .6s ease-in-out;
  4683. transition: transform .6s ease-in-out;
  4684. transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out;
  4685. -webkit-backface-visibility: hidden;
  4686. backface-visibility: hidden;
  4687. -webkit-perspective: 1000px;
  4688. perspective: 1000px
  4689. }
  4690. .am-slider-slide .am-slides>li.active.right,.am-slider-slide .am-slides>li.next {
  4691. -webkit-transform: translate3d(100%,0,0);
  4692. transform: translate3d(100%,0,0);
  4693. left: 0
  4694. }
  4695. .am-slider-slide .am-slides>li.active.left,.am-slider-slide .am-slides>li.prev {
  4696. -webkit-transform: translate3d(-100%,0,0);
  4697. transform: translate3d(-100%,0,0);
  4698. left: 0
  4699. }
  4700. .am-slider-slide .am-slides>li.active,.am-slider-slide .am-slides>li.next.left,.am-slider-slide .am-slides>li.prev.right {
  4701. -webkit-transform: translate3d(0,0,0);
  4702. transform: translate3d(0,0,0);
  4703. left: 0
  4704. }
  4705. }
  4706. .am-slider-slide .am-slides>.active,.am-slider-slide .am-slides>.next,.am-slider-slide .am-slides>.prev {
  4707. display: block
  4708. }
  4709. .am-slider-slide .am-slides>.active {
  4710. left: 0
  4711. }
  4712. .am-slider-slide .am-slides>.next,.am-slider-slide .am-slides>.prev {
  4713. position: absolute;
  4714. top: 0;
  4715. width: 100%
  4716. }
  4717. .am-slider-slide .am-slides>.next {
  4718. left: 100%
  4719. }
  4720. .am-slider-slide .am-slides>.prev {
  4721. left: -100%
  4722. }
  4723. .am-modal-actions,.am-popup {
  4724. left: 0;
  4725. position: fixed;
  4726. width: 100%
  4727. }
  4728. .am-slider-slide .am-slides>.next.left,.am-slider-slide .am-slides>.prev.right {
  4729. left: 0
  4730. }
  4731. .am-slider-slide .am-slides>.active.left {
  4732. left: -100%
  4733. }
  4734. .am-slider-slide .am-slides>.active.right {
  4735. left: 100%
  4736. }
  4737. .am-slider-default {
  4738. margin: 0 0 20px;
  4739. background-color: #fff;
  4740. border-radius: 2px;
  4741. -webkit-box-shadow: 0 0 2px rgba(0,0,0,.15);
  4742. box-shadow: 0 0 2px rgba(0,0,0,.15)
  4743. }
  4744. .am-slider-default .am-viewport {
  4745. max-height: 2000px;
  4746. -webkit-transition: all 1s ease;
  4747. transition: all 1s ease
  4748. }
  4749. .loading .am-slider-default .am-viewport {
  4750. max-height: 300px
  4751. }
  4752. .am-slider-default .carousel li {
  4753. margin-right: 5px
  4754. }
  4755. .am-slider-default .am-direction-nav a {
  4756. position: absolute;
  4757. top: 50%;
  4758. z-index: 10;
  4759. display: block;
  4760. width: 36px;
  4761. height: 36px;
  4762. margin: -18px 0 0;
  4763. overflow: hidden;
  4764. opacity: .45;
  4765. cursor: pointer;
  4766. color: rgba(0,0,0,.65);
  4767. -webkit-transition: all .3s ease;
  4768. transition: all .3s ease
  4769. }
  4770. .am-slider-default .am-direction-nav a:before {
  4771. display: inline-block;
  4772. -webkit-font-smoothing: antialiased;
  4773. transform: translate(0,0);
  4774. width: 100%;
  4775. color: #333;
  4776. content: "\f137";
  4777. font-size: 24px!important;
  4778. text-align: center;
  4779. line-height: 36px!important;
  4780. height: 36px
  4781. }
  4782. .am-slider-default .am-direction-nav a.am-next:before {
  4783. content: "\f138"
  4784. }
  4785. .am-slider-default .am-direction-nav .am-prev {
  4786. left: 10px
  4787. }
  4788. .am-slider-default .am-direction-nav .am-next {
  4789. right: 10px;
  4790. text-align: right
  4791. }
  4792. .am-slider-default .am-direction-nav .am-disabled {
  4793. opacity: 0!important;
  4794. cursor: default
  4795. }
  4796. .am-slider-default:hover .am-prev {
  4797. opacity: .7;
  4798. left: 10px
  4799. }
  4800. .am-slider-default:hover .am-prev:hover {
  4801. opacity: 1
  4802. }
  4803. .am-slider-default:hover .am-next {
  4804. opacity: .7;
  4805. right: 10px
  4806. }
  4807. .am-slider-default:hover .am-next:hover {
  4808. opacity: 1
  4809. }
  4810. .am-slider-default .am-pauseplay a {
  4811. display: block;
  4812. width: 20px;
  4813. height: 20px;
  4814. position: absolute;
  4815. bottom: 5px;
  4816. left: 10px;
  4817. opacity: .8;
  4818. z-index: 10;
  4819. overflow: hidden;
  4820. cursor: pointer;
  4821. color: #000
  4822. }
  4823. .am-slider-default .am-pauseplay a::before {
  4824. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  4825. text-rendering: auto;
  4826. -webkit-font-smoothing: antialiased;
  4827. -moz-osx-font-smoothing: grayscale;
  4828. -webkit-transform: translate(0,0);
  4829. -ms-transform: translate(0,0);
  4830. transform: translate(0,0);
  4831. font-size: 20px;
  4832. display: inline-block;
  4833. content: "\f04c"
  4834. }
  4835. .am-modal-btn.am-modal-btn-bold,.am-modal-hd {
  4836. font-weight: 500
  4837. }
  4838. .am-slider-default .am-pauseplay a:hover {
  4839. opacity: 1
  4840. }
  4841. .am-slider-default .am-pauseplay a.am-play::before {
  4842. content: "\f04b"
  4843. }
  4844. .am-slider-default .am-slider-desc {
  4845. background-color: rgba(0,0,0,.7);
  4846. position: absolute;
  4847. bottom: 0;
  4848. padding: 10px;
  4849. width: 100%;
  4850. color: #fff
  4851. }
  4852. .am-slider-default .am-control-nav {
  4853. width: 100%;
  4854. position: absolute;
  4855. bottom: -15px;
  4856. text-align: center
  4857. }
  4858. .am-slider-default .am-control-nav li {
  4859. margin: 0 6px;
  4860. display: inline-block
  4861. }
  4862. .am-slider-default .am-control-nav li a {
  4863. width: 8px;
  4864. height: 8px;
  4865. display: block;
  4866. background-color: #666;
  4867. background-color: rgba(0,0,0,.5);
  4868. line-height: 0;
  4869. font-size: 0;
  4870. cursor: pointer;
  4871. text-indent: -9999px;
  4872. border-radius: 20px;
  4873. -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
  4874. box-shadow: inset 0 0 3px rgba(0,0,0,.3)
  4875. }
  4876. .am-slider-default .am-control-nav li a:hover {
  4877. background-color: #333;
  4878. background-color: rgba(0,0,0,.7)
  4879. }
  4880. .am-slider-default .am-control-nav li a.am-active {
  4881. background-color: #0e90d2;
  4882. cursor: default
  4883. }
  4884. .am-slider-default .am-control-thumbs {
  4885. margin: 5px 0 0;
  4886. position: static;
  4887. overflow: hidden
  4888. }
  4889. .am-slider-default .am-control-thumbs li {
  4890. width: 25%;
  4891. float: left;
  4892. margin: 0
  4893. }
  4894. .am-slider-default .am-control-thumbs img {
  4895. width: 100%;
  4896. height: auto;
  4897. display: block;
  4898. opacity: .7;
  4899. cursor: pointer
  4900. }
  4901. .am-slider-default .am-control-thumbs img:hover {
  4902. opacity: 1
  4903. }
  4904. .am-slider-default .am-control-thumbs .am-active {
  4905. opacity: 1;
  4906. cursor: default
  4907. }
  4908. .am-slider-default .am-control-thumbs i {
  4909. position: absolute
  4910. }
  4911. .am-modal {
  4912. width: 270px;
  4913. position: fixed;
  4914. display: none;
  4915. z-index: 1110;
  4916. left: 50%;
  4917. margin-left: -135px;
  4918. margin-top: 0;
  4919. top: 50%;
  4920. text-align: center;
  4921. border-radius: 0;
  4922. opacity: 0;
  4923. -webkit-transform: scale(1.185);
  4924. -ms-transform: scale(1.185);
  4925. transform: scale(1.185);
  4926. -webkit-transition-property: opacity,-webkit-transform;
  4927. transition-property: opacity,-webkit-transform;
  4928. transition-property: transform,opacity;
  4929. transition-property: transform,opacity,-webkit-transform;
  4930. -webkit-backface-visibility: hidden;
  4931. backface-visibility: hidden;
  4932. -webkit-perspective: 1000px;
  4933. perspective: 1000px
  4934. }
  4935. .am-modal:focus {
  4936. outline: 0
  4937. }
  4938. .am-modal.am-modal-active {
  4939. opacity: 1;
  4940. -webkit-transition-duration: .3s;
  4941. transition-duration: .3s;
  4942. -webkit-transform: scale(1);
  4943. -ms-transform: scale(1);
  4944. transform: scale(1)
  4945. }
  4946. .am-modal.am-modal-out {
  4947. opacity: 0;
  4948. z-index: 1109;
  4949. -webkit-transition-duration: .3s;
  4950. transition-duration: .3s;
  4951. -webkit-transform: scale(.815);
  4952. -ms-transform: scale(.815);
  4953. transform: scale(.815)
  4954. }
  4955. .am-modal-actions,.am-modal-actions.am-modal-out {
  4956. -webkit-transform: translateY(100%);
  4957. -ms-transform: translateY(100%)
  4958. }
  4959. @media only screen and (min-width:641px) {
  4960. .am-modal {
  4961. width: 540px;
  4962. margin-left: -270px
  4963. }
  4964. }
  4965. .am-modal-dialog {
  4966. border-radius: 0;
  4967. background: #f8f8f8
  4968. }
  4969. .am-modal-hd {
  4970. padding: 15px 10px 5px;
  4971. font-size: 1.8rem
  4972. }
  4973. .am-modal-hd+.am-modal-bd {
  4974. padding-top: 0
  4975. }
  4976. .am-modal-hd .am-close {
  4977. position: absolute;
  4978. top: 4px;
  4979. right: 4px
  4980. }
  4981. .am-modal-bd {
  4982. padding: 15px 10px;
  4983. text-align: center;
  4984. border-bottom: 1px solid #dedede;
  4985. border-radius: 2px 2px 0 0
  4986. }
  4987. .am-modal-bd+.am-modal-bd {
  4988. margin-top: 5px
  4989. }
  4990. .am-modal-prompt-input {
  4991. display: block;
  4992. margin: 5px auto 0;
  4993. border-radius: 0;
  4994. padding: 5px;
  4995. line-height: 1.8rem;
  4996. width: 80%;
  4997. border: 1px solid #dedede;
  4998. -webkit-appearance: none;
  4999. -moz-appearance: none;
  5000. -ms-appearance: none;
  5001. appearance: none
  5002. }
  5003. .am-modal-prompt-input:focus {
  5004. outline: 0;
  5005. border-color: #d6d6d6
  5006. }
  5007. .am-modal-footer {
  5008. height: 44px;
  5009. overflow: hidden;
  5010. display: table;
  5011. width: 100%;
  5012. border-collapse: collapse
  5013. }
  5014. .am-modal-btn {
  5015. display: table-cell!important;
  5016. padding: 0 5px;
  5017. height: 44px;
  5018. -webkit-box-sizing: border-box!important;
  5019. box-sizing: border-box!important;
  5020. font-size: 1.6rem;
  5021. line-height: 44px;
  5022. text-align: center;
  5023. color: #0e90d2;
  5024. word-wrap: normal;
  5025. text-overflow: ellipsis;
  5026. white-space: nowrap;
  5027. overflow: hidden;
  5028. cursor: pointer;
  5029. border-right: 1px solid #dedede
  5030. }
  5031. .am-modal-btn:first-child {
  5032. border-radius: 0
  5033. }
  5034. .am-modal-btn:last-child {
  5035. border-right: none;
  5036. border-radius: 0
  5037. }
  5038. .am-modal-btn:first-child:last-child {
  5039. border-radius: 0
  5040. }
  5041. .am-modal-btn:active {
  5042. background: #d4d4d4
  5043. }
  5044. .am-modal-btn+.am-modal-btn {
  5045. border-left: 1px solid #dedede
  5046. }
  5047. .am-modal-no-btn .am-modal-dialog {
  5048. border-radius: 0;
  5049. border-bottom: none
  5050. }
  5051. .am-modal-no-btn .am-modal-bd {
  5052. border-bottom: none
  5053. }
  5054. .am-modal-no-btn .am-modal-footer {
  5055. display: none
  5056. }
  5057. .am-modal-loading .am-modal-bd {
  5058. border-bottom: none
  5059. }
  5060. .am-modal-loading .am-icon-spin {
  5061. display: inline-block;
  5062. font-size: 2.4rem
  5063. }
  5064. .am-modal-loading .am-modal-footer {
  5065. display: none
  5066. }
  5067. .am-modal-actions-group .am-list>li,.am-modal-actions-group .am-list>li>a {
  5068. display: block;
  5069. overflow: hidden;
  5070. word-wrap: normal;
  5071. text-overflow: ellipsis;
  5072. white-space: nowrap
  5073. }
  5074. .am-modal-actions {
  5075. bottom: 0;
  5076. z-index: 1110;
  5077. text-align: center;
  5078. border-radius: 0;
  5079. transform: translateY(100%);
  5080. -webkit-transition: -webkit-transform .3s;
  5081. transition: -webkit-transform .3s;
  5082. transition: transform .3s;
  5083. transition: transform .3s,-webkit-transform .3s
  5084. }
  5085. .am-modal-actions.am-modal-active {
  5086. -webkit-transform: translateY(0);
  5087. -ms-transform: translateY(0);
  5088. transform: translateY(0)
  5089. }
  5090. .am-modal-actions.am-modal-out {
  5091. z-index: 1109;
  5092. transform: translateY(100%)
  5093. }
  5094. .am-modal-actions-group {
  5095. margin: 10px
  5096. }
  5097. .am-modal-actions-group .am-list {
  5098. margin: 0;
  5099. border-radius: 0
  5100. }
  5101. .am-modal-actions-group .am-list>li {
  5102. margin-bottom: 0;
  5103. border-bottom: none;
  5104. -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,.015);
  5105. box-shadow: inset 0 1px 0 rgba(0,0,0,.015)
  5106. }
  5107. .am-modal-actions-group .am-list>li>a {
  5108. padding: 1rem
  5109. }
  5110. .am-modal-actions-group .am-list>li:first-child {
  5111. border-top: none;
  5112. border-top-right-radius: 0;
  5113. border-top-left-radius: 0
  5114. }
  5115. .am-modal-actions-group .am-list>li:last-child {
  5116. border-bottom: none;
  5117. border-bottom-right-radius: 0;
  5118. border-bottom-left-radius: 0
  5119. }
  5120. .am-modal-actions-header {
  5121. padding: 1rem;
  5122. color: #999;
  5123. font-size: 1.4rem
  5124. }
  5125. .am-modal-actions-danger {
  5126. color: #dd514c
  5127. }
  5128. .am-modal-actions-danger a {
  5129. color: inherit
  5130. }
  5131. .am-popup {
  5132. top: 0;
  5133. height: 100%;
  5134. z-index: 1110;
  5135. background: #fff;
  5136. display: none;
  5137. overflow: hidden;
  5138. -webkit-transition-property: -webkit-transform;
  5139. transition-property: -webkit-transform;
  5140. transition-property: transform;
  5141. transition-property: transform,-webkit-transform;
  5142. -webkit-transform: translateY(100%);
  5143. -ms-transform: translateY(100%);
  5144. transform: translateY(100%)
  5145. }
  5146. .am-popup.am-modal-active,.am-popup.am-modal-out {
  5147. -webkit-transition-duration: .3s;
  5148. transition-duration: .3s
  5149. }
  5150. .am-popup.am-modal-active {
  5151. -webkit-transform: translateY(0);
  5152. -ms-transform: translateY(0);
  5153. transform: translateY(0)
  5154. }
  5155. .am-popup.am-modal-out {
  5156. -webkit-transform: translateY(100%);
  5157. -ms-transform: translateY(100%);
  5158. transform: translateY(100%)
  5159. }
  5160. @media all and (min-width:630px) and (min-height:630px) {
  5161. .am-popup {
  5162. width: 630px;
  5163. height: 630px;
  5164. left: 50%;
  5165. top: 50%;
  5166. margin-left: -315px;
  5167. margin-top: -315px;
  5168. -webkit-transform: translateY(1024px);
  5169. -ms-transform: translateY(1024px);
  5170. transform: translateY(1024px)
  5171. }
  5172. .am-popup.am-modal-active {
  5173. -webkit-transform: translateY(0);
  5174. -ms-transform: translateY(0);
  5175. transform: translateY(0)
  5176. }
  5177. .am-popup.am-modal-out {
  5178. -webkit-transform: translateY(1024px);
  5179. -ms-transform: translateY(1024px);
  5180. transform: translateY(1024px)
  5181. }
  5182. }
  5183. .am-datepicker-caret,.am-popover-caret,.am-popup-hd .am-close:hover {
  5184. -webkit-transform: rotate(360deg);
  5185. -ms-transform: rotate(360deg)
  5186. }
  5187. .am-popup-inner {
  5188. padding-top: 44px;
  5189. height: 100%;
  5190. overflow: auto;
  5191. -webkit-overflow-scrolling: touch
  5192. }
  5193. .am-popup-hd {
  5194. position: absolute;
  5195. top: 0;
  5196. width: 100%;
  5197. height: 43px;
  5198. border-bottom: 1px solid #dedede;
  5199. background-color: #fff
  5200. }
  5201. .am-popup-hd .am-popup-title {
  5202. font-size: 1.8rem;
  5203. font-weight: 700;
  5204. line-height: 43px;
  5205. text-align: center;
  5206. margin: 0 30px;
  5207. color: #333;
  5208. display: block;
  5209. word-wrap: normal;
  5210. text-overflow: ellipsis;
  5211. white-space: nowrap;
  5212. overflow: hidden
  5213. }
  5214. .am-popup-hd .am-close {
  5215. position: absolute;
  5216. right: 10px;
  5217. top: 8px;
  5218. cursor: pointer;
  5219. -webkit-transition: all .3s;
  5220. transition: all .3s;
  5221. color: #999
  5222. }
  5223. .am-popup-hd .am-close:hover {
  5224. transform: rotate(360deg);
  5225. color: #555
  5226. }
  5227. .am-popup-bd {
  5228. padding: 15px;
  5229. background: #f8f8f8;
  5230. color: #555
  5231. }
  5232. .am-offcanvas {
  5233. display: none;
  5234. position: fixed;
  5235. top: 0;
  5236. right: 0;
  5237. bottom: 0;
  5238. left: 0;
  5239. z-index: 1090;
  5240. background: rgba(0,0,0,.15)
  5241. }
  5242. .am-offcanvas.am-active {
  5243. display: block
  5244. }
  5245. .am-offcanvas-page {
  5246. position: fixed;
  5247. -webkit-transition: margin-left .3s ease-in-out;
  5248. transition: margin-left .3s ease-in-out
  5249. }
  5250. .am-offcanvas-bar {
  5251. position: fixed;
  5252. top: 0;
  5253. bottom: 0;
  5254. left: 0;
  5255. z-index: 1091;
  5256. width: 270px;
  5257. max-width: 100%;
  5258. background: #333;
  5259. overflow-y: auto;
  5260. -webkit-overflow-scrolling: touch;
  5261. -webkit-transition: -webkit-transform .3s ease-in-out;
  5262. transition: -webkit-transform .3s ease-in-out;
  5263. transition: transform .3s ease-in-out;
  5264. transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
  5265. -webkit-transform: translateX(-100%);
  5266. -ms-transform: translateX(-100%);
  5267. transform: translateX(-100%)
  5268. }
  5269. .am-offcanvas-bar:after {
  5270. content: "";
  5271. display: block;
  5272. position: absolute;
  5273. top: 0;
  5274. bottom: 0;
  5275. right: 0;
  5276. width: 1px;
  5277. background: #262626
  5278. }
  5279. .am-offcanvas.am-active .am-offcanvas-bar.am-offcanvas-bar-active {
  5280. -webkit-transform: translateX(0);
  5281. -ms-transform: translateX(0);
  5282. transform: translateX(0)
  5283. }
  5284. .am-offcanvas-bar-flip {
  5285. left: auto;
  5286. right: 0;
  5287. -webkit-transform: translateX(100%);
  5288. -ms-transform: translateX(100%);
  5289. transform: translateX(100%)
  5290. }
  5291. .am-offcanvas-bar-flip:after {
  5292. right: auto;
  5293. left: 0
  5294. }
  5295. .am-offcanvas-content {
  5296. padding: 15px;
  5297. color: #999
  5298. }
  5299. .am-offcanvas-content a {
  5300. color: #ccc
  5301. }
  5302. .am-popover {
  5303. position: absolute;
  5304. top: 0;
  5305. left: 0;
  5306. margin: 0;
  5307. border-radius: 0;
  5308. background: #333;
  5309. color: #fff;
  5310. border: 1px solid #333;
  5311. display: none;
  5312. font-size: 1.6rem;
  5313. z-index: 1030;
  5314. opacity: 0;
  5315. -webkit-transition: opacity .3s;
  5316. transition: opacity .3s
  5317. }
  5318. .am-popover.am-active {
  5319. display: block!important;
  5320. opacity: 1
  5321. }
  5322. .am-popover-inner {
  5323. position: relative;
  5324. background: #333;
  5325. padding: 8px;
  5326. z-index: 110
  5327. }
  5328. .am-popover-caret {
  5329. position: absolute;
  5330. top: 0;
  5331. z-index: 100;
  5332. display: inline-block;
  5333. width: 0;
  5334. height: 0;
  5335. vertical-align: middle;
  5336. border-bottom: 8px solid #333;
  5337. border-right: 8px solid transparent;
  5338. border-left: 8px solid transparent;
  5339. border-top: 0 dotted;
  5340. transform: rotate(360deg);
  5341. overflow: hidden
  5342. }
  5343. .am-popover-top .am-popover-caret {
  5344. top: auto;
  5345. bottom: -8px;
  5346. -webkit-transform: rotate(180deg);
  5347. -ms-transform: rotate(180deg);
  5348. transform: rotate(180deg)
  5349. }
  5350. .am-popover-bottom .am-popover-caret {
  5351. top: -8px
  5352. }
  5353. .am-popover-bottom .am-popover-caret,.am-popover-top .am-popover-caret {
  5354. left: 50%;
  5355. margin-left: -8px
  5356. }
  5357. .am-popover-left .am-popover-caret {
  5358. left: auto;
  5359. right: -12px;
  5360. -webkit-transform: rotate(90deg);
  5361. -ms-transform: rotate(90deg);
  5362. transform: rotate(90deg)
  5363. }
  5364. .am-popover-right .am-popover-caret {
  5365. right: auto;
  5366. left: -12px;
  5367. -webkit-transform: rotate(-90deg);
  5368. -ms-transform: rotate(-90deg);
  5369. transform: rotate(-90deg)
  5370. }
  5371. .am-popover-left .am-popover-caret,.am-popover-right .am-popover-caret {
  5372. top: 50%;
  5373. margin-top: -4px
  5374. }
  5375. .am-popover-sm {
  5376. font-size: 1.4rem
  5377. }
  5378. .am-popover-sm .am-popover-inner {
  5379. padding: 5px
  5380. }
  5381. .am-popover-lg {
  5382. font-size: 1.8rem
  5383. }
  5384. .am-popover-primary {
  5385. border-color: #0e90d2
  5386. }
  5387. .am-popover-primary .am-popover-inner {
  5388. background: #0e90d2
  5389. }
  5390. .am-popover-primary .am-popover-caret {
  5391. border-bottom-color: #0e90d2
  5392. }
  5393. .am-popover-secondary {
  5394. border-color: #3bb4f2
  5395. }
  5396. .am-popover-secondary .am-popover-inner {
  5397. background: #3bb4f2
  5398. }
  5399. .am-popover-secondary .am-popover-caret {
  5400. border-bottom-color: #3bb4f2
  5401. }
  5402. .am-popover-success {
  5403. border-color: #5eb95e
  5404. }
  5405. .am-popover-success .am-popover-inner {
  5406. background: #5eb95e
  5407. }
  5408. .am-popover-success .am-popover-caret {
  5409. border-bottom-color: #5eb95e
  5410. }
  5411. .am-popover-warning {
  5412. border-color: #F37B1D
  5413. }
  5414. .am-popover-warning .am-popover-inner {
  5415. background: #F37B1D
  5416. }
  5417. .am-popover-warning .am-popover-caret {
  5418. border-bottom-color: #F37B1D
  5419. }
  5420. .am-popover-danger {
  5421. border-color: #dd514c
  5422. }
  5423. .am-popover-danger .am-popover-inner {
  5424. background: #dd514c
  5425. }
  5426. .am-popover-danger .am-popover-caret {
  5427. border-bottom-color: #dd514c
  5428. }
  5429. #nprogress {
  5430. pointer-events: none
  5431. }
  5432. #nprogress .nprogress-bar {
  5433. position: fixed;
  5434. top: 0;
  5435. left: 0;
  5436. z-index: 2000;
  5437. width: 100%;
  5438. height: 2px;
  5439. background: #5eb95e
  5440. }
  5441. #nprogress .nprogress-peg {
  5442. display: block;
  5443. position: absolute;
  5444. right: 0;
  5445. width: 100px;
  5446. height: 100%;
  5447. -webkit-box-shadow: 0 0 10px #5eb95e,0 0 5px #5eb95e;
  5448. box-shadow: 0 0 10px #5eb95e,0 0 5px #5eb95e;
  5449. opacity: 1;
  5450. -webkit-transform: rotate(3deg) translate(0,-4px);
  5451. -ms-transform: rotate(3deg) translate(0,-4px);
  5452. transform: rotate(3deg) translate(0,-4px)
  5453. }
  5454. #nprogress .nprogress-spinner {
  5455. position: fixed;
  5456. top: 15px;
  5457. right: 15px;
  5458. z-index: 2000;
  5459. display: block
  5460. }
  5461. #nprogress .nprogress-spinner-icon {
  5462. width: 18px;
  5463. height: 18px;
  5464. -webkit-box-sizing: border-box;
  5465. box-sizing: border-box;
  5466. border: 2px solid transparent;
  5467. border-top-color: #5eb95e;
  5468. border-left-color: #5eb95e;
  5469. border-radius: 50%;
  5470. -webkit-animation: nprogress-spinner .4s linear infinite;
  5471. animation: nprogress-spinner .4s linear infinite
  5472. }
  5473. @-webkit-keyframes nprogress-spinner {
  5474. 0% {
  5475. -webkit-transform: rotate(0);
  5476. transform: rotate(0)
  5477. }
  5478. 100% {
  5479. -webkit-transform: rotate(360deg);
  5480. transform: rotate(360deg)
  5481. }
  5482. }
  5483. @keyframes nprogress-spinner {
  5484. 0% {
  5485. -webkit-transform: rotate(0);
  5486. transform: rotate(0)
  5487. }
  5488. 100% {
  5489. -webkit-transform: rotate(360deg);
  5490. transform: rotate(360deg)
  5491. }
  5492. }
  5493. .am-tabs-bd {
  5494. position: relative;
  5495. border: 1px solid #ddd;
  5496. border-top: none;
  5497. z-index: 100;
  5498. -webkit-transition: height .3s;
  5499. transition: height .3s
  5500. }
  5501. .am-tabs-bd:after,.am-tabs-bd:before {
  5502. content: " ";
  5503. display: table
  5504. }
  5505. .am-tabs-bd .am-tab-panel {
  5506. position: absolute;
  5507. top: 0;
  5508. z-index: 99;
  5509. float: left;
  5510. width: 100%;
  5511. padding: 10px 10px 15px;
  5512. visibility: hidden;
  5513. -webkit-transition: -webkit-transform .3s;
  5514. transition: -webkit-transform .3s;
  5515. transition: transform .3s;
  5516. transition: transform .3s,-webkit-transform .3s;
  5517. -webkit-transform: translateX(-100%);
  5518. -ms-transform: translateX(-100%);
  5519. transform: translateX(-100%)
  5520. }
  5521. .am-tabs-bd .am-tab-panel * {
  5522. -webkit-user-drag: none
  5523. }
  5524. .am-tabs-bd .am-tab-panel.am-active {
  5525. position: relative;
  5526. z-index: 100;
  5527. visibility: visible;
  5528. -webkit-transform: translateX(0);
  5529. -ms-transform: translateX(0);
  5530. transform: translateX(0)
  5531. }
  5532. .am-tabs-bd .am-tab-panel.am-active~.am-tab-panel {
  5533. -webkit-transform: translateX(100%);
  5534. -ms-transform: translateX(100%);
  5535. transform: translateX(100%)
  5536. }
  5537. .am-tabs-bd .am-tabs-bd {
  5538. border: none
  5539. }
  5540. .am-tabs-bd-ofv {
  5541. overflow: visible
  5542. }
  5543. .am-tabs-fade .am-tab-panel {
  5544. opacity: 0;
  5545. -webkit-transition: opacity .25s linear;
  5546. transition: opacity .25s linear
  5547. }
  5548. .am-tabs-fade .am-tab-panel.am-in {
  5549. opacity: 1
  5550. }
  5551. .am-share {
  5552. font-size: 14px
  5553. }
  5554. .am-share-title {
  5555. padding: 10px 0 0;
  5556. margin: 0 10px;
  5557. font-weight: 400;
  5558. text-align: center;
  5559. color: #555;
  5560. background-color: #f8f8f8;
  5561. border-bottom: 1px solid #fff;
  5562. border-top-right-radius: 2px;
  5563. border-top-left-radius: 2px
  5564. }
  5565. .am-share-title:after {
  5566. content: "";
  5567. display: block;
  5568. width: 100%;
  5569. height: 0;
  5570. margin-top: 10px;
  5571. border-bottom: 1px solid #dfdfdf
  5572. }
  5573. .am-share-sns {
  5574. margin: 0 10px;
  5575. padding-top: 15px;
  5576. background-color: #f8f8f8;
  5577. border-bottom-right-radius: 2px;
  5578. border-bottom-left-radius: 2px
  5579. }
  5580. .am-share-sns li {
  5581. margin-bottom: 15px
  5582. }
  5583. .am-share-sns a {
  5584. display: block;
  5585. color: #555
  5586. }
  5587. .am-share-sns span {
  5588. display: block
  5589. }
  5590. .am-share-sns [class*=am-icon] {
  5591. background-color: #3bb4f2;
  5592. border-radius: 50%;
  5593. width: 36px;
  5594. height: 36px;
  5595. line-height: 36px;
  5596. color: #fff;
  5597. margin-bottom: 5px;
  5598. font-size: 18px
  5599. }
  5600. .am-share-sns .am-icon-weibo {
  5601. background-color: #ea1328
  5602. }
  5603. .am-share-sns .am-icon-qq {
  5604. background-color: #009cda
  5605. }
  5606. .am-share-sns .am-icon-star {
  5607. background-color: #ffc028
  5608. }
  5609. .am-share-sns .am-icon-tencent-weibo {
  5610. background-color: #23ccfe
  5611. }
  5612. .am-share-sns .am-icon-wechat,.am-share-sns .am-icon-weixin {
  5613. background-color: #44b549
  5614. }
  5615. .am-share-sns .am-icon-renren {
  5616. background-color: #105ba3
  5617. }
  5618. .am-share-sns .am-icon-comment {
  5619. background-color: #5eb95e
  5620. }
  5621. .am-share-footer {
  5622. margin: 10px
  5623. }
  5624. .am-share-footer .am-btn {
  5625. color: #555
  5626. }
  5627. .am-share-wechat-qr {
  5628. font-size: 14px;
  5629. color: #777
  5630. }
  5631. .am-share-wechat-qr .am-modal-dialog {
  5632. background-color: #fff;
  5633. border: 1px solid #dedede
  5634. }
  5635. .am-share-wechat-qr .am-modal-hd {
  5636. padding-top: 10px;
  5637. text-align: left;
  5638. margin-bottom: 10px
  5639. }
  5640. .am-share-wechat-qr .am-share-wx-qr {
  5641. margin-bottom: 10px
  5642. }
  5643. .am-share-wechat-qr .am-share-wechat-tip {
  5644. text-align: left
  5645. }
  5646. .am-share-wechat-qr .am-share-wechat-tip em {
  5647. color: #dd514c;
  5648. font-weight: 700;
  5649. font-style: normal;
  5650. margin-left: 3px;
  5651. margin-right: 3px
  5652. }
  5653. .am-pureview {
  5654. position: fixed;
  5655. left: 0;
  5656. top: 0;
  5657. bottom: 0;
  5658. right: 0;
  5659. z-index: 1120;
  5660. width: 100%;
  5661. height: 100%;
  5662. background: rgba(0,0,0,.95);
  5663. display: none;
  5664. overflow: hidden;
  5665. -webkit-transition: -webkit-transform .3s;
  5666. transition: -webkit-transform .3s;
  5667. transition: transform .3s;
  5668. transition: transform .3s,-webkit-transform .3s;
  5669. -webkit-transform: translate(0,100%);
  5670. -ms-transform: translate(0,100%);
  5671. transform: translate(0,100%)
  5672. }
  5673. .am-pureview-slider li.am-active,.am-pureview.am-active {
  5674. -webkit-transform: translate(0,0);
  5675. -ms-transform: translate(0,0)
  5676. }
  5677. .am-pureview.am-active {
  5678. transform: translate(0,0)
  5679. }
  5680. .am-pureview ol,.am-pureview ul {
  5681. list-style: none;
  5682. padding: 0;
  5683. margin: 0;
  5684. width: 100%
  5685. }
  5686. .am-pureview-slider {
  5687. overflow: hidden;
  5688. height: 100%
  5689. }
  5690. .am-pureview-slider li {
  5691. position: absolute;
  5692. width: 100%;
  5693. height: 100%;
  5694. top: 0;
  5695. display: flex;
  5696. -webkit-box-pack: center;
  5697. -webkit-justify-content: center;
  5698. -ms-flex-pack: center;
  5699. justify-content: center;
  5700. -webkit-box-align: center;
  5701. -webkit-align-items: center;
  5702. -ms-flex-align: center;
  5703. align-items: center;
  5704. vertical-align: middle;
  5705. -webkit-transition: all .3s linear;
  5706. transition: all .3s linear;
  5707. z-index: 100;
  5708. visibility: hidden
  5709. }
  5710. .am-pureview-slider li.am-pureview-slide-prev {
  5711. -webkit-transform: translate(-100%,0);
  5712. -ms-transform: translate(-100%,0);
  5713. transform: translate(-100%,0);
  5714. z-index: 109
  5715. }
  5716. .am-pureview-slider li.am-pureview-slide-next {
  5717. -webkit-transform: translate(100%,0);
  5718. -ms-transform: translate(100%,0);
  5719. transform: translate(100%,0);
  5720. z-index: 109
  5721. }
  5722. .am-pureview-slider li.am-active {
  5723. position: relative;
  5724. z-index: 110;
  5725. transform: translate(0,0);
  5726. visibility: visible
  5727. }
  5728. .am-pureview-slider .pinch-zoom-container {
  5729. width: 100%;
  5730. z-index: 1121
  5731. }
  5732. .am-pureview-slider .am-pinch-zoom {
  5733. position: relative;
  5734. width: 100%;
  5735. display: -webkit-box;
  5736. display: -webkit-flex;
  5737. display: -ms-flexbox;
  5738. display: flex;
  5739. -webkit-box-pack: center;
  5740. -webkit-justify-content: center;
  5741. -ms-flex-pack: center;
  5742. justify-content: center;
  5743. -webkit-box-align: center;
  5744. -webkit-align-items: center;
  5745. -ms-flex-align: center;
  5746. align-items: center
  5747. }
  5748. .am-pureview-slider .am-pinch-zoom:after {
  5749. display: inline-block;
  5750. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  5751. text-rendering: auto;
  5752. -webkit-font-smoothing: antialiased;
  5753. -moz-osx-font-smoothing: grayscale;
  5754. -webkit-transform: translate(0,0);
  5755. -ms-transform: translate(0,0);
  5756. transform: translate(0,0);
  5757. content: "\f110";
  5758. -webkit-animation: icon-spin 2s infinite linear;
  5759. animation: icon-spin 2s infinite linear;
  5760. font-size: 24px;
  5761. line-height: 24px;
  5762. color: #eee;
  5763. position: absolute;
  5764. top: 50%;
  5765. left: 50%;
  5766. margin-left: -12px;
  5767. margin-top: -12px;
  5768. z-index: 1
  5769. }
  5770. .am-pureview-slider .am-pinch-zoom.am-pureview-loaded:after {
  5771. display: none
  5772. }
  5773. .am-pureview-slider img {
  5774. position: relative;
  5775. display: block;
  5776. max-width: 100%;
  5777. max-height: 100%;
  5778. opacity: 0;
  5779. z-index: 200;
  5780. -webkit-user-drag: none;
  5781. -webkit-transition: opacity .2s ease-in;
  5782. transition: opacity .2s ease-in
  5783. }
  5784. .am-pureview-slider img.am-img-loaded {
  5785. opacity: 1
  5786. }
  5787. .am-pureview-direction {
  5788. position: absolute;
  5789. top: 50%;
  5790. width: 100%;
  5791. margin-top: -18px!important;
  5792. z-index: 1122
  5793. }
  5794. .am-pureview-only .am-pureview-direction,.am-touch .am-pureview-direction {
  5795. display: none
  5796. }
  5797. .am-pureview-direction li {
  5798. position: absolute;
  5799. width: 36px;
  5800. height: 36px
  5801. }
  5802. .am-pureview-direction a {
  5803. display: block;
  5804. height: 36px;
  5805. border: none;
  5806. color: #ccc;
  5807. opacity: .5;
  5808. cursor: pointer;
  5809. text-align: center;
  5810. z-index: 1125
  5811. }
  5812. .am-pureview-actions,.am-pureview-bar {
  5813. height: 45px;
  5814. background-color: rgba(0,0,0,.35);
  5815. position: absolute
  5816. }
  5817. .am-pureview-direction a:hover {
  5818. opacity: 1
  5819. }
  5820. .am-pureview-direction .am-pureview-prev {
  5821. left: 15px
  5822. }
  5823. .am-pureview-direction .am-pureview-next {
  5824. right: 15px
  5825. }
  5826. .am-pureview-bar {
  5827. bottom: 0;
  5828. width: 100%;
  5829. color: #eee;
  5830. line-height: 45px;
  5831. padding: 0 10px;
  5832. font-size: 15px;
  5833. display: -webkit-box;
  5834. display: -webkit-flex;
  5835. display: -ms-flexbox;
  5836. display: flex
  5837. }
  5838. .am-pureview-bar .am-pureview-title {
  5839. display: block;
  5840. word-wrap: normal;
  5841. text-overflow: ellipsis;
  5842. white-space: nowrap;
  5843. overflow: hidden;
  5844. margin-left: 6px;
  5845. -webkit-box-flex: 1;
  5846. -webkit-flex: 1;
  5847. -ms-flex: 1;
  5848. flex: 1
  5849. }
  5850. .am-pureview-bar .am-pureview-total {
  5851. font-size: 10px;
  5852. line-height: 48px
  5853. }
  5854. .am-pureview-actions {
  5855. left: 0;
  5856. right: 0;
  5857. top: 0
  5858. }
  5859. .am-pureview-actions a {
  5860. position: absolute;
  5861. right: 20px;
  5862. display: block;
  5863. top: 23px;
  5864. }
  5865. .am-pureview-actions a{ background: url("/image/guanbi.png") no-repeat center; background-size: 100%; width: 20px; height: 20px;}
  5866. .am-pureview-current{ color: #f00;}
  5867. .am-pureview-actions [data-am-toggle=share] {
  5868. left: auto;
  5869. right: 10px
  5870. }
  5871. .am-pureview-actions,.am-pureview-bar {
  5872. opacity: 0;
  5873. -webkit-transition: all .15s;
  5874. transition: all .15s;
  5875. z-index: 1130
  5876. }
  5877. .am-pureview-bar-active .am-pureview-actions,.am-pureview-bar-active .am-pureview-bar {
  5878. opacity: 1
  5879. }
  5880. .am-checkbox .am-icon-checked,.am-checkbox-inline .am-icon-checked,.am-radio .am-icon-checked,.am-radio-inline .am-icon-checked,.am-ucheck-checkbox:checked+.am-ucheck-icons .am-icon-unchecked,.am-ucheck-radio:checked+.am-ucheck-icons .am-icon-unchecked {
  5881. opacity: 0
  5882. }
  5883. .am-pureview-nav {
  5884. position: absolute;
  5885. bottom: 15px;
  5886. left: 0;
  5887. right: 0;
  5888. text-align: center;
  5889. z-index: 1131
  5890. }
  5891. .am-pureview-bar-active .am-pureview-nav {
  5892. display: none
  5893. }
  5894. .am-pureview-nav li {
  5895. display: inline-block;
  5896. background: #ccc;
  5897. background: rgba(255,255,255,.5);
  5898. width: 8px;
  5899. height: 8px;
  5900. margin: 0 3px;
  5901. border-radius: 50%;
  5902. text-indent: -9999px;
  5903. overflow: hidden;
  5904. cursor: pointer
  5905. }
  5906. .am-pureview-nav .am-active {
  5907. background: #fff;
  5908. background: rgba(255,255,255,.9)
  5909. }[data-am-pureview] img {
  5910. cursor: pointer
  5911. }
  5912. .am-pureview-active {
  5913. overflow: hidden
  5914. }
  5915. .ath-viewport * {
  5916. -webkit-box-sizing: border-box;
  5917. box-sizing: border-box
  5918. }
  5919. .ath-viewport {
  5920. position: relative;
  5921. z-index: 2147483641;
  5922. pointer-events: none;
  5923. -webkit-touch-callout: none;
  5924. -webkit-user-select: none;
  5925. -moz-user-select: none;
  5926. -ms-user-select: none;
  5927. user-select: none;
  5928. -webkit-text-size-adjust: none;
  5929. -ms-text-size-adjust: none;
  5930. text-size-adjust: none
  5931. }
  5932. .ath-container,.ath-modal {
  5933. pointer-events: auto!important
  5934. }
  5935. .ath-modal {
  5936. background: rgba(0,0,0,.6)
  5937. }
  5938. .ath-mandatory {
  5939. background: #000
  5940. }
  5941. .ath-container {
  5942. position: absolute;
  5943. z-index: 2147483641;
  5944. padding: .7em .6em;
  5945. width: 18em;
  5946. background: #eee;
  5947. -webkit-background-size: 100% auto;
  5948. background-size: 100% auto;
  5949. -webkit-box-shadow: 0 .2em 0 #d1d1d1;
  5950. box-shadow: 0 .2em 0 #d1d1d1;
  5951. font-family: sans-serif;
  5952. font-size: 15px;
  5953. line-height: 1.5em;
  5954. text-align: center
  5955. }
  5956. .ath-action-icon,.ath-container:before {
  5957. background-position: 50%;
  5958. background-repeat: no-repeat;
  5959. overflow: hidden
  5960. }
  5961. .ath-container small {
  5962. font-size: .8em;
  5963. line-height: 1.3em;
  5964. display: block;
  5965. margin-top: .5em
  5966. }
  5967. .ath-ios.ath-phone {
  5968. bottom: 1.8em;
  5969. left: 50%;
  5970. margin-left: -9em
  5971. }
  5972. .ath-ios6.ath-tablet {
  5973. left: 5em;
  5974. top: 1.8em
  5975. }
  5976. .ath-ios7.ath-tablet {
  5977. left: .7em;
  5978. top: 1.8em
  5979. }
  5980. .ath-ios8.ath-tablet {
  5981. right: .4em;
  5982. top: 1.8em
  5983. }
  5984. .ath-android {
  5985. bottom: 1.8em;
  5986. left: 50%;
  5987. margin-left: -9em
  5988. }
  5989. .ath-container:before {
  5990. content: '';
  5991. position: relative;
  5992. display: block;
  5993. float: right;
  5994. margin: -.7em -.6em 0 .5em;
  5995. background-image: url(data:image/png;
  5996. base64,iVBORw0KGgoAAAANSUhEUgAAAIQAAACECAMAAABmmnOVAAAAdVBMVEUAAAA5OTkzMzM7Ozs3NzdBQUFAQEA/Pz8+Pj5BQUFAQEA/Pz8+Pj5BQUFAQEA/Pz9BQUE+Pj4/Pz8/Pz8+Pj4/Pz8/Pz8/Pz8+Pj4/Pz8+Pj4/Pz8/Pz8/Pz8/Pz8/Pz8+Pj4/Pz8/Pz8/Pz8/Pz9AQEA/Pz+fdCaPAAAAJnRSTlMACQoNDjM4OTo7PEFCQ0RFS6ytsbS1tru8vcTFxu7x8vX19vf4+C5yomAAAAJESURBVHgBvdzLTsJAGEfxr4C2KBcVkQsIDsK8/yPaqIsPzVlyzrKrX/5p0kkXEz81L23otc9NpIbbWia2YVLqdnhlqFlhGWpSDHe1aopsSIpRb8gK0dC3G30b9rVmhWZIimTICsvQtx/FsuYOrWHoDjX3Gu31gzJxdki934WrAIOsAIOsAIOiAMPhPsJTgKGN0BVsYIVsYIVpYIVpYIVpYIVpYIVpYIVpYIVpYIVlAIVgEBRs8BRs8BRs8BRs8BRs8BRs8BRs8BRTNmgKNngKNngKNngKNngKNhiKGxgiOlZoBlaYBlaYBlaYBlaYBlaYBlaYBlaYBlZIBlBMfQMrVAMr2KAqBENSHFHhGEABhi5CV6gGUKgGUKgGUKgGUFwuqgEUvoEVsoEVpoEUpgEUggF+gKTKY+h1fxSlC7/Z+RrxOQ3fcEoAPPHZBlaYBlaYBlaYBlZYBlYIhvLBCstw7PgM7hkiWOEZWGEaWGEaWGEaIsakEAysmHkGVpxmvoEVqoEVpoEVpoEVpoEVpoEVpoEVkoEVgkFQsEFSsEFQsGEcoSvY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnmbNAUT2c2WAo2eAo2eAo2eAo2eAo2eArNEPFACjZ4CjZ4CjZ4CjaIird/rBvFH6llNCvewdli1URWCIakSIZesUaDoFg36dKFWk9zCZDei3TtwmCj7pC22AwikiIZPEU29IpFNliKxa/hC9DFITjQPYhcAAAAAElFTkSuQmCC);background-color: rgba(255,255,255,.8);
  5997. -webkit-background-size: 50% 50%;
  5998. background-size: 50%;
  5999. width: 2.7em;
  6000. height: 2.7em;
  6001. text-align: center;
  6002. color: #a33;
  6003. z-index: 2147483642
  6004. }
  6005. .ath-container.ath-icon:before {
  6006. position: absolute;
  6007. top: 0;
  6008. right: 0;
  6009. margin: 0;
  6010. float: none
  6011. }
  6012. .ath-mandatory .ath-container:before {
  6013. display: none
  6014. }
  6015. .ath-container.ath-android:before {
  6016. float: left;
  6017. margin: -.7em .5em 0 -.6em
  6018. }
  6019. .ath-container.ath-android.ath-icon:before {
  6020. position: absolute;
  6021. right: auto;
  6022. left: 0;
  6023. margin: 0;
  6024. float: none
  6025. }
  6026. .ath-action-icon {
  6027. display: inline-block;
  6028. vertical-align: middle;
  6029. text-indent: -9999em
  6030. }
  6031. .ath-ios7 .ath-action-icon,.ath-ios8 .ath-action-icon {
  6032. width: 1.6em;
  6033. height: 1.6em;
  6034. background-image: url(data:image/png;
  6035. base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAACtCAYAAAB7l7tOAAAF6UlEQVR4AezZWWxUZRiH8VcQEdxZEFFiUZBFUCIa1ABBDARDcCciYGKMqTEGww3SOcNSAwQTjOBiiIpEhRjAhRgXRC8MFxojEhAFZUGttVhaoSxlaW3n8W3yXZxm6vTrOMM5Q98n+V9MMu1pvl++uZhKuypghu49KaaTWGdZSYoVN6VD95nMpLNYZ9XNbdQR2od2k88O3Gm6Bh0t7H0p5Vwp2Ax3ajpu2tYbciFWwkTFO63DY6+JcI4USFaSyYpWp8N7SVZJKR3EinkBk9JxvZFXxhnZSjBaoWp1ZL0ES8WKYXMZp0AndORgy8WKFe5Yf1zvvSBWDEpys2LU6MjD5kmEWQlGKsJRHXlcqUSQVcItEnDEA6gAb7LhjvD9WO6yIEfICQI5A1nzGCYB1T4og5bBiFcyv2f6ujYhl4iVxwKG6qp8MK55HsqPwK0rMr9v/yEo3uCPrJstVh5KMER30Aeh31Ioq0FrHfjXw9CYghnrvYFTuqfEymFzGSwBlT4ARYr7u+K6GLmCVGvAGg2NMG0d/sgJnpScZLjXSkC5z8H3eQ72/k24Q8NfzvwFyK4qtuJSZKaubRPyE/K/Mtx+EvCHL+7uasId1t10w0scz/RzSzYzAfgKV30D3LPaG7lRkR8RK4tKKJKAMp+D7r0EfmmOe0x3m2itAc/ZxBjgAt1mXHWKPPkdb+QGSTJdrDaU5EoJ2OtzwD0WwY7KNNzbRfMFFg24WPdtGHnS221Cflgsj56hjwTs8TnY7oq7/QDhjutGicsb2AVcovsO18l6uPPNNiE/JFaGAq7Q7fY50G4LYVtz3FrdaNGyBXbIl+q24DqhyHes9EaulwR3SwtZs+ktAT/7HORliru1gnCndONFyx44Dfn7MPLYN7yR6yTJZAllJeguAT/4HOBFz8I3ZWm4E0TLFbBD7qn7EVdtHYx53R9ZN0ksrZRuErDN5+AuLIWvm+Oe1k0ULdfADrmX7idcR0/DyBXeyCdlLuMMOGCBz4F1ng+f7yFcve5e0fIFHELeiav6BAx70Rt5p0yhY3u/wR0kyarW/uX35b403PtFyzewQ75ctwtXzSkY8WqruHslSV8RscrL6TJ1bcvfWJ0/HzbtIdw/ugdFyzdwOOAq3T6fmzxwGQ3vbmO8iFioIWqYSsHMj9M/ljfuTsOdItoZBXYBfXX7cVXVwvXLm/8+fU3lcdCqdEMNGBbgUmRmfQISQKd5sGEn4VK6YtEiAXYBA3QVuA4q8hCHrDcafR1ul65jewfuovsCl7vJrNlOuEbdo6JFCuwCrtb9hqusBu56Cw4cI1y1briIWEBn3Ue0XKPuMdGiBg4H9NdV0HJ/6QZLOEPmPN0GmpfSPS5arIBdwHUtIFfoBsl/ZsgfhHCfFi2WwC5goO4AmvanbqBkzJA76tboZokWa2AXMEi3RTdAvDLkDqJFAhzB32xFD2wZsGXA0WfAlgFbBmwZsGXAlgFbBpzk04JaKb0iA9ZnF9x5SQAFtRKKIgPWZxfaeRmwAZ/BGbAB37eaG6MCbnq2Aed5czYyKirgpmcbsAHHZAZswN0Wwo7KeG1fFf2jAm56dtzOQ42yB+65mDhWFBUwUETMUiMDNmADbp/APRaTAh6I2bpGCNw1bufRZJQ1cPdF/NueHZsgDEBBGLbMGoIu4AZu5gLOZeEaYmEXeznF3jRPyEv4frgJvvJe3qTefY0AAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwb8rwADBgwYMGDAgAEDBgwYMGDAgAEDBgwYMGDAgAEDBgz4/sz1Nia/9hizA7zgklwy3RYwYMBzBRjw4bPjxAbAAizAAtwgwAIswAIswAIMGDBgARZgARZgAS4FWIAFWIAFWIABAwYswAIswAIswIUAC7AAC7AACzBgwIAFWIAFWIAFuBBgARZgARZgAQYMGPApQ99ZCdgWtzqwATbABtgAG2DbnxNb7zbRimsMLMACrDf2wMWI/WasfQAAAABJRU5ErkJggg==);margin-top: -.3em;
  6036. -webkit-background-size: auto 100%;
  6037. background-size: auto 100%
  6038. }
  6039. .ath-ios6 .ath-action-icon {
  6040. width: 1.8em;
  6041. height: 1.8em;
  6042. background-image: url(data:image/png;
  6043. base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAAB0CAQAAADAmnOnAAAAAnNCSVQICFXsRgQAAAAJcEhZcwAAWwEAAFsBAXkZiFwAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAF4klEQVR4Ae3a/a+XdR3H8ec5HM45HDmKICoVohkZsxESRRCzcZM/2JKkdGR5MrSkleA0Pd00O4u5IVuNM2yYc6XSzCExU4oUNRPCJFdMUAhsYZpUGhscOHA4N8/WZzsL6HBxvofvdV3fa3yer//gsV3vH659KHzncBsJxUYhDzOEhCKQbORs+ip2wzgM+wvj+P9i35qAGLaHGcQSgKSTrxBLABJppZpYApCspoFYApBsZjSxBCD5OxOJJQBJG1cQSwCSLpqJJQCJ3MvgCGTinuSMCJS8LZwfgZL3FtMiUPIOcU0ESl4PLRHoRPsJtREoeRsYGYGS9yrvo6RmpbLaigWSfzOdErLs6+bLUMFA0sF1+QF1cz1UNlBYK9V5AHXyWSgEkKyiIWOgGh829Ki1lLcaxjCVK7mJRSxjBY+zgRf/u9pXcMB7jhEZAg32EUP3O6hMKOP5Iq2sZQeHMZXt5KKMgOpcY+iHVnFyjeQKlrCBdsxge5ieAVC9vzLUelI8H+A7bKIHM10H81IGGuKvDf1ggDxVTKOV1zG3/Yia1ICG+ltD32MgNTKfP2HuW0VDKkCNrjfUTOm9i6XswwrZJkaVHeh0f2fodkrtfO6jAytqrzG+rEDDfVG1x1sprZEs5RBW4PZxeT+Bbrf5hPu9arfzKaU6WjiAFbseWvoF1GW/6vYGSmkyW7Dit4xB5QHq9Br6Xx2t9GAhtp6zkoHsfNp1J9wX6H+jeR4LtJc4LxGopZZyNpN/YcG2mw9nBTSPLizgOmjKAujGgvJID3ekD7QYi7nGzkvmQtpA38Vi7iJf0TedlC7QTVjMfcY2QyvSBPpUMW/PIBfbo9pls1XpAX2EdizeznStob3OJpQO0DB2YfE21q2GtnghpAm0Gou3T9tm6BGHQppA12HRVt17eboNlydNoLHsx2JtmL801OYcQmkC/QKLtQt9ydBW3wNpA30ci7Ur3WdolUMhbaBqNhf/8qQJ9Hkszs5wjaH9XkUobaAqtmFRdoGbDb3sWMgG6DIs5852knO82RaXer+P+qyb3eWeo7ZNBrRZvm1otY2QFdBjeHIb6hTne49Put12+9ObMoDdYmfy5UkF6AK6cCCr9aM2u9IddptcOYCG+FNDB5xLKCugO7G01TndFp/xgAntdYvrfdwVLnORt3q9Vx25F27DUjbGPxr6qxMgW6Cd2N+d6wLXedA+6nKbK73Lr/pJxzusvE/wZrvX0FOOgGyBxmF/dprXutYOj6nNdS6xyYnWp/dGcaGdhr5vDWQN9E1MXrUzfcA2j2qPj/l1J1uT9iPOeh8w1O7nCGUN9HzyGZ7ndo9qp0ucanU2r1xH+wdDu5wIeQDVVx0+/kd1i697RNv8thdn+Qz4Uv9p6DeOhHyApmBfq3OBu+3Nfd7nVELZAX3Nw4ZarYG8gG7GY1dlk6/Zm3/2Rk8jlB1QvT82dNAmQjkBVf8Mj957fdrefM7ZVhPKEuidvmDob06CXIGGbsX/bZDf8KAhfdbJhLIGmuZuQ084HHIGatiLvRvrRkP6qldbBXkAzbfD0N0OhryBGqrEMOd50FC7d1hPKGugBh8ydMh5hPIGGouI1d5lj6F1vptQ9kDvcKOhN5wMlQH0QcRGnzC03yZCeQDN9G1D6xwBFQI07FI8x02GdjgB8gJqttPQcmuhYoAumzvG7YZWejrkA1TrPYYO+SVCFQO0aM4bqj0uJJQH0LluSP7PkyeQU9QOmyAvoBm+Zegpz4LKA/qYB/wE5AXUe3m81zqoRKAPOYWcuvP9dxvqcD6h7IAKkaNU3eUlHLcI9EzS5YlAi62h/zUy89QCqqKUmvgHywsJlEHnsQYxAvXVIJo5gIhnPhiBju1iNmLvLn85Ah1ZPYs5jBGo72awEzEC9dVwHqQHI9DxWoAYgSLQQKteGIESu/qhCJTYtT+PQBEoAkWgCBSBkotAEehUWwSKQBEoAkWg/BeBIlAEikARKAJFoFmealu4gVLy1Gt5dkARKAL9BzujPSurTmu/AAAAAElFTkSuQmCC);margin-bottom: .4em;
  6044. -webkit-background-size: 100% auto;
  6045. background-size: 100% auto
  6046. }
  6047. .ath-android .ath-action-icon {
  6048. width: 1.4em;
  6049. height: 1.4em;
  6050. background-image: url(data:image/png;
  6051. base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAANlBMVEVmZmb///9mZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZW6fJrAAAAEXRSTlMAAAYHG21ub8fLz9DR8/T4+RrZ9owAAAB3SURBVHja7dNLDoAgDATQWv4gKve/rEajJOJiWLgg6WzpSyB0aHqHiNj6nL1lovb4C+hYzkSNAT7mryQFAVOeGAj4CjwEtgrWXpD/uZKtwEJApXt+Vn0flzRhgNiFZQkOXY0aADQZCOCPlsZJ46Rx0jhp3IiN2wGDHhxtldrlwQAAAABJRU5ErkJggg==);-webkit-background-size: 100% auto;
  6052. background-size: 100% auto
  6053. }
  6054. .ath-container p {
  6055. margin: 0;
  6056. padding: 0;
  6057. position: relative;
  6058. z-index: 2147483642;
  6059. text-shadow: 0 .1em 0 #fff;
  6060. font-size: 1.1em
  6061. }
  6062. .ath-ios.ath-phone:after,.ath-ios.ath-tablet:after {
  6063. content: '';
  6064. background: #eee;
  6065. position: absolute;
  6066. width: 2em;
  6067. height: 2em;
  6068. left: 50%;
  6069. margin-left: -1em
  6070. }
  6071. .ath-ios.ath-phone:after {
  6072. bottom: -.9em;
  6073. -webkit-transform: scaleX(.9) rotate(45deg);
  6074. -ms-transform: scaleX(.9) rotate(45deg);
  6075. transform: scaleX(.9) rotate(45deg);
  6076. -webkit-box-shadow: .2em .2em 0 #d1d1d1;
  6077. box-shadow: .2em .2em 0 #d1d1d1
  6078. }
  6079. .ath-ios.ath-tablet:after {
  6080. top: -.9em;
  6081. -webkit-transform: scaleX(.9) rotate(45deg);
  6082. -ms-transform: scaleX(.9) rotate(45deg);
  6083. transform: scaleX(.9) rotate(45deg);
  6084. z-index: 2147483641
  6085. }
  6086. .ath-application-icon {
  6087. position: relative;
  6088. padding: 0;
  6089. border: 0;
  6090. margin: 0 auto .2em;
  6091. height: 6em;
  6092. width: 6em;
  6093. z-index: 2147483642
  6094. }
  6095. .am-ucheck-checkbox,.am-ucheck-icons,.am-ucheck-radio {
  6096. height: 20px;
  6097. width: 20px;
  6098. top: 0;
  6099. left: 0;
  6100. position: absolute
  6101. }
  6102. .ath-container.ath-ios .ath-application-icon {
  6103. border-radius: 1em;
  6104. -webkit-box-shadow: 0 .2em .4em rgba(0,0,0,.3),inset 0 .07em 0 rgba(255,255,255,.5);
  6105. box-shadow: 0 .2em .4em rgba(0,0,0,.3),inset 0 .07em 0 rgba(255,255,255,.5);
  6106. margin: 0 auto .4em
  6107. }
  6108. @media only screen and (orientation:landscape) {
  6109. .ath-container.ath-phone {
  6110. width: 24em
  6111. }
  6112. .ath-android.ath-phone,.ath-ios.ath-phone {
  6113. margin-left: -12em
  6114. }
  6115. .ath-ios6:after {
  6116. left: 39%
  6117. }
  6118. .ath-ios8.ath-phone {
  6119. left: auto;
  6120. bottom: auto;
  6121. right: .4em;
  6122. top: 1.8em
  6123. }
  6124. .ath-ios8.ath-phone:after {
  6125. bottom: auto;
  6126. top: -.9em;
  6127. left: 68%;
  6128. z-index: 2147483641;
  6129. -webkit-box-shadow: none;
  6130. box-shadow: none
  6131. }
  6132. }
  6133. .am-checkbox,.am-checkbox-inline,.am-radio,.am-radio-inline {
  6134. padding-left: 22px;
  6135. position: relative;
  6136. -webkit-transition: color .25s linear;
  6137. transition: color .25s linear;
  6138. font-size: 14px;
  6139. line-height: 1.5
  6140. }
  6141. label.am-checkbox,label.am-radio {
  6142. font-weight: 400
  6143. }
  6144. .am-ucheck-icons {
  6145. color: #999;
  6146. display: block;
  6147. text-align: center;
  6148. line-height: 21px;
  6149. font-size: 18px;
  6150. cursor: pointer
  6151. }
  6152. .am-checkbox .am-icon-checked,.am-checkbox .am-icon-unchecked,.am-checkbox-inline .am-icon-checked,.am-checkbox-inline .am-icon-unchecked,.am-radio .am-icon-checked,.am-radio .am-icon-unchecked,.am-radio-inline .am-icon-checked,.am-radio-inline .am-icon-unchecked {
  6153. position: absolute;
  6154. left: 0;
  6155. top: 0;
  6156. display: inline-table;
  6157. margin: 0;
  6158. background-color: transparent;
  6159. -webkit-transition: color .25s linear;
  6160. transition: color .25s linear
  6161. }
  6162. .am-checkbox .am-icon-checked:before,.am-checkbox .am-icon-unchecked:before,.am-checkbox-inline .am-icon-checked:before,.am-checkbox-inline .am-icon-unchecked:before,.am-radio .am-icon-checked:before,.am-radio .am-icon-unchecked:before,.am-radio-inline .am-icon-checked:before,.am-radio-inline .am-icon-unchecked:before {
  6163. display: inline-block;
  6164. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  6165. font-size: inherit;
  6166. text-rendering: auto;
  6167. -webkit-font-smoothing: antialiased;
  6168. -moz-osx-font-smoothing: grayscale;
  6169. -webkit-transform: translate(0,0);
  6170. -ms-transform: translate(0,0);
  6171. transform: translate(0,0)
  6172. }
  6173. .am-checkbox .am-icon-checked:before,.am-checkbox-inline .am-icon-checked:before {
  6174. content: "\f046"
  6175. }
  6176. .am-checkbox .am-icon-unchecked:before,.am-checkbox-inline .am-icon-unchecked:before {
  6177. content: "\f096"
  6178. }
  6179. .am-radio .am-icon-checked:before,.am-radio-inline .am-icon-checked:before {
  6180. content: "\f192"
  6181. }
  6182. .am-radio .am-icon-unchecked:before,.am-radio-inline .am-icon-unchecked:before {
  6183. content: "\f10c"
  6184. }
  6185. .am-ucheck-checkbox,.am-ucheck-radio {
  6186. margin: 0;
  6187. padding: 0;
  6188. opacity: 0;
  6189. outline: 0!important
  6190. }
  6191. .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-ucheck-radio:checked+.am-ucheck-icons,.am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
  6192. color: #0e90d2
  6193. }
  6194. .am-ucheck-checkbox:checked+.am-ucheck-icons .am-icon-checked,.am-ucheck-radio:checked+.am-ucheck-icons .am-icon-checked {
  6195. opacity: 1
  6196. }
  6197. .am-ucheck-checkbox:disabled+.am-ucheck-icons,.am-ucheck-radio:disabled+.am-ucheck-icons {
  6198. cursor: default;
  6199. color: #d8d8d8
  6200. }
  6201. .am-ucheck-checkbox:disabled:checked+.am-ucheck-icons .am-icon-unchecked,.am-ucheck-radio:disabled:checked+.am-ucheck-icons .am-icon-unchecked {
  6202. opacity: 0
  6203. }
  6204. .am-ucheck-checkbox:disabled:checked+.am-ucheck-icons .am-icon-checked,.am-ucheck-radio:disabled:checked+.am-ucheck-icons .am-icon-checked {
  6205. opacity: 1;
  6206. color: #d8d8d8
  6207. }
  6208. .am-checkbox-inline.am-secondary .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox-inline.am-secondary .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox-inline.am-secondary .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox-inline.am-secondary .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-secondary .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox.am-secondary .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-secondary .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox.am-secondary .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-secondary .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio-inline.am-secondary .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-secondary .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio-inline.am-secondary .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-secondary .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio.am-secondary .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-secondary .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio.am-secondary .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
  6209. color: #3bb4f2
  6210. }
  6211. .am-checkbox-inline.am-success .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox-inline.am-success .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox-inline.am-success .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox-inline.am-success .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-success .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox.am-success .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-success .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox.am-success .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-success .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio-inline.am-success .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-success .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio-inline.am-success .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-success .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio.am-success .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-success .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio.am-success .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
  6212. color: #5eb95e
  6213. }
  6214. .am-checkbox-inline.am-warning .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox-inline.am-warning .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox-inline.am-warning .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox-inline.am-warning .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-warning .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox.am-warning .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-warning .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox.am-warning .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-warning .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio-inline.am-warning .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-warning .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio-inline.am-warning .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-warning .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio.am-warning .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-warning .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio.am-warning .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
  6215. color: #F37B1D
  6216. }
  6217. .am-checkbox-inline.am-danger .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox-inline.am-danger .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox-inline.am-danger .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox-inline.am-danger .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-danger .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-checkbox.am-danger .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-checkbox.am-danger .am-ucheck-radio:checked+.am-ucheck-icons,.am-checkbox.am-danger .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-field-error+.am-ucheck-icons,.am-radio-inline.am-danger .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio-inline.am-danger .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio-inline.am-danger .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio-inline.am-danger .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-danger .am-ucheck-checkbox:checked+.am-ucheck-icons,.am-radio.am-danger .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,.am-radio.am-danger .am-ucheck-radio:checked+.am-ucheck-icons,.am-radio.am-danger .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
  6218. color: #dd514c
  6219. }
  6220. .am-field-valid+.am-ucheck-icons {
  6221. color: #5eb95e
  6222. }
  6223. .am-selected {
  6224. width: 200px
  6225. }
  6226. .am-selected-btn {
  6227. width: 100%;
  6228. padding-left: 10px;
  6229. text-align: right
  6230. }
  6231. .am-selected-btn.am-btn-default {
  6232. background: 0 0
  6233. }
  6234. .am-invalid .am-selected-btn {
  6235. border-color: #dd514c
  6236. }
  6237. .am-selected-header {
  6238. height: 45px;
  6239. background-color: #f2f2f2;
  6240. border-bottom: 1px solid #ddd;
  6241. display: none
  6242. }
  6243. .am-selected-list .am-selected-text,.am-selected-status {
  6244. display: block;
  6245. word-wrap: normal;
  6246. text-overflow: ellipsis;
  6247. white-space: nowrap;
  6248. overflow: hidden
  6249. }
  6250. .am-selected-status {
  6251. text-align: left;
  6252. width: 100%
  6253. }
  6254. .am-selected-content {
  6255. padding: 10px 0
  6256. }
  6257. .am-selected-search {
  6258. padding: 0 10px 10px
  6259. }
  6260. .am-selected-search .am-form-field {
  6261. padding: .5em
  6262. }
  6263. .am-selected-list {
  6264. margin: 0;
  6265. padding: 0;
  6266. list-style: none;
  6267. font-size: 1.5rem
  6268. }
  6269. .am-selected-list li {
  6270. position: relative;
  6271. cursor: pointer;
  6272. padding: 5px 10px;
  6273. -webkit-transition: background-color .15s;
  6274. transition: background-color .15s
  6275. }
  6276. .am-selected-list li:hover {
  6277. background-color: #f8f8f8
  6278. }
  6279. .am-selected-list li:hover .am-icon-check {
  6280. opacity: .6
  6281. }
  6282. .am-selected-list li.am-checked .am-icon-check {
  6283. opacity: 1;
  6284. color: #0e90d2
  6285. }
  6286. .am-selected-list li.am-disabled {
  6287. opacity: .5;
  6288. pointer-events: none;
  6289. cursor: not-allowed
  6290. }
  6291. .am-selected-list .am-selected-list-header {
  6292. margin-top: 8px;
  6293. font-size: 1.3rem;
  6294. color: #999;
  6295. border-bottom: 1px solid #e5e5e5;
  6296. cursor: default
  6297. }
  6298. .am-selected-list .am-selected-list-header:hover {
  6299. background: 0 0
  6300. }
  6301. .am-selected-list .am-selected-list-header:first-child {
  6302. margin-top: 0
  6303. }
  6304. .am-selected-list .am-selected-text {
  6305. margin-right: 30px
  6306. }
  6307. .am-selected-list .am-icon-check {
  6308. position: absolute;
  6309. right: 8px;
  6310. top: 5px;
  6311. color: #999;
  6312. opacity: 0;
  6313. -webkit-transition: opacity .15s;
  6314. transition: opacity .15s
  6315. }
  6316. .am-selected-hint {
  6317. line-height: 1.2;
  6318. color: #dd514c
  6319. }
  6320. .am-selected-hint:not(:empty) {
  6321. margin-top: 10px;
  6322. border-top: 1px solid #e5e5e5;
  6323. padding: 10px 10px 0
  6324. }
  6325. .am-selected-placeholder {
  6326. opacity: .65
  6327. }
  6328. .am-fade {
  6329. opacity: 0;
  6330. -webkit-transition: opacity .2s linear;
  6331. transition: opacity .2s linear
  6332. }
  6333. .am-fade.am-in {
  6334. opacity: 1
  6335. }
  6336. .am-collapse {
  6337. display: none
  6338. }
  6339. .am-collapse.am-in {
  6340. display: block
  6341. }
  6342. tr.am-collapse.am-in {
  6343. display: table-row
  6344. }
  6345. tbody.am-collapse.am-in {
  6346. display: table-row-group
  6347. }
  6348. .am-datepicker,.am-dimmer {
  6349. top: 0;
  6350. left: 0;
  6351. display: none
  6352. }
  6353. .am-collapsing {
  6354. position: relative;
  6355. height: 0;
  6356. overflow: hidden;
  6357. -webkit-transition: height .3s ease;
  6358. transition: height .3s ease
  6359. }
  6360. .am-sticky {
  6361. position: fixed!important;
  6362. z-index: 1010;
  6363. -webkit-transform-origin: 0 0;
  6364. -ms-transform-origin: 0 0;
  6365. transform-origin: 0 0
  6366. }[data-am-sticky][class*=am-animation-] {
  6367. -webkit-animation-duration: .2s;
  6368. animation-duration: .2s
  6369. }
  6370. .am-dimmer-active {
  6371. overflow: hidden
  6372. }
  6373. .am-dimmer {
  6374. position: fixed;
  6375. right: 0;
  6376. bottom: 0;
  6377. width: 100%;
  6378. height: 100%;
  6379. background-color: rgba(0,0,0,.6);
  6380. z-index: 1100;
  6381. opacity: 0
  6382. }
  6383. .am-dimmer.am-active {
  6384. opacity: 1
  6385. }[data-am-collapse] {
  6386. cursor: pointer
  6387. }
  6388. .am-datepicker {
  6389. border-radius: 0;
  6390. background: #fff;
  6391. -webkit-box-shadow: 0 0 10px #ccc;
  6392. box-shadow: 0 0 10px #ccc;
  6393. padding-bottom: 10px;
  6394. margin-top: 10px;
  6395. width: 238px;
  6396. color: #555
  6397. }
  6398. .am-datepicker table {
  6399. width: 100%
  6400. }
  6401. .am-datepicker tr.am-datepicker-header {
  6402. font-size: 1.6rem;
  6403. color: #fff;
  6404. background: #3bb4f2
  6405. }
  6406. .am-datepicker td,.am-datepicker th {
  6407. text-align: center;
  6408. font-weight: 400;
  6409. cursor: pointer
  6410. }
  6411. .am-datepicker th {
  6412. height: 48px
  6413. }
  6414. .am-datepicker td {
  6415. font-size: 1.4rem
  6416. }
  6417. .am-datepicker td.am-datepicker-day {
  6418. height: 34px;
  6419. width: 34px
  6420. }
  6421. .am-datepicker td.am-datepicker-day:hover {
  6422. background: #F0F0F0;
  6423. height: 34px;
  6424. width: 34px
  6425. }
  6426. .am-datepicker td.am-datepicker-day.am-disabled {
  6427. cursor: no-drop;
  6428. color: #999;
  6429. background: #fafafa
  6430. }
  6431. .am-datepicker td.am-datepicker-new,.am-datepicker td.am-datepicker-old {
  6432. color: #89d7ff
  6433. }
  6434. .am-datepicker td.am-active,.am-datepicker td.am-active:hover {
  6435. border-radius: 0;
  6436. color: #0084c7;
  6437. background: #F0F0F0
  6438. }
  6439. .am-datepicker td span {
  6440. display: block;
  6441. width: 79.33px;
  6442. height: 40px;
  6443. line-height: 40px;
  6444. float: left;
  6445. cursor: pointer
  6446. }
  6447. .am-datepicker td span:hover {
  6448. background: #F0F0F0
  6449. }
  6450. .am-datepicker td span.am-active {
  6451. color: #0084c7;
  6452. background: #F0F0F0
  6453. }
  6454. .am-datepicker td span.am-disabled {
  6455. cursor: no-drop;
  6456. color: #999;
  6457. background: #fafafa
  6458. }
  6459. .am-datepicker-next-icon:hover,.am-datepicker-prev-icon:hover,.am-datepicker-select:hover {
  6460. background: rgba(154,217,248,.5);
  6461. color: #0c80ba
  6462. }
  6463. .am-datepicker td span.am-datepicker-old {
  6464. color: #89d7ff
  6465. }
  6466. .am-datepicker .am-datepicker-dow {
  6467. height: 40px;
  6468. color: #0c80ba
  6469. }
  6470. .am-datepicker-caret,.am-datepicker-up .am-datepicker-caret {
  6471. width: 0;
  6472. height: 0;
  6473. border-right: 7px solid transparent;
  6474. border-left: 7px solid transparent;
  6475. vertical-align: middle
  6476. }
  6477. .am-datepicker-caret {
  6478. display: block!important;
  6479. display: inline-block;
  6480. border-bottom: 7px solid #3bb4f2;
  6481. border-top: 0 dotted;
  6482. transform: rotate(360deg);
  6483. position: absolute;
  6484. top: -7px;
  6485. left: 6px
  6486. }
  6487. .am-datepicker-right .am-datepicker-caret {
  6488. left: auto;
  6489. right: 7px
  6490. }
  6491. .am-datepicker-up .am-datepicker-caret {
  6492. top: auto;
  6493. bottom: -7px;
  6494. display: inline-block;
  6495. border-top: 7px solid #fff;
  6496. border-bottom: 0 dotted;
  6497. -webkit-transform: rotate(360deg);
  6498. -ms-transform: rotate(360deg);
  6499. transform: rotate(360deg)
  6500. }
  6501. .am-datepicker-next-icon:before,.am-datepicker-prev-icon:before {
  6502. display: inline-block;
  6503. text-rendering: auto;
  6504. -moz-osx-font-smoothing: grayscale;
  6505. -webkit-transform: translate(0,0);
  6506. -ms-transform: translate(0,0)
  6507. }
  6508. .am-datepicker-select {
  6509. height: 34px;
  6510. line-height: 34px;
  6511. text-align: center;
  6512. -webkit-transition: background-color .3s ease-out;
  6513. transition: background-color .3s ease-out
  6514. }
  6515. .am-datepicker-next,.am-datepicker-prev {
  6516. width: 34px;
  6517. height: 34px
  6518. }
  6519. .am-datepicker-next-icon,.am-datepicker-prev-icon {
  6520. width: 34px;
  6521. height: 34px;
  6522. line-height: 34px;
  6523. display: inline-block;
  6524. -webkit-transition: background-color .3s ease-out;
  6525. transition: background-color .3s ease-out
  6526. }
  6527. .am-datepicker-prev-icon:before {
  6528. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  6529. font-size: inherit;
  6530. -webkit-font-smoothing: antialiased;
  6531. transform: translate(0,0);
  6532. content: "\f053"
  6533. }
  6534. .am-accordion-default .am-accordion-title:before,.am-datepicker-next-icon:before {
  6535. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif
  6536. }
  6537. .am-datepicker-next-icon:before {
  6538. font-size: inherit;
  6539. -webkit-font-smoothing: antialiased;
  6540. transform: translate(0,0);
  6541. content: "\f054"
  6542. }
  6543. .am-datepicker-dropdown {
  6544. position: absolute;
  6545. z-index: 1120
  6546. }
  6547. @media only screen and (max-width:640px) {
  6548. .am-datepicker {
  6549. width: 100%
  6550. }
  6551. .am-datepicker td span {
  6552. width: 33.33%
  6553. }
  6554. .am-datepicker-caret {
  6555. display: none!important
  6556. }
  6557. .am-datepicker-next,.am-datepicker-prev {
  6558. width: 44px;
  6559. height: 44px
  6560. }
  6561. }
  6562. .am-datepicker-date,.am-datepicker>div {
  6563. display: block
  6564. }
  6565. .am-datepicker-success tr.am-datepicker-header {
  6566. background: #5eb95e
  6567. }
  6568. .am-datepicker-success td.am-datepicker-day.am-disabled {
  6569. color: #999
  6570. }
  6571. .am-datepicker-success td.am-datepicker-new,.am-datepicker-success td.am-datepicker-old {
  6572. color: #94df94
  6573. }
  6574. .am-datepicker-success td.am-active,.am-datepicker-success td.am-active:hover {
  6575. color: #1b961b
  6576. }
  6577. .am-datepicker-success td span.am-datepicker-old {
  6578. color: #94df94
  6579. }
  6580. .am-datepicker-success td span.am-active {
  6581. color: #1b961b
  6582. }
  6583. .am-datepicker-success .am-datepicker-caret {
  6584. border-bottom-color: #5eb95e
  6585. }
  6586. .am-datepicker-success .am-datepicker-dow {
  6587. color: #367b36
  6588. }
  6589. .am-datepicker-success .am-datepicker-next-icon:hover,.am-datepicker-success .am-datepicker-prev-icon:hover,.am-datepicker-success .am-datepicker-select:hover {
  6590. background: rgba(165,216,165,.5);
  6591. color: #367b36
  6592. }
  6593. .am-datepicker-danger tr.am-datepicker-header {
  6594. background: #dd514c
  6595. }
  6596. .am-datepicker-danger td.am-datepicker-day.am-disabled {
  6597. color: #999
  6598. }
  6599. .am-datepicker-danger td.am-datepicker-new,.am-datepicker-danger td.am-datepicker-old {
  6600. color: #f59490
  6601. }
  6602. .am-datepicker-danger td.am-active,.am-datepicker-danger td.am-active:hover {
  6603. color: #c10802
  6604. }
  6605. .am-datepicker-danger td span.am-datepicker-old {
  6606. color: #f59490
  6607. }
  6608. .am-datepicker-danger td span.am-active {
  6609. color: #c10802
  6610. }
  6611. .am-datepicker-danger .am-datepicker-caret {
  6612. border-bottom-color: #dd514c
  6613. }
  6614. .am-datepicker-danger .am-datepicker-dow {
  6615. color: #a4241f
  6616. }
  6617. .am-datepicker-danger .am-datepicker-next-icon:hover,.am-datepicker-danger .am-datepicker-prev-icon:hover,.am-datepicker-danger .am-datepicker-select:hover {
  6618. background: rgba(237,164,162,.5);
  6619. color: #a4241f
  6620. }
  6621. .am-datepicker-warning tr.am-datepicker-header {
  6622. background: #F37B1D
  6623. }
  6624. .am-datepicker-warning td.am-datepicker-day.am-disabled {
  6625. color: #999
  6626. }
  6627. .am-datepicker-warning td.am-datepicker-new,.am-datepicker-warning td.am-datepicker-old {
  6628. color: #ffad6d
  6629. }
  6630. .am-datepicker-warning td.am-active,.am-datepicker-warning td.am-active:hover {
  6631. color: #aa4b00
  6632. }
  6633. .am-datepicker-warning td span.am-datepicker-old {
  6634. color: #ffad6d
  6635. }
  6636. .am-datepicker-warning td span.am-active {
  6637. color: #aa4b00
  6638. }
  6639. .am-datepicker-warning .am-datepicker-caret {
  6640. border-bottom-color: #F37B1D
  6641. }
  6642. .am-datepicker-warning .am-datepicker-dow {
  6643. color: #a14c09
  6644. }
  6645. .am-datepicker-warning .am-datepicker-next-icon:hover,.am-datepicker-warning .am-datepicker-prev-icon:hover,.am-datepicker-warning .am-datepicker-select:hover {
  6646. background: rgba(248,180,126,.5);
  6647. color: #a14c09
  6648. }
  6649. .am-datepicker>div span.am-datepicker-hour {
  6650. width: 59.5px
  6651. }
  6652. .am-datepicker-date.am-input-group {
  6653. display: table
  6654. }
  6655. .am-datepicker-time-box em,.am-datepicker-time-box strong {
  6656. display: inline-block;
  6657. height: 70px;
  6658. line-height: 70px;
  6659. font-size: 5.2rem
  6660. }
  6661. .am-datepicker-time-box {
  6662. padding: 30px 0
  6663. }
  6664. .am-datepicker-time-box strong {
  6665. width: 70px;
  6666. font-weight: 400
  6667. }
  6668. .am-datepicker-time-box strong:hover {
  6669. border-radius: 4px;
  6670. background: #ECECEC
  6671. }
  6672. .am-datepicker-time-box em {
  6673. width: 20px;
  6674. font-style: normal
  6675. }
  6676. .am-datepicker-toggle {
  6677. text-align: center;
  6678. cursor: pointer;
  6679. padding: 10px 0
  6680. }
  6681. .am-datepicker-toggle:hover {
  6682. background: #f0f0f0
  6683. }
  6684. @media print {
  6685. blockquote,img,pre,tr {
  6686. page-break-inside: avoid
  6687. }
  6688. *,:after,:before {
  6689. background: 0 0!important;
  6690. color: #000!important;
  6691. -webkit-box-shadow: none!important;
  6692. box-shadow: none!important;
  6693. text-shadow: none!important
  6694. }
  6695. a,a:visited {
  6696. text-decoration: underline
  6697. }
  6698. a[href]:after {
  6699. content: " (" attr(href) ")"
  6700. }
  6701. abbr[title]:after {
  6702. content: " [" attr(title) "] "
  6703. }
  6704. a[href^="javascript:"]:after,a[href^="#"]:after {
  6705. content: ""
  6706. }
  6707. blockquote,pre {
  6708. border: 1px solid #999
  6709. }
  6710. thead {
  6711. display: table-header-group
  6712. }
  6713. img {
  6714. max-width: 100%!important
  6715. }
  6716. h2,h3,p {
  6717. orphans: 3;
  6718. widows: 3
  6719. }
  6720. h2,h3 {
  6721. page-break-after: avoid
  6722. }@ page {
  6723. margin: .5cm
  6724. }
  6725. select {
  6726. background: #fff!important
  6727. }
  6728. .am-topbar {
  6729. display: none
  6730. }
  6731. .am-table td,.am-table th {
  6732. background-color: #fff!important
  6733. }
  6734. .am-table {
  6735. border-collapse: collapse!important
  6736. }
  6737. .am-table-bordered td,.am-table-bordered th {
  6738. border: 1px solid #ddd!important
  6739. }
  6740. }
  6741. .am-print-block {
  6742. display: none!important
  6743. }
  6744. @media print {
  6745. .am-print-block {
  6746. display: block!important
  6747. }
  6748. }
  6749. .am-print-inline {
  6750. display: none!important
  6751. }
  6752. @media print {
  6753. .am-print-inline {
  6754. display: inline!important
  6755. }
  6756. }
  6757. .am-print-inline-block {
  6758. display: none!important
  6759. }
  6760. @media print {
  6761. .am-print-inline-block {
  6762. display: inline-block!important
  6763. }
  6764. .am-print-hide {
  6765. display: none!important
  6766. }
  6767. }
  6768. .lte9 #nprogress .nprogress-spinner {
  6769. display: none!important
  6770. }
  6771. .lte8 .am-dimmer {
  6772. background-color: #000;
  6773. filter: alpha(opacity=60)
  6774. }
  6775. .lte8 .am-modal-actions {
  6776. display: none
  6777. }
  6778. .lte8 .am-modal-actions.am-modal-active {
  6779. display: block
  6780. }
  6781. .am-accordion-basic .am-accordion-title:before,.am-accordion-default .am-accordion-title:before {
  6782. display: inline-block;
  6783. text-rendering: auto;
  6784. -moz-osx-font-smoothing: grayscale;
  6785. content: "\f0da"
  6786. }
  6787. .lte8 .am-offcanvas.am-active {
  6788. background: #000
  6789. }
  6790. .lte8 .am-popover .am-popover-caret {
  6791. border: 8px solid transparent
  6792. }
  6793. .lte8 .am-popover-top .am-popover-caret {
  6794. border-top: 8px solid #333;
  6795. border-bottom: none
  6796. }
  6797. .lte8 .am-popover-left .am-popover-caret {
  6798. right: -8px;
  6799. margin-top: -6px;
  6800. border-left: 8px solid #333;
  6801. border-right: none
  6802. }
  6803. .lte8 .am-popover-right .am-popover-caret {
  6804. left: -8px;
  6805. margin-top: -6px;
  6806. border-right: 8px solid #333;
  6807. border-left: none
  6808. }
  6809. .am-accordion-item {
  6810. margin: 0
  6811. }
  6812. .am-accordion-title {
  6813. font-weight: 400;
  6814. cursor: pointer
  6815. }
  6816. .am-accordion-item.am-disabled .am-accordion-title {
  6817. cursor: default;
  6818. pointer-events: none
  6819. }
  6820. .am-accordion-bd {
  6821. margin: 0!important;
  6822. padding: 0!important;
  6823. border: none!important
  6824. }
  6825. .am-accordion-content {
  6826. margin-top: 0;
  6827. padding: .8rem 1rem 1.2rem;
  6828. font-size: 1.4rem
  6829. }
  6830. .am-accordion-default {
  6831. margin: 1rem;
  6832. border-radius: 2px;
  6833. -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  6834. box-shadow: 0 0 0 1px rgba(0,0,0,.1)
  6835. }
  6836. .am-accordion-default .am-accordion-item {
  6837. border-top: 1px solid rgba(0,0,0,.05)
  6838. }
  6839. .am-accordion-default .am-accordion-item:first-child {
  6840. border-top: none
  6841. }
  6842. .am-accordion-default .am-accordion-title {
  6843. color: rgba(0,0,0,.6);
  6844. -webkit-transition: background-color .2s ease-out;
  6845. transition: background-color .2s ease-out;
  6846. padding: .8rem 1rem
  6847. }
  6848. .am-accordion-default .am-accordion-title:before {
  6849. font-size: inherit;
  6850. -webkit-font-smoothing: antialiased;
  6851. -webkit-transform: translate(0,0);
  6852. -ms-transform: translate(0,0);
  6853. transform: translate(0,0);
  6854. -webkit-transition: -webkit-transform .2s ease;
  6855. transition: -webkit-transform .2s ease;
  6856. transition: transform .2s ease;
  6857. transition: transform .2s ease,-webkit-transform .2s ease;
  6858. -webkit-transform: rotate(0);
  6859. -ms-transform: rotate(0);
  6860. transform: rotate(0);
  6861. margin-right: 5px
  6862. }
  6863. .am-accordion-default .am-accordion-title:hover {
  6864. color: #0e90d2
  6865. }
  6866. .am-accordion-default .am-accordion-content {
  6867. color: #666
  6868. }
  6869. .am-accordion-default .am-active .am-accordion-title {
  6870. background-color: #eee;
  6871. color: #0e90d2
  6872. }
  6873. .am-accordion-default .am-active .am-accordion-title:before {
  6874. -webkit-transform: rotate(90deg);
  6875. -ms-transform: rotate(90deg);
  6876. transform: rotate(90deg)
  6877. }
  6878. .am-accordion-basic {
  6879. margin: 1rem
  6880. }
  6881. .am-accordion-basic .am-accordion-title {
  6882. color: #333;
  6883. -webkit-transition: background-color .2s ease-out;
  6884. transition: background-color .2s ease-out;
  6885. padding: .8rem 0 0
  6886. }
  6887. .am-accordion-basic .am-accordion-title:before {
  6888. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  6889. font-size: inherit;
  6890. -webkit-font-smoothing: antialiased;
  6891. -webkit-transform: translate(0,0);
  6892. -ms-transform: translate(0,0);
  6893. transform: translate(0,0);
  6894. -webkit-transition: -webkit-transform .2s ease;
  6895. transition: -webkit-transform .2s ease;
  6896. transition: transform .2s ease;
  6897. transition: transform .2s ease,-webkit-transform .2s ease;
  6898. -webkit-transform: rotate(0);
  6899. -ms-transform: rotate(0);
  6900. transform: rotate(0);
  6901. margin-right: .5rem
  6902. }
  6903. .am-accordion-basic .am-accordion-content {
  6904. color: #666
  6905. }
  6906. .am-accordion-basic .am-active .am-accordion-title {
  6907. color: #0e90d2
  6908. }
  6909. .am-accordion-basic .am-active .am-accordion-title:before {
  6910. -webkit-transform: rotate(90deg);
  6911. -ms-transform: rotate(90deg);
  6912. transform: rotate(90deg)
  6913. }
  6914. .am-accordion-gapped .am-accordion-title:after,.am-figure-zoomable:after {
  6915. display: inline-block;
  6916. -webkit-transform: translate(0,0);
  6917. -ms-transform: translate(0,0);
  6918. text-rendering: auto;
  6919. -moz-osx-font-smoothing: grayscale
  6920. }
  6921. .am-accordion-gapped {
  6922. margin: .5rem 1rem
  6923. }
  6924. .am-accordion-gapped .am-accordion-item {
  6925. border: 1px solid #dedede;
  6926. border-bottom: none;
  6927. margin: .5rem 0
  6928. }
  6929. .am-accordion-gapped .am-accordion-item.am-active {
  6930. border-bottom: 1px solid #dedede
  6931. }
  6932. .am-accordion-gapped .am-accordion-title {
  6933. color: rgba(0,0,0,.6);
  6934. -webkit-transition: background-color .15s ease-out;
  6935. transition: background-color .15s ease-out;
  6936. border-bottom: 1px solid #dedede;
  6937. padding: .8rem 2rem .8rem 1rem;
  6938. position: relative
  6939. }
  6940. .am-accordion-gapped .am-accordion-title:after {
  6941. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  6942. font-size: inherit;
  6943. -webkit-font-smoothing: antialiased;
  6944. transform: translate(0,0);
  6945. content: "\f105";
  6946. -webkit-transition: -webkit-transform .2s linear;
  6947. transition: -webkit-transform .2s linear;
  6948. transition: transform .2s linear;
  6949. transition: transform .2s linear,-webkit-transform .2s linear;
  6950. position: absolute;
  6951. right: 10px;
  6952. top: 50%;
  6953. margin-top: -.8rem
  6954. }
  6955. .am-accordion-gapped .am-accordion-title:hover {
  6956. color: rgba(0,0,0,.8)
  6957. }
  6958. .am-accordion-gapped .am-accordion-content {
  6959. color: #666
  6960. }
  6961. .am-accordion-gapped .am-active .am-accordion-title {
  6962. background-color: #f5f5f5;
  6963. color: rgba(0,0,0,.8)
  6964. }
  6965. .am-accordion-gapped .am-active .am-accordion-title:after {
  6966. -webkit-transform: rotate(90deg);
  6967. -ms-transform: rotate(90deg);
  6968. transform: rotate(90deg)
  6969. }
  6970. .am-divider {
  6971. height: 0;
  6972. margin: 1.5rem auto;
  6973. overflow: hidden
  6974. }
  6975. .am-divider-default {
  6976. border-top: 1px solid #ddd
  6977. }
  6978. .am-divider-dotted {
  6979. border-top: 1px dotted #ccc
  6980. }
  6981. .am-divider-dashed {
  6982. border-top: 1px dashed #ccc
  6983. }
  6984. .am-figure-zoomable {
  6985. position: relative;
  6986. cursor: pointer
  6987. }
  6988. .am-figure-zoomable:after {
  6989. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  6990. -webkit-font-smoothing: antialiased;
  6991. transform: translate(0,0);
  6992. content: "\f00e";
  6993. position: absolute;
  6994. top: 1rem;
  6995. right: 1rem;
  6996. color: #999;
  6997. font-size: 1.6rem;
  6998. -webkit-transition: all .2s;
  6999. transition: all .2s;
  7000. pointer-events: none
  7001. }
  7002. .am-figure-zoomable:hover:after {
  7003. color: #eee
  7004. }
  7005. .am-figure-default {
  7006. margin: 10px
  7007. }
  7008. .am-figure-default img {
  7009. display: block;
  7010. max-width: 100%;
  7011. height: auto;
  7012. padding: 2px;
  7013. border: 1px solid #eee;
  7014. margin: 10px auto
  7015. }
  7016. .am-figure-default figcaption {
  7017. text-align: center;
  7018. font-size: 1.4rem;
  7019. margin-bottom: 15px;
  7020. color: #333
  7021. }
  7022. .am-footer {
  7023. text-align: center;
  7024. padding: 1em 0;
  7025. font-size: 1.6rem
  7026. }
  7027. .am-footer .am-switch-mode-ysp {
  7028. cursor: pointer
  7029. }
  7030. .am-footer .am-footer-text {
  7031. margin-top: 10px;
  7032. font-size: 14px
  7033. }
  7034. .am-footer .am-footer-text-left {
  7035. text-align: left;
  7036. padding-left: 10px
  7037. }
  7038. .am-modal-footer-hd {
  7039. padding-bottom: 10px
  7040. }
  7041. .am-footer-default {
  7042. background-color: #fff
  7043. }
  7044. .am-footer-default a {
  7045. color: #555
  7046. }
  7047. .am-footer-default .am-footer-switch {
  7048. margin-bottom: 10px;
  7049. font-weight: 700
  7050. }
  7051. .am-footer-default .am-footer-ysp {
  7052. color: #555;
  7053. cursor: pointer
  7054. }
  7055. .am-footer-default .am-footer-divider {
  7056. color: #ccc
  7057. }
  7058. .am-footer-default .am-footer-desktop {
  7059. color: #0e90d2
  7060. }
  7061. .am-footer-default .am-footer-miscs {
  7062. color: #999;
  7063. font-size: 13px
  7064. }
  7065. .am-footer-default .am-footer-miscs p {
  7066. margin: 5px 0
  7067. }
  7068. @media only screen and (min-width:641px) {
  7069. .am-footer-default .am-footer-miscs p {
  7070. display: inline-block;
  7071. margin: 5px
  7072. }
  7073. }
  7074. .am-gallery-default .am-gallery-title,.am-gallery-overlay .am-gallery-title {
  7075. font-weight: 400;
  7076. display: block;
  7077. word-wrap: normal;
  7078. text-overflow: ellipsis;
  7079. white-space: nowrap;
  7080. overflow: hidden
  7081. }
  7082. .am-gallery {
  7083. padding: 5px 5px 0;
  7084. list-style: none
  7085. }
  7086. .am-gallery-bordered>li,.am-gallery-default>li,.am-gallery-imgbordered>li,.am-gallery-overlay>li {
  7087. padding: 5px
  7088. }
  7089. .am-gallery h3 {
  7090. margin: 0
  7091. }[data-am-gallery*=pureview] img {
  7092. cursor: pointer
  7093. }
  7094. .am-gallery-default .am-gallery-item img {
  7095. width: 100%;
  7096. height: auto
  7097. }
  7098. .am-gallery-default .am-gallery-title {
  7099. margin-top: 10px;
  7100. font-size: 1.4rem;
  7101. color: #555
  7102. }
  7103. .am-gallery-default .am-gallery-desc {
  7104. color: #999;
  7105. font-size: 1.2rem
  7106. }
  7107. .am-gallery-overlay .am-gallery-item {
  7108. position: relative
  7109. }
  7110. .am-gallery-overlay .am-gallery-item img {
  7111. width: 100%;
  7112. height: auto
  7113. }
  7114. .am-gallery-overlay .am-gallery-title {
  7115. font-size: 1.4rem;
  7116. color: #FFF;
  7117. position: absolute;
  7118. bottom: 0;
  7119. width: 100%;
  7120. background-color: rgba(0,0,0,.5);
  7121. text-indent: 5px;
  7122. height: 30px;
  7123. line-height: 30px
  7124. }
  7125. .am-gallery-overlay .am-gallery-desc {
  7126. display: none
  7127. }
  7128. .am-gallery-bordered .am-gallery-title,.am-gallery-imgbordered .am-gallery-title {
  7129. margin-top: 10px;
  7130. display: block;
  7131. font-weight: 400;
  7132. overflow: hidden;
  7133. word-wrap: normal;
  7134. text-overflow: ellipsis;
  7135. white-space: nowrap
  7136. }
  7137. .am-gallery-bordered .am-gallery-item {
  7138. -webkit-box-shadow: 0 0 3px rgba(0,0,0,.35);
  7139. box-shadow: 0 0 3px rgba(0,0,0,.35);
  7140. padding: 5px
  7141. }
  7142. .am-gallery-bordered .am-gallery-item img {
  7143. width: 100%;
  7144. height: auto
  7145. }
  7146. .am-gallery-bordered .am-gallery-title {
  7147. font-size: 1.4rem;
  7148. color: #555
  7149. }
  7150. .am-gallery-bordered .am-gallery-desc {
  7151. color: #999;
  7152. font-size: 1.2rem
  7153. }
  7154. .am-gallery-imgbordered .am-gallery-item img {
  7155. width: 100%;
  7156. height: auto;
  7157. border: 3px solid #FFF;
  7158. -webkit-box-shadow: 0 0 3px rgba(0,0,0,.35);
  7159. box-shadow: 0 0 3px rgba(0,0,0,.35)
  7160. }
  7161. .am-gallery-imgbordered .am-gallery-title {
  7162. font-size: 1.4rem;
  7163. color: #555
  7164. }
  7165. .am-gallery-imgbordered .am-gallery-desc {
  7166. color: #999;
  7167. font-size: 1.2rem
  7168. }
  7169. .am-gotop a {
  7170. display: inline-block;
  7171. text-decoration: none
  7172. }
  7173. .am-gotop-default {
  7174. text-align: center;
  7175. margin: 10px 0
  7176. }
  7177. .am-gotop-default a {
  7178. background-color: #0e90d2;
  7179. padding: .5em 1.5em;
  7180. border-radius: 0;
  7181. color: #fff
  7182. }
  7183. .am-gotop-default a img {
  7184. display: none
  7185. }
  7186. .am-gotop-fixed {
  7187. position: fixed;
  7188. right: 10px;
  7189. bottom: 10px;
  7190. z-index: 1010;
  7191. opacity: 0;
  7192. width: 32px;
  7193. min-height: 32px;
  7194. overflow: hidden;
  7195. border-radius: 0;
  7196. text-align: center
  7197. }
  7198. .am-gotop-fixed.am-active {
  7199. opacity: .9
  7200. }
  7201. .am-gotop-fixed.am-active:hover {
  7202. opacity: 1
  7203. }
  7204. .am-gotop-fixed a {
  7205. display: block
  7206. }
  7207. .am-gotop-fixed .am-gotop-title {
  7208. display: none
  7209. }
  7210. .am-gotop-fixed .am-gotop-icon-custom {
  7211. display: inline-block;
  7212. max-width: 30px;
  7213. vertical-align: middle
  7214. }
  7215. .am-intro img,.am-paragraph img {
  7216. max-width: 100%
  7217. }
  7218. .am-gotop-fixed .am-gotop-icon {
  7219. width: 100%;
  7220. line-height: 32px;
  7221. background-color: #555;
  7222. vertical-align: middle;
  7223. color: #ddd
  7224. }
  7225. .am-gotop-fixed .am-gotop-icon:hover,.am-header-default .am-header-title,.am-header-default .am-header-title a {
  7226. color: #fff
  7227. }
  7228. .am-with-fixed-navbar .am-gotop-fixed {
  7229. bottom: 60px
  7230. }
  7231. .am-header {
  7232. position: relative;
  7233. width: 100%;
  7234. height: 49px;
  7235. line-height: 49px;
  7236. padding: 0 10px
  7237. }
  7238. .am-header h1 {
  7239. margin-top: 0;
  7240. margin-bottom: 0
  7241. }
  7242. .am-header .am-header-title {
  7243. margin: 0 30%;
  7244. font-size: 2rem;
  7245. font-weight: 400;
  7246. text-align: center;
  7247. display: block;
  7248. word-wrap: normal;
  7249. text-overflow: ellipsis;
  7250. white-space: nowrap;
  7251. overflow: hidden
  7252. }
  7253. .am-header .am-header-title img {
  7254. margin-top: 12px;
  7255. height: 25px;
  7256. vertical-align: top
  7257. }
  7258. .am-header .am-header-nav {
  7259. position: absolute;
  7260. top: 0
  7261. }
  7262. .am-header .am-header-nav img {
  7263. height: 16px;
  7264. width: auto;
  7265. vertical-align: middle
  7266. }
  7267. .am-header .am-header-left {
  7268. left: 10px
  7269. }
  7270. .am-header .am-header-right {
  7271. right: 10px
  7272. }
  7273. .am-header-fixed {
  7274. position: fixed;
  7275. top: 0;
  7276. left: 0;
  7277. right: 0;
  7278. width: 100%;
  7279. z-index: 1010
  7280. }
  7281. .am-intro,.am-intro-hd {
  7282. position: relative
  7283. }
  7284. .am-with-fixed-header {
  7285. padding-top: 49px
  7286. }
  7287. .am-header-default {
  7288. background-color: #0e90d2
  7289. }
  7290. .am-header-default .am-header-icon {
  7291. font-size: 20px
  7292. }
  7293. .am-header-default .am-header-nav {
  7294. color: #eee
  7295. }
  7296. .am-header-default .am-header-nav>a {
  7297. display: inline-block;
  7298. min-width: 36px;
  7299. text-align: center;
  7300. color: #eee
  7301. }
  7302. .am-header-default .am-header-nav>a+a {
  7303. margin-left: 5px
  7304. }
  7305. .am-header-default .am-header-nav .am-btn {
  7306. margin-top: 9px;
  7307. height: 31px;
  7308. padding: 0 .5em;
  7309. line-height: 30px;
  7310. font-size: 14px;
  7311. vertical-align: top
  7312. }
  7313. .am-intro-title,.am-list-news .am-list-item-hd,.am-list-news-hd h3 {
  7314. margin: 0
  7315. }
  7316. .am-header-default .am-header-nav .am-btn .am-header-icon {
  7317. font-size: inherit
  7318. }
  7319. .am-header-default .am-header-nav .am-btn-default {
  7320. color: #999
  7321. }
  7322. .am-header-default .am-header-nav-title,.am-header-default .am-header-nav-title+.am-header-icon {
  7323. font-size: 14px
  7324. }
  7325. .am-intro-hd {
  7326. height: 45px;
  7327. line-height: 45px
  7328. }
  7329. .am-intro-title {
  7330. font-size: 18px;
  7331. font-weight: 700
  7332. }
  7333. .am-intro-more-top {
  7334. position: absolute;
  7335. right: 10px;
  7336. top: 0;
  7337. font-size: 1.4rem
  7338. }
  7339. .am-intro-bd {
  7340. padding-top: 15px;
  7341. padding-bottom: 15px;
  7342. font-size: 1.4rem
  7343. }
  7344. .am-intro-bd p:last-child {
  7345. margin-bottom: 0
  7346. }
  7347. .am-intro-more-bottom {
  7348. text-align: center
  7349. }
  7350. .am-intro-more-bottom .am-btn {
  7351. font-size: 14px
  7352. }
  7353. .am-intro-default .am-intro-hd {
  7354. background-color: #0e90d2;
  7355. color: #fff;
  7356. padding: 0 10px
  7357. }
  7358. .am-intro-default .am-intro-hd a {
  7359. color: #eee
  7360. }
  7361. .am-intro-default .am-intro-right {
  7362. padding-left: 0
  7363. }
  7364. .am-list-news-hd {
  7365. padding-top: 1.2rem;
  7366. padding-bottom: .8rem
  7367. }
  7368. .am-list-news-hd a {
  7369. display: block
  7370. }
  7371. .am-list-news-hd h2 {
  7372. font-size: 1.6rem;
  7373. float: left;
  7374. margin: 0;
  7375. height: 2rem;
  7376. line-height: 2rem
  7377. }
  7378. .am-list-news-hd .am-list-news-more {
  7379. font-size: 1.3rem;
  7380. height: 2rem;
  7381. line-height: 2rem
  7382. }
  7383. .am-list .am-list-item-dated a {
  7384. padding-right: 80px;
  7385. display: block;
  7386. word-wrap: normal;
  7387. text-overflow: ellipsis;
  7388. white-space: nowrap;
  7389. overflow: hidden
  7390. }
  7391. .am-list .am-list-item-dated a::after {
  7392. display: none
  7393. }
  7394. .am-list .am-list-item-desced a,.am-list .am-list-item-thumbed a {
  7395. padding-right: 0
  7396. }
  7397. .am-list-date {
  7398. position: absolute;
  7399. right: 5px;
  7400. font-size: 1.3rem;
  7401. top: 1.3rem
  7402. }
  7403. .am-list-item-desced {
  7404. padding-bottom: 1rem
  7405. }
  7406. .am-list-item-desced>a {
  7407. padding: 1rem 0
  7408. }
  7409. .am-list-news-default .am-list .am-list-item-thumb-bottom-left .am-list-thumb,.am-list-news-default .am-list .am-list-item-thumb-left .am-list-thumb {
  7410. padding-left: 0
  7411. }
  7412. .am-list-news-default .am-list .am-list-item-thumb-bottom-right .am-list-thumb,.am-list-news-default .am-list .am-list-item-thumb-right .am-list-thumb {
  7413. padding-right: 0
  7414. }
  7415. .am-list-item-desced .am-list-date {
  7416. position: static
  7417. }
  7418. .am-list-item-thumbed {
  7419. padding-top: 1em
  7420. }
  7421. .am-list-news-ft {
  7422. text-align: center
  7423. }
  7424. .am-list-news .am-titlebar {
  7425. margin-left: 0;
  7426. margin-right: 0
  7427. }
  7428. .am-list-news .am-titlebar~.am-list-news-bd .am-list>li:first-child {
  7429. border-top: none
  7430. }
  7431. .am-list-news-default {
  7432. margin: 10px
  7433. }
  7434. .am-list-news-default .am-g {
  7435. margin-left: auto;
  7436. margin-right: auto
  7437. }
  7438. .am-list-news-default .am-list-item-hd {
  7439. font-weight: 400
  7440. }
  7441. .am-list-news-default .am-list-date {
  7442. color: #999
  7443. }
  7444. .am-list-news-default .am-list>li {
  7445. border-color: #dedede
  7446. }
  7447. .am-list-news-default .am-list .am-list-item-desced {
  7448. padding-top: 1rem;
  7449. padding-bottom: 1rem
  7450. }
  7451. .am-list-news-default .am-list .am-list-item-desced .am-list-main,.am-list-news-default .am-list .am-list-item-desced>a,.am-list-news-default .am-list .am-list-item-thumb-top .am-list-main {
  7452. padding: 0
  7453. }
  7454. .am-list-news-default .am-list .am-list-item-desced .am-list-item-text {
  7455. margin-top: .5rem;
  7456. color: #757575
  7457. }
  7458. .am-list-news-default .am-list .am-list-item-text {
  7459. overflow: hidden;
  7460. text-overflow: ellipsis;
  7461. display: -webkit-box;
  7462. -webkit-box-orient: vertical;
  7463. line-height: 1.3em;
  7464. -webkit-line-clamp: 2;
  7465. max-height: 2.6em
  7466. }
  7467. .am-list-news-default .am-list .am-list-item-thumb-top .am-list-thumb {
  7468. padding: 0;
  7469. margin-bottom: .8rem
  7470. }
  7471. .am-list-news-default .am-list .am-list-item-thumb-bottom-left .am-list-item-hd,.am-list-news-default .am-list .am-list-item-thumb-bottom-right .am-list-item-hd {
  7472. clear: both;
  7473. padding-bottom: .5rem
  7474. }
  7475. .am-list-news-default .am-list .am-list-thumb img {
  7476. width: 100%;
  7477. display: block
  7478. }
  7479. @media only screen and (max-width:640px) {
  7480. .am-list-news-default .am-list-item-thumb-left .am-list-thumb,.am-list-news-default .am-list-item-thumb-right .am-list-thumb {
  7481. max-height: 80px;
  7482. overflow: hidden
  7483. }
  7484. .am-list-news-default .am-list-item-thumb-bottom-left .am-list-item-text,.am-list-news-default .am-list-item-thumb-bottom-right .am-list-item-text {
  7485. -webkit-line-clamp: 3;
  7486. max-height: 3.9em
  7487. }
  7488. .am-list-news-default .am-list-item-thumb-bottom-left .am-list-thumb,.am-list-news-default .am-list-item-thumb-bottom-right .am-list-thumb {
  7489. max-height: 60px;
  7490. overflow: hidden
  7491. }
  7492. }
  7493. .am-map {
  7494. width: 100%;
  7495. height: 300px
  7496. }
  7497. .am-map-default #bd-map {
  7498. width: 100%;
  7499. height: 100%;
  7500. overflow: hidden;
  7501. margin: 0;
  7502. font-size: 14px;
  7503. line-height: 1.4!important
  7504. }
  7505. .am-map-default .BMap_bubble_title {
  7506. font-weight: 700
  7507. }
  7508. .am-map-default #BMap_mask {
  7509. width: 100%
  7510. }
  7511. .am-mechat {
  7512. margin: 1rem
  7513. }
  7514. .am-menu,.am-menu ul {
  7515. padding: 0;
  7516. margin: 0
  7517. }
  7518. .am-mechat .section-cbox-wap .cbox-post-wap .post-action-wap .action-function-wap .function-list-wap .list-upload-wap .upload-mutual-wap {
  7519. -webkit-box-sizing: content-box;
  7520. box-sizing: content-box
  7521. }
  7522. .am-menu {
  7523. position: relative
  7524. }
  7525. .am-menu li {
  7526. list-style: none
  7527. }
  7528. .am-menu a:after,.am-menu a:before {
  7529. display: inline-block;
  7530. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  7531. font-size: inherit;
  7532. text-rendering: auto;
  7533. -webkit-font-smoothing: antialiased;
  7534. -moz-osx-font-smoothing: grayscale;
  7535. -webkit-transform: translate(0,0);
  7536. -ms-transform: translate(0,0);
  7537. transform: translate(0,0)
  7538. }
  7539. .am-menu-sub {
  7540. z-index: 1050
  7541. }
  7542. .am-menu-toggle {
  7543. display: none;
  7544. z-index: 1015
  7545. }
  7546. .am-menu-toggle img {
  7547. display: inline-block;
  7548. height: 16px;
  7549. width: auto;
  7550. vertical-align: middle
  7551. }
  7552. .am-menu-nav a {
  7553. display: block;
  7554. padding: .8rem 0;
  7555. -webkit-transition: all .45s;
  7556. transition: all .45s
  7557. }
  7558. .am-menu-default .am-menu-nav {
  7559. padding-top: 8px;
  7560. padding-bottom: 8px
  7561. }
  7562. .am-menu-default .am-menu-nav a {
  7563. text-align: center;
  7564. height: 36px;
  7565. line-height: 36px;
  7566. display: block;
  7567. word-wrap: normal;
  7568. text-overflow: ellipsis;
  7569. white-space: nowrap;
  7570. overflow: hidden;
  7571. padding: 0;
  7572. color: #0e90d2
  7573. }
  7574. .am-menu-default .am-menu-nav>.am-parent>a {
  7575. position: relative;
  7576. -webkit-transition: .15s;
  7577. transition: .15s
  7578. }
  7579. .am-menu-default .am-menu-nav>.am-parent>a:after {
  7580. content: "\f107";
  7581. margin-left: 5px;
  7582. -webkit-transition: .15s;
  7583. transition: .15s
  7584. }
  7585. .am-menu-default .am-menu-nav>.am-parent>a:before {
  7586. position: absolute;
  7587. top: 100%;
  7588. margin-top: -16px;
  7589. left: 50%;
  7590. margin-left: -12px;
  7591. content: "\f0d8";
  7592. display: none;
  7593. color: #f1f1f1;
  7594. font-size: 24px
  7595. }
  7596. .am-menu-default .am-menu-nav>.am-parent.am-open>a {
  7597. color: #095f8a
  7598. }
  7599. .am-menu-default .am-menu-nav>.am-parent.am-open>a:before {
  7600. display: block
  7601. }
  7602. .am-menu-default .am-menu-nav>.am-parent.am-open>a:after {
  7603. -webkit-transform: rotate(-180deg);
  7604. -ms-transform: rotate(-180deg);
  7605. transform: rotate(-180deg)
  7606. }
  7607. .am-menu-default .am-menu-sub {
  7608. position: absolute;
  7609. left: 5px;
  7610. right: 5px;
  7611. background-color: #f1f1f1;
  7612. border-radius: 0;
  7613. padding-top: 8px;
  7614. padding-bottom: 8px
  7615. }
  7616. .am-menu-default .am-menu-sub>li>a {
  7617. color: #555
  7618. }
  7619. @media only screen and (min-width:641px) {
  7620. .am-menu-default .am-menu-nav li {
  7621. width: auto;
  7622. float: left;
  7623. clear: none;
  7624. display: inline
  7625. }
  7626. .am-menu-default .am-menu-nav a {
  7627. padding-left: 1.5rem;
  7628. padding-right: .5rem
  7629. }
  7630. }
  7631. .am-menu-dropdown1 {
  7632. position: relative
  7633. }
  7634. .am-menu-dropdown1 .am-menu-toggle {
  7635. position: absolute;
  7636. right: 5px;
  7637. top: -47px;
  7638. display: block;
  7639. width: 44px;
  7640. height: 44px;
  7641. line-height: 44px;
  7642. text-align: center;
  7643. color: #fff
  7644. }
  7645. .am-menu-dropdown1 a {
  7646. -webkit-transition: all .4s;
  7647. transition: all .4s;
  7648. display: block;
  7649. word-wrap: normal;
  7650. text-overflow: ellipsis;
  7651. white-space: nowrap;
  7652. overflow: hidden
  7653. }
  7654. .am-menu-dropdown1 .am-menu-nav {
  7655. position: absolute;
  7656. left: 0;
  7657. right: 0;
  7658. z-index: 1050
  7659. }
  7660. .am-menu-dropdown1 .am-menu-nav a {
  7661. padding: .8rem
  7662. }
  7663. .am-menu-dropdown1 .am-menu-nav>li {
  7664. width: 100%
  7665. }
  7666. .am-menu-dropdown1 .am-menu-nav>li.am-parent>a {
  7667. position: relative
  7668. }
  7669. .am-menu-dropdown1 .am-menu-nav>li.am-parent>a::before {
  7670. content: "\f067";
  7671. position: absolute;
  7672. right: 1rem;
  7673. top: 1.4rem
  7674. }
  7675. .am-menu-dropdown1 .am-menu-nav>li.am-parent.am-open>a {
  7676. background-color: #0c80ba;
  7677. border-bottom: none;
  7678. color: #fff
  7679. }
  7680. .am-menu-dropdown1 .am-menu-nav>li.am-parent.am-open>a:before {
  7681. content: "\f068"
  7682. }
  7683. .am-menu-dropdown1 .am-menu-nav>li.am-parent.am-open>a:after {
  7684. content: "";
  7685. display: inline-block;
  7686. width: 0;
  7687. height: 0;
  7688. vertical-align: middle;
  7689. border-top: 8px solid #0c80ba;
  7690. border-right: 8px solid transparent;
  7691. border-left: 8px solid transparent;
  7692. border-bottom: 0 dotted;
  7693. -webkit-transform: rotate(360deg);
  7694. -ms-transform: rotate(360deg);
  7695. transform: rotate(360deg);
  7696. position: absolute;
  7697. top: 100%;
  7698. left: 50%;
  7699. margin-left: -4px
  7700. }
  7701. .am-menu-dropdown1 .am-menu-nav>li>a {
  7702. border-bottom: 1px solid #0b76ac;
  7703. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  7704. box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  7705. background-color: #0e90d2;
  7706. color: #fff;
  7707. height: 49px;
  7708. line-height: 49px;
  7709. padding: 0;
  7710. text-indent: 10px
  7711. }
  7712. .am-menu-dropdown1 .am-menu-sub {
  7713. background-color: #fff
  7714. }
  7715. .am-menu-dropdown1 .am-menu-sub a {
  7716. color: #555;
  7717. height: 44px;
  7718. line-height: 44px;
  7719. text-indent: 5px;
  7720. padding: 0
  7721. }
  7722. .am-menu-dropdown1 .am-menu-sub a:before {
  7723. content: "\f105";
  7724. color: #aaa;
  7725. font-size: 16px;
  7726. margin-right: 5px
  7727. }
  7728. .am-menu-dropdown2 .am-menu-toggle {
  7729. position: absolute;
  7730. right: 5px;
  7731. top: -47px;
  7732. display: block;
  7733. width: 44px;
  7734. height: 44px;
  7735. line-height: 44px;
  7736. text-align: center;
  7737. color: #fff
  7738. }
  7739. .am-menu-dropdown2 .am-menu-nav {
  7740. position: absolute;
  7741. left: 0;
  7742. right: 0;
  7743. background-color: #f5f5f5;
  7744. -webkit-box-shadow: 0 0 5px rgba(0,0,0,.2);
  7745. box-shadow: 0 0 5px rgba(0,0,0,.2);
  7746. z-index: 1050;
  7747. padding-top: 8px;
  7748. padding-bottom: 8px
  7749. }
  7750. .am-menu-dropdown2 .am-menu-nav>li.am-parent.am-open>a,.am-menu-dropdown2 .am-menu-nav>li.am-parent>a {
  7751. position: relative
  7752. }
  7753. .am-menu-dropdown2 .am-menu-nav a {
  7754. height: 38px;
  7755. line-height: 38px;
  7756. padding: 0;
  7757. text-align: center
  7758. }
  7759. .am-menu-dropdown2 .am-menu-nav>li>a {
  7760. color: #333
  7761. }
  7762. .am-menu-dropdown2 .am-menu-nav>li.am-parent>a:after {
  7763. content: "\f107";
  7764. margin-left: 5px;
  7765. -webkit-transition: -webkit-transform .2s;
  7766. transition: -webkit-transform .2s;
  7767. transition: transform .2s;
  7768. transition: transform .2s,-webkit-transform .2s
  7769. }
  7770. .am-menu-dropdown2 .am-menu-nav>li.am-parent.am-open>a:after {
  7771. color: #0e90d2;
  7772. -webkit-transform: rotate(180deg);
  7773. -ms-transform: rotate(180deg);
  7774. transform: rotate(180deg)
  7775. }
  7776. .am-menu-dropdown2 .am-menu-nav>li.am-parent.am-open>a:before {
  7777. position: absolute;
  7778. top: 100%;
  7779. margin-top: -16px;
  7780. left: 50%;
  7781. margin-left: -12px;
  7782. font-size: 24px;
  7783. content: "\f0d8";
  7784. color: rgba(0,0,0,.2)
  7785. }
  7786. .am-menu-dropdown2 .am-menu-sub {
  7787. position: absolute;
  7788. left: 5px;
  7789. right: 5px;
  7790. padding: 8px 0;
  7791. border-radius: 2px;
  7792. -webkit-box-shadow: 0 0 3px rgba(0,0,0,.15);
  7793. box-shadow: 0 0 3px rgba(0,0,0,.15);
  7794. background-color: #fff;
  7795. z-index: 1055
  7796. }
  7797. .am-menu-dropdown2 .am-menu-sub a {
  7798. padding: 0;
  7799. height: 35px;
  7800. color: #555;
  7801. line-height: 35px
  7802. }
  7803. @media only screen and (min-width:641px) {
  7804. .am-menu-dropdown2 .am-menu-toggle {
  7805. display: none!important
  7806. }
  7807. .am-menu-dropdown2 .am-menu-nav {
  7808. position: static;
  7809. display: block
  7810. }
  7811. .am-menu-dropdown2 .am-menu-nav>li {
  7812. float: none;
  7813. width: auto;
  7814. display: inline-block
  7815. }
  7816. .am-menu-dropdown2 .am-menu-nav>li a {
  7817. padding-left: 1.5rem;
  7818. padding-right: 1.5rem
  7819. }
  7820. .am-menu-dropdown2 .am-menu-sub {
  7821. left: auto;
  7822. right: auto
  7823. }
  7824. .am-menu-dropdown2 .am-menu-sub>li {
  7825. float: none;
  7826. width: auto
  7827. }
  7828. .am-menu-dropdown2 .am-menu-sub a {
  7829. padding-left: 2rem;
  7830. padding-right: 2rem
  7831. }
  7832. }
  7833. .am-menu-slide1 .am-menu-toggle {
  7834. position: absolute;
  7835. right: 5px;
  7836. top: -47px;
  7837. display: block;
  7838. width: 44px;
  7839. height: 44px;
  7840. line-height: 44px;
  7841. text-align: center;
  7842. color: #fff
  7843. }
  7844. .am-menu-slide1 .am-menu-nav {
  7845. background-color: #f5f5f5;
  7846. padding-top: 8px;
  7847. padding-bottom: 8px
  7848. }
  7849. .am-menu-slide1 .am-menu-nav.am-in:before {
  7850. display: inline-block;
  7851. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  7852. text-rendering: auto;
  7853. -webkit-font-smoothing: antialiased;
  7854. -moz-osx-font-smoothing: grayscale;
  7855. -webkit-transform: translate(0,0);
  7856. -ms-transform: translate(0,0);
  7857. transform: translate(0,0);
  7858. content: "\f0d8";
  7859. font-size: 24px;
  7860. color: #f5f5f5;
  7861. position: absolute;
  7862. right: 16px;
  7863. top: -16px
  7864. }
  7865. .am-menu-slide1 .am-menu-nav a {
  7866. line-height: 38px;
  7867. height: 38px;
  7868. display: block;
  7869. padding: 0;
  7870. text-align: center
  7871. }
  7872. .am-menu-slide1 .am-menu-nav>li>a {
  7873. color: #333;
  7874. display: block;
  7875. word-wrap: normal;
  7876. text-overflow: ellipsis;
  7877. white-space: nowrap;
  7878. overflow: hidden
  7879. }
  7880. .am-menu-slide1 .am-menu-nav>.am-parent>a {
  7881. position: relative;
  7882. -webkit-transition: .15s;
  7883. transition: .15s
  7884. }
  7885. .am-menu-slide1 .am-menu-nav>.am-parent>a:after {
  7886. content: "\f107";
  7887. margin-left: 5px;
  7888. -webkit-transition: .15s;
  7889. transition: .15s
  7890. }
  7891. .am-menu-slide1 .am-menu-nav>.am-parent>a:before {
  7892. position: absolute;
  7893. top: 100%;
  7894. margin-top: -16px;
  7895. left: 50%;
  7896. margin-left: -12px;
  7897. content: "\f0d8";
  7898. display: none;
  7899. color: #0e90d2;
  7900. font-size: 24px
  7901. }
  7902. .am-menu-slide1 .am-menu-nav>.am-parent.am-open>a {
  7903. color: #0e90d2
  7904. }
  7905. .am-menu-slide1 .am-menu-nav>.am-parent.am-open>a:before {
  7906. display: block
  7907. }
  7908. .am-menu-slide1 .am-menu-nav>.am-parent.am-open>a:after {
  7909. -webkit-transform: rotate(-180deg);
  7910. -ms-transform: rotate(-180deg);
  7911. transform: rotate(-180deg)
  7912. }
  7913. .am-menu-slide1 .am-menu-sub {
  7914. position: absolute;
  7915. left: 5px;
  7916. right: 5px;
  7917. background-color: #0e90d2;
  7918. border-radius: 0;
  7919. padding-top: 8px;
  7920. padding-bottom: 8px
  7921. }
  7922. .am-menu-slide1 .am-menu-sub>li>a {
  7923. color: #fff
  7924. }
  7925. @media only screen and (min-width:641px) {
  7926. .am-menu-slide1 .am-menu-toggle {
  7927. display: none!important
  7928. }
  7929. .am-menu-slide1 .am-menu-nav {
  7930. background-color: #f5f5f5;
  7931. display: block
  7932. }
  7933. .am-menu-slide1 .am-menu-nav.am-in:before {
  7934. display: none
  7935. }
  7936. .am-menu-slide1 .am-menu-nav li {
  7937. width: auto;
  7938. clear: none
  7939. }
  7940. .am-menu-slide1 .am-menu-nav li a {
  7941. padding-left: 1.5rem;
  7942. padding-right: 1.5rem
  7943. }
  7944. }
  7945. .am-menu-offcanvas1 .am-menu-toggle,.am-menu-offcanvas2 .am-menu-toggle {
  7946. width: 44px;
  7947. display: block;
  7948. height: 44px;
  7949. line-height: 44px;
  7950. text-align: center
  7951. }
  7952. .am-menu-offcanvas1 .am-menu-toggle {
  7953. position: absolute;
  7954. right: 5px;
  7955. top: -47px;
  7956. color: #fff
  7957. }
  7958. .am-menu-offcanvas1 .am-menu-nav {
  7959. border-bottom: 1px solid rgba(0,0,0,.3);
  7960. -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.05);
  7961. box-shadow: 0 1px 0 rgba(255,255,255,.05)
  7962. }
  7963. .am-menu-offcanvas1 .am-menu-nav>li>a,.am-menu-offcanvas1 .am-menu-sub {
  7964. border-top: 1px solid rgba(0,0,0,.3);
  7965. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.05)
  7966. }
  7967. .am-menu-offcanvas1 .am-menu-nav>li>a {
  7968. height: 44px;
  7969. line-height: 44px;
  7970. text-indent: 15px;
  7971. padding: 0;
  7972. position: relative;
  7973. color: #ccc;
  7974. box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  7975. text-shadow: 0 1px 0 rgba(0,0,0,.5)
  7976. }
  7977. .am-menu-offcanvas1 .am-menu-nav>.am-open>a,.am-menu-offcanvas1 .am-menu-nav>li>a:focus,.am-menu-offcanvas1 .am-menu-nav>li>a:hover {
  7978. background-color: #474747;
  7979. color: #fff;
  7980. outline: 0
  7981. }
  7982. .am-menu-offcanvas1 .am-menu-nav>.am-active>a {
  7983. background-color: #1a1a1a;
  7984. color: #fff
  7985. }
  7986. .am-menu-offcanvas1 .am-menu-nav>.am-parent>a {
  7987. -webkit-transition: all .3s;
  7988. transition: all .3s
  7989. }
  7990. .am-menu-offcanvas1 .am-menu-nav>.am-parent>a:after {
  7991. content: "\f104";
  7992. position: absolute;
  7993. right: 1.5rem;
  7994. top: 1.3rem
  7995. }
  7996. .am-menu-offcanvas1 .am-menu-nav>.am-parent.am-open>a:after {
  7997. content: "\f107"
  7998. }
  7999. .am-menu-offcanvas1 .am-menu-sub {
  8000. box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  8001. padding: 5px 0 5px 15px;
  8002. background-color: #1a1a1a;
  8003. font-size: 1.4rem
  8004. }
  8005. .am-menu-offcanvas1 .am-menu-sub a {
  8006. color: #eee
  8007. }
  8008. .am-menu-offcanvas1 .am-menu-sub a:hover {
  8009. color: #fff
  8010. }
  8011. .am-menu-offcanvas1 .am-nav-divider {
  8012. border-top: 1px solid #1a1a1a
  8013. }
  8014. .am-menu-offcanvas2 .am-menu-toggle {
  8015. position: absolute;
  8016. right: 5px;
  8017. top: -47px;
  8018. color: #fff
  8019. }
  8020. .am-menu-offcanvas2 .am-menu-nav {
  8021. padding: 10px 5px
  8022. }
  8023. .am-menu-offcanvas2 .am-menu-nav>li {
  8024. padding: 5px
  8025. }
  8026. .am-menu-offcanvas2 .am-menu-nav>li>a {
  8027. -webkit-transition: all .3s;
  8028. transition: all .3s;
  8029. background-color: #404040;
  8030. color: #ccc;
  8031. display: block;
  8032. word-wrap: normal;
  8033. text-overflow: ellipsis;
  8034. white-space: nowrap;
  8035. overflow: hidden;
  8036. border: 1px solid rgba(0,0,0,.3);
  8037. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  8038. box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  8039. text-shadow: 0 1px 0 rgba(0,0,0,.5);
  8040. height: 44px;
  8041. line-height: 44px;
  8042. padding: 0;
  8043. text-align: center
  8044. }
  8045. .am-menu-offcanvas2 .am-menu-nav>li>a:focus,.am-menu-offcanvas2 .am-menu-nav>li>a:hover {
  8046. background-color: #262626;
  8047. color: #fff;
  8048. outline: 0
  8049. }
  8050. .am-menu-offcanvas2 .am-menu-nav>.am-active>a {
  8051. background-color: #262626;
  8052. color: #fff
  8053. }
  8054. .am-menu-stack .am-menu-nav {
  8055. border-bottom: 1px solid #dedede;
  8056. -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.05);
  8057. box-shadow: 0 1px 0 rgba(255,255,255,.05)
  8058. }
  8059. .am-menu-stack .am-menu-nav>.am-parent>a {
  8060. -webkit-transition: all .3s;
  8061. transition: all .3s
  8062. }
  8063. .am-menu-stack .am-menu-nav>.am-parent>a:after {
  8064. content: "\f105";
  8065. position: absolute;
  8066. right: 1.5rem;
  8067. top: 1.3rem;
  8068. -webkit-transition: all .15s;
  8069. transition: all .15s
  8070. }
  8071. .am-menu-stack .am-menu-nav>.am-parent.am-open>a:after {
  8072. -webkit-transform: rotate(90deg);
  8073. -ms-transform: rotate(90deg);
  8074. transform: rotate(90deg)
  8075. }
  8076. .am-menu-stack .am-menu-nav>li>a {
  8077. position: relative;
  8078. color: #333;
  8079. background-color: #f5f5f5;
  8080. border-top: 1px solid #dedede;
  8081. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  8082. box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  8083. height: 49px;
  8084. line-height: 49px;
  8085. text-indent: 10px;
  8086. padding: 0
  8087. }
  8088. .am-menu-stack .am-menu-nav>.am-open>a,.am-menu-stack .am-menu-nav>li>a:focus,.am-menu-stack .am-menu-nav>li>a:hover {
  8089. background-color: #e5e5e5;
  8090. color: #222;
  8091. outline: 0
  8092. }
  8093. .am-menu-stack .am-menu-sub {
  8094. padding: 0;
  8095. font-size: 1.4rem;
  8096. border-top: 1px solid #dedede
  8097. }
  8098. .am-menu-stack .am-menu-sub a {
  8099. border-bottom: 1px solid #dedede;
  8100. padding-left: 2rem;
  8101. color: #444
  8102. }
  8103. .am-menu-stack .am-menu-sub a:hover {
  8104. color: #333
  8105. }
  8106. .am-menu-stack .am-menu-sub li:last-child a {
  8107. border-bottom: none
  8108. }
  8109. .am-menu-stack .am-menu-sub>li>a {
  8110. height: 44px;
  8111. line-height: 44px;
  8112. text-indent: 15px;
  8113. padding: 0
  8114. }
  8115. @media only screen and (min-width:641px) {
  8116. .am-menu-stack .am-menu-nav {
  8117. background-color: #f5f5f5
  8118. }
  8119. .am-menu-stack .am-menu-nav>li {
  8120. float: left;
  8121. width: auto;
  8122. clear: none!important;
  8123. display: inline-block
  8124. }
  8125. .am-menu-stack .am-menu-nav>li a {
  8126. padding-left: 1.5rem;
  8127. padding-right: 1.5rem
  8128. }
  8129. .am-menu-stack .am-menu-nav>li.am-parent>a:after {
  8130. position: static;
  8131. content: "\f107"
  8132. }
  8133. .am-menu-stack .am-menu-nav>li.am-parent.am-open a {
  8134. border-bottom: none
  8135. }
  8136. .am-menu-stack .am-menu-nav>li.am-parent.am-open a:after {
  8137. -webkit-transform: rotateX(-180deg);
  8138. transform: rotateX(-180deg)
  8139. }
  8140. .am-menu-stack .am-menu-nav>li.am-parent.am-open .am-menu-sub {
  8141. background-color: #e5e5e5
  8142. }
  8143. .am-menu-stack .am-menu-sub {
  8144. position: absolute;
  8145. left: 0;
  8146. right: 0;
  8147. background-color: #ddd;
  8148. border-top: none
  8149. }
  8150. .am-menu-stack .am-menu-sub li {
  8151. width: auto;
  8152. float: left;
  8153. clear: none
  8154. }
  8155. }
  8156. .am-navbar {
  8157. position: fixed;
  8158. left: 0;
  8159. bottom: 0;
  8160. width: 100%;
  8161. height: 49px;
  8162. line-height: 49px;
  8163. z-index: 1010
  8164. }
  8165. .am-navbar ul {
  8166. padding-left: 0;
  8167. margin: 0;
  8168. list-style: none;
  8169. width: 100%
  8170. }
  8171. .am-navbar .am-navbar-nav {
  8172. padding-left: 8px;
  8173. padding-right: 8px;
  8174. text-align: center;
  8175. overflow: hidden;
  8176. display: -webkit-box;
  8177. display: -webkit-flex;
  8178. display: -ms-flexbox;
  8179. display: flex
  8180. }
  8181. .am-navbar .am-navbar-nav li {
  8182. -webkit-box-flex: 1;
  8183. -webkit-flex: 1;
  8184. -ms-flex: 1;
  8185. flex: 1;
  8186. float: none
  8187. }
  8188. .am-navbar-nav {
  8189. position: relative;
  8190. z-index: 1015
  8191. }
  8192. .am-navbar-nav a {
  8193. display: inline-block;
  8194. width: 100%;
  8195. height: 49px;
  8196. line-height: 20px
  8197. }
  8198. .am-navbar-nav a img {
  8199. display: block;
  8200. vertical-align: middle;
  8201. height: 24px;
  8202. width: 24px;
  8203. margin: 4px auto 0
  8204. }
  8205. .am-navbar-nav a [class*=am-icon] {
  8206. width: 24px;
  8207. height: 24px;
  8208. margin: 4px auto 0;
  8209. display: block;
  8210. line-height: 24px
  8211. }
  8212. .am-navbar-nav a [class*=am-icon]:before {
  8213. font-size: 22px;
  8214. vertical-align: middle
  8215. }
  8216. .am-navbar-nav a .am-navbar-label {
  8217. padding-top: 2px;
  8218. line-height: 1;
  8219. font-size: 12px;
  8220. display: block;
  8221. word-wrap: normal;
  8222. text-overflow: ellipsis;
  8223. white-space: nowrap;
  8224. overflow: hidden
  8225. }
  8226. .am-navbar-more [class*=am-icon-] {
  8227. -webkit-transition: .15s;
  8228. transition: .15s
  8229. }
  8230. .am-navbar-more.am-active [class*=am-icon-] {
  8231. -webkit-transform: rotateX(-180deg);
  8232. transform: rotateX(-180deg)
  8233. }
  8234. .am-navbar-actions {
  8235. position: absolute;
  8236. bottom: 49px;
  8237. right: 0;
  8238. left: 0;
  8239. z-index: 1009;
  8240. opacity: 0;
  8241. -webkit-transition: .3s;
  8242. transition: .3s;
  8243. -webkit-transform: translate(0,100%);
  8244. -ms-transform: translate(0,100%);
  8245. transform: translate(0,100%)
  8246. }
  8247. .am-navbar-actions.am-active {
  8248. opacity: 1;
  8249. -webkit-transform: translate(0,0);
  8250. -ms-transform: translate(0,0);
  8251. transform: translate(0,0)
  8252. }
  8253. .am-slider-b1 .am-direction-nav a:before,.am-slider-b2 .am-direction-nav a:before {
  8254. text-rendering: auto;
  8255. -moz-osx-font-smoothing: grayscale;
  8256. -webkit-transform: translate(0,0)
  8257. }
  8258. .am-navbar-actions li {
  8259. line-height: 42px;
  8260. position: relative
  8261. }
  8262. .am-navbar-actions li a {
  8263. display: block;
  8264. width: 100%;
  8265. height: 40px;
  8266. -webkit-box-shadow: inset 0 1px rgba(220,220,220,.25);
  8267. box-shadow: inset 0 1px rgba(220,220,220,.25);
  8268. padding-left: 20px;
  8269. padding-right: 36px
  8270. }
  8271. .am-navbar-actions li a :after {
  8272. font-family: FontAwesome,sans-serif;
  8273. content: "\f105";
  8274. display: inline-block;
  8275. position: absolute;
  8276. top: 0;
  8277. right: 20px
  8278. }
  8279. .am-navbar-actions li a img {
  8280. vertical-align: middle;
  8281. height: 20px;
  8282. width: 20px;
  8283. display: inline
  8284. }
  8285. #am-navbar-qrcode {
  8286. width: 220px;
  8287. height: 220px;
  8288. margin-left: -110px
  8289. }
  8290. .am-pagination-default,.am-pagination-select {
  8291. margin-left: 10px;
  8292. margin-right: 10px;
  8293. font-size: 1.6rem
  8294. }
  8295. #am-navbar-qrcode .am-modal-bd {
  8296. padding: 10px
  8297. }
  8298. #am-navbar-qrcode canvas {
  8299. display: block;
  8300. width: 200px;
  8301. height: 200px
  8302. }
  8303. .am-with-fixed-navbar {
  8304. padding-bottom: 54px
  8305. }
  8306. .am-navbar-default a {
  8307. color: #fff
  8308. }
  8309. .am-navbar-default .am-navbar-nav {
  8310. background-color: #0e90d2
  8311. }
  8312. .am-navbar-default .am-navbar-actions {
  8313. background-color: #0d86c4
  8314. }
  8315. .am-navbar-default .am-navbar-actions a {
  8316. border-bottom: 1px solid #0b6fa2
  8317. }
  8318. .am-pagination {
  8319. position: relative
  8320. }
  8321. .am-pagination-default .am-pagination-next,.am-pagination-default .am-pagination-prev {
  8322. float: none
  8323. }
  8324. .am-paragraph-default p,.am-paragraph-table-container table td a {
  8325. font-size: 1.4rem
  8326. }
  8327. .am-pagination-select>li>a {
  8328. line-height: 36px;
  8329. background-color: #eee;
  8330. padding: 0 15px;
  8331. border: 0;
  8332. color: #555
  8333. }
  8334. .am-pagination-select .am-pagination-select {
  8335. position: absolute;
  8336. top: 0;
  8337. left: 50%;
  8338. margin-left: -35px;
  8339. width: 70px;
  8340. height: 36px;
  8341. text-align: center;
  8342. border-radius: 0
  8343. }
  8344. .am-pagination-select .am-pagination-select select {
  8345. display: block;
  8346. border: 0;
  8347. line-height: 36px;
  8348. width: 70px;
  8349. height: 36px;
  8350. border-radius: 0;
  8351. color: #555;
  8352. background-color: #eee;
  8353. -webkit-appearance: none;
  8354. -moz-appearance: none;
  8355. appearance: none;
  8356. padding-left: 18px
  8357. }
  8358. .am-slider-a1 .am-control-nav,.am-slider-a2 .am-control-nav,.am-slider-a3 .am-control-nav,.am-slider-a4 .am-control-nav,.am-slider-a5 .am-control-nav {
  8359. line-height: 0;
  8360. position: absolute;
  8361. text-align: center
  8362. }
  8363. .am-paragraph p {
  8364. margin: 10px 0
  8365. }
  8366. .am-paragraph h1,.am-paragraph h2,.am-paragraph h3,.am-paragraph h4,.am-paragraph h5,.am-paragraph h6 {
  8367. color: #222
  8368. }
  8369. .am-paragraph table {
  8370. max-width: none
  8371. }
  8372. .am-paragraph-table-container {
  8373. overflow: hidden;
  8374. background: #eee;
  8375. max-width: none
  8376. }
  8377. .am-paragraph-table-container table {
  8378. width: 100%;
  8379. max-width: none
  8380. }
  8381. .am-paragraph-table-container table th {
  8382. background: #bce5fb;
  8383. height: 40px;
  8384. border: 1px solid #999;
  8385. text-align: center
  8386. }
  8387. .am-paragraph-table-container table td {
  8388. border: 1px solid #999;
  8389. text-align: center;
  8390. vertical-align: middle;
  8391. background: #fff
  8392. }
  8393. .am-paragraph-table-container table td p {
  8394. text-indent: 0;
  8395. font-size: 1.4rem
  8396. }
  8397. .am-paragraph-default {
  8398. margin: 0 10px;
  8399. color: #333;
  8400. background-color: transparent
  8401. }
  8402. .am-paragraph-default img {
  8403. max-width: 98%;
  8404. display: block;
  8405. margin: 5px auto;
  8406. border: 1px solid #eee;
  8407. padding: 2px
  8408. }
  8409. .am-paragraph-default a {
  8410. color: #0e90d2
  8411. }
  8412. .am-slider-a1 {
  8413. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2);
  8414. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8415. }
  8416. .am-slider-a1 .am-viewport {
  8417. max-height: 2000px;
  8418. -webkit-transition: all 1s ease;
  8419. transition: all 1s ease
  8420. }
  8421. .loading .am-slider-a1 .am-viewport {
  8422. max-height: 300px
  8423. }
  8424. .am-slider-a1 .am-control-nav {
  8425. width: 100%;
  8426. bottom: 5px
  8427. }
  8428. .am-slider-a1 .am-control-nav li {
  8429. margin: 0 6px;
  8430. display: inline-block
  8431. }
  8432. .am-slider-a1 .am-control-nav li a {
  8433. width: 8px;
  8434. height: 8px;
  8435. display: block;
  8436. background-color: rgba(0,0,0,.5);
  8437. cursor: pointer;
  8438. text-indent: -9999px;
  8439. border-radius: 50%;
  8440. -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
  8441. box-shadow: inset 0 0 3px rgba(0,0,0,.3)
  8442. }
  8443. .am-slider-a1 .am-control-nav li a:hover {
  8444. background-color: rgba(0,0,0,.7)
  8445. }
  8446. .am-slider-a1 .am-control-nav li a.am-active {
  8447. background-color: #0e90d2;
  8448. cursor: default
  8449. }
  8450. .am-slider-a1 .am-direction-nav,.am-slider-a1 .am-pauseplay {
  8451. display: none
  8452. }
  8453. .am-slider-a2 {
  8454. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2);
  8455. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8456. }
  8457. .am-slider-a2 .am-viewport {
  8458. max-height: 2000px;
  8459. -webkit-transition: all 1s ease;
  8460. transition: all 1s ease
  8461. }
  8462. .loading .am-slider-a2 .am-viewport {
  8463. max-height: 300px
  8464. }
  8465. .am-slider-a2 .am-control-nav {
  8466. width: 100%;
  8467. bottom: 5px
  8468. }
  8469. .am-slider-a2 .am-control-nav li {
  8470. margin: 0 6px;
  8471. display: inline-block
  8472. }
  8473. .am-slider-a2 .am-control-nav li a {
  8474. width: 8px;
  8475. height: 8px;
  8476. display: block;
  8477. background-color: rgba(0,0,0,.5);
  8478. cursor: pointer;
  8479. text-indent: -9999px;
  8480. -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
  8481. box-shadow: inset 0 0 3px rgba(0,0,0,.3)
  8482. }
  8483. .am-slider-a2 .am-control-nav li a:hover {
  8484. background-color: rgba(0,0,0,.7)
  8485. }
  8486. .am-slider-a2 .am-control-nav li a.am-active {
  8487. background: #0e93d7;
  8488. cursor: default
  8489. }
  8490. .am-slider-a2 .am-direction-nav,.am-slider-a2 .am-pauseplay {
  8491. display: none
  8492. }
  8493. .am-slider-a3 {
  8494. margin-bottom: 20px;
  8495. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2);
  8496. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8497. }
  8498. .am-slider-a3 .am-viewport {
  8499. max-height: 2000px;
  8500. -webkit-transition: all 1s ease;
  8501. transition: all 1s ease
  8502. }
  8503. .loading .am-slider-a3 .am-viewport {
  8504. max-height: 300px
  8505. }
  8506. .am-slider-a3 .am-control-nav {
  8507. width: 100%;
  8508. bottom: -20px;
  8509. height: 20px;
  8510. background-color: #000;
  8511. padding-top: 5px
  8512. }
  8513. .am-slider-a3 .am-control-nav li {
  8514. margin: 0 6px;
  8515. display: inline-block
  8516. }
  8517. .am-slider-a3 .am-control-nav li a {
  8518. width: 8px;
  8519. height: 8px;
  8520. display: block;
  8521. background-color: rgba(0,0,0,.5);
  8522. cursor: pointer;
  8523. text-indent: -9999px;
  8524. border-radius: 50%;
  8525. -webkit-box-shadow: inset 0 0 3px rgba(200,200,200,.3);
  8526. box-shadow: inset 0 0 3px rgba(200,200,200,.3)
  8527. }
  8528. .am-slider-a3 .am-control-nav li a:hover {
  8529. background-color: rgba(0,0,0,.7)
  8530. }
  8531. .am-slider-a3 .am-control-nav li a.am-active {
  8532. background: #0e90d2;
  8533. cursor: default
  8534. }
  8535. .am-slider-a3 .am-direction-nav,.am-slider-a3 .am-pauseplay {
  8536. display: none
  8537. }
  8538. .am-slider-a4 {
  8539. margin-bottom: 30px;
  8540. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2);
  8541. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8542. }
  8543. .am-slider-a4 .am-viewport {
  8544. max-height: 2000px;
  8545. -webkit-transition: all 1s ease;
  8546. transition: all 1s ease
  8547. }
  8548. .loading .am-slider-a4 .am-viewport {
  8549. max-height: 300px
  8550. }
  8551. .am-slider-a4 .am-control-nav {
  8552. width: 100%;
  8553. bottom: -15px
  8554. }
  8555. .am-slider-a4 .am-control-nav li {
  8556. margin: 0 6px;
  8557. display: inline-block
  8558. }
  8559. .am-slider-a4 .am-control-nav li a {
  8560. width: 8px;
  8561. height: 8px;
  8562. display: block;
  8563. background-color: rgba(0,0,0,.5);
  8564. cursor: pointer;
  8565. text-indent: -9999px;
  8566. border-radius: 50%;
  8567. -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
  8568. box-shadow: inset 0 0 3px rgba(0,0,0,.3)
  8569. }
  8570. .am-slider-a5,.am-slider-b1 {
  8571. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8572. }
  8573. .am-slider-a4 .am-control-nav li a:hover {
  8574. background-color: rgba(0,0,0,.7)
  8575. }
  8576. .am-slider-a4 .am-control-nav li a.am-active {
  8577. background-color: #0e90d2;
  8578. cursor: default
  8579. }
  8580. .am-slider-a4 .am-direction-nav,.am-slider-a4 .am-pauseplay {
  8581. display: none
  8582. }
  8583. .am-slider-a5 {
  8584. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8585. }
  8586. .am-slider-a5 .am-viewport {
  8587. max-height: 2000px;
  8588. -webkit-transition: all 1s ease;
  8589. transition: all 1s ease
  8590. }
  8591. .loading .am-slider-a5 .am-viewport {
  8592. max-height: 300px
  8593. }
  8594. .am-slider-a5 .am-control-nav {
  8595. width: 100%;
  8596. height: 6px;
  8597. display: table;
  8598. bottom: 0;
  8599. font-size: 0
  8600. }
  8601. .am-slider-a5 .am-control-nav li {
  8602. display: table-cell
  8603. }
  8604. .am-slider-a5 .am-control-nav li a {
  8605. width: 100%;
  8606. height: 6px;
  8607. display: block;
  8608. background-color: rgba(0,0,0,.5);
  8609. cursor: pointer;
  8610. text-indent: -9999px
  8611. }
  8612. .am-slider-a5 .am-control-nav li a:hover {
  8613. background-color: rgba(0,0,0,.7)
  8614. }
  8615. .am-slider-a5 .am-control-nav li a.am-active {
  8616. background-color: #0e90d2;
  8617. cursor: default
  8618. }
  8619. .am-slider-a5 .am-direction-nav,.am-slider-a5 .am-pauseplay {
  8620. display: none
  8621. }
  8622. .am-slider-b1 {
  8623. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8624. }
  8625. .am-slider-b2,.am-slider-b3 {
  8626. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8627. }
  8628. .am-slider-b1 .am-viewport {
  8629. max-height: 2000px;
  8630. -webkit-transition: all 1s ease;
  8631. transition: all 1s ease
  8632. }
  8633. .loading .am-slider-b1 .am-viewport {
  8634. max-height: 300px
  8635. }
  8636. .am-slider-b1 .am-direction-nav a {
  8637. -webkit-box-sizing: content-box;
  8638. box-sizing: content-box;
  8639. display: block;
  8640. width: 24px;
  8641. height: 24px;
  8642. padding: 8px 0;
  8643. margin: -20px 0 0;
  8644. position: absolute;
  8645. top: 50%;
  8646. z-index: 10;
  8647. overflow: hidden;
  8648. opacity: .45;
  8649. cursor: pointer;
  8650. color: #fff;
  8651. text-shadow: 1px 1px 0 rgba(255,255,255,.3);
  8652. background-color: rgba(0,0,0,.5);
  8653. font-size: 0;
  8654. text-align: center;
  8655. -webkit-transition: all .3s ease;
  8656. transition: all .3s ease
  8657. }
  8658. .am-slider-b1 .am-direction-nav a:before {
  8659. display: inline-block;
  8660. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  8661. -webkit-font-smoothing: antialiased;
  8662. -ms-transform: translate(0,0);
  8663. transform: translate(0,0);
  8664. content: "\f053";
  8665. font-size: 24px
  8666. }
  8667. .am-slider-b1 .am-direction-nav a.am-prev {
  8668. left: 0;
  8669. padding-right: 5px;
  8670. border-bottom-right-radius: 5px;
  8671. border-top-right-radius: 5px
  8672. }
  8673. .am-slider-b1 .am-direction-nav a.am-next {
  8674. right: 0;
  8675. padding-left: 5px;
  8676. border-bottom-left-radius: 5px;
  8677. border-top-left-radius: 5px
  8678. }
  8679. .am-slider-b2 .am-direction-nav a,.am-slider-b4 .am-direction-nav a {
  8680. position: absolute;
  8681. width: 24px;
  8682. padding: 4px;
  8683. border-radius: 50%;
  8684. color: #fff;
  8685. overflow: hidden;
  8686. height: 24px;
  8687. top: 50%;
  8688. z-index: 10;
  8689. text-shadow: 1px 1px 0 rgba(255,255,255,.3)
  8690. }
  8691. .am-slider-b1 .am-direction-nav a.am-next:before {
  8692. content: "\f054"
  8693. }
  8694. .am-slider-b1 .am-direction-nav .am-disabled {
  8695. opacity: 0!important;
  8696. cursor: default
  8697. }
  8698. .am-slider-b1:hover .am-prev {
  8699. opacity: .7
  8700. }
  8701. .am-slider-b1:hover .am-prev:hover {
  8702. opacity: 1
  8703. }
  8704. .am-slider-b1:hover .am-next {
  8705. opacity: .7
  8706. }
  8707. .am-slider-b1:hover .am-next:hover {
  8708. opacity: 1
  8709. }
  8710. .am-slider-b1 .am-control-nav,.am-slider-b1 .am-pauseplay {
  8711. display: none
  8712. }
  8713. .am-slider-b2 {
  8714. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8715. }
  8716. .am-slider-b2 .am-viewport {
  8717. max-height: 2000px;
  8718. -webkit-transition: all 1s ease;
  8719. transition: all 1s ease
  8720. }
  8721. .loading .am-slider-b2 .am-viewport {
  8722. max-height: 300px
  8723. }
  8724. .am-slider-b2 .am-direction-nav a {
  8725. -webkit-box-sizing: content-box;
  8726. box-sizing: content-box;
  8727. display: block;
  8728. margin: -16px 0 0;
  8729. opacity: .45;
  8730. cursor: pointer;
  8731. background-color: rgba(0,0,0,.5);
  8732. font-size: 0;
  8733. text-align: center;
  8734. -webkit-transition: all .3s ease;
  8735. transition: all .3s ease
  8736. }
  8737. .am-slider-b2 .am-direction-nav a:before {
  8738. display: inline-block;
  8739. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  8740. -webkit-font-smoothing: antialiased;
  8741. -ms-transform: translate(0,0);
  8742. transform: translate(0,0);
  8743. content: "\f053";
  8744. font-size: 16px;
  8745. line-height: 24px
  8746. }
  8747. .am-slider-b3 .am-direction-nav a:before,.am-slider-b4 .am-direction-nav a:before {
  8748. -moz-osx-font-smoothing: grayscale;
  8749. -webkit-transform: translate(0,0);
  8750. text-rendering: auto
  8751. }
  8752. .am-slider-b2 .am-direction-nav a.am-prev {
  8753. left: 5px
  8754. }
  8755. .am-slider-b2 .am-direction-nav a.am-next {
  8756. right: 5px
  8757. }
  8758. .am-slider-b2 .am-direction-nav a.am-next:before {
  8759. content: "\f054"
  8760. }
  8761. .am-slider-b2 .am-direction-nav .am-disabled {
  8762. opacity: 0!important;
  8763. cursor: default
  8764. }
  8765. .am-slider-b2:hover .am-prev {
  8766. opacity: .7
  8767. }
  8768. .am-slider-b2:hover .am-prev:hover {
  8769. opacity: 1
  8770. }
  8771. .am-slider-b2:hover .am-next {
  8772. opacity: .7
  8773. }
  8774. .am-slider-b2:hover .am-next:hover {
  8775. opacity: 1
  8776. }
  8777. .am-slider-b2 .am-control-nav,.am-slider-b2 .am-pauseplay {
  8778. display: none
  8779. }
  8780. .am-slider-b3 {
  8781. margin: 15px 30px;
  8782. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8783. }
  8784. .am-slider-b4,.am-slider-c1,.am-slider-c2 {
  8785. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8786. }
  8787. .am-slider-b3 .am-viewport {
  8788. max-height: 2000px;
  8789. -webkit-transition: all 1s ease;
  8790. transition: all 1s ease
  8791. }
  8792. .loading .am-slider-b3 .am-viewport {
  8793. max-height: 300px
  8794. }
  8795. .am-slider-b3 .am-direction-nav a {
  8796. -webkit-box-sizing: content-box;
  8797. box-sizing: content-box;
  8798. display: block;
  8799. width: 24px;
  8800. height: 24px;
  8801. padding: 4px;
  8802. margin: -16px 0 0;
  8803. position: absolute;
  8804. top: 50%;
  8805. z-index: 10;
  8806. overflow: hidden;
  8807. opacity: .45;
  8808. cursor: pointer;
  8809. color: #333;
  8810. text-shadow: 1px 1px 0 rgba(255,255,255,.3);
  8811. font-size: 0;
  8812. -webkit-transition: all .3s ease;
  8813. transition: all .3s ease
  8814. }
  8815. .am-slider-b3 .am-direction-nav a:before {
  8816. display: inline-block;
  8817. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  8818. -webkit-font-smoothing: antialiased;
  8819. -ms-transform: translate(0,0);
  8820. transform: translate(0,0);
  8821. content: "\f053";
  8822. font-size: 24px
  8823. }
  8824. .am-slider-b3 .am-direction-nav a.am-prev {
  8825. left: -25px
  8826. }
  8827. .am-slider-b3 .am-direction-nav a.am-next {
  8828. right: -25px;
  8829. text-align: right
  8830. }
  8831. .am-slider-b3 .am-direction-nav a.am-next:before {
  8832. content: "\f054"
  8833. }
  8834. .am-slider-b3 .am-direction-nav .am-disabled {
  8835. opacity: 0!important;
  8836. cursor: default
  8837. }
  8838. .am-slider-b3:hover .am-prev {
  8839. opacity: .7
  8840. }
  8841. .am-slider-b3:hover .am-prev:hover {
  8842. opacity: 1
  8843. }
  8844. .am-slider-b3:hover .am-next {
  8845. opacity: .7
  8846. }
  8847. .am-slider-b3:hover .am-next:hover {
  8848. opacity: 1
  8849. }
  8850. .am-slider-b3 .am-control-nav,.am-slider-b3 .am-pauseplay {
  8851. display: none
  8852. }
  8853. .am-slider-b4 {
  8854. margin: 15px 20px;
  8855. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8856. }
  8857. .am-slider-b4 .am-viewport {
  8858. max-height: 2000px;
  8859. -webkit-transition: all 1s ease;
  8860. transition: all 1s ease
  8861. }
  8862. .loading .am-slider-b4 .am-viewport {
  8863. max-height: 300px
  8864. }
  8865. .am-slider-b4 .am-direction-nav a {
  8866. display: block;
  8867. -webkit-box-sizing: content-box;
  8868. box-sizing: content-box;
  8869. margin: -16px 0 0;
  8870. opacity: .45;
  8871. background-color: rgba(0,0,0,.8);
  8872. cursor: pointer;
  8873. font-size: 0;
  8874. text-align: center;
  8875. -webkit-transition: all .3s ease;
  8876. transition: all .3s ease
  8877. }
  8878. .am-slider-b4 .am-direction-nav a:before {
  8879. display: inline-block;
  8880. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  8881. -webkit-font-smoothing: antialiased;
  8882. -ms-transform: translate(0,0);
  8883. transform: translate(0,0);
  8884. content: "\f053";
  8885. font-size: 20px;
  8886. line-height: 24px
  8887. }
  8888. .am-slider-c3 .am-direction-nav a:before,.am-slider-c4 .am-direction-nav a:before {
  8889. -webkit-transform: translate(0,0);
  8890. -ms-transform: translate(0,0);
  8891. -moz-osx-font-smoothing: grayscale
  8892. }
  8893. .am-slider-c1 .am-control-nav,.am-slider-c2 .am-control-nav {
  8894. position: absolute;
  8895. font-size: 0;
  8896. line-height: 0;
  8897. height: 6px;
  8898. text-align: center
  8899. }
  8900. .am-slider-b4 .am-direction-nav a.am-prev {
  8901. left: -15px
  8902. }
  8903. .am-slider-b4 .am-direction-nav a.am-next {
  8904. right: -15px
  8905. }
  8906. .am-slider-b4 .am-direction-nav a.am-next:before {
  8907. content: "\f054"
  8908. }
  8909. .am-slider-b4 .am-direction-nav .am-disabled {
  8910. opacity: 0!important;
  8911. cursor: default
  8912. }
  8913. .am-slider-b4:hover .am-prev {
  8914. opacity: .7
  8915. }
  8916. .am-slider-b4:hover .am-prev:hover {
  8917. opacity: .9
  8918. }
  8919. .am-slider-b4:hover .am-next {
  8920. opacity: .7
  8921. }
  8922. .am-slider-b4:hover .am-next:hover {
  8923. opacity: .9
  8924. }
  8925. .am-slider-b4 .am-control-nav,.am-slider-b4 .am-pauseplay {
  8926. display: none
  8927. }
  8928. .am-slider-c1 {
  8929. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8930. }
  8931. .am-slider-c1 .am-viewport {
  8932. max-height: 2000px;
  8933. -webkit-transition: all 1s ease;
  8934. transition: all 1s ease
  8935. }
  8936. .loading .am-slider-c1 .am-viewport {
  8937. max-height: 300px
  8938. }
  8939. .am-slider-c1 .am-control-nav {
  8940. bottom: 0;
  8941. display: -webkit-box;
  8942. display: -webkit-flex;
  8943. display: -ms-flexbox;
  8944. display: flex;
  8945. width: 100%
  8946. }
  8947. .am-slider-c1 .am-control-nav li {
  8948. -webkit-box-flex: 1;
  8949. -webkit-flex: 1;
  8950. -ms-flex: 1;
  8951. flex: 1
  8952. }
  8953. .am-slider-c1 .am-control-nav li a {
  8954. width: 100%;
  8955. height: 6px;
  8956. display: block;
  8957. background-color: rgba(0,0,0,.7);
  8958. cursor: pointer;
  8959. text-indent: -9999px
  8960. }
  8961. .am-slider-c1 .am-control-nav li a:hover {
  8962. background: rgba(0,0,0,.8)
  8963. }
  8964. .am-slider-c1 .am-control-nav li a.am-active {
  8965. background-color: #0e90d2;
  8966. cursor: default
  8967. }
  8968. .am-slider-c1 .am-slider-desc {
  8969. background-color: rgba(0,0,0,.6);
  8970. position: absolute;
  8971. bottom: 6px;
  8972. padding: 8px;
  8973. width: 100%;
  8974. color: #fff;
  8975. display: block;
  8976. word-wrap: normal;
  8977. text-overflow: ellipsis;
  8978. white-space: nowrap;
  8979. overflow: hidden
  8980. }
  8981. .am-slider-c1 .am-direction-nav,.am-slider-c1 .am-pauseplay {
  8982. display: none
  8983. }
  8984. .am-slider-c2 {
  8985. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8986. }
  8987. .am-slider-c3,.am-slider-c4,.am-slider-d1,.am-slider-d2 {
  8988. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2)
  8989. }
  8990. .am-slider-c2 .am-viewport {
  8991. max-height: 2000px;
  8992. -webkit-transition: all 1s ease;
  8993. transition: all 1s ease
  8994. }
  8995. .loading .am-slider-c2 .am-viewport {
  8996. max-height: 300px
  8997. }
  8998. .am-slider-c2 .am-control-nav {
  8999. bottom: 15px;
  9000. right: 0
  9001. }
  9002. .am-slider-c2 .am-control-nav li {
  9003. display: inline-block;
  9004. margin-right: 6px
  9005. }
  9006. .am-slider-c2 .am-control-nav li a {
  9007. width: 6px;
  9008. height: 6px;
  9009. display: block;
  9010. background-color: rgba(255,255,255,.4);
  9011. cursor: pointer;
  9012. text-indent: -9999px
  9013. }
  9014. .am-slider-c2 .am-control-nav li a:hover {
  9015. background: rgba(230,230,230,.4)
  9016. }
  9017. .am-slider-c2 .am-control-nav li a.am-active {
  9018. background-color: #0e90d2;
  9019. cursor: default
  9020. }
  9021. .am-slider-c2 .am-slider-desc,.am-slider-c3 .am-slider-desc {
  9022. background-color: rgba(0,0,0,.6);
  9023. color: #fff;
  9024. position: absolute;
  9025. overflow: hidden;
  9026. word-wrap: normal;
  9027. text-overflow: ellipsis;
  9028. white-space: nowrap
  9029. }
  9030. .am-slider-c2 .am-slider-desc {
  9031. bottom: 0;
  9032. padding: 8px 60px 8px 8px;
  9033. width: 100%;
  9034. display: block
  9035. }
  9036. .am-slider-c2 .am-direction-nav,.am-slider-c2 .am-pauseplay {
  9037. display: none
  9038. }
  9039. .am-slider-c3 {
  9040. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  9041. }
  9042. .am-slider-c3 .am-viewport {
  9043. max-height: 2000px;
  9044. -webkit-transition: all 1s ease;
  9045. transition: all 1s ease
  9046. }
  9047. .loading .am-slider-c3 .am-viewport {
  9048. max-height: 300px
  9049. }
  9050. .am-slider-c3 .am-slider-desc {
  9051. bottom: 10px;
  9052. right: 60px;
  9053. height: 30px;
  9054. left: 0;
  9055. padding-right: 5px;
  9056. display: block
  9057. }
  9058. .am-slider-c3 .am-slider-counter {
  9059. margin-right: 5px;
  9060. display: inline-block;
  9061. height: 30px;
  9062. background-color: #0e90d2;
  9063. width: 40px;
  9064. text-align: center;
  9065. line-height: 30px;
  9066. color: #eee;
  9067. font-size: 1rem
  9068. }
  9069. .am-slider-c3 .am-slider-counter .am-active {
  9070. font-size: 1.8rem;
  9071. font-weight: 700;
  9072. color: #fff
  9073. }
  9074. .am-slider-c3 .am-direction-nav a {
  9075. -webkit-box-sizing: content-box;
  9076. box-sizing: content-box;
  9077. display: block;
  9078. width: 24px;
  9079. height: 24px;
  9080. padding: 4px 0;
  9081. margin: -16px 0 0;
  9082. position: absolute;
  9083. top: 50%;
  9084. z-index: 10;
  9085. overflow: hidden;
  9086. opacity: .45;
  9087. cursor: pointer;
  9088. color: #fff;
  9089. text-shadow: 1px 1px 0 rgba(255,255,255,.3);
  9090. background-color: rgba(0,0,0,.5);
  9091. font-size: 0;
  9092. text-align: center;
  9093. -webkit-transition: all .3s ease;
  9094. transition: all .3s ease
  9095. }
  9096. .am-slider-c3 .am-direction-nav a:before {
  9097. display: inline-block;
  9098. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  9099. text-rendering: auto;
  9100. -webkit-font-smoothing: antialiased;
  9101. transform: translate(0,0);
  9102. content: "\f053";
  9103. font-size: 16px;
  9104. line-height: 24px
  9105. }
  9106. .am-slider-c3 .am-direction-nav a.am-prev {
  9107. left: 0;
  9108. padding-right: 5px
  9109. }
  9110. .am-slider-c3 .am-direction-nav a.am-next {
  9111. right: 0;
  9112. padding-left: 5px
  9113. }
  9114. .am-slider-c3 .am-direction-nav a.am-next:before {
  9115. content: "\f054"
  9116. }
  9117. .am-slider-c3 .am-direction-nav .am-disabled {
  9118. opacity: 0!important;
  9119. cursor: default
  9120. }
  9121. .am-slider-c4 .am-direction-nav a,.am-slider-d1 .am-direction-nav a {
  9122. height: 24px;
  9123. z-index: 10;
  9124. overflow: hidden;
  9125. cursor: pointer;
  9126. text-shadow: 1px 1px 0 rgba(255,255,255,.3);
  9127. position: absolute;
  9128. text-align: center
  9129. }
  9130. .am-slider-c3:hover .am-prev {
  9131. opacity: .7
  9132. }
  9133. .am-slider-c3:hover .am-prev:hover {
  9134. opacity: 1
  9135. }
  9136. .am-slider-c3:hover .am-next {
  9137. opacity: .7
  9138. }
  9139. .am-slider-c3:hover .am-next:hover {
  9140. opacity: 1
  9141. }
  9142. .am-slider-c3 .am-control-nav,.am-slider-c3 .am-pauseplay {
  9143. display: none
  9144. }
  9145. .am-slider-c4 {
  9146. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  9147. }
  9148. .am-slider-c4 .am-viewport {
  9149. max-height: 2000px;
  9150. -webkit-transition: all 1s ease;
  9151. transition: all 1s ease
  9152. }
  9153. .loading .am-slider-c4 .am-viewport {
  9154. max-height: 300px
  9155. }
  9156. .am-slider-c4 .am-slider-desc {
  9157. width: 100%;
  9158. background-color: rgba(0,0,0,.6);
  9159. position: absolute;
  9160. bottom: 0;
  9161. right: 0;
  9162. left: 0;
  9163. padding: 8px 40px;
  9164. color: #fff;
  9165. display: block;
  9166. word-wrap: normal;
  9167. text-overflow: ellipsis;
  9168. white-space: nowrap;
  9169. overflow: hidden
  9170. }
  9171. .am-slider-c4 .am-direction-nav a {
  9172. -webkit-box-sizing: content-box;
  9173. box-sizing: content-box;
  9174. display: block;
  9175. width: 24px;
  9176. padding: 4px 0;
  9177. margin: 0;
  9178. bottom: 4px;
  9179. opacity: .45;
  9180. font-size: 0;
  9181. color: rgba(0,0,0,.7);
  9182. -webkit-transition: all .3s ease;
  9183. transition: all .3s ease
  9184. }
  9185. .am-slider-c4 .am-direction-nav a:before {
  9186. display: inline-block;
  9187. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  9188. text-rendering: auto;
  9189. -webkit-font-smoothing: antialiased;
  9190. transform: translate(0,0);
  9191. content: "\f053";
  9192. font-size: 24px
  9193. }
  9194. .am-slider-c4 .am-direction-nav a.am-prev {
  9195. left: 0;
  9196. padding-right: 5px
  9197. }
  9198. .am-slider-c4 .am-direction-nav a.am-next {
  9199. right: 0;
  9200. padding-left: 5px
  9201. }
  9202. .am-slider-c4 .am-direction-nav a.am-next:before {
  9203. content: "\f054"
  9204. }
  9205. .am-slider-c4 .am-direction-nav .am-disabled {
  9206. opacity: 0!important;
  9207. cursor: default
  9208. }
  9209. .am-slider-c4:hover .am-prev {
  9210. opacity: .7
  9211. }
  9212. .am-slider-c4:hover .am-prev:hover {
  9213. opacity: 1
  9214. }
  9215. .am-slider-c4:hover .am-next {
  9216. opacity: .7
  9217. }
  9218. .am-slider-c4:hover .am-next:hover {
  9219. opacity: 1
  9220. }
  9221. .am-slider-c4 .am-control-nav,.am-slider-c4 .am-pauseplay {
  9222. display: none
  9223. }
  9224. .am-slider-d1 {
  9225. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  9226. }
  9227. .am-slider-d1 .am-viewport {
  9228. max-height: 2000px;
  9229. -webkit-transition: all 1s ease;
  9230. transition: all 1s ease
  9231. }
  9232. .loading .am-slider-d1 .am-viewport {
  9233. max-height: 300px
  9234. }
  9235. .am-slider-d1 .am-slider-desc {
  9236. padding: 8px 35px;
  9237. width: 100%;
  9238. color: #fff;
  9239. background-color: #0e90d2
  9240. }
  9241. .am-slider-d1 .am-slider-title {
  9242. font-weight: 400;
  9243. margin-bottom: 2px;
  9244. display: block;
  9245. word-wrap: normal;
  9246. text-overflow: ellipsis;
  9247. white-space: nowrap;
  9248. overflow: hidden
  9249. }
  9250. .am-slider-d1 .am-slider-more {
  9251. color: #eee;
  9252. font-size: 1.3rem
  9253. }
  9254. .am-slider-d1 .am-direction-nav a {
  9255. -webkit-box-sizing: content-box;
  9256. box-sizing: content-box;
  9257. display: block;
  9258. width: 24px;
  9259. margin: 0;
  9260. bottom: 18px;
  9261. opacity: .45;
  9262. font-size: 0;
  9263. border: 1px solid rgba(255,255,255,.9);
  9264. color: rgba(255,255,255,.9);
  9265. border-radius: 50%;
  9266. -webkit-transition: all 3s ease;
  9267. transition: all 3s ease
  9268. }
  9269. .am-slider-d1 .am-direction-nav a:before {
  9270. display: inline-block;
  9271. font: normal normal normal 1.6rem/1 FontAwesome,sans-serif;
  9272. text-rendering: auto;
  9273. -webkit-font-smoothing: antialiased;
  9274. -moz-osx-font-smoothing: grayscale;
  9275. -webkit-transform: translate(0,0);
  9276. -ms-transform: translate(0,0);
  9277. transform: translate(0,0);
  9278. content: "\f053";
  9279. font-size: 16px;
  9280. line-height: 24px
  9281. }
  9282. .am-slider-d1 .am-direction-nav a.am-prev {
  9283. left: 5px
  9284. }
  9285. .am-slider-d1 .am-direction-nav a.am-next {
  9286. right: 5px
  9287. }
  9288. .am-slider-d1 .am-direction-nav a.am-next:before {
  9289. content: "\f054"
  9290. }
  9291. .am-slider-d1 .am-direction-nav .am-disabled {
  9292. opacity: 0!important;
  9293. cursor: default
  9294. }
  9295. .am-slider-d1:hover .am-prev {
  9296. opacity: .7
  9297. }
  9298. .am-slider-d1:hover .am-prev:hover {
  9299. opacity: 1
  9300. }
  9301. .am-slider-d1:hover .am-next {
  9302. opacity: .7
  9303. }
  9304. .am-slider-d1:hover .am-next:hover {
  9305. opacity: 1
  9306. }
  9307. .am-slider-d1 .am-control-nav,.am-slider-d1 .am-pauseplay {
  9308. display: none
  9309. }
  9310. .am-slider-d2 .am-slider-content p,.am-slider-d2 .am-slider-title {
  9311. display: block;
  9312. word-wrap: normal;
  9313. text-overflow: ellipsis;
  9314. white-space: nowrap;
  9315. overflow: hidden
  9316. }
  9317. .am-slider-d2 {
  9318. margin-bottom: 20px;
  9319. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  9320. }
  9321. .am-slider-d2 .am-viewport {
  9322. max-height: 2000px;
  9323. -webkit-transition: all 1s ease;
  9324. transition: all 1s ease
  9325. }
  9326. .loading .am-slider-d2 .am-viewport {
  9327. max-height: 300px
  9328. }
  9329. .am-slider-d2 .am-slider-desc {
  9330. position: absolute;
  9331. left: 10px;
  9332. bottom: 20px;
  9333. right: 50px;
  9334. color: #fff
  9335. }
  9336. .am-slider-d2 .am-slider-content {
  9337. background-color: rgba(0,0,0,.7);
  9338. padding: 10px 6px;
  9339. margin-bottom: 10px
  9340. }
  9341. .am-slider-d2 .am-slider-content p {
  9342. margin: 0;
  9343. font-size: 1.4rem
  9344. }
  9345. .am-slider-d2 .am-slider-title {
  9346. font-weight: 400;
  9347. margin-bottom: 5px
  9348. }
  9349. .am-slider-d2 .am-slider-more {
  9350. color: #eee;
  9351. font-size: 1.3rem;
  9352. background-color: #0e90d2;
  9353. padding: 2px 10px
  9354. }
  9355. .am-slider-d2 .am-control-nav {
  9356. width: 100%;
  9357. position: absolute;
  9358. bottom: -15px;
  9359. text-align: center
  9360. }
  9361. .am-slider-d2 .am-control-nav li {
  9362. margin: 0 6px;
  9363. display: inline-block
  9364. }
  9365. .am-slider-d2 .am-control-nav li a {
  9366. width: 8px;
  9367. height: 8px;
  9368. display: block;
  9369. background-color: rgba(0,0,0,.5);
  9370. cursor: pointer;
  9371. text-indent: -9999px;
  9372. border-radius: 50%;
  9373. font-size: 0;
  9374. line-height: 0;
  9375. -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
  9376. box-shadow: inset 0 0 3px rgba(0,0,0,.3)
  9377. }
  9378. .am-slider-d2 .am-control-nav li a:hover {
  9379. background: rgba(0,0,0,.5)
  9380. }
  9381. .am-slider-d2 .am-control-nav li a.am-active {
  9382. background: #0e90d2;
  9383. cursor: default
  9384. }
  9385. .am-slider-d2 .am-direction-nav,.am-slider-d2 .am-pauseplay {
  9386. display: none
  9387. }
  9388. .am-slider-d3 .am-slider-desc p,.am-slider-d3 .am-slider-title {
  9389. display: block;
  9390. word-wrap: normal;
  9391. text-overflow: ellipsis;
  9392. white-space: nowrap;
  9393. overflow: hidden
  9394. }
  9395. .am-slider-d3 {
  9396. margin-bottom: 10px;
  9397. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2);
  9398. box-shadow: 0 1px 4px rgba(0,0,0,.2)
  9399. }
  9400. .am-slider-d3 .am-viewport {
  9401. max-height: 2000px;
  9402. -webkit-transition: all 1s ease;
  9403. transition: all 1s ease
  9404. }
  9405. .loading .am-slider-d3 .am-viewport {
  9406. max-height: 300px
  9407. }
  9408. .am-slider-d3 .am-slider-desc {
  9409. position: absolute;
  9410. bottom: 0;
  9411. color: #fff;
  9412. width: 100%;
  9413. background-color: rgba(0,0,0,.7);
  9414. padding: 8px 5px
  9415. }
  9416. .am-slider-d3 .am-slider-desc p {
  9417. margin: 0;
  9418. font-size: 1.3rem
  9419. }
  9420. .am-slider-d3 .am-slider-title {
  9421. font-weight: 400;
  9422. margin-bottom: 5px
  9423. }
  9424. .am-slider-d3 .am-control-thumbs {
  9425. position: static;
  9426. overflow: hidden;
  9427. display: -webkit-box;
  9428. display: -webkit-flex;
  9429. display: -ms-flexbox;
  9430. display: flex
  9431. }
  9432. .am-slider-d3 .am-control-thumbs li {
  9433. -webkit-box-flex: 1;
  9434. -webkit-flex: 1;
  9435. -ms-flex: 1;
  9436. flex: 1;
  9437. padding: 12px 4px 4px;
  9438. position: relative
  9439. }
  9440. .am-slider-d3 .am-control-thumbs img {
  9441. width: 100%;
  9442. display: block;
  9443. opacity: .85;
  9444. cursor: pointer
  9445. }
  9446. .am-slider-d3 .am-control-thumbs img:hover {
  9447. opacity: 1
  9448. }
  9449. .am-slider-d3 .am-control-thumbs .am-active {
  9450. opacity: 1;
  9451. cursor: default
  9452. }
  9453. .am-slider-d3 .am-control-thumbs .am-active+i {
  9454. position: absolute;
  9455. top: 0;
  9456. left: 50%;
  9457. content: "";
  9458. display: inline-block;
  9459. width: 0;
  9460. height: 0;
  9461. vertical-align: middle;
  9462. border-top: 8px solid rgba(0,0,0,.7);
  9463. border-right: 8px solid transparent;
  9464. border-left: 8px solid transparent;
  9465. border-bottom: 0 dotted;
  9466. -webkit-transform: rotate(360deg);
  9467. -ms-transform: rotate(360deg);
  9468. transform: rotate(360deg);
  9469. margin-left: -4px;
  9470. -webkit-transition: all .2s;
  9471. transition: all .2s
  9472. }
  9473. .am-slider-d3 .am-direction-nav,.am-slider-d3 .am-pauseplay {
  9474. display: none
  9475. }[data-am-widget=tabs] {
  9476. margin: 10px
  9477. }[data-am-widget=tabs] .am-tabs-nav {
  9478. width: 100%;
  9479. padding: 0;
  9480. margin: 0;
  9481. list-style: none;
  9482. text-align: center;
  9483. display: -webkit-box;
  9484. display: -webkit-flex;
  9485. display: -ms-flexbox;
  9486. display: flex
  9487. }[data-am-widget=tabs] .am-tabs-nav li {
  9488. -webkit-box-flex: 1;
  9489. -webkit-flex: 1;
  9490. -ms-flex: 1;
  9491. flex: 1
  9492. }[data-am-widget=tabs] .am-tabs-nav a {
  9493. display: block;
  9494. word-wrap: normal;
  9495. text-overflow: ellipsis;
  9496. white-space: nowrap;
  9497. overflow: hidden
  9498. }
  9499. .am-titlebar-default,.am-titlebar-multi {
  9500. display: -webkit-box;
  9501. display: -webkit-flex;
  9502. display: -ms-flexbox
  9503. }
  9504. .am-tabs-default .am-tabs-nav {
  9505. line-height: 40px;
  9506. background-color: #eee
  9507. }
  9508. .am-tabs-default .am-tabs-nav a {
  9509. color: #222;
  9510. line-height: 42px
  9511. }
  9512. .am-tabs-default .am-tabs-nav>.am-active a {
  9513. background-color: #0e90d2;
  9514. color: #fff
  9515. }
  9516. .am-tabs-d2 .am-tabs-nav {
  9517. background-color: #eee
  9518. }
  9519. .am-tabs-d2 .am-tabs-nav li {
  9520. height: 42px
  9521. }
  9522. .am-tabs-d2 .am-tabs-nav a {
  9523. color: #222;
  9524. line-height: 42px
  9525. }
  9526. .am-tabs-d2 .am-tabs-nav>.am-active {
  9527. position: relative;
  9528. background-color: #fcfcfc;
  9529. border-bottom: 2px solid #0e90d2
  9530. }
  9531. .am-tabs-d2 .am-tabs-nav>.am-active a {
  9532. line-height: 40px;
  9533. color: #0e90d2
  9534. }
  9535. .am-tabs-d2 .am-tabs-nav>.am-active:after {
  9536. position: absolute;
  9537. width: 0;
  9538. height: 0;
  9539. bottom: 0;
  9540. left: 50%;
  9541. margin-left: -5px;
  9542. border: 6px solid transparent;
  9543. content: "";
  9544. z-index: 1;
  9545. border-bottom-color: #0e90d2
  9546. }
  9547. .am-titlebar {
  9548. margin-top: 20px;
  9549. height: 45px;
  9550. font-size: 100%
  9551. }
  9552. .am-titlebar h2 {
  9553. margin-top: 0;
  9554. margin-bottom: 0;
  9555. font-size: 1.6rem
  9556. }
  9557. .am-titlebar .am-titlebar-title img {
  9558. height: 24px;
  9559. width: auto
  9560. }
  9561. .am-titlebar-default {
  9562. display: flex;
  9563. margin-left: 10px;
  9564. margin-right: 10px;
  9565. background-color: transparent;
  9566. border-bottom: 1px solid #dedede;
  9567. line-height: 44px
  9568. }
  9569. .am-titlebar-default a {
  9570. color: #0e90d2
  9571. }
  9572. .am-titlebar-default .am-titlebar-title {
  9573. position: relative;
  9574. padding-left: 12px;
  9575. color: #0e90d2;
  9576. font-size: 1.8rem;
  9577. text-align: left;
  9578. font-weight: 700
  9579. }
  9580. .am-titlebar-default .am-titlebar-title:before {
  9581. content: "";
  9582. position: absolute;
  9583. left: 2px;
  9584. top: 8px;
  9585. bottom: 8px;
  9586. border-left: 3px solid #0e90d2
  9587. }
  9588. .am-titlebar-default .am-titlebar-nav {
  9589. -webkit-box-flex: 1;
  9590. -webkit-flex: 1;
  9591. -ms-flex: 1;
  9592. flex: 1;
  9593. text-align: right
  9594. }
  9595. .am-titlebar-default .am-titlebar-nav a {
  9596. margin-right: 10px
  9597. }
  9598. .am-titlebar-default .am-titlebar-nav a:last-child {
  9599. margin-right: 5px
  9600. }
  9601. .am-titlebar-multi {
  9602. display: flex;
  9603. background-color: #f5f5f5;
  9604. border-top: 2px solid #3bb4f2;
  9605. border-bottom: 1px solid #e8e8e8
  9606. }
  9607. .am-titlebar-multi a {
  9608. color: #0e90d2
  9609. }
  9610. .am-titlebar-multi .am-titlebar-title {
  9611. padding-left: 10px;
  9612. color: #0e90d2;
  9613. font-size: 1.8rem;
  9614. text-align: left;
  9615. font-weight: 700;
  9616. line-height: 42px
  9617. }
  9618. .am-titlebar-multi .am-titlebar-nav {
  9619. -webkit-box-flex: 1;
  9620. -webkit-flex: 1;
  9621. -ms-flex: 1;
  9622. flex: 1;
  9623. text-align: right;
  9624. line-height: 42px
  9625. }
  9626. .am-titlebar-multi .am-titlebar-nav a {
  9627. margin-right: 10px
  9628. }
  9629. .am-titlebar-cols {
  9630. position: relative;
  9631. display: -webkit-box;
  9632. display: -webkit-flex;
  9633. display: -ms-flexbox;
  9634. display: flex;
  9635. padding-left: 10px;
  9636. background-color: #f5f5f5;
  9637. color: #555;
  9638. font-size: 18px;
  9639. border-top: 2px solid #e1e1e1;
  9640. line-height: 41px
  9641. }
  9642. .am-titlebar-cols a {
  9643. color: #555
  9644. }
  9645. .am-titlebar-cols .am-titlebar-title {
  9646. color: #0e90d2;
  9647. margin-right: 15px;
  9648. border-bottom: 2px solid #0e90d2;
  9649. font-weight: 700
  9650. }
  9651. .am-titlebar-cols .am-titlebar-title a {
  9652. color: #0e90d2
  9653. }
  9654. .am-titlebar-cols .am-titlebar-nav {
  9655. -webkit-box-flex: 1;
  9656. -webkit-flex: 1;
  9657. -ms-flex: 1;
  9658. flex: 1
  9659. }
  9660. .am-titlebar-cols .am-titlebar-nav a {
  9661. display: inline-block;
  9662. margin-right: 15px;
  9663. line-height: 41px;
  9664. border-bottom: 2px solid transparent
  9665. }
  9666. .am-titlebar-cols .am-titlebar-nav a:hover {
  9667. color: #3c3c3c;
  9668. border-bottom-color: #0e90d2
  9669. }
  9670. .am-titlebar-cols .am-titlebar-nav a:last-child {
  9671. margin-right: 10px
  9672. }
  9673. .am-wechatpay .am-wechatpay-btn {
  9674. margin-top: 1rem;
  9675. margin-bottom: 1rem
  9676. }