styles.css 143 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1788px;
  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. #u44919 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u44920 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u44920 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u44920_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u44920_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u44921_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u44921 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u44921 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u44921_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u44922 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u44923_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u44923 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u44923 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u44923_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u44924 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u44925 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u44925 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u44925_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u44925_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u44926 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u44926 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u44926_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u44926_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u44927 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u44928 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u44928 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u44928_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u44928_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u44929 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u44929 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u44929_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u44929_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u44930 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u44930 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u44930_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u44930_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u44931 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u44931 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u44931_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u44931_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u44932 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u44932 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u44932_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u44932_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u44933_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u44933 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u44933 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u44933_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u44934 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u44935 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u44935 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u44935_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u44935_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u44936_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u44936 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u44936 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u44936_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u44937 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u44938 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u44938 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u44938_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u44938_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u44939_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u44939 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u44939 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u44939_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u44940_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u44940 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u44940 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u44940_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u44941 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u44942 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u44942 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u44942_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u44942_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u44943_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u44943 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u44943 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u44943_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u44944 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u44945 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u44945 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u44945_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u44945_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u44946_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u44946 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u44946 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u44946_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u44947_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u44947 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u44947 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u44947_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u44948 {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:0px;
  848. height:0px;
  849. }
  850. #u44949_div {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:375px;
  856. height:561px;
  857. background:inherit;
  858. background-color:rgba(255, 255, 255, 1);
  859. border-left:0px;
  860. border-top:0px;
  861. border-right:0px;
  862. border-radius:0px;
  863. border-bottom-right-radius:0px;
  864. border-bottom-left-radius:0px;
  865. filter:drop-shadow(none);
  866. transition:none;
  867. }
  868. #u44949 {
  869. border-width:0px;
  870. position:absolute;
  871. left:29px;
  872. top:108px;
  873. width:375px;
  874. height:561px;
  875. display:flex;
  876. transition:none;
  877. transform-origin:50% 50%;
  878. }
  879. #u44949 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:2px 2px 2px 2px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u44949_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. visibility:hidden;
  891. }
  892. #u44950 {
  893. border-width:0px;
  894. position:absolute;
  895. left:0px;
  896. top:0px;
  897. width:0px;
  898. height:0px;
  899. }
  900. #u44951_div {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:348px;
  906. height:348px;
  907. background:inherit;
  908. background-color:rgba(242, 242, 242, 0.6235294117647059);
  909. border-left:0px;
  910. border-top:0px;
  911. border-right:0px;
  912. border-radius:0px;
  913. border-bottom-right-radius:0px;
  914. border-bottom-left-radius:0px;
  915. filter:drop-shadow(none);
  916. transition:none;
  917. }
  918. #u44951 {
  919. border-width:0px;
  920. position:absolute;
  921. left:42px;
  922. top:308px;
  923. width:348px;
  924. height:348px;
  925. display:flex;
  926. transition:none;
  927. transform-origin:50% 50%;
  928. }
  929. #u44951 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u44951_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u44952_div {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:187px;
  948. height:220px;
  949. background:inherit;
  950. background-color:rgba(255, 255, 255, 0);
  951. border-top:0px;
  952. border-right:0px;
  953. border-bottom:0px;
  954. border-radius:0px;
  955. border-top-left-radius:0px;
  956. border-bottom-left-radius:0px;
  957. filter:drop-shadow(none);
  958. transition:none;
  959. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  960. font-style:normal;
  961. }
  962. #u44952 {
  963. border-width:0px;
  964. position:absolute;
  965. left:57px;
  966. top:317px;
  967. width:187px;
  968. height:220px;
  969. display:flex;
  970. transition:none;
  971. transform-origin:50% 50%;
  972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  973. font-style:normal;
  974. }
  975. #u44952 .text {
  976. position:absolute;
  977. align-self:flex-start;
  978. padding:5px 10px 5px 0px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u44952_text {
  983. border-width:0px;
  984. white-space:nowrap;
  985. text-transform:none;
  986. }
  987. #u44953_div {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:35px;
  993. height:17px;
  994. background:inherit;
  995. background-color:rgba(245, 154, 35, 1);
  996. border-radius:14px;
  997. filter:drop-shadow(none);
  998. transition:none;
  999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1000. font-weight:400;
  1001. font-style:normal;
  1002. font-size:12px;
  1003. color:#FFFFFF;
  1004. }
  1005. #u44953 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:205px;
  1009. top:326px;
  1010. width:35px;
  1011. height:17px;
  1012. display:flex;
  1013. transition:none;
  1014. transform-origin:50% 50%;
  1015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1016. font-weight:400;
  1017. font-style:normal;
  1018. font-size:12px;
  1019. color:#FFFFFF;
  1020. }
  1021. #u44953 .text {
  1022. position:absolute;
  1023. align-self:flex-start;
  1024. padding:0px 5px 0px 5px;
  1025. box-sizing:border-box;
  1026. width:100%;
  1027. }
  1028. #u44953_text {
  1029. border-width:0px;
  1030. white-space:nowrap;
  1031. text-transform:none;
  1032. }
  1033. #u44954_div {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:325px;
  1039. height:50px;
  1040. background:inherit;
  1041. background-color:rgba(255, 255, 255, 0);
  1042. border-radius:0px;
  1043. filter:drop-shadow(none);
  1044. transition:none;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:12px;
  1049. line-height:25px;
  1050. }
  1051. #u44954 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:57px;
  1055. top:537px;
  1056. width:325px;
  1057. height:50px;
  1058. display:flex;
  1059. transition:none;
  1060. transform-origin:50% 50%;
  1061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1062. font-weight:400;
  1063. font-style:normal;
  1064. font-size:12px;
  1065. line-height:25px;
  1066. }
  1067. #u44954 .text {
  1068. position:absolute;
  1069. align-self:flex-start;
  1070. padding:0px 0px 0px 0px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u44954_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. }
  1079. #u44955 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:57px;
  1083. top:597px;
  1084. width:60px;
  1085. height:46px;
  1086. display:flex;
  1087. transition:none;
  1088. }
  1089. #u44955 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u44955_img {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:60px;
  1102. height:46px;
  1103. }
  1104. #u44955_text {
  1105. border-width:0px;
  1106. word-wrap:break-word;
  1107. text-transform:none;
  1108. visibility:hidden;
  1109. }
  1110. #u44956 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:127px;
  1114. top:597px;
  1115. width:60px;
  1116. height:46px;
  1117. display:flex;
  1118. transition:none;
  1119. }
  1120. #u44956 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 2px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u44956_img {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:0px;
  1131. top:0px;
  1132. width:60px;
  1133. height:46px;
  1134. }
  1135. #u44956_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u44957_div {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:43px;
  1147. height:20px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 0);
  1150. border-radius:0px;
  1151. filter:drop-shadow(none);
  1152. transition:none;
  1153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1154. font-weight:400;
  1155. font-style:normal;
  1156. color:#F59A23;
  1157. }
  1158. #u44957 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:342px;
  1162. top:124px;
  1163. width:43px;
  1164. height:20px;
  1165. display:flex;
  1166. transition:none;
  1167. transform-origin:50% 50%;
  1168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1169. font-weight:400;
  1170. font-style:normal;
  1171. color:#F59A23;
  1172. }
  1173. #u44957 .text {
  1174. position:absolute;
  1175. align-self:flex-start;
  1176. padding:0px 0px 0px 0px;
  1177. box-sizing:border-box;
  1178. width:100%;
  1179. }
  1180. #u44957_text {
  1181. border-width:0px;
  1182. white-space:nowrap;
  1183. text-transform:none;
  1184. }
  1185. #u44958_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:94px;
  1191. height:30px;
  1192. background:inherit;
  1193. background-color:rgba(255, 255, 255, 0);
  1194. border-left:0px;
  1195. border-top:0px;
  1196. border-right:0px;
  1197. border-radius:0px;
  1198. border-bottom-right-radius:0px;
  1199. border-bottom-left-radius:0px;
  1200. filter:drop-shadow(none);
  1201. transition:none;
  1202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1203. font-weight:500;
  1204. font-style:normal;
  1205. font-size:14px;
  1206. line-height:30px;
  1207. }
  1208. #u44958 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:42px;
  1212. top:118px;
  1213. width:94px;
  1214. height:30px;
  1215. display:flex;
  1216. transition:none;
  1217. transform-origin:50% 50%;
  1218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1219. font-weight:500;
  1220. font-style:normal;
  1221. font-size:14px;
  1222. line-height:30px;
  1223. }
  1224. #u44958 .text {
  1225. position:absolute;
  1226. align-self:flex-start;
  1227. padding:0px 0px 0px 0px;
  1228. box-sizing:border-box;
  1229. width:100%;
  1230. }
  1231. #u44958_text {
  1232. border-width:0px;
  1233. white-space:nowrap;
  1234. text-transform:none;
  1235. }
  1236. #u44959_div {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:205px;
  1242. height:30px;
  1243. background:inherit;
  1244. background-color:rgba(255, 255, 255, 0);
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. filter:drop-shadow(none);
  1252. transition:none;
  1253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:12px;
  1257. line-height:30px;
  1258. }
  1259. #u44959 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:42px;
  1263. top:148px;
  1264. width:205px;
  1265. height:30px;
  1266. display:flex;
  1267. transition:none;
  1268. transform-origin:50% 50%;
  1269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1270. font-weight:400;
  1271. font-style:normal;
  1272. font-size:12px;
  1273. line-height:30px;
  1274. }
  1275. #u44959 .text {
  1276. position:absolute;
  1277. align-self:flex-start;
  1278. padding:0px 0px 0px 0px;
  1279. box-sizing:border-box;
  1280. width:100%;
  1281. }
  1282. #u44959_text {
  1283. border-width:0px;
  1284. white-space:nowrap;
  1285. text-transform:none;
  1286. }
  1287. #u44960_div {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:0px;
  1291. top:0px;
  1292. width:100px;
  1293. height:25px;
  1294. background:inherit;
  1295. background-color:rgba(217, 0, 27, 1);
  1296. border-radius:26px;
  1297. filter:drop-shadow(none);
  1298. transition:none;
  1299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1300. font-weight:400;
  1301. font-style:normal;
  1302. font-size:10px;
  1303. color:#FFFFFF;
  1304. text-align:center;
  1305. line-height:25px;
  1306. }
  1307. #u44960 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:148px;
  1311. top:119px;
  1312. width:100px;
  1313. height:25px;
  1314. display:flex;
  1315. transition:none;
  1316. transform-origin:50% 50%;
  1317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1318. font-weight:400;
  1319. font-style:normal;
  1320. font-size:10px;
  1321. color:#FFFFFF;
  1322. text-align:center;
  1323. line-height:25px;
  1324. }
  1325. #u44960 .text {
  1326. position:absolute;
  1327. align-self:center;
  1328. padding:0px 0px 0px 0px;
  1329. box-sizing:border-box;
  1330. width:100%;
  1331. }
  1332. #u44960_text {
  1333. border-width:0px;
  1334. word-wrap:break-word;
  1335. text-transform:none;
  1336. }
  1337. #u44961_div {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:0px;
  1341. top:0px;
  1342. width:177px;
  1343. height:30px;
  1344. background:inherit;
  1345. background-color:rgba(255, 255, 255, 0);
  1346. border-left:0px;
  1347. border-top:0px;
  1348. border-right:0px;
  1349. border-radius:0px;
  1350. border-bottom-right-radius:0px;
  1351. border-bottom-left-radius:0px;
  1352. filter:drop-shadow(none);
  1353. transition:none;
  1354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:12px;
  1358. line-height:30px;
  1359. }
  1360. #u44961 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:42px;
  1364. top:208px;
  1365. width:177px;
  1366. height:30px;
  1367. display:flex;
  1368. transition:none;
  1369. transform-origin:50% 50%;
  1370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1371. font-weight:400;
  1372. font-style:normal;
  1373. font-size:12px;
  1374. line-height:30px;
  1375. }
  1376. #u44961 .text {
  1377. position:absolute;
  1378. align-self:flex-start;
  1379. padding:0px 0px 0px 0px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u44961_text {
  1384. border-width:0px;
  1385. white-space:nowrap;
  1386. text-transform:none;
  1387. }
  1388. #u44962_div {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:92px;
  1394. height:30px;
  1395. background:inherit;
  1396. background-color:rgba(255, 255, 255, 0);
  1397. border-left:0px;
  1398. border-top:0px;
  1399. border-right:0px;
  1400. border-radius:0px;
  1401. border-bottom-right-radius:0px;
  1402. border-bottom-left-radius:0px;
  1403. filter:drop-shadow(none);
  1404. transition:none;
  1405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:12px;
  1409. line-height:30px;
  1410. }
  1411. #u44962 {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:42px;
  1415. top:178px;
  1416. width:92px;
  1417. height:30px;
  1418. display:flex;
  1419. transition:none;
  1420. transform-origin:50% 50%;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:12px;
  1425. line-height:30px;
  1426. }
  1427. #u44962 .text {
  1428. position:absolute;
  1429. align-self:flex-start;
  1430. padding:0px 0px 0px 0px;
  1431. box-sizing:border-box;
  1432. width:100%;
  1433. }
  1434. #u44962_text {
  1435. border-width:0px;
  1436. white-space:nowrap;
  1437. text-transform:none;
  1438. }
  1439. #u44963_div {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:112px;
  1445. height:30px;
  1446. background:inherit;
  1447. background-color:rgba(255, 255, 255, 0);
  1448. border-left:0px;
  1449. border-top:0px;
  1450. border-right:0px;
  1451. border-radius:0px;
  1452. border-bottom-right-radius:0px;
  1453. border-bottom-left-radius:0px;
  1454. filter:drop-shadow(none);
  1455. transition:none;
  1456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1457. font-weight:400;
  1458. font-style:normal;
  1459. font-size:12px;
  1460. line-height:30px;
  1461. }
  1462. #u44963 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:42px;
  1466. top:238px;
  1467. width:112px;
  1468. height:30px;
  1469. display:flex;
  1470. transition:none;
  1471. transform-origin:50% 50%;
  1472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1473. font-weight:400;
  1474. font-style:normal;
  1475. font-size:12px;
  1476. line-height:30px;
  1477. }
  1478. #u44963 .text {
  1479. position:absolute;
  1480. align-self:flex-start;
  1481. padding:0px 0px 0px 0px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u44963_text {
  1486. border-width:0px;
  1487. white-space:nowrap;
  1488. text-transform:none;
  1489. }
  1490. #u44964_div {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:80px;
  1496. height:30px;
  1497. background:inherit;
  1498. background-color:rgba(255, 255, 255, 0);
  1499. border-left:0px;
  1500. border-top:0px;
  1501. border-right:0px;
  1502. border-radius:0px;
  1503. border-bottom-right-radius:0px;
  1504. border-bottom-left-radius:0px;
  1505. filter:drop-shadow(none);
  1506. transition:none;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:12px;
  1511. line-height:30px;
  1512. }
  1513. #u44964 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:42px;
  1517. top:268px;
  1518. width:80px;
  1519. height:30px;
  1520. display:flex;
  1521. transition:none;
  1522. transform-origin:50% 50%;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:12px;
  1527. line-height:30px;
  1528. }
  1529. #u44964 .text {
  1530. position:absolute;
  1531. align-self:flex-start;
  1532. padding:0px 0px 0px 0px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u44964_text {
  1537. border-width:0px;
  1538. white-space:nowrap;
  1539. text-transform:none;
  1540. }
  1541. #u44965_div {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:375px;
  1547. height:41px;
  1548. background:inherit;
  1549. background-color:rgba(255, 255, 255, 1);
  1550. box-sizing:border-box;
  1551. border-width:1px;
  1552. border-style:solid;
  1553. border-color:rgba(215, 215, 215, 1);
  1554. border-left:0px;
  1555. border-top:0px;
  1556. border-right:0px;
  1557. border-radius:0px;
  1558. border-bottom-right-radius:0px;
  1559. border-bottom-left-radius:0px;
  1560. filter:drop-shadow(none);
  1561. transition:none;
  1562. }
  1563. #u44965 {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:29px;
  1567. top:67px;
  1568. width:375px;
  1569. height:41px;
  1570. display:flex;
  1571. transition:none;
  1572. transform-origin:50% 50%;
  1573. }
  1574. #u44965 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 2px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u44965_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u44966 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:29px;
  1591. top:24px;
  1592. width:375px;
  1593. height:44px;
  1594. display:flex;
  1595. transition:none;
  1596. }
  1597. #u44966 .text {
  1598. position:absolute;
  1599. align-self:center;
  1600. padding:2px 2px 2px 2px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u44966_img {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:375px;
  1610. height:44px;
  1611. }
  1612. #u44966_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. visibility:hidden;
  1617. }
  1618. #u44967 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:0px;
  1624. height:0px;
  1625. }
  1626. #u44968_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:88px;
  1632. height:32px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 1);
  1635. box-sizing:border-box;
  1636. border-width:1px;
  1637. border-style:solid;
  1638. border-color:rgba(242, 242, 242, 1);
  1639. border-radius:33px;
  1640. filter:drop-shadow(none);
  1641. transition:none;
  1642. }
  1643. #u44968 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:309px;
  1647. top:71px;
  1648. width:88px;
  1649. height:32px;
  1650. display:flex;
  1651. transition:none;
  1652. transform-origin:50% 50%;
  1653. }
  1654. #u44968 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u44968_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u44969 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:0px;
  1673. height:0px;
  1674. }
  1675. #u44970 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:372px;
  1679. top:78px;
  1680. width:18px;
  1681. height:18px;
  1682. display:flex;
  1683. transition:none;
  1684. }
  1685. #u44970 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:2px 2px 2px 2px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u44970_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:18px;
  1698. height:18px;
  1699. }
  1700. #u44970_text {
  1701. border-width:0px;
  1702. word-wrap:break-word;
  1703. text-transform:none;
  1704. visibility:hidden;
  1705. }
  1706. #u44971 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:378px;
  1710. top:84px;
  1711. width:6px;
  1712. height:6px;
  1713. display:flex;
  1714. transition:none;
  1715. }
  1716. #u44971 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u44971_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:6px;
  1729. height:6px;
  1730. }
  1731. #u44971_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u44972 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:0px;
  1743. height:0px;
  1744. }
  1745. #u44973 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:323px;
  1749. top:85px;
  1750. width:5px;
  1751. height:5px;
  1752. display:flex;
  1753. transition:none;
  1754. }
  1755. #u44973 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:2px 2px 2px 2px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u44973_img {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:5px;
  1768. height:5px;
  1769. }
  1770. #u44973_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. visibility:hidden;
  1775. }
  1776. #u44974 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:339px;
  1780. top:85px;
  1781. width:5px;
  1782. height:5px;
  1783. display:flex;
  1784. transition:none;
  1785. }
  1786. #u44974 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:2px 2px 2px 2px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u44974_img {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:5px;
  1799. height:5px;
  1800. }
  1801. #u44974_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. visibility:hidden;
  1806. }
  1807. #u44975 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:330px;
  1811. top:84px;
  1812. width:7px;
  1813. height:7px;
  1814. display:flex;
  1815. transition:none;
  1816. }
  1817. #u44975 .text {
  1818. position:absolute;
  1819. align-self:center;
  1820. padding:2px 2px 2px 2px;
  1821. box-sizing:border-box;
  1822. width:100%;
  1823. }
  1824. #u44975_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:7px;
  1830. height:7px;
  1831. }
  1832. #u44975_text {
  1833. border-width:0px;
  1834. word-wrap:break-word;
  1835. text-transform:none;
  1836. visibility:hidden;
  1837. }
  1838. #u44976 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:347px;
  1842. top:87px;
  1843. width:18px;
  1844. height:1px;
  1845. display:flex;
  1846. -webkit-transform:rotate(90deg);
  1847. -moz-transform:rotate(90deg);
  1848. -ms-transform:rotate(90deg);
  1849. transform:rotate(90deg);
  1850. transition:none;
  1851. }
  1852. #u44976 .text {
  1853. position:absolute;
  1854. align-self:center;
  1855. padding:2px 2px 2px 2px;
  1856. box-sizing:border-box;
  1857. width:100%;
  1858. }
  1859. #u44976_img {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:19px;
  1865. height:2px;
  1866. }
  1867. #u44976_text {
  1868. border-width:0px;
  1869. word-wrap:break-word;
  1870. text-transform:none;
  1871. visibility:hidden;
  1872. }
  1873. #u44977_div {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:12px;
  1879. height:12px;
  1880. background:inherit;
  1881. background-color:rgba(255, 255, 255, 0);
  1882. box-sizing:border-box;
  1883. border-width:2px;
  1884. border-style:solid;
  1885. border-color:rgba(51, 51, 51, 1);
  1886. border-right:0px;
  1887. border-bottom:0px;
  1888. border-radius:0px;
  1889. border-top-right-radius:0px;
  1890. border-bottom-left-radius:0px;
  1891. filter:drop-shadow(none);
  1892. transition:none;
  1893. }
  1894. #u44977 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:44px;
  1898. top:81px;
  1899. width:12px;
  1900. height:12px;
  1901. display:flex;
  1902. -webkit-transform:rotate(315deg);
  1903. -moz-transform:rotate(315deg);
  1904. -ms-transform:rotate(315deg);
  1905. transform:rotate(315deg);
  1906. transition:none;
  1907. transform-origin:50% 50%;
  1908. }
  1909. #u44977 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 2px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u44977_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. visibility:hidden;
  1921. }
  1922. #u44978 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:0px;
  1928. height:0px;
  1929. }
  1930. #u44979_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:375px;
  1936. height:60px;
  1937. background:inherit;
  1938. background-color:rgba(255, 255, 255, 1);
  1939. box-sizing:border-box;
  1940. border-width:1px;
  1941. border-style:solid;
  1942. border-color:rgba(242, 242, 242, 1);
  1943. border-radius:20px;
  1944. border-top-left-radius:0px;
  1945. border-top-right-radius:0px;
  1946. filter:drop-shadow(none);
  1947. transition:none;
  1948. }
  1949. #u44979 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:29px;
  1953. top:779px;
  1954. width:375px;
  1955. height:60px;
  1956. display:flex;
  1957. transition:none;
  1958. transform-origin:50% 50%;
  1959. }
  1960. #u44979 .text {
  1961. position:absolute;
  1962. align-self:center;
  1963. padding:2px 2px 2px 2px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u44979_text {
  1968. border-width:0px;
  1969. word-wrap:break-word;
  1970. text-transform:none;
  1971. visibility:hidden;
  1972. }
  1973. #u44980_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:97px;
  1979. height:40px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 1);
  1982. box-sizing:border-box;
  1983. border-width:1px;
  1984. border-style:solid;
  1985. border-color:rgba(121, 121, 121, 1);
  1986. border-radius:63px;
  1987. filter:drop-shadow(none);
  1988. transition:none;
  1989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1990. font-weight:400;
  1991. font-style:normal;
  1992. font-size:14px;
  1993. color:#555555;
  1994. }
  1995. #u44980 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:186px;
  1999. top:789px;
  2000. width:97px;
  2001. height:40px;
  2002. display:flex;
  2003. transition:none;
  2004. transform-origin:50% 50%;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. color:#555555;
  2010. }
  2011. #u44980 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 2px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u44980_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. }
  2023. #u44981_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:97px;
  2029. height:40px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 1);
  2032. box-sizing:border-box;
  2033. border-width:1px;
  2034. border-style:solid;
  2035. border-color:rgba(121, 121, 121, 1);
  2036. border-radius:63px;
  2037. filter:drop-shadow(none);
  2038. transition:none;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:14px;
  2043. color:#555555;
  2044. }
  2045. #u44981 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:293px;
  2049. top:789px;
  2050. width:97px;
  2051. height:40px;
  2052. display:flex;
  2053. transition:none;
  2054. transform-origin:50% 50%;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:14px;
  2059. color:#555555;
  2060. }
  2061. #u44981 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 2px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u44981_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u44982_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:73px;
  2079. height:25px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 0);
  2082. border-radius:0px;
  2083. filter:drop-shadow(none);
  2084. transition:none;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:18px;
  2089. }
  2090. #u44982 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:64px;
  2094. top:75px;
  2095. width:73px;
  2096. height:25px;
  2097. display:flex;
  2098. transition:none;
  2099. transform-origin:50% 50%;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:18px;
  2104. }
  2105. #u44982 .text {
  2106. position:absolute;
  2107. align-self:flex-start;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u44982_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u44983 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:449px;
  2121. top:0px;
  2122. width:433px;
  2123. height:865px;
  2124. }
  2125. #u44984 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:433px;
  2131. height:865px;
  2132. display:flex;
  2133. transition:none;
  2134. }
  2135. #u44984 .text {
  2136. position:absolute;
  2137. align-self:center;
  2138. padding:2px 2px 2px 2px;
  2139. box-sizing:border-box;
  2140. width:100%;
  2141. }
  2142. #u44984_img {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:433px;
  2148. height:865px;
  2149. }
  2150. #u44984_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u44985_div {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:375px;
  2162. height:40px;
  2163. background:inherit;
  2164. background-color:rgba(255, 255, 255, 1);
  2165. box-sizing:border-box;
  2166. border-width:1px;
  2167. border-style:solid;
  2168. border-color:rgba(215, 215, 215, 1);
  2169. border-left:0px;
  2170. border-top:0px;
  2171. border-right:0px;
  2172. border-radius:0px;
  2173. border-bottom-right-radius:0px;
  2174. border-bottom-left-radius:0px;
  2175. filter:drop-shadow(none);
  2176. transition:none;
  2177. }
  2178. #u44985 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:29px;
  2182. top:67px;
  2183. width:375px;
  2184. height:40px;
  2185. display:flex;
  2186. transition:none;
  2187. transform-origin:50% 50%;
  2188. }
  2189. #u44985 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 2px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u44985_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. visibility:hidden;
  2201. }
  2202. #u44986 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:0px;
  2208. height:0px;
  2209. }
  2210. #u44987_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:88px;
  2216. height:32px;
  2217. background:inherit;
  2218. background-color:rgba(255, 255, 255, 1);
  2219. box-sizing:border-box;
  2220. border-width:1px;
  2221. border-style:solid;
  2222. border-color:rgba(242, 242, 242, 1);
  2223. border-radius:33px;
  2224. filter:drop-shadow(none);
  2225. transition:none;
  2226. }
  2227. #u44987 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:309px;
  2231. top:71px;
  2232. width:88px;
  2233. height:32px;
  2234. display:flex;
  2235. transition:none;
  2236. transform-origin:50% 50%;
  2237. }
  2238. #u44987 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 2px 2px 2px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u44987_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. visibility:hidden;
  2250. }
  2251. #u44988 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:0px;
  2257. height:0px;
  2258. }
  2259. #u44989 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:372px;
  2263. top:78px;
  2264. width:18px;
  2265. height:18px;
  2266. display:flex;
  2267. transition:none;
  2268. }
  2269. #u44989 .text {
  2270. position:absolute;
  2271. align-self:center;
  2272. padding:2px 2px 2px 2px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u44989_img {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:18px;
  2282. height:18px;
  2283. }
  2284. #u44989_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. visibility:hidden;
  2289. }
  2290. #u44990 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:378px;
  2294. top:84px;
  2295. width:6px;
  2296. height:6px;
  2297. display:flex;
  2298. transition:none;
  2299. }
  2300. #u44990 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 2px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u44990_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:6px;
  2313. height:6px;
  2314. }
  2315. #u44990_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u44991 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:0px;
  2327. height:0px;
  2328. }
  2329. #u44992 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:323px;
  2333. top:85px;
  2334. width:5px;
  2335. height:5px;
  2336. display:flex;
  2337. transition:none;
  2338. }
  2339. #u44992 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 2px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u44992_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:5px;
  2352. height:5px;
  2353. }
  2354. #u44992_text {
  2355. border-width:0px;
  2356. word-wrap:break-word;
  2357. text-transform:none;
  2358. visibility:hidden;
  2359. }
  2360. #u44993 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:339px;
  2364. top:85px;
  2365. width:5px;
  2366. height:5px;
  2367. display:flex;
  2368. transition:none;
  2369. }
  2370. #u44993 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u44993_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:5px;
  2383. height:5px;
  2384. }
  2385. #u44993_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u44994 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:330px;
  2395. top:84px;
  2396. width:7px;
  2397. height:7px;
  2398. display:flex;
  2399. transition:none;
  2400. }
  2401. #u44994 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u44994_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:7px;
  2414. height:7px;
  2415. }
  2416. #u44994_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. visibility:hidden;
  2421. }
  2422. #u44995 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:347px;
  2426. top:87px;
  2427. width:18px;
  2428. height:1px;
  2429. display:flex;
  2430. -webkit-transform:rotate(90deg);
  2431. -moz-transform:rotate(90deg);
  2432. -ms-transform:rotate(90deg);
  2433. transform:rotate(90deg);
  2434. transition:none;
  2435. }
  2436. #u44995 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 2px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u44995_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:19px;
  2449. height:2px;
  2450. }
  2451. #u44995_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. visibility:hidden;
  2456. }
  2457. #u44996 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:29px;
  2461. top:24px;
  2462. width:375px;
  2463. height:44px;
  2464. display:flex;
  2465. transition:none;
  2466. }
  2467. #u44996 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 2px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u44996_img {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:375px;
  2480. height:44px;
  2481. }
  2482. #u44996_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u44997_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:375px;
  2494. height:50px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 1);
  2497. box-sizing:border-box;
  2498. border-width:1px;
  2499. border-style:solid;
  2500. border-color:rgba(242, 242, 242, 1);
  2501. border-radius:26px;
  2502. border-top-left-radius:0px;
  2503. border-top-right-radius:0px;
  2504. filter:drop-shadow(none);
  2505. transition:none;
  2506. }
  2507. #u44997 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:29px;
  2511. top:788px;
  2512. width:375px;
  2513. height:50px;
  2514. display:flex;
  2515. transition:none;
  2516. transform-origin:50% 50%;
  2517. }
  2518. #u44997 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u44997_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u44998 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:0px;
  2537. height:0px;
  2538. }
  2539. #u44999 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:69px;
  2543. top:792px;
  2544. width:24px;
  2545. height:24px;
  2546. display:flex;
  2547. transition:none;
  2548. font-size:8px;
  2549. }
  2550. #u44999 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 2px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u44999_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:24px;
  2563. height:24px;
  2564. }
  2565. #u44999_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. }
  2570. #u45000_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:25px;
  2576. height:17px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border-radius:0px;
  2580. filter:drop-shadow(none);
  2581. transition:none;
  2582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2583. font-weight:400;
  2584. font-style:normal;
  2585. font-size:12px;
  2586. }
  2587. #u45000 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:69px;
  2591. top:817px;
  2592. width:25px;
  2593. height:17px;
  2594. display:flex;
  2595. transition:none;
  2596. transform-origin:50% 50%;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. }
  2602. #u45000 .text {
  2603. position:absolute;
  2604. align-self:flex-start;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u45000_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u45001 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:0px;
  2620. height:0px;
  2621. }
  2622. #u45002 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:339px;
  2626. top:794px;
  2627. width:24px;
  2628. height:24px;
  2629. display:flex;
  2630. transition:none;
  2631. font-size:8px;
  2632. }
  2633. #u45002 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 2px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u45002_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:24px;
  2646. height:24px;
  2647. }
  2648. #u45002_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. }
  2653. #u45003_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:25px;
  2659. height:17px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 0);
  2662. border-radius:0px;
  2663. filter:drop-shadow(none);
  2664. transition:none;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. }
  2670. #u45003 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:339px;
  2674. top:819px;
  2675. width:25px;
  2676. height:17px;
  2677. display:flex;
  2678. transition:none;
  2679. transform-origin:50% 50%;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:12px;
  2684. }
  2685. #u45003 .text {
  2686. position:absolute;
  2687. align-self:flex-start;
  2688. padding:0px 0px 0px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u45003_text {
  2693. border-width:0px;
  2694. white-space:nowrap;
  2695. text-transform:none;
  2696. }
  2697. #u45004_div {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:375px;
  2703. height:681px;
  2704. background:inherit;
  2705. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2706. border-radius:0px;
  2707. filter:drop-shadow(none);
  2708. transition:none;
  2709. }
  2710. #u45004 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:29px;
  2714. top:107px;
  2715. width:375px;
  2716. height:681px;
  2717. display:flex;
  2718. transition:none;
  2719. transform-origin:50% 50%;
  2720. }
  2721. #u45004 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 2px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u45004_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u45005 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:0px;
  2740. height:0px;
  2741. }
  2742. #u45006 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:251px;
  2746. top:792px;
  2747. width:24px;
  2748. height:24px;
  2749. display:flex;
  2750. transition:none;
  2751. font-size:8px;
  2752. }
  2753. #u45006 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 2px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u45006_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:24px;
  2766. height:24px;
  2767. }
  2768. #u45006_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. }
  2773. #u45007_div {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:37px;
  2779. height:17px;
  2780. background:inherit;
  2781. background-color:rgba(255, 255, 255, 0);
  2782. border-radius:0px;
  2783. filter:drop-shadow(none);
  2784. transition:none;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:12px;
  2789. }
  2790. #u45007 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:245px;
  2794. top:817px;
  2795. width:37px;
  2796. height:17px;
  2797. display:flex;
  2798. transition:none;
  2799. transform-origin:50% 50%;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:12px;
  2804. }
  2805. #u45007 .text {
  2806. position:absolute;
  2807. align-self:flex-start;
  2808. padding:0px 0px 0px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u45007_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u45008 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:0px;
  2823. height:0px;
  2824. }
  2825. #u45009 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:157px;
  2829. top:792px;
  2830. width:24px;
  2831. height:24px;
  2832. display:flex;
  2833. transition:none;
  2834. font-size:8px;
  2835. }
  2836. #u45009 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 2px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u45009_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:24px;
  2849. height:24px;
  2850. }
  2851. #u45009_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. }
  2856. #u45010_div {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:37px;
  2862. height:17px;
  2863. background:inherit;
  2864. background-color:rgba(255, 255, 255, 0);
  2865. border-radius:0px;
  2866. filter:drop-shadow(none);
  2867. transition:none;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:12px;
  2872. }
  2873. #u45010 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:151px;
  2877. top:817px;
  2878. width:37px;
  2879. height:17px;
  2880. display:flex;
  2881. transition:none;
  2882. transform-origin:50% 50%;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u45010 .text {
  2889. position:absolute;
  2890. align-self:flex-start;
  2891. padding:0px 0px 0px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u45010_text {
  2896. border-width:0px;
  2897. white-space:nowrap;
  2898. text-transform:none;
  2899. }
  2900. #u45011_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:375px;
  2906. height:732px;
  2907. background:inherit;
  2908. background-color:rgba(242, 242, 242, 0.996078431372549);
  2909. border-top:0px;
  2910. border-radius:28px;
  2911. border-top-left-radius:0px;
  2912. border-top-right-radius:0px;
  2913. filter:drop-shadow(none);
  2914. transition:none;
  2915. }
  2916. #u45011 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:478px;
  2920. top:107px;
  2921. width:375px;
  2922. height:732px;
  2923. display:flex;
  2924. transition:none;
  2925. transform-origin:50% 50%;
  2926. }
  2927. #u45011 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 2px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u45011_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u45012 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:0px;
  2946. height:0px;
  2947. }
  2948. #u45013_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:375px;
  2954. height:561px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 1);
  2957. border-left:0px;
  2958. border-top:0px;
  2959. border-right:0px;
  2960. border-radius:0px;
  2961. border-bottom-right-radius:0px;
  2962. border-bottom-left-radius:0px;
  2963. filter:drop-shadow(none);
  2964. transition:none;
  2965. }
  2966. #u45013 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:478px;
  2970. top:108px;
  2971. width:375px;
  2972. height:561px;
  2973. display:flex;
  2974. transition:none;
  2975. transform-origin:50% 50%;
  2976. }
  2977. #u45013 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 2px 2px 2px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u45013_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. visibility:hidden;
  2989. }
  2990. #u45014 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:0px;
  2996. height:0px;
  2997. }
  2998. #u45015_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:348px;
  3004. height:348px;
  3005. background:inherit;
  3006. background-color:rgba(242, 242, 242, 0.6235294117647059);
  3007. border-left:0px;
  3008. border-top:0px;
  3009. border-right:0px;
  3010. border-radius:0px;
  3011. border-bottom-right-radius:0px;
  3012. border-bottom-left-radius:0px;
  3013. filter:drop-shadow(none);
  3014. transition:none;
  3015. }
  3016. #u45015 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:491px;
  3020. top:308px;
  3021. width:348px;
  3022. height:348px;
  3023. display:flex;
  3024. transition:none;
  3025. transform-origin:50% 50%;
  3026. }
  3027. #u45015 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u45015_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. visibility:hidden;
  3039. }
  3040. #u45016_div {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:187px;
  3046. height:220px;
  3047. background:inherit;
  3048. background-color:rgba(255, 255, 255, 0);
  3049. border-top:0px;
  3050. border-right:0px;
  3051. border-bottom:0px;
  3052. border-radius:0px;
  3053. border-top-left-radius:0px;
  3054. border-bottom-left-radius:0px;
  3055. filter:drop-shadow(none);
  3056. transition:none;
  3057. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3058. font-style:normal;
  3059. }
  3060. #u45016 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:506px;
  3064. top:317px;
  3065. width:187px;
  3066. height:220px;
  3067. display:flex;
  3068. transition:none;
  3069. transform-origin:50% 50%;
  3070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3071. font-style:normal;
  3072. }
  3073. #u45016 .text {
  3074. position:absolute;
  3075. align-self:flex-start;
  3076. padding:5px 10px 5px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u45016_text {
  3081. border-width:0px;
  3082. white-space:nowrap;
  3083. text-transform:none;
  3084. }
  3085. #u45017_div {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:35px;
  3091. height:17px;
  3092. background:inherit;
  3093. background-color:rgba(245, 154, 35, 1);
  3094. border-radius:14px;
  3095. filter:drop-shadow(none);
  3096. transition:none;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#FFFFFF;
  3102. }
  3103. #u45017 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:654px;
  3107. top:326px;
  3108. width:35px;
  3109. height:17px;
  3110. display:flex;
  3111. transition:none;
  3112. transform-origin:50% 50%;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:12px;
  3117. color:#FFFFFF;
  3118. }
  3119. #u45017 .text {
  3120. position:absolute;
  3121. align-self:flex-start;
  3122. padding:0px 5px 0px 5px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u45017_text {
  3127. border-width:0px;
  3128. white-space:nowrap;
  3129. text-transform:none;
  3130. }
  3131. #u45018_div {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:325px;
  3137. height:50px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border-radius:0px;
  3141. filter:drop-shadow(none);
  3142. transition:none;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. line-height:25px;
  3148. }
  3149. #u45018 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:506px;
  3153. top:537px;
  3154. width:325px;
  3155. height:50px;
  3156. display:flex;
  3157. transition:none;
  3158. transform-origin:50% 50%;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. line-height:25px;
  3164. }
  3165. #u45018 .text {
  3166. position:absolute;
  3167. align-self:flex-start;
  3168. padding:0px 0px 0px 0px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u45018_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. }
  3177. #u45019 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:506px;
  3181. top:597px;
  3182. width:60px;
  3183. height:46px;
  3184. display:flex;
  3185. transition:none;
  3186. }
  3187. #u45019 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 2px 2px 2px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u45019_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:60px;
  3200. height:46px;
  3201. }
  3202. #u45019_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u45020 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:576px;
  3212. top:597px;
  3213. width:60px;
  3214. height:46px;
  3215. display:flex;
  3216. transition:none;
  3217. }
  3218. #u45020 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u45020_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:60px;
  3231. height:46px;
  3232. }
  3233. #u45020_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u45021_div {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:43px;
  3245. height:20px;
  3246. background:inherit;
  3247. background-color:rgba(255, 255, 255, 0);
  3248. border-radius:0px;
  3249. filter:drop-shadow(none);
  3250. transition:none;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. color:#F59A23;
  3255. }
  3256. #u45021 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:791px;
  3260. top:124px;
  3261. width:43px;
  3262. height:20px;
  3263. display:flex;
  3264. transition:none;
  3265. transform-origin:50% 50%;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. color:#F59A23;
  3270. }
  3271. #u45021 .text {
  3272. position:absolute;
  3273. align-self:flex-start;
  3274. padding:0px 0px 0px 0px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u45021_text {
  3279. border-width:0px;
  3280. white-space:nowrap;
  3281. text-transform:none;
  3282. }
  3283. #u45022_div {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:94px;
  3289. height:30px;
  3290. background:inherit;
  3291. background-color:rgba(255, 255, 255, 0);
  3292. border-left:0px;
  3293. border-top:0px;
  3294. border-right:0px;
  3295. border-radius:0px;
  3296. border-bottom-right-radius:0px;
  3297. border-bottom-left-radius:0px;
  3298. filter:drop-shadow(none);
  3299. transition:none;
  3300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3301. font-weight:500;
  3302. font-style:normal;
  3303. font-size:14px;
  3304. line-height:30px;
  3305. }
  3306. #u45022 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:491px;
  3310. top:118px;
  3311. width:94px;
  3312. height:30px;
  3313. display:flex;
  3314. transition:none;
  3315. transform-origin:50% 50%;
  3316. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3317. font-weight:500;
  3318. font-style:normal;
  3319. font-size:14px;
  3320. line-height:30px;
  3321. }
  3322. #u45022 .text {
  3323. position:absolute;
  3324. align-self:flex-start;
  3325. padding:0px 0px 0px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u45022_text {
  3330. border-width:0px;
  3331. white-space:nowrap;
  3332. text-transform:none;
  3333. }
  3334. #u45023_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:205px;
  3340. height:30px;
  3341. background:inherit;
  3342. background-color:rgba(255, 255, 255, 0);
  3343. border-left:0px;
  3344. border-top:0px;
  3345. border-right:0px;
  3346. border-radius:0px;
  3347. border-bottom-right-radius:0px;
  3348. border-bottom-left-radius:0px;
  3349. filter:drop-shadow(none);
  3350. transition:none;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. line-height:30px;
  3356. }
  3357. #u45023 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:491px;
  3361. top:148px;
  3362. width:205px;
  3363. height:30px;
  3364. display:flex;
  3365. transition:none;
  3366. transform-origin:50% 50%;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:12px;
  3371. line-height:30px;
  3372. }
  3373. #u45023 .text {
  3374. position:absolute;
  3375. align-self:flex-start;
  3376. padding:0px 0px 0px 0px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u45023_text {
  3381. border-width:0px;
  3382. white-space:nowrap;
  3383. text-transform:none;
  3384. }
  3385. #u45024_div {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:100px;
  3391. height:25px;
  3392. background:inherit;
  3393. background-color:rgba(217, 0, 27, 1);
  3394. border-radius:26px;
  3395. filter:drop-shadow(none);
  3396. transition:none;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:10px;
  3401. color:#FFFFFF;
  3402. text-align:center;
  3403. line-height:25px;
  3404. }
  3405. #u45024 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:597px;
  3409. top:119px;
  3410. width:100px;
  3411. height:25px;
  3412. display:flex;
  3413. transition:none;
  3414. transform-origin:50% 50%;
  3415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:10px;
  3419. color:#FFFFFF;
  3420. text-align:center;
  3421. line-height:25px;
  3422. }
  3423. #u45024 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:0px 0px 0px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u45024_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. }
  3435. #u45025_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:177px;
  3441. height:30px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border-left:0px;
  3445. border-top:0px;
  3446. border-right:0px;
  3447. border-radius:0px;
  3448. border-bottom-right-radius:0px;
  3449. border-bottom-left-radius:0px;
  3450. filter:drop-shadow(none);
  3451. transition:none;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. line-height:30px;
  3457. }
  3458. #u45025 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:491px;
  3462. top:208px;
  3463. width:177px;
  3464. height:30px;
  3465. display:flex;
  3466. transition:none;
  3467. transform-origin:50% 50%;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:12px;
  3472. line-height:30px;
  3473. }
  3474. #u45025 .text {
  3475. position:absolute;
  3476. align-self:flex-start;
  3477. padding:0px 0px 0px 0px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u45025_text {
  3482. border-width:0px;
  3483. white-space:nowrap;
  3484. text-transform:none;
  3485. }
  3486. #u45026_div {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:92px;
  3492. height:30px;
  3493. background:inherit;
  3494. background-color:rgba(255, 255, 255, 0);
  3495. border-left:0px;
  3496. border-top:0px;
  3497. border-right:0px;
  3498. border-radius:0px;
  3499. border-bottom-right-radius:0px;
  3500. border-bottom-left-radius:0px;
  3501. filter:drop-shadow(none);
  3502. transition:none;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:12px;
  3507. line-height:30px;
  3508. }
  3509. #u45026 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:491px;
  3513. top:178px;
  3514. width:92px;
  3515. height:30px;
  3516. display:flex;
  3517. transition:none;
  3518. transform-origin:50% 50%;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. line-height:30px;
  3524. }
  3525. #u45026 .text {
  3526. position:absolute;
  3527. align-self:flex-start;
  3528. padding:0px 0px 0px 0px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u45026_text {
  3533. border-width:0px;
  3534. white-space:nowrap;
  3535. text-transform:none;
  3536. }
  3537. #u45027_div {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:112px;
  3543. height:30px;
  3544. background:inherit;
  3545. background-color:rgba(255, 255, 255, 0);
  3546. border-left:0px;
  3547. border-top:0px;
  3548. border-right:0px;
  3549. border-radius:0px;
  3550. border-bottom-right-radius:0px;
  3551. border-bottom-left-radius:0px;
  3552. filter:drop-shadow(none);
  3553. transition:none;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. line-height:30px;
  3559. }
  3560. #u45027 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:491px;
  3564. top:238px;
  3565. width:112px;
  3566. height:30px;
  3567. display:flex;
  3568. transition:none;
  3569. transform-origin:50% 50%;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. line-height:30px;
  3575. }
  3576. #u45027 .text {
  3577. position:absolute;
  3578. align-self:flex-start;
  3579. padding:0px 0px 0px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u45027_text {
  3584. border-width:0px;
  3585. white-space:nowrap;
  3586. text-transform:none;
  3587. }
  3588. #u45028_div {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:80px;
  3594. height:30px;
  3595. background:inherit;
  3596. background-color:rgba(255, 255, 255, 0);
  3597. border-left:0px;
  3598. border-top:0px;
  3599. border-right:0px;
  3600. border-radius:0px;
  3601. border-bottom-right-radius:0px;
  3602. border-bottom-left-radius:0px;
  3603. filter:drop-shadow(none);
  3604. transition:none;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. line-height:30px;
  3610. }
  3611. #u45028 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:491px;
  3615. top:268px;
  3616. width:80px;
  3617. height:30px;
  3618. display:flex;
  3619. transition:none;
  3620. transform-origin:50% 50%;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. line-height:30px;
  3626. }
  3627. #u45028 .text {
  3628. position:absolute;
  3629. align-self:flex-start;
  3630. padding:0px 0px 0px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u45028_text {
  3635. border-width:0px;
  3636. white-space:nowrap;
  3637. text-transform:none;
  3638. }
  3639. #u45029_div {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:375px;
  3645. height:41px;
  3646. background:inherit;
  3647. background-color:rgba(255, 255, 255, 1);
  3648. box-sizing:border-box;
  3649. border-width:1px;
  3650. border-style:solid;
  3651. border-color:rgba(215, 215, 215, 1);
  3652. border-left:0px;
  3653. border-top:0px;
  3654. border-right:0px;
  3655. border-radius:0px;
  3656. border-bottom-right-radius:0px;
  3657. border-bottom-left-radius:0px;
  3658. filter:drop-shadow(none);
  3659. transition:none;
  3660. }
  3661. #u45029 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:478px;
  3665. top:67px;
  3666. width:375px;
  3667. height:41px;
  3668. display:flex;
  3669. transition:none;
  3670. transform-origin:50% 50%;
  3671. }
  3672. #u45029 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 2px 2px 2px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u45029_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. visibility:hidden;
  3684. }
  3685. #u45030 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:478px;
  3689. top:24px;
  3690. width:375px;
  3691. height:44px;
  3692. display:flex;
  3693. transition:none;
  3694. }
  3695. #u45030 .text {
  3696. position:absolute;
  3697. align-self:center;
  3698. padding:2px 2px 2px 2px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u45030_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:375px;
  3708. height:44px;
  3709. }
  3710. #u45030_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u45031 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:0px;
  3722. height:0px;
  3723. }
  3724. #u45032_div {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:88px;
  3730. height:32px;
  3731. background:inherit;
  3732. background-color:rgba(255, 255, 255, 1);
  3733. box-sizing:border-box;
  3734. border-width:1px;
  3735. border-style:solid;
  3736. border-color:rgba(242, 242, 242, 1);
  3737. border-radius:33px;
  3738. filter:drop-shadow(none);
  3739. transition:none;
  3740. }
  3741. #u45032 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:758px;
  3745. top:71px;
  3746. width:88px;
  3747. height:32px;
  3748. display:flex;
  3749. transition:none;
  3750. transform-origin:50% 50%;
  3751. }
  3752. #u45032 .text {
  3753. position:absolute;
  3754. align-self:center;
  3755. padding:2px 2px 2px 2px;
  3756. box-sizing:border-box;
  3757. width:100%;
  3758. }
  3759. #u45032_text {
  3760. border-width:0px;
  3761. word-wrap:break-word;
  3762. text-transform:none;
  3763. visibility:hidden;
  3764. }
  3765. #u45033 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:0px;
  3771. height:0px;
  3772. }
  3773. #u45034 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:821px;
  3777. top:78px;
  3778. width:18px;
  3779. height:18px;
  3780. display:flex;
  3781. transition:none;
  3782. }
  3783. #u45034 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 2px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u45034_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:18px;
  3796. height:18px;
  3797. }
  3798. #u45034_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u45035 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:827px;
  3808. top:84px;
  3809. width:6px;
  3810. height:6px;
  3811. display:flex;
  3812. transition:none;
  3813. }
  3814. #u45035 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u45035_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:6px;
  3827. height:6px;
  3828. }
  3829. #u45035_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. visibility:hidden;
  3834. }
  3835. #u45036 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:0px;
  3841. height:0px;
  3842. }
  3843. #u45037 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:772px;
  3847. top:85px;
  3848. width:5px;
  3849. height:5px;
  3850. display:flex;
  3851. transition:none;
  3852. }
  3853. #u45037 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 2px 2px 2px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u45037_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:5px;
  3866. height:5px;
  3867. }
  3868. #u45037_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. visibility:hidden;
  3873. }
  3874. #u45038 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:788px;
  3878. top:85px;
  3879. width:5px;
  3880. height:5px;
  3881. display:flex;
  3882. transition:none;
  3883. }
  3884. #u45038 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 2px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u45038_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:5px;
  3897. height:5px;
  3898. }
  3899. #u45038_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u45039 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:779px;
  3909. top:84px;
  3910. width:7px;
  3911. height:7px;
  3912. display:flex;
  3913. transition:none;
  3914. }
  3915. #u45039 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 2px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u45039_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:7px;
  3928. height:7px;
  3929. }
  3930. #u45039_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u45040 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:796px;
  3940. top:87px;
  3941. width:18px;
  3942. height:1px;
  3943. display:flex;
  3944. -webkit-transform:rotate(90deg);
  3945. -moz-transform:rotate(90deg);
  3946. -ms-transform:rotate(90deg);
  3947. transform:rotate(90deg);
  3948. transition:none;
  3949. }
  3950. #u45040 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u45040_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:19px;
  3963. height:2px;
  3964. }
  3965. #u45040_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u45041_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:12px;
  3977. height:12px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. box-sizing:border-box;
  3981. border-width:2px;
  3982. border-style:solid;
  3983. border-color:rgba(51, 51, 51, 1);
  3984. border-right:0px;
  3985. border-bottom:0px;
  3986. border-radius:0px;
  3987. border-top-right-radius:0px;
  3988. border-bottom-left-radius:0px;
  3989. filter:drop-shadow(none);
  3990. transition:none;
  3991. }
  3992. #u45041 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:493px;
  3996. top:81px;
  3997. width:12px;
  3998. height:12px;
  3999. display:flex;
  4000. -webkit-transform:rotate(315deg);
  4001. -moz-transform:rotate(315deg);
  4002. -ms-transform:rotate(315deg);
  4003. transform:rotate(315deg);
  4004. transition:none;
  4005. transform-origin:50% 50%;
  4006. }
  4007. #u45041 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 2px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u45041_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u45042 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:0px;
  4026. height:0px;
  4027. }
  4028. #u45043_div {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:375px;
  4034. height:60px;
  4035. background:inherit;
  4036. background-color:rgba(255, 255, 255, 1);
  4037. box-sizing:border-box;
  4038. border-width:1px;
  4039. border-style:solid;
  4040. border-color:rgba(242, 242, 242, 1);
  4041. border-radius:20px;
  4042. border-top-left-radius:0px;
  4043. border-top-right-radius:0px;
  4044. filter:drop-shadow(none);
  4045. transition:none;
  4046. }
  4047. #u45043 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:478px;
  4051. top:779px;
  4052. width:375px;
  4053. height:60px;
  4054. display:flex;
  4055. transition:none;
  4056. transform-origin:50% 50%;
  4057. }
  4058. #u45043 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u45043_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u45044_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:97px;
  4077. height:40px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 1);
  4080. box-sizing:border-box;
  4081. border-width:1px;
  4082. border-style:solid;
  4083. border-color:rgba(121, 121, 121, 1);
  4084. border-radius:63px;
  4085. filter:drop-shadow(none);
  4086. transition:none;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:14px;
  4091. color:#555555;
  4092. }
  4093. #u45044 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:635px;
  4097. top:789px;
  4098. width:97px;
  4099. height:40px;
  4100. display:flex;
  4101. transition:none;
  4102. transform-origin:50% 50%;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:14px;
  4107. color:#555555;
  4108. }
  4109. #u45044 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 2px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u45044_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. }
  4121. #u45045_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:97px;
  4127. height:40px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 1);
  4130. box-sizing:border-box;
  4131. border-width:1px;
  4132. border-style:solid;
  4133. border-color:rgba(121, 121, 121, 1);
  4134. border-radius:63px;
  4135. filter:drop-shadow(none);
  4136. transition:none;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:14px;
  4141. color:#555555;
  4142. }
  4143. #u45045 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:742px;
  4147. top:789px;
  4148. width:97px;
  4149. height:40px;
  4150. display:flex;
  4151. transition:none;
  4152. transform-origin:50% 50%;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:14px;
  4157. color:#555555;
  4158. }
  4159. #u45045 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u45045_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. }
  4171. #u45046_div {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:73px;
  4177. height:25px;
  4178. background:inherit;
  4179. background-color:rgba(255, 255, 255, 0);
  4180. border-radius:0px;
  4181. filter:drop-shadow(none);
  4182. transition:none;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:18px;
  4187. }
  4188. #u45046 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:513px;
  4192. top:75px;
  4193. width:73px;
  4194. height:25px;
  4195. display:flex;
  4196. transition:none;
  4197. transform-origin:50% 50%;
  4198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:18px;
  4202. }
  4203. #u45046 .text {
  4204. position:absolute;
  4205. align-self:flex-start;
  4206. padding:0px 0px 0px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u45046_text {
  4211. border-width:0px;
  4212. white-space:nowrap;
  4213. text-transform:none;
  4214. }
  4215. #u45047 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:902px;
  4219. top:0px;
  4220. width:433px;
  4221. height:865px;
  4222. }
  4223. #u45048 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:433px;
  4229. height:865px;
  4230. display:flex;
  4231. transition:none;
  4232. }
  4233. #u45048 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u45048_img {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:433px;
  4246. height:865px;
  4247. }
  4248. #u45048_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u45049_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:375px;
  4260. height:40px;
  4261. background:inherit;
  4262. background-color:rgba(255, 255, 255, 1);
  4263. box-sizing:border-box;
  4264. border-width:1px;
  4265. border-style:solid;
  4266. border-color:rgba(215, 215, 215, 1);
  4267. border-left:0px;
  4268. border-top:0px;
  4269. border-right:0px;
  4270. border-radius:0px;
  4271. border-bottom-right-radius:0px;
  4272. border-bottom-left-radius:0px;
  4273. filter:drop-shadow(none);
  4274. transition:none;
  4275. }
  4276. #u45049 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:29px;
  4280. top:67px;
  4281. width:375px;
  4282. height:40px;
  4283. display:flex;
  4284. transition:none;
  4285. transform-origin:50% 50%;
  4286. }
  4287. #u45049 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 2px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u45049_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. visibility:hidden;
  4299. }
  4300. #u45050 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:0px;
  4306. height:0px;
  4307. }
  4308. #u45051_div {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:88px;
  4314. height:32px;
  4315. background:inherit;
  4316. background-color:rgba(255, 255, 255, 1);
  4317. box-sizing:border-box;
  4318. border-width:1px;
  4319. border-style:solid;
  4320. border-color:rgba(242, 242, 242, 1);
  4321. border-radius:33px;
  4322. filter:drop-shadow(none);
  4323. transition:none;
  4324. }
  4325. #u45051 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:309px;
  4329. top:71px;
  4330. width:88px;
  4331. height:32px;
  4332. display:flex;
  4333. transition:none;
  4334. transform-origin:50% 50%;
  4335. }
  4336. #u45051 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:2px 2px 2px 2px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u45051_text {
  4344. border-width:0px;
  4345. word-wrap:break-word;
  4346. text-transform:none;
  4347. visibility:hidden;
  4348. }
  4349. #u45052 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:0px;
  4355. height:0px;
  4356. }
  4357. #u45053 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:372px;
  4361. top:78px;
  4362. width:18px;
  4363. height:18px;
  4364. display:flex;
  4365. transition:none;
  4366. }
  4367. #u45053 .text {
  4368. position:absolute;
  4369. align-self:center;
  4370. padding:2px 2px 2px 2px;
  4371. box-sizing:border-box;
  4372. width:100%;
  4373. }
  4374. #u45053_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:18px;
  4380. height:18px;
  4381. }
  4382. #u45053_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. visibility:hidden;
  4387. }
  4388. #u45054 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:378px;
  4392. top:84px;
  4393. width:6px;
  4394. height:6px;
  4395. display:flex;
  4396. transition:none;
  4397. }
  4398. #u45054 .text {
  4399. position:absolute;
  4400. align-self:center;
  4401. padding:2px 2px 2px 2px;
  4402. box-sizing:border-box;
  4403. width:100%;
  4404. }
  4405. #u45054_img {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:6px;
  4411. height:6px;
  4412. }
  4413. #u45054_text {
  4414. border-width:0px;
  4415. word-wrap:break-word;
  4416. text-transform:none;
  4417. visibility:hidden;
  4418. }
  4419. #u45055 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:0px;
  4425. height:0px;
  4426. }
  4427. #u45056 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:323px;
  4431. top:85px;
  4432. width:5px;
  4433. height:5px;
  4434. display:flex;
  4435. transition:none;
  4436. }
  4437. #u45056 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 2px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u45056_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:5px;
  4450. height:5px;
  4451. }
  4452. #u45056_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u45057 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:339px;
  4462. top:85px;
  4463. width:5px;
  4464. height:5px;
  4465. display:flex;
  4466. transition:none;
  4467. }
  4468. #u45057 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u45057_img {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:5px;
  4481. height:5px;
  4482. }
  4483. #u45057_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u45058 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:330px;
  4493. top:84px;
  4494. width:7px;
  4495. height:7px;
  4496. display:flex;
  4497. transition:none;
  4498. }
  4499. #u45058 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 2px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u45058_img {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:7px;
  4512. height:7px;
  4513. }
  4514. #u45058_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u45059 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:347px;
  4524. top:87px;
  4525. width:18px;
  4526. height:1px;
  4527. display:flex;
  4528. -webkit-transform:rotate(90deg);
  4529. -moz-transform:rotate(90deg);
  4530. -ms-transform:rotate(90deg);
  4531. transform:rotate(90deg);
  4532. transition:none;
  4533. }
  4534. #u45059 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u45059_img {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:19px;
  4547. height:2px;
  4548. }
  4549. #u45059_text {
  4550. border-width:0px;
  4551. word-wrap:break-word;
  4552. text-transform:none;
  4553. visibility:hidden;
  4554. }
  4555. #u45060 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:29px;
  4559. top:24px;
  4560. width:375px;
  4561. height:44px;
  4562. display:flex;
  4563. transition:none;
  4564. }
  4565. #u45060 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 2px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u45060_img {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:375px;
  4578. height:44px;
  4579. }
  4580. #u45060_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u45061_div {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:375px;
  4592. height:50px;
  4593. background:inherit;
  4594. background-color:rgba(255, 255, 255, 1);
  4595. box-sizing:border-box;
  4596. border-width:1px;
  4597. border-style:solid;
  4598. border-color:rgba(242, 242, 242, 1);
  4599. border-radius:26px;
  4600. border-top-left-radius:0px;
  4601. border-top-right-radius:0px;
  4602. filter:drop-shadow(none);
  4603. transition:none;
  4604. }
  4605. #u45061 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:29px;
  4609. top:788px;
  4610. width:375px;
  4611. height:50px;
  4612. display:flex;
  4613. transition:none;
  4614. transform-origin:50% 50%;
  4615. }
  4616. #u45061 .text {
  4617. position:absolute;
  4618. align-self:center;
  4619. padding:2px 2px 2px 2px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u45061_text {
  4624. border-width:0px;
  4625. word-wrap:break-word;
  4626. text-transform:none;
  4627. visibility:hidden;
  4628. }
  4629. #u45062 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:0px;
  4635. height:0px;
  4636. }
  4637. #u45063 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:69px;
  4641. top:792px;
  4642. width:24px;
  4643. height:24px;
  4644. display:flex;
  4645. transition:none;
  4646. font-size:8px;
  4647. }
  4648. #u45063 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 2px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u45063_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:24px;
  4661. height:24px;
  4662. }
  4663. #u45063_text {
  4664. border-width:0px;
  4665. word-wrap:break-word;
  4666. text-transform:none;
  4667. }
  4668. #u45064_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:25px;
  4674. height:17px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 0);
  4677. border-radius:0px;
  4678. filter:drop-shadow(none);
  4679. transition:none;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:12px;
  4684. }
  4685. #u45064 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:69px;
  4689. top:817px;
  4690. width:25px;
  4691. height:17px;
  4692. display:flex;
  4693. transition:none;
  4694. transform-origin:50% 50%;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:12px;
  4699. }
  4700. #u45064 .text {
  4701. position:absolute;
  4702. align-self:flex-start;
  4703. padding:0px 0px 0px 0px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u45064_text {
  4708. border-width:0px;
  4709. white-space:nowrap;
  4710. text-transform:none;
  4711. }
  4712. #u45065 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:0px;
  4718. height:0px;
  4719. }
  4720. #u45066 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:339px;
  4724. top:794px;
  4725. width:24px;
  4726. height:24px;
  4727. display:flex;
  4728. transition:none;
  4729. font-size:8px;
  4730. }
  4731. #u45066 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 2px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u45066_img {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:24px;
  4744. height:24px;
  4745. }
  4746. #u45066_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. }
  4751. #u45067_div {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:25px;
  4757. height:17px;
  4758. background:inherit;
  4759. background-color:rgba(255, 255, 255, 0);
  4760. border-radius:0px;
  4761. filter:drop-shadow(none);
  4762. transition:none;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:12px;
  4767. }
  4768. #u45067 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:339px;
  4772. top:819px;
  4773. width:25px;
  4774. height:17px;
  4775. display:flex;
  4776. transition:none;
  4777. transform-origin:50% 50%;
  4778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:12px;
  4782. }
  4783. #u45067 .text {
  4784. position:absolute;
  4785. align-self:flex-start;
  4786. padding:0px 0px 0px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u45067_text {
  4791. border-width:0px;
  4792. white-space:nowrap;
  4793. text-transform:none;
  4794. }
  4795. #u45068_div {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:375px;
  4801. height:681px;
  4802. background:inherit;
  4803. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4804. border-radius:0px;
  4805. filter:drop-shadow(none);
  4806. transition:none;
  4807. }
  4808. #u45068 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:29px;
  4812. top:107px;
  4813. width:375px;
  4814. height:681px;
  4815. display:flex;
  4816. transition:none;
  4817. transform-origin:50% 50%;
  4818. }
  4819. #u45068 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 2px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u45068_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u45069 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:0px;
  4838. height:0px;
  4839. }
  4840. #u45070 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:251px;
  4844. top:792px;
  4845. width:24px;
  4846. height:24px;
  4847. display:flex;
  4848. transition:none;
  4849. font-size:8px;
  4850. }
  4851. #u45070 .text {
  4852. position:absolute;
  4853. align-self:center;
  4854. padding:2px 2px 2px 2px;
  4855. box-sizing:border-box;
  4856. width:100%;
  4857. }
  4858. #u45070_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:24px;
  4864. height:24px;
  4865. }
  4866. #u45070_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. }
  4871. #u45071_div {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:37px;
  4877. height:17px;
  4878. background:inherit;
  4879. background-color:rgba(255, 255, 255, 0);
  4880. border-radius:0px;
  4881. filter:drop-shadow(none);
  4882. transition:none;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. }
  4888. #u45071 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:245px;
  4892. top:817px;
  4893. width:37px;
  4894. height:17px;
  4895. display:flex;
  4896. transition:none;
  4897. transform-origin:50% 50%;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:12px;
  4902. }
  4903. #u45071 .text {
  4904. position:absolute;
  4905. align-self:flex-start;
  4906. padding:0px 0px 0px 0px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u45071_text {
  4911. border-width:0px;
  4912. white-space:nowrap;
  4913. text-transform:none;
  4914. }
  4915. #u45072 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:0px;
  4921. height:0px;
  4922. }
  4923. #u45073 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:157px;
  4927. top:792px;
  4928. width:24px;
  4929. height:24px;
  4930. display:flex;
  4931. transition:none;
  4932. font-size:8px;
  4933. }
  4934. #u45073 .text {
  4935. position:absolute;
  4936. align-self:center;
  4937. padding:2px 2px 2px 2px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u45073_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:24px;
  4947. height:24px;
  4948. }
  4949. #u45073_text {
  4950. border-width:0px;
  4951. word-wrap:break-word;
  4952. text-transform:none;
  4953. }
  4954. #u45074_div {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:37px;
  4960. height:17px;
  4961. background:inherit;
  4962. background-color:rgba(255, 255, 255, 0);
  4963. border-radius:0px;
  4964. filter:drop-shadow(none);
  4965. transition:none;
  4966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4967. font-weight:400;
  4968. font-style:normal;
  4969. font-size:12px;
  4970. }
  4971. #u45074 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:151px;
  4975. top:817px;
  4976. width:37px;
  4977. height:17px;
  4978. display:flex;
  4979. transition:none;
  4980. transform-origin:50% 50%;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:12px;
  4985. }
  4986. #u45074 .text {
  4987. position:absolute;
  4988. align-self:flex-start;
  4989. padding:0px 0px 0px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u45074_text {
  4994. border-width:0px;
  4995. white-space:nowrap;
  4996. text-transform:none;
  4997. }
  4998. #u45075_div {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:375px;
  5004. height:732px;
  5005. background:inherit;
  5006. background-color:rgba(242, 242, 242, 0.996078431372549);
  5007. border-top:0px;
  5008. border-radius:28px;
  5009. border-top-left-radius:0px;
  5010. border-top-right-radius:0px;
  5011. filter:drop-shadow(none);
  5012. transition:none;
  5013. }
  5014. #u45075 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:931px;
  5018. top:107px;
  5019. width:375px;
  5020. height:732px;
  5021. display:flex;
  5022. transition:none;
  5023. transform-origin:50% 50%;
  5024. }
  5025. #u45075 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 2px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u45075_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u45076_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:375px;
  5044. height:41px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 1);
  5047. box-sizing:border-box;
  5048. border-width:1px;
  5049. border-style:solid;
  5050. border-color:rgba(215, 215, 215, 1);
  5051. border-left:0px;
  5052. border-top:0px;
  5053. border-right:0px;
  5054. border-radius:0px;
  5055. border-bottom-right-radius:0px;
  5056. border-bottom-left-radius:0px;
  5057. filter:drop-shadow(none);
  5058. transition:none;
  5059. }
  5060. #u45076 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:931px;
  5064. top:67px;
  5065. width:375px;
  5066. height:41px;
  5067. display:flex;
  5068. transition:none;
  5069. transform-origin:50% 50%;
  5070. }
  5071. #u45076 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 2px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u45076_text {
  5079. border-width:0px;
  5080. word-wrap:break-word;
  5081. text-transform:none;
  5082. visibility:hidden;
  5083. }
  5084. #u45077 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:931px;
  5088. top:24px;
  5089. width:375px;
  5090. height:44px;
  5091. display:flex;
  5092. transition:none;
  5093. }
  5094. #u45077 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:2px 2px 2px 2px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u45077_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:375px;
  5107. height:44px;
  5108. }
  5109. #u45077_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u45078 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:0px;
  5121. height:0px;
  5122. }
  5123. #u45079_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:88px;
  5129. height:32px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 1);
  5132. box-sizing:border-box;
  5133. border-width:1px;
  5134. border-style:solid;
  5135. border-color:rgba(242, 242, 242, 1);
  5136. border-radius:33px;
  5137. filter:drop-shadow(none);
  5138. transition:none;
  5139. }
  5140. #u45079 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:1211px;
  5144. top:71px;
  5145. width:88px;
  5146. height:32px;
  5147. display:flex;
  5148. transition:none;
  5149. transform-origin:50% 50%;
  5150. }
  5151. #u45079 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 2px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u45079_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u45080 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:0px;
  5170. height:0px;
  5171. }
  5172. #u45081 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:1274px;
  5176. top:78px;
  5177. width:18px;
  5178. height:18px;
  5179. display:flex;
  5180. transition:none;
  5181. }
  5182. #u45081 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 2px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u45081_img {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:18px;
  5195. height:18px;
  5196. }
  5197. #u45081_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u45082 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:1280px;
  5207. top:84px;
  5208. width:6px;
  5209. height:6px;
  5210. display:flex;
  5211. transition:none;
  5212. }
  5213. #u45082 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 2px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u45082_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:6px;
  5226. height:6px;
  5227. }
  5228. #u45082_text {
  5229. border-width:0px;
  5230. word-wrap:break-word;
  5231. text-transform:none;
  5232. visibility:hidden;
  5233. }
  5234. #u45083 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:0px;
  5240. height:0px;
  5241. }
  5242. #u45084 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:1225px;
  5246. top:85px;
  5247. width:5px;
  5248. height:5px;
  5249. display:flex;
  5250. transition:none;
  5251. }
  5252. #u45084 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 2px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u45084_img {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:5px;
  5265. height:5px;
  5266. }
  5267. #u45084_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u45085 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:1241px;
  5277. top:85px;
  5278. width:5px;
  5279. height:5px;
  5280. display:flex;
  5281. transition:none;
  5282. }
  5283. #u45085 .text {
  5284. position:absolute;
  5285. align-self:center;
  5286. padding:2px 2px 2px 2px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u45085_img {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:5px;
  5296. height:5px;
  5297. }
  5298. #u45085_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u45086 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:1232px;
  5308. top:84px;
  5309. width:7px;
  5310. height:7px;
  5311. display:flex;
  5312. transition:none;
  5313. }
  5314. #u45086 .text {
  5315. position:absolute;
  5316. align-self:center;
  5317. padding:2px 2px 2px 2px;
  5318. box-sizing:border-box;
  5319. width:100%;
  5320. }
  5321. #u45086_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:7px;
  5327. height:7px;
  5328. }
  5329. #u45086_text {
  5330. border-width:0px;
  5331. word-wrap:break-word;
  5332. text-transform:none;
  5333. visibility:hidden;
  5334. }
  5335. #u45087 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:1249px;
  5339. top:87px;
  5340. width:18px;
  5341. height:1px;
  5342. display:flex;
  5343. -webkit-transform:rotate(90deg);
  5344. -moz-transform:rotate(90deg);
  5345. -ms-transform:rotate(90deg);
  5346. transform:rotate(90deg);
  5347. transition:none;
  5348. }
  5349. #u45087 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u45087_img {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:19px;
  5362. height:2px;
  5363. }
  5364. #u45087_text {
  5365. border-width:0px;
  5366. word-wrap:break-word;
  5367. text-transform:none;
  5368. visibility:hidden;
  5369. }
  5370. #u45088_div {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:12px;
  5376. height:12px;
  5377. background:inherit;
  5378. background-color:rgba(255, 255, 255, 0);
  5379. box-sizing:border-box;
  5380. border-width:2px;
  5381. border-style:solid;
  5382. border-color:rgba(51, 51, 51, 1);
  5383. border-right:0px;
  5384. border-bottom:0px;
  5385. border-radius:0px;
  5386. border-top-right-radius:0px;
  5387. border-bottom-left-radius:0px;
  5388. filter:drop-shadow(none);
  5389. transition:none;
  5390. }
  5391. #u45088 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:946px;
  5395. top:81px;
  5396. width:12px;
  5397. height:12px;
  5398. display:flex;
  5399. -webkit-transform:rotate(315deg);
  5400. -moz-transform:rotate(315deg);
  5401. -ms-transform:rotate(315deg);
  5402. transform:rotate(315deg);
  5403. transition:none;
  5404. transform-origin:50% 50%;
  5405. }
  5406. #u45088 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 2px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u45088_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u45089_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:73px;
  5425. height:25px;
  5426. background:inherit;
  5427. background-color:rgba(255, 255, 255, 0);
  5428. border-radius:0px;
  5429. filter:drop-shadow(none);
  5430. transition:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:18px;
  5435. }
  5436. #u45089 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:966px;
  5440. top:75px;
  5441. width:73px;
  5442. height:25px;
  5443. display:flex;
  5444. transition:none;
  5445. transform-origin:50% 50%;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:18px;
  5450. }
  5451. #u45089 .text {
  5452. position:absolute;
  5453. align-self:flex-start;
  5454. padding:0px 0px 0px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u45089_text {
  5459. border-width:0px;
  5460. white-space:nowrap;
  5461. text-transform:none;
  5462. }
  5463. #u45090 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:0px;
  5469. height:0px;
  5470. }
  5471. #u45091_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:375px;
  5477. height:115px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 1);
  5480. box-sizing:border-box;
  5481. border-width:1px;
  5482. border-style:solid;
  5483. border-color:rgba(215, 215, 215, 1);
  5484. border-left:0px;
  5485. border-top:0px;
  5486. border-right:0px;
  5487. border-radius:0px;
  5488. border-bottom-right-radius:0px;
  5489. border-bottom-left-radius:0px;
  5490. filter:drop-shadow(none);
  5491. transition:none;
  5492. }
  5493. #u45091 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:931px;
  5497. top:108px;
  5498. width:375px;
  5499. height:115px;
  5500. display:flex;
  5501. transition:none;
  5502. transform-origin:50% 50%;
  5503. }
  5504. #u45091 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u45091_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. visibility:hidden;
  5516. }
  5517. #u45092_div {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:353px;
  5523. height:40px;
  5524. background:inherit;
  5525. background-color:rgba(255, 255, 255, 0);
  5526. border-top:0px;
  5527. border-right:0px;
  5528. border-bottom:0px;
  5529. border-radius:0px;
  5530. border-top-left-radius:0px;
  5531. border-bottom-left-radius:0px;
  5532. filter:drop-shadow(none);
  5533. transition:none;
  5534. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5535. font-weight:500;
  5536. font-style:normal;
  5537. font-size:14px;
  5538. line-height:30px;
  5539. }
  5540. #u45092 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:944px;
  5544. top:116px;
  5545. width:353px;
  5546. height:40px;
  5547. display:flex;
  5548. transition:none;
  5549. transform-origin:50% 50%;
  5550. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5551. font-weight:500;
  5552. font-style:normal;
  5553. font-size:14px;
  5554. line-height:30px;
  5555. }
  5556. #u45092 .text {
  5557. position:absolute;
  5558. align-self:flex-start;
  5559. padding:5px 10px 5px 0px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u45092_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. }
  5568. #u45093_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:11px;
  5574. height:11px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 0);
  5577. box-sizing:border-box;
  5578. border-width:2px;
  5579. border-style:solid;
  5580. border-color:rgba(51, 51, 51, 1);
  5581. border-right:0px;
  5582. border-bottom:0px;
  5583. border-radius:0px;
  5584. border-top-right-radius:0px;
  5585. border-bottom-left-radius:0px;
  5586. filter:drop-shadow(none);
  5587. transition:none;
  5588. }
  5589. #u45093 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:1276px;
  5593. top:130px;
  5594. width:11px;
  5595. height:11px;
  5596. display:flex;
  5597. -webkit-transform:rotate(225deg);
  5598. -moz-transform:rotate(225deg);
  5599. -ms-transform:rotate(225deg);
  5600. transform:rotate(225deg);
  5601. transition:none;
  5602. transform-origin:50% 50%;
  5603. }
  5604. #u45093 .text {
  5605. position:absolute;
  5606. align-self:center;
  5607. padding:2px 2px 2px 2px;
  5608. box-sizing:border-box;
  5609. width:100%;
  5610. }
  5611. #u45093_text {
  5612. border-width:0px;
  5613. word-wrap:break-word;
  5614. text-transform:none;
  5615. visibility:hidden;
  5616. }
  5617. #u45094_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:353px;
  5623. height:65px;
  5624. background:inherit;
  5625. background-color:rgba(255, 255, 255, 0);
  5626. border-top:0px;
  5627. border-right:0px;
  5628. border-bottom:0px;
  5629. border-radius:0px;
  5630. border-top-left-radius:0px;
  5631. border-bottom-left-radius:0px;
  5632. filter:drop-shadow(none);
  5633. transition:none;
  5634. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5635. font-style:normal;
  5636. }
  5637. #u45094 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:946px;
  5641. top:156px;
  5642. width:353px;
  5643. height:65px;
  5644. display:flex;
  5645. transition:none;
  5646. transform-origin:50% 50%;
  5647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5648. font-style:normal;
  5649. }
  5650. #u45094 .text {
  5651. position:absolute;
  5652. align-self:flex-start;
  5653. padding:5px 10px 5px 0px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u45094_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. }
  5662. #u45095_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:35px;
  5668. height:17px;
  5669. background:inherit;
  5670. background-color:rgba(245, 154, 35, 1);
  5671. border-radius:14px;
  5672. filter:drop-shadow(none);
  5673. transition:none;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:12px;
  5678. color:#FFFFFF;
  5679. }
  5680. #u45095 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:1094px;
  5684. top:166px;
  5685. width:35px;
  5686. height:17px;
  5687. display:flex;
  5688. transition:none;
  5689. transform-origin:50% 50%;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:12px;
  5694. color:#FFFFFF;
  5695. }
  5696. #u45095 .text {
  5697. position:absolute;
  5698. align-self:flex-start;
  5699. padding:0px 5px 0px 5px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u45095_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u45096_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:375px;
  5714. height:337px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 1);
  5717. border-left:0px;
  5718. border-top:0px;
  5719. border-right:0px;
  5720. border-radius:0px;
  5721. border-bottom-right-radius:0px;
  5722. border-bottom-left-radius:0px;
  5723. filter:drop-shadow(none);
  5724. transition:none;
  5725. }
  5726. #u45096 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:931px;
  5730. top:233px;
  5731. width:375px;
  5732. height:337px;
  5733. display:flex;
  5734. transition:none;
  5735. transform-origin:50% 50%;
  5736. }
  5737. #u45096 .text {
  5738. position:absolute;
  5739. align-self:center;
  5740. padding:2px 2px 2px 2px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u45096_text {
  5745. border-width:0px;
  5746. word-wrap:break-word;
  5747. text-transform:none;
  5748. visibility:hidden;
  5749. }
  5750. #u45097_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:71px;
  5756. height:210px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 0);
  5759. border-left:0px;
  5760. border-top:0px;
  5761. border-right:0px;
  5762. border-radius:0px;
  5763. border-bottom-right-radius:0px;
  5764. border-bottom-left-radius:0px;
  5765. filter:drop-shadow(none);
  5766. transition:none;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:14px;
  5771. color:#7F7F7F;
  5772. line-height:30px;
  5773. }
  5774. #u45097 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:946px;
  5778. top:281px;
  5779. width:71px;
  5780. height:210px;
  5781. display:flex;
  5782. transition:none;
  5783. transform-origin:50% 50%;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:14px;
  5788. color:#7F7F7F;
  5789. line-height:30px;
  5790. }
  5791. #u45097 .text {
  5792. position:absolute;
  5793. align-self:flex-start;
  5794. padding:0px 0px 0px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u45097_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u45098_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:85px;
  5809. height:30px;
  5810. background:inherit;
  5811. background-color:rgba(255, 255, 255, 0);
  5812. border-left:0px;
  5813. border-top:0px;
  5814. border-right:0px;
  5815. border-radius:0px;
  5816. border-bottom-right-radius:0px;
  5817. border-bottom-left-radius:0px;
  5818. filter:drop-shadow(none);
  5819. transition:none;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. line-height:30px;
  5825. }
  5826. #u45098 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:946px;
  5830. top:243px;
  5831. width:85px;
  5832. height:30px;
  5833. display:flex;
  5834. transition:none;
  5835. transform-origin:50% 50%;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:14px;
  5840. line-height:30px;
  5841. }
  5842. #u45098 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:0px 0px 0px 0px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u45098_text {
  5850. border-width:0px;
  5851. white-space:nowrap;
  5852. text-transform:none;
  5853. }
  5854. #u45099_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:251px;
  5860. height:210px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 0);
  5863. border-left:0px;
  5864. border-top:0px;
  5865. border-right:0px;
  5866. border-radius:0px;
  5867. border-bottom-right-radius:0px;
  5868. border-bottom-left-radius:0px;
  5869. filter:drop-shadow(none);
  5870. transition:none;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. line-height:30px;
  5876. }
  5877. #u45099 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:1017px;
  5881. top:281px;
  5882. width:251px;
  5883. height:210px;
  5884. display:flex;
  5885. transition:none;
  5886. transform-origin:50% 50%;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. line-height:30px;
  5892. }
  5893. #u45099 .text {
  5894. position:absolute;
  5895. align-self:flex-start;
  5896. padding:0px 0px 0px 0px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u45099_text {
  5901. border-width:0px;
  5902. white-space:nowrap;
  5903. text-transform:none;
  5904. }
  5905. #u45100 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:946px;
  5909. top:501px;
  5910. width:60px;
  5911. height:46px;
  5912. display:flex;
  5913. transition:none;
  5914. }
  5915. #u45100 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 2px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u45100_img {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:60px;
  5928. height:46px;
  5929. }
  5930. #u45100_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. visibility:hidden;
  5935. }
  5936. #u45101 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:1016px;
  5940. top:501px;
  5941. width:60px;
  5942. height:46px;
  5943. display:flex;
  5944. transition:none;
  5945. }
  5946. #u45101 .text {
  5947. position:absolute;
  5948. align-self:center;
  5949. padding:2px 2px 2px 2px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u45101_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:60px;
  5959. height:46px;
  5960. }
  5961. #u45101_text {
  5962. border-width:0px;
  5963. word-wrap:break-word;
  5964. text-transform:none;
  5965. visibility:hidden;
  5966. }
  5967. #u45102 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:1088px;
  5971. top:501px;
  5972. width:60px;
  5973. height:46px;
  5974. display:flex;
  5975. transition:none;
  5976. }
  5977. #u45102 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 2px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u45102_img {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:60px;
  5990. height:46px;
  5991. }
  5992. #u45102_text {
  5993. border-width:0px;
  5994. word-wrap:break-word;
  5995. text-transform:none;
  5996. visibility:hidden;
  5997. }
  5998. #u45103 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1158px;
  6002. top:501px;
  6003. width:60px;
  6004. height:46px;
  6005. display:flex;
  6006. transition:none;
  6007. }
  6008. #u45103 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 2px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u45103_img {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:60px;
  6021. height:46px;
  6022. }
  6023. #u45103_text {
  6024. border-width:0px;
  6025. word-wrap:break-word;
  6026. text-transform:none;
  6027. visibility:hidden;
  6028. }
  6029. #u45104_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:43px;
  6035. height:20px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border-radius:0px;
  6039. filter:drop-shadow(none);
  6040. transition:none;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. color:#F59A23;
  6045. }
  6046. #u45104 {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:1216px;
  6050. top:126px;
  6051. width:43px;
  6052. height:20px;
  6053. display:flex;
  6054. transition:none;
  6055. transform-origin:50% 50%;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. color:#F59A23;
  6060. }
  6061. #u45104 .text {
  6062. position:absolute;
  6063. align-self:flex-start;
  6064. padding:0px 0px 0px 0px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u45104_text {
  6069. border-width:0px;
  6070. white-space:nowrap;
  6071. text-transform:none;
  6072. }
  6073. #u45105 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:1355px;
  6077. top:0px;
  6078. width:433px;
  6079. height:865px;
  6080. }
  6081. #u45106 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:433px;
  6087. height:865px;
  6088. display:flex;
  6089. transition:none;
  6090. }
  6091. #u45106 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:2px 2px 2px 2px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u45106_img {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:433px;
  6104. height:865px;
  6105. }
  6106. #u45106_text {
  6107. border-width:0px;
  6108. word-wrap:break-word;
  6109. text-transform:none;
  6110. visibility:hidden;
  6111. }
  6112. #u45107_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:375px;
  6118. height:40px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 1);
  6121. box-sizing:border-box;
  6122. border-width:1px;
  6123. border-style:solid;
  6124. border-color:rgba(215, 215, 215, 1);
  6125. border-left:0px;
  6126. border-top:0px;
  6127. border-right:0px;
  6128. border-radius:0px;
  6129. border-bottom-right-radius:0px;
  6130. border-bottom-left-radius:0px;
  6131. filter:drop-shadow(none);
  6132. transition:none;
  6133. }
  6134. #u45107 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:29px;
  6138. top:67px;
  6139. width:375px;
  6140. height:40px;
  6141. display:flex;
  6142. transition:none;
  6143. transform-origin:50% 50%;
  6144. }
  6145. #u45107 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u45107_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u45108 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:0px;
  6164. height:0px;
  6165. }
  6166. #u45109_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:88px;
  6172. height:32px;
  6173. background:inherit;
  6174. background-color:rgba(255, 255, 255, 1);
  6175. box-sizing:border-box;
  6176. border-width:1px;
  6177. border-style:solid;
  6178. border-color:rgba(242, 242, 242, 1);
  6179. border-radius:33px;
  6180. filter:drop-shadow(none);
  6181. transition:none;
  6182. }
  6183. #u45109 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:309px;
  6187. top:71px;
  6188. width:88px;
  6189. height:32px;
  6190. display:flex;
  6191. transition:none;
  6192. transform-origin:50% 50%;
  6193. }
  6194. #u45109 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u45109_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u45110 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u45111 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:372px;
  6219. top:78px;
  6220. width:18px;
  6221. height:18px;
  6222. display:flex;
  6223. transition:none;
  6224. }
  6225. #u45111 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u45111_img {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:18px;
  6238. height:18px;
  6239. }
  6240. #u45111_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. visibility:hidden;
  6245. }
  6246. #u45112 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:378px;
  6250. top:84px;
  6251. width:6px;
  6252. height:6px;
  6253. display:flex;
  6254. transition:none;
  6255. }
  6256. #u45112 .text {
  6257. position:absolute;
  6258. align-self:center;
  6259. padding:2px 2px 2px 2px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u45112_img {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:6px;
  6269. height:6px;
  6270. }
  6271. #u45112_text {
  6272. border-width:0px;
  6273. word-wrap:break-word;
  6274. text-transform:none;
  6275. visibility:hidden;
  6276. }
  6277. #u45113 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:0px;
  6283. height:0px;
  6284. }
  6285. #u45114 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:323px;
  6289. top:85px;
  6290. width:5px;
  6291. height:5px;
  6292. display:flex;
  6293. transition:none;
  6294. }
  6295. #u45114 .text {
  6296. position:absolute;
  6297. align-self:center;
  6298. padding:2px 2px 2px 2px;
  6299. box-sizing:border-box;
  6300. width:100%;
  6301. }
  6302. #u45114_img {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:5px;
  6308. height:5px;
  6309. }
  6310. #u45114_text {
  6311. border-width:0px;
  6312. word-wrap:break-word;
  6313. text-transform:none;
  6314. visibility:hidden;
  6315. }
  6316. #u45115 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:339px;
  6320. top:85px;
  6321. width:5px;
  6322. height:5px;
  6323. display:flex;
  6324. transition:none;
  6325. }
  6326. #u45115 .text {
  6327. position:absolute;
  6328. align-self:center;
  6329. padding:2px 2px 2px 2px;
  6330. box-sizing:border-box;
  6331. width:100%;
  6332. }
  6333. #u45115_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:5px;
  6339. height:5px;
  6340. }
  6341. #u45115_text {
  6342. border-width:0px;
  6343. word-wrap:break-word;
  6344. text-transform:none;
  6345. visibility:hidden;
  6346. }
  6347. #u45116 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:330px;
  6351. top:84px;
  6352. width:7px;
  6353. height:7px;
  6354. display:flex;
  6355. transition:none;
  6356. }
  6357. #u45116 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 2px 2px 2px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u45116_img {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:7px;
  6370. height:7px;
  6371. }
  6372. #u45116_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u45117 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:347px;
  6382. top:87px;
  6383. width:18px;
  6384. height:1px;
  6385. display:flex;
  6386. -webkit-transform:rotate(90deg);
  6387. -moz-transform:rotate(90deg);
  6388. -ms-transform:rotate(90deg);
  6389. transform:rotate(90deg);
  6390. transition:none;
  6391. }
  6392. #u45117 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 2px 2px 2px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u45117_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:19px;
  6405. height:2px;
  6406. }
  6407. #u45117_text {
  6408. border-width:0px;
  6409. word-wrap:break-word;
  6410. text-transform:none;
  6411. visibility:hidden;
  6412. }
  6413. #u45118 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:29px;
  6417. top:24px;
  6418. width:375px;
  6419. height:44px;
  6420. display:flex;
  6421. transition:none;
  6422. }
  6423. #u45118 .text {
  6424. position:absolute;
  6425. align-self:center;
  6426. padding:2px 2px 2px 2px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u45118_img {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:375px;
  6436. height:44px;
  6437. }
  6438. #u45118_text {
  6439. border-width:0px;
  6440. word-wrap:break-word;
  6441. text-transform:none;
  6442. visibility:hidden;
  6443. }
  6444. #u45119_div {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:375px;
  6450. height:50px;
  6451. background:inherit;
  6452. background-color:rgba(255, 255, 255, 1);
  6453. box-sizing:border-box;
  6454. border-width:1px;
  6455. border-style:solid;
  6456. border-color:rgba(242, 242, 242, 1);
  6457. border-radius:26px;
  6458. border-top-left-radius:0px;
  6459. border-top-right-radius:0px;
  6460. filter:drop-shadow(none);
  6461. transition:none;
  6462. }
  6463. #u45119 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:29px;
  6467. top:788px;
  6468. width:375px;
  6469. height:50px;
  6470. display:flex;
  6471. transition:none;
  6472. transform-origin:50% 50%;
  6473. }
  6474. #u45119 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 2px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u45119_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. visibility:hidden;
  6486. }
  6487. #u45120 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:0px;
  6493. height:0px;
  6494. }
  6495. #u45121 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:69px;
  6499. top:792px;
  6500. width:24px;
  6501. height:24px;
  6502. display:flex;
  6503. transition:none;
  6504. font-size:8px;
  6505. }
  6506. #u45121 .text {
  6507. position:absolute;
  6508. align-self:center;
  6509. padding:2px 2px 2px 2px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u45121_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:24px;
  6519. height:24px;
  6520. }
  6521. #u45121_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u45122_div {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:25px;
  6532. height:17px;
  6533. background:inherit;
  6534. background-color:rgba(255, 255, 255, 0);
  6535. border-radius:0px;
  6536. filter:drop-shadow(none);
  6537. transition:none;
  6538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:12px;
  6542. }
  6543. #u45122 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:69px;
  6547. top:817px;
  6548. width:25px;
  6549. height:17px;
  6550. display:flex;
  6551. transition:none;
  6552. transform-origin:50% 50%;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:12px;
  6557. }
  6558. #u45122 .text {
  6559. position:absolute;
  6560. align-self:flex-start;
  6561. padding:0px 0px 0px 0px;
  6562. box-sizing:border-box;
  6563. width:100%;
  6564. }
  6565. #u45122_text {
  6566. border-width:0px;
  6567. white-space:nowrap;
  6568. text-transform:none;
  6569. }
  6570. #u45123 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:0px;
  6576. height:0px;
  6577. }
  6578. #u45124 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:339px;
  6582. top:794px;
  6583. width:24px;
  6584. height:24px;
  6585. display:flex;
  6586. transition:none;
  6587. font-size:8px;
  6588. }
  6589. #u45124 .text {
  6590. position:absolute;
  6591. align-self:center;
  6592. padding:2px 2px 2px 2px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u45124_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:24px;
  6602. height:24px;
  6603. }
  6604. #u45124_text {
  6605. border-width:0px;
  6606. word-wrap:break-word;
  6607. text-transform:none;
  6608. }
  6609. #u45125_div {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:25px;
  6615. height:17px;
  6616. background:inherit;
  6617. background-color:rgba(255, 255, 255, 0);
  6618. border-radius:0px;
  6619. filter:drop-shadow(none);
  6620. transition:none;
  6621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6622. font-weight:400;
  6623. font-style:normal;
  6624. font-size:12px;
  6625. }
  6626. #u45125 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:339px;
  6630. top:819px;
  6631. width:25px;
  6632. height:17px;
  6633. display:flex;
  6634. transition:none;
  6635. transform-origin:50% 50%;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:12px;
  6640. }
  6641. #u45125 .text {
  6642. position:absolute;
  6643. align-self:flex-start;
  6644. padding:0px 0px 0px 0px;
  6645. box-sizing:border-box;
  6646. width:100%;
  6647. }
  6648. #u45125_text {
  6649. border-width:0px;
  6650. white-space:nowrap;
  6651. text-transform:none;
  6652. }
  6653. #u45126_div {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:375px;
  6659. height:681px;
  6660. background:inherit;
  6661. background-color:rgba(242, 242, 242, 0.4627450980392157);
  6662. border-radius:0px;
  6663. filter:drop-shadow(none);
  6664. transition:none;
  6665. }
  6666. #u45126 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:29px;
  6670. top:107px;
  6671. width:375px;
  6672. height:681px;
  6673. display:flex;
  6674. transition:none;
  6675. transform-origin:50% 50%;
  6676. }
  6677. #u45126 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:2px 2px 2px 2px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u45126_text {
  6685. border-width:0px;
  6686. word-wrap:break-word;
  6687. text-transform:none;
  6688. visibility:hidden;
  6689. }
  6690. #u45127 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:0px;
  6696. height:0px;
  6697. }
  6698. #u45128 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:251px;
  6702. top:792px;
  6703. width:24px;
  6704. height:24px;
  6705. display:flex;
  6706. transition:none;
  6707. font-size:8px;
  6708. }
  6709. #u45128 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:2px 2px 2px 2px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u45128_img {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:24px;
  6722. height:24px;
  6723. }
  6724. #u45128_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. }
  6729. #u45129_div {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:37px;
  6735. height:17px;
  6736. background:inherit;
  6737. background-color:rgba(255, 255, 255, 0);
  6738. border-radius:0px;
  6739. filter:drop-shadow(none);
  6740. transition:none;
  6741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:12px;
  6745. }
  6746. #u45129 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:245px;
  6750. top:817px;
  6751. width:37px;
  6752. height:17px;
  6753. display:flex;
  6754. transition:none;
  6755. transform-origin:50% 50%;
  6756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:12px;
  6760. }
  6761. #u45129 .text {
  6762. position:absolute;
  6763. align-self:flex-start;
  6764. padding:0px 0px 0px 0px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u45129_text {
  6769. border-width:0px;
  6770. white-space:nowrap;
  6771. text-transform:none;
  6772. }
  6773. #u45130 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:0px;
  6779. height:0px;
  6780. }
  6781. #u45131 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:157px;
  6785. top:792px;
  6786. width:24px;
  6787. height:24px;
  6788. display:flex;
  6789. transition:none;
  6790. font-size:8px;
  6791. }
  6792. #u45131 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 2px 2px 2px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u45131_img {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:24px;
  6805. height:24px;
  6806. }
  6807. #u45131_text {
  6808. border-width:0px;
  6809. word-wrap:break-word;
  6810. text-transform:none;
  6811. }
  6812. #u45132_div {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:37px;
  6818. height:17px;
  6819. background:inherit;
  6820. background-color:rgba(255, 255, 255, 0);
  6821. border-radius:0px;
  6822. filter:drop-shadow(none);
  6823. transition:none;
  6824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:12px;
  6828. }
  6829. #u45132 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:151px;
  6833. top:817px;
  6834. width:37px;
  6835. height:17px;
  6836. display:flex;
  6837. transition:none;
  6838. transform-origin:50% 50%;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:12px;
  6843. }
  6844. #u45132 .text {
  6845. position:absolute;
  6846. align-self:flex-start;
  6847. padding:0px 0px 0px 0px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u45132_text {
  6852. border-width:0px;
  6853. white-space:nowrap;
  6854. text-transform:none;
  6855. }
  6856. #u45133_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:375px;
  6862. height:732px;
  6863. background:inherit;
  6864. background-color:rgba(242, 242, 242, 0.996078431372549);
  6865. border-top:0px;
  6866. border-radius:28px;
  6867. border-top-left-radius:0px;
  6868. border-top-right-radius:0px;
  6869. filter:drop-shadow(none);
  6870. transition:none;
  6871. }
  6872. #u45133 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:1384px;
  6876. top:107px;
  6877. width:375px;
  6878. height:732px;
  6879. display:flex;
  6880. transition:none;
  6881. transform-origin:50% 50%;
  6882. }
  6883. #u45133 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u45133_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u45134_div {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:375px;
  6902. height:41px;
  6903. background:inherit;
  6904. background-color:rgba(255, 255, 255, 1);
  6905. box-sizing:border-box;
  6906. border-width:1px;
  6907. border-style:solid;
  6908. border-color:rgba(215, 215, 215, 1);
  6909. border-left:0px;
  6910. border-top:0px;
  6911. border-right:0px;
  6912. border-radius:0px;
  6913. border-bottom-right-radius:0px;
  6914. border-bottom-left-radius:0px;
  6915. filter:drop-shadow(none);
  6916. transition:none;
  6917. }
  6918. #u45134 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:1384px;
  6922. top:67px;
  6923. width:375px;
  6924. height:41px;
  6925. display:flex;
  6926. transition:none;
  6927. transform-origin:50% 50%;
  6928. }
  6929. #u45134 .text {
  6930. position:absolute;
  6931. align-self:center;
  6932. padding:2px 2px 2px 2px;
  6933. box-sizing:border-box;
  6934. width:100%;
  6935. }
  6936. #u45134_text {
  6937. border-width:0px;
  6938. word-wrap:break-word;
  6939. text-transform:none;
  6940. visibility:hidden;
  6941. }
  6942. #u45135 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:1384px;
  6946. top:24px;
  6947. width:375px;
  6948. height:44px;
  6949. display:flex;
  6950. transition:none;
  6951. }
  6952. #u45135 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u45135_img {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:375px;
  6965. height:44px;
  6966. }
  6967. #u45135_text {
  6968. border-width:0px;
  6969. word-wrap:break-word;
  6970. text-transform:none;
  6971. visibility:hidden;
  6972. }
  6973. #u45136 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:0px;
  6979. height:0px;
  6980. }
  6981. #u45137_div {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:0px;
  6985. top:0px;
  6986. width:88px;
  6987. height:32px;
  6988. background:inherit;
  6989. background-color:rgba(255, 255, 255, 1);
  6990. box-sizing:border-box;
  6991. border-width:1px;
  6992. border-style:solid;
  6993. border-color:rgba(242, 242, 242, 1);
  6994. border-radius:33px;
  6995. filter:drop-shadow(none);
  6996. transition:none;
  6997. }
  6998. #u45137 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:1664px;
  7002. top:71px;
  7003. width:88px;
  7004. height:32px;
  7005. display:flex;
  7006. transition:none;
  7007. transform-origin:50% 50%;
  7008. }
  7009. #u45137 .text {
  7010. position:absolute;
  7011. align-self:center;
  7012. padding:2px 2px 2px 2px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u45137_text {
  7017. border-width:0px;
  7018. word-wrap:break-word;
  7019. text-transform:none;
  7020. visibility:hidden;
  7021. }
  7022. #u45138 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:0px;
  7028. height:0px;
  7029. }
  7030. #u45139 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:1727px;
  7034. top:78px;
  7035. width:18px;
  7036. height:18px;
  7037. display:flex;
  7038. transition:none;
  7039. }
  7040. #u45139 .text {
  7041. position:absolute;
  7042. align-self:center;
  7043. padding:2px 2px 2px 2px;
  7044. box-sizing:border-box;
  7045. width:100%;
  7046. }
  7047. #u45139_img {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:18px;
  7053. height:18px;
  7054. }
  7055. #u45139_text {
  7056. border-width:0px;
  7057. word-wrap:break-word;
  7058. text-transform:none;
  7059. visibility:hidden;
  7060. }
  7061. #u45140 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:1733px;
  7065. top:84px;
  7066. width:6px;
  7067. height:6px;
  7068. display:flex;
  7069. transition:none;
  7070. }
  7071. #u45140 .text {
  7072. position:absolute;
  7073. align-self:center;
  7074. padding:2px 2px 2px 2px;
  7075. box-sizing:border-box;
  7076. width:100%;
  7077. }
  7078. #u45140_img {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:0px;
  7082. top:0px;
  7083. width:6px;
  7084. height:6px;
  7085. }
  7086. #u45140_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. visibility:hidden;
  7091. }
  7092. #u45141 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:0px;
  7096. top:0px;
  7097. width:0px;
  7098. height:0px;
  7099. }
  7100. #u45142 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:1678px;
  7104. top:85px;
  7105. width:5px;
  7106. height:5px;
  7107. display:flex;
  7108. transition:none;
  7109. }
  7110. #u45142 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:2px 2px 2px 2px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u45142_img {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:5px;
  7123. height:5px;
  7124. }
  7125. #u45142_text {
  7126. border-width:0px;
  7127. word-wrap:break-word;
  7128. text-transform:none;
  7129. visibility:hidden;
  7130. }
  7131. #u45143 {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:1694px;
  7135. top:85px;
  7136. width:5px;
  7137. height:5px;
  7138. display:flex;
  7139. transition:none;
  7140. }
  7141. #u45143 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 2px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u45143_img {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:5px;
  7154. height:5px;
  7155. }
  7156. #u45143_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. visibility:hidden;
  7161. }
  7162. #u45144 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:1685px;
  7166. top:84px;
  7167. width:7px;
  7168. height:7px;
  7169. display:flex;
  7170. transition:none;
  7171. }
  7172. #u45144 .text {
  7173. position:absolute;
  7174. align-self:center;
  7175. padding:2px 2px 2px 2px;
  7176. box-sizing:border-box;
  7177. width:100%;
  7178. }
  7179. #u45144_img {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:7px;
  7185. height:7px;
  7186. }
  7187. #u45144_text {
  7188. border-width:0px;
  7189. word-wrap:break-word;
  7190. text-transform:none;
  7191. visibility:hidden;
  7192. }
  7193. #u45145 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:1702px;
  7197. top:87px;
  7198. width:18px;
  7199. height:1px;
  7200. display:flex;
  7201. -webkit-transform:rotate(90deg);
  7202. -moz-transform:rotate(90deg);
  7203. -ms-transform:rotate(90deg);
  7204. transform:rotate(90deg);
  7205. transition:none;
  7206. }
  7207. #u45145 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:2px 2px 2px 2px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u45145_img {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:19px;
  7220. height:2px;
  7221. }
  7222. #u45145_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. visibility:hidden;
  7227. }
  7228. #u45146_div {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:12px;
  7234. height:12px;
  7235. background:inherit;
  7236. background-color:rgba(255, 255, 255, 0);
  7237. box-sizing:border-box;
  7238. border-width:2px;
  7239. border-style:solid;
  7240. border-color:rgba(51, 51, 51, 1);
  7241. border-right:0px;
  7242. border-bottom:0px;
  7243. border-radius:0px;
  7244. border-top-right-radius:0px;
  7245. border-bottom-left-radius:0px;
  7246. filter:drop-shadow(none);
  7247. transition:none;
  7248. }
  7249. #u45146 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:1399px;
  7253. top:81px;
  7254. width:12px;
  7255. height:12px;
  7256. display:flex;
  7257. -webkit-transform:rotate(315deg);
  7258. -moz-transform:rotate(315deg);
  7259. -ms-transform:rotate(315deg);
  7260. transform:rotate(315deg);
  7261. transition:none;
  7262. transform-origin:50% 50%;
  7263. }
  7264. #u45146 .text {
  7265. position:absolute;
  7266. align-self:center;
  7267. padding:2px 2px 2px 2px;
  7268. box-sizing:border-box;
  7269. width:100%;
  7270. }
  7271. #u45146_text {
  7272. border-width:0px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. visibility:hidden;
  7276. }
  7277. #u45147_div {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:73px;
  7283. height:25px;
  7284. background:inherit;
  7285. background-color:rgba(255, 255, 255, 0);
  7286. border-radius:0px;
  7287. filter:drop-shadow(none);
  7288. transition:none;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:18px;
  7293. }
  7294. #u45147 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:1419px;
  7298. top:75px;
  7299. width:73px;
  7300. height:25px;
  7301. display:flex;
  7302. transition:none;
  7303. transform-origin:50% 50%;
  7304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:18px;
  7308. }
  7309. #u45147 .text {
  7310. position:absolute;
  7311. align-self:flex-start;
  7312. padding:0px 0px 0px 0px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u45147_text {
  7317. border-width:0px;
  7318. white-space:nowrap;
  7319. text-transform:none;
  7320. }
  7321. #u45148 {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:0px;
  7327. height:0px;
  7328. }
  7329. #u45149_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:375px;
  7335. height:115px;
  7336. background:inherit;
  7337. background-color:rgba(255, 255, 255, 1);
  7338. box-sizing:border-box;
  7339. border-width:1px;
  7340. border-style:solid;
  7341. border-color:rgba(215, 215, 215, 1);
  7342. border-left:0px;
  7343. border-top:0px;
  7344. border-right:0px;
  7345. border-radius:0px;
  7346. border-bottom-right-radius:0px;
  7347. border-bottom-left-radius:0px;
  7348. filter:drop-shadow(none);
  7349. transition:none;
  7350. }
  7351. #u45149 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:1384px;
  7355. top:108px;
  7356. width:375px;
  7357. height:115px;
  7358. display:flex;
  7359. transition:none;
  7360. transform-origin:50% 50%;
  7361. }
  7362. #u45149 .text {
  7363. position:absolute;
  7364. align-self:center;
  7365. padding:2px 2px 2px 2px;
  7366. box-sizing:border-box;
  7367. width:100%;
  7368. }
  7369. #u45149_text {
  7370. border-width:0px;
  7371. word-wrap:break-word;
  7372. text-transform:none;
  7373. visibility:hidden;
  7374. }
  7375. #u45150_div {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:353px;
  7381. height:40px;
  7382. background:inherit;
  7383. background-color:rgba(255, 255, 255, 0);
  7384. border-top:0px;
  7385. border-right:0px;
  7386. border-bottom:0px;
  7387. border-radius:0px;
  7388. border-top-left-radius:0px;
  7389. border-bottom-left-radius:0px;
  7390. filter:drop-shadow(none);
  7391. transition:none;
  7392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7393. font-weight:500;
  7394. font-style:normal;
  7395. font-size:14px;
  7396. line-height:30px;
  7397. }
  7398. #u45150 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:1397px;
  7402. top:116px;
  7403. width:353px;
  7404. height:40px;
  7405. display:flex;
  7406. transition:none;
  7407. transform-origin:50% 50%;
  7408. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7409. font-weight:500;
  7410. font-style:normal;
  7411. font-size:14px;
  7412. line-height:30px;
  7413. }
  7414. #u45150 .text {
  7415. position:absolute;
  7416. align-self:flex-start;
  7417. padding:5px 10px 5px 0px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u45150_text {
  7422. border-width:0px;
  7423. word-wrap:break-word;
  7424. text-transform:none;
  7425. }
  7426. #u45151_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:11px;
  7432. height:11px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 0);
  7435. box-sizing:border-box;
  7436. border-width:2px;
  7437. border-style:solid;
  7438. border-color:rgba(51, 51, 51, 1);
  7439. border-right:0px;
  7440. border-bottom:0px;
  7441. border-radius:0px;
  7442. border-top-right-radius:0px;
  7443. border-bottom-left-radius:0px;
  7444. filter:drop-shadow(none);
  7445. transition:none;
  7446. }
  7447. #u45151 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:1729px;
  7451. top:130px;
  7452. width:11px;
  7453. height:11px;
  7454. display:flex;
  7455. -webkit-transform:rotate(225deg);
  7456. -moz-transform:rotate(225deg);
  7457. -ms-transform:rotate(225deg);
  7458. transform:rotate(225deg);
  7459. transition:none;
  7460. transform-origin:50% 50%;
  7461. }
  7462. #u45151 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 2px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u45151_text {
  7470. border-width:0px;
  7471. word-wrap:break-word;
  7472. text-transform:none;
  7473. visibility:hidden;
  7474. }
  7475. #u45152_div {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:353px;
  7481. height:65px;
  7482. background:inherit;
  7483. background-color:rgba(255, 255, 255, 0);
  7484. border-top:0px;
  7485. border-right:0px;
  7486. border-bottom:0px;
  7487. border-radius:0px;
  7488. border-top-left-radius:0px;
  7489. border-bottom-left-radius:0px;
  7490. filter:drop-shadow(none);
  7491. transition:none;
  7492. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7493. font-style:normal;
  7494. }
  7495. #u45152 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:1399px;
  7499. top:156px;
  7500. width:353px;
  7501. height:65px;
  7502. display:flex;
  7503. transition:none;
  7504. transform-origin:50% 50%;
  7505. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7506. font-style:normal;
  7507. }
  7508. #u45152 .text {
  7509. position:absolute;
  7510. align-self:flex-start;
  7511. padding:5px 10px 5px 0px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u45152_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. }
  7520. #u45153_div {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:35px;
  7526. height:17px;
  7527. background:inherit;
  7528. background-color:rgba(245, 154, 35, 1);
  7529. border-radius:14px;
  7530. filter:drop-shadow(none);
  7531. transition:none;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:12px;
  7536. color:#FFFFFF;
  7537. }
  7538. #u45153 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:1547px;
  7542. top:166px;
  7543. width:35px;
  7544. height:17px;
  7545. display:flex;
  7546. transition:none;
  7547. transform-origin:50% 50%;
  7548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7549. font-weight:400;
  7550. font-style:normal;
  7551. font-size:12px;
  7552. color:#FFFFFF;
  7553. }
  7554. #u45153 .text {
  7555. position:absolute;
  7556. align-self:flex-start;
  7557. padding:0px 5px 0px 5px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u45153_text {
  7562. border-width:0px;
  7563. white-space:nowrap;
  7564. text-transform:none;
  7565. }
  7566. #u45154_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:375px;
  7572. height:337px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 1);
  7575. border-left:0px;
  7576. border-top:0px;
  7577. border-right:0px;
  7578. border-radius:0px;
  7579. border-bottom-right-radius:0px;
  7580. border-bottom-left-radius:0px;
  7581. filter:drop-shadow(none);
  7582. transition:none;
  7583. }
  7584. #u45154 {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:1384px;
  7588. top:233px;
  7589. width:375px;
  7590. height:337px;
  7591. display:flex;
  7592. transition:none;
  7593. transform-origin:50% 50%;
  7594. }
  7595. #u45154 .text {
  7596. position:absolute;
  7597. align-self:center;
  7598. padding:2px 2px 2px 2px;
  7599. box-sizing:border-box;
  7600. width:100%;
  7601. }
  7602. #u45154_text {
  7603. border-width:0px;
  7604. word-wrap:break-word;
  7605. text-transform:none;
  7606. visibility:hidden;
  7607. }
  7608. #u45155_div {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:71px;
  7614. height:210px;
  7615. background:inherit;
  7616. background-color:rgba(255, 255, 255, 0);
  7617. border-left:0px;
  7618. border-top:0px;
  7619. border-right:0px;
  7620. border-radius:0px;
  7621. border-bottom-right-radius:0px;
  7622. border-bottom-left-radius:0px;
  7623. filter:drop-shadow(none);
  7624. transition:none;
  7625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7626. font-weight:400;
  7627. font-style:normal;
  7628. font-size:14px;
  7629. color:#7F7F7F;
  7630. line-height:30px;
  7631. }
  7632. #u45155 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:1399px;
  7636. top:281px;
  7637. width:71px;
  7638. height:210px;
  7639. display:flex;
  7640. transition:none;
  7641. transform-origin:50% 50%;
  7642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:14px;
  7646. color:#7F7F7F;
  7647. line-height:30px;
  7648. }
  7649. #u45155 .text {
  7650. position:absolute;
  7651. align-self:flex-start;
  7652. padding:0px 0px 0px 0px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u45155_text {
  7657. border-width:0px;
  7658. white-space:nowrap;
  7659. text-transform:none;
  7660. }
  7661. #u45156_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:85px;
  7667. height:30px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 0);
  7670. border-left:0px;
  7671. border-top:0px;
  7672. border-right:0px;
  7673. border-radius:0px;
  7674. border-bottom-right-radius:0px;
  7675. border-bottom-left-radius:0px;
  7676. filter:drop-shadow(none);
  7677. transition:none;
  7678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7679. font-weight:400;
  7680. font-style:normal;
  7681. font-size:14px;
  7682. line-height:30px;
  7683. }
  7684. #u45156 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:1399px;
  7688. top:243px;
  7689. width:85px;
  7690. height:30px;
  7691. display:flex;
  7692. transition:none;
  7693. transform-origin:50% 50%;
  7694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7695. font-weight:400;
  7696. font-style:normal;
  7697. font-size:14px;
  7698. line-height:30px;
  7699. }
  7700. #u45156 .text {
  7701. position:absolute;
  7702. align-self:center;
  7703. padding:0px 0px 0px 0px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u45156_text {
  7708. border-width:0px;
  7709. white-space:nowrap;
  7710. text-transform:none;
  7711. }
  7712. #u45157_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:251px;
  7718. height:210px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 0);
  7721. border-left:0px;
  7722. border-top:0px;
  7723. border-right:0px;
  7724. border-radius:0px;
  7725. border-bottom-right-radius:0px;
  7726. border-bottom-left-radius:0px;
  7727. filter:drop-shadow(none);
  7728. transition:none;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:14px;
  7733. line-height:30px;
  7734. }
  7735. #u45157 {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:1470px;
  7739. top:281px;
  7740. width:251px;
  7741. height:210px;
  7742. display:flex;
  7743. transition:none;
  7744. transform-origin:50% 50%;
  7745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:14px;
  7749. line-height:30px;
  7750. }
  7751. #u45157 .text {
  7752. position:absolute;
  7753. align-self:flex-start;
  7754. padding:0px 0px 0px 0px;
  7755. box-sizing:border-box;
  7756. width:100%;
  7757. }
  7758. #u45157_text {
  7759. border-width:0px;
  7760. white-space:nowrap;
  7761. text-transform:none;
  7762. }
  7763. #u45158 {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:1399px;
  7767. top:501px;
  7768. width:60px;
  7769. height:46px;
  7770. display:flex;
  7771. transition:none;
  7772. }
  7773. #u45158 .text {
  7774. position:absolute;
  7775. align-self:center;
  7776. padding:2px 2px 2px 2px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u45158_img {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:60px;
  7786. height:46px;
  7787. }
  7788. #u45158_text {
  7789. border-width:0px;
  7790. word-wrap:break-word;
  7791. text-transform:none;
  7792. visibility:hidden;
  7793. }
  7794. #u45159 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:1469px;
  7798. top:501px;
  7799. width:60px;
  7800. height:46px;
  7801. display:flex;
  7802. transition:none;
  7803. }
  7804. #u45159 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:2px 2px 2px 2px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u45159_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:60px;
  7817. height:46px;
  7818. }
  7819. #u45159_text {
  7820. border-width:0px;
  7821. word-wrap:break-word;
  7822. text-transform:none;
  7823. visibility:hidden;
  7824. }
  7825. #u45160 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:1541px;
  7829. top:501px;
  7830. width:60px;
  7831. height:46px;
  7832. display:flex;
  7833. transition:none;
  7834. }
  7835. #u45160 .text {
  7836. position:absolute;
  7837. align-self:center;
  7838. padding:2px 2px 2px 2px;
  7839. box-sizing:border-box;
  7840. width:100%;
  7841. }
  7842. #u45160_img {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:60px;
  7848. height:46px;
  7849. }
  7850. #u45160_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. visibility:hidden;
  7855. }
  7856. #u45161 {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:1611px;
  7860. top:501px;
  7861. width:60px;
  7862. height:46px;
  7863. display:flex;
  7864. transition:none;
  7865. }
  7866. #u45161 .text {
  7867. position:absolute;
  7868. align-self:center;
  7869. padding:2px 2px 2px 2px;
  7870. box-sizing:border-box;
  7871. width:100%;
  7872. }
  7873. #u45161_img {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:0px;
  7877. top:0px;
  7878. width:60px;
  7879. height:46px;
  7880. }
  7881. #u45161_text {
  7882. border-width:0px;
  7883. word-wrap:break-word;
  7884. text-transform:none;
  7885. visibility:hidden;
  7886. }
  7887. #u45162_div {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:43px;
  7893. height:20px;
  7894. background:inherit;
  7895. background-color:rgba(255, 255, 255, 0);
  7896. border-radius:0px;
  7897. filter:drop-shadow(none);
  7898. transition:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. color:#F59A23;
  7903. }
  7904. #u45162 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:1669px;
  7908. top:126px;
  7909. width:43px;
  7910. height:20px;
  7911. display:flex;
  7912. transition:none;
  7913. transform-origin:50% 50%;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. color:#F59A23;
  7918. }
  7919. #u45162 .text {
  7920. position:absolute;
  7921. align-self:flex-start;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u45162_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u45163_div {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:375px;
  7937. height:183px;
  7938. background:inherit;
  7939. background-color:rgba(255, 255, 255, 1);
  7940. border-left:0px;
  7941. border-top:0px;
  7942. border-right:0px;
  7943. border-radius:0px;
  7944. border-bottom-right-radius:0px;
  7945. border-bottom-left-radius:0px;
  7946. filter:drop-shadow(none);
  7947. transition:none;
  7948. }
  7949. #u45163 {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:1384px;
  7953. top:580px;
  7954. width:375px;
  7955. height:183px;
  7956. display:flex;
  7957. transition:none;
  7958. transform-origin:50% 50%;
  7959. }
  7960. #u45163 .text {
  7961. position:absolute;
  7962. align-self:center;
  7963. padding:2px 2px 2px 2px;
  7964. box-sizing:border-box;
  7965. width:100%;
  7966. }
  7967. #u45163_text {
  7968. border-width:0px;
  7969. word-wrap:break-word;
  7970. text-transform:none;
  7971. visibility:hidden;
  7972. }
  7973. #u45164_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:71px;
  7979. height:120px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 0);
  7982. border-left:0px;
  7983. border-top:0px;
  7984. border-right:0px;
  7985. border-radius:0px;
  7986. border-bottom-right-radius:0px;
  7987. border-bottom-left-radius:0px;
  7988. filter:drop-shadow(none);
  7989. transition:none;
  7990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7991. font-weight:400;
  7992. font-style:normal;
  7993. font-size:14px;
  7994. color:#7F7F7F;
  7995. line-height:30px;
  7996. }
  7997. #u45164 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:1399px;
  8001. top:628px;
  8002. width:71px;
  8003. height:120px;
  8004. display:flex;
  8005. transition:none;
  8006. transform-origin:50% 50%;
  8007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8008. font-weight:400;
  8009. font-style:normal;
  8010. font-size:14px;
  8011. color:#7F7F7F;
  8012. line-height:30px;
  8013. }
  8014. #u45164 .text {
  8015. position:absolute;
  8016. align-self:flex-start;
  8017. padding:0px 0px 0px 0px;
  8018. box-sizing:border-box;
  8019. width:100%;
  8020. }
  8021. #u45164_text {
  8022. border-width:0px;
  8023. white-space:nowrap;
  8024. text-transform:none;
  8025. }
  8026. #u45165_div {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:85px;
  8032. height:30px;
  8033. background:inherit;
  8034. background-color:rgba(255, 255, 255, 0);
  8035. border-left:0px;
  8036. border-top:0px;
  8037. border-right:0px;
  8038. border-radius:0px;
  8039. border-bottom-right-radius:0px;
  8040. border-bottom-left-radius:0px;
  8041. filter:drop-shadow(none);
  8042. transition:none;
  8043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:14px;
  8047. line-height:30px;
  8048. }
  8049. #u45165 {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:1399px;
  8053. top:590px;
  8054. width:85px;
  8055. height:30px;
  8056. display:flex;
  8057. transition:none;
  8058. transform-origin:50% 50%;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:14px;
  8063. line-height:30px;
  8064. }
  8065. #u45165 .text {
  8066. position:absolute;
  8067. align-self:center;
  8068. padding:0px 0px 0px 0px;
  8069. box-sizing:border-box;
  8070. width:100%;
  8071. }
  8072. #u45165_text {
  8073. border-width:0px;
  8074. white-space:nowrap;
  8075. text-transform:none;
  8076. }
  8077. #u45166_div {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:127px;
  8083. height:120px;
  8084. background:inherit;
  8085. background-color:rgba(255, 255, 255, 0);
  8086. border-left:0px;
  8087. border-top:0px;
  8088. border-right:0px;
  8089. border-radius:0px;
  8090. border-bottom-right-radius:0px;
  8091. border-bottom-left-radius:0px;
  8092. filter:drop-shadow(none);
  8093. transition:none;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:14px;
  8098. line-height:30px;
  8099. }
  8100. #u45166 {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:1470px;
  8104. top:628px;
  8105. width:127px;
  8106. height:120px;
  8107. display:flex;
  8108. transition:none;
  8109. transform-origin:50% 50%;
  8110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8111. font-weight:400;
  8112. font-style:normal;
  8113. font-size:14px;
  8114. line-height:30px;
  8115. }
  8116. #u45166 .text {
  8117. position:absolute;
  8118. align-self:flex-start;
  8119. padding:0px 0px 0px 0px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u45166_text {
  8124. border-width:0px;
  8125. white-space:nowrap;
  8126. text-transform:none;
  8127. }
  8128. #u45167_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:239px;
  8134. height:30px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 0);
  8137. border-left:0px;
  8138. border-top:0px;
  8139. border-right:0px;
  8140. border-radius:0px;
  8141. border-bottom-right-radius:0px;
  8142. border-bottom-left-radius:0px;
  8143. filter:drop-shadow(none);
  8144. transition:none;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:14px;
  8149. color:#D9001B;
  8150. line-height:30px;
  8151. }
  8152. #u45167 {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:1522px;
  8156. top:598px;
  8157. width:239px;
  8158. height:30px;
  8159. display:flex;
  8160. transition:none;
  8161. transform-origin:50% 50%;
  8162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8163. font-weight:400;
  8164. font-style:normal;
  8165. font-size:14px;
  8166. color:#D9001B;
  8167. line-height:30px;
  8168. }
  8169. #u45167 .text {
  8170. position:absolute;
  8171. align-self:center;
  8172. padding:0px 0px 0px 0px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u45167_text {
  8177. border-width:0px;
  8178. white-space:nowrap;
  8179. text-transform:none;
  8180. }