styles.css 229 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1679px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u36723_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u36723 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u36723 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u36723_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u36724_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u36724 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u36724 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u36724_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u36725_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u36725 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u36725 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u36725_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u36726 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u36727_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u36727 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u36727 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u36727_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u36728_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u36728 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u36728 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u36728_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u36729_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u36729 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u36729 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u36729_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u36730 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u36731_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u36731_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u36731_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u36731 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u36731 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u36731_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u36731.disabled {
  356. }
  357. .u36731_input_option {
  358. font-size:14px;
  359. }
  360. #u36732_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u36732 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u36732 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u36732_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u36733_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u36733 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u36733 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u36733_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u36734_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u36734 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u36734 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u36734_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u36735 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u36736_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u36736 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u36736 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u36736_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u36737_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u36737 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u36737 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u36737_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u36738 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u36739_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u36739 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u36739 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u36739_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u36740_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u36740 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u36740 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u36740_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u36741 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u36742_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u36742 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u36742 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u36742_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u36743_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u36743 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u36743 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u36743_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u36744 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u36745_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u36745 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u36745 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u36745_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u36746_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u36746 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u36746 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u36746_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u36747 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u36748_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u36748 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u36748 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u36748_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u36749_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u36749 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u36749 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u36749_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u36750 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u36751_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u36751 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u36751 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u36751_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u36752_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u36752 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u36752 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u36752_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u36753 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u36754_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u36754 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u36754 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u36754_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u36755_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u36755 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u36755 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u36755_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u36756 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u36757_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u36757 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u36757 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u36757_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u36758_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u36758 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u36758 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u36758_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u36759 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u36760_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u36760 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u36760 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u36760_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u36761_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u36761 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u36761 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u36761_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u36762 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u36763_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u36763 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u36763 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u36763_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u36764_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u36764 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u36764 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u36764_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u36765_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u36765 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u36765 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u36765_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u36766_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u36766 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u36766 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u36766_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u36767_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u36767 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u36767 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u36767_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u36768_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u36768 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u36768 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u36768_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u36769 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u36770_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u36770 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u36770 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u36770_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u36771_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u36771 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u36771 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u36771_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u36772 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u36773_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u36773 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u36773 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u36773_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u36774_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u36774 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u36774 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u36774_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u36775_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1449px;
  1644. height:1179px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u36775 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:131px;
  1657. top:61px;
  1658. width:1449px;
  1659. height:1179px;
  1660. display:flex;
  1661. }
  1662. #u36775 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u36775_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u36776_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1690. font-weight:500;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u36776 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:163px;
  1698. top:81px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1703. font-weight:500;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u36776 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u36776_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u36777 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u36778_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:353px;
  1733. height:120px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 1);
  1736. border:none;
  1737. border-radius:4px;
  1738. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1739. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1740. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1741. }
  1742. #u36778 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:163px;
  1746. top:116px;
  1747. width:353px;
  1748. height:120px;
  1749. display:flex;
  1750. }
  1751. #u36778 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u36778_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u36779_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:109px;
  1770. height:25px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 0);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u36779 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:187px;
  1787. top:127px;
  1788. width:109px;
  1789. height:25px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u36779 .text {
  1797. position:absolute;
  1798. align-self:flex-start;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u36779_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u36780_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:37px;
  1814. height:40px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border:none;
  1818. border-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:12px;
  1826. line-height:20px;
  1827. }
  1828. #u36780 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:187px;
  1832. top:172px;
  1833. width:37px;
  1834. height:40px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:12px;
  1840. line-height:20px;
  1841. }
  1842. #u36780 .text {
  1843. position:absolute;
  1844. align-self:flex-start;
  1845. padding:0px 0px 0px 0px;
  1846. box-sizing:border-box;
  1847. width:100%;
  1848. }
  1849. #u36780_text {
  1850. border-width:0px;
  1851. white-space:nowrap;
  1852. text-transform:none;
  1853. }
  1854. #u36781_div {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:73px;
  1860. height:25px;
  1861. background:inherit;
  1862. background-color:rgba(255, 255, 255, 0);
  1863. border:none;
  1864. border-radius:0px;
  1865. -moz-box-shadow:none;
  1866. -webkit-box-shadow:none;
  1867. box-shadow:none;
  1868. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1869. font-weight:500;
  1870. font-style:normal;
  1871. font-size:18px;
  1872. }
  1873. #u36781 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:163px;
  1877. top:270px;
  1878. width:73px;
  1879. height:25px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1882. font-weight:500;
  1883. font-style:normal;
  1884. font-size:18px;
  1885. }
  1886. #u36781 .text {
  1887. position:absolute;
  1888. align-self:flex-start;
  1889. padding:0px 0px 0px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u36781_text {
  1894. border-width:0px;
  1895. white-space:nowrap;
  1896. text-transform:none;
  1897. }
  1898. #u36782 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. height:0px;
  1905. }
  1906. #u36783_div {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:353px;
  1912. height:120px;
  1913. background:inherit;
  1914. background-color:rgba(255, 255, 255, 1);
  1915. border:none;
  1916. border-radius:4px;
  1917. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1918. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1919. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1920. }
  1921. #u36783 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:536px;
  1925. top:116px;
  1926. width:353px;
  1927. height:120px;
  1928. display:flex;
  1929. }
  1930. #u36783 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u36783_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. visibility:hidden;
  1942. }
  1943. #u36784_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:109px;
  1949. height:25px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border:none;
  1953. border-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1958. font-weight:500;
  1959. font-style:normal;
  1960. font-size:18px;
  1961. }
  1962. #u36784 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:560px;
  1966. top:127px;
  1967. width:109px;
  1968. height:25px;
  1969. display:flex;
  1970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1971. font-weight:500;
  1972. font-style:normal;
  1973. font-size:18px;
  1974. }
  1975. #u36784 .text {
  1976. position:absolute;
  1977. align-self:flex-start;
  1978. padding:0px 0px 0px 0px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u36784_text {
  1983. border-width:0px;
  1984. white-space:nowrap;
  1985. text-transform:none;
  1986. }
  1987. #u36785_div {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:37px;
  1993. height:40px;
  1994. background:inherit;
  1995. background-color:rgba(255, 255, 255, 0);
  1996. border:none;
  1997. border-radius:0px;
  1998. -moz-box-shadow:none;
  1999. -webkit-box-shadow:none;
  2000. box-shadow:none;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. line-height:20px;
  2006. }
  2007. #u36785 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:560px;
  2011. top:172px;
  2012. width:37px;
  2013. height:40px;
  2014. display:flex;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:12px;
  2019. line-height:20px;
  2020. }
  2021. #u36785 .text {
  2022. position:absolute;
  2023. align-self:flex-start;
  2024. padding:0px 0px 0px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u36785_text {
  2029. border-width:0px;
  2030. white-space:nowrap;
  2031. text-transform:none;
  2032. }
  2033. #u36786 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:0px;
  2039. height:0px;
  2040. }
  2041. #u36787 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:0px;
  2047. height:0px;
  2048. }
  2049. #u36788_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:240px;
  2055. height:100px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 1);
  2058. border:none;
  2059. border-radius:0px;
  2060. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2061. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2062. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2063. }
  2064. #u36788 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:64px;
  2068. top:-962px;
  2069. width:240px;
  2070. height:100px;
  2071. display:flex;
  2072. }
  2073. #u36788 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 2px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u36788_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. visibility:hidden;
  2085. }
  2086. #u36789_div {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:97px;
  2092. height:33px;
  2093. background:inherit;
  2094. background-color:rgba(255, 255, 255, 0);
  2095. border:none;
  2096. border-radius:0px;
  2097. -moz-box-shadow:none;
  2098. -webkit-box-shadow:none;
  2099. box-shadow:none;
  2100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2101. font-weight:500;
  2102. font-style:normal;
  2103. font-size:24px;
  2104. }
  2105. #u36789 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:163px;
  2109. top:-929px;
  2110. width:97px;
  2111. height:33px;
  2112. display:flex;
  2113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2114. font-weight:500;
  2115. font-style:normal;
  2116. font-size:24px;
  2117. }
  2118. #u36789 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u36789_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u36790_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:61px;
  2136. height:63px;
  2137. }
  2138. #u36790 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:82px;
  2142. top:-944px;
  2143. width:61px;
  2144. height:63px;
  2145. display:flex;
  2146. }
  2147. #u36790 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 2px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u36790_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. visibility:hidden;
  2159. }
  2160. #u36791_img {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:15px;
  2166. height:4px;
  2167. }
  2168. #u36791 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:282px;
  2172. top:-953px;
  2173. width:15px;
  2174. height:4px;
  2175. display:flex;
  2176. }
  2177. #u36791 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u36791_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u36792 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:0px;
  2196. height:0px;
  2197. }
  2198. #u36793_div {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:240px;
  2204. height:100px;
  2205. background:inherit;
  2206. background-color:rgba(255, 255, 255, 1);
  2207. border:none;
  2208. border-radius:0px;
  2209. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2210. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2211. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2212. }
  2213. #u36793 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:64px;
  2217. top:-602px;
  2218. width:240px;
  2219. height:100px;
  2220. display:flex;
  2221. }
  2222. #u36793 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 2px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u36793_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u36794_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:97px;
  2241. height:33px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 0);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2250. font-weight:500;
  2251. font-style:normal;
  2252. font-size:24px;
  2253. }
  2254. #u36794 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:163px;
  2258. top:-569px;
  2259. width:97px;
  2260. height:33px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2263. font-weight:500;
  2264. font-style:normal;
  2265. font-size:24px;
  2266. }
  2267. #u36794 .text {
  2268. position:absolute;
  2269. align-self:flex-start;
  2270. padding:0px 0px 0px 0px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u36794_text {
  2275. border-width:0px;
  2276. white-space:nowrap;
  2277. text-transform:none;
  2278. }
  2279. #u36795_img {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:61px;
  2285. height:63px;
  2286. }
  2287. #u36795 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:82px;
  2291. top:-584px;
  2292. width:61px;
  2293. height:63px;
  2294. display:flex;
  2295. }
  2296. #u36795 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 2px 2px 2px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u36795_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. visibility:hidden;
  2308. }
  2309. #u36796_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:15px;
  2315. height:4px;
  2316. }
  2317. #u36796 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:279px;
  2321. top:-593px;
  2322. width:15px;
  2323. height:4px;
  2324. display:flex;
  2325. }
  2326. #u36796 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 2px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u36796_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u36797 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:0px;
  2345. height:0px;
  2346. }
  2347. #u36798_div {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:240px;
  2353. height:100px;
  2354. background:inherit;
  2355. background-color:rgba(255, 255, 255, 1);
  2356. border:none;
  2357. border-radius:0px;
  2358. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2359. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2360. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2361. }
  2362. #u36798 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:844px;
  2366. top:-722px;
  2367. width:240px;
  2368. height:100px;
  2369. display:flex;
  2370. }
  2371. #u36798 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 2px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u36798_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. visibility:hidden;
  2383. }
  2384. #u36799_div {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:97px;
  2390. height:33px;
  2391. background:inherit;
  2392. background-color:rgba(255, 255, 255, 0);
  2393. border:none;
  2394. border-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2399. font-weight:500;
  2400. font-style:normal;
  2401. font-size:24px;
  2402. }
  2403. #u36799 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:943px;
  2407. top:-689px;
  2408. width:97px;
  2409. height:33px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2412. font-weight:500;
  2413. font-style:normal;
  2414. font-size:24px;
  2415. }
  2416. #u36799 .text {
  2417. position:absolute;
  2418. align-self:flex-start;
  2419. padding:0px 0px 0px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u36799_text {
  2424. border-width:0px;
  2425. white-space:nowrap;
  2426. text-transform:none;
  2427. }
  2428. #u36800_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:61px;
  2434. height:63px;
  2435. }
  2436. #u36800 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:862px;
  2440. top:-704px;
  2441. width:61px;
  2442. height:63px;
  2443. display:flex;
  2444. }
  2445. #u36800 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u36800_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. visibility:hidden;
  2457. }
  2458. #u36801_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:15px;
  2464. height:4px;
  2465. }
  2466. #u36801 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:1059px;
  2470. top:-715px;
  2471. width:15px;
  2472. height:4px;
  2473. display:flex;
  2474. }
  2475. #u36801 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u36801_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u36802 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:0px;
  2494. height:0px;
  2495. }
  2496. #u36803_div {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:240px;
  2502. height:100px;
  2503. background:inherit;
  2504. background-color:rgba(255, 255, 255, 1);
  2505. border:none;
  2506. border-radius:0px;
  2507. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2508. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2509. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2510. }
  2511. #u36803 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:324px;
  2515. top:-962px;
  2516. width:240px;
  2517. height:100px;
  2518. display:flex;
  2519. }
  2520. #u36803 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 2px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u36803_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u36804_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:97px;
  2539. height:33px;
  2540. background:inherit;
  2541. background-color:rgba(255, 255, 255, 0);
  2542. border:none;
  2543. border-radius:0px;
  2544. -moz-box-shadow:none;
  2545. -webkit-box-shadow:none;
  2546. box-shadow:none;
  2547. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2548. font-weight:500;
  2549. font-style:normal;
  2550. font-size:24px;
  2551. }
  2552. #u36804 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:423px;
  2556. top:-929px;
  2557. width:97px;
  2558. height:33px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2561. font-weight:500;
  2562. font-style:normal;
  2563. font-size:24px;
  2564. }
  2565. #u36804 .text {
  2566. position:absolute;
  2567. align-self:flex-start;
  2568. padding:0px 0px 0px 0px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u36804_text {
  2573. border-width:0px;
  2574. white-space:nowrap;
  2575. text-transform:none;
  2576. }
  2577. #u36805_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:61px;
  2583. height:63px;
  2584. }
  2585. #u36805 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:342px;
  2589. top:-944px;
  2590. width:61px;
  2591. height:63px;
  2592. display:flex;
  2593. }
  2594. #u36805 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 2px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u36805_text {
  2602. border-width:0px;
  2603. word-wrap:break-word;
  2604. text-transform:none;
  2605. visibility:hidden;
  2606. }
  2607. #u36806_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:15px;
  2613. height:4px;
  2614. }
  2615. #u36806 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:539px;
  2619. top:-955px;
  2620. width:15px;
  2621. height:4px;
  2622. display:flex;
  2623. }
  2624. #u36806 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u36806_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u36807 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:0px;
  2643. height:0px;
  2644. }
  2645. #u36808_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:240px;
  2651. height:100px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 1);
  2654. border:none;
  2655. border-radius:0px;
  2656. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2657. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2658. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2659. }
  2660. #u36808 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:584px;
  2664. top:-962px;
  2665. width:240px;
  2666. height:100px;
  2667. display:flex;
  2668. }
  2669. #u36808 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 2px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u36808_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u36809_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:97px;
  2688. height:33px;
  2689. background:inherit;
  2690. background-color:rgba(255, 255, 255, 0);
  2691. border:none;
  2692. border-radius:0px;
  2693. -moz-box-shadow:none;
  2694. -webkit-box-shadow:none;
  2695. box-shadow:none;
  2696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2697. font-weight:500;
  2698. font-style:normal;
  2699. font-size:24px;
  2700. }
  2701. #u36809 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:683px;
  2705. top:-929px;
  2706. width:97px;
  2707. height:33px;
  2708. display:flex;
  2709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2710. font-weight:500;
  2711. font-style:normal;
  2712. font-size:24px;
  2713. }
  2714. #u36809 .text {
  2715. position:absolute;
  2716. align-self:flex-start;
  2717. padding:0px 0px 0px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u36809_text {
  2722. border-width:0px;
  2723. white-space:nowrap;
  2724. text-transform:none;
  2725. }
  2726. #u36810_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:61px;
  2732. height:63px;
  2733. }
  2734. #u36810 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:602px;
  2738. top:-944px;
  2739. width:61px;
  2740. height:63px;
  2741. display:flex;
  2742. }
  2743. #u36810 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u36810_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u36811_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:15px;
  2762. height:4px;
  2763. }
  2764. #u36811 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:799px;
  2768. top:-955px;
  2769. width:15px;
  2770. height:4px;
  2771. display:flex;
  2772. }
  2773. #u36811 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u36811_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u36812 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:0px;
  2792. height:0px;
  2793. }
  2794. #u36813_div {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:240px;
  2800. height:100px;
  2801. background:inherit;
  2802. background-color:rgba(255, 255, 255, 1);
  2803. border:none;
  2804. border-radius:0px;
  2805. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2806. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2807. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2808. }
  2809. #u36813 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:584px;
  2813. top:-722px;
  2814. width:240px;
  2815. height:100px;
  2816. display:flex;
  2817. }
  2818. #u36813 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u36813_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. visibility:hidden;
  2830. }
  2831. #u36814_div {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:97px;
  2837. height:33px;
  2838. background:inherit;
  2839. background-color:rgba(255, 255, 255, 0);
  2840. border:none;
  2841. border-radius:0px;
  2842. -moz-box-shadow:none;
  2843. -webkit-box-shadow:none;
  2844. box-shadow:none;
  2845. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2846. font-weight:500;
  2847. font-style:normal;
  2848. font-size:24px;
  2849. }
  2850. #u36814 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:683px;
  2854. top:-689px;
  2855. width:97px;
  2856. height:33px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2859. font-weight:500;
  2860. font-style:normal;
  2861. font-size:24px;
  2862. }
  2863. #u36814 .text {
  2864. position:absolute;
  2865. align-self:flex-start;
  2866. padding:0px 0px 0px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u36814_text {
  2871. border-width:0px;
  2872. white-space:nowrap;
  2873. text-transform:none;
  2874. }
  2875. #u36815_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:61px;
  2881. height:63px;
  2882. }
  2883. #u36815 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:602px;
  2887. top:-704px;
  2888. width:61px;
  2889. height:63px;
  2890. display:flex;
  2891. }
  2892. #u36815 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 2px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u36815_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. visibility:hidden;
  2904. }
  2905. #u36816_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:15px;
  2911. height:4px;
  2912. }
  2913. #u36816 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:802px;
  2917. top:-713px;
  2918. width:15px;
  2919. height:4px;
  2920. display:flex;
  2921. }
  2922. #u36816 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u36816_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u36817 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:0px;
  2941. height:0px;
  2942. }
  2943. #u36818_div {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:240px;
  2949. height:100px;
  2950. background:inherit;
  2951. background-color:rgba(255, 255, 255, 1);
  2952. border:none;
  2953. border-radius:0px;
  2954. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2955. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2956. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2957. }
  2958. #u36818 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:844px;
  2962. top:-842px;
  2963. width:240px;
  2964. height:100px;
  2965. display:flex;
  2966. }
  2967. #u36818 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 2px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u36818_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u36819_div {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:97px;
  2986. height:33px;
  2987. background:inherit;
  2988. background-color:rgba(255, 255, 255, 0);
  2989. border:none;
  2990. border-radius:0px;
  2991. -moz-box-shadow:none;
  2992. -webkit-box-shadow:none;
  2993. box-shadow:none;
  2994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2995. font-weight:500;
  2996. font-style:normal;
  2997. font-size:24px;
  2998. }
  2999. #u36819 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:943px;
  3003. top:-809px;
  3004. width:97px;
  3005. height:33px;
  3006. display:flex;
  3007. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3008. font-weight:500;
  3009. font-style:normal;
  3010. font-size:24px;
  3011. }
  3012. #u36819 .text {
  3013. position:absolute;
  3014. align-self:flex-start;
  3015. padding:0px 0px 0px 0px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u36819_text {
  3020. border-width:0px;
  3021. white-space:nowrap;
  3022. text-transform:none;
  3023. }
  3024. #u36820_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:61px;
  3030. height:63px;
  3031. }
  3032. #u36820 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:862px;
  3036. top:-824px;
  3037. width:61px;
  3038. height:63px;
  3039. display:flex;
  3040. }
  3041. #u36820 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u36820_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. visibility:hidden;
  3053. }
  3054. #u36821_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:15px;
  3060. height:4px;
  3061. }
  3062. #u36821 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:1059px;
  3066. top:-833px;
  3067. width:15px;
  3068. height:4px;
  3069. display:flex;
  3070. }
  3071. #u36821 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 2px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u36821_text {
  3079. border-width:0px;
  3080. word-wrap:break-word;
  3081. text-transform:none;
  3082. visibility:hidden;
  3083. }
  3084. #u36822 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:0px;
  3090. height:0px;
  3091. }
  3092. #u36823_div {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:240px;
  3098. height:100px;
  3099. background:inherit;
  3100. background-color:rgba(255, 255, 255, 1);
  3101. border:none;
  3102. border-radius:0px;
  3103. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3104. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3105. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3106. }
  3107. #u36823 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:1104px;
  3111. top:-842px;
  3112. width:240px;
  3113. height:100px;
  3114. display:flex;
  3115. }
  3116. #u36823 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 2px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u36823_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u36824_div {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:97px;
  3135. height:33px;
  3136. background:inherit;
  3137. background-color:rgba(255, 255, 255, 0);
  3138. border:none;
  3139. border-radius:0px;
  3140. -moz-box-shadow:none;
  3141. -webkit-box-shadow:none;
  3142. box-shadow:none;
  3143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3144. font-weight:500;
  3145. font-style:normal;
  3146. font-size:24px;
  3147. }
  3148. #u36824 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:1203px;
  3152. top:-809px;
  3153. width:97px;
  3154. height:33px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3157. font-weight:500;
  3158. font-style:normal;
  3159. font-size:24px;
  3160. }
  3161. #u36824 .text {
  3162. position:absolute;
  3163. align-self:flex-start;
  3164. padding:0px 0px 0px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u36824_text {
  3169. border-width:0px;
  3170. white-space:nowrap;
  3171. text-transform:none;
  3172. }
  3173. #u36825_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:61px;
  3179. height:63px;
  3180. }
  3181. #u36825 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:1122px;
  3185. top:-824px;
  3186. width:61px;
  3187. height:63px;
  3188. display:flex;
  3189. }
  3190. #u36825 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 2px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u36825_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u36826_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:15px;
  3209. height:4px;
  3210. }
  3211. #u36826 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:1319px;
  3215. top:-835px;
  3216. width:15px;
  3217. height:4px;
  3218. display:flex;
  3219. }
  3220. #u36826 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 2px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u36826_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u36827 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:0px;
  3239. height:0px;
  3240. }
  3241. #u36828_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:240px;
  3247. height:100px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 1);
  3250. border:none;
  3251. border-radius:0px;
  3252. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3253. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3254. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3255. }
  3256. #u36828 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:64px;
  3260. top:-722px;
  3261. width:240px;
  3262. height:100px;
  3263. display:flex;
  3264. }
  3265. #u36828 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 2px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u36828_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u36829_div {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:97px;
  3284. height:33px;
  3285. background:inherit;
  3286. background-color:rgba(255, 255, 255, 0);
  3287. border:none;
  3288. border-radius:0px;
  3289. -moz-box-shadow:none;
  3290. -webkit-box-shadow:none;
  3291. box-shadow:none;
  3292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3293. font-weight:500;
  3294. font-style:normal;
  3295. font-size:24px;
  3296. }
  3297. #u36829 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:163px;
  3301. top:-689px;
  3302. width:97px;
  3303. height:33px;
  3304. display:flex;
  3305. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3306. font-weight:500;
  3307. font-style:normal;
  3308. font-size:24px;
  3309. }
  3310. #u36829 .text {
  3311. position:absolute;
  3312. align-self:flex-start;
  3313. padding:0px 0px 0px 0px;
  3314. box-sizing:border-box;
  3315. width:100%;
  3316. }
  3317. #u36829_text {
  3318. border-width:0px;
  3319. white-space:nowrap;
  3320. text-transform:none;
  3321. }
  3322. #u36830_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:61px;
  3328. height:63px;
  3329. }
  3330. #u36830 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:82px;
  3334. top:-704px;
  3335. width:61px;
  3336. height:63px;
  3337. display:flex;
  3338. }
  3339. #u36830 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 2px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u36830_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. visibility:hidden;
  3351. }
  3352. #u36831_img {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:15px;
  3358. height:4px;
  3359. }
  3360. #u36831 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:279px;
  3364. top:-715px;
  3365. width:15px;
  3366. height:4px;
  3367. display:flex;
  3368. }
  3369. #u36831 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 2px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u36831_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u36832 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:0px;
  3388. height:0px;
  3389. }
  3390. #u36833_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:240px;
  3396. height:100px;
  3397. background:inherit;
  3398. background-color:rgba(255, 255, 255, 1);
  3399. border:none;
  3400. border-radius:0px;
  3401. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3402. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3403. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3404. }
  3405. #u36833 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:584px;
  3409. top:-842px;
  3410. width:240px;
  3411. height:100px;
  3412. display:flex;
  3413. }
  3414. #u36833 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 2px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u36833_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u36834_div {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:97px;
  3433. height:33px;
  3434. background:inherit;
  3435. background-color:rgba(255, 255, 255, 0);
  3436. border:none;
  3437. border-radius:0px;
  3438. -moz-box-shadow:none;
  3439. -webkit-box-shadow:none;
  3440. box-shadow:none;
  3441. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3442. font-weight:500;
  3443. font-style:normal;
  3444. font-size:24px;
  3445. }
  3446. #u36834 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:683px;
  3450. top:-809px;
  3451. width:97px;
  3452. height:33px;
  3453. display:flex;
  3454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3455. font-weight:500;
  3456. font-style:normal;
  3457. font-size:24px;
  3458. }
  3459. #u36834 .text {
  3460. position:absolute;
  3461. align-self:flex-start;
  3462. padding:0px 0px 0px 0px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u36834_text {
  3467. border-width:0px;
  3468. white-space:nowrap;
  3469. text-transform:none;
  3470. }
  3471. #u36835_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:61px;
  3477. height:63px;
  3478. }
  3479. #u36835 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:602px;
  3483. top:-824px;
  3484. width:61px;
  3485. height:63px;
  3486. display:flex;
  3487. }
  3488. #u36835 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 2px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u36835_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u36836_img {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:15px;
  3507. height:4px;
  3508. }
  3509. #u36836 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:799px;
  3513. top:-835px;
  3514. width:15px;
  3515. height:4px;
  3516. display:flex;
  3517. }
  3518. #u36836 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 2px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u36836_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u36837 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:0px;
  3537. height:0px;
  3538. }
  3539. #u36838_div {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:240px;
  3545. height:100px;
  3546. background:inherit;
  3547. background-color:rgba(255, 255, 255, 1);
  3548. border:none;
  3549. border-radius:0px;
  3550. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3551. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3552. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3553. }
  3554. #u36838 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:584px;
  3558. top:-482px;
  3559. width:240px;
  3560. height:100px;
  3561. display:flex;
  3562. }
  3563. #u36838 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 2px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u36838_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u36839_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:97px;
  3582. height:33px;
  3583. background:inherit;
  3584. background-color:rgba(255, 255, 255, 0);
  3585. border:none;
  3586. border-radius:0px;
  3587. -moz-box-shadow:none;
  3588. -webkit-box-shadow:none;
  3589. box-shadow:none;
  3590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3591. font-weight:500;
  3592. font-style:normal;
  3593. font-size:24px;
  3594. }
  3595. #u36839 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:683px;
  3599. top:-449px;
  3600. width:97px;
  3601. height:33px;
  3602. display:flex;
  3603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3604. font-weight:500;
  3605. font-style:normal;
  3606. font-size:24px;
  3607. }
  3608. #u36839 .text {
  3609. position:absolute;
  3610. align-self:flex-start;
  3611. padding:0px 0px 0px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u36839_text {
  3616. border-width:0px;
  3617. white-space:nowrap;
  3618. text-transform:none;
  3619. }
  3620. #u36840_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:61px;
  3626. height:63px;
  3627. }
  3628. #u36840 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:602px;
  3632. top:-464px;
  3633. width:61px;
  3634. height:63px;
  3635. display:flex;
  3636. }
  3637. #u36840 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u36840_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. visibility:hidden;
  3649. }
  3650. #u36841_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:15px;
  3656. height:4px;
  3657. }
  3658. #u36841 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:799px;
  3662. top:-473px;
  3663. width:15px;
  3664. height:4px;
  3665. display:flex;
  3666. }
  3667. #u36841 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 2px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u36841_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u36842 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:0px;
  3686. height:0px;
  3687. }
  3688. #u36843_div {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:240px;
  3694. height:100px;
  3695. background:inherit;
  3696. background-color:rgba(255, 255, 255, 1);
  3697. border:none;
  3698. border-radius:0px;
  3699. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3700. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3701. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3702. }
  3703. #u36843 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:64px;
  3707. top:-842px;
  3708. width:240px;
  3709. height:100px;
  3710. display:flex;
  3711. }
  3712. #u36843 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u36843_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u36844_div {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:97px;
  3731. height:33px;
  3732. background:inherit;
  3733. background-color:rgba(255, 255, 255, 0);
  3734. border:none;
  3735. border-radius:0px;
  3736. -moz-box-shadow:none;
  3737. -webkit-box-shadow:none;
  3738. box-shadow:none;
  3739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3740. font-weight:500;
  3741. font-style:normal;
  3742. font-size:24px;
  3743. }
  3744. #u36844 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:163px;
  3748. top:-809px;
  3749. width:97px;
  3750. height:33px;
  3751. display:flex;
  3752. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3753. font-weight:500;
  3754. font-style:normal;
  3755. font-size:24px;
  3756. }
  3757. #u36844 .text {
  3758. position:absolute;
  3759. align-self:flex-start;
  3760. padding:0px 0px 0px 0px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u36844_text {
  3765. border-width:0px;
  3766. white-space:nowrap;
  3767. text-transform:none;
  3768. }
  3769. #u36845_img {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:61px;
  3775. height:63px;
  3776. }
  3777. #u36845 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:82px;
  3781. top:-824px;
  3782. width:61px;
  3783. height:63px;
  3784. display:flex;
  3785. }
  3786. #u36845 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 2px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u36845_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u36846_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:15px;
  3805. height:4px;
  3806. }
  3807. #u36846 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:279px;
  3811. top:-835px;
  3812. width:15px;
  3813. height:4px;
  3814. display:flex;
  3815. }
  3816. #u36846 .text {
  3817. position:absolute;
  3818. align-self:center;
  3819. padding:2px 2px 2px 2px;
  3820. box-sizing:border-box;
  3821. width:100%;
  3822. }
  3823. #u36846_text {
  3824. border-width:0px;
  3825. word-wrap:break-word;
  3826. text-transform:none;
  3827. visibility:hidden;
  3828. }
  3829. #u36847 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:0px;
  3835. height:0px;
  3836. }
  3837. #u36848_div {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:240px;
  3843. height:100px;
  3844. background:inherit;
  3845. background-color:rgba(255, 255, 255, 1);
  3846. border:none;
  3847. border-radius:0px;
  3848. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3849. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3850. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3851. }
  3852. #u36848 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:844px;
  3856. top:-962px;
  3857. width:240px;
  3858. height:100px;
  3859. display:flex;
  3860. }
  3861. #u36848 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 2px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u36848_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. visibility:hidden;
  3873. }
  3874. #u36849_div {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:97px;
  3880. height:33px;
  3881. background:inherit;
  3882. background-color:rgba(255, 255, 255, 0);
  3883. border:none;
  3884. border-radius:0px;
  3885. -moz-box-shadow:none;
  3886. -webkit-box-shadow:none;
  3887. box-shadow:none;
  3888. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3889. font-weight:500;
  3890. font-style:normal;
  3891. font-size:24px;
  3892. }
  3893. #u36849 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:943px;
  3897. top:-929px;
  3898. width:97px;
  3899. height:33px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3902. font-weight:500;
  3903. font-style:normal;
  3904. font-size:24px;
  3905. }
  3906. #u36849 .text {
  3907. position:absolute;
  3908. align-self:flex-start;
  3909. padding:0px 0px 0px 0px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u36849_text {
  3914. border-width:0px;
  3915. white-space:nowrap;
  3916. text-transform:none;
  3917. }
  3918. #u36850_img {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:61px;
  3924. height:63px;
  3925. }
  3926. #u36850 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:862px;
  3930. top:-944px;
  3931. width:61px;
  3932. height:63px;
  3933. display:flex;
  3934. }
  3935. #u36850 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 2px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u36850_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u36851_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:15px;
  3954. height:4px;
  3955. }
  3956. #u36851 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:1059px;
  3960. top:-955px;
  3961. width:15px;
  3962. height:4px;
  3963. display:flex;
  3964. }
  3965. #u36851 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 2px 2px 2px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u36851_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u36852 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:0px;
  3984. height:0px;
  3985. }
  3986. #u36853_div {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:240px;
  3992. height:100px;
  3993. background:inherit;
  3994. background-color:rgba(255, 255, 255, 1);
  3995. border:none;
  3996. border-radius:0px;
  3997. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3998. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3999. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4000. }
  4001. #u36853 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:1104px;
  4005. top:-962px;
  4006. width:240px;
  4007. height:100px;
  4008. display:flex;
  4009. }
  4010. #u36853 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u36853_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u36854_div {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:97px;
  4029. height:33px;
  4030. background:inherit;
  4031. background-color:rgba(255, 255, 255, 0);
  4032. border:none;
  4033. border-radius:0px;
  4034. -moz-box-shadow:none;
  4035. -webkit-box-shadow:none;
  4036. box-shadow:none;
  4037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4038. font-weight:500;
  4039. font-style:normal;
  4040. font-size:24px;
  4041. }
  4042. #u36854 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:1203px;
  4046. top:-929px;
  4047. width:97px;
  4048. height:33px;
  4049. display:flex;
  4050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4051. font-weight:500;
  4052. font-style:normal;
  4053. font-size:24px;
  4054. }
  4055. #u36854 .text {
  4056. position:absolute;
  4057. align-self:flex-start;
  4058. padding:0px 0px 0px 0px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u36854_text {
  4063. border-width:0px;
  4064. white-space:nowrap;
  4065. text-transform:none;
  4066. }
  4067. #u36855_img {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:61px;
  4073. height:63px;
  4074. }
  4075. #u36855 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:1122px;
  4079. top:-944px;
  4080. width:61px;
  4081. height:63px;
  4082. display:flex;
  4083. }
  4084. #u36855 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 2px 2px 2px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u36855_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. visibility:hidden;
  4096. }
  4097. #u36856_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:15px;
  4103. height:4px;
  4104. }
  4105. #u36856 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:1319px;
  4109. top:-955px;
  4110. width:15px;
  4111. height:4px;
  4112. display:flex;
  4113. }
  4114. #u36856 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u36856_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u36857 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:0px;
  4133. height:0px;
  4134. }
  4135. #u36858_div {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:240px;
  4141. height:100px;
  4142. background:inherit;
  4143. background-color:rgba(255, 255, 255, 1);
  4144. border:none;
  4145. border-radius:0px;
  4146. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4147. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4148. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4149. }
  4150. #u36858 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:324px;
  4154. top:-842px;
  4155. width:240px;
  4156. height:100px;
  4157. display:flex;
  4158. }
  4159. #u36858 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u36858_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u36859_div {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:97px;
  4178. height:33px;
  4179. background:inherit;
  4180. background-color:rgba(255, 255, 255, 0);
  4181. border:none;
  4182. border-radius:0px;
  4183. -moz-box-shadow:none;
  4184. -webkit-box-shadow:none;
  4185. box-shadow:none;
  4186. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4187. font-weight:500;
  4188. font-style:normal;
  4189. font-size:24px;
  4190. }
  4191. #u36859 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:423px;
  4195. top:-809px;
  4196. width:97px;
  4197. height:33px;
  4198. display:flex;
  4199. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4200. font-weight:500;
  4201. font-style:normal;
  4202. font-size:24px;
  4203. }
  4204. #u36859 .text {
  4205. position:absolute;
  4206. align-self:flex-start;
  4207. padding:0px 0px 0px 0px;
  4208. box-sizing:border-box;
  4209. width:100%;
  4210. }
  4211. #u36859_text {
  4212. border-width:0px;
  4213. white-space:nowrap;
  4214. text-transform:none;
  4215. }
  4216. #u36860_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:61px;
  4222. height:63px;
  4223. }
  4224. #u36860 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:342px;
  4228. top:-824px;
  4229. width:61px;
  4230. height:63px;
  4231. display:flex;
  4232. }
  4233. #u36860 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u36860_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u36861_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:15px;
  4252. height:4px;
  4253. }
  4254. #u36861 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:542px;
  4258. top:-833px;
  4259. width:15px;
  4260. height:4px;
  4261. display:flex;
  4262. }
  4263. #u36861 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 2px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u36861_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u36862 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:0px;
  4282. height:0px;
  4283. }
  4284. #u36863_div {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:240px;
  4290. height:100px;
  4291. background:inherit;
  4292. background-color:rgba(255, 255, 255, 1);
  4293. border:none;
  4294. border-radius:0px;
  4295. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4296. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4297. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4298. }
  4299. #u36863 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:324px;
  4303. top:-602px;
  4304. width:240px;
  4305. height:100px;
  4306. display:flex;
  4307. }
  4308. #u36863 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u36863_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u36864_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:97px;
  4327. height:33px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 0);
  4330. border:none;
  4331. border-radius:0px;
  4332. -moz-box-shadow:none;
  4333. -webkit-box-shadow:none;
  4334. box-shadow:none;
  4335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4336. font-weight:500;
  4337. font-style:normal;
  4338. font-size:24px;
  4339. }
  4340. #u36864 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:423px;
  4344. top:-569px;
  4345. width:97px;
  4346. height:33px;
  4347. display:flex;
  4348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4349. font-weight:500;
  4350. font-style:normal;
  4351. font-size:24px;
  4352. }
  4353. #u36864 .text {
  4354. position:absolute;
  4355. align-self:flex-start;
  4356. padding:0px 0px 0px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u36864_text {
  4361. border-width:0px;
  4362. white-space:nowrap;
  4363. text-transform:none;
  4364. }
  4365. #u36865_img {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:61px;
  4371. height:63px;
  4372. }
  4373. #u36865 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:342px;
  4377. top:-584px;
  4378. width:61px;
  4379. height:63px;
  4380. display:flex;
  4381. }
  4382. #u36865 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 2px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u36865_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u36866_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:15px;
  4401. height:4px;
  4402. }
  4403. #u36866 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:539px;
  4407. top:-593px;
  4408. width:15px;
  4409. height:4px;
  4410. display:flex;
  4411. }
  4412. #u36866 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:2px 2px 2px 2px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u36866_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. visibility:hidden;
  4424. }
  4425. #u36867 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:0px;
  4431. height:0px;
  4432. }
  4433. #u36868_div {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:240px;
  4439. height:100px;
  4440. background:inherit;
  4441. background-color:rgba(255, 255, 255, 1);
  4442. border:none;
  4443. border-radius:0px;
  4444. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4445. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4446. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4447. }
  4448. #u36868 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:844px;
  4452. top:-482px;
  4453. width:240px;
  4454. height:100px;
  4455. display:flex;
  4456. }
  4457. #u36868 .text {
  4458. position:absolute;
  4459. align-self:center;
  4460. padding:2px 2px 2px 2px;
  4461. box-sizing:border-box;
  4462. width:100%;
  4463. }
  4464. #u36868_text {
  4465. border-width:0px;
  4466. word-wrap:break-word;
  4467. text-transform:none;
  4468. visibility:hidden;
  4469. }
  4470. #u36869_div {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:97px;
  4476. height:33px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 0);
  4479. border:none;
  4480. border-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4485. font-weight:500;
  4486. font-style:normal;
  4487. font-size:24px;
  4488. }
  4489. #u36869 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:943px;
  4493. top:-449px;
  4494. width:97px;
  4495. height:33px;
  4496. display:flex;
  4497. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4498. font-weight:500;
  4499. font-style:normal;
  4500. font-size:24px;
  4501. }
  4502. #u36869 .text {
  4503. position:absolute;
  4504. align-self:flex-start;
  4505. padding:0px 0px 0px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u36869_text {
  4510. border-width:0px;
  4511. white-space:nowrap;
  4512. text-transform:none;
  4513. }
  4514. #u36870_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:61px;
  4520. height:63px;
  4521. }
  4522. #u36870 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:862px;
  4526. top:-464px;
  4527. width:61px;
  4528. height:63px;
  4529. display:flex;
  4530. }
  4531. #u36870 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u36870_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u36871_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:15px;
  4550. height:4px;
  4551. }
  4552. #u36871 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:1059px;
  4556. top:-475px;
  4557. width:15px;
  4558. height:4px;
  4559. display:flex;
  4560. }
  4561. #u36871 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u36871_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. visibility:hidden;
  4573. }
  4574. #u36872 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:0px;
  4580. height:0px;
  4581. }
  4582. #u36873_div {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:240px;
  4588. height:100px;
  4589. background:inherit;
  4590. background-color:rgba(255, 255, 255, 1);
  4591. border:none;
  4592. border-radius:0px;
  4593. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4594. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4595. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4596. }
  4597. #u36873 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:1104px;
  4601. top:-482px;
  4602. width:240px;
  4603. height:100px;
  4604. display:flex;
  4605. }
  4606. #u36873 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:2px 2px 2px 2px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u36873_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. visibility:hidden;
  4618. }
  4619. #u36874_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:97px;
  4625. height:33px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4634. font-weight:500;
  4635. font-style:normal;
  4636. font-size:24px;
  4637. }
  4638. #u36874 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:1203px;
  4642. top:-449px;
  4643. width:97px;
  4644. height:33px;
  4645. display:flex;
  4646. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4647. font-weight:500;
  4648. font-style:normal;
  4649. font-size:24px;
  4650. }
  4651. #u36874 .text {
  4652. position:absolute;
  4653. align-self:flex-start;
  4654. padding:0px 0px 0px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u36874_text {
  4659. border-width:0px;
  4660. white-space:nowrap;
  4661. text-transform:none;
  4662. }
  4663. #u36875_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:61px;
  4669. height:63px;
  4670. }
  4671. #u36875 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:1122px;
  4675. top:-464px;
  4676. width:61px;
  4677. height:63px;
  4678. display:flex;
  4679. }
  4680. #u36875 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 2px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u36875_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u36876_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:15px;
  4699. height:4px;
  4700. }
  4701. #u36876 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1319px;
  4705. top:-475px;
  4706. width:15px;
  4707. height:4px;
  4708. display:flex;
  4709. }
  4710. #u36876 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 2px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u36876_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u36877 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:0px;
  4729. height:0px;
  4730. }
  4731. #u36878_div {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:240px;
  4737. height:100px;
  4738. background:inherit;
  4739. background-color:rgba(255, 255, 255, 1);
  4740. border:none;
  4741. border-radius:0px;
  4742. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4743. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4744. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4745. }
  4746. #u36878 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:844px;
  4750. top:-602px;
  4751. width:240px;
  4752. height:100px;
  4753. display:flex;
  4754. }
  4755. #u36878 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u36878_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u36879_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:97px;
  4774. height:33px;
  4775. background:inherit;
  4776. background-color:rgba(255, 255, 255, 0);
  4777. border:none;
  4778. border-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4783. font-weight:500;
  4784. font-style:normal;
  4785. font-size:24px;
  4786. }
  4787. #u36879 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:943px;
  4791. top:-569px;
  4792. width:97px;
  4793. height:33px;
  4794. display:flex;
  4795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4796. font-weight:500;
  4797. font-style:normal;
  4798. font-size:24px;
  4799. }
  4800. #u36879 .text {
  4801. position:absolute;
  4802. align-self:flex-start;
  4803. padding:0px 0px 0px 0px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u36879_text {
  4808. border-width:0px;
  4809. white-space:nowrap;
  4810. text-transform:none;
  4811. }
  4812. #u36880_img {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:61px;
  4818. height:63px;
  4819. }
  4820. #u36880 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:862px;
  4824. top:-584px;
  4825. width:61px;
  4826. height:63px;
  4827. display:flex;
  4828. }
  4829. #u36880 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 2px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u36880_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u36881_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:15px;
  4848. height:4px;
  4849. }
  4850. #u36881 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:1059px;
  4854. top:-595px;
  4855. width:15px;
  4856. height:4px;
  4857. display:flex;
  4858. }
  4859. #u36881 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u36881_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u36882 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:0px;
  4878. height:0px;
  4879. }
  4880. #u36883_div {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:240px;
  4886. height:100px;
  4887. background:inherit;
  4888. background-color:rgba(255, 255, 255, 1);
  4889. border:none;
  4890. border-radius:0px;
  4891. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4892. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4893. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4894. }
  4895. #u36883 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:1104px;
  4899. top:-602px;
  4900. width:240px;
  4901. height:100px;
  4902. display:flex;
  4903. }
  4904. #u36883 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u36883_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. visibility:hidden;
  4916. }
  4917. #u36884_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:97px;
  4923. height:33px;
  4924. background:inherit;
  4925. background-color:rgba(255, 255, 255, 0);
  4926. border:none;
  4927. border-radius:0px;
  4928. -moz-box-shadow:none;
  4929. -webkit-box-shadow:none;
  4930. box-shadow:none;
  4931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4932. font-weight:500;
  4933. font-style:normal;
  4934. font-size:24px;
  4935. }
  4936. #u36884 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:1203px;
  4940. top:-569px;
  4941. width:97px;
  4942. height:33px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4945. font-weight:500;
  4946. font-style:normal;
  4947. font-size:24px;
  4948. }
  4949. #u36884 .text {
  4950. position:absolute;
  4951. align-self:flex-start;
  4952. padding:0px 0px 0px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u36884_text {
  4957. border-width:0px;
  4958. white-space:nowrap;
  4959. text-transform:none;
  4960. }
  4961. #u36885_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:61px;
  4967. height:63px;
  4968. }
  4969. #u36885 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:1122px;
  4973. top:-584px;
  4974. width:61px;
  4975. height:63px;
  4976. display:flex;
  4977. }
  4978. #u36885 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 2px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u36885_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u36886_img {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:15px;
  4997. height:4px;
  4998. }
  4999. #u36886 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:1322px;
  5003. top:-593px;
  5004. width:15px;
  5005. height:4px;
  5006. display:flex;
  5007. }
  5008. #u36886 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 2px 2px 2px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u36886_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u36887 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:0px;
  5027. height:0px;
  5028. }
  5029. #u36888_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:240px;
  5035. height:100px;
  5036. background:inherit;
  5037. background-color:rgba(255, 255, 255, 1);
  5038. border:none;
  5039. border-radius:0px;
  5040. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5041. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5042. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5043. }
  5044. #u36888 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:324px;
  5048. top:-482px;
  5049. width:240px;
  5050. height:100px;
  5051. display:flex;
  5052. }
  5053. #u36888 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 2px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u36888_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u36889_div {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:97px;
  5072. height:33px;
  5073. background:inherit;
  5074. background-color:rgba(255, 255, 255, 0);
  5075. border:none;
  5076. border-radius:0px;
  5077. -moz-box-shadow:none;
  5078. -webkit-box-shadow:none;
  5079. box-shadow:none;
  5080. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5081. font-weight:500;
  5082. font-style:normal;
  5083. font-size:24px;
  5084. }
  5085. #u36889 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:423px;
  5089. top:-449px;
  5090. width:97px;
  5091. height:33px;
  5092. display:flex;
  5093. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5094. font-weight:500;
  5095. font-style:normal;
  5096. font-size:24px;
  5097. }
  5098. #u36889 .text {
  5099. position:absolute;
  5100. align-self:flex-start;
  5101. padding:0px 0px 0px 0px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u36889_text {
  5106. border-width:0px;
  5107. white-space:nowrap;
  5108. text-transform:none;
  5109. }
  5110. #u36890_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:61px;
  5116. height:63px;
  5117. }
  5118. #u36890 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:342px;
  5122. top:-464px;
  5123. width:61px;
  5124. height:63px;
  5125. display:flex;
  5126. }
  5127. #u36890 .text {
  5128. position:absolute;
  5129. align-self:center;
  5130. padding:2px 2px 2px 2px;
  5131. box-sizing:border-box;
  5132. width:100%;
  5133. }
  5134. #u36890_text {
  5135. border-width:0px;
  5136. word-wrap:break-word;
  5137. text-transform:none;
  5138. visibility:hidden;
  5139. }
  5140. #u36891_img {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:0px;
  5144. top:0px;
  5145. width:15px;
  5146. height:4px;
  5147. }
  5148. #u36891 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:539px;
  5152. top:-475px;
  5153. width:15px;
  5154. height:4px;
  5155. display:flex;
  5156. }
  5157. #u36891 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:2px 2px 2px 2px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u36891_text {
  5165. border-width:0px;
  5166. word-wrap:break-word;
  5167. text-transform:none;
  5168. visibility:hidden;
  5169. }
  5170. #u36892 {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:0px;
  5176. height:0px;
  5177. }
  5178. #u36893_div {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:240px;
  5184. height:100px;
  5185. background:inherit;
  5186. background-color:rgba(255, 255, 255, 1);
  5187. border:none;
  5188. border-radius:0px;
  5189. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5190. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5191. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5192. }
  5193. #u36893 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:64px;
  5197. top:-482px;
  5198. width:240px;
  5199. height:100px;
  5200. display:flex;
  5201. }
  5202. #u36893 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 2px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u36893_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u36894_div {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:97px;
  5221. height:33px;
  5222. background:inherit;
  5223. background-color:rgba(255, 255, 255, 0);
  5224. border:none;
  5225. border-radius:0px;
  5226. -moz-box-shadow:none;
  5227. -webkit-box-shadow:none;
  5228. box-shadow:none;
  5229. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5230. font-weight:500;
  5231. font-style:normal;
  5232. font-size:24px;
  5233. }
  5234. #u36894 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:163px;
  5238. top:-449px;
  5239. width:97px;
  5240. height:33px;
  5241. display:flex;
  5242. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5243. font-weight:500;
  5244. font-style:normal;
  5245. font-size:24px;
  5246. }
  5247. #u36894 .text {
  5248. position:absolute;
  5249. align-self:flex-start;
  5250. padding:0px 0px 0px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u36894_text {
  5255. border-width:0px;
  5256. white-space:nowrap;
  5257. text-transform:none;
  5258. }
  5259. #u36895_img {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:61px;
  5265. height:63px;
  5266. }
  5267. #u36895 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:82px;
  5271. top:-464px;
  5272. width:61px;
  5273. height:63px;
  5274. display:flex;
  5275. }
  5276. #u36895 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:2px 2px 2px 2px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u36895_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. visibility:hidden;
  5288. }
  5289. #u36896_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:15px;
  5295. height:4px;
  5296. }
  5297. #u36896 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:282px;
  5301. top:-473px;
  5302. width:15px;
  5303. height:4px;
  5304. display:flex;
  5305. }
  5306. #u36896 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 2px 2px 2px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u36896_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. visibility:hidden;
  5318. }
  5319. #u36897 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:0px;
  5325. height:0px;
  5326. }
  5327. #u36898_div {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:0px;
  5331. top:0px;
  5332. width:240px;
  5333. height:100px;
  5334. background:inherit;
  5335. background-color:rgba(255, 255, 255, 1);
  5336. border:none;
  5337. border-radius:0px;
  5338. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5339. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5340. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5341. }
  5342. #u36898 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:64px;
  5346. top:-361px;
  5347. width:240px;
  5348. height:100px;
  5349. display:flex;
  5350. }
  5351. #u36898 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u36898_text {
  5359. border-width:0px;
  5360. word-wrap:break-word;
  5361. text-transform:none;
  5362. visibility:hidden;
  5363. }
  5364. #u36899_div {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:97px;
  5370. height:33px;
  5371. background:inherit;
  5372. background-color:rgba(255, 255, 255, 0);
  5373. border:none;
  5374. border-radius:0px;
  5375. -moz-box-shadow:none;
  5376. -webkit-box-shadow:none;
  5377. box-shadow:none;
  5378. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5379. font-weight:500;
  5380. font-style:normal;
  5381. font-size:24px;
  5382. }
  5383. #u36899 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:163px;
  5387. top:-328px;
  5388. width:97px;
  5389. height:33px;
  5390. display:flex;
  5391. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5392. font-weight:500;
  5393. font-style:normal;
  5394. font-size:24px;
  5395. }
  5396. #u36899 .text {
  5397. position:absolute;
  5398. align-self:flex-start;
  5399. padding:0px 0px 0px 0px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u36899_text {
  5404. border-width:0px;
  5405. white-space:nowrap;
  5406. text-transform:none;
  5407. }
  5408. #u36900_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:61px;
  5414. height:63px;
  5415. }
  5416. #u36900 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:82px;
  5420. top:-343px;
  5421. width:61px;
  5422. height:63px;
  5423. display:flex;
  5424. }
  5425. #u36900 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 2px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u36900_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u36901_img {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:15px;
  5444. height:4px;
  5445. }
  5446. #u36901 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:279px;
  5450. top:-352px;
  5451. width:15px;
  5452. height:4px;
  5453. display:flex;
  5454. }
  5455. #u36901 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 2px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u36901_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u36902 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:0px;
  5474. height:0px;
  5475. }
  5476. #u36903_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:240px;
  5482. height:100px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 1);
  5485. border:none;
  5486. border-radius:0px;
  5487. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5488. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5489. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5490. }
  5491. #u36903 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:324px;
  5495. top:-362px;
  5496. width:240px;
  5497. height:100px;
  5498. display:flex;
  5499. }
  5500. #u36903 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 2px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u36903_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u36904_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:97px;
  5519. height:33px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 0);
  5522. border:none;
  5523. border-radius:0px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5528. font-weight:500;
  5529. font-style:normal;
  5530. font-size:24px;
  5531. }
  5532. #u36904 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:423px;
  5536. top:-329px;
  5537. width:97px;
  5538. height:33px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5541. font-weight:500;
  5542. font-style:normal;
  5543. font-size:24px;
  5544. }
  5545. #u36904 .text {
  5546. position:absolute;
  5547. align-self:flex-start;
  5548. padding:0px 0px 0px 0px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u36904_text {
  5553. border-width:0px;
  5554. white-space:nowrap;
  5555. text-transform:none;
  5556. }
  5557. #u36905_img {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:61px;
  5563. height:63px;
  5564. }
  5565. #u36905 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:342px;
  5569. top:-344px;
  5570. width:61px;
  5571. height:63px;
  5572. display:flex;
  5573. }
  5574. #u36905 .text {
  5575. position:absolute;
  5576. align-self:center;
  5577. padding:2px 2px 2px 2px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u36905_text {
  5582. border-width:0px;
  5583. word-wrap:break-word;
  5584. text-transform:none;
  5585. visibility:hidden;
  5586. }
  5587. #u36906_img {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:15px;
  5593. height:4px;
  5594. }
  5595. #u36906 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:539px;
  5599. top:-353px;
  5600. width:15px;
  5601. height:4px;
  5602. display:flex;
  5603. }
  5604. #u36906 .text {
  5605. position:absolute;
  5606. align-self:center;
  5607. padding:2px 2px 2px 2px;
  5608. box-sizing:border-box;
  5609. width:100%;
  5610. }
  5611. #u36906_text {
  5612. border-width:0px;
  5613. word-wrap:break-word;
  5614. text-transform:none;
  5615. visibility:hidden;
  5616. }
  5617. #u36907 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:0px;
  5623. height:0px;
  5624. }
  5625. #u36908_div {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:240px;
  5631. height:100px;
  5632. background:inherit;
  5633. background-color:rgba(255, 255, 255, 1);
  5634. border:none;
  5635. border-radius:0px;
  5636. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5637. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5638. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5639. }
  5640. #u36908 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:584px;
  5644. top:-362px;
  5645. width:240px;
  5646. height:100px;
  5647. display:flex;
  5648. }
  5649. #u36908 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:2px 2px 2px 2px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u36908_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u36909_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:97px;
  5668. height:33px;
  5669. background:inherit;
  5670. background-color:rgba(255, 255, 255, 0);
  5671. border:none;
  5672. border-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5677. font-weight:500;
  5678. font-style:normal;
  5679. font-size:24px;
  5680. }
  5681. #u36909 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:683px;
  5685. top:-329px;
  5686. width:97px;
  5687. height:33px;
  5688. display:flex;
  5689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5690. font-weight:500;
  5691. font-style:normal;
  5692. font-size:24px;
  5693. }
  5694. #u36909 .text {
  5695. position:absolute;
  5696. align-self:flex-start;
  5697. padding:0px 0px 0px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u36909_text {
  5702. border-width:0px;
  5703. white-space:nowrap;
  5704. text-transform:none;
  5705. }
  5706. #u36910_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:61px;
  5712. height:63px;
  5713. }
  5714. #u36910 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:602px;
  5718. top:-344px;
  5719. width:61px;
  5720. height:63px;
  5721. display:flex;
  5722. }
  5723. #u36910 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u36910_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u36911_img {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:15px;
  5742. height:4px;
  5743. }
  5744. #u36911 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:799px;
  5748. top:-353px;
  5749. width:15px;
  5750. height:4px;
  5751. display:flex;
  5752. }
  5753. #u36911 .text {
  5754. position:absolute;
  5755. align-self:center;
  5756. padding:2px 2px 2px 2px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u36911_text {
  5761. border-width:0px;
  5762. word-wrap:break-word;
  5763. text-transform:none;
  5764. visibility:hidden;
  5765. }
  5766. #u36912 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:0px;
  5772. height:0px;
  5773. }
  5774. #u36913_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:240px;
  5780. height:100px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 1);
  5783. border:none;
  5784. border-radius:0px;
  5785. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5786. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5787. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5788. }
  5789. #u36913 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:324px;
  5793. top:-722px;
  5794. width:240px;
  5795. height:100px;
  5796. display:flex;
  5797. }
  5798. #u36913 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:2px 2px 2px 2px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u36913_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. visibility:hidden;
  5810. }
  5811. #u36914_div {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:97px;
  5817. height:33px;
  5818. background:inherit;
  5819. background-color:rgba(255, 255, 255, 0);
  5820. border:none;
  5821. border-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5826. font-weight:500;
  5827. font-style:normal;
  5828. font-size:24px;
  5829. }
  5830. #u36914 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:423px;
  5834. top:-689px;
  5835. width:97px;
  5836. height:33px;
  5837. display:flex;
  5838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5839. font-weight:500;
  5840. font-style:normal;
  5841. font-size:24px;
  5842. }
  5843. #u36914 .text {
  5844. position:absolute;
  5845. align-self:flex-start;
  5846. padding:0px 0px 0px 0px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u36914_text {
  5851. border-width:0px;
  5852. white-space:nowrap;
  5853. text-transform:none;
  5854. }
  5855. #u36915_img {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:61px;
  5861. height:63px;
  5862. }
  5863. #u36915 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:342px;
  5867. top:-704px;
  5868. width:61px;
  5869. height:63px;
  5870. display:flex;
  5871. }
  5872. #u36915 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 2px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u36915_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. visibility:hidden;
  5884. }
  5885. #u36916_img {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:15px;
  5891. height:4px;
  5892. }
  5893. #u36916 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:539px;
  5897. top:-715px;
  5898. width:15px;
  5899. height:4px;
  5900. display:flex;
  5901. }
  5902. #u36916 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 2px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u36916_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. visibility:hidden;
  5914. }
  5915. #u36917 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:0px;
  5921. height:0px;
  5922. }
  5923. #u36918_div {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:240px;
  5929. height:100px;
  5930. background:inherit;
  5931. background-color:rgba(255, 255, 255, 1);
  5932. border:none;
  5933. border-radius:0px;
  5934. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5935. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5936. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5937. }
  5938. #u36918 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:584px;
  5942. top:-602px;
  5943. width:240px;
  5944. height:100px;
  5945. display:flex;
  5946. }
  5947. #u36918 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u36918_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u36919_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:97px;
  5966. height:33px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 0);
  5969. border:none;
  5970. border-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5975. font-weight:500;
  5976. font-style:normal;
  5977. font-size:24px;
  5978. }
  5979. #u36919 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:683px;
  5983. top:-569px;
  5984. width:97px;
  5985. height:33px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5988. font-weight:500;
  5989. font-style:normal;
  5990. font-size:24px;
  5991. }
  5992. #u36919 .text {
  5993. position:absolute;
  5994. align-self:flex-start;
  5995. padding:0px 0px 0px 0px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u36919_text {
  6000. border-width:0px;
  6001. white-space:nowrap;
  6002. text-transform:none;
  6003. }
  6004. #u36920_img {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:61px;
  6010. height:63px;
  6011. }
  6012. #u36920 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:602px;
  6016. top:-584px;
  6017. width:61px;
  6018. height:63px;
  6019. display:flex;
  6020. }
  6021. #u36920 .text {
  6022. position:absolute;
  6023. align-self:center;
  6024. padding:2px 2px 2px 2px;
  6025. box-sizing:border-box;
  6026. width:100%;
  6027. }
  6028. #u36920_text {
  6029. border-width:0px;
  6030. word-wrap:break-word;
  6031. text-transform:none;
  6032. visibility:hidden;
  6033. }
  6034. #u36921_img {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:15px;
  6040. height:4px;
  6041. }
  6042. #u36921 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:799px;
  6046. top:-595px;
  6047. width:15px;
  6048. height:4px;
  6049. display:flex;
  6050. }
  6051. #u36921 .text {
  6052. position:absolute;
  6053. align-self:center;
  6054. padding:2px 2px 2px 2px;
  6055. box-sizing:border-box;
  6056. width:100%;
  6057. }
  6058. #u36921_text {
  6059. border-width:0px;
  6060. word-wrap:break-word;
  6061. text-transform:none;
  6062. visibility:hidden;
  6063. }
  6064. #u36922 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:0px;
  6070. height:0px;
  6071. }
  6072. #u36923_div {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:120px;
  6078. height:60px;
  6079. background:inherit;
  6080. background-color:rgba(255, 255, 255, 1);
  6081. border:none;
  6082. border-radius:0px;
  6083. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6084. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6085. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6086. }
  6087. #u36923 {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:92px;
  6091. top:-219px;
  6092. width:120px;
  6093. height:60px;
  6094. display:flex;
  6095. }
  6096. #u36923 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:2px 2px 2px 2px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u36923_text {
  6104. border-width:0px;
  6105. word-wrap:break-word;
  6106. text-transform:none;
  6107. visibility:hidden;
  6108. }
  6109. #u36924_div {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:75px;
  6115. height:40px;
  6116. background:inherit;
  6117. background-color:rgba(255, 255, 255, 1);
  6118. border:none;
  6119. border-left:0px;
  6120. border-top:0px;
  6121. border-right:0px;
  6122. border-radius:0px;
  6123. border-bottom-right-radius:0px;
  6124. border-bottom-left-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. font-size:14px;
  6132. text-align:left;
  6133. }
  6134. #u36924 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:112px;
  6138. top:-209px;
  6139. width:75px;
  6140. height:40px;
  6141. display:flex;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:14px;
  6146. text-align:left;
  6147. }
  6148. #u36924 .text {
  6149. position:absolute;
  6150. align-self:center;
  6151. padding:2px 2px 2px 2px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u36924_text {
  6156. border-width:0px;
  6157. white-space:nowrap;
  6158. text-transform:none;
  6159. }
  6160. #u36925_div {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:444px;
  6166. height:20px;
  6167. background:inherit;
  6168. background-color:rgba(255, 255, 255, 0);
  6169. border:none;
  6170. border-radius:0px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6175. font-weight:500;
  6176. font-style:normal;
  6177. }
  6178. #u36925 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:163px;
  6182. top:316px;
  6183. width:444px;
  6184. height:20px;
  6185. display:flex;
  6186. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6187. font-weight:500;
  6188. font-style:normal;
  6189. }
  6190. #u36925 .text {
  6191. position:absolute;
  6192. align-self:flex-start;
  6193. padding:0px 0px 0px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u36925_text {
  6198. border-width:0px;
  6199. white-space:nowrap;
  6200. text-transform:none;
  6201. }
  6202. #u36926_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:694px;
  6208. height:180px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(217, 0, 27, 1);
  6215. border-radius:0px;
  6216. -moz-box-shadow:none;
  6217. -webkit-box-shadow:none;
  6218. box-shadow:none;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:18px;
  6223. color:#D9001B;
  6224. line-height:40px;
  6225. }
  6226. #u36926 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:985px;
  6230. top:116px;
  6231. width:694px;
  6232. height:180px;
  6233. display:flex;
  6234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. font-size:18px;
  6238. color:#D9001B;
  6239. line-height:40px;
  6240. }
  6241. #u36926 .text {
  6242. position:absolute;
  6243. align-self:flex-start;
  6244. padding:10px 10px 10px 10px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u36926_text {
  6249. border-width:0px;
  6250. white-space:nowrap;
  6251. text-transform:none;
  6252. }
  6253. #u36927 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:0px;
  6259. height:0px;
  6260. }
  6261. #u36928_div {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:240px;
  6267. height:80px;
  6268. background:inherit;
  6269. background-color:rgba(242, 242, 242, 1);
  6270. border:none;
  6271. border-radius:0px;
  6272. -moz-box-shadow:none;
  6273. -webkit-box-shadow:none;
  6274. box-shadow:none;
  6275. }
  6276. #u36928 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:154px;
  6280. top:356px;
  6281. width:240px;
  6282. height:80px;
  6283. display:flex;
  6284. }
  6285. #u36928 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 2px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u36928_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u36929_img {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:50px;
  6304. height:53px;
  6305. }
  6306. #u36929 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:170px;
  6310. top:369px;
  6311. width:50px;
  6312. height:53px;
  6313. display:flex;
  6314. }
  6315. #u36929 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u36929_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. visibility:hidden;
  6327. }
  6328. #u36930 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:0px;
  6334. height:0px;
  6335. }
  6336. #u36931_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:73px;
  6342. height:25px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 0);
  6345. border:none;
  6346. border-left:0px;
  6347. border-top:0px;
  6348. border-right:0px;
  6349. border-radius:0px;
  6350. border-bottom-right-radius:0px;
  6351. border-bottom-left-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:18px;
  6359. }
  6360. #u36931 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:235px;
  6364. top:372px;
  6365. width:73px;
  6366. height:25px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:18px;
  6372. }
  6373. #u36931 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:0px 0px 0px 0px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u36931_text {
  6381. border-width:0px;
  6382. white-space:nowrap;
  6383. text-transform:none;
  6384. }
  6385. #u36932_div {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:13px;
  6391. height:17px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 255, 0);
  6394. border:none;
  6395. border-left:0px;
  6396. border-top:0px;
  6397. border-right:0px;
  6398. border-radius:0px;
  6399. border-bottom-right-radius:0px;
  6400. border-bottom-left-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:12px;
  6408. color:#7F7F7F;
  6409. }
  6410. #u36932 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:235px;
  6414. top:402px;
  6415. width:13px;
  6416. height:17px;
  6417. display:flex;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:12px;
  6422. color:#7F7F7F;
  6423. }
  6424. #u36932 .text {
  6425. position:absolute;
  6426. align-self:center;
  6427. padding:0px 0px 0px 0px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u36932_text {
  6432. border-width:0px;
  6433. white-space:nowrap;
  6434. text-transform:none;
  6435. }
  6436. #u36933 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:0px;
  6442. height:0px;
  6443. }
  6444. #u36934_div {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:240px;
  6450. height:80px;
  6451. background:inherit;
  6452. background-color:rgba(242, 242, 242, 1);
  6453. border:none;
  6454. border-radius:0px;
  6455. -moz-box-shadow:none;
  6456. -webkit-box-shadow:none;
  6457. box-shadow:none;
  6458. }
  6459. #u36934 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:424px;
  6463. top:356px;
  6464. width:240px;
  6465. height:80px;
  6466. display:flex;
  6467. }
  6468. #u36934 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 2px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u36934_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. visibility:hidden;
  6480. }
  6481. #u36935_img {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:50px;
  6487. height:53px;
  6488. }
  6489. #u36935 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:440px;
  6493. top:369px;
  6494. width:50px;
  6495. height:53px;
  6496. display:flex;
  6497. }
  6498. #u36935 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:2px 2px 2px 2px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u36935_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. visibility:hidden;
  6510. }
  6511. #u36936 {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:0px;
  6517. height:0px;
  6518. }
  6519. #u36937_div {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:73px;
  6525. height:25px;
  6526. background:inherit;
  6527. background-color:rgba(255, 255, 255, 0);
  6528. border:none;
  6529. border-left:0px;
  6530. border-top:0px;
  6531. border-right:0px;
  6532. border-radius:0px;
  6533. border-bottom-right-radius:0px;
  6534. border-bottom-left-radius:0px;
  6535. -moz-box-shadow:none;
  6536. -webkit-box-shadow:none;
  6537. box-shadow:none;
  6538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:18px;
  6542. }
  6543. #u36937 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:505px;
  6547. top:372px;
  6548. width:73px;
  6549. height:25px;
  6550. display:flex;
  6551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6552. font-weight:400;
  6553. font-style:normal;
  6554. font-size:18px;
  6555. }
  6556. #u36937 .text {
  6557. position:absolute;
  6558. align-self:center;
  6559. padding:0px 0px 0px 0px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u36937_text {
  6564. border-width:0px;
  6565. white-space:nowrap;
  6566. text-transform:none;
  6567. }
  6568. #u36938_div {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:13px;
  6574. height:17px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 0);
  6577. border:none;
  6578. border-left:0px;
  6579. border-top:0px;
  6580. border-right:0px;
  6581. border-radius:0px;
  6582. border-bottom-right-radius:0px;
  6583. border-bottom-left-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:12px;
  6591. color:#7F7F7F;
  6592. }
  6593. #u36938 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:505px;
  6597. top:402px;
  6598. width:13px;
  6599. height:17px;
  6600. display:flex;
  6601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:12px;
  6605. color:#7F7F7F;
  6606. }
  6607. #u36938 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:0px 0px 0px 0px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u36938_text {
  6615. border-width:0px;
  6616. white-space:nowrap;
  6617. text-transform:none;
  6618. }
  6619. #u36939 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:0px;
  6625. height:0px;
  6626. }
  6627. #u36940_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:240px;
  6633. height:80px;
  6634. background:inherit;
  6635. background-color:rgba(242, 242, 242, 1);
  6636. border:none;
  6637. border-radius:0px;
  6638. -moz-box-shadow:none;
  6639. -webkit-box-shadow:none;
  6640. box-shadow:none;
  6641. }
  6642. #u36940 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:695px;
  6646. top:356px;
  6647. width:240px;
  6648. height:80px;
  6649. display:flex;
  6650. }
  6651. #u36940 .text {
  6652. position:absolute;
  6653. align-self:center;
  6654. padding:2px 2px 2px 2px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u36940_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. visibility:hidden;
  6663. }
  6664. #u36941_img {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:50px;
  6670. height:53px;
  6671. }
  6672. #u36941 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:711px;
  6676. top:369px;
  6677. width:50px;
  6678. height:53px;
  6679. display:flex;
  6680. }
  6681. #u36941 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:2px 2px 2px 2px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u36941_text {
  6689. border-width:0px;
  6690. word-wrap:break-word;
  6691. text-transform:none;
  6692. visibility:hidden;
  6693. }
  6694. #u36942 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:0px;
  6700. height:0px;
  6701. }
  6702. #u36943_div {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:73px;
  6708. height:25px;
  6709. background:inherit;
  6710. background-color:rgba(255, 255, 255, 0);
  6711. border:none;
  6712. border-left:0px;
  6713. border-top:0px;
  6714. border-right:0px;
  6715. border-radius:0px;
  6716. border-bottom-right-radius:0px;
  6717. border-bottom-left-radius:0px;
  6718. -moz-box-shadow:none;
  6719. -webkit-box-shadow:none;
  6720. box-shadow:none;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:18px;
  6725. }
  6726. #u36943 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:776px;
  6730. top:372px;
  6731. width:73px;
  6732. height:25px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:18px;
  6738. }
  6739. #u36943 .text {
  6740. position:absolute;
  6741. align-self:center;
  6742. padding:0px 0px 0px 0px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u36943_text {
  6747. border-width:0px;
  6748. white-space:nowrap;
  6749. text-transform:none;
  6750. }
  6751. #u36944_div {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:13px;
  6757. height:17px;
  6758. background:inherit;
  6759. background-color:rgba(255, 255, 255, 0);
  6760. border:none;
  6761. border-left:0px;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-radius:0px;
  6765. border-bottom-right-radius:0px;
  6766. border-bottom-left-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:12px;
  6774. color:#7F7F7F;
  6775. }
  6776. #u36944 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:776px;
  6780. top:402px;
  6781. width:13px;
  6782. height:17px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:12px;
  6788. color:#7F7F7F;
  6789. }
  6790. #u36944 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:0px 0px 0px 0px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u36944_text {
  6798. border-width:0px;
  6799. white-space:nowrap;
  6800. text-transform:none;
  6801. }
  6802. #u36945 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:0px;
  6808. height:0px;
  6809. }
  6810. #u36946_div {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:240px;
  6816. height:80px;
  6817. background:inherit;
  6818. background-color:rgba(242, 242, 242, 1);
  6819. border:none;
  6820. border-radius:0px;
  6821. -moz-box-shadow:none;
  6822. -webkit-box-shadow:none;
  6823. box-shadow:none;
  6824. }
  6825. #u36946 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:965px;
  6829. top:356px;
  6830. width:240px;
  6831. height:80px;
  6832. display:flex;
  6833. }
  6834. #u36946 .text {
  6835. position:absolute;
  6836. align-self:center;
  6837. padding:2px 2px 2px 2px;
  6838. box-sizing:border-box;
  6839. width:100%;
  6840. }
  6841. #u36946_text {
  6842. border-width:0px;
  6843. word-wrap:break-word;
  6844. text-transform:none;
  6845. visibility:hidden;
  6846. }
  6847. #u36947_img {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:50px;
  6853. height:53px;
  6854. }
  6855. #u36947 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:981px;
  6859. top:369px;
  6860. width:50px;
  6861. height:53px;
  6862. display:flex;
  6863. }
  6864. #u36947 .text {
  6865. position:absolute;
  6866. align-self:center;
  6867. padding:2px 2px 2px 2px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u36947_text {
  6872. border-width:0px;
  6873. word-wrap:break-word;
  6874. text-transform:none;
  6875. visibility:hidden;
  6876. }
  6877. #u36948 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:0px;
  6883. height:0px;
  6884. }
  6885. #u36949_div {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:73px;
  6891. height:25px;
  6892. background:inherit;
  6893. background-color:rgba(255, 255, 255, 0);
  6894. border:none;
  6895. border-left:0px;
  6896. border-top:0px;
  6897. border-right:0px;
  6898. border-radius:0px;
  6899. border-bottom-right-radius:0px;
  6900. border-bottom-left-radius:0px;
  6901. -moz-box-shadow:none;
  6902. -webkit-box-shadow:none;
  6903. box-shadow:none;
  6904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6905. font-weight:400;
  6906. font-style:normal;
  6907. font-size:18px;
  6908. }
  6909. #u36949 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:1046px;
  6913. top:372px;
  6914. width:73px;
  6915. height:25px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:18px;
  6921. }
  6922. #u36949 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:0px 0px 0px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u36949_text {
  6930. border-width:0px;
  6931. white-space:nowrap;
  6932. text-transform:none;
  6933. }
  6934. #u36950_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:13px;
  6940. height:17px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border:none;
  6944. border-left:0px;
  6945. border-top:0px;
  6946. border-right:0px;
  6947. border-radius:0px;
  6948. border-bottom-right-radius:0px;
  6949. border-bottom-left-radius:0px;
  6950. -moz-box-shadow:none;
  6951. -webkit-box-shadow:none;
  6952. box-shadow:none;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:12px;
  6957. color:#7F7F7F;
  6958. }
  6959. #u36950 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:1046px;
  6963. top:402px;
  6964. width:13px;
  6965. height:17px;
  6966. display:flex;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:12px;
  6971. color:#7F7F7F;
  6972. }
  6973. #u36950 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:0px 0px 0px 0px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u36950_text {
  6981. border-width:0px;
  6982. white-space:nowrap;
  6983. text-transform:none;
  6984. }
  6985. #u36951 {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:0px;
  6991. height:0px;
  6992. }
  6993. #u36952_div {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:240px;
  6999. height:80px;
  7000. background:inherit;
  7001. background-color:rgba(242, 242, 242, 1);
  7002. border:none;
  7003. border-radius:0px;
  7004. -moz-box-shadow:none;
  7005. -webkit-box-shadow:none;
  7006. box-shadow:none;
  7007. }
  7008. #u36952 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:1235px;
  7012. top:356px;
  7013. width:240px;
  7014. height:80px;
  7015. display:flex;
  7016. }
  7017. #u36952 .text {
  7018. position:absolute;
  7019. align-self:center;
  7020. padding:2px 2px 2px 2px;
  7021. box-sizing:border-box;
  7022. width:100%;
  7023. }
  7024. #u36952_text {
  7025. border-width:0px;
  7026. word-wrap:break-word;
  7027. text-transform:none;
  7028. visibility:hidden;
  7029. }
  7030. #u36953_img {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:50px;
  7036. height:53px;
  7037. }
  7038. #u36953 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:1251px;
  7042. top:369px;
  7043. width:50px;
  7044. height:53px;
  7045. display:flex;
  7046. }
  7047. #u36953 .text {
  7048. position:absolute;
  7049. align-self:center;
  7050. padding:2px 2px 2px 2px;
  7051. box-sizing:border-box;
  7052. width:100%;
  7053. }
  7054. #u36953_text {
  7055. border-width:0px;
  7056. word-wrap:break-word;
  7057. text-transform:none;
  7058. visibility:hidden;
  7059. }
  7060. #u36954 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:0px;
  7066. height:0px;
  7067. }
  7068. #u36955_div {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:73px;
  7074. height:25px;
  7075. background:inherit;
  7076. background-color:rgba(255, 255, 255, 0);
  7077. border:none;
  7078. border-left:0px;
  7079. border-top:0px;
  7080. border-right:0px;
  7081. border-radius:0px;
  7082. border-bottom-right-radius:0px;
  7083. border-bottom-left-radius:0px;
  7084. -moz-box-shadow:none;
  7085. -webkit-box-shadow:none;
  7086. box-shadow:none;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:18px;
  7091. }
  7092. #u36955 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:1316px;
  7096. top:372px;
  7097. width:73px;
  7098. height:25px;
  7099. display:flex;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:18px;
  7104. }
  7105. #u36955 .text {
  7106. position:absolute;
  7107. align-self:center;
  7108. padding:0px 0px 0px 0px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u36955_text {
  7113. border-width:0px;
  7114. white-space:nowrap;
  7115. text-transform:none;
  7116. }
  7117. #u36956_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:13px;
  7123. height:17px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 0);
  7126. border:none;
  7127. border-left:0px;
  7128. border-top:0px;
  7129. border-right:0px;
  7130. border-radius:0px;
  7131. border-bottom-right-radius:0px;
  7132. border-bottom-left-radius:0px;
  7133. -moz-box-shadow:none;
  7134. -webkit-box-shadow:none;
  7135. box-shadow:none;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:12px;
  7140. color:#7F7F7F;
  7141. }
  7142. #u36956 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:1316px;
  7146. top:402px;
  7147. width:13px;
  7148. height:17px;
  7149. display:flex;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:12px;
  7154. color:#7F7F7F;
  7155. }
  7156. #u36956 .text {
  7157. position:absolute;
  7158. align-self:center;
  7159. padding:0px 0px 0px 0px;
  7160. box-sizing:border-box;
  7161. width:100%;
  7162. }
  7163. #u36956_text {
  7164. border-width:0px;
  7165. white-space:nowrap;
  7166. text-transform:none;
  7167. }
  7168. #u36957 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:0px;
  7174. height:0px;
  7175. }
  7176. #u36958_div {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:240px;
  7182. height:80px;
  7183. background:inherit;
  7184. background-color:rgba(242, 242, 242, 1);
  7185. border:none;
  7186. border-radius:0px;
  7187. -moz-box-shadow:none;
  7188. -webkit-box-shadow:none;
  7189. box-shadow:none;
  7190. }
  7191. #u36958 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:154px;
  7195. top:456px;
  7196. width:240px;
  7197. height:80px;
  7198. display:flex;
  7199. }
  7200. #u36958 .text {
  7201. position:absolute;
  7202. align-self:center;
  7203. padding:2px 2px 2px 2px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u36958_text {
  7208. border-width:0px;
  7209. word-wrap:break-word;
  7210. text-transform:none;
  7211. visibility:hidden;
  7212. }
  7213. #u36959_img {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:50px;
  7219. height:53px;
  7220. }
  7221. #u36959 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:170px;
  7225. top:469px;
  7226. width:50px;
  7227. height:53px;
  7228. display:flex;
  7229. }
  7230. #u36959 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 2px 2px 2px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u36959_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u36960 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:0px;
  7249. height:0px;
  7250. }
  7251. #u36961_div {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:73px;
  7257. height:25px;
  7258. background:inherit;
  7259. background-color:rgba(255, 255, 255, 0);
  7260. border:none;
  7261. border-left:0px;
  7262. border-top:0px;
  7263. border-right:0px;
  7264. border-radius:0px;
  7265. border-bottom-right-radius:0px;
  7266. border-bottom-left-radius:0px;
  7267. -moz-box-shadow:none;
  7268. -webkit-box-shadow:none;
  7269. box-shadow:none;
  7270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7271. font-weight:400;
  7272. font-style:normal;
  7273. font-size:18px;
  7274. }
  7275. #u36961 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:235px;
  7279. top:472px;
  7280. width:73px;
  7281. height:25px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:18px;
  7287. }
  7288. #u36961 .text {
  7289. position:absolute;
  7290. align-self:center;
  7291. padding:0px 0px 0px 0px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u36961_text {
  7296. border-width:0px;
  7297. white-space:nowrap;
  7298. text-transform:none;
  7299. }
  7300. #u36962_div {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:13px;
  7306. height:17px;
  7307. background:inherit;
  7308. background-color:rgba(255, 255, 255, 0);
  7309. border:none;
  7310. border-left:0px;
  7311. border-top:0px;
  7312. border-right:0px;
  7313. border-radius:0px;
  7314. border-bottom-right-radius:0px;
  7315. border-bottom-left-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:12px;
  7323. color:#7F7F7F;
  7324. }
  7325. #u36962 {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:235px;
  7329. top:502px;
  7330. width:13px;
  7331. height:17px;
  7332. display:flex;
  7333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:12px;
  7337. color:#7F7F7F;
  7338. }
  7339. #u36962 .text {
  7340. position:absolute;
  7341. align-self:center;
  7342. padding:0px 0px 0px 0px;
  7343. box-sizing:border-box;
  7344. width:100%;
  7345. }
  7346. #u36962_text {
  7347. border-width:0px;
  7348. white-space:nowrap;
  7349. text-transform:none;
  7350. }
  7351. #u36963 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:0px;
  7357. height:0px;
  7358. }
  7359. #u36964_div {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:240px;
  7365. height:80px;
  7366. background:inherit;
  7367. background-color:rgba(242, 242, 242, 1);
  7368. border:none;
  7369. border-radius:0px;
  7370. -moz-box-shadow:none;
  7371. -webkit-box-shadow:none;
  7372. box-shadow:none;
  7373. }
  7374. #u36964 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:424px;
  7378. top:456px;
  7379. width:240px;
  7380. height:80px;
  7381. display:flex;
  7382. }
  7383. #u36964 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 2px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u36964_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u36965_img {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:50px;
  7402. height:53px;
  7403. }
  7404. #u36965 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:440px;
  7408. top:469px;
  7409. width:50px;
  7410. height:53px;
  7411. display:flex;
  7412. }
  7413. #u36965 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 2px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u36965_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u36966 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:0px;
  7432. height:0px;
  7433. }
  7434. #u36967_div {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:73px;
  7440. height:25px;
  7441. background:inherit;
  7442. background-color:rgba(255, 255, 255, 0);
  7443. border:none;
  7444. border-left:0px;
  7445. border-top:0px;
  7446. border-right:0px;
  7447. border-radius:0px;
  7448. border-bottom-right-radius:0px;
  7449. border-bottom-left-radius:0px;
  7450. -moz-box-shadow:none;
  7451. -webkit-box-shadow:none;
  7452. box-shadow:none;
  7453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:18px;
  7457. }
  7458. #u36967 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:505px;
  7462. top:472px;
  7463. width:73px;
  7464. height:25px;
  7465. display:flex;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:18px;
  7470. }
  7471. #u36967 .text {
  7472. position:absolute;
  7473. align-self:center;
  7474. padding:0px 0px 0px 0px;
  7475. box-sizing:border-box;
  7476. width:100%;
  7477. }
  7478. #u36967_text {
  7479. border-width:0px;
  7480. white-space:nowrap;
  7481. text-transform:none;
  7482. }
  7483. #u36968_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:13px;
  7489. height:17px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-left:0px;
  7494. border-top:0px;
  7495. border-right:0px;
  7496. border-radius:0px;
  7497. border-bottom-right-radius:0px;
  7498. border-bottom-left-radius:0px;
  7499. -moz-box-shadow:none;
  7500. -webkit-box-shadow:none;
  7501. box-shadow:none;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:12px;
  7506. color:#7F7F7F;
  7507. }
  7508. #u36968 {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:505px;
  7512. top:502px;
  7513. width:13px;
  7514. height:17px;
  7515. display:flex;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:12px;
  7520. color:#7F7F7F;
  7521. }
  7522. #u36968 .text {
  7523. position:absolute;
  7524. align-self:center;
  7525. padding:0px 0px 0px 0px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u36968_text {
  7530. border-width:0px;
  7531. white-space:nowrap;
  7532. text-transform:none;
  7533. }
  7534. #u36969 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:0px;
  7540. height:0px;
  7541. }
  7542. #u36970_div {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:0px;
  7546. top:0px;
  7547. width:240px;
  7548. height:80px;
  7549. background:inherit;
  7550. background-color:rgba(242, 242, 242, 1);
  7551. border:none;
  7552. border-radius:0px;
  7553. -moz-box-shadow:none;
  7554. -webkit-box-shadow:none;
  7555. box-shadow:none;
  7556. }
  7557. #u36970 {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:695px;
  7561. top:456px;
  7562. width:240px;
  7563. height:80px;
  7564. display:flex;
  7565. }
  7566. #u36970 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:2px 2px 2px 2px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u36970_text {
  7574. border-width:0px;
  7575. word-wrap:break-word;
  7576. text-transform:none;
  7577. visibility:hidden;
  7578. }
  7579. #u36971_img {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:50px;
  7585. height:53px;
  7586. }
  7587. #u36971 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:711px;
  7591. top:469px;
  7592. width:50px;
  7593. height:53px;
  7594. display:flex;
  7595. }
  7596. #u36971 .text {
  7597. position:absolute;
  7598. align-self:center;
  7599. padding:2px 2px 2px 2px;
  7600. box-sizing:border-box;
  7601. width:100%;
  7602. }
  7603. #u36971_text {
  7604. border-width:0px;
  7605. word-wrap:break-word;
  7606. text-transform:none;
  7607. visibility:hidden;
  7608. }
  7609. #u36972 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:0px;
  7615. height:0px;
  7616. }
  7617. #u36973_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:73px;
  7623. height:25px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 0);
  7626. border:none;
  7627. border-left:0px;
  7628. border-top:0px;
  7629. border-right:0px;
  7630. border-radius:0px;
  7631. border-bottom-right-radius:0px;
  7632. border-bottom-left-radius:0px;
  7633. -moz-box-shadow:none;
  7634. -webkit-box-shadow:none;
  7635. box-shadow:none;
  7636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7637. font-weight:400;
  7638. font-style:normal;
  7639. font-size:18px;
  7640. }
  7641. #u36973 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:776px;
  7645. top:472px;
  7646. width:73px;
  7647. height:25px;
  7648. display:flex;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:18px;
  7653. }
  7654. #u36973 .text {
  7655. position:absolute;
  7656. align-self:center;
  7657. padding:0px 0px 0px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u36973_text {
  7662. border-width:0px;
  7663. white-space:nowrap;
  7664. text-transform:none;
  7665. }
  7666. #u36974_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:13px;
  7672. height:17px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border:none;
  7676. border-left:0px;
  7677. border-top:0px;
  7678. border-right:0px;
  7679. border-radius:0px;
  7680. border-bottom-right-radius:0px;
  7681. border-bottom-left-radius:0px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:12px;
  7689. color:#7F7F7F;
  7690. }
  7691. #u36974 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:776px;
  7695. top:502px;
  7696. width:13px;
  7697. height:17px;
  7698. display:flex;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:12px;
  7703. color:#7F7F7F;
  7704. }
  7705. #u36974 .text {
  7706. position:absolute;
  7707. align-self:center;
  7708. padding:0px 0px 0px 0px;
  7709. box-sizing:border-box;
  7710. width:100%;
  7711. }
  7712. #u36974_text {
  7713. border-width:0px;
  7714. white-space:nowrap;
  7715. text-transform:none;
  7716. }
  7717. #u36975 {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:0px;
  7723. height:0px;
  7724. }
  7725. #u36976_div {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:240px;
  7731. height:80px;
  7732. background:inherit;
  7733. background-color:rgba(242, 242, 242, 1);
  7734. border:none;
  7735. border-radius:0px;
  7736. -moz-box-shadow:none;
  7737. -webkit-box-shadow:none;
  7738. box-shadow:none;
  7739. }
  7740. #u36976 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:965px;
  7744. top:456px;
  7745. width:240px;
  7746. height:80px;
  7747. display:flex;
  7748. }
  7749. #u36976 .text {
  7750. position:absolute;
  7751. align-self:center;
  7752. padding:2px 2px 2px 2px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u36976_text {
  7757. border-width:0px;
  7758. word-wrap:break-word;
  7759. text-transform:none;
  7760. visibility:hidden;
  7761. }
  7762. #u36977_img {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:0px;
  7766. top:0px;
  7767. width:50px;
  7768. height:53px;
  7769. }
  7770. #u36977 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:981px;
  7774. top:469px;
  7775. width:50px;
  7776. height:53px;
  7777. display:flex;
  7778. }
  7779. #u36977 .text {
  7780. position:absolute;
  7781. align-self:center;
  7782. padding:2px 2px 2px 2px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u36977_text {
  7787. border-width:0px;
  7788. word-wrap:break-word;
  7789. text-transform:none;
  7790. visibility:hidden;
  7791. }
  7792. #u36978 {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:0px;
  7796. top:0px;
  7797. width:0px;
  7798. height:0px;
  7799. }
  7800. #u36979_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:73px;
  7806. height:25px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 0);
  7809. border:none;
  7810. border-left:0px;
  7811. border-top:0px;
  7812. border-right:0px;
  7813. border-radius:0px;
  7814. border-bottom-right-radius:0px;
  7815. border-bottom-left-radius:0px;
  7816. -moz-box-shadow:none;
  7817. -webkit-box-shadow:none;
  7818. box-shadow:none;
  7819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7820. font-weight:400;
  7821. font-style:normal;
  7822. font-size:18px;
  7823. }
  7824. #u36979 {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:1046px;
  7828. top:472px;
  7829. width:73px;
  7830. height:25px;
  7831. display:flex;
  7832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:18px;
  7836. }
  7837. #u36979 .text {
  7838. position:absolute;
  7839. align-self:center;
  7840. padding:0px 0px 0px 0px;
  7841. box-sizing:border-box;
  7842. width:100%;
  7843. }
  7844. #u36979_text {
  7845. border-width:0px;
  7846. white-space:nowrap;
  7847. text-transform:none;
  7848. }
  7849. #u36980_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:13px;
  7855. height:17px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 0);
  7858. border:none;
  7859. border-left:0px;
  7860. border-top:0px;
  7861. border-right:0px;
  7862. border-radius:0px;
  7863. border-bottom-right-radius:0px;
  7864. border-bottom-left-radius:0px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:12px;
  7872. color:#7F7F7F;
  7873. }
  7874. #u36980 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:1046px;
  7878. top:502px;
  7879. width:13px;
  7880. height:17px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:12px;
  7886. color:#7F7F7F;
  7887. }
  7888. #u36980 .text {
  7889. position:absolute;
  7890. align-self:center;
  7891. padding:0px 0px 0px 0px;
  7892. box-sizing:border-box;
  7893. width:100%;
  7894. }
  7895. #u36980_text {
  7896. border-width:0px;
  7897. white-space:nowrap;
  7898. text-transform:none;
  7899. }
  7900. #u36981 {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:0px;
  7906. height:0px;
  7907. }
  7908. #u36982_div {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:0px;
  7913. width:240px;
  7914. height:80px;
  7915. background:inherit;
  7916. background-color:rgba(242, 242, 242, 1);
  7917. border:none;
  7918. border-radius:0px;
  7919. -moz-box-shadow:none;
  7920. -webkit-box-shadow:none;
  7921. box-shadow:none;
  7922. }
  7923. #u36982 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:1235px;
  7927. top:456px;
  7928. width:240px;
  7929. height:80px;
  7930. display:flex;
  7931. }
  7932. #u36982 .text {
  7933. position:absolute;
  7934. align-self:center;
  7935. padding:2px 2px 2px 2px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u36982_text {
  7940. border-width:0px;
  7941. word-wrap:break-word;
  7942. text-transform:none;
  7943. visibility:hidden;
  7944. }
  7945. #u36983_img {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:0px;
  7949. top:0px;
  7950. width:50px;
  7951. height:53px;
  7952. }
  7953. #u36983 {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:1251px;
  7957. top:469px;
  7958. width:50px;
  7959. height:53px;
  7960. display:flex;
  7961. }
  7962. #u36983 .text {
  7963. position:absolute;
  7964. align-self:center;
  7965. padding:2px 2px 2px 2px;
  7966. box-sizing:border-box;
  7967. width:100%;
  7968. }
  7969. #u36983_text {
  7970. border-width:0px;
  7971. word-wrap:break-word;
  7972. text-transform:none;
  7973. visibility:hidden;
  7974. }
  7975. #u36984 {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:0px;
  7981. height:0px;
  7982. }
  7983. #u36985_div {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:73px;
  7989. height:25px;
  7990. background:inherit;
  7991. background-color:rgba(255, 255, 255, 0);
  7992. border:none;
  7993. border-left:0px;
  7994. border-top:0px;
  7995. border-right:0px;
  7996. border-radius:0px;
  7997. border-bottom-right-radius:0px;
  7998. border-bottom-left-radius:0px;
  7999. -moz-box-shadow:none;
  8000. -webkit-box-shadow:none;
  8001. box-shadow:none;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:18px;
  8006. }
  8007. #u36985 {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:1316px;
  8011. top:472px;
  8012. width:73px;
  8013. height:25px;
  8014. display:flex;
  8015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8016. font-weight:400;
  8017. font-style:normal;
  8018. font-size:18px;
  8019. }
  8020. #u36985 .text {
  8021. position:absolute;
  8022. align-self:center;
  8023. padding:0px 0px 0px 0px;
  8024. box-sizing:border-box;
  8025. width:100%;
  8026. }
  8027. #u36985_text {
  8028. border-width:0px;
  8029. white-space:nowrap;
  8030. text-transform:none;
  8031. }
  8032. #u36986_div {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:13px;
  8038. height:17px;
  8039. background:inherit;
  8040. background-color:rgba(255, 255, 255, 0);
  8041. border:none;
  8042. border-left:0px;
  8043. border-top:0px;
  8044. border-right:0px;
  8045. border-radius:0px;
  8046. border-bottom-right-radius:0px;
  8047. border-bottom-left-radius:0px;
  8048. -moz-box-shadow:none;
  8049. -webkit-box-shadow:none;
  8050. box-shadow:none;
  8051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:12px;
  8055. color:#7F7F7F;
  8056. }
  8057. #u36986 {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:1316px;
  8061. top:502px;
  8062. width:13px;
  8063. height:17px;
  8064. display:flex;
  8065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8066. font-weight:400;
  8067. font-style:normal;
  8068. font-size:12px;
  8069. color:#7F7F7F;
  8070. }
  8071. #u36986 .text {
  8072. position:absolute;
  8073. align-self:center;
  8074. padding:0px 0px 0px 0px;
  8075. box-sizing:border-box;
  8076. width:100%;
  8077. }
  8078. #u36986_text {
  8079. border-width:0px;
  8080. white-space:nowrap;
  8081. text-transform:none;
  8082. }
  8083. #u36987 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:0px;
  8087. top:0px;
  8088. width:0px;
  8089. height:0px;
  8090. }
  8091. #u36988_div {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:240px;
  8097. height:80px;
  8098. background:inherit;
  8099. background-color:rgba(242, 242, 242, 1);
  8100. border:none;
  8101. border-radius:0px;
  8102. -moz-box-shadow:none;
  8103. -webkit-box-shadow:none;
  8104. box-shadow:none;
  8105. }
  8106. #u36988 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:154px;
  8110. top:556px;
  8111. width:240px;
  8112. height:80px;
  8113. display:flex;
  8114. }
  8115. #u36988 .text {
  8116. position:absolute;
  8117. align-self:center;
  8118. padding:2px 2px 2px 2px;
  8119. box-sizing:border-box;
  8120. width:100%;
  8121. }
  8122. #u36988_text {
  8123. border-width:0px;
  8124. word-wrap:break-word;
  8125. text-transform:none;
  8126. visibility:hidden;
  8127. }
  8128. #u36989_img {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:50px;
  8134. height:53px;
  8135. }
  8136. #u36989 {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:170px;
  8140. top:569px;
  8141. width:50px;
  8142. height:53px;
  8143. display:flex;
  8144. }
  8145. #u36989 .text {
  8146. position:absolute;
  8147. align-self:center;
  8148. padding:2px 2px 2px 2px;
  8149. box-sizing:border-box;
  8150. width:100%;
  8151. }
  8152. #u36989_text {
  8153. border-width:0px;
  8154. word-wrap:break-word;
  8155. text-transform:none;
  8156. visibility:hidden;
  8157. }
  8158. #u36990 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:0px;
  8164. height:0px;
  8165. }
  8166. #u36991_div {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:73px;
  8172. height:25px;
  8173. background:inherit;
  8174. background-color:rgba(255, 255, 255, 0);
  8175. border:none;
  8176. border-left:0px;
  8177. border-top:0px;
  8178. border-right:0px;
  8179. border-radius:0px;
  8180. border-bottom-right-radius:0px;
  8181. border-bottom-left-radius:0px;
  8182. -moz-box-shadow:none;
  8183. -webkit-box-shadow:none;
  8184. box-shadow:none;
  8185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:18px;
  8189. }
  8190. #u36991 {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:235px;
  8194. top:572px;
  8195. width:73px;
  8196. height:25px;
  8197. display:flex;
  8198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8199. font-weight:400;
  8200. font-style:normal;
  8201. font-size:18px;
  8202. }
  8203. #u36991 .text {
  8204. position:absolute;
  8205. align-self:center;
  8206. padding:0px 0px 0px 0px;
  8207. box-sizing:border-box;
  8208. width:100%;
  8209. }
  8210. #u36991_text {
  8211. border-width:0px;
  8212. white-space:nowrap;
  8213. text-transform:none;
  8214. }
  8215. #u36992_div {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:0px;
  8219. top:0px;
  8220. width:13px;
  8221. height:17px;
  8222. background:inherit;
  8223. background-color:rgba(255, 255, 255, 0);
  8224. border:none;
  8225. border-left:0px;
  8226. border-top:0px;
  8227. border-right:0px;
  8228. border-radius:0px;
  8229. border-bottom-right-radius:0px;
  8230. border-bottom-left-radius:0px;
  8231. -moz-box-shadow:none;
  8232. -webkit-box-shadow:none;
  8233. box-shadow:none;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:12px;
  8238. color:#7F7F7F;
  8239. }
  8240. #u36992 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:235px;
  8244. top:602px;
  8245. width:13px;
  8246. height:17px;
  8247. display:flex;
  8248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. font-size:12px;
  8252. color:#7F7F7F;
  8253. }
  8254. #u36992 .text {
  8255. position:absolute;
  8256. align-self:center;
  8257. padding:0px 0px 0px 0px;
  8258. box-sizing:border-box;
  8259. width:100%;
  8260. }
  8261. #u36992_text {
  8262. border-width:0px;
  8263. white-space:nowrap;
  8264. text-transform:none;
  8265. }
  8266. #u36993 {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:0px;
  8272. height:0px;
  8273. }
  8274. #u36994_div {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:240px;
  8280. height:80px;
  8281. background:inherit;
  8282. background-color:rgba(242, 242, 242, 1);
  8283. border:none;
  8284. border-radius:0px;
  8285. -moz-box-shadow:none;
  8286. -webkit-box-shadow:none;
  8287. box-shadow:none;
  8288. }
  8289. #u36994 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:154px;
  8293. top:656px;
  8294. width:240px;
  8295. height:80px;
  8296. display:flex;
  8297. }
  8298. #u36994 .text {
  8299. position:absolute;
  8300. align-self:center;
  8301. padding:2px 2px 2px 2px;
  8302. box-sizing:border-box;
  8303. width:100%;
  8304. }
  8305. #u36994_text {
  8306. border-width:0px;
  8307. word-wrap:break-word;
  8308. text-transform:none;
  8309. visibility:hidden;
  8310. }
  8311. #u36995_img {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:50px;
  8317. height:53px;
  8318. }
  8319. #u36995 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:170px;
  8323. top:669px;
  8324. width:50px;
  8325. height:53px;
  8326. display:flex;
  8327. }
  8328. #u36995 .text {
  8329. position:absolute;
  8330. align-self:center;
  8331. padding:2px 2px 2px 2px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u36995_text {
  8336. border-width:0px;
  8337. word-wrap:break-word;
  8338. text-transform:none;
  8339. visibility:hidden;
  8340. }
  8341. #u36996 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:0px;
  8347. height:0px;
  8348. }
  8349. #u36997_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:73px;
  8355. height:25px;
  8356. background:inherit;
  8357. background-color:rgba(255, 255, 255, 0);
  8358. border:none;
  8359. border-left:0px;
  8360. border-top:0px;
  8361. border-right:0px;
  8362. border-radius:0px;
  8363. border-bottom-right-radius:0px;
  8364. border-bottom-left-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:18px;
  8372. }
  8373. #u36997 {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:235px;
  8377. top:672px;
  8378. width:73px;
  8379. height:25px;
  8380. display:flex;
  8381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8382. font-weight:400;
  8383. font-style:normal;
  8384. font-size:18px;
  8385. }
  8386. #u36997 .text {
  8387. position:absolute;
  8388. align-self:center;
  8389. padding:0px 0px 0px 0px;
  8390. box-sizing:border-box;
  8391. width:100%;
  8392. }
  8393. #u36997_text {
  8394. border-width:0px;
  8395. white-space:nowrap;
  8396. text-transform:none;
  8397. }
  8398. #u36998_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:97px;
  8404. height:17px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 0);
  8407. border:none;
  8408. border-left:0px;
  8409. border-top:0px;
  8410. border-right:0px;
  8411. border-radius:0px;
  8412. border-bottom-right-radius:0px;
  8413. border-bottom-left-radius:0px;
  8414. -moz-box-shadow:none;
  8415. -webkit-box-shadow:none;
  8416. box-shadow:none;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:12px;
  8421. color:#7F7F7F;
  8422. }
  8423. #u36998 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:235px;
  8427. top:702px;
  8428. width:97px;
  8429. height:17px;
  8430. display:flex;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:12px;
  8435. color:#7F7F7F;
  8436. }
  8437. #u36998 .text {
  8438. position:absolute;
  8439. align-self:center;
  8440. padding:0px 0px 0px 0px;
  8441. box-sizing:border-box;
  8442. width:100%;
  8443. }
  8444. #u36998_text {
  8445. border-width:0px;
  8446. white-space:nowrap;
  8447. text-transform:none;
  8448. }
  8449. #u36999 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:0px;
  8455. height:0px;
  8456. }
  8457. #u37000_div {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:240px;
  8463. height:80px;
  8464. background:inherit;
  8465. background-color:rgba(242, 242, 242, 1);
  8466. border:none;
  8467. border-radius:0px;
  8468. -moz-box-shadow:none;
  8469. -webkit-box-shadow:none;
  8470. box-shadow:none;
  8471. }
  8472. #u37000 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:425px;
  8476. top:656px;
  8477. width:240px;
  8478. height:80px;
  8479. display:flex;
  8480. }
  8481. #u37000 .text {
  8482. position:absolute;
  8483. align-self:center;
  8484. padding:2px 2px 2px 2px;
  8485. box-sizing:border-box;
  8486. width:100%;
  8487. }
  8488. #u37000_text {
  8489. border-width:0px;
  8490. word-wrap:break-word;
  8491. text-transform:none;
  8492. visibility:hidden;
  8493. }
  8494. #u37001_img {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:0px;
  8498. top:0px;
  8499. width:50px;
  8500. height:53px;
  8501. }
  8502. #u37001 {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:441px;
  8506. top:669px;
  8507. width:50px;
  8508. height:53px;
  8509. display:flex;
  8510. }
  8511. #u37001 .text {
  8512. position:absolute;
  8513. align-self:center;
  8514. padding:2px 2px 2px 2px;
  8515. box-sizing:border-box;
  8516. width:100%;
  8517. }
  8518. #u37001_text {
  8519. border-width:0px;
  8520. word-wrap:break-word;
  8521. text-transform:none;
  8522. visibility:hidden;
  8523. }
  8524. #u37002 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:0px;
  8528. top:0px;
  8529. width:0px;
  8530. height:0px;
  8531. }
  8532. #u37003_div {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:73px;
  8538. height:25px;
  8539. background:inherit;
  8540. background-color:rgba(255, 255, 255, 0);
  8541. border:none;
  8542. border-left:0px;
  8543. border-top:0px;
  8544. border-right:0px;
  8545. border-radius:0px;
  8546. border-bottom-right-radius:0px;
  8547. border-bottom-left-radius:0px;
  8548. -moz-box-shadow:none;
  8549. -webkit-box-shadow:none;
  8550. box-shadow:none;
  8551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8552. font-weight:400;
  8553. font-style:normal;
  8554. font-size:18px;
  8555. }
  8556. #u37003 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:506px;
  8560. top:672px;
  8561. width:73px;
  8562. height:25px;
  8563. display:flex;
  8564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8565. font-weight:400;
  8566. font-style:normal;
  8567. font-size:18px;
  8568. }
  8569. #u37003 .text {
  8570. position:absolute;
  8571. align-self:center;
  8572. padding:0px 0px 0px 0px;
  8573. box-sizing:border-box;
  8574. width:100%;
  8575. }
  8576. #u37003_text {
  8577. border-width:0px;
  8578. white-space:nowrap;
  8579. text-transform:none;
  8580. }
  8581. #u37004_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:97px;
  8587. height:17px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 0);
  8590. border:none;
  8591. border-left:0px;
  8592. border-top:0px;
  8593. border-right:0px;
  8594. border-radius:0px;
  8595. border-bottom-right-radius:0px;
  8596. border-bottom-left-radius:0px;
  8597. -moz-box-shadow:none;
  8598. -webkit-box-shadow:none;
  8599. box-shadow:none;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:12px;
  8604. color:#7F7F7F;
  8605. }
  8606. #u37004 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:506px;
  8610. top:702px;
  8611. width:97px;
  8612. height:17px;
  8613. display:flex;
  8614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8615. font-weight:400;
  8616. font-style:normal;
  8617. font-size:12px;
  8618. color:#7F7F7F;
  8619. }
  8620. #u37004 .text {
  8621. position:absolute;
  8622. align-self:center;
  8623. padding:0px 0px 0px 0px;
  8624. box-sizing:border-box;
  8625. width:100%;
  8626. }
  8627. #u37004_text {
  8628. border-width:0px;
  8629. white-space:nowrap;
  8630. text-transform:none;
  8631. }
  8632. #u37005 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:0px;
  8638. height:0px;
  8639. }
  8640. #u37006_div {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:0px;
  8644. top:0px;
  8645. width:240px;
  8646. height:80px;
  8647. background:inherit;
  8648. background-color:rgba(242, 242, 242, 1);
  8649. border:none;
  8650. border-radius:0px;
  8651. -moz-box-shadow:none;
  8652. -webkit-box-shadow:none;
  8653. box-shadow:none;
  8654. }
  8655. #u37006 {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:154px;
  8659. top:856px;
  8660. width:240px;
  8661. height:80px;
  8662. display:flex;
  8663. }
  8664. #u37006 .text {
  8665. position:absolute;
  8666. align-self:center;
  8667. padding:2px 2px 2px 2px;
  8668. box-sizing:border-box;
  8669. width:100%;
  8670. }
  8671. #u37006_text {
  8672. border-width:0px;
  8673. word-wrap:break-word;
  8674. text-transform:none;
  8675. visibility:hidden;
  8676. }
  8677. #u37007_img {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:0px;
  8681. top:0px;
  8682. width:50px;
  8683. height:53px;
  8684. }
  8685. #u37007 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:170px;
  8689. top:869px;
  8690. width:50px;
  8691. height:53px;
  8692. display:flex;
  8693. }
  8694. #u37007 .text {
  8695. position:absolute;
  8696. align-self:center;
  8697. padding:2px 2px 2px 2px;
  8698. box-sizing:border-box;
  8699. width:100%;
  8700. }
  8701. #u37007_text {
  8702. border-width:0px;
  8703. word-wrap:break-word;
  8704. text-transform:none;
  8705. visibility:hidden;
  8706. }
  8707. #u37008 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:0px;
  8713. height:0px;
  8714. }
  8715. #u37009_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:73px;
  8721. height:25px;
  8722. background:inherit;
  8723. background-color:rgba(255, 255, 255, 0);
  8724. border:none;
  8725. border-left:0px;
  8726. border-top:0px;
  8727. border-right:0px;
  8728. border-radius:0px;
  8729. border-bottom-right-radius:0px;
  8730. border-bottom-left-radius:0px;
  8731. -moz-box-shadow:none;
  8732. -webkit-box-shadow:none;
  8733. box-shadow:none;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:18px;
  8738. }
  8739. #u37009 {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:235px;
  8743. top:872px;
  8744. width:73px;
  8745. height:25px;
  8746. display:flex;
  8747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8748. font-weight:400;
  8749. font-style:normal;
  8750. font-size:18px;
  8751. }
  8752. #u37009 .text {
  8753. position:absolute;
  8754. align-self:center;
  8755. padding:0px 0px 0px 0px;
  8756. box-sizing:border-box;
  8757. width:100%;
  8758. }
  8759. #u37009_text {
  8760. border-width:0px;
  8761. white-space:nowrap;
  8762. text-transform:none;
  8763. }
  8764. #u37010_div {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:0px;
  8768. top:0px;
  8769. width:133px;
  8770. height:17px;
  8771. background:inherit;
  8772. background-color:rgba(255, 255, 255, 0);
  8773. border:none;
  8774. border-left:0px;
  8775. border-top:0px;
  8776. border-right:0px;
  8777. border-radius:0px;
  8778. border-bottom-right-radius:0px;
  8779. border-bottom-left-radius:0px;
  8780. -moz-box-shadow:none;
  8781. -webkit-box-shadow:none;
  8782. box-shadow:none;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. font-size:12px;
  8787. color:#7F7F7F;
  8788. }
  8789. #u37010 {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:235px;
  8793. top:902px;
  8794. width:133px;
  8795. height:17px;
  8796. display:flex;
  8797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8798. font-weight:400;
  8799. font-style:normal;
  8800. font-size:12px;
  8801. color:#7F7F7F;
  8802. }
  8803. #u37010 .text {
  8804. position:absolute;
  8805. align-self:center;
  8806. padding:0px 0px 0px 0px;
  8807. box-sizing:border-box;
  8808. width:100%;
  8809. }
  8810. #u37010_text {
  8811. border-width:0px;
  8812. white-space:nowrap;
  8813. text-transform:none;
  8814. }
  8815. #u37011 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:0px;
  8819. top:0px;
  8820. width:0px;
  8821. height:0px;
  8822. }
  8823. #u37012_div {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:0px;
  8827. top:0px;
  8828. width:240px;
  8829. height:80px;
  8830. background:inherit;
  8831. background-color:rgba(242, 242, 242, 1);
  8832. border:none;
  8833. border-radius:0px;
  8834. -moz-box-shadow:none;
  8835. -webkit-box-shadow:none;
  8836. box-shadow:none;
  8837. }
  8838. #u37012 {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:695px;
  8842. top:656px;
  8843. width:240px;
  8844. height:80px;
  8845. display:flex;
  8846. }
  8847. #u37012 .text {
  8848. position:absolute;
  8849. align-self:center;
  8850. padding:2px 2px 2px 2px;
  8851. box-sizing:border-box;
  8852. width:100%;
  8853. }
  8854. #u37012_text {
  8855. border-width:0px;
  8856. word-wrap:break-word;
  8857. text-transform:none;
  8858. visibility:hidden;
  8859. }
  8860. #u37013_img {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:0px;
  8864. top:0px;
  8865. width:50px;
  8866. height:53px;
  8867. }
  8868. #u37013 {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:711px;
  8872. top:669px;
  8873. width:50px;
  8874. height:53px;
  8875. display:flex;
  8876. }
  8877. #u37013 .text {
  8878. position:absolute;
  8879. align-self:center;
  8880. padding:2px 2px 2px 2px;
  8881. box-sizing:border-box;
  8882. width:100%;
  8883. }
  8884. #u37013_text {
  8885. border-width:0px;
  8886. word-wrap:break-word;
  8887. text-transform:none;
  8888. visibility:hidden;
  8889. }
  8890. #u37014 {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:0px;
  8894. top:0px;
  8895. width:0px;
  8896. height:0px;
  8897. }
  8898. #u37015_div {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:73px;
  8904. height:25px;
  8905. background:inherit;
  8906. background-color:rgba(255, 255, 255, 0);
  8907. border:none;
  8908. border-left:0px;
  8909. border-top:0px;
  8910. border-right:0px;
  8911. border-radius:0px;
  8912. border-bottom-right-radius:0px;
  8913. border-bottom-left-radius:0px;
  8914. -moz-box-shadow:none;
  8915. -webkit-box-shadow:none;
  8916. box-shadow:none;
  8917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:18px;
  8921. }
  8922. #u37015 {
  8923. border-width:0px;
  8924. position:absolute;
  8925. left:776px;
  8926. top:672px;
  8927. width:73px;
  8928. height:25px;
  8929. display:flex;
  8930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8931. font-weight:400;
  8932. font-style:normal;
  8933. font-size:18px;
  8934. }
  8935. #u37015 .text {
  8936. position:absolute;
  8937. align-self:center;
  8938. padding:0px 0px 0px 0px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u37015_text {
  8943. border-width:0px;
  8944. white-space:nowrap;
  8945. text-transform:none;
  8946. }
  8947. #u37016_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:133px;
  8953. height:17px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 0);
  8956. border:none;
  8957. border-left:0px;
  8958. border-top:0px;
  8959. border-right:0px;
  8960. border-radius:0px;
  8961. border-bottom-right-radius:0px;
  8962. border-bottom-left-radius:0px;
  8963. -moz-box-shadow:none;
  8964. -webkit-box-shadow:none;
  8965. box-shadow:none;
  8966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:12px;
  8970. color:#7F7F7F;
  8971. }
  8972. #u37016 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:776px;
  8976. top:702px;
  8977. width:133px;
  8978. height:17px;
  8979. display:flex;
  8980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8981. font-weight:400;
  8982. font-style:normal;
  8983. font-size:12px;
  8984. color:#7F7F7F;
  8985. }
  8986. #u37016 .text {
  8987. position:absolute;
  8988. align-self:center;
  8989. padding:0px 0px 0px 0px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u37016_text {
  8994. border-width:0px;
  8995. white-space:nowrap;
  8996. text-transform:none;
  8997. }
  8998. #u37017 {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:0px;
  9004. height:0px;
  9005. }
  9006. #u37018_div {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:240px;
  9012. height:80px;
  9013. background:inherit;
  9014. background-color:rgba(242, 242, 242, 1);
  9015. border:none;
  9016. border-radius:0px;
  9017. -moz-box-shadow:none;
  9018. -webkit-box-shadow:none;
  9019. box-shadow:none;
  9020. }
  9021. #u37018 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:1236px;
  9025. top:756px;
  9026. width:240px;
  9027. height:80px;
  9028. display:flex;
  9029. }
  9030. #u37018 .text {
  9031. position:absolute;
  9032. align-self:center;
  9033. padding:2px 2px 2px 2px;
  9034. box-sizing:border-box;
  9035. width:100%;
  9036. }
  9037. #u37018_text {
  9038. border-width:0px;
  9039. word-wrap:break-word;
  9040. text-transform:none;
  9041. visibility:hidden;
  9042. }
  9043. #u37019_img {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:0px;
  9047. top:0px;
  9048. width:50px;
  9049. height:53px;
  9050. }
  9051. #u37019 {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:1252px;
  9055. top:769px;
  9056. width:50px;
  9057. height:53px;
  9058. display:flex;
  9059. }
  9060. #u37019 .text {
  9061. position:absolute;
  9062. align-self:center;
  9063. padding:2px 2px 2px 2px;
  9064. box-sizing:border-box;
  9065. width:100%;
  9066. }
  9067. #u37019_text {
  9068. border-width:0px;
  9069. word-wrap:break-word;
  9070. text-transform:none;
  9071. visibility:hidden;
  9072. }
  9073. #u37020 {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:0px;
  9078. width:0px;
  9079. height:0px;
  9080. }
  9081. #u37021_div {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:0px;
  9085. top:0px;
  9086. width:73px;
  9087. height:25px;
  9088. background:inherit;
  9089. background-color:rgba(255, 255, 255, 0);
  9090. border:none;
  9091. border-left:0px;
  9092. border-top:0px;
  9093. border-right:0px;
  9094. border-radius:0px;
  9095. border-bottom-right-radius:0px;
  9096. border-bottom-left-radius:0px;
  9097. -moz-box-shadow:none;
  9098. -webkit-box-shadow:none;
  9099. box-shadow:none;
  9100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9101. font-weight:400;
  9102. font-style:normal;
  9103. font-size:18px;
  9104. }
  9105. #u37021 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:1317px;
  9109. top:772px;
  9110. width:73px;
  9111. height:25px;
  9112. display:flex;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:18px;
  9117. }
  9118. #u37021 .text {
  9119. position:absolute;
  9120. align-self:center;
  9121. padding:0px 0px 0px 0px;
  9122. box-sizing:border-box;
  9123. width:100%;
  9124. }
  9125. #u37021_text {
  9126. border-width:0px;
  9127. white-space:nowrap;
  9128. text-transform:none;
  9129. }
  9130. #u37022_div {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:109px;
  9136. height:17px;
  9137. background:inherit;
  9138. background-color:rgba(255, 255, 255, 0);
  9139. border:none;
  9140. border-left:0px;
  9141. border-top:0px;
  9142. border-right:0px;
  9143. border-radius:0px;
  9144. border-bottom-right-radius:0px;
  9145. border-bottom-left-radius:0px;
  9146. -moz-box-shadow:none;
  9147. -webkit-box-shadow:none;
  9148. box-shadow:none;
  9149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:12px;
  9153. color:#7F7F7F;
  9154. }
  9155. #u37022 {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:1317px;
  9159. top:802px;
  9160. width:109px;
  9161. height:17px;
  9162. display:flex;
  9163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9164. font-weight:400;
  9165. font-style:normal;
  9166. font-size:12px;
  9167. color:#7F7F7F;
  9168. }
  9169. #u37022 .text {
  9170. position:absolute;
  9171. align-self:center;
  9172. padding:0px 0px 0px 0px;
  9173. box-sizing:border-box;
  9174. width:100%;
  9175. }
  9176. #u37022_text {
  9177. border-width:0px;
  9178. white-space:nowrap;
  9179. text-transform:none;
  9180. }
  9181. #u37023 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:0px;
  9187. height:0px;
  9188. }
  9189. #u37024_div {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:240px;
  9195. height:80px;
  9196. background:inherit;
  9197. background-color:rgba(242, 242, 242, 1);
  9198. border:none;
  9199. border-radius:0px;
  9200. -moz-box-shadow:none;
  9201. -webkit-box-shadow:none;
  9202. box-shadow:none;
  9203. }
  9204. #u37024 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:154px;
  9208. top:756px;
  9209. width:240px;
  9210. height:80px;
  9211. display:flex;
  9212. }
  9213. #u37024 .text {
  9214. position:absolute;
  9215. align-self:center;
  9216. padding:2px 2px 2px 2px;
  9217. box-sizing:border-box;
  9218. width:100%;
  9219. }
  9220. #u37024_text {
  9221. border-width:0px;
  9222. word-wrap:break-word;
  9223. text-transform:none;
  9224. visibility:hidden;
  9225. }
  9226. #u37025_img {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:0px;
  9230. top:0px;
  9231. width:50px;
  9232. height:53px;
  9233. }
  9234. #u37025 {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:170px;
  9238. top:769px;
  9239. width:50px;
  9240. height:53px;
  9241. display:flex;
  9242. }
  9243. #u37025 .text {
  9244. position:absolute;
  9245. align-self:center;
  9246. padding:2px 2px 2px 2px;
  9247. box-sizing:border-box;
  9248. width:100%;
  9249. }
  9250. #u37025_text {
  9251. border-width:0px;
  9252. word-wrap:break-word;
  9253. text-transform:none;
  9254. visibility:hidden;
  9255. }
  9256. #u37026 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:0px;
  9260. top:0px;
  9261. width:0px;
  9262. height:0px;
  9263. }
  9264. #u37027_div {
  9265. border-width:0px;
  9266. position:absolute;
  9267. left:0px;
  9268. top:0px;
  9269. width:73px;
  9270. height:25px;
  9271. background:inherit;
  9272. background-color:rgba(255, 255, 255, 0);
  9273. border:none;
  9274. border-left:0px;
  9275. border-top:0px;
  9276. border-right:0px;
  9277. border-radius:0px;
  9278. border-bottom-right-radius:0px;
  9279. border-bottom-left-radius:0px;
  9280. -moz-box-shadow:none;
  9281. -webkit-box-shadow:none;
  9282. box-shadow:none;
  9283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9284. font-weight:400;
  9285. font-style:normal;
  9286. font-size:18px;
  9287. }
  9288. #u37027 {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:235px;
  9292. top:772px;
  9293. width:73px;
  9294. height:25px;
  9295. display:flex;
  9296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9297. font-weight:400;
  9298. font-style:normal;
  9299. font-size:18px;
  9300. }
  9301. #u37027 .text {
  9302. position:absolute;
  9303. align-self:center;
  9304. padding:0px 0px 0px 0px;
  9305. box-sizing:border-box;
  9306. width:100%;
  9307. }
  9308. #u37027_text {
  9309. border-width:0px;
  9310. white-space:nowrap;
  9311. text-transform:none;
  9312. }
  9313. #u37028_div {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:109px;
  9319. height:17px;
  9320. background:inherit;
  9321. background-color:rgba(255, 255, 255, 0);
  9322. border:none;
  9323. border-left:0px;
  9324. border-top:0px;
  9325. border-right:0px;
  9326. border-radius:0px;
  9327. border-bottom-right-radius:0px;
  9328. border-bottom-left-radius:0px;
  9329. -moz-box-shadow:none;
  9330. -webkit-box-shadow:none;
  9331. box-shadow:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:12px;
  9336. color:#7F7F7F;
  9337. }
  9338. #u37028 {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:235px;
  9342. top:802px;
  9343. width:109px;
  9344. height:17px;
  9345. display:flex;
  9346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9347. font-weight:400;
  9348. font-style:normal;
  9349. font-size:12px;
  9350. color:#7F7F7F;
  9351. }
  9352. #u37028 .text {
  9353. position:absolute;
  9354. align-self:center;
  9355. padding:0px 0px 0px 0px;
  9356. box-sizing:border-box;
  9357. width:100%;
  9358. }
  9359. #u37028_text {
  9360. border-width:0px;
  9361. white-space:nowrap;
  9362. text-transform:none;
  9363. }
  9364. #u37029 {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:0px;
  9370. height:0px;
  9371. }
  9372. #u37030_div {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:0px;
  9376. top:0px;
  9377. width:240px;
  9378. height:80px;
  9379. background:inherit;
  9380. background-color:rgba(242, 242, 242, 1);
  9381. border:none;
  9382. border-radius:0px;
  9383. -moz-box-shadow:none;
  9384. -webkit-box-shadow:none;
  9385. box-shadow:none;
  9386. }
  9387. #u37030 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:425px;
  9391. top:756px;
  9392. width:240px;
  9393. height:80px;
  9394. display:flex;
  9395. }
  9396. #u37030 .text {
  9397. position:absolute;
  9398. align-self:center;
  9399. padding:2px 2px 2px 2px;
  9400. box-sizing:border-box;
  9401. width:100%;
  9402. }
  9403. #u37030_text {
  9404. border-width:0px;
  9405. word-wrap:break-word;
  9406. text-transform:none;
  9407. visibility:hidden;
  9408. }
  9409. #u37031_img {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:50px;
  9415. height:53px;
  9416. }
  9417. #u37031 {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:441px;
  9421. top:769px;
  9422. width:50px;
  9423. height:53px;
  9424. display:flex;
  9425. }
  9426. #u37031 .text {
  9427. position:absolute;
  9428. align-self:center;
  9429. padding:2px 2px 2px 2px;
  9430. box-sizing:border-box;
  9431. width:100%;
  9432. }
  9433. #u37031_text {
  9434. border-width:0px;
  9435. word-wrap:break-word;
  9436. text-transform:none;
  9437. visibility:hidden;
  9438. }
  9439. #u37032 {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:0px;
  9445. height:0px;
  9446. }
  9447. #u37033_div {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:73px;
  9453. height:25px;
  9454. background:inherit;
  9455. background-color:rgba(255, 255, 255, 0);
  9456. border:none;
  9457. border-left:0px;
  9458. border-top:0px;
  9459. border-right:0px;
  9460. border-radius:0px;
  9461. border-bottom-right-radius:0px;
  9462. border-bottom-left-radius:0px;
  9463. -moz-box-shadow:none;
  9464. -webkit-box-shadow:none;
  9465. box-shadow:none;
  9466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9467. font-weight:400;
  9468. font-style:normal;
  9469. font-size:18px;
  9470. }
  9471. #u37033 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:506px;
  9475. top:772px;
  9476. width:73px;
  9477. height:25px;
  9478. display:flex;
  9479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9480. font-weight:400;
  9481. font-style:normal;
  9482. font-size:18px;
  9483. }
  9484. #u37033 .text {
  9485. position:absolute;
  9486. align-self:center;
  9487. padding:0px 0px 0px 0px;
  9488. box-sizing:border-box;
  9489. width:100%;
  9490. }
  9491. #u37033_text {
  9492. border-width:0px;
  9493. white-space:nowrap;
  9494. text-transform:none;
  9495. }
  9496. #u37034_div {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:0px;
  9500. top:0px;
  9501. width:85px;
  9502. height:17px;
  9503. background:inherit;
  9504. background-color:rgba(255, 255, 255, 0);
  9505. border:none;
  9506. border-left:0px;
  9507. border-top:0px;
  9508. border-right:0px;
  9509. border-radius:0px;
  9510. border-bottom-right-radius:0px;
  9511. border-bottom-left-radius:0px;
  9512. -moz-box-shadow:none;
  9513. -webkit-box-shadow:none;
  9514. box-shadow:none;
  9515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:12px;
  9519. color:#7F7F7F;
  9520. }
  9521. #u37034 {
  9522. border-width:0px;
  9523. position:absolute;
  9524. left:506px;
  9525. top:802px;
  9526. width:85px;
  9527. height:17px;
  9528. display:flex;
  9529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9530. font-weight:400;
  9531. font-style:normal;
  9532. font-size:12px;
  9533. color:#7F7F7F;
  9534. }
  9535. #u37034 .text {
  9536. position:absolute;
  9537. align-self:center;
  9538. padding:0px 0px 0px 0px;
  9539. box-sizing:border-box;
  9540. width:100%;
  9541. }
  9542. #u37034_text {
  9543. border-width:0px;
  9544. white-space:nowrap;
  9545. text-transform:none;
  9546. }
  9547. #u37035 {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:0px;
  9551. top:0px;
  9552. width:0px;
  9553. height:0px;
  9554. }
  9555. #u37036_div {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:240px;
  9561. height:80px;
  9562. background:inherit;
  9563. background-color:rgba(242, 242, 242, 1);
  9564. border:none;
  9565. border-radius:0px;
  9566. -moz-box-shadow:none;
  9567. -webkit-box-shadow:none;
  9568. box-shadow:none;
  9569. }
  9570. #u37036 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:695px;
  9574. top:756px;
  9575. width:240px;
  9576. height:80px;
  9577. display:flex;
  9578. }
  9579. #u37036 .text {
  9580. position:absolute;
  9581. align-self:center;
  9582. padding:2px 2px 2px 2px;
  9583. box-sizing:border-box;
  9584. width:100%;
  9585. }
  9586. #u37036_text {
  9587. border-width:0px;
  9588. word-wrap:break-word;
  9589. text-transform:none;
  9590. visibility:hidden;
  9591. }
  9592. #u37037_img {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:0px;
  9596. top:0px;
  9597. width:50px;
  9598. height:53px;
  9599. }
  9600. #u37037 {
  9601. border-width:0px;
  9602. position:absolute;
  9603. left:711px;
  9604. top:769px;
  9605. width:50px;
  9606. height:53px;
  9607. display:flex;
  9608. }
  9609. #u37037 .text {
  9610. position:absolute;
  9611. align-self:center;
  9612. padding:2px 2px 2px 2px;
  9613. box-sizing:border-box;
  9614. width:100%;
  9615. }
  9616. #u37037_text {
  9617. border-width:0px;
  9618. word-wrap:break-word;
  9619. text-transform:none;
  9620. visibility:hidden;
  9621. }
  9622. #u37038 {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:0px;
  9626. top:0px;
  9627. width:0px;
  9628. height:0px;
  9629. }
  9630. #u37039_div {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:73px;
  9636. height:25px;
  9637. background:inherit;
  9638. background-color:rgba(255, 255, 255, 0);
  9639. border:none;
  9640. border-left:0px;
  9641. border-top:0px;
  9642. border-right:0px;
  9643. border-radius:0px;
  9644. border-bottom-right-radius:0px;
  9645. border-bottom-left-radius:0px;
  9646. -moz-box-shadow:none;
  9647. -webkit-box-shadow:none;
  9648. box-shadow:none;
  9649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9650. font-weight:400;
  9651. font-style:normal;
  9652. font-size:18px;
  9653. }
  9654. #u37039 {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:776px;
  9658. top:772px;
  9659. width:73px;
  9660. height:25px;
  9661. display:flex;
  9662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:18px;
  9666. }
  9667. #u37039 .text {
  9668. position:absolute;
  9669. align-self:center;
  9670. padding:0px 0px 0px 0px;
  9671. box-sizing:border-box;
  9672. width:100%;
  9673. }
  9674. #u37039_text {
  9675. border-width:0px;
  9676. white-space:nowrap;
  9677. text-transform:none;
  9678. }
  9679. #u37040_div {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:97px;
  9685. height:17px;
  9686. background:inherit;
  9687. background-color:rgba(255, 255, 255, 0);
  9688. border:none;
  9689. border-left:0px;
  9690. border-top:0px;
  9691. border-right:0px;
  9692. border-radius:0px;
  9693. border-bottom-right-radius:0px;
  9694. border-bottom-left-radius:0px;
  9695. -moz-box-shadow:none;
  9696. -webkit-box-shadow:none;
  9697. box-shadow:none;
  9698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9699. font-weight:400;
  9700. font-style:normal;
  9701. font-size:12px;
  9702. color:#7F7F7F;
  9703. }
  9704. #u37040 {
  9705. border-width:0px;
  9706. position:absolute;
  9707. left:776px;
  9708. top:802px;
  9709. width:97px;
  9710. height:17px;
  9711. display:flex;
  9712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9713. font-weight:400;
  9714. font-style:normal;
  9715. font-size:12px;
  9716. color:#7F7F7F;
  9717. }
  9718. #u37040 .text {
  9719. position:absolute;
  9720. align-self:center;
  9721. padding:0px 0px 0px 0px;
  9722. box-sizing:border-box;
  9723. width:100%;
  9724. }
  9725. #u37040_text {
  9726. border-width:0px;
  9727. white-space:nowrap;
  9728. text-transform:none;
  9729. }
  9730. #u37041 {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:0px;
  9734. top:0px;
  9735. width:0px;
  9736. height:0px;
  9737. }
  9738. #u37042_div {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:240px;
  9744. height:80px;
  9745. background:inherit;
  9746. background-color:rgba(242, 242, 242, 1);
  9747. border:none;
  9748. border-radius:0px;
  9749. -moz-box-shadow:none;
  9750. -webkit-box-shadow:none;
  9751. box-shadow:none;
  9752. }
  9753. #u37042 {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:966px;
  9757. top:756px;
  9758. width:240px;
  9759. height:80px;
  9760. display:flex;
  9761. }
  9762. #u37042 .text {
  9763. position:absolute;
  9764. align-self:center;
  9765. padding:2px 2px 2px 2px;
  9766. box-sizing:border-box;
  9767. width:100%;
  9768. }
  9769. #u37042_text {
  9770. border-width:0px;
  9771. word-wrap:break-word;
  9772. text-transform:none;
  9773. visibility:hidden;
  9774. }
  9775. #u37043_img {
  9776. border-width:0px;
  9777. position:absolute;
  9778. left:0px;
  9779. top:0px;
  9780. width:50px;
  9781. height:53px;
  9782. }
  9783. #u37043 {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:982px;
  9787. top:769px;
  9788. width:50px;
  9789. height:53px;
  9790. display:flex;
  9791. }
  9792. #u37043 .text {
  9793. position:absolute;
  9794. align-self:center;
  9795. padding:2px 2px 2px 2px;
  9796. box-sizing:border-box;
  9797. width:100%;
  9798. }
  9799. #u37043_text {
  9800. border-width:0px;
  9801. word-wrap:break-word;
  9802. text-transform:none;
  9803. visibility:hidden;
  9804. }
  9805. #u37044 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:0px;
  9809. top:0px;
  9810. width:0px;
  9811. height:0px;
  9812. }
  9813. #u37045_div {
  9814. border-width:0px;
  9815. position:absolute;
  9816. left:0px;
  9817. top:0px;
  9818. width:73px;
  9819. height:25px;
  9820. background:inherit;
  9821. background-color:rgba(255, 255, 255, 0);
  9822. border:none;
  9823. border-left:0px;
  9824. border-top:0px;
  9825. border-right:0px;
  9826. border-radius:0px;
  9827. border-bottom-right-radius:0px;
  9828. border-bottom-left-radius:0px;
  9829. -moz-box-shadow:none;
  9830. -webkit-box-shadow:none;
  9831. box-shadow:none;
  9832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9833. font-weight:400;
  9834. font-style:normal;
  9835. font-size:18px;
  9836. }
  9837. #u37045 {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:1047px;
  9841. top:772px;
  9842. width:73px;
  9843. height:25px;
  9844. display:flex;
  9845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9846. font-weight:400;
  9847. font-style:normal;
  9848. font-size:18px;
  9849. }
  9850. #u37045 .text {
  9851. position:absolute;
  9852. align-self:center;
  9853. padding:0px 0px 0px 0px;
  9854. box-sizing:border-box;
  9855. width:100%;
  9856. }
  9857. #u37045_text {
  9858. border-width:0px;
  9859. white-space:nowrap;
  9860. text-transform:none;
  9861. }
  9862. #u37046_div {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:97px;
  9868. height:17px;
  9869. background:inherit;
  9870. background-color:rgba(255, 255, 255, 0);
  9871. border:none;
  9872. border-left:0px;
  9873. border-top:0px;
  9874. border-right:0px;
  9875. border-radius:0px;
  9876. border-bottom-right-radius:0px;
  9877. border-bottom-left-radius:0px;
  9878. -moz-box-shadow:none;
  9879. -webkit-box-shadow:none;
  9880. box-shadow:none;
  9881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9882. font-weight:400;
  9883. font-style:normal;
  9884. font-size:12px;
  9885. color:#7F7F7F;
  9886. }
  9887. #u37046 {
  9888. border-width:0px;
  9889. position:absolute;
  9890. left:1047px;
  9891. top:802px;
  9892. width:97px;
  9893. height:17px;
  9894. display:flex;
  9895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9896. font-weight:400;
  9897. font-style:normal;
  9898. font-size:12px;
  9899. color:#7F7F7F;
  9900. }
  9901. #u37046 .text {
  9902. position:absolute;
  9903. align-self:center;
  9904. padding:0px 0px 0px 0px;
  9905. box-sizing:border-box;
  9906. width:100%;
  9907. }
  9908. #u37046_text {
  9909. border-width:0px;
  9910. white-space:nowrap;
  9911. text-transform:none;
  9912. }
  9913. #u37047 {
  9914. border-width:0px;
  9915. position:absolute;
  9916. left:0px;
  9917. top:0px;
  9918. width:0px;
  9919. height:0px;
  9920. }
  9921. #u37048_div {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:0px;
  9925. top:0px;
  9926. width:240px;
  9927. height:80px;
  9928. background:inherit;
  9929. background-color:rgba(242, 242, 242, 1);
  9930. border:none;
  9931. border-radius:0px;
  9932. -moz-box-shadow:none;
  9933. -webkit-box-shadow:none;
  9934. box-shadow:none;
  9935. }
  9936. #u37048 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:1236px;
  9940. top:656px;
  9941. width:240px;
  9942. height:80px;
  9943. display:flex;
  9944. }
  9945. #u37048 .text {
  9946. position:absolute;
  9947. align-self:center;
  9948. padding:2px 2px 2px 2px;
  9949. box-sizing:border-box;
  9950. width:100%;
  9951. }
  9952. #u37048_text {
  9953. border-width:0px;
  9954. word-wrap:break-word;
  9955. text-transform:none;
  9956. visibility:hidden;
  9957. }
  9958. #u37049_img {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:0px;
  9962. top:0px;
  9963. width:50px;
  9964. height:53px;
  9965. }
  9966. #u37049 {
  9967. border-width:0px;
  9968. position:absolute;
  9969. left:1252px;
  9970. top:669px;
  9971. width:50px;
  9972. height:53px;
  9973. display:flex;
  9974. }
  9975. #u37049 .text {
  9976. position:absolute;
  9977. align-self:center;
  9978. padding:2px 2px 2px 2px;
  9979. box-sizing:border-box;
  9980. width:100%;
  9981. }
  9982. #u37049_text {
  9983. border-width:0px;
  9984. word-wrap:break-word;
  9985. text-transform:none;
  9986. visibility:hidden;
  9987. }
  9988. #u37050 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:0px;
  9992. top:0px;
  9993. width:0px;
  9994. height:0px;
  9995. }
  9996. #u37051_div {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:0px;
  10000. top:0px;
  10001. width:73px;
  10002. height:25px;
  10003. background:inherit;
  10004. background-color:rgba(255, 255, 255, 0);
  10005. border:none;
  10006. border-left:0px;
  10007. border-top:0px;
  10008. border-right:0px;
  10009. border-radius:0px;
  10010. border-bottom-right-radius:0px;
  10011. border-bottom-left-radius:0px;
  10012. -moz-box-shadow:none;
  10013. -webkit-box-shadow:none;
  10014. box-shadow:none;
  10015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10016. font-weight:400;
  10017. font-style:normal;
  10018. font-size:18px;
  10019. }
  10020. #u37051 {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:1317px;
  10024. top:672px;
  10025. width:73px;
  10026. height:25px;
  10027. display:flex;
  10028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10029. font-weight:400;
  10030. font-style:normal;
  10031. font-size:18px;
  10032. }
  10033. #u37051 .text {
  10034. position:absolute;
  10035. align-self:center;
  10036. padding:0px 0px 0px 0px;
  10037. box-sizing:border-box;
  10038. width:100%;
  10039. }
  10040. #u37051_text {
  10041. border-width:0px;
  10042. white-space:nowrap;
  10043. text-transform:none;
  10044. }
  10045. #u37052_div {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:0px;
  10049. top:0px;
  10050. width:97px;
  10051. height:17px;
  10052. background:inherit;
  10053. background-color:rgba(255, 255, 255, 0);
  10054. border:none;
  10055. border-left:0px;
  10056. border-top:0px;
  10057. border-right:0px;
  10058. border-radius:0px;
  10059. border-bottom-right-radius:0px;
  10060. border-bottom-left-radius:0px;
  10061. -moz-box-shadow:none;
  10062. -webkit-box-shadow:none;
  10063. box-shadow:none;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:12px;
  10068. color:#7F7F7F;
  10069. }
  10070. #u37052 {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:1317px;
  10074. top:702px;
  10075. width:97px;
  10076. height:17px;
  10077. display:flex;
  10078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10079. font-weight:400;
  10080. font-style:normal;
  10081. font-size:12px;
  10082. color:#7F7F7F;
  10083. }
  10084. #u37052 .text {
  10085. position:absolute;
  10086. align-self:center;
  10087. padding:0px 0px 0px 0px;
  10088. box-sizing:border-box;
  10089. width:100%;
  10090. }
  10091. #u37052_text {
  10092. border-width:0px;
  10093. white-space:nowrap;
  10094. text-transform:none;
  10095. }
  10096. #u37053 {
  10097. border-width:0px;
  10098. position:absolute;
  10099. left:0px;
  10100. top:0px;
  10101. width:0px;
  10102. height:0px;
  10103. }
  10104. #u37054_div {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:0px;
  10108. top:0px;
  10109. width:240px;
  10110. height:80px;
  10111. background:inherit;
  10112. background-color:rgba(242, 242, 242, 1);
  10113. border:none;
  10114. border-radius:0px;
  10115. -moz-box-shadow:none;
  10116. -webkit-box-shadow:none;
  10117. box-shadow:none;
  10118. }
  10119. #u37054 {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:966px;
  10123. top:856px;
  10124. width:240px;
  10125. height:80px;
  10126. display:flex;
  10127. }
  10128. #u37054 .text {
  10129. position:absolute;
  10130. align-self:center;
  10131. padding:2px 2px 2px 2px;
  10132. box-sizing:border-box;
  10133. width:100%;
  10134. }
  10135. #u37054_text {
  10136. border-width:0px;
  10137. word-wrap:break-word;
  10138. text-transform:none;
  10139. visibility:hidden;
  10140. }
  10141. #u37055_img {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:50px;
  10147. height:53px;
  10148. }
  10149. #u37055 {
  10150. border-width:0px;
  10151. position:absolute;
  10152. left:982px;
  10153. top:869px;
  10154. width:50px;
  10155. height:53px;
  10156. display:flex;
  10157. }
  10158. #u37055 .text {
  10159. position:absolute;
  10160. align-self:center;
  10161. padding:2px 2px 2px 2px;
  10162. box-sizing:border-box;
  10163. width:100%;
  10164. }
  10165. #u37055_text {
  10166. border-width:0px;
  10167. word-wrap:break-word;
  10168. text-transform:none;
  10169. visibility:hidden;
  10170. }
  10171. #u37056 {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:0px;
  10175. top:0px;
  10176. width:0px;
  10177. height:0px;
  10178. }
  10179. #u37057_div {
  10180. border-width:0px;
  10181. position:absolute;
  10182. left:0px;
  10183. top:0px;
  10184. width:73px;
  10185. height:25px;
  10186. background:inherit;
  10187. background-color:rgba(255, 255, 255, 0);
  10188. border:none;
  10189. border-left:0px;
  10190. border-top:0px;
  10191. border-right:0px;
  10192. border-radius:0px;
  10193. border-bottom-right-radius:0px;
  10194. border-bottom-left-radius:0px;
  10195. -moz-box-shadow:none;
  10196. -webkit-box-shadow:none;
  10197. box-shadow:none;
  10198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10199. font-weight:400;
  10200. font-style:normal;
  10201. font-size:18px;
  10202. }
  10203. #u37057 {
  10204. border-width:0px;
  10205. position:absolute;
  10206. left:1047px;
  10207. top:872px;
  10208. width:73px;
  10209. height:25px;
  10210. display:flex;
  10211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10212. font-weight:400;
  10213. font-style:normal;
  10214. font-size:18px;
  10215. }
  10216. #u37057 .text {
  10217. position:absolute;
  10218. align-self:center;
  10219. padding:0px 0px 0px 0px;
  10220. box-sizing:border-box;
  10221. width:100%;
  10222. }
  10223. #u37057_text {
  10224. border-width:0px;
  10225. white-space:nowrap;
  10226. text-transform:none;
  10227. }
  10228. #u37058_div {
  10229. border-width:0px;
  10230. position:absolute;
  10231. left:0px;
  10232. top:0px;
  10233. width:109px;
  10234. height:17px;
  10235. background:inherit;
  10236. background-color:rgba(255, 255, 255, 0);
  10237. border:none;
  10238. border-left:0px;
  10239. border-top:0px;
  10240. border-right:0px;
  10241. border-radius:0px;
  10242. border-bottom-right-radius:0px;
  10243. border-bottom-left-radius:0px;
  10244. -moz-box-shadow:none;
  10245. -webkit-box-shadow:none;
  10246. box-shadow:none;
  10247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10248. font-weight:400;
  10249. font-style:normal;
  10250. font-size:12px;
  10251. color:#7F7F7F;
  10252. }
  10253. #u37058 {
  10254. border-width:0px;
  10255. position:absolute;
  10256. left:1047px;
  10257. top:902px;
  10258. width:109px;
  10259. height:17px;
  10260. display:flex;
  10261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10262. font-weight:400;
  10263. font-style:normal;
  10264. font-size:12px;
  10265. color:#7F7F7F;
  10266. }
  10267. #u37058 .text {
  10268. position:absolute;
  10269. align-self:center;
  10270. padding:0px 0px 0px 0px;
  10271. box-sizing:border-box;
  10272. width:100%;
  10273. }
  10274. #u37058_text {
  10275. border-width:0px;
  10276. white-space:nowrap;
  10277. text-transform:none;
  10278. }
  10279. #u37059 {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:0px;
  10283. top:0px;
  10284. width:0px;
  10285. height:0px;
  10286. }
  10287. #u37060_div {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:0px;
  10291. top:0px;
  10292. width:240px;
  10293. height:80px;
  10294. background:inherit;
  10295. background-color:rgba(242, 242, 242, 1);
  10296. border:none;
  10297. border-radius:0px;
  10298. -moz-box-shadow:none;
  10299. -webkit-box-shadow:none;
  10300. box-shadow:none;
  10301. }
  10302. #u37060 {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:966px;
  10306. top:656px;
  10307. width:240px;
  10308. height:80px;
  10309. display:flex;
  10310. }
  10311. #u37060 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:2px 2px 2px 2px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u37060_text {
  10319. border-width:0px;
  10320. word-wrap:break-word;
  10321. text-transform:none;
  10322. visibility:hidden;
  10323. }
  10324. #u37061_img {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:50px;
  10330. height:53px;
  10331. }
  10332. #u37061 {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:982px;
  10336. top:669px;
  10337. width:50px;
  10338. height:53px;
  10339. display:flex;
  10340. }
  10341. #u37061 .text {
  10342. position:absolute;
  10343. align-self:center;
  10344. padding:2px 2px 2px 2px;
  10345. box-sizing:border-box;
  10346. width:100%;
  10347. }
  10348. #u37061_text {
  10349. border-width:0px;
  10350. word-wrap:break-word;
  10351. text-transform:none;
  10352. visibility:hidden;
  10353. }
  10354. #u37062 {
  10355. border-width:0px;
  10356. position:absolute;
  10357. left:0px;
  10358. top:0px;
  10359. width:0px;
  10360. height:0px;
  10361. }
  10362. #u37063_div {
  10363. border-width:0px;
  10364. position:absolute;
  10365. left:0px;
  10366. top:0px;
  10367. width:73px;
  10368. height:25px;
  10369. background:inherit;
  10370. background-color:rgba(255, 255, 255, 0);
  10371. border:none;
  10372. border-left:0px;
  10373. border-top:0px;
  10374. border-right:0px;
  10375. border-radius:0px;
  10376. border-bottom-right-radius:0px;
  10377. border-bottom-left-radius:0px;
  10378. -moz-box-shadow:none;
  10379. -webkit-box-shadow:none;
  10380. box-shadow:none;
  10381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10382. font-weight:400;
  10383. font-style:normal;
  10384. font-size:18px;
  10385. }
  10386. #u37063 {
  10387. border-width:0px;
  10388. position:absolute;
  10389. left:1047px;
  10390. top:672px;
  10391. width:73px;
  10392. height:25px;
  10393. display:flex;
  10394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10395. font-weight:400;
  10396. font-style:normal;
  10397. font-size:18px;
  10398. }
  10399. #u37063 .text {
  10400. position:absolute;
  10401. align-self:center;
  10402. padding:0px 0px 0px 0px;
  10403. box-sizing:border-box;
  10404. width:100%;
  10405. }
  10406. #u37063_text {
  10407. border-width:0px;
  10408. white-space:nowrap;
  10409. text-transform:none;
  10410. }
  10411. #u37064_div {
  10412. border-width:0px;
  10413. position:absolute;
  10414. left:0px;
  10415. top:0px;
  10416. width:85px;
  10417. height:17px;
  10418. background:inherit;
  10419. background-color:rgba(255, 255, 255, 0);
  10420. border:none;
  10421. border-left:0px;
  10422. border-top:0px;
  10423. border-right:0px;
  10424. border-radius:0px;
  10425. border-bottom-right-radius:0px;
  10426. border-bottom-left-radius:0px;
  10427. -moz-box-shadow:none;
  10428. -webkit-box-shadow:none;
  10429. box-shadow:none;
  10430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10431. font-weight:400;
  10432. font-style:normal;
  10433. font-size:12px;
  10434. color:#7F7F7F;
  10435. }
  10436. #u37064 {
  10437. border-width:0px;
  10438. position:absolute;
  10439. left:1047px;
  10440. top:702px;
  10441. width:85px;
  10442. height:17px;
  10443. display:flex;
  10444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10445. font-weight:400;
  10446. font-style:normal;
  10447. font-size:12px;
  10448. color:#7F7F7F;
  10449. }
  10450. #u37064 .text {
  10451. position:absolute;
  10452. align-self:center;
  10453. padding:0px 0px 0px 0px;
  10454. box-sizing:border-box;
  10455. width:100%;
  10456. }
  10457. #u37064_text {
  10458. border-width:0px;
  10459. white-space:nowrap;
  10460. text-transform:none;
  10461. }
  10462. #u37065 {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:0px;
  10468. height:0px;
  10469. }
  10470. #u37066_div {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:240px;
  10476. height:80px;
  10477. background:inherit;
  10478. background-color:rgba(242, 242, 242, 1);
  10479. border:none;
  10480. border-radius:0px;
  10481. -moz-box-shadow:none;
  10482. -webkit-box-shadow:none;
  10483. box-shadow:none;
  10484. }
  10485. #u37066 {
  10486. border-width:0px;
  10487. position:absolute;
  10488. left:425px;
  10489. top:856px;
  10490. width:240px;
  10491. height:80px;
  10492. display:flex;
  10493. }
  10494. #u37066 .text {
  10495. position:absolute;
  10496. align-self:center;
  10497. padding:2px 2px 2px 2px;
  10498. box-sizing:border-box;
  10499. width:100%;
  10500. }
  10501. #u37066_text {
  10502. border-width:0px;
  10503. word-wrap:break-word;
  10504. text-transform:none;
  10505. visibility:hidden;
  10506. }
  10507. #u37067_img {
  10508. border-width:0px;
  10509. position:absolute;
  10510. left:0px;
  10511. top:0px;
  10512. width:50px;
  10513. height:53px;
  10514. }
  10515. #u37067 {
  10516. border-width:0px;
  10517. position:absolute;
  10518. left:441px;
  10519. top:869px;
  10520. width:50px;
  10521. height:53px;
  10522. display:flex;
  10523. }
  10524. #u37067 .text {
  10525. position:absolute;
  10526. align-self:center;
  10527. padding:2px 2px 2px 2px;
  10528. box-sizing:border-box;
  10529. width:100%;
  10530. }
  10531. #u37067_text {
  10532. border-width:0px;
  10533. word-wrap:break-word;
  10534. text-transform:none;
  10535. visibility:hidden;
  10536. }
  10537. #u37068 {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:0px;
  10541. top:0px;
  10542. width:0px;
  10543. height:0px;
  10544. }
  10545. #u37069_div {
  10546. border-width:0px;
  10547. position:absolute;
  10548. left:0px;
  10549. top:0px;
  10550. width:91px;
  10551. height:25px;
  10552. background:inherit;
  10553. background-color:rgba(255, 255, 255, 0);
  10554. border:none;
  10555. border-left:0px;
  10556. border-top:0px;
  10557. border-right:0px;
  10558. border-radius:0px;
  10559. border-bottom-right-radius:0px;
  10560. border-bottom-left-radius:0px;
  10561. -moz-box-shadow:none;
  10562. -webkit-box-shadow:none;
  10563. box-shadow:none;
  10564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10565. font-weight:400;
  10566. font-style:normal;
  10567. font-size:18px;
  10568. }
  10569. #u37069 {
  10570. border-width:0px;
  10571. position:absolute;
  10572. left:506px;
  10573. top:872px;
  10574. width:91px;
  10575. height:25px;
  10576. display:flex;
  10577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10578. font-weight:400;
  10579. font-style:normal;
  10580. font-size:18px;
  10581. }
  10582. #u37069 .text {
  10583. position:absolute;
  10584. align-self:center;
  10585. padding:0px 0px 0px 0px;
  10586. box-sizing:border-box;
  10587. width:100%;
  10588. }
  10589. #u37069_text {
  10590. border-width:0px;
  10591. white-space:nowrap;
  10592. text-transform:none;
  10593. }
  10594. #u37070_div {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:0px;
  10598. top:0px;
  10599. width:133px;
  10600. height:17px;
  10601. background:inherit;
  10602. background-color:rgba(255, 255, 255, 0);
  10603. border:none;
  10604. border-left:0px;
  10605. border-top:0px;
  10606. border-right:0px;
  10607. border-radius:0px;
  10608. border-bottom-right-radius:0px;
  10609. border-bottom-left-radius:0px;
  10610. -moz-box-shadow:none;
  10611. -webkit-box-shadow:none;
  10612. box-shadow:none;
  10613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10614. font-weight:400;
  10615. font-style:normal;
  10616. font-size:12px;
  10617. color:#7F7F7F;
  10618. }
  10619. #u37070 {
  10620. border-width:0px;
  10621. position:absolute;
  10622. left:506px;
  10623. top:902px;
  10624. width:133px;
  10625. height:17px;
  10626. display:flex;
  10627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10628. font-weight:400;
  10629. font-style:normal;
  10630. font-size:12px;
  10631. color:#7F7F7F;
  10632. }
  10633. #u37070 .text {
  10634. position:absolute;
  10635. align-self:center;
  10636. padding:0px 0px 0px 0px;
  10637. box-sizing:border-box;
  10638. width:100%;
  10639. }
  10640. #u37070_text {
  10641. border-width:0px;
  10642. white-space:nowrap;
  10643. text-transform:none;
  10644. }
  10645. #u37071 {
  10646. border-width:0px;
  10647. position:absolute;
  10648. left:0px;
  10649. top:0px;
  10650. width:0px;
  10651. height:0px;
  10652. }
  10653. #u37072_div {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:0px;
  10657. top:0px;
  10658. width:240px;
  10659. height:80px;
  10660. background:inherit;
  10661. background-color:rgba(242, 242, 242, 1);
  10662. border:none;
  10663. border-radius:0px;
  10664. -moz-box-shadow:none;
  10665. -webkit-box-shadow:none;
  10666. box-shadow:none;
  10667. }
  10668. #u37072 {
  10669. border-width:0px;
  10670. position:absolute;
  10671. left:696px;
  10672. top:856px;
  10673. width:240px;
  10674. height:80px;
  10675. display:flex;
  10676. }
  10677. #u37072 .text {
  10678. position:absolute;
  10679. align-self:center;
  10680. padding:2px 2px 2px 2px;
  10681. box-sizing:border-box;
  10682. width:100%;
  10683. }
  10684. #u37072_text {
  10685. border-width:0px;
  10686. word-wrap:break-word;
  10687. text-transform:none;
  10688. visibility:hidden;
  10689. }
  10690. #u37073_img {
  10691. border-width:0px;
  10692. position:absolute;
  10693. left:0px;
  10694. top:0px;
  10695. width:50px;
  10696. height:53px;
  10697. }
  10698. #u37073 {
  10699. border-width:0px;
  10700. position:absolute;
  10701. left:712px;
  10702. top:869px;
  10703. width:50px;
  10704. height:53px;
  10705. display:flex;
  10706. }
  10707. #u37073 .text {
  10708. position:absolute;
  10709. align-self:center;
  10710. padding:2px 2px 2px 2px;
  10711. box-sizing:border-box;
  10712. width:100%;
  10713. }
  10714. #u37073_text {
  10715. border-width:0px;
  10716. word-wrap:break-word;
  10717. text-transform:none;
  10718. visibility:hidden;
  10719. }
  10720. #u37074 {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:0px;
  10724. top:0px;
  10725. width:0px;
  10726. height:0px;
  10727. }
  10728. #u37075_div {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:0px;
  10732. top:0px;
  10733. width:73px;
  10734. height:25px;
  10735. background:inherit;
  10736. background-color:rgba(255, 255, 255, 0);
  10737. border:none;
  10738. border-left:0px;
  10739. border-top:0px;
  10740. border-right:0px;
  10741. border-radius:0px;
  10742. border-bottom-right-radius:0px;
  10743. border-bottom-left-radius:0px;
  10744. -moz-box-shadow:none;
  10745. -webkit-box-shadow:none;
  10746. box-shadow:none;
  10747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10748. font-weight:400;
  10749. font-style:normal;
  10750. font-size:18px;
  10751. }
  10752. #u37075 {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:777px;
  10756. top:872px;
  10757. width:73px;
  10758. height:25px;
  10759. display:flex;
  10760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10761. font-weight:400;
  10762. font-style:normal;
  10763. font-size:18px;
  10764. }
  10765. #u37075 .text {
  10766. position:absolute;
  10767. align-self:center;
  10768. padding:0px 0px 0px 0px;
  10769. box-sizing:border-box;
  10770. width:100%;
  10771. }
  10772. #u37075_text {
  10773. border-width:0px;
  10774. white-space:nowrap;
  10775. text-transform:none;
  10776. }
  10777. #u37076_div {
  10778. border-width:0px;
  10779. position:absolute;
  10780. left:0px;
  10781. top:0px;
  10782. width:157px;
  10783. height:17px;
  10784. background:inherit;
  10785. background-color:rgba(255, 255, 255, 0);
  10786. border:none;
  10787. border-left:0px;
  10788. border-top:0px;
  10789. border-right:0px;
  10790. border-radius:0px;
  10791. border-bottom-right-radius:0px;
  10792. border-bottom-left-radius:0px;
  10793. -moz-box-shadow:none;
  10794. -webkit-box-shadow:none;
  10795. box-shadow:none;
  10796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10797. font-weight:400;
  10798. font-style:normal;
  10799. font-size:12px;
  10800. color:#7F7F7F;
  10801. }
  10802. #u37076 {
  10803. border-width:0px;
  10804. position:absolute;
  10805. left:777px;
  10806. top:902px;
  10807. width:157px;
  10808. height:17px;
  10809. display:flex;
  10810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10811. font-weight:400;
  10812. font-style:normal;
  10813. font-size:12px;
  10814. color:#7F7F7F;
  10815. }
  10816. #u37076 .text {
  10817. position:absolute;
  10818. align-self:center;
  10819. padding:0px 0px 0px 0px;
  10820. box-sizing:border-box;
  10821. width:100%;
  10822. }
  10823. #u37076_text {
  10824. border-width:0px;
  10825. white-space:nowrap;
  10826. text-transform:none;
  10827. }
  10828. #u37077 {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:0px;
  10832. top:0px;
  10833. width:0px;
  10834. height:0px;
  10835. }
  10836. #u37078_div {
  10837. border-width:0px;
  10838. position:absolute;
  10839. left:0px;
  10840. top:0px;
  10841. width:240px;
  10842. height:80px;
  10843. background:inherit;
  10844. background-color:rgba(242, 242, 242, 1);
  10845. border:none;
  10846. border-radius:0px;
  10847. -moz-box-shadow:none;
  10848. -webkit-box-shadow:none;
  10849. box-shadow:none;
  10850. }
  10851. #u37078 {
  10852. border-width:0px;
  10853. position:absolute;
  10854. left:1236px;
  10855. top:856px;
  10856. width:240px;
  10857. height:80px;
  10858. display:flex;
  10859. }
  10860. #u37078 .text {
  10861. position:absolute;
  10862. align-self:center;
  10863. padding:2px 2px 2px 2px;
  10864. box-sizing:border-box;
  10865. width:100%;
  10866. }
  10867. #u37078_text {
  10868. border-width:0px;
  10869. word-wrap:break-word;
  10870. text-transform:none;
  10871. visibility:hidden;
  10872. }
  10873. #u37079_img {
  10874. border-width:0px;
  10875. position:absolute;
  10876. left:0px;
  10877. top:0px;
  10878. width:50px;
  10879. height:53px;
  10880. }
  10881. #u37079 {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:1252px;
  10885. top:869px;
  10886. width:50px;
  10887. height:53px;
  10888. display:flex;
  10889. }
  10890. #u37079 .text {
  10891. position:absolute;
  10892. align-self:center;
  10893. padding:2px 2px 2px 2px;
  10894. box-sizing:border-box;
  10895. width:100%;
  10896. }
  10897. #u37079_text {
  10898. border-width:0px;
  10899. word-wrap:break-word;
  10900. text-transform:none;
  10901. visibility:hidden;
  10902. }
  10903. #u37080 {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:0px;
  10907. top:0px;
  10908. width:0px;
  10909. height:0px;
  10910. }
  10911. #u37081_div {
  10912. border-width:0px;
  10913. position:absolute;
  10914. left:0px;
  10915. top:0px;
  10916. width:73px;
  10917. height:25px;
  10918. background:inherit;
  10919. background-color:rgba(255, 255, 255, 0);
  10920. border:none;
  10921. border-left:0px;
  10922. border-top:0px;
  10923. border-right:0px;
  10924. border-radius:0px;
  10925. border-bottom-right-radius:0px;
  10926. border-bottom-left-radius:0px;
  10927. -moz-box-shadow:none;
  10928. -webkit-box-shadow:none;
  10929. box-shadow:none;
  10930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10931. font-weight:400;
  10932. font-style:normal;
  10933. font-size:18px;
  10934. }
  10935. #u37081 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:1317px;
  10939. top:872px;
  10940. width:73px;
  10941. height:25px;
  10942. display:flex;
  10943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10944. font-weight:400;
  10945. font-style:normal;
  10946. font-size:18px;
  10947. }
  10948. #u37081 .text {
  10949. position:absolute;
  10950. align-self:center;
  10951. padding:0px 0px 0px 0px;
  10952. box-sizing:border-box;
  10953. width:100%;
  10954. }
  10955. #u37081_text {
  10956. border-width:0px;
  10957. white-space:nowrap;
  10958. text-transform:none;
  10959. }
  10960. #u37082_div {
  10961. border-width:0px;
  10962. position:absolute;
  10963. left:0px;
  10964. top:0px;
  10965. width:85px;
  10966. height:17px;
  10967. background:inherit;
  10968. background-color:rgba(255, 255, 255, 0);
  10969. border:none;
  10970. border-left:0px;
  10971. border-top:0px;
  10972. border-right:0px;
  10973. border-radius:0px;
  10974. border-bottom-right-radius:0px;
  10975. border-bottom-left-radius:0px;
  10976. -moz-box-shadow:none;
  10977. -webkit-box-shadow:none;
  10978. box-shadow:none;
  10979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10980. font-weight:400;
  10981. font-style:normal;
  10982. font-size:12px;
  10983. color:#7F7F7F;
  10984. }
  10985. #u37082 {
  10986. border-width:0px;
  10987. position:absolute;
  10988. left:1317px;
  10989. top:902px;
  10990. width:85px;
  10991. height:17px;
  10992. display:flex;
  10993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10994. font-weight:400;
  10995. font-style:normal;
  10996. font-size:12px;
  10997. color:#7F7F7F;
  10998. }
  10999. #u37082 .text {
  11000. position:absolute;
  11001. align-self:center;
  11002. padding:0px 0px 0px 0px;
  11003. box-sizing:border-box;
  11004. width:100%;
  11005. }
  11006. #u37082_text {
  11007. border-width:0px;
  11008. white-space:nowrap;
  11009. text-transform:none;
  11010. }
  11011. #u37083 {
  11012. border-width:0px;
  11013. position:absolute;
  11014. left:0px;
  11015. top:0px;
  11016. width:0px;
  11017. height:0px;
  11018. }
  11019. #u37084_div {
  11020. border-width:0px;
  11021. position:absolute;
  11022. left:0px;
  11023. top:0px;
  11024. width:240px;
  11025. height:80px;
  11026. background:inherit;
  11027. background-color:rgba(242, 242, 242, 1);
  11028. border:none;
  11029. border-radius:0px;
  11030. -moz-box-shadow:none;
  11031. -webkit-box-shadow:none;
  11032. box-shadow:none;
  11033. }
  11034. #u37084 {
  11035. border-width:0px;
  11036. position:absolute;
  11037. left:154px;
  11038. top:1061px;
  11039. width:240px;
  11040. height:80px;
  11041. display:flex;
  11042. }
  11043. #u37084 .text {
  11044. position:absolute;
  11045. align-self:center;
  11046. padding:2px 2px 2px 2px;
  11047. box-sizing:border-box;
  11048. width:100%;
  11049. }
  11050. #u37084_text {
  11051. border-width:0px;
  11052. word-wrap:break-word;
  11053. text-transform:none;
  11054. visibility:hidden;
  11055. }
  11056. #u37085_img {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:0px;
  11060. top:0px;
  11061. width:50px;
  11062. height:53px;
  11063. }
  11064. #u37085 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:170px;
  11068. top:1074px;
  11069. width:50px;
  11070. height:53px;
  11071. display:flex;
  11072. }
  11073. #u37085 .text {
  11074. position:absolute;
  11075. align-self:center;
  11076. padding:2px 2px 2px 2px;
  11077. box-sizing:border-box;
  11078. width:100%;
  11079. }
  11080. #u37085_text {
  11081. border-width:0px;
  11082. word-wrap:break-word;
  11083. text-transform:none;
  11084. visibility:hidden;
  11085. }
  11086. #u37086 {
  11087. border-width:0px;
  11088. position:absolute;
  11089. left:0px;
  11090. top:0px;
  11091. width:0px;
  11092. height:0px;
  11093. }
  11094. #u37087_div {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:0px;
  11098. top:0px;
  11099. width:73px;
  11100. height:25px;
  11101. background:inherit;
  11102. background-color:rgba(255, 255, 255, 0);
  11103. border:none;
  11104. border-left:0px;
  11105. border-top:0px;
  11106. border-right:0px;
  11107. border-radius:0px;
  11108. border-bottom-right-radius:0px;
  11109. border-bottom-left-radius:0px;
  11110. -moz-box-shadow:none;
  11111. -webkit-box-shadow:none;
  11112. box-shadow:none;
  11113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11114. font-weight:400;
  11115. font-style:normal;
  11116. font-size:18px;
  11117. }
  11118. #u37087 {
  11119. border-width:0px;
  11120. position:absolute;
  11121. left:235px;
  11122. top:1077px;
  11123. width:73px;
  11124. height:25px;
  11125. display:flex;
  11126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11127. font-weight:400;
  11128. font-style:normal;
  11129. font-size:18px;
  11130. }
  11131. #u37087 .text {
  11132. position:absolute;
  11133. align-self:center;
  11134. padding:0px 0px 0px 0px;
  11135. box-sizing:border-box;
  11136. width:100%;
  11137. }
  11138. #u37087_text {
  11139. border-width:0px;
  11140. white-space:nowrap;
  11141. text-transform:none;
  11142. }
  11143. #u37088_div {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:0px;
  11147. top:0px;
  11148. width:133px;
  11149. height:17px;
  11150. background:inherit;
  11151. background-color:rgba(255, 255, 255, 0);
  11152. border:none;
  11153. border-left:0px;
  11154. border-top:0px;
  11155. border-right:0px;
  11156. border-radius:0px;
  11157. border-bottom-right-radius:0px;
  11158. border-bottom-left-radius:0px;
  11159. -moz-box-shadow:none;
  11160. -webkit-box-shadow:none;
  11161. box-shadow:none;
  11162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11163. font-weight:400;
  11164. font-style:normal;
  11165. font-size:12px;
  11166. color:#7F7F7F;
  11167. }
  11168. #u37088 {
  11169. border-width:0px;
  11170. position:absolute;
  11171. left:235px;
  11172. top:1107px;
  11173. width:133px;
  11174. height:17px;
  11175. display:flex;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:12px;
  11180. color:#7F7F7F;
  11181. }
  11182. #u37088 .text {
  11183. position:absolute;
  11184. align-self:center;
  11185. padding:0px 0px 0px 0px;
  11186. box-sizing:border-box;
  11187. width:100%;
  11188. }
  11189. #u37088_text {
  11190. border-width:0px;
  11191. white-space:nowrap;
  11192. text-transform:none;
  11193. }
  11194. #u37089 {
  11195. border-width:0px;
  11196. position:absolute;
  11197. left:0px;
  11198. top:0px;
  11199. width:0px;
  11200. height:0px;
  11201. }
  11202. #u37090_div {
  11203. border-width:0px;
  11204. position:absolute;
  11205. left:0px;
  11206. top:0px;
  11207. width:240px;
  11208. height:80px;
  11209. background:inherit;
  11210. background-color:rgba(242, 242, 242, 1);
  11211. border:none;
  11212. border-radius:0px;
  11213. -moz-box-shadow:none;
  11214. -webkit-box-shadow:none;
  11215. box-shadow:none;
  11216. }
  11217. #u37090 {
  11218. border-width:0px;
  11219. position:absolute;
  11220. left:425px;
  11221. top:556px;
  11222. width:240px;
  11223. height:80px;
  11224. display:flex;
  11225. }
  11226. #u37090 .text {
  11227. position:absolute;
  11228. align-self:center;
  11229. padding:2px 2px 2px 2px;
  11230. box-sizing:border-box;
  11231. width:100%;
  11232. }
  11233. #u37090_text {
  11234. border-width:0px;
  11235. word-wrap:break-word;
  11236. text-transform:none;
  11237. visibility:hidden;
  11238. }
  11239. #u37091_img {
  11240. border-width:0px;
  11241. position:absolute;
  11242. left:0px;
  11243. top:0px;
  11244. width:50px;
  11245. height:53px;
  11246. }
  11247. #u37091 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:441px;
  11251. top:569px;
  11252. width:50px;
  11253. height:53px;
  11254. display:flex;
  11255. }
  11256. #u37091 .text {
  11257. position:absolute;
  11258. align-self:center;
  11259. padding:2px 2px 2px 2px;
  11260. box-sizing:border-box;
  11261. width:100%;
  11262. }
  11263. #u37091_text {
  11264. border-width:0px;
  11265. word-wrap:break-word;
  11266. text-transform:none;
  11267. visibility:hidden;
  11268. }
  11269. #u37092 {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:0px;
  11273. top:0px;
  11274. width:0px;
  11275. height:0px;
  11276. }
  11277. #u37093_div {
  11278. border-width:0px;
  11279. position:absolute;
  11280. left:0px;
  11281. top:0px;
  11282. width:73px;
  11283. height:25px;
  11284. background:inherit;
  11285. background-color:rgba(255, 255, 255, 0);
  11286. border:none;
  11287. border-left:0px;
  11288. border-top:0px;
  11289. border-right:0px;
  11290. border-radius:0px;
  11291. border-bottom-right-radius:0px;
  11292. border-bottom-left-radius:0px;
  11293. -moz-box-shadow:none;
  11294. -webkit-box-shadow:none;
  11295. box-shadow:none;
  11296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11297. font-weight:400;
  11298. font-style:normal;
  11299. font-size:18px;
  11300. }
  11301. #u37093 {
  11302. border-width:0px;
  11303. position:absolute;
  11304. left:506px;
  11305. top:572px;
  11306. width:73px;
  11307. height:25px;
  11308. display:flex;
  11309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11310. font-weight:400;
  11311. font-style:normal;
  11312. font-size:18px;
  11313. }
  11314. #u37093 .text {
  11315. position:absolute;
  11316. align-self:center;
  11317. padding:0px 0px 0px 0px;
  11318. box-sizing:border-box;
  11319. width:100%;
  11320. }
  11321. #u37093_text {
  11322. border-width:0px;
  11323. white-space:nowrap;
  11324. text-transform:none;
  11325. }
  11326. #u37094_div {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:0px;
  11330. top:0px;
  11331. width:13px;
  11332. height:17px;
  11333. background:inherit;
  11334. background-color:rgba(255, 255, 255, 0);
  11335. border:none;
  11336. border-left:0px;
  11337. border-top:0px;
  11338. border-right:0px;
  11339. border-radius:0px;
  11340. border-bottom-right-radius:0px;
  11341. border-bottom-left-radius:0px;
  11342. -moz-box-shadow:none;
  11343. -webkit-box-shadow:none;
  11344. box-shadow:none;
  11345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11346. font-weight:400;
  11347. font-style:normal;
  11348. font-size:12px;
  11349. color:#7F7F7F;
  11350. }
  11351. #u37094 {
  11352. border-width:0px;
  11353. position:absolute;
  11354. left:506px;
  11355. top:602px;
  11356. width:13px;
  11357. height:17px;
  11358. display:flex;
  11359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11360. font-weight:400;
  11361. font-style:normal;
  11362. font-size:12px;
  11363. color:#7F7F7F;
  11364. }
  11365. #u37094 .text {
  11366. position:absolute;
  11367. align-self:center;
  11368. padding:0px 0px 0px 0px;
  11369. box-sizing:border-box;
  11370. width:100%;
  11371. }
  11372. #u37094_text {
  11373. border-width:0px;
  11374. white-space:nowrap;
  11375. text-transform:none;
  11376. }
  11377. #u37095 {
  11378. border-width:0px;
  11379. position:absolute;
  11380. left:0px;
  11381. top:0px;
  11382. width:0px;
  11383. height:0px;
  11384. }
  11385. #u37096_div {
  11386. border-width:0px;
  11387. position:absolute;
  11388. left:0px;
  11389. top:0px;
  11390. width:240px;
  11391. height:80px;
  11392. background:inherit;
  11393. background-color:rgba(242, 242, 242, 1);
  11394. border:none;
  11395. border-radius:0px;
  11396. -moz-box-shadow:none;
  11397. -webkit-box-shadow:none;
  11398. box-shadow:none;
  11399. }
  11400. #u37096 {
  11401. border-width:0px;
  11402. position:absolute;
  11403. left:695px;
  11404. top:556px;
  11405. width:240px;
  11406. height:80px;
  11407. display:flex;
  11408. }
  11409. #u37096 .text {
  11410. position:absolute;
  11411. align-self:center;
  11412. padding:2px 2px 2px 2px;
  11413. box-sizing:border-box;
  11414. width:100%;
  11415. }
  11416. #u37096_text {
  11417. border-width:0px;
  11418. word-wrap:break-word;
  11419. text-transform:none;
  11420. visibility:hidden;
  11421. }
  11422. #u37097_img {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:0px;
  11426. top:0px;
  11427. width:50px;
  11428. height:53px;
  11429. }
  11430. #u37097 {
  11431. border-width:0px;
  11432. position:absolute;
  11433. left:711px;
  11434. top:569px;
  11435. width:50px;
  11436. height:53px;
  11437. display:flex;
  11438. }
  11439. #u37097 .text {
  11440. position:absolute;
  11441. align-self:center;
  11442. padding:2px 2px 2px 2px;
  11443. box-sizing:border-box;
  11444. width:100%;
  11445. }
  11446. #u37097_text {
  11447. border-width:0px;
  11448. word-wrap:break-word;
  11449. text-transform:none;
  11450. visibility:hidden;
  11451. }
  11452. #u37098 {
  11453. border-width:0px;
  11454. position:absolute;
  11455. left:0px;
  11456. top:0px;
  11457. width:0px;
  11458. height:0px;
  11459. }
  11460. #u37099_div {
  11461. border-width:0px;
  11462. position:absolute;
  11463. left:0px;
  11464. top:0px;
  11465. width:73px;
  11466. height:25px;
  11467. background:inherit;
  11468. background-color:rgba(255, 255, 255, 0);
  11469. border:none;
  11470. border-left:0px;
  11471. border-top:0px;
  11472. border-right:0px;
  11473. border-radius:0px;
  11474. border-bottom-right-radius:0px;
  11475. border-bottom-left-radius:0px;
  11476. -moz-box-shadow:none;
  11477. -webkit-box-shadow:none;
  11478. box-shadow:none;
  11479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11480. font-weight:400;
  11481. font-style:normal;
  11482. font-size:18px;
  11483. }
  11484. #u37099 {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:776px;
  11488. top:572px;
  11489. width:73px;
  11490. height:25px;
  11491. display:flex;
  11492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11493. font-weight:400;
  11494. font-style:normal;
  11495. font-size:18px;
  11496. }
  11497. #u37099 .text {
  11498. position:absolute;
  11499. align-self:center;
  11500. padding:0px 0px 0px 0px;
  11501. box-sizing:border-box;
  11502. width:100%;
  11503. }
  11504. #u37099_text {
  11505. border-width:0px;
  11506. white-space:nowrap;
  11507. text-transform:none;
  11508. }
  11509. #u37100_div {
  11510. border-width:0px;
  11511. position:absolute;
  11512. left:0px;
  11513. top:0px;
  11514. width:13px;
  11515. height:17px;
  11516. background:inherit;
  11517. background-color:rgba(255, 255, 255, 0);
  11518. border:none;
  11519. border-left:0px;
  11520. border-top:0px;
  11521. border-right:0px;
  11522. border-radius:0px;
  11523. border-bottom-right-radius:0px;
  11524. border-bottom-left-radius:0px;
  11525. -moz-box-shadow:none;
  11526. -webkit-box-shadow:none;
  11527. box-shadow:none;
  11528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11529. font-weight:400;
  11530. font-style:normal;
  11531. font-size:12px;
  11532. color:#7F7F7F;
  11533. }
  11534. #u37100 {
  11535. border-width:0px;
  11536. position:absolute;
  11537. left:776px;
  11538. top:602px;
  11539. width:13px;
  11540. height:17px;
  11541. display:flex;
  11542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11543. font-weight:400;
  11544. font-style:normal;
  11545. font-size:12px;
  11546. color:#7F7F7F;
  11547. }
  11548. #u37100 .text {
  11549. position:absolute;
  11550. align-self:center;
  11551. padding:0px 0px 0px 0px;
  11552. box-sizing:border-box;
  11553. width:100%;
  11554. }
  11555. #u37100_text {
  11556. border-width:0px;
  11557. white-space:nowrap;
  11558. text-transform:none;
  11559. }
  11560. #u37101 {
  11561. border-width:0px;
  11562. position:absolute;
  11563. left:0px;
  11564. top:0px;
  11565. width:0px;
  11566. height:0px;
  11567. }
  11568. #u37102_div {
  11569. border-width:0px;
  11570. position:absolute;
  11571. left:0px;
  11572. top:0px;
  11573. width:240px;
  11574. height:80px;
  11575. background:inherit;
  11576. background-color:rgba(242, 242, 242, 1);
  11577. border:none;
  11578. border-radius:0px;
  11579. -moz-box-shadow:none;
  11580. -webkit-box-shadow:none;
  11581. box-shadow:none;
  11582. }
  11583. #u37102 {
  11584. border-width:0px;
  11585. position:absolute;
  11586. left:966px;
  11587. top:556px;
  11588. width:240px;
  11589. height:80px;
  11590. display:flex;
  11591. }
  11592. #u37102 .text {
  11593. position:absolute;
  11594. align-self:center;
  11595. padding:2px 2px 2px 2px;
  11596. box-sizing:border-box;
  11597. width:100%;
  11598. }
  11599. #u37102_text {
  11600. border-width:0px;
  11601. word-wrap:break-word;
  11602. text-transform:none;
  11603. visibility:hidden;
  11604. }
  11605. #u37103_img {
  11606. border-width:0px;
  11607. position:absolute;
  11608. left:0px;
  11609. top:0px;
  11610. width:50px;
  11611. height:53px;
  11612. }
  11613. #u37103 {
  11614. border-width:0px;
  11615. position:absolute;
  11616. left:982px;
  11617. top:569px;
  11618. width:50px;
  11619. height:53px;
  11620. display:flex;
  11621. }
  11622. #u37103 .text {
  11623. position:absolute;
  11624. align-self:center;
  11625. padding:2px 2px 2px 2px;
  11626. box-sizing:border-box;
  11627. width:100%;
  11628. }
  11629. #u37103_text {
  11630. border-width:0px;
  11631. word-wrap:break-word;
  11632. text-transform:none;
  11633. visibility:hidden;
  11634. }
  11635. #u37104 {
  11636. border-width:0px;
  11637. position:absolute;
  11638. left:0px;
  11639. top:0px;
  11640. width:0px;
  11641. height:0px;
  11642. }
  11643. #u37105_div {
  11644. border-width:0px;
  11645. position:absolute;
  11646. left:0px;
  11647. top:0px;
  11648. width:73px;
  11649. height:25px;
  11650. background:inherit;
  11651. background-color:rgba(255, 255, 255, 0);
  11652. border:none;
  11653. border-left:0px;
  11654. border-top:0px;
  11655. border-right:0px;
  11656. border-radius:0px;
  11657. border-bottom-right-radius:0px;
  11658. border-bottom-left-radius:0px;
  11659. -moz-box-shadow:none;
  11660. -webkit-box-shadow:none;
  11661. box-shadow:none;
  11662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11663. font-weight:400;
  11664. font-style:normal;
  11665. font-size:18px;
  11666. }
  11667. #u37105 {
  11668. border-width:0px;
  11669. position:absolute;
  11670. left:1047px;
  11671. top:572px;
  11672. width:73px;
  11673. height:25px;
  11674. display:flex;
  11675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11676. font-weight:400;
  11677. font-style:normal;
  11678. font-size:18px;
  11679. }
  11680. #u37105 .text {
  11681. position:absolute;
  11682. align-self:center;
  11683. padding:0px 0px 0px 0px;
  11684. box-sizing:border-box;
  11685. width:100%;
  11686. }
  11687. #u37105_text {
  11688. border-width:0px;
  11689. white-space:nowrap;
  11690. text-transform:none;
  11691. }
  11692. #u37106_div {
  11693. border-width:0px;
  11694. position:absolute;
  11695. left:0px;
  11696. top:0px;
  11697. width:13px;
  11698. height:17px;
  11699. background:inherit;
  11700. background-color:rgba(255, 255, 255, 0);
  11701. border:none;
  11702. border-left:0px;
  11703. border-top:0px;
  11704. border-right:0px;
  11705. border-radius:0px;
  11706. border-bottom-right-radius:0px;
  11707. border-bottom-left-radius:0px;
  11708. -moz-box-shadow:none;
  11709. -webkit-box-shadow:none;
  11710. box-shadow:none;
  11711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11712. font-weight:400;
  11713. font-style:normal;
  11714. font-size:12px;
  11715. color:#7F7F7F;
  11716. }
  11717. #u37106 {
  11718. border-width:0px;
  11719. position:absolute;
  11720. left:1047px;
  11721. top:602px;
  11722. width:13px;
  11723. height:17px;
  11724. display:flex;
  11725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11726. font-weight:400;
  11727. font-style:normal;
  11728. font-size:12px;
  11729. color:#7F7F7F;
  11730. }
  11731. #u37106 .text {
  11732. position:absolute;
  11733. align-self:center;
  11734. padding:0px 0px 0px 0px;
  11735. box-sizing:border-box;
  11736. width:100%;
  11737. }
  11738. #u37106_text {
  11739. border-width:0px;
  11740. white-space:nowrap;
  11741. text-transform:none;
  11742. }
  11743. #u37107 {
  11744. border-width:0px;
  11745. position:absolute;
  11746. left:0px;
  11747. top:0px;
  11748. width:0px;
  11749. height:0px;
  11750. }
  11751. #u37108_div {
  11752. border-width:0px;
  11753. position:absolute;
  11754. left:0px;
  11755. top:0px;
  11756. width:240px;
  11757. height:80px;
  11758. background:inherit;
  11759. background-color:rgba(242, 242, 242, 1);
  11760. border:none;
  11761. border-radius:0px;
  11762. -moz-box-shadow:none;
  11763. -webkit-box-shadow:none;
  11764. box-shadow:none;
  11765. }
  11766. #u37108 {
  11767. border-width:0px;
  11768. position:absolute;
  11769. left:1236px;
  11770. top:556px;
  11771. width:240px;
  11772. height:80px;
  11773. display:flex;
  11774. }
  11775. #u37108 .text {
  11776. position:absolute;
  11777. align-self:center;
  11778. padding:2px 2px 2px 2px;
  11779. box-sizing:border-box;
  11780. width:100%;
  11781. }
  11782. #u37108_text {
  11783. border-width:0px;
  11784. word-wrap:break-word;
  11785. text-transform:none;
  11786. visibility:hidden;
  11787. }
  11788. #u37109_img {
  11789. border-width:0px;
  11790. position:absolute;
  11791. left:0px;
  11792. top:0px;
  11793. width:50px;
  11794. height:53px;
  11795. }
  11796. #u37109 {
  11797. border-width:0px;
  11798. position:absolute;
  11799. left:1252px;
  11800. top:569px;
  11801. width:50px;
  11802. height:53px;
  11803. display:flex;
  11804. }
  11805. #u37109 .text {
  11806. position:absolute;
  11807. align-self:center;
  11808. padding:2px 2px 2px 2px;
  11809. box-sizing:border-box;
  11810. width:100%;
  11811. }
  11812. #u37109_text {
  11813. border-width:0px;
  11814. word-wrap:break-word;
  11815. text-transform:none;
  11816. visibility:hidden;
  11817. }
  11818. #u37110 {
  11819. border-width:0px;
  11820. position:absolute;
  11821. left:0px;
  11822. top:0px;
  11823. width:0px;
  11824. height:0px;
  11825. }
  11826. #u37111_div {
  11827. border-width:0px;
  11828. position:absolute;
  11829. left:0px;
  11830. top:0px;
  11831. width:73px;
  11832. height:25px;
  11833. background:inherit;
  11834. background-color:rgba(255, 255, 255, 0);
  11835. border:none;
  11836. border-left:0px;
  11837. border-top:0px;
  11838. border-right:0px;
  11839. border-radius:0px;
  11840. border-bottom-right-radius:0px;
  11841. border-bottom-left-radius:0px;
  11842. -moz-box-shadow:none;
  11843. -webkit-box-shadow:none;
  11844. box-shadow:none;
  11845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11846. font-weight:400;
  11847. font-style:normal;
  11848. font-size:18px;
  11849. }
  11850. #u37111 {
  11851. border-width:0px;
  11852. position:absolute;
  11853. left:1317px;
  11854. top:572px;
  11855. width:73px;
  11856. height:25px;
  11857. display:flex;
  11858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11859. font-weight:400;
  11860. font-style:normal;
  11861. font-size:18px;
  11862. }
  11863. #u37111 .text {
  11864. position:absolute;
  11865. align-self:center;
  11866. padding:0px 0px 0px 0px;
  11867. box-sizing:border-box;
  11868. width:100%;
  11869. }
  11870. #u37111_text {
  11871. border-width:0px;
  11872. white-space:nowrap;
  11873. text-transform:none;
  11874. }
  11875. #u37112_div {
  11876. border-width:0px;
  11877. position:absolute;
  11878. left:0px;
  11879. top:0px;
  11880. width:13px;
  11881. height:17px;
  11882. background:inherit;
  11883. background-color:rgba(255, 255, 255, 0);
  11884. border:none;
  11885. border-left:0px;
  11886. border-top:0px;
  11887. border-right:0px;
  11888. border-radius:0px;
  11889. border-bottom-right-radius:0px;
  11890. border-bottom-left-radius:0px;
  11891. -moz-box-shadow:none;
  11892. -webkit-box-shadow:none;
  11893. box-shadow:none;
  11894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11895. font-weight:400;
  11896. font-style:normal;
  11897. font-size:12px;
  11898. color:#7F7F7F;
  11899. }
  11900. #u37112 {
  11901. border-width:0px;
  11902. position:absolute;
  11903. left:1317px;
  11904. top:602px;
  11905. width:13px;
  11906. height:17px;
  11907. display:flex;
  11908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11909. font-weight:400;
  11910. font-style:normal;
  11911. font-size:12px;
  11912. color:#7F7F7F;
  11913. }
  11914. #u37112 .text {
  11915. position:absolute;
  11916. align-self:center;
  11917. padding:0px 0px 0px 0px;
  11918. box-sizing:border-box;
  11919. width:100%;
  11920. }
  11921. #u37112_text {
  11922. border-width:0px;
  11923. white-space:nowrap;
  11924. text-transform:none;
  11925. }
  11926. #u37113 {
  11927. border-width:0px;
  11928. position:absolute;
  11929. left:0px;
  11930. top:0px;
  11931. width:0px;
  11932. height:0px;
  11933. }
  11934. #u37114_div {
  11935. border-width:0px;
  11936. position:absolute;
  11937. left:0px;
  11938. top:0px;
  11939. width:240px;
  11940. height:80px;
  11941. background:inherit;
  11942. background-color:rgba(242, 242, 242, 1);
  11943. border:none;
  11944. border-radius:0px;
  11945. -moz-box-shadow:none;
  11946. -webkit-box-shadow:none;
  11947. box-shadow:none;
  11948. }
  11949. #u37114 {
  11950. border-width:0px;
  11951. position:absolute;
  11952. left:696px;
  11953. top:961px;
  11954. width:240px;
  11955. height:80px;
  11956. display:flex;
  11957. }
  11958. #u37114 .text {
  11959. position:absolute;
  11960. align-self:center;
  11961. padding:2px 2px 2px 2px;
  11962. box-sizing:border-box;
  11963. width:100%;
  11964. }
  11965. #u37114_text {
  11966. border-width:0px;
  11967. word-wrap:break-word;
  11968. text-transform:none;
  11969. visibility:hidden;
  11970. }
  11971. #u37115_img {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:0px;
  11975. top:0px;
  11976. width:50px;
  11977. height:53px;
  11978. }
  11979. #u37115 {
  11980. border-width:0px;
  11981. position:absolute;
  11982. left:712px;
  11983. top:974px;
  11984. width:50px;
  11985. height:53px;
  11986. display:flex;
  11987. }
  11988. #u37115 .text {
  11989. position:absolute;
  11990. align-self:center;
  11991. padding:2px 2px 2px 2px;
  11992. box-sizing:border-box;
  11993. width:100%;
  11994. }
  11995. #u37115_text {
  11996. border-width:0px;
  11997. word-wrap:break-word;
  11998. text-transform:none;
  11999. visibility:hidden;
  12000. }
  12001. #u37116 {
  12002. border-width:0px;
  12003. position:absolute;
  12004. left:0px;
  12005. top:0px;
  12006. width:0px;
  12007. height:0px;
  12008. }
  12009. #u37117_div {
  12010. border-width:0px;
  12011. position:absolute;
  12012. left:0px;
  12013. top:0px;
  12014. width:73px;
  12015. height:25px;
  12016. background:inherit;
  12017. background-color:rgba(255, 255, 255, 0);
  12018. border:none;
  12019. border-left:0px;
  12020. border-top:0px;
  12021. border-right:0px;
  12022. border-radius:0px;
  12023. border-bottom-right-radius:0px;
  12024. border-bottom-left-radius:0px;
  12025. -moz-box-shadow:none;
  12026. -webkit-box-shadow:none;
  12027. box-shadow:none;
  12028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12029. font-weight:400;
  12030. font-style:normal;
  12031. font-size:18px;
  12032. }
  12033. #u37117 {
  12034. border-width:0px;
  12035. position:absolute;
  12036. left:777px;
  12037. top:977px;
  12038. width:73px;
  12039. height:25px;
  12040. display:flex;
  12041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12042. font-weight:400;
  12043. font-style:normal;
  12044. font-size:18px;
  12045. }
  12046. #u37117 .text {
  12047. position:absolute;
  12048. align-self:center;
  12049. padding:0px 0px 0px 0px;
  12050. box-sizing:border-box;
  12051. width:100%;
  12052. }
  12053. #u37117_text {
  12054. border-width:0px;
  12055. white-space:nowrap;
  12056. text-transform:none;
  12057. }
  12058. #u37118_div {
  12059. border-width:0px;
  12060. position:absolute;
  12061. left:0px;
  12062. top:0px;
  12063. width:13px;
  12064. height:17px;
  12065. background:inherit;
  12066. background-color:rgba(255, 255, 255, 0);
  12067. border:none;
  12068. border-left:0px;
  12069. border-top:0px;
  12070. border-right:0px;
  12071. border-radius:0px;
  12072. border-bottom-right-radius:0px;
  12073. border-bottom-left-radius:0px;
  12074. -moz-box-shadow:none;
  12075. -webkit-box-shadow:none;
  12076. box-shadow:none;
  12077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12078. font-weight:400;
  12079. font-style:normal;
  12080. font-size:12px;
  12081. color:#7F7F7F;
  12082. }
  12083. #u37118 {
  12084. border-width:0px;
  12085. position:absolute;
  12086. left:777px;
  12087. top:1007px;
  12088. width:13px;
  12089. height:17px;
  12090. display:flex;
  12091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12092. font-weight:400;
  12093. font-style:normal;
  12094. font-size:12px;
  12095. color:#7F7F7F;
  12096. }
  12097. #u37118 .text {
  12098. position:absolute;
  12099. align-self:center;
  12100. padding:0px 0px 0px 0px;
  12101. box-sizing:border-box;
  12102. width:100%;
  12103. }
  12104. #u37118_text {
  12105. border-width:0px;
  12106. white-space:nowrap;
  12107. text-transform:none;
  12108. }
  12109. #u37119 {
  12110. border-width:0px;
  12111. position:absolute;
  12112. left:0px;
  12113. top:0px;
  12114. width:0px;
  12115. height:0px;
  12116. }
  12117. #u37120_div {
  12118. border-width:0px;
  12119. position:absolute;
  12120. left:0px;
  12121. top:0px;
  12122. width:240px;
  12123. height:80px;
  12124. background:inherit;
  12125. background-color:rgba(242, 242, 242, 1);
  12126. border:none;
  12127. border-radius:0px;
  12128. -moz-box-shadow:none;
  12129. -webkit-box-shadow:none;
  12130. box-shadow:none;
  12131. }
  12132. #u37120 {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:154px;
  12136. top:961px;
  12137. width:240px;
  12138. height:80px;
  12139. display:flex;
  12140. }
  12141. #u37120 .text {
  12142. position:absolute;
  12143. align-self:center;
  12144. padding:2px 2px 2px 2px;
  12145. box-sizing:border-box;
  12146. width:100%;
  12147. }
  12148. #u37120_text {
  12149. border-width:0px;
  12150. word-wrap:break-word;
  12151. text-transform:none;
  12152. visibility:hidden;
  12153. }
  12154. #u37121_img {
  12155. border-width:0px;
  12156. position:absolute;
  12157. left:0px;
  12158. top:0px;
  12159. width:50px;
  12160. height:53px;
  12161. }
  12162. #u37121 {
  12163. border-width:0px;
  12164. position:absolute;
  12165. left:170px;
  12166. top:974px;
  12167. width:50px;
  12168. height:53px;
  12169. display:flex;
  12170. }
  12171. #u37121 .text {
  12172. position:absolute;
  12173. align-self:center;
  12174. padding:2px 2px 2px 2px;
  12175. box-sizing:border-box;
  12176. width:100%;
  12177. }
  12178. #u37121_text {
  12179. border-width:0px;
  12180. word-wrap:break-word;
  12181. text-transform:none;
  12182. visibility:hidden;
  12183. }
  12184. #u37122 {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:0px;
  12190. height:0px;
  12191. }
  12192. #u37123_div {
  12193. border-width:0px;
  12194. position:absolute;
  12195. left:0px;
  12196. top:0px;
  12197. width:73px;
  12198. height:25px;
  12199. background:inherit;
  12200. background-color:rgba(255, 255, 255, 0);
  12201. border:none;
  12202. border-left:0px;
  12203. border-top:0px;
  12204. border-right:0px;
  12205. border-radius:0px;
  12206. border-bottom-right-radius:0px;
  12207. border-bottom-left-radius:0px;
  12208. -moz-box-shadow:none;
  12209. -webkit-box-shadow:none;
  12210. box-shadow:none;
  12211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12212. font-weight:400;
  12213. font-style:normal;
  12214. font-size:18px;
  12215. }
  12216. #u37123 {
  12217. border-width:0px;
  12218. position:absolute;
  12219. left:235px;
  12220. top:977px;
  12221. width:73px;
  12222. height:25px;
  12223. display:flex;
  12224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12225. font-weight:400;
  12226. font-style:normal;
  12227. font-size:18px;
  12228. }
  12229. #u37123 .text {
  12230. position:absolute;
  12231. align-self:center;
  12232. padding:0px 0px 0px 0px;
  12233. box-sizing:border-box;
  12234. width:100%;
  12235. }
  12236. #u37123_text {
  12237. border-width:0px;
  12238. white-space:nowrap;
  12239. text-transform:none;
  12240. }
  12241. #u37124_div {
  12242. border-width:0px;
  12243. position:absolute;
  12244. left:0px;
  12245. top:0px;
  12246. width:13px;
  12247. height:17px;
  12248. background:inherit;
  12249. background-color:rgba(255, 255, 255, 0);
  12250. border:none;
  12251. border-left:0px;
  12252. border-top:0px;
  12253. border-right:0px;
  12254. border-radius:0px;
  12255. border-bottom-right-radius:0px;
  12256. border-bottom-left-radius:0px;
  12257. -moz-box-shadow:none;
  12258. -webkit-box-shadow:none;
  12259. box-shadow:none;
  12260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12261. font-weight:400;
  12262. font-style:normal;
  12263. font-size:12px;
  12264. color:#7F7F7F;
  12265. }
  12266. #u37124 {
  12267. border-width:0px;
  12268. position:absolute;
  12269. left:235px;
  12270. top:1007px;
  12271. width:13px;
  12272. height:17px;
  12273. display:flex;
  12274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12275. font-weight:400;
  12276. font-style:normal;
  12277. font-size:12px;
  12278. color:#7F7F7F;
  12279. }
  12280. #u37124 .text {
  12281. position:absolute;
  12282. align-self:center;
  12283. padding:0px 0px 0px 0px;
  12284. box-sizing:border-box;
  12285. width:100%;
  12286. }
  12287. #u37124_text {
  12288. border-width:0px;
  12289. white-space:nowrap;
  12290. text-transform:none;
  12291. }
  12292. #u37125 {
  12293. border-width:0px;
  12294. position:absolute;
  12295. left:0px;
  12296. top:0px;
  12297. width:0px;
  12298. height:0px;
  12299. }
  12300. #u37126_div {
  12301. border-width:0px;
  12302. position:absolute;
  12303. left:0px;
  12304. top:0px;
  12305. width:240px;
  12306. height:80px;
  12307. background:inherit;
  12308. background-color:rgba(242, 242, 242, 1);
  12309. border:none;
  12310. border-radius:0px;
  12311. -moz-box-shadow:none;
  12312. -webkit-box-shadow:none;
  12313. box-shadow:none;
  12314. }
  12315. #u37126 {
  12316. border-width:0px;
  12317. position:absolute;
  12318. left:424px;
  12319. top:961px;
  12320. width:240px;
  12321. height:80px;
  12322. display:flex;
  12323. }
  12324. #u37126 .text {
  12325. position:absolute;
  12326. align-self:center;
  12327. padding:2px 2px 2px 2px;
  12328. box-sizing:border-box;
  12329. width:100%;
  12330. }
  12331. #u37126_text {
  12332. border-width:0px;
  12333. word-wrap:break-word;
  12334. text-transform:none;
  12335. visibility:hidden;
  12336. }
  12337. #u37127_img {
  12338. border-width:0px;
  12339. position:absolute;
  12340. left:0px;
  12341. top:0px;
  12342. width:50px;
  12343. height:53px;
  12344. }
  12345. #u37127 {
  12346. border-width:0px;
  12347. position:absolute;
  12348. left:440px;
  12349. top:974px;
  12350. width:50px;
  12351. height:53px;
  12352. display:flex;
  12353. }
  12354. #u37127 .text {
  12355. position:absolute;
  12356. align-self:center;
  12357. padding:2px 2px 2px 2px;
  12358. box-sizing:border-box;
  12359. width:100%;
  12360. }
  12361. #u37127_text {
  12362. border-width:0px;
  12363. word-wrap:break-word;
  12364. text-transform:none;
  12365. visibility:hidden;
  12366. }
  12367. #u37128 {
  12368. border-width:0px;
  12369. position:absolute;
  12370. left:0px;
  12371. top:0px;
  12372. width:0px;
  12373. height:0px;
  12374. }
  12375. #u37129_div {
  12376. border-width:0px;
  12377. position:absolute;
  12378. left:0px;
  12379. top:0px;
  12380. width:73px;
  12381. height:25px;
  12382. background:inherit;
  12383. background-color:rgba(255, 255, 255, 0);
  12384. border:none;
  12385. border-left:0px;
  12386. border-top:0px;
  12387. border-right:0px;
  12388. border-radius:0px;
  12389. border-bottom-right-radius:0px;
  12390. border-bottom-left-radius:0px;
  12391. -moz-box-shadow:none;
  12392. -webkit-box-shadow:none;
  12393. box-shadow:none;
  12394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12395. font-weight:400;
  12396. font-style:normal;
  12397. font-size:18px;
  12398. }
  12399. #u37129 {
  12400. border-width:0px;
  12401. position:absolute;
  12402. left:505px;
  12403. top:977px;
  12404. width:73px;
  12405. height:25px;
  12406. display:flex;
  12407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12408. font-weight:400;
  12409. font-style:normal;
  12410. font-size:18px;
  12411. }
  12412. #u37129 .text {
  12413. position:absolute;
  12414. align-self:center;
  12415. padding:0px 0px 0px 0px;
  12416. box-sizing:border-box;
  12417. width:100%;
  12418. }
  12419. #u37129_text {
  12420. border-width:0px;
  12421. white-space:nowrap;
  12422. text-transform:none;
  12423. }
  12424. #u37130_div {
  12425. border-width:0px;
  12426. position:absolute;
  12427. left:0px;
  12428. top:0px;
  12429. width:13px;
  12430. height:17px;
  12431. background:inherit;
  12432. background-color:rgba(255, 255, 255, 0);
  12433. border:none;
  12434. border-left:0px;
  12435. border-top:0px;
  12436. border-right:0px;
  12437. border-radius:0px;
  12438. border-bottom-right-radius:0px;
  12439. border-bottom-left-radius:0px;
  12440. -moz-box-shadow:none;
  12441. -webkit-box-shadow:none;
  12442. box-shadow:none;
  12443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12444. font-weight:400;
  12445. font-style:normal;
  12446. font-size:12px;
  12447. color:#7F7F7F;
  12448. }
  12449. #u37130 {
  12450. border-width:0px;
  12451. position:absolute;
  12452. left:505px;
  12453. top:1007px;
  12454. width:13px;
  12455. height:17px;
  12456. display:flex;
  12457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12458. font-weight:400;
  12459. font-style:normal;
  12460. font-size:12px;
  12461. color:#7F7F7F;
  12462. }
  12463. #u37130 .text {
  12464. position:absolute;
  12465. align-self:center;
  12466. padding:0px 0px 0px 0px;
  12467. box-sizing:border-box;
  12468. width:100%;
  12469. }
  12470. #u37130_text {
  12471. border-width:0px;
  12472. white-space:nowrap;
  12473. text-transform:none;
  12474. }
  12475. #u37131 {
  12476. border-width:0px;
  12477. position:absolute;
  12478. left:0px;
  12479. top:0px;
  12480. width:0px;
  12481. height:0px;
  12482. }
  12483. #u37132_div {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:0px;
  12487. top:0px;
  12488. width:240px;
  12489. height:80px;
  12490. background:inherit;
  12491. background-color:rgba(242, 242, 242, 1);
  12492. border:none;
  12493. border-radius:0px;
  12494. -moz-box-shadow:none;
  12495. -webkit-box-shadow:none;
  12496. box-shadow:none;
  12497. }
  12498. #u37132 {
  12499. border-width:0px;
  12500. position:absolute;
  12501. left:966px;
  12502. top:961px;
  12503. width:240px;
  12504. height:80px;
  12505. display:flex;
  12506. }
  12507. #u37132 .text {
  12508. position:absolute;
  12509. align-self:center;
  12510. padding:2px 2px 2px 2px;
  12511. box-sizing:border-box;
  12512. width:100%;
  12513. }
  12514. #u37132_text {
  12515. border-width:0px;
  12516. word-wrap:break-word;
  12517. text-transform:none;
  12518. visibility:hidden;
  12519. }
  12520. #u37133_img {
  12521. border-width:0px;
  12522. position:absolute;
  12523. left:0px;
  12524. top:0px;
  12525. width:50px;
  12526. height:53px;
  12527. }
  12528. #u37133 {
  12529. border-width:0px;
  12530. position:absolute;
  12531. left:982px;
  12532. top:974px;
  12533. width:50px;
  12534. height:53px;
  12535. display:flex;
  12536. }
  12537. #u37133 .text {
  12538. position:absolute;
  12539. align-self:center;
  12540. padding:2px 2px 2px 2px;
  12541. box-sizing:border-box;
  12542. width:100%;
  12543. }
  12544. #u37133_text {
  12545. border-width:0px;
  12546. word-wrap:break-word;
  12547. text-transform:none;
  12548. visibility:hidden;
  12549. }
  12550. #u37134 {
  12551. border-width:0px;
  12552. position:absolute;
  12553. left:0px;
  12554. top:0px;
  12555. width:0px;
  12556. height:0px;
  12557. }
  12558. #u37135_div {
  12559. border-width:0px;
  12560. position:absolute;
  12561. left:0px;
  12562. top:0px;
  12563. width:73px;
  12564. height:25px;
  12565. background:inherit;
  12566. background-color:rgba(255, 255, 255, 0);
  12567. border:none;
  12568. border-left:0px;
  12569. border-top:0px;
  12570. border-right:0px;
  12571. border-radius:0px;
  12572. border-bottom-right-radius:0px;
  12573. border-bottom-left-radius:0px;
  12574. -moz-box-shadow:none;
  12575. -webkit-box-shadow:none;
  12576. box-shadow:none;
  12577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12578. font-weight:400;
  12579. font-style:normal;
  12580. font-size:18px;
  12581. }
  12582. #u37135 {
  12583. border-width:0px;
  12584. position:absolute;
  12585. left:1047px;
  12586. top:977px;
  12587. width:73px;
  12588. height:25px;
  12589. display:flex;
  12590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12591. font-weight:400;
  12592. font-style:normal;
  12593. font-size:18px;
  12594. }
  12595. #u37135 .text {
  12596. position:absolute;
  12597. align-self:center;
  12598. padding:0px 0px 0px 0px;
  12599. box-sizing:border-box;
  12600. width:100%;
  12601. }
  12602. #u37135_text {
  12603. border-width:0px;
  12604. white-space:nowrap;
  12605. text-transform:none;
  12606. }
  12607. #u37136_div {
  12608. border-width:0px;
  12609. position:absolute;
  12610. left:0px;
  12611. top:0px;
  12612. width:13px;
  12613. height:17px;
  12614. background:inherit;
  12615. background-color:rgba(255, 255, 255, 0);
  12616. border:none;
  12617. border-left:0px;
  12618. border-top:0px;
  12619. border-right:0px;
  12620. border-radius:0px;
  12621. border-bottom-right-radius:0px;
  12622. border-bottom-left-radius:0px;
  12623. -moz-box-shadow:none;
  12624. -webkit-box-shadow:none;
  12625. box-shadow:none;
  12626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12627. font-weight:400;
  12628. font-style:normal;
  12629. font-size:12px;
  12630. color:#7F7F7F;
  12631. }
  12632. #u37136 {
  12633. border-width:0px;
  12634. position:absolute;
  12635. left:1047px;
  12636. top:1007px;
  12637. width:13px;
  12638. height:17px;
  12639. display:flex;
  12640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12641. font-weight:400;
  12642. font-style:normal;
  12643. font-size:12px;
  12644. color:#7F7F7F;
  12645. }
  12646. #u37136 .text {
  12647. position:absolute;
  12648. align-self:center;
  12649. padding:0px 0px 0px 0px;
  12650. box-sizing:border-box;
  12651. width:100%;
  12652. }
  12653. #u37136_text {
  12654. border-width:0px;
  12655. white-space:nowrap;
  12656. text-transform:none;
  12657. }
  12658. #u37137 {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:0px;
  12662. top:0px;
  12663. width:0px;
  12664. height:0px;
  12665. }
  12666. #u37138_div {
  12667. border-width:0px;
  12668. position:absolute;
  12669. left:0px;
  12670. top:0px;
  12671. width:240px;
  12672. height:80px;
  12673. background:inherit;
  12674. background-color:rgba(242, 242, 242, 1);
  12675. border:none;
  12676. border-radius:0px;
  12677. -moz-box-shadow:none;
  12678. -webkit-box-shadow:none;
  12679. box-shadow:none;
  12680. }
  12681. #u37138 {
  12682. border-width:0px;
  12683. position:absolute;
  12684. left:1236px;
  12685. top:961px;
  12686. width:240px;
  12687. height:80px;
  12688. display:flex;
  12689. }
  12690. #u37138 .text {
  12691. position:absolute;
  12692. align-self:center;
  12693. padding:2px 2px 2px 2px;
  12694. box-sizing:border-box;
  12695. width:100%;
  12696. }
  12697. #u37138_text {
  12698. border-width:0px;
  12699. word-wrap:break-word;
  12700. text-transform:none;
  12701. visibility:hidden;
  12702. }
  12703. #u37139_img {
  12704. border-width:0px;
  12705. position:absolute;
  12706. left:0px;
  12707. top:0px;
  12708. width:50px;
  12709. height:53px;
  12710. }
  12711. #u37139 {
  12712. border-width:0px;
  12713. position:absolute;
  12714. left:1252px;
  12715. top:974px;
  12716. width:50px;
  12717. height:53px;
  12718. display:flex;
  12719. }
  12720. #u37139 .text {
  12721. position:absolute;
  12722. align-self:center;
  12723. padding:2px 2px 2px 2px;
  12724. box-sizing:border-box;
  12725. width:100%;
  12726. }
  12727. #u37139_text {
  12728. border-width:0px;
  12729. word-wrap:break-word;
  12730. text-transform:none;
  12731. visibility:hidden;
  12732. }
  12733. #u37140 {
  12734. border-width:0px;
  12735. position:absolute;
  12736. left:0px;
  12737. top:0px;
  12738. width:0px;
  12739. height:0px;
  12740. }
  12741. #u37141_div {
  12742. border-width:0px;
  12743. position:absolute;
  12744. left:0px;
  12745. top:0px;
  12746. width:73px;
  12747. height:25px;
  12748. background:inherit;
  12749. background-color:rgba(255, 255, 255, 0);
  12750. border:none;
  12751. border-left:0px;
  12752. border-top:0px;
  12753. border-right:0px;
  12754. border-radius:0px;
  12755. border-bottom-right-radius:0px;
  12756. border-bottom-left-radius:0px;
  12757. -moz-box-shadow:none;
  12758. -webkit-box-shadow:none;
  12759. box-shadow:none;
  12760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12761. font-weight:400;
  12762. font-style:normal;
  12763. font-size:18px;
  12764. }
  12765. #u37141 {
  12766. border-width:0px;
  12767. position:absolute;
  12768. left:1317px;
  12769. top:977px;
  12770. width:73px;
  12771. height:25px;
  12772. display:flex;
  12773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12774. font-weight:400;
  12775. font-style:normal;
  12776. font-size:18px;
  12777. }
  12778. #u37141 .text {
  12779. position:absolute;
  12780. align-self:center;
  12781. padding:0px 0px 0px 0px;
  12782. box-sizing:border-box;
  12783. width:100%;
  12784. }
  12785. #u37141_text {
  12786. border-width:0px;
  12787. white-space:nowrap;
  12788. text-transform:none;
  12789. }
  12790. #u37142_div {
  12791. border-width:0px;
  12792. position:absolute;
  12793. left:0px;
  12794. top:0px;
  12795. width:13px;
  12796. height:17px;
  12797. background:inherit;
  12798. background-color:rgba(255, 255, 255, 0);
  12799. border:none;
  12800. border-left:0px;
  12801. border-top:0px;
  12802. border-right:0px;
  12803. border-radius:0px;
  12804. border-bottom-right-radius:0px;
  12805. border-bottom-left-radius:0px;
  12806. -moz-box-shadow:none;
  12807. -webkit-box-shadow:none;
  12808. box-shadow:none;
  12809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12810. font-weight:400;
  12811. font-style:normal;
  12812. font-size:12px;
  12813. color:#7F7F7F;
  12814. }
  12815. #u37142 {
  12816. border-width:0px;
  12817. position:absolute;
  12818. left:1317px;
  12819. top:1007px;
  12820. width:13px;
  12821. height:17px;
  12822. display:flex;
  12823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12824. font-weight:400;
  12825. font-style:normal;
  12826. font-size:12px;
  12827. color:#7F7F7F;
  12828. }
  12829. #u37142 .text {
  12830. position:absolute;
  12831. align-self:center;
  12832. padding:0px 0px 0px 0px;
  12833. box-sizing:border-box;
  12834. width:100%;
  12835. }
  12836. #u37142_text {
  12837. border-width:0px;
  12838. white-space:nowrap;
  12839. text-transform:none;
  12840. }
  12841. #u37143 {
  12842. border-width:0px;
  12843. position:absolute;
  12844. left:0px;
  12845. top:0px;
  12846. width:0px;
  12847. height:0px;
  12848. }
  12849. #u37144_div {
  12850. border-width:0px;
  12851. position:absolute;
  12852. left:0px;
  12853. top:0px;
  12854. width:33px;
  12855. height:22px;
  12856. background:inherit;
  12857. background-color:rgba(255, 255, 255, 0);
  12858. border:none;
  12859. border-radius:0px;
  12860. -moz-box-shadow:none;
  12861. -webkit-box-shadow:none;
  12862. box-shadow:none;
  12863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12864. font-weight:400;
  12865. font-style:normal;
  12866. font-size:16px;
  12867. color:#298FFF;
  12868. }
  12869. #u37144 {
  12870. border-width:0px;
  12871. position:absolute;
  12872. left:39px;
  12873. top:71px;
  12874. width:33px;
  12875. height:22px;
  12876. display:flex;
  12877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12878. font-weight:400;
  12879. font-style:normal;
  12880. font-size:16px;
  12881. color:#298FFF;
  12882. }
  12883. #u37144 .text {
  12884. position:absolute;
  12885. align-self:flex-start;
  12886. padding:0px 0px 0px 0px;
  12887. box-sizing:border-box;
  12888. width:100%;
  12889. }
  12890. #u37144_text {
  12891. border-width:0px;
  12892. white-space:nowrap;
  12893. text-transform:none;
  12894. }
  12895. #u37145_img {
  12896. border-width:0px;
  12897. position:absolute;
  12898. left:0px;
  12899. top:0px;
  12900. width:14px;
  12901. height:14px;
  12902. }
  12903. #u37145 {
  12904. border-width:0px;
  12905. position:absolute;
  12906. left:20px;
  12907. top:75px;
  12908. width:14px;
  12909. height:14px;
  12910. display:flex;
  12911. }
  12912. #u37145 .text {
  12913. position:absolute;
  12914. align-self:center;
  12915. padding:2px 2px 2px 2px;
  12916. box-sizing:border-box;
  12917. width:100%;
  12918. }
  12919. #u37145_text {
  12920. border-width:0px;
  12921. word-wrap:break-word;
  12922. text-transform:none;
  12923. visibility:hidden;
  12924. }
  12925. #u37146_div {
  12926. border-width:0px;
  12927. position:absolute;
  12928. left:0px;
  12929. top:0px;
  12930. width:253px;
  12931. height:25px;
  12932. background:inherit;
  12933. background-color:rgba(255, 255, 255, 0);
  12934. border:none;
  12935. border-radius:0px;
  12936. -moz-box-shadow:none;
  12937. -webkit-box-shadow:none;
  12938. box-shadow:none;
  12939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12940. font-weight:400;
  12941. font-style:normal;
  12942. font-size:18px;
  12943. color:#D9001B;
  12944. }
  12945. #u37146 {
  12946. border-width:0px;
  12947. position:absolute;
  12948. left:317px;
  12949. top:270px;
  12950. width:253px;
  12951. height:25px;
  12952. display:flex;
  12953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12954. font-weight:400;
  12955. font-style:normal;
  12956. font-size:18px;
  12957. color:#D9001B;
  12958. }
  12959. #u37146 .text {
  12960. position:absolute;
  12961. align-self:flex-start;
  12962. padding:0px 0px 0px 0px;
  12963. box-sizing:border-box;
  12964. width:100%;
  12965. }
  12966. #u37146_text {
  12967. border-width:0px;
  12968. white-space:nowrap;
  12969. text-transform:none;
  12970. }