styles.css 164 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2272px;
  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. #u36363_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u36363 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1382px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u36363 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u36363_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u36364_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u36364 {
  70. border-width:0px;
  71. position:absolute;
  72. left:1411px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u36364 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u36364_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u36365 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u36366_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u36366 {
  118. border-width:0px;
  119. position:absolute;
  120. left:1691px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u36366 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u36366_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u36367 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u36368_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u36368 {
  156. border-width:0px;
  157. position:absolute;
  158. left:1754px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u36368 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u36368_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u36369_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u36369 {
  186. border-width:0px;
  187. position:absolute;
  188. left:1760px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u36369 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u36369_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u36370 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u36371_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u36371 {
  224. border-width:0px;
  225. position:absolute;
  226. left:1705px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u36371 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u36371_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u36372_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u36372 {
  254. border-width:0px;
  255. position:absolute;
  256. left:1721px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u36372 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u36372_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u36373_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u36373 {
  284. border-width:0px;
  285. position:absolute;
  286. left:1712px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u36373 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u36373_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u36374_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u36374 {
  314. border-width:0px;
  315. position:absolute;
  316. left:1729px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u36374 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u36374_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u36375_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u36375 {
  348. border-width:0px;
  349. position:absolute;
  350. left:1411px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u36375 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u36375_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u36376_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u36376 {
  390. border-width:0px;
  391. position:absolute;
  392. left:1411px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u36376 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u36376_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u36377 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u36378_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u36378 {
  428. border-width:0px;
  429. position:absolute;
  430. left:1451px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u36378 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u36378_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u36379_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u36379 {
  469. border-width:0px;
  470. position:absolute;
  471. left:1451px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u36379 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u36379_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u36380 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u36381_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u36381 {
  510. border-width:0px;
  511. position:absolute;
  512. left:1721px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u36381 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u36381_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u36382_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u36382 {
  551. border-width:0px;
  552. position:absolute;
  553. left:1721px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u36382 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u36382_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u36383_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u36383 {
  591. border-width:0px;
  592. position:absolute;
  593. left:1411px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u36383 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u36383_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u36384 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u36385_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u36385 {
  629. border-width:0px;
  630. position:absolute;
  631. left:1633px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u36385 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u36385_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u36386_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u36386 {
  670. border-width:0px;
  671. position:absolute;
  672. left:1627px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u36386 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u36386_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u36387 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u36388_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u36388 {
  711. border-width:0px;
  712. position:absolute;
  713. left:1539px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u36388 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u36388_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u36389_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u36389 {
  752. border-width:0px;
  753. position:absolute;
  754. left:1533px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u36389 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u36389_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u36390_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:41px;
  783. background:inherit;
  784. background-color:rgba(255, 255, 255, 1);
  785. box-sizing:border-box;
  786. border-width:1px;
  787. border-style:solid;
  788. border-color:rgba(215, 215, 215, 1);
  789. border-left:0px;
  790. border-top:0px;
  791. border-right:0px;
  792. border-radius:0px;
  793. border-bottom-right-radius:0px;
  794. border-bottom-left-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u36390 {
  800. border-width:0px;
  801. position:absolute;
  802. left:1411px;
  803. top:67px;
  804. width:375px;
  805. height:41px;
  806. display:flex;
  807. }
  808. #u36390 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u36390_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u36391 {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:0px;
  827. height:0px;
  828. }
  829. #u36392_div {
  830. border-width:0px;
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:88px;
  835. height:32px;
  836. background:inherit;
  837. background-color:rgba(255, 255, 255, 1);
  838. box-sizing:border-box;
  839. border-width:1px;
  840. border-style:solid;
  841. border-color:rgba(242, 242, 242, 1);
  842. border-radius:33px;
  843. -moz-box-shadow:none;
  844. -webkit-box-shadow:none;
  845. box-shadow:none;
  846. }
  847. #u36392 {
  848. border-width:0px;
  849. position:absolute;
  850. left:1691px;
  851. top:71px;
  852. width:88px;
  853. height:32px;
  854. display:flex;
  855. }
  856. #u36392 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u36392_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. visibility:hidden;
  868. }
  869. #u36393 {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:0px;
  875. height:0px;
  876. }
  877. #u36394_img {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:18px;
  883. height:18px;
  884. }
  885. #u36394 {
  886. border-width:0px;
  887. position:absolute;
  888. left:1754px;
  889. top:78px;
  890. width:18px;
  891. height:18px;
  892. display:flex;
  893. }
  894. #u36394 .text {
  895. position:absolute;
  896. align-self:center;
  897. padding:2px 2px 2px 2px;
  898. box-sizing:border-box;
  899. width:100%;
  900. }
  901. #u36394_text {
  902. border-width:0px;
  903. word-wrap:break-word;
  904. text-transform:none;
  905. visibility:hidden;
  906. }
  907. #u36395_img {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:6px;
  913. height:6px;
  914. }
  915. #u36395 {
  916. border-width:0px;
  917. position:absolute;
  918. left:1760px;
  919. top:84px;
  920. width:6px;
  921. height:6px;
  922. display:flex;
  923. }
  924. #u36395 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u36395_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. visibility:hidden;
  936. }
  937. #u36396 {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:0px;
  943. height:0px;
  944. }
  945. #u36397_img {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:5px;
  951. height:5px;
  952. }
  953. #u36397 {
  954. border-width:0px;
  955. position:absolute;
  956. left:1705px;
  957. top:85px;
  958. width:5px;
  959. height:5px;
  960. display:flex;
  961. }
  962. #u36397 .text {
  963. position:absolute;
  964. align-self:center;
  965. padding:2px 2px 2px 2px;
  966. box-sizing:border-box;
  967. width:100%;
  968. }
  969. #u36397_text {
  970. border-width:0px;
  971. word-wrap:break-word;
  972. text-transform:none;
  973. visibility:hidden;
  974. }
  975. #u36398_img {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:5px;
  981. height:5px;
  982. }
  983. #u36398 {
  984. border-width:0px;
  985. position:absolute;
  986. left:1721px;
  987. top:85px;
  988. width:5px;
  989. height:5px;
  990. display:flex;
  991. }
  992. #u36398 .text {
  993. position:absolute;
  994. align-self:center;
  995. padding:2px 2px 2px 2px;
  996. box-sizing:border-box;
  997. width:100%;
  998. }
  999. #u36398_text {
  1000. border-width:0px;
  1001. word-wrap:break-word;
  1002. text-transform:none;
  1003. visibility:hidden;
  1004. }
  1005. #u36399_img {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:0px;
  1009. top:0px;
  1010. width:7px;
  1011. height:7px;
  1012. }
  1013. #u36399 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:1712px;
  1017. top:84px;
  1018. width:7px;
  1019. height:7px;
  1020. display:flex;
  1021. }
  1022. #u36399 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 2px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u36399_text {
  1030. border-width:0px;
  1031. word-wrap:break-word;
  1032. text-transform:none;
  1033. visibility:hidden;
  1034. }
  1035. #u36400_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:19px;
  1041. height:2px;
  1042. }
  1043. #u36400 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:1729px;
  1047. top:87px;
  1048. width:18px;
  1049. height:1px;
  1050. display:flex;
  1051. -webkit-transform:rotate(90deg);
  1052. -moz-transform:rotate(90deg);
  1053. -ms-transform:rotate(90deg);
  1054. transform:rotate(90deg);
  1055. }
  1056. #u36400 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u36400_text {
  1064. border-width:0px;
  1065. word-wrap:break-word;
  1066. text-transform:none;
  1067. visibility:hidden;
  1068. }
  1069. #u36401_div {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:12px;
  1075. height:12px;
  1076. background:inherit;
  1077. background-color:rgba(255, 255, 255, 0);
  1078. box-sizing:border-box;
  1079. border-width:2px;
  1080. border-style:solid;
  1081. border-color:rgba(51, 51, 51, 1);
  1082. border-right:0px;
  1083. border-bottom:0px;
  1084. border-radius:0px;
  1085. border-top-right-radius:0px;
  1086. border-bottom-left-radius:0px;
  1087. -moz-box-shadow:none;
  1088. -webkit-box-shadow:none;
  1089. box-shadow:none;
  1090. }
  1091. #u36401 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:1426px;
  1095. top:81px;
  1096. width:12px;
  1097. height:12px;
  1098. display:flex;
  1099. -webkit-transform:rotate(315deg);
  1100. -moz-transform:rotate(315deg);
  1101. -ms-transform:rotate(315deg);
  1102. transform:rotate(315deg);
  1103. }
  1104. #u36401 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u36401_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u36402_div {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:73px;
  1123. height:25px;
  1124. background:inherit;
  1125. background-color:rgba(255, 255, 255, 0);
  1126. border:none;
  1127. border-radius:0px;
  1128. -moz-box-shadow:none;
  1129. -webkit-box-shadow:none;
  1130. box-shadow:none;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:18px;
  1135. }
  1136. #u36402 {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:1446px;
  1140. top:75px;
  1141. width:73px;
  1142. height:25px;
  1143. display:flex;
  1144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1145. font-weight:400;
  1146. font-style:normal;
  1147. font-size:18px;
  1148. }
  1149. #u36402 .text {
  1150. position:absolute;
  1151. align-self:flex-start;
  1152. padding:0px 0px 0px 0px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u36402_text {
  1157. border-width:0px;
  1158. white-space:nowrap;
  1159. text-transform:none;
  1160. }
  1161. #u36403_div {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:375px;
  1167. height:732px;
  1168. background:inherit;
  1169. background-color:rgba(242, 242, 242, 0.996078431372549);
  1170. border:none;
  1171. border-top:0px;
  1172. border-radius:28px;
  1173. border-top-left-radius:0px;
  1174. border-top-right-radius:0px;
  1175. -moz-box-shadow:none;
  1176. -webkit-box-shadow:none;
  1177. box-shadow:none;
  1178. }
  1179. #u36403 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:1410px;
  1183. top:107px;
  1184. width:375px;
  1185. height:732px;
  1186. display:flex;
  1187. }
  1188. #u36403 .text {
  1189. position:absolute;
  1190. align-self:center;
  1191. padding:2px 2px 2px 2px;
  1192. box-sizing:border-box;
  1193. width:100%;
  1194. }
  1195. #u36403_text {
  1196. border-width:0px;
  1197. word-wrap:break-word;
  1198. text-transform:none;
  1199. visibility:hidden;
  1200. }
  1201. #u36404 {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:0px;
  1205. top:0px;
  1206. width:0px;
  1207. height:0px;
  1208. }
  1209. #u36405_div {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:375px;
  1215. height:150px;
  1216. background:inherit;
  1217. background-color:rgba(255, 255, 255, 1);
  1218. border:none;
  1219. border-left:0px;
  1220. border-top:0px;
  1221. border-right:0px;
  1222. border-radius:0px;
  1223. border-bottom-right-radius:0px;
  1224. border-bottom-left-radius:0px;
  1225. -moz-box-shadow:none;
  1226. -webkit-box-shadow:none;
  1227. box-shadow:none;
  1228. }
  1229. #u36405 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:1410px;
  1233. top:108px;
  1234. width:375px;
  1235. height:150px;
  1236. display:flex;
  1237. }
  1238. #u36405 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:2px 2px 2px 2px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u36405_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. visibility:hidden;
  1250. }
  1251. #u36406_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:180px;
  1257. height:30px;
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 0);
  1260. border:none;
  1261. border-left:0px;
  1262. border-top:0px;
  1263. border-right:0px;
  1264. border-radius:0px;
  1265. border-bottom-right-radius:0px;
  1266. border-bottom-left-radius:0px;
  1267. -moz-box-shadow:none;
  1268. -webkit-box-shadow:none;
  1269. box-shadow:none;
  1270. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1271. font-weight:500;
  1272. font-style:normal;
  1273. font-size:14px;
  1274. line-height:30px;
  1275. }
  1276. #u36406 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:1423px;
  1280. top:118px;
  1281. width:180px;
  1282. height:30px;
  1283. display:flex;
  1284. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1285. font-weight:500;
  1286. font-style:normal;
  1287. font-size:14px;
  1288. line-height:30px;
  1289. }
  1290. #u36406 .text {
  1291. position:absolute;
  1292. align-self:flex-start;
  1293. padding:0px 0px 0px 0px;
  1294. box-sizing:border-box;
  1295. width:100%;
  1296. }
  1297. #u36406_text {
  1298. border-width:0px;
  1299. white-space:nowrap;
  1300. text-transform:none;
  1301. }
  1302. #u36407 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u36408_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:43px;
  1316. height:20px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#1890FF;
  1328. }
  1329. #u36408 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:1711px;
  1333. top:124px;
  1334. width:43px;
  1335. height:20px;
  1336. display:flex;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. color:#1890FF;
  1341. }
  1342. #u36408 .text {
  1343. position:absolute;
  1344. align-self:flex-start;
  1345. padding:0px 0px 0px 0px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u36408_text {
  1350. border-width:0px;
  1351. white-space:nowrap;
  1352. text-transform:none;
  1353. }
  1354. #u36409_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:8px;
  1360. height:8px;
  1361. background:inherit;
  1362. background-color:rgba(255, 255, 255, 0);
  1363. box-sizing:border-box;
  1364. border-width:1px;
  1365. border-style:solid;
  1366. border-color:rgba(127, 127, 127, 1);
  1367. border-right:0px;
  1368. border-bottom:0px;
  1369. border-radius:0px;
  1370. border-top-right-radius:0px;
  1371. border-bottom-left-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. }
  1376. #u36409 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:1761px;
  1380. top:130px;
  1381. width:8px;
  1382. height:8px;
  1383. display:flex;
  1384. -webkit-transform:rotate(225deg);
  1385. -moz-transform:rotate(225deg);
  1386. -ms-transform:rotate(225deg);
  1387. transform:rotate(225deg);
  1388. }
  1389. #u36409 .text {
  1390. position:absolute;
  1391. align-self:center;
  1392. padding:2px 2px 2px 2px;
  1393. box-sizing:border-box;
  1394. width:100%;
  1395. }
  1396. #u36409_text {
  1397. border-width:0px;
  1398. word-wrap:break-word;
  1399. text-transform:none;
  1400. visibility:hidden;
  1401. }
  1402. #u36410_div {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:0px;
  1406. top:0px;
  1407. width:169px;
  1408. height:100px;
  1409. background:inherit;
  1410. background-color:rgba(255, 255, 255, 0);
  1411. border:none;
  1412. border-left:0px;
  1413. border-top:0px;
  1414. border-right:0px;
  1415. border-radius:0px;
  1416. border-bottom-right-radius:0px;
  1417. border-bottom-left-radius:0px;
  1418. -moz-box-shadow:none;
  1419. -webkit-box-shadow:none;
  1420. box-shadow:none;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:12px;
  1425. line-height:25px;
  1426. }
  1427. #u36410 {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:1423px;
  1431. top:148px;
  1432. width:169px;
  1433. height:100px;
  1434. display:flex;
  1435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1436. font-weight:400;
  1437. font-style:normal;
  1438. font-size:12px;
  1439. line-height:25px;
  1440. }
  1441. #u36410 .text {
  1442. position:absolute;
  1443. align-self:flex-start;
  1444. padding:0px 0px 0px 0px;
  1445. box-sizing:border-box;
  1446. width:100%;
  1447. }
  1448. #u36410_text {
  1449. border-width:0px;
  1450. white-space:nowrap;
  1451. text-transform:none;
  1452. }
  1453. #u36412_img {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:0px;
  1457. top:0px;
  1458. width:433px;
  1459. height:865px;
  1460. }
  1461. #u36412 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:433px;
  1467. height:865px;
  1468. display:flex;
  1469. }
  1470. #u36412 .text {
  1471. position:absolute;
  1472. align-self:center;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u36412_text {
  1478. border-width:0px;
  1479. word-wrap:break-word;
  1480. text-transform:none;
  1481. visibility:hidden;
  1482. }
  1483. #u36413_div {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:375px;
  1489. height:40px;
  1490. background:inherit;
  1491. background-color:rgba(255, 255, 255, 1);
  1492. border:none;
  1493. border-left:0px;
  1494. border-top:0px;
  1495. border-right:0px;
  1496. border-radius:0px;
  1497. border-bottom-right-radius:0px;
  1498. border-bottom-left-radius:0px;
  1499. -moz-box-shadow:none;
  1500. -webkit-box-shadow:none;
  1501. box-shadow:none;
  1502. }
  1503. #u36413 {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:29px;
  1507. top:67px;
  1508. width:375px;
  1509. height:40px;
  1510. display:flex;
  1511. }
  1512. #u36413 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u36413_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u36414 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:0px;
  1531. height:0px;
  1532. }
  1533. #u36415_div {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:88px;
  1539. height:32px;
  1540. background:inherit;
  1541. background-color:rgba(255, 255, 255, 1);
  1542. box-sizing:border-box;
  1543. border-width:1px;
  1544. border-style:solid;
  1545. border-color:rgba(242, 242, 242, 1);
  1546. border-radius:33px;
  1547. -moz-box-shadow:none;
  1548. -webkit-box-shadow:none;
  1549. box-shadow:none;
  1550. }
  1551. #u36415 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:309px;
  1555. top:71px;
  1556. width:88px;
  1557. height:32px;
  1558. display:flex;
  1559. }
  1560. #u36415 .text {
  1561. position:absolute;
  1562. align-self:center;
  1563. padding:2px 2px 2px 2px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u36415_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. visibility:hidden;
  1572. }
  1573. #u36416 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:0px;
  1579. height:0px;
  1580. }
  1581. #u36417_img {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:18px;
  1587. height:18px;
  1588. }
  1589. #u36417 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:372px;
  1593. top:78px;
  1594. width:18px;
  1595. height:18px;
  1596. display:flex;
  1597. }
  1598. #u36417 .text {
  1599. position:absolute;
  1600. align-self:center;
  1601. padding:2px 2px 2px 2px;
  1602. box-sizing:border-box;
  1603. width:100%;
  1604. }
  1605. #u36417_text {
  1606. border-width:0px;
  1607. word-wrap:break-word;
  1608. text-transform:none;
  1609. visibility:hidden;
  1610. }
  1611. #u36418_img {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:6px;
  1617. height:6px;
  1618. }
  1619. #u36418 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:378px;
  1623. top:84px;
  1624. width:6px;
  1625. height:6px;
  1626. display:flex;
  1627. }
  1628. #u36418 .text {
  1629. position:absolute;
  1630. align-self:center;
  1631. padding:2px 2px 2px 2px;
  1632. box-sizing:border-box;
  1633. width:100%;
  1634. }
  1635. #u36418_text {
  1636. border-width:0px;
  1637. word-wrap:break-word;
  1638. text-transform:none;
  1639. visibility:hidden;
  1640. }
  1641. #u36419 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:0px;
  1647. height:0px;
  1648. }
  1649. #u36420_img {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:5px;
  1655. height:5px;
  1656. }
  1657. #u36420 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:323px;
  1661. top:85px;
  1662. width:5px;
  1663. height:5px;
  1664. display:flex;
  1665. }
  1666. #u36420 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u36420_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u36421_img {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:5px;
  1685. height:5px;
  1686. }
  1687. #u36421 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:339px;
  1691. top:85px;
  1692. width:5px;
  1693. height:5px;
  1694. display:flex;
  1695. }
  1696. #u36421 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 2px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u36421_text {
  1704. border-width:0px;
  1705. word-wrap:break-word;
  1706. text-transform:none;
  1707. visibility:hidden;
  1708. }
  1709. #u36422_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:7px;
  1715. height:7px;
  1716. }
  1717. #u36422 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:330px;
  1721. top:84px;
  1722. width:7px;
  1723. height:7px;
  1724. display:flex;
  1725. }
  1726. #u36422 .text {
  1727. position:absolute;
  1728. align-self:center;
  1729. padding:2px 2px 2px 2px;
  1730. box-sizing:border-box;
  1731. width:100%;
  1732. }
  1733. #u36422_text {
  1734. border-width:0px;
  1735. word-wrap:break-word;
  1736. text-transform:none;
  1737. visibility:hidden;
  1738. }
  1739. #u36423_img {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:19px;
  1745. height:2px;
  1746. }
  1747. #u36423 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:347px;
  1751. top:87px;
  1752. width:18px;
  1753. height:1px;
  1754. display:flex;
  1755. -webkit-transform:rotate(90deg);
  1756. -moz-transform:rotate(90deg);
  1757. -ms-transform:rotate(90deg);
  1758. transform:rotate(90deg);
  1759. }
  1760. #u36423 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u36423_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u36424_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:375px;
  1779. height:44px;
  1780. }
  1781. #u36424 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:29px;
  1785. top:24px;
  1786. width:375px;
  1787. height:44px;
  1788. display:flex;
  1789. }
  1790. #u36424 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 2px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u36424_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. visibility:hidden;
  1802. }
  1803. #u36425_div {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:375px;
  1809. height:50px;
  1810. background:inherit;
  1811. background-color:rgba(255, 255, 255, 1);
  1812. box-sizing:border-box;
  1813. border-width:1px;
  1814. border-style:solid;
  1815. border-color:rgba(242, 242, 242, 1);
  1816. border-radius:26px;
  1817. border-top-left-radius:0px;
  1818. border-top-right-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. }
  1823. #u36425 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:29px;
  1827. top:788px;
  1828. width:375px;
  1829. height:50px;
  1830. display:flex;
  1831. }
  1832. #u36425 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 2px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u36425_text {
  1840. border-width:0px;
  1841. word-wrap:break-word;
  1842. text-transform:none;
  1843. visibility:hidden;
  1844. }
  1845. #u36426 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:0px;
  1851. height:0px;
  1852. }
  1853. #u36427_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:24px;
  1859. height:24px;
  1860. }
  1861. #u36427 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:69px;
  1865. top:792px;
  1866. width:24px;
  1867. height:24px;
  1868. display:flex;
  1869. font-size:8px;
  1870. }
  1871. #u36427 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u36427_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u36428_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:25px;
  1889. height:17px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 0);
  1892. border:none;
  1893. border-radius:0px;
  1894. -moz-box-shadow:none;
  1895. -webkit-box-shadow:none;
  1896. box-shadow:none;
  1897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1898. font-weight:400;
  1899. font-style:normal;
  1900. font-size:12px;
  1901. }
  1902. #u36428 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:69px;
  1906. top:817px;
  1907. width:25px;
  1908. height:17px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. }
  1915. #u36428 .text {
  1916. position:absolute;
  1917. align-self:flex-start;
  1918. padding:0px 0px 0px 0px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u36428_text {
  1923. border-width:0px;
  1924. white-space:nowrap;
  1925. text-transform:none;
  1926. }
  1927. #u36429 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:0px;
  1933. height:0px;
  1934. }
  1935. #u36430_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:24px;
  1941. height:24px;
  1942. }
  1943. #u36430 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:339px;
  1947. top:794px;
  1948. width:24px;
  1949. height:24px;
  1950. display:flex;
  1951. font-size:8px;
  1952. }
  1953. #u36430 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 2px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u36430_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u36431_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:25px;
  1971. height:17px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 0);
  1974. border:none;
  1975. border-radius:0px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:12px;
  1983. }
  1984. #u36431 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:339px;
  1988. top:819px;
  1989. width:25px;
  1990. height:17px;
  1991. display:flex;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. }
  1997. #u36431 .text {
  1998. position:absolute;
  1999. align-self:flex-start;
  2000. padding:0px 0px 0px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u36431_text {
  2005. border-width:0px;
  2006. white-space:nowrap;
  2007. text-transform:none;
  2008. }
  2009. #u36432_div {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:375px;
  2015. height:681px;
  2016. background:inherit;
  2017. background-color:rgba(242, 242, 242, 0.462745098039216);
  2018. border:none;
  2019. border-radius:0px;
  2020. -moz-box-shadow:none;
  2021. -webkit-box-shadow:none;
  2022. box-shadow:none;
  2023. }
  2024. #u36432 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:29px;
  2028. top:107px;
  2029. width:375px;
  2030. height:681px;
  2031. display:flex;
  2032. }
  2033. #u36432 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u36432_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. visibility:hidden;
  2045. }
  2046. #u36433 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:0px;
  2052. height:0px;
  2053. }
  2054. #u36434_img {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:24px;
  2060. height:24px;
  2061. }
  2062. #u36434 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:251px;
  2066. top:792px;
  2067. width:24px;
  2068. height:24px;
  2069. display:flex;
  2070. font-size:8px;
  2071. }
  2072. #u36434 .text {
  2073. position:absolute;
  2074. align-self:center;
  2075. padding:2px 2px 2px 2px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u36434_text {
  2080. border-width:0px;
  2081. word-wrap:break-word;
  2082. text-transform:none;
  2083. }
  2084. #u36435_div {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:37px;
  2090. height:17px;
  2091. background:inherit;
  2092. background-color:rgba(255, 255, 255, 0);
  2093. border:none;
  2094. border-radius:0px;
  2095. -moz-box-shadow:none;
  2096. -webkit-box-shadow:none;
  2097. box-shadow:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. }
  2103. #u36435 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:245px;
  2107. top:817px;
  2108. width:37px;
  2109. height:17px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. }
  2116. #u36435 .text {
  2117. position:absolute;
  2118. align-self:flex-start;
  2119. padding:0px 0px 0px 0px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u36435_text {
  2124. border-width:0px;
  2125. white-space:nowrap;
  2126. text-transform:none;
  2127. }
  2128. #u36436 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:0px;
  2134. height:0px;
  2135. }
  2136. #u36437_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:24px;
  2142. height:24px;
  2143. }
  2144. #u36437 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:157px;
  2148. top:792px;
  2149. width:24px;
  2150. height:24px;
  2151. display:flex;
  2152. font-size:8px;
  2153. }
  2154. #u36437 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 2px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u36437_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. }
  2166. #u36438_div {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:37px;
  2172. height:17px;
  2173. background:inherit;
  2174. background-color:rgba(255, 255, 255, 0);
  2175. border:none;
  2176. border-radius:0px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. }
  2185. #u36438 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:151px;
  2189. top:817px;
  2190. width:37px;
  2191. height:17px;
  2192. display:flex;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. }
  2198. #u36438 .text {
  2199. position:absolute;
  2200. align-self:flex-start;
  2201. padding:0px 0px 0px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u36438_text {
  2206. border-width:0px;
  2207. white-space:nowrap;
  2208. text-transform:none;
  2209. }
  2210. #u36439_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:375px;
  2216. height:732px;
  2217. background:inherit;
  2218. background-color:rgba(242, 242, 242, 0.996078431372549);
  2219. border:none;
  2220. border-top:0px;
  2221. border-radius:28px;
  2222. border-top-left-radius:0px;
  2223. border-top-right-radius:0px;
  2224. -moz-box-shadow:none;
  2225. -webkit-box-shadow:none;
  2226. box-shadow:none;
  2227. }
  2228. #u36439 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:29px;
  2232. top:107px;
  2233. width:375px;
  2234. height:732px;
  2235. display:flex;
  2236. }
  2237. #u36439 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:2px 2px 2px 2px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u36439_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u36440_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:375px;
  2256. height:150px;
  2257. background:inherit;
  2258. background-color:rgba(255, 255, 255, 1);
  2259. border:none;
  2260. border-left:0px;
  2261. border-top:0px;
  2262. border-right:0px;
  2263. border-radius:0px;
  2264. border-bottom-right-radius:0px;
  2265. border-bottom-left-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. }
  2270. #u36440 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:29px;
  2274. top:108px;
  2275. width:375px;
  2276. height:150px;
  2277. display:flex;
  2278. }
  2279. #u36440 .text {
  2280. position:absolute;
  2281. align-self:center;
  2282. padding:2px 2px 2px 2px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u36440_text {
  2287. border-width:0px;
  2288. word-wrap:break-word;
  2289. text-transform:none;
  2290. visibility:hidden;
  2291. }
  2292. #u36441_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:43px;
  2298. height:20px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border:none;
  2302. border-radius:0px;
  2303. -moz-box-shadow:none;
  2304. -webkit-box-shadow:none;
  2305. box-shadow:none;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. color:#0089FE;
  2310. }
  2311. #u36441 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:342px;
  2315. top:124px;
  2316. width:43px;
  2317. height:20px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. color:#0089FE;
  2323. }
  2324. #u36441 .text {
  2325. position:absolute;
  2326. align-self:flex-start;
  2327. padding:0px 0px 0px 0px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u36441_text {
  2332. border-width:0px;
  2333. white-space:nowrap;
  2334. text-transform:none;
  2335. }
  2336. #u36442_div {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:180px;
  2342. height:30px;
  2343. background:inherit;
  2344. background-color:rgba(255, 255, 255, 0);
  2345. border:none;
  2346. border-left:0px;
  2347. border-top:0px;
  2348. border-right:0px;
  2349. border-radius:0px;
  2350. border-bottom-right-radius:0px;
  2351. border-bottom-left-radius:0px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2356. font-weight:500;
  2357. font-style:normal;
  2358. font-size:14px;
  2359. line-height:30px;
  2360. }
  2361. #u36442 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:42px;
  2365. top:118px;
  2366. width:180px;
  2367. height:30px;
  2368. display:flex;
  2369. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2370. font-weight:500;
  2371. font-style:normal;
  2372. font-size:14px;
  2373. line-height:30px;
  2374. }
  2375. #u36442 .text {
  2376. position:absolute;
  2377. align-self:flex-start;
  2378. padding:0px 0px 0px 0px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u36442_text {
  2383. border-width:0px;
  2384. white-space:nowrap;
  2385. text-transform:none;
  2386. }
  2387. #u36443_div {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:167px;
  2393. height:100px;
  2394. background:inherit;
  2395. background-color:rgba(255, 255, 255, 0);
  2396. border:none;
  2397. border-left:0px;
  2398. border-top:0px;
  2399. border-right:0px;
  2400. border-radius:0px;
  2401. border-bottom-right-radius:0px;
  2402. border-bottom-left-radius:0px;
  2403. -moz-box-shadow:none;
  2404. -webkit-box-shadow:none;
  2405. box-shadow:none;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:12px;
  2410. line-height:25px;
  2411. }
  2412. #u36443 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:42px;
  2416. top:148px;
  2417. width:167px;
  2418. height:100px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:12px;
  2424. line-height:25px;
  2425. }
  2426. #u36443 .text {
  2427. position:absolute;
  2428. align-self:flex-start;
  2429. padding:0px 0px 0px 0px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u36443_text {
  2434. border-width:0px;
  2435. white-space:nowrap;
  2436. text-transform:none;
  2437. }
  2438. #u36444_div {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:375px;
  2444. height:41px;
  2445. background:inherit;
  2446. background-color:rgba(255, 255, 255, 1);
  2447. box-sizing:border-box;
  2448. border-width:1px;
  2449. border-style:solid;
  2450. border-color:rgba(215, 215, 215, 1);
  2451. border-left:0px;
  2452. border-top:0px;
  2453. border-right:0px;
  2454. border-radius:0px;
  2455. border-bottom-right-radius:0px;
  2456. border-bottom-left-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. }
  2461. #u36444 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:29px;
  2465. top:67px;
  2466. width:375px;
  2467. height:41px;
  2468. display:flex;
  2469. }
  2470. #u36444 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 2px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u36444_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u36445 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:0px;
  2489. height:0px;
  2490. }
  2491. #u36446_div {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:88px;
  2497. height:32px;
  2498. background:inherit;
  2499. background-color:rgba(255, 255, 255, 1);
  2500. box-sizing:border-box;
  2501. border-width:1px;
  2502. border-style:solid;
  2503. border-color:rgba(242, 242, 242, 1);
  2504. border-radius:33px;
  2505. -moz-box-shadow:none;
  2506. -webkit-box-shadow:none;
  2507. box-shadow:none;
  2508. }
  2509. #u36446 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:309px;
  2513. top:71px;
  2514. width:88px;
  2515. height:32px;
  2516. display:flex;
  2517. }
  2518. #u36446 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u36446_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u36447 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:0px;
  2537. height:0px;
  2538. }
  2539. #u36448_img {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:18px;
  2545. height:18px;
  2546. }
  2547. #u36448 {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:372px;
  2551. top:78px;
  2552. width:18px;
  2553. height:18px;
  2554. display:flex;
  2555. }
  2556. #u36448 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 2px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u36448_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. visibility:hidden;
  2568. }
  2569. #u36449_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:6px;
  2575. height:6px;
  2576. }
  2577. #u36449 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:378px;
  2581. top:84px;
  2582. width:6px;
  2583. height:6px;
  2584. display:flex;
  2585. }
  2586. #u36449 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 2px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u36449_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. visibility:hidden;
  2598. }
  2599. #u36450 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:0px;
  2605. height:0px;
  2606. }
  2607. #u36451_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:5px;
  2613. height:5px;
  2614. }
  2615. #u36451 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:323px;
  2619. top:85px;
  2620. width:5px;
  2621. height:5px;
  2622. display:flex;
  2623. }
  2624. #u36451 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u36451_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u36452_img {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:5px;
  2643. height:5px;
  2644. }
  2645. #u36452 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:339px;
  2649. top:85px;
  2650. width:5px;
  2651. height:5px;
  2652. display:flex;
  2653. }
  2654. #u36452 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:2px 2px 2px 2px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u36452_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. visibility:hidden;
  2666. }
  2667. #u36453_img {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:7px;
  2673. height:7px;
  2674. }
  2675. #u36453 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:330px;
  2679. top:84px;
  2680. width:7px;
  2681. height:7px;
  2682. display:flex;
  2683. }
  2684. #u36453 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:2px 2px 2px 2px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u36453_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. visibility:hidden;
  2696. }
  2697. #u36454_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:19px;
  2703. height:2px;
  2704. }
  2705. #u36454 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:347px;
  2709. top:87px;
  2710. width:18px;
  2711. height:1px;
  2712. display:flex;
  2713. -webkit-transform:rotate(90deg);
  2714. -moz-transform:rotate(90deg);
  2715. -ms-transform:rotate(90deg);
  2716. transform:rotate(90deg);
  2717. }
  2718. #u36454 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u36454_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u36455_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:12px;
  2737. height:12px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 0);
  2740. box-sizing:border-box;
  2741. border-width:2px;
  2742. border-style:solid;
  2743. border-color:rgba(51, 51, 51, 1);
  2744. border-right:0px;
  2745. border-bottom:0px;
  2746. border-radius:0px;
  2747. border-top-right-radius:0px;
  2748. border-bottom-left-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. }
  2753. #u36455 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:44px;
  2757. top:81px;
  2758. width:12px;
  2759. height:12px;
  2760. display:flex;
  2761. -webkit-transform:rotate(315deg);
  2762. -moz-transform:rotate(315deg);
  2763. -ms-transform:rotate(315deg);
  2764. transform:rotate(315deg);
  2765. }
  2766. #u36455 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 2px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u36455_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u36456_div {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:73px;
  2785. height:25px;
  2786. background:inherit;
  2787. background-color:rgba(255, 255, 255, 0);
  2788. border:none;
  2789. border-radius:0px;
  2790. -moz-box-shadow:none;
  2791. -webkit-box-shadow:none;
  2792. box-shadow:none;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:18px;
  2797. }
  2798. #u36456 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:64px;
  2802. top:75px;
  2803. width:73px;
  2804. height:25px;
  2805. display:flex;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:18px;
  2810. }
  2811. #u36456 .text {
  2812. position:absolute;
  2813. align-self:flex-start;
  2814. padding:0px 0px 0px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u36456_text {
  2819. border-width:0px;
  2820. white-space:nowrap;
  2821. text-transform:none;
  2822. }
  2823. #u36458_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:433px;
  2829. height:865px;
  2830. }
  2831. #u36458 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:458px;
  2835. top:0px;
  2836. width:433px;
  2837. height:865px;
  2838. display:flex;
  2839. }
  2840. #u36458 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 2px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u36458_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u36459_div {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:375px;
  2859. height:40px;
  2860. background:inherit;
  2861. background-color:rgba(255, 255, 255, 1);
  2862. border:none;
  2863. border-left:0px;
  2864. border-top:0px;
  2865. border-right:0px;
  2866. border-radius:0px;
  2867. border-bottom-right-radius:0px;
  2868. border-bottom-left-radius:0px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. }
  2873. #u36459 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:487px;
  2877. top:67px;
  2878. width:375px;
  2879. height:40px;
  2880. display:flex;
  2881. }
  2882. #u36459 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 2px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u36459_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u36460 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:0px;
  2901. height:0px;
  2902. }
  2903. #u36461_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:88px;
  2909. height:32px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 1);
  2912. box-sizing:border-box;
  2913. border-width:1px;
  2914. border-style:solid;
  2915. border-color:rgba(242, 242, 242, 1);
  2916. border-radius:33px;
  2917. -moz-box-shadow:none;
  2918. -webkit-box-shadow:none;
  2919. box-shadow:none;
  2920. }
  2921. #u36461 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:767px;
  2925. top:71px;
  2926. width:88px;
  2927. height:32px;
  2928. display:flex;
  2929. }
  2930. #u36461 .text {
  2931. position:absolute;
  2932. align-self:center;
  2933. padding:2px 2px 2px 2px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u36461_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. visibility:hidden;
  2942. }
  2943. #u36462 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:0px;
  2949. height:0px;
  2950. }
  2951. #u36463_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:18px;
  2957. height:18px;
  2958. }
  2959. #u36463 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:830px;
  2963. top:78px;
  2964. width:18px;
  2965. height:18px;
  2966. display:flex;
  2967. }
  2968. #u36463 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 2px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u36463_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u36464_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:6px;
  2987. height:6px;
  2988. }
  2989. #u36464 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:836px;
  2993. top:84px;
  2994. width:6px;
  2995. height:6px;
  2996. display:flex;
  2997. }
  2998. #u36464 .text {
  2999. position:absolute;
  3000. align-self:center;
  3001. padding:2px 2px 2px 2px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u36464_text {
  3006. border-width:0px;
  3007. word-wrap:break-word;
  3008. text-transform:none;
  3009. visibility:hidden;
  3010. }
  3011. #u36465 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:0px;
  3017. height:0px;
  3018. }
  3019. #u36466_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:5px;
  3025. height:5px;
  3026. }
  3027. #u36466 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:781px;
  3031. top:85px;
  3032. width:5px;
  3033. height:5px;
  3034. display:flex;
  3035. }
  3036. #u36466 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 2px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u36466_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. visibility:hidden;
  3048. }
  3049. #u36467_img {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:5px;
  3055. height:5px;
  3056. }
  3057. #u36467 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:797px;
  3061. top:85px;
  3062. width:5px;
  3063. height:5px;
  3064. display:flex;
  3065. }
  3066. #u36467 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 2px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u36467_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. visibility:hidden;
  3078. }
  3079. #u36468_img {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:7px;
  3085. height:7px;
  3086. }
  3087. #u36468 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:788px;
  3091. top:84px;
  3092. width:7px;
  3093. height:7px;
  3094. display:flex;
  3095. }
  3096. #u36468 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 2px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u36468_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u36469_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:19px;
  3115. height:2px;
  3116. }
  3117. #u36469 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:805px;
  3121. top:87px;
  3122. width:18px;
  3123. height:1px;
  3124. display:flex;
  3125. -webkit-transform:rotate(90deg);
  3126. -moz-transform:rotate(90deg);
  3127. -ms-transform:rotate(90deg);
  3128. transform:rotate(90deg);
  3129. }
  3130. #u36469 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:2px 2px 2px 2px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u36469_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. visibility:hidden;
  3142. }
  3143. #u36470_img {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:375px;
  3149. height:44px;
  3150. }
  3151. #u36470 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:487px;
  3155. top:24px;
  3156. width:375px;
  3157. height:44px;
  3158. display:flex;
  3159. }
  3160. #u36470 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 2px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u36470_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u36471_div {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:375px;
  3179. height:50px;
  3180. background:inherit;
  3181. background-color:rgba(255, 255, 255, 1);
  3182. box-sizing:border-box;
  3183. border-width:1px;
  3184. border-style:solid;
  3185. border-color:rgba(242, 242, 242, 1);
  3186. border-radius:26px;
  3187. border-top-left-radius:0px;
  3188. border-top-right-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. }
  3193. #u36471 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:487px;
  3197. top:788px;
  3198. width:375px;
  3199. height:50px;
  3200. display:flex;
  3201. }
  3202. #u36471 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:2px 2px 2px 2px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u36471_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. visibility:hidden;
  3214. }
  3215. #u36472 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:0px;
  3221. height:0px;
  3222. }
  3223. #u36473_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:24px;
  3229. height:24px;
  3230. }
  3231. #u36473 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:527px;
  3235. top:792px;
  3236. width:24px;
  3237. height:24px;
  3238. display:flex;
  3239. font-size:8px;
  3240. }
  3241. #u36473 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 2px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u36473_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. }
  3253. #u36474_div {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:25px;
  3259. height:17px;
  3260. background:inherit;
  3261. background-color:rgba(255, 255, 255, 0);
  3262. border:none;
  3263. border-radius:0px;
  3264. -moz-box-shadow:none;
  3265. -webkit-box-shadow:none;
  3266. box-shadow:none;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:12px;
  3271. }
  3272. #u36474 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:527px;
  3276. top:817px;
  3277. width:25px;
  3278. height:17px;
  3279. display:flex;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. }
  3285. #u36474 .text {
  3286. position:absolute;
  3287. align-self:flex-start;
  3288. padding:0px 0px 0px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u36474_text {
  3293. border-width:0px;
  3294. white-space:nowrap;
  3295. text-transform:none;
  3296. }
  3297. #u36475 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:0px;
  3303. height:0px;
  3304. }
  3305. #u36476_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:24px;
  3311. height:24px;
  3312. }
  3313. #u36476 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:797px;
  3317. top:794px;
  3318. width:24px;
  3319. height:24px;
  3320. display:flex;
  3321. font-size:8px;
  3322. }
  3323. #u36476 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u36476_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u36477_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:25px;
  3341. height:17px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. border:none;
  3345. border-radius:0px;
  3346. -moz-box-shadow:none;
  3347. -webkit-box-shadow:none;
  3348. box-shadow:none;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. }
  3354. #u36477 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:797px;
  3358. top:819px;
  3359. width:25px;
  3360. height:17px;
  3361. display:flex;
  3362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:12px;
  3366. }
  3367. #u36477 .text {
  3368. position:absolute;
  3369. align-self:flex-start;
  3370. padding:0px 0px 0px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u36477_text {
  3375. border-width:0px;
  3376. white-space:nowrap;
  3377. text-transform:none;
  3378. }
  3379. #u36478_div {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:375px;
  3385. height:681px;
  3386. background:inherit;
  3387. background-color:rgba(242, 242, 242, 0.462745098039216);
  3388. border:none;
  3389. border-radius:0px;
  3390. -moz-box-shadow:none;
  3391. -webkit-box-shadow:none;
  3392. box-shadow:none;
  3393. }
  3394. #u36478 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:487px;
  3398. top:107px;
  3399. width:375px;
  3400. height:681px;
  3401. display:flex;
  3402. }
  3403. #u36478 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 2px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u36478_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u36479 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:0px;
  3422. height:0px;
  3423. }
  3424. #u36480_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:24px;
  3430. height:24px;
  3431. }
  3432. #u36480 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:709px;
  3436. top:792px;
  3437. width:24px;
  3438. height:24px;
  3439. display:flex;
  3440. font-size:8px;
  3441. }
  3442. #u36480 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 2px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u36480_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. }
  3454. #u36481_div {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:37px;
  3460. height:17px;
  3461. background:inherit;
  3462. background-color:rgba(255, 255, 255, 0);
  3463. border:none;
  3464. border-radius:0px;
  3465. -moz-box-shadow:none;
  3466. -webkit-box-shadow:none;
  3467. box-shadow:none;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:12px;
  3472. }
  3473. #u36481 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:703px;
  3477. top:817px;
  3478. width:37px;
  3479. height:17px;
  3480. display:flex;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:12px;
  3485. }
  3486. #u36481 .text {
  3487. position:absolute;
  3488. align-self:flex-start;
  3489. padding:0px 0px 0px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u36481_text {
  3494. border-width:0px;
  3495. white-space:nowrap;
  3496. text-transform:none;
  3497. }
  3498. #u36482 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:0px;
  3504. height:0px;
  3505. }
  3506. #u36483_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:24px;
  3512. height:24px;
  3513. }
  3514. #u36483 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:615px;
  3518. top:792px;
  3519. width:24px;
  3520. height:24px;
  3521. display:flex;
  3522. font-size:8px;
  3523. }
  3524. #u36483 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u36483_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. }
  3536. #u36484_div {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:37px;
  3542. height:17px;
  3543. background:inherit;
  3544. background-color:rgba(255, 255, 255, 0);
  3545. border:none;
  3546. border-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. }
  3555. #u36484 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:609px;
  3559. top:817px;
  3560. width:37px;
  3561. height:17px;
  3562. display:flex;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:12px;
  3567. }
  3568. #u36484 .text {
  3569. position:absolute;
  3570. align-self:flex-start;
  3571. padding:0px 0px 0px 0px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u36484_text {
  3576. border-width:0px;
  3577. white-space:nowrap;
  3578. text-transform:none;
  3579. }
  3580. #u36485_div {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:375px;
  3586. height:732px;
  3587. background:inherit;
  3588. background-color:rgba(242, 242, 242, 0.996078431372549);
  3589. border:none;
  3590. border-top:0px;
  3591. border-radius:28px;
  3592. border-top-left-radius:0px;
  3593. border-top-right-radius:0px;
  3594. -moz-box-shadow:none;
  3595. -webkit-box-shadow:none;
  3596. box-shadow:none;
  3597. }
  3598. #u36485 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:487px;
  3602. top:107px;
  3603. width:375px;
  3604. height:732px;
  3605. display:flex;
  3606. }
  3607. #u36485 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u36485_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u36486 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:0px;
  3626. height:0px;
  3627. }
  3628. #u36487_div {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:375px;
  3634. height:150px;
  3635. background:inherit;
  3636. background-color:rgba(255, 255, 255, 1);
  3637. border:none;
  3638. border-left:0px;
  3639. border-top:0px;
  3640. border-right:0px;
  3641. border-radius:0px;
  3642. border-bottom-right-radius:0px;
  3643. border-bottom-left-radius:0px;
  3644. -moz-box-shadow:none;
  3645. -webkit-box-shadow:none;
  3646. box-shadow:none;
  3647. }
  3648. #u36487 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:487px;
  3652. top:108px;
  3653. width:375px;
  3654. height:150px;
  3655. display:flex;
  3656. }
  3657. #u36487 .text {
  3658. position:absolute;
  3659. align-self:center;
  3660. padding:2px 2px 2px 2px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u36487_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u36488_div {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:180px;
  3676. height:30px;
  3677. background:inherit;
  3678. background-color:rgba(255, 255, 255, 0);
  3679. border:none;
  3680. border-left:0px;
  3681. border-top:0px;
  3682. border-right:0px;
  3683. border-radius:0px;
  3684. border-bottom-right-radius:0px;
  3685. border-bottom-left-radius:0px;
  3686. -moz-box-shadow:none;
  3687. -webkit-box-shadow:none;
  3688. box-shadow:none;
  3689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3690. font-weight:500;
  3691. font-style:normal;
  3692. font-size:14px;
  3693. line-height:30px;
  3694. }
  3695. #u36488 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:500px;
  3699. top:118px;
  3700. width:180px;
  3701. height:30px;
  3702. display:flex;
  3703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3704. font-weight:500;
  3705. font-style:normal;
  3706. font-size:14px;
  3707. line-height:30px;
  3708. }
  3709. #u36488 .text {
  3710. position:absolute;
  3711. align-self:flex-start;
  3712. padding:0px 0px 0px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u36488_text {
  3717. border-width:0px;
  3718. white-space:nowrap;
  3719. text-transform:none;
  3720. }
  3721. #u36489 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:0px;
  3727. height:0px;
  3728. }
  3729. #u36490_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:43px;
  3735. height:20px;
  3736. background:inherit;
  3737. background-color:rgba(255, 255, 255, 0);
  3738. border:none;
  3739. border-radius:0px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. color:#1890FF;
  3747. }
  3748. #u36490 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:788px;
  3752. top:124px;
  3753. width:43px;
  3754. height:20px;
  3755. display:flex;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. color:#1890FF;
  3760. }
  3761. #u36490 .text {
  3762. position:absolute;
  3763. align-self:flex-start;
  3764. padding:0px 0px 0px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u36490_text {
  3769. border-width:0px;
  3770. white-space:nowrap;
  3771. text-transform:none;
  3772. }
  3773. #u36491_div {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:8px;
  3779. height:8px;
  3780. background:inherit;
  3781. background-color:rgba(255, 255, 255, 0);
  3782. box-sizing:border-box;
  3783. border-width:1px;
  3784. border-style:solid;
  3785. border-color:rgba(127, 127, 127, 1);
  3786. border-right:0px;
  3787. border-bottom:0px;
  3788. border-radius:0px;
  3789. border-top-right-radius:0px;
  3790. border-bottom-left-radius:0px;
  3791. -moz-box-shadow:none;
  3792. -webkit-box-shadow:none;
  3793. box-shadow:none;
  3794. }
  3795. #u36491 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:838px;
  3799. top:130px;
  3800. width:8px;
  3801. height:8px;
  3802. display:flex;
  3803. -webkit-transform:rotate(225deg);
  3804. -moz-transform:rotate(225deg);
  3805. -ms-transform:rotate(225deg);
  3806. transform:rotate(225deg);
  3807. }
  3808. #u36491 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 2px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u36491_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u36492_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:169px;
  3827. height:100px;
  3828. background:inherit;
  3829. background-color:rgba(255, 255, 255, 0);
  3830. border:none;
  3831. border-left:0px;
  3832. border-top:0px;
  3833. border-right:0px;
  3834. border-radius:0px;
  3835. border-bottom-right-radius:0px;
  3836. border-bottom-left-radius:0px;
  3837. -moz-box-shadow:none;
  3838. -webkit-box-shadow:none;
  3839. box-shadow:none;
  3840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:12px;
  3844. line-height:25px;
  3845. }
  3846. #u36492 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:500px;
  3850. top:148px;
  3851. width:169px;
  3852. height:100px;
  3853. display:flex;
  3854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:12px;
  3858. line-height:25px;
  3859. }
  3860. #u36492 .text {
  3861. position:absolute;
  3862. align-self:flex-start;
  3863. padding:0px 0px 0px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u36492_text {
  3868. border-width:0px;
  3869. white-space:nowrap;
  3870. text-transform:none;
  3871. }
  3872. #u36493_div {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:375px;
  3878. height:41px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 1);
  3881. box-sizing:border-box;
  3882. border-width:1px;
  3883. border-style:solid;
  3884. border-color:rgba(215, 215, 215, 1);
  3885. border-left:0px;
  3886. border-top:0px;
  3887. border-right:0px;
  3888. border-radius:0px;
  3889. border-bottom-right-radius:0px;
  3890. border-bottom-left-radius:0px;
  3891. -moz-box-shadow:none;
  3892. -webkit-box-shadow:none;
  3893. box-shadow:none;
  3894. }
  3895. #u36493 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:487px;
  3899. top:67px;
  3900. width:375px;
  3901. height:41px;
  3902. display:flex;
  3903. }
  3904. #u36493 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u36493_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u36494 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:0px;
  3923. height:0px;
  3924. }
  3925. #u36495_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:88px;
  3931. height:32px;
  3932. background:inherit;
  3933. background-color:rgba(255, 255, 255, 1);
  3934. box-sizing:border-box;
  3935. border-width:1px;
  3936. border-style:solid;
  3937. border-color:rgba(242, 242, 242, 1);
  3938. border-radius:33px;
  3939. -moz-box-shadow:none;
  3940. -webkit-box-shadow:none;
  3941. box-shadow:none;
  3942. }
  3943. #u36495 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:767px;
  3947. top:71px;
  3948. width:88px;
  3949. height:32px;
  3950. display:flex;
  3951. }
  3952. #u36495 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u36495_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u36496 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:0px;
  3971. height:0px;
  3972. }
  3973. #u36497_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:18px;
  3979. height:18px;
  3980. }
  3981. #u36497 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:830px;
  3985. top:78px;
  3986. width:18px;
  3987. height:18px;
  3988. display:flex;
  3989. }
  3990. #u36497 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u36497_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u36498_img {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:6px;
  4009. height:6px;
  4010. }
  4011. #u36498 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:836px;
  4015. top:84px;
  4016. width:6px;
  4017. height:6px;
  4018. display:flex;
  4019. }
  4020. #u36498 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u36498_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u36499 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:0px;
  4039. height:0px;
  4040. }
  4041. #u36500_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:5px;
  4047. height:5px;
  4048. }
  4049. #u36500 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:781px;
  4053. top:85px;
  4054. width:5px;
  4055. height:5px;
  4056. display:flex;
  4057. }
  4058. #u36500 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u36500_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u36501_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:5px;
  4077. height:5px;
  4078. }
  4079. #u36501 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:797px;
  4083. top:85px;
  4084. width:5px;
  4085. height:5px;
  4086. display:flex;
  4087. }
  4088. #u36501 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 2px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u36501_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u36502_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:7px;
  4107. height:7px;
  4108. }
  4109. #u36502 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:788px;
  4113. top:84px;
  4114. width:7px;
  4115. height:7px;
  4116. display:flex;
  4117. }
  4118. #u36502 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 2px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u36502_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u36503_img {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:19px;
  4137. height:2px;
  4138. }
  4139. #u36503 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:805px;
  4143. top:87px;
  4144. width:18px;
  4145. height:1px;
  4146. display:flex;
  4147. -webkit-transform:rotate(90deg);
  4148. -moz-transform:rotate(90deg);
  4149. -ms-transform:rotate(90deg);
  4150. transform:rotate(90deg);
  4151. }
  4152. #u36503 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 2px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u36503_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u36504_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:12px;
  4171. height:12px;
  4172. background:inherit;
  4173. background-color:rgba(255, 255, 255, 0);
  4174. box-sizing:border-box;
  4175. border-width:2px;
  4176. border-style:solid;
  4177. border-color:rgba(51, 51, 51, 1);
  4178. border-right:0px;
  4179. border-bottom:0px;
  4180. border-radius:0px;
  4181. border-top-right-radius:0px;
  4182. border-bottom-left-radius:0px;
  4183. -moz-box-shadow:none;
  4184. -webkit-box-shadow:none;
  4185. box-shadow:none;
  4186. }
  4187. #u36504 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:502px;
  4191. top:81px;
  4192. width:12px;
  4193. height:12px;
  4194. display:flex;
  4195. -webkit-transform:rotate(315deg);
  4196. -moz-transform:rotate(315deg);
  4197. -ms-transform:rotate(315deg);
  4198. transform:rotate(315deg);
  4199. }
  4200. #u36504 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 2px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u36504_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u36505_div {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:73px;
  4219. height:25px;
  4220. background:inherit;
  4221. background-color:rgba(255, 255, 255, 0);
  4222. border:none;
  4223. border-radius:0px;
  4224. -moz-box-shadow:none;
  4225. -webkit-box-shadow:none;
  4226. box-shadow:none;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:18px;
  4231. }
  4232. #u36505 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:522px;
  4236. top:75px;
  4237. width:73px;
  4238. height:25px;
  4239. display:flex;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:18px;
  4244. }
  4245. #u36505 .text {
  4246. position:absolute;
  4247. align-self:flex-start;
  4248. padding:0px 0px 0px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u36505_text {
  4253. border-width:0px;
  4254. white-space:nowrap;
  4255. text-transform:none;
  4256. }
  4257. #u36507_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:433px;
  4263. height:865px;
  4264. }
  4265. #u36507 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:928px;
  4269. top:0px;
  4270. width:433px;
  4271. height:865px;
  4272. display:flex;
  4273. }
  4274. #u36507 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u36507_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. visibility:hidden;
  4286. }
  4287. #u36508_div {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:375px;
  4293. height:40px;
  4294. background:inherit;
  4295. background-color:rgba(255, 255, 255, 1);
  4296. border:none;
  4297. border-left:0px;
  4298. border-top:0px;
  4299. border-right:0px;
  4300. border-radius:0px;
  4301. border-bottom-right-radius:0px;
  4302. border-bottom-left-radius:0px;
  4303. -moz-box-shadow:none;
  4304. -webkit-box-shadow:none;
  4305. box-shadow:none;
  4306. }
  4307. #u36508 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:957px;
  4311. top:67px;
  4312. width:375px;
  4313. height:40px;
  4314. display:flex;
  4315. }
  4316. #u36508 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u36508_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u36509 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:0px;
  4335. height:0px;
  4336. }
  4337. #u36510_div {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:88px;
  4343. height:32px;
  4344. background:inherit;
  4345. background-color:rgba(255, 255, 255, 1);
  4346. box-sizing:border-box;
  4347. border-width:1px;
  4348. border-style:solid;
  4349. border-color:rgba(242, 242, 242, 1);
  4350. border-radius:33px;
  4351. -moz-box-shadow:none;
  4352. -webkit-box-shadow:none;
  4353. box-shadow:none;
  4354. }
  4355. #u36510 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:1237px;
  4359. top:71px;
  4360. width:88px;
  4361. height:32px;
  4362. display:flex;
  4363. }
  4364. #u36510 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 2px 2px 2px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u36510_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. visibility:hidden;
  4376. }
  4377. #u36511 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:0px;
  4383. height:0px;
  4384. }
  4385. #u36512_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:18px;
  4391. height:18px;
  4392. }
  4393. #u36512 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1300px;
  4397. top:78px;
  4398. width:18px;
  4399. height:18px;
  4400. display:flex;
  4401. }
  4402. #u36512 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 2px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u36512_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u36513_img {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:6px;
  4421. height:6px;
  4422. }
  4423. #u36513 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:1306px;
  4427. top:84px;
  4428. width:6px;
  4429. height:6px;
  4430. display:flex;
  4431. }
  4432. #u36513 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 2px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u36513_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u36514 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:0px;
  4451. height:0px;
  4452. }
  4453. #u36515_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:5px;
  4459. height:5px;
  4460. }
  4461. #u36515 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:1251px;
  4465. top:85px;
  4466. width:5px;
  4467. height:5px;
  4468. display:flex;
  4469. }
  4470. #u36515 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 2px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u36515_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u36516_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:5px;
  4489. height:5px;
  4490. }
  4491. #u36516 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:1267px;
  4495. top:85px;
  4496. width:5px;
  4497. height:5px;
  4498. display:flex;
  4499. }
  4500. #u36516 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:2px 2px 2px 2px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u36516_text {
  4508. border-width:0px;
  4509. word-wrap:break-word;
  4510. text-transform:none;
  4511. visibility:hidden;
  4512. }
  4513. #u36517_img {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:7px;
  4519. height:7px;
  4520. }
  4521. #u36517 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:1258px;
  4525. top:84px;
  4526. width:7px;
  4527. height:7px;
  4528. display:flex;
  4529. }
  4530. #u36517 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 2px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u36517_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u36518_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:19px;
  4549. height:2px;
  4550. }
  4551. #u36518 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1275px;
  4555. top:87px;
  4556. width:18px;
  4557. height:1px;
  4558. display:flex;
  4559. -webkit-transform:rotate(90deg);
  4560. -moz-transform:rotate(90deg);
  4561. -ms-transform:rotate(90deg);
  4562. transform:rotate(90deg);
  4563. }
  4564. #u36518 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 2px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u36518_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u36519_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:375px;
  4583. height:44px;
  4584. }
  4585. #u36519 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:957px;
  4589. top:24px;
  4590. width:375px;
  4591. height:44px;
  4592. display:flex;
  4593. }
  4594. #u36519 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u36519_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u36520_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:375px;
  4613. height:50px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 1);
  4616. box-sizing:border-box;
  4617. border-width:1px;
  4618. border-style:solid;
  4619. border-color:rgba(242, 242, 242, 1);
  4620. border-radius:26px;
  4621. border-top-left-radius:0px;
  4622. border-top-right-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. }
  4627. #u36520 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:957px;
  4631. top:788px;
  4632. width:375px;
  4633. height:50px;
  4634. display:flex;
  4635. }
  4636. #u36520 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 2px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u36520_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u36521 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:0px;
  4655. height:0px;
  4656. }
  4657. #u36522_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:24px;
  4663. height:24px;
  4664. }
  4665. #u36522 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:997px;
  4669. top:792px;
  4670. width:24px;
  4671. height:24px;
  4672. display:flex;
  4673. font-size:8px;
  4674. }
  4675. #u36522 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u36522_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. }
  4687. #u36523_div {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:25px;
  4693. height:17px;
  4694. background:inherit;
  4695. background-color:rgba(255, 255, 255, 0);
  4696. border:none;
  4697. border-radius:0px;
  4698. -moz-box-shadow:none;
  4699. -webkit-box-shadow:none;
  4700. box-shadow:none;
  4701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:12px;
  4705. }
  4706. #u36523 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:997px;
  4710. top:817px;
  4711. width:25px;
  4712. height:17px;
  4713. display:flex;
  4714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4715. font-weight:400;
  4716. font-style:normal;
  4717. font-size:12px;
  4718. }
  4719. #u36523 .text {
  4720. position:absolute;
  4721. align-self:flex-start;
  4722. padding:0px 0px 0px 0px;
  4723. box-sizing:border-box;
  4724. width:100%;
  4725. }
  4726. #u36523_text {
  4727. border-width:0px;
  4728. white-space:nowrap;
  4729. text-transform:none;
  4730. }
  4731. #u36524 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:0px;
  4737. height:0px;
  4738. }
  4739. #u36525_img {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:24px;
  4745. height:24px;
  4746. }
  4747. #u36525 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:1267px;
  4751. top:794px;
  4752. width:24px;
  4753. height:24px;
  4754. display:flex;
  4755. font-size:8px;
  4756. }
  4757. #u36525 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 2px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u36525_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. }
  4769. #u36526_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:25px;
  4775. height:17px;
  4776. background:inherit;
  4777. background-color:rgba(255, 255, 255, 0);
  4778. border:none;
  4779. border-radius:0px;
  4780. -moz-box-shadow:none;
  4781. -webkit-box-shadow:none;
  4782. box-shadow:none;
  4783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4784. font-weight:400;
  4785. font-style:normal;
  4786. font-size:12px;
  4787. }
  4788. #u36526 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:1267px;
  4792. top:819px;
  4793. width:25px;
  4794. height:17px;
  4795. display:flex;
  4796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:12px;
  4800. }
  4801. #u36526 .text {
  4802. position:absolute;
  4803. align-self:flex-start;
  4804. padding:0px 0px 0px 0px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u36526_text {
  4809. border-width:0px;
  4810. white-space:nowrap;
  4811. text-transform:none;
  4812. }
  4813. #u36527_div {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:375px;
  4819. height:681px;
  4820. background:inherit;
  4821. background-color:rgba(242, 242, 242, 0.462745098039216);
  4822. border:none;
  4823. border-radius:0px;
  4824. -moz-box-shadow:none;
  4825. -webkit-box-shadow:none;
  4826. box-shadow:none;
  4827. }
  4828. #u36527 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:957px;
  4832. top:107px;
  4833. width:375px;
  4834. height:681px;
  4835. display:flex;
  4836. }
  4837. #u36527 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 2px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u36527_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u36528 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:0px;
  4856. height:0px;
  4857. }
  4858. #u36529_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:24px;
  4864. height:24px;
  4865. }
  4866. #u36529 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:1179px;
  4870. top:792px;
  4871. width:24px;
  4872. height:24px;
  4873. display:flex;
  4874. font-size:8px;
  4875. }
  4876. #u36529 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 2px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u36529_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. }
  4888. #u36530_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:37px;
  4894. height:17px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 0);
  4897. border:none;
  4898. border-radius:0px;
  4899. -moz-box-shadow:none;
  4900. -webkit-box-shadow:none;
  4901. box-shadow:none;
  4902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4903. font-weight:400;
  4904. font-style:normal;
  4905. font-size:12px;
  4906. }
  4907. #u36530 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:1173px;
  4911. top:817px;
  4912. width:37px;
  4913. height:17px;
  4914. display:flex;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:12px;
  4919. }
  4920. #u36530 .text {
  4921. position:absolute;
  4922. align-self:flex-start;
  4923. padding:0px 0px 0px 0px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u36530_text {
  4928. border-width:0px;
  4929. white-space:nowrap;
  4930. text-transform:none;
  4931. }
  4932. #u36531 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:0px;
  4938. height:0px;
  4939. }
  4940. #u36532_img {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:24px;
  4946. height:24px;
  4947. }
  4948. #u36532 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:1085px;
  4952. top:792px;
  4953. width:24px;
  4954. height:24px;
  4955. display:flex;
  4956. font-size:8px;
  4957. }
  4958. #u36532 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 2px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u36532_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. }
  4970. #u36533_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:37px;
  4976. height:17px;
  4977. background:inherit;
  4978. background-color:rgba(255, 255, 255, 0);
  4979. border:none;
  4980. border-radius:0px;
  4981. -moz-box-shadow:none;
  4982. -webkit-box-shadow:none;
  4983. box-shadow:none;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:12px;
  4988. }
  4989. #u36533 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:1079px;
  4993. top:817px;
  4994. width:37px;
  4995. height:17px;
  4996. display:flex;
  4997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4998. font-weight:400;
  4999. font-style:normal;
  5000. font-size:12px;
  5001. }
  5002. #u36533 .text {
  5003. position:absolute;
  5004. align-self:flex-start;
  5005. padding:0px 0px 0px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u36533_text {
  5010. border-width:0px;
  5011. white-space:nowrap;
  5012. text-transform:none;
  5013. }
  5014. #u36534_div {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:375px;
  5020. height:732px;
  5021. background:inherit;
  5022. background-color:rgba(242, 242, 242, 0.996078431372549);
  5023. border:none;
  5024. border-top:0px;
  5025. border-radius:28px;
  5026. border-top-left-radius:0px;
  5027. border-top-right-radius:0px;
  5028. -moz-box-shadow:none;
  5029. -webkit-box-shadow:none;
  5030. box-shadow:none;
  5031. }
  5032. #u36534 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:957px;
  5036. top:107px;
  5037. width:375px;
  5038. height:732px;
  5039. display:flex;
  5040. }
  5041. #u36534 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:2px 2px 2px 2px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u36534_text {
  5049. border-width:0px;
  5050. word-wrap:break-word;
  5051. text-transform:none;
  5052. visibility:hidden;
  5053. }
  5054. #u36535 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:0px;
  5060. height:0px;
  5061. }
  5062. #u36536_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:375px;
  5068. height:150px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 1);
  5071. border:none;
  5072. border-left:0px;
  5073. border-top:0px;
  5074. border-right:0px;
  5075. border-radius:0px;
  5076. border-bottom-right-radius:0px;
  5077. border-bottom-left-radius:0px;
  5078. -moz-box-shadow:none;
  5079. -webkit-box-shadow:none;
  5080. box-shadow:none;
  5081. }
  5082. #u36536 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:957px;
  5086. top:108px;
  5087. width:375px;
  5088. height:150px;
  5089. display:flex;
  5090. }
  5091. #u36536 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 2px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u36536_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u36537_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:180px;
  5110. height:30px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 0);
  5113. border:none;
  5114. border-left:0px;
  5115. border-top:0px;
  5116. border-right:0px;
  5117. border-radius:0px;
  5118. border-bottom-right-radius:0px;
  5119. border-bottom-left-radius:0px;
  5120. -moz-box-shadow:none;
  5121. -webkit-box-shadow:none;
  5122. box-shadow:none;
  5123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5124. font-weight:500;
  5125. font-style:normal;
  5126. font-size:14px;
  5127. line-height:30px;
  5128. }
  5129. #u36537 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:970px;
  5133. top:118px;
  5134. width:180px;
  5135. height:30px;
  5136. display:flex;
  5137. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5138. font-weight:500;
  5139. font-style:normal;
  5140. font-size:14px;
  5141. line-height:30px;
  5142. }
  5143. #u36537 .text {
  5144. position:absolute;
  5145. align-self:flex-start;
  5146. padding:0px 0px 0px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u36537_text {
  5151. border-width:0px;
  5152. white-space:nowrap;
  5153. text-transform:none;
  5154. }
  5155. #u36538 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:0px;
  5161. height:0px;
  5162. }
  5163. #u36539_div {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:57px;
  5169. height:20px;
  5170. background:inherit;
  5171. background-color:rgba(255, 255, 255, 0);
  5172. border:none;
  5173. border-radius:0px;
  5174. -moz-box-shadow:none;
  5175. -webkit-box-shadow:none;
  5176. box-shadow:none;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. color:#0089FE;
  5181. }
  5182. #u36539 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:1241px;
  5186. top:124px;
  5187. width:57px;
  5188. height:20px;
  5189. display:flex;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. color:#0089FE;
  5194. }
  5195. #u36539 .text {
  5196. position:absolute;
  5197. align-self:flex-start;
  5198. padding:0px 0px 0px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u36539_text {
  5203. border-width:0px;
  5204. white-space:nowrap;
  5205. text-transform:none;
  5206. }
  5207. #u36540_div {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:8px;
  5213. height:8px;
  5214. background:inherit;
  5215. background-color:rgba(255, 255, 255, 0);
  5216. box-sizing:border-box;
  5217. border-width:1px;
  5218. border-style:solid;
  5219. border-color:rgba(127, 127, 127, 1);
  5220. border-right:0px;
  5221. border-bottom:0px;
  5222. border-radius:0px;
  5223. border-top-right-radius:0px;
  5224. border-bottom-left-radius:0px;
  5225. -moz-box-shadow:none;
  5226. -webkit-box-shadow:none;
  5227. box-shadow:none;
  5228. }
  5229. #u36540 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:1308px;
  5233. top:130px;
  5234. width:8px;
  5235. height:8px;
  5236. display:flex;
  5237. -webkit-transform:rotate(225deg);
  5238. -moz-transform:rotate(225deg);
  5239. -ms-transform:rotate(225deg);
  5240. transform:rotate(225deg);
  5241. }
  5242. #u36540 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:2px 2px 2px 2px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u36540_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. visibility:hidden;
  5254. }
  5255. #u36541_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:169px;
  5261. height:100px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 0);
  5264. border:none;
  5265. border-left:0px;
  5266. border-top:0px;
  5267. border-right:0px;
  5268. border-radius:0px;
  5269. border-bottom-right-radius:0px;
  5270. border-bottom-left-radius:0px;
  5271. -moz-box-shadow:none;
  5272. -webkit-box-shadow:none;
  5273. box-shadow:none;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. line-height:25px;
  5279. }
  5280. #u36541 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:970px;
  5284. top:148px;
  5285. width:169px;
  5286. height:100px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. line-height:25px;
  5293. }
  5294. #u36541 .text {
  5295. position:absolute;
  5296. align-self:flex-start;
  5297. padding:0px 0px 0px 0px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u36541_text {
  5302. border-width:0px;
  5303. white-space:nowrap;
  5304. text-transform:none;
  5305. }
  5306. #u36542_div {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:73px;
  5312. height:25px;
  5313. background:inherit;
  5314. background-color:rgba(255, 255, 255, 0);
  5315. border:none;
  5316. border-left:0px;
  5317. border-top:0px;
  5318. border-right:0px;
  5319. border-radius:0px;
  5320. border-bottom-right-radius:0px;
  5321. border-bottom-left-radius:0px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:12px;
  5329. color:#D9001B;
  5330. line-height:25px;
  5331. }
  5332. #u36542 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:1225px;
  5336. top:148px;
  5337. width:73px;
  5338. height:25px;
  5339. display:flex;
  5340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:12px;
  5344. color:#D9001B;
  5345. line-height:25px;
  5346. }
  5347. #u36542 .text {
  5348. position:absolute;
  5349. align-self:flex-start;
  5350. padding:0px 0px 0px 0px;
  5351. box-sizing:border-box;
  5352. width:100%;
  5353. }
  5354. #u36542_text {
  5355. border-width:0px;
  5356. white-space:nowrap;
  5357. text-transform:none;
  5358. }
  5359. #u36543_div {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:375px;
  5365. height:41px;
  5366. background:inherit;
  5367. background-color:rgba(255, 255, 255, 1);
  5368. box-sizing:border-box;
  5369. border-width:1px;
  5370. border-style:solid;
  5371. border-color:rgba(215, 215, 215, 1);
  5372. border-left:0px;
  5373. border-top:0px;
  5374. border-right:0px;
  5375. border-radius:0px;
  5376. border-bottom-right-radius:0px;
  5377. border-bottom-left-radius:0px;
  5378. -moz-box-shadow:none;
  5379. -webkit-box-shadow:none;
  5380. box-shadow:none;
  5381. }
  5382. #u36543 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:957px;
  5386. top:67px;
  5387. width:375px;
  5388. height:41px;
  5389. display:flex;
  5390. }
  5391. #u36543 .text {
  5392. position:absolute;
  5393. align-self:center;
  5394. padding:2px 2px 2px 2px;
  5395. box-sizing:border-box;
  5396. width:100%;
  5397. }
  5398. #u36543_text {
  5399. border-width:0px;
  5400. word-wrap:break-word;
  5401. text-transform:none;
  5402. visibility:hidden;
  5403. }
  5404. #u36544 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:0px;
  5410. height:0px;
  5411. }
  5412. #u36545_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:88px;
  5418. height:32px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 1);
  5421. box-sizing:border-box;
  5422. border-width:1px;
  5423. border-style:solid;
  5424. border-color:rgba(242, 242, 242, 1);
  5425. border-radius:33px;
  5426. -moz-box-shadow:none;
  5427. -webkit-box-shadow:none;
  5428. box-shadow:none;
  5429. }
  5430. #u36545 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:1237px;
  5434. top:71px;
  5435. width:88px;
  5436. height:32px;
  5437. display:flex;
  5438. }
  5439. #u36545 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u36545_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u36546 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:0px;
  5458. height:0px;
  5459. }
  5460. #u36547_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:18px;
  5466. height:18px;
  5467. }
  5468. #u36547 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:1300px;
  5472. top:78px;
  5473. width:18px;
  5474. height:18px;
  5475. display:flex;
  5476. }
  5477. #u36547 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u36547_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u36548_img {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:6px;
  5496. height:6px;
  5497. }
  5498. #u36548 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:1306px;
  5502. top:84px;
  5503. width:6px;
  5504. height:6px;
  5505. display:flex;
  5506. }
  5507. #u36548 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u36548_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u36549 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:0px;
  5526. height:0px;
  5527. }
  5528. #u36550_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:5px;
  5534. height:5px;
  5535. }
  5536. #u36550 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:1251px;
  5540. top:85px;
  5541. width:5px;
  5542. height:5px;
  5543. display:flex;
  5544. }
  5545. #u36550 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:2px 2px 2px 2px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u36550_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. visibility:hidden;
  5557. }
  5558. #u36551_img {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:5px;
  5564. height:5px;
  5565. }
  5566. #u36551 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:1267px;
  5570. top:85px;
  5571. width:5px;
  5572. height:5px;
  5573. display:flex;
  5574. }
  5575. #u36551 .text {
  5576. position:absolute;
  5577. align-self:center;
  5578. padding:2px 2px 2px 2px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u36551_text {
  5583. border-width:0px;
  5584. word-wrap:break-word;
  5585. text-transform:none;
  5586. visibility:hidden;
  5587. }
  5588. #u36552_img {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:7px;
  5594. height:7px;
  5595. }
  5596. #u36552 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:1258px;
  5600. top:84px;
  5601. width:7px;
  5602. height:7px;
  5603. display:flex;
  5604. }
  5605. #u36552 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 2px 2px 2px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u36552_text {
  5613. border-width:0px;
  5614. word-wrap:break-word;
  5615. text-transform:none;
  5616. visibility:hidden;
  5617. }
  5618. #u36553_img {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:19px;
  5624. height:2px;
  5625. }
  5626. #u36553 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:1275px;
  5630. top:87px;
  5631. width:18px;
  5632. height:1px;
  5633. display:flex;
  5634. -webkit-transform:rotate(90deg);
  5635. -moz-transform:rotate(90deg);
  5636. -ms-transform:rotate(90deg);
  5637. transform:rotate(90deg);
  5638. }
  5639. #u36553 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:2px 2px 2px 2px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u36553_text {
  5647. border-width:0px;
  5648. word-wrap:break-word;
  5649. text-transform:none;
  5650. visibility:hidden;
  5651. }
  5652. #u36554_div {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:12px;
  5658. height:12px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 0);
  5661. box-sizing:border-box;
  5662. border-width:2px;
  5663. border-style:solid;
  5664. border-color:rgba(51, 51, 51, 1);
  5665. border-right:0px;
  5666. border-bottom:0px;
  5667. border-radius:0px;
  5668. border-top-right-radius:0px;
  5669. border-bottom-left-radius:0px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. }
  5674. #u36554 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:972px;
  5678. top:81px;
  5679. width:12px;
  5680. height:12px;
  5681. display:flex;
  5682. -webkit-transform:rotate(315deg);
  5683. -moz-transform:rotate(315deg);
  5684. -ms-transform:rotate(315deg);
  5685. transform:rotate(315deg);
  5686. }
  5687. #u36554 .text {
  5688. position:absolute;
  5689. align-self:center;
  5690. padding:2px 2px 2px 2px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u36554_text {
  5695. border-width:0px;
  5696. word-wrap:break-word;
  5697. text-transform:none;
  5698. visibility:hidden;
  5699. }
  5700. #u36555_div {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:73px;
  5706. height:25px;
  5707. background:inherit;
  5708. background-color:rgba(255, 255, 255, 0);
  5709. border:none;
  5710. border-radius:0px;
  5711. -moz-box-shadow:none;
  5712. -webkit-box-shadow:none;
  5713. box-shadow:none;
  5714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:18px;
  5718. }
  5719. #u36555 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:992px;
  5723. top:75px;
  5724. width:73px;
  5725. height:25px;
  5726. display:flex;
  5727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:18px;
  5731. }
  5732. #u36555 .text {
  5733. position:absolute;
  5734. align-self:flex-start;
  5735. padding:0px 0px 0px 0px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u36555_text {
  5740. border-width:0px;
  5741. white-space:nowrap;
  5742. text-transform:none;
  5743. }
  5744. #u36556 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. }
  5752. #u36557_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:375px;
  5758. height:190px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 1);
  5761. border:none;
  5762. border-left:0px;
  5763. border-right:0px;
  5764. border-radius:0px;
  5765. border-top-left-radius:0px;
  5766. border-top-right-radius:0px;
  5767. border-bottom-right-radius:0px;
  5768. border-bottom-left-radius:0px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. }
  5773. #u36557 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:1410px;
  5777. top:449px;
  5778. width:375px;
  5779. height:190px;
  5780. display:flex;
  5781. }
  5782. #u36557 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 2px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u36557_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u36558_div {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:57px;
  5801. height:30px;
  5802. background:inherit;
  5803. background-color:rgba(255, 255, 255, 0);
  5804. border:none;
  5805. border-left:0px;
  5806. border-top:0px;
  5807. border-right:0px;
  5808. border-radius:0px;
  5809. border-bottom-right-radius:0px;
  5810. border-bottom-left-radius:0px;
  5811. -moz-box-shadow:none;
  5812. -webkit-box-shadow:none;
  5813. box-shadow:none;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:14px;
  5818. line-height:30px;
  5819. }
  5820. #u36558 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:1434px;
  5824. top:459px;
  5825. width:57px;
  5826. height:30px;
  5827. display:flex;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:14px;
  5832. line-height:30px;
  5833. }
  5834. #u36558 .text {
  5835. position:absolute;
  5836. align-self:flex-start;
  5837. padding:0px 0px 0px 0px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u36558_text {
  5842. border-width:0px;
  5843. white-space:nowrap;
  5844. text-transform:none;
  5845. }
  5846. #u36559_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:181px;
  5852. height:30px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 0);
  5855. border:none;
  5856. border-left:0px;
  5857. border-top:0px;
  5858. border-right:0px;
  5859. border-radius:0px;
  5860. border-bottom-right-radius:0px;
  5861. border-bottom-left-radius:0px;
  5862. -moz-box-shadow:none;
  5863. -webkit-box-shadow:none;
  5864. box-shadow:none;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:12px;
  5869. line-height:30px;
  5870. }
  5871. #u36559 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:1434px;
  5875. top:489px;
  5876. width:181px;
  5877. height:30px;
  5878. display:flex;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. line-height:30px;
  5884. }
  5885. #u36559 .text {
  5886. position:absolute;
  5887. align-self:flex-start;
  5888. padding:0px 0px 0px 0px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u36559_text {
  5893. border-width:0px;
  5894. white-space:nowrap;
  5895. text-transform:none;
  5896. }
  5897. #u36560_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:167px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 0);
  5906. border:none;
  5907. border-left:0px;
  5908. border-top:0px;
  5909. border-right:0px;
  5910. border-radius:0px;
  5911. border-bottom-right-radius:0px;
  5912. border-bottom-left-radius:0px;
  5913. -moz-box-shadow:none;
  5914. -webkit-box-shadow:none;
  5915. box-shadow:none;
  5916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:12px;
  5920. line-height:30px;
  5921. }
  5922. #u36560 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:1434px;
  5926. top:519px;
  5927. width:167px;
  5928. height:30px;
  5929. display:flex;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:12px;
  5934. line-height:30px;
  5935. }
  5936. #u36560 .text {
  5937. position:absolute;
  5938. align-self:flex-start;
  5939. padding:0px 0px 0px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u36560_text {
  5944. border-width:0px;
  5945. white-space:nowrap;
  5946. text-transform:none;
  5947. }
  5948. #u36561_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:167px;
  5954. height:30px;
  5955. background:inherit;
  5956. background-color:rgba(255, 255, 255, 0);
  5957. border:none;
  5958. border-left:0px;
  5959. border-top:0px;
  5960. border-right:0px;
  5961. border-radius:0px;
  5962. border-bottom-right-radius:0px;
  5963. border-bottom-left-radius:0px;
  5964. -moz-box-shadow:none;
  5965. -webkit-box-shadow:none;
  5966. box-shadow:none;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:12px;
  5971. line-height:30px;
  5972. }
  5973. #u36561 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:1434px;
  5977. top:549px;
  5978. width:167px;
  5979. height:30px;
  5980. display:flex;
  5981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:12px;
  5985. line-height:30px;
  5986. }
  5987. #u36561 .text {
  5988. position:absolute;
  5989. align-self:flex-start;
  5990. padding:0px 0px 0px 0px;
  5991. box-sizing:border-box;
  5992. width:100%;
  5993. }
  5994. #u36561_text {
  5995. border-width:0px;
  5996. white-space:nowrap;
  5997. text-transform:none;
  5998. }
  5999. #u36562_div {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:167px;
  6005. height:30px;
  6006. background:inherit;
  6007. background-color:rgba(255, 255, 255, 0);
  6008. border:none;
  6009. border-left:0px;
  6010. border-top:0px;
  6011. border-right:0px;
  6012. border-radius:0px;
  6013. border-bottom-right-radius:0px;
  6014. border-bottom-left-radius:0px;
  6015. -moz-box-shadow:none;
  6016. -webkit-box-shadow:none;
  6017. box-shadow:none;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:12px;
  6022. line-height:30px;
  6023. }
  6024. #u36562 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:1434px;
  6028. top:579px;
  6029. width:167px;
  6030. height:30px;
  6031. display:flex;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. line-height:30px;
  6037. }
  6038. #u36562 .text {
  6039. position:absolute;
  6040. align-self:flex-start;
  6041. padding:0px 0px 0px 0px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u36562_text {
  6046. border-width:0px;
  6047. white-space:nowrap;
  6048. text-transform:none;
  6049. }
  6050. #u36564_img {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:433px;
  6056. height:865px;
  6057. }
  6058. #u36564 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:1839px;
  6062. top:0px;
  6063. width:433px;
  6064. height:865px;
  6065. display:flex;
  6066. }
  6067. #u36564 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u36564_text {
  6075. border-width:0px;
  6076. word-wrap:break-word;
  6077. text-transform:none;
  6078. visibility:hidden;
  6079. }
  6080. #u36565_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:375px;
  6086. height:40px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 1);
  6089. border:none;
  6090. border-left:0px;
  6091. border-top:0px;
  6092. border-right:0px;
  6093. border-radius:0px;
  6094. border-bottom-right-radius:0px;
  6095. border-bottom-left-radius:0px;
  6096. -moz-box-shadow:none;
  6097. -webkit-box-shadow:none;
  6098. box-shadow:none;
  6099. }
  6100. #u36565 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:1868px;
  6104. top:67px;
  6105. width:375px;
  6106. height:40px;
  6107. display:flex;
  6108. }
  6109. #u36565 .text {
  6110. position:absolute;
  6111. align-self:center;
  6112. padding:2px 2px 2px 2px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u36565_text {
  6117. border-width:0px;
  6118. word-wrap:break-word;
  6119. text-transform:none;
  6120. visibility:hidden;
  6121. }
  6122. #u36566 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:0px;
  6128. height:0px;
  6129. }
  6130. #u36567_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:88px;
  6136. height:32px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. box-sizing:border-box;
  6140. border-width:1px;
  6141. border-style:solid;
  6142. border-color:rgba(242, 242, 242, 1);
  6143. border-radius:33px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. }
  6148. #u36567 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:2148px;
  6152. top:71px;
  6153. width:88px;
  6154. height:32px;
  6155. display:flex;
  6156. }
  6157. #u36567 .text {
  6158. position:absolute;
  6159. align-self:center;
  6160. padding:2px 2px 2px 2px;
  6161. box-sizing:border-box;
  6162. width:100%;
  6163. }
  6164. #u36567_text {
  6165. border-width:0px;
  6166. word-wrap:break-word;
  6167. text-transform:none;
  6168. visibility:hidden;
  6169. }
  6170. #u36568 {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:0px;
  6176. height:0px;
  6177. }
  6178. #u36569_img {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:18px;
  6184. height:18px;
  6185. }
  6186. #u36569 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:2211px;
  6190. top:78px;
  6191. width:18px;
  6192. height:18px;
  6193. display:flex;
  6194. }
  6195. #u36569 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u36569_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u36570_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:6px;
  6214. height:6px;
  6215. }
  6216. #u36570 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:2217px;
  6220. top:84px;
  6221. width:6px;
  6222. height:6px;
  6223. display:flex;
  6224. }
  6225. #u36570 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u36570_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u36571 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:0px;
  6244. height:0px;
  6245. }
  6246. #u36572_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:5px;
  6252. height:5px;
  6253. }
  6254. #u36572 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:2162px;
  6258. top:85px;
  6259. width:5px;
  6260. height:5px;
  6261. display:flex;
  6262. }
  6263. #u36572 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:2px 2px 2px 2px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u36572_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u36573_img {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:5px;
  6282. height:5px;
  6283. }
  6284. #u36573 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:2178px;
  6288. top:85px;
  6289. width:5px;
  6290. height:5px;
  6291. display:flex;
  6292. }
  6293. #u36573 .text {
  6294. position:absolute;
  6295. align-self:center;
  6296. padding:2px 2px 2px 2px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u36573_text {
  6301. border-width:0px;
  6302. word-wrap:break-word;
  6303. text-transform:none;
  6304. visibility:hidden;
  6305. }
  6306. #u36574_img {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:7px;
  6312. height:7px;
  6313. }
  6314. #u36574 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:2169px;
  6318. top:84px;
  6319. width:7px;
  6320. height:7px;
  6321. display:flex;
  6322. }
  6323. #u36574 .text {
  6324. position:absolute;
  6325. align-self:center;
  6326. padding:2px 2px 2px 2px;
  6327. box-sizing:border-box;
  6328. width:100%;
  6329. }
  6330. #u36574_text {
  6331. border-width:0px;
  6332. word-wrap:break-word;
  6333. text-transform:none;
  6334. visibility:hidden;
  6335. }
  6336. #u36575_img {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:19px;
  6342. height:2px;
  6343. }
  6344. #u36575 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:2186px;
  6348. top:87px;
  6349. width:18px;
  6350. height:1px;
  6351. display:flex;
  6352. -webkit-transform:rotate(90deg);
  6353. -moz-transform:rotate(90deg);
  6354. -ms-transform:rotate(90deg);
  6355. transform:rotate(90deg);
  6356. }
  6357. #u36575 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 2px 2px 2px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u36575_text {
  6365. border-width:0px;
  6366. word-wrap:break-word;
  6367. text-transform:none;
  6368. visibility:hidden;
  6369. }
  6370. #u36576_img {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:375px;
  6376. height:44px;
  6377. }
  6378. #u36576 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:1868px;
  6382. top:24px;
  6383. width:375px;
  6384. height:44px;
  6385. display:flex;
  6386. }
  6387. #u36576 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u36576_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. visibility:hidden;
  6399. }
  6400. #u36577_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:375px;
  6406. height:50px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 1);
  6409. box-sizing:border-box;
  6410. border-width:1px;
  6411. border-style:solid;
  6412. border-color:rgba(242, 242, 242, 1);
  6413. border-radius:26px;
  6414. border-top-left-radius:0px;
  6415. border-top-right-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. }
  6420. #u36577 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:1868px;
  6424. top:788px;
  6425. width:375px;
  6426. height:50px;
  6427. display:flex;
  6428. }
  6429. #u36577 .text {
  6430. position:absolute;
  6431. align-self:center;
  6432. padding:2px 2px 2px 2px;
  6433. box-sizing:border-box;
  6434. width:100%;
  6435. }
  6436. #u36577_text {
  6437. border-width:0px;
  6438. word-wrap:break-word;
  6439. text-transform:none;
  6440. visibility:hidden;
  6441. }
  6442. #u36578 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:0px;
  6448. height:0px;
  6449. }
  6450. #u36579_img {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:24px;
  6456. height:24px;
  6457. }
  6458. #u36579 {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:1908px;
  6462. top:792px;
  6463. width:24px;
  6464. height:24px;
  6465. display:flex;
  6466. font-size:8px;
  6467. }
  6468. #u36579 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 2px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u36579_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. }
  6480. #u36580_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:25px;
  6486. height:17px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 0);
  6489. border:none;
  6490. border-radius:0px;
  6491. -moz-box-shadow:none;
  6492. -webkit-box-shadow:none;
  6493. box-shadow:none;
  6494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. }
  6499. #u36580 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:1908px;
  6503. top:817px;
  6504. width:25px;
  6505. height:17px;
  6506. display:flex;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. }
  6512. #u36580 .text {
  6513. position:absolute;
  6514. align-self:flex-start;
  6515. padding:0px 0px 0px 0px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u36580_text {
  6520. border-width:0px;
  6521. white-space:nowrap;
  6522. text-transform:none;
  6523. }
  6524. #u36581 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:0px;
  6530. height:0px;
  6531. }
  6532. #u36582_img {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:24px;
  6538. height:24px;
  6539. }
  6540. #u36582 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:2178px;
  6544. top:794px;
  6545. width:24px;
  6546. height:24px;
  6547. display:flex;
  6548. font-size:8px;
  6549. }
  6550. #u36582 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:2px 2px 2px 2px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u36582_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. }
  6562. #u36583_div {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:25px;
  6568. height:17px;
  6569. background:inherit;
  6570. background-color:rgba(255, 255, 255, 0);
  6571. border:none;
  6572. border-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:12px;
  6580. }
  6581. #u36583 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:2178px;
  6585. top:819px;
  6586. width:25px;
  6587. height:17px;
  6588. display:flex;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:12px;
  6593. }
  6594. #u36583 .text {
  6595. position:absolute;
  6596. align-self:flex-start;
  6597. padding:0px 0px 0px 0px;
  6598. box-sizing:border-box;
  6599. width:100%;
  6600. }
  6601. #u36583_text {
  6602. border-width:0px;
  6603. white-space:nowrap;
  6604. text-transform:none;
  6605. }
  6606. #u36584_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:375px;
  6612. height:681px;
  6613. background:inherit;
  6614. background-color:rgba(242, 242, 242, 0.462745098039216);
  6615. border:none;
  6616. border-radius:0px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. }
  6621. #u36584 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:1868px;
  6625. top:107px;
  6626. width:375px;
  6627. height:681px;
  6628. display:flex;
  6629. }
  6630. #u36584 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 2px 2px 2px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u36584_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. visibility:hidden;
  6642. }
  6643. #u36585 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:0px;
  6649. height:0px;
  6650. }
  6651. #u36586_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:24px;
  6657. height:24px;
  6658. }
  6659. #u36586 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:2090px;
  6663. top:792px;
  6664. width:24px;
  6665. height:24px;
  6666. display:flex;
  6667. font-size:8px;
  6668. }
  6669. #u36586 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 2px 2px 2px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u36586_text {
  6677. border-width:0px;
  6678. word-wrap:break-word;
  6679. text-transform:none;
  6680. }
  6681. #u36587_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:37px;
  6687. height:17px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 0);
  6690. border:none;
  6691. border-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6696. font-weight:400;
  6697. font-style:normal;
  6698. font-size:12px;
  6699. }
  6700. #u36587 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:2084px;
  6704. top:817px;
  6705. width:37px;
  6706. height:17px;
  6707. display:flex;
  6708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:12px;
  6712. }
  6713. #u36587 .text {
  6714. position:absolute;
  6715. align-self:flex-start;
  6716. padding:0px 0px 0px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u36587_text {
  6721. border-width:0px;
  6722. white-space:nowrap;
  6723. text-transform:none;
  6724. }
  6725. #u36588 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:0px;
  6731. height:0px;
  6732. }
  6733. #u36589_img {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:24px;
  6739. height:24px;
  6740. }
  6741. #u36589 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:1996px;
  6745. top:792px;
  6746. width:24px;
  6747. height:24px;
  6748. display:flex;
  6749. font-size:8px;
  6750. }
  6751. #u36589 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:2px 2px 2px 2px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u36589_text {
  6759. border-width:0px;
  6760. word-wrap:break-word;
  6761. text-transform:none;
  6762. }
  6763. #u36590_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:37px;
  6769. height:17px;
  6770. background:inherit;
  6771. background-color:rgba(255, 255, 255, 0);
  6772. border:none;
  6773. border-radius:0px;
  6774. -moz-box-shadow:none;
  6775. -webkit-box-shadow:none;
  6776. box-shadow:none;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:12px;
  6781. }
  6782. #u36590 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:1990px;
  6786. top:817px;
  6787. width:37px;
  6788. height:17px;
  6789. display:flex;
  6790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:12px;
  6794. }
  6795. #u36590 .text {
  6796. position:absolute;
  6797. align-self:flex-start;
  6798. padding:0px 0px 0px 0px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u36590_text {
  6803. border-width:0px;
  6804. white-space:nowrap;
  6805. text-transform:none;
  6806. }
  6807. #u36591_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:375px;
  6813. height:41px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 1);
  6816. box-sizing:border-box;
  6817. border-width:1px;
  6818. border-style:solid;
  6819. border-color:rgba(215, 215, 215, 1);
  6820. border-left:0px;
  6821. border-top:0px;
  6822. border-right:0px;
  6823. border-radius:0px;
  6824. border-bottom-right-radius:0px;
  6825. border-bottom-left-radius:0px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. }
  6830. #u36591 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1868px;
  6834. top:67px;
  6835. width:375px;
  6836. height:41px;
  6837. display:flex;
  6838. }
  6839. #u36591 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 2px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u36591_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. visibility:hidden;
  6851. }
  6852. #u36592 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:0px;
  6858. height:0px;
  6859. }
  6860. #u36593_div {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:88px;
  6866. height:32px;
  6867. background:inherit;
  6868. background-color:rgba(255, 255, 255, 1);
  6869. box-sizing:border-box;
  6870. border-width:1px;
  6871. border-style:solid;
  6872. border-color:rgba(242, 242, 242, 1);
  6873. border-radius:33px;
  6874. -moz-box-shadow:none;
  6875. -webkit-box-shadow:none;
  6876. box-shadow:none;
  6877. }
  6878. #u36593 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:2148px;
  6882. top:71px;
  6883. width:88px;
  6884. height:32px;
  6885. display:flex;
  6886. }
  6887. #u36593 .text {
  6888. position:absolute;
  6889. align-self:center;
  6890. padding:2px 2px 2px 2px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u36593_text {
  6895. border-width:0px;
  6896. word-wrap:break-word;
  6897. text-transform:none;
  6898. visibility:hidden;
  6899. }
  6900. #u36594 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:0px;
  6906. height:0px;
  6907. }
  6908. #u36595_img {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:18px;
  6914. height:18px;
  6915. }
  6916. #u36595 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:2211px;
  6920. top:78px;
  6921. width:18px;
  6922. height:18px;
  6923. display:flex;
  6924. }
  6925. #u36595 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 2px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u36595_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. visibility:hidden;
  6937. }
  6938. #u36596_img {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:6px;
  6944. height:6px;
  6945. }
  6946. #u36596 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:2217px;
  6950. top:84px;
  6951. width:6px;
  6952. height:6px;
  6953. display:flex;
  6954. }
  6955. #u36596 .text {
  6956. position:absolute;
  6957. align-self:center;
  6958. padding:2px 2px 2px 2px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u36596_text {
  6963. border-width:0px;
  6964. word-wrap:break-word;
  6965. text-transform:none;
  6966. visibility:hidden;
  6967. }
  6968. #u36597 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:0px;
  6974. height:0px;
  6975. }
  6976. #u36598_img {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:5px;
  6982. height:5px;
  6983. }
  6984. #u36598 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:2162px;
  6988. top:85px;
  6989. width:5px;
  6990. height:5px;
  6991. display:flex;
  6992. }
  6993. #u36598 .text {
  6994. position:absolute;
  6995. align-self:center;
  6996. padding:2px 2px 2px 2px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u36598_text {
  7001. border-width:0px;
  7002. word-wrap:break-word;
  7003. text-transform:none;
  7004. visibility:hidden;
  7005. }
  7006. #u36599_img {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:5px;
  7012. height:5px;
  7013. }
  7014. #u36599 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:2178px;
  7018. top:85px;
  7019. width:5px;
  7020. height:5px;
  7021. display:flex;
  7022. }
  7023. #u36599 .text {
  7024. position:absolute;
  7025. align-self:center;
  7026. padding:2px 2px 2px 2px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u36599_text {
  7031. border-width:0px;
  7032. word-wrap:break-word;
  7033. text-transform:none;
  7034. visibility:hidden;
  7035. }
  7036. #u36600_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:7px;
  7042. height:7px;
  7043. }
  7044. #u36600 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:2169px;
  7048. top:84px;
  7049. width:7px;
  7050. height:7px;
  7051. display:flex;
  7052. }
  7053. #u36600 .text {
  7054. position:absolute;
  7055. align-self:center;
  7056. padding:2px 2px 2px 2px;
  7057. box-sizing:border-box;
  7058. width:100%;
  7059. }
  7060. #u36600_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. visibility:hidden;
  7065. }
  7066. #u36601_img {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:19px;
  7072. height:2px;
  7073. }
  7074. #u36601 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:2186px;
  7078. top:87px;
  7079. width:18px;
  7080. height:1px;
  7081. display:flex;
  7082. -webkit-transform:rotate(90deg);
  7083. -moz-transform:rotate(90deg);
  7084. -ms-transform:rotate(90deg);
  7085. transform:rotate(90deg);
  7086. }
  7087. #u36601 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 2px 2px 2px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u36601_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. visibility:hidden;
  7099. }
  7100. #u36602_div {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:12px;
  7106. height:12px;
  7107. background:inherit;
  7108. background-color:rgba(255, 255, 255, 0);
  7109. box-sizing:border-box;
  7110. border-width:2px;
  7111. border-style:solid;
  7112. border-color:rgba(51, 51, 51, 1);
  7113. border-right:0px;
  7114. border-bottom:0px;
  7115. border-radius:0px;
  7116. border-top-right-radius:0px;
  7117. border-bottom-left-radius:0px;
  7118. -moz-box-shadow:none;
  7119. -webkit-box-shadow:none;
  7120. box-shadow:none;
  7121. }
  7122. #u36602 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:1883px;
  7126. top:81px;
  7127. width:12px;
  7128. height:12px;
  7129. display:flex;
  7130. -webkit-transform:rotate(315deg);
  7131. -moz-transform:rotate(315deg);
  7132. -ms-transform:rotate(315deg);
  7133. transform:rotate(315deg);
  7134. }
  7135. #u36602 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:2px 2px 2px 2px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u36602_text {
  7143. border-width:0px;
  7144. word-wrap:break-word;
  7145. text-transform:none;
  7146. visibility:hidden;
  7147. }
  7148. #u36603_div {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:73px;
  7154. height:25px;
  7155. background:inherit;
  7156. background-color:rgba(255, 255, 255, 0);
  7157. border:none;
  7158. border-radius:0px;
  7159. -moz-box-shadow:none;
  7160. -webkit-box-shadow:none;
  7161. box-shadow:none;
  7162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:18px;
  7166. }
  7167. #u36603 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:1903px;
  7171. top:75px;
  7172. width:73px;
  7173. height:25px;
  7174. display:flex;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:18px;
  7179. }
  7180. #u36603 .text {
  7181. position:absolute;
  7182. align-self:flex-start;
  7183. padding:0px 0px 0px 0px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u36603_text {
  7188. border-width:0px;
  7189. white-space:nowrap;
  7190. text-transform:none;
  7191. }
  7192. #u36604_div {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:375px;
  7198. height:732px;
  7199. background:inherit;
  7200. background-color:rgba(242, 242, 242, 0.996078431372549);
  7201. border:none;
  7202. border-top:0px;
  7203. border-radius:28px;
  7204. border-top-left-radius:0px;
  7205. border-top-right-radius:0px;
  7206. -moz-box-shadow:none;
  7207. -webkit-box-shadow:none;
  7208. box-shadow:none;
  7209. }
  7210. #u36604 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:1867px;
  7214. top:107px;
  7215. width:375px;
  7216. height:732px;
  7217. display:flex;
  7218. }
  7219. #u36604 .text {
  7220. position:absolute;
  7221. align-self:center;
  7222. padding:2px 2px 2px 2px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u36604_text {
  7227. border-width:0px;
  7228. word-wrap:break-word;
  7229. text-transform:none;
  7230. visibility:hidden;
  7231. }
  7232. #u36605 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:0px;
  7238. height:0px;
  7239. }
  7240. #u36606_div {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:375px;
  7246. height:150px;
  7247. background:inherit;
  7248. background-color:rgba(255, 255, 255, 1);
  7249. border:none;
  7250. border-left:0px;
  7251. border-top:0px;
  7252. border-right:0px;
  7253. border-radius:0px;
  7254. border-bottom-right-radius:0px;
  7255. border-bottom-left-radius:0px;
  7256. -moz-box-shadow:none;
  7257. -webkit-box-shadow:none;
  7258. box-shadow:none;
  7259. }
  7260. #u36606 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:1867px;
  7264. top:108px;
  7265. width:375px;
  7266. height:150px;
  7267. display:flex;
  7268. }
  7269. #u36606 .text {
  7270. position:absolute;
  7271. align-self:center;
  7272. padding:2px 2px 2px 2px;
  7273. box-sizing:border-box;
  7274. width:100%;
  7275. }
  7276. #u36606_text {
  7277. border-width:0px;
  7278. word-wrap:break-word;
  7279. text-transform:none;
  7280. visibility:hidden;
  7281. }
  7282. #u36607_div {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:180px;
  7288. height:30px;
  7289. background:inherit;
  7290. background-color:rgba(255, 255, 255, 0);
  7291. border:none;
  7292. border-left:0px;
  7293. border-top:0px;
  7294. border-right:0px;
  7295. border-radius:0px;
  7296. border-bottom-right-radius:0px;
  7297. border-bottom-left-radius:0px;
  7298. -moz-box-shadow:none;
  7299. -webkit-box-shadow:none;
  7300. box-shadow:none;
  7301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7302. font-weight:500;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. line-height:30px;
  7306. }
  7307. #u36607 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:1880px;
  7311. top:118px;
  7312. width:180px;
  7313. height:30px;
  7314. display:flex;
  7315. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7316. font-weight:500;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. line-height:30px;
  7320. }
  7321. #u36607 .text {
  7322. position:absolute;
  7323. align-self:flex-start;
  7324. padding:0px 0px 0px 0px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u36607_text {
  7329. border-width:0px;
  7330. white-space:nowrap;
  7331. text-transform:none;
  7332. }
  7333. #u36608 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:0px;
  7339. height:0px;
  7340. }
  7341. #u36609_div {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:0px;
  7345. top:0px;
  7346. width:43px;
  7347. height:20px;
  7348. background:inherit;
  7349. background-color:rgba(255, 255, 255, 0);
  7350. border:none;
  7351. border-radius:0px;
  7352. -moz-box-shadow:none;
  7353. -webkit-box-shadow:none;
  7354. box-shadow:none;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. color:#1890FF;
  7359. }
  7360. #u36609 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:2168px;
  7364. top:124px;
  7365. width:43px;
  7366. height:20px;
  7367. display:flex;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. color:#1890FF;
  7372. }
  7373. #u36609 .text {
  7374. position:absolute;
  7375. align-self:flex-start;
  7376. padding:0px 0px 0px 0px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u36609_text {
  7381. border-width:0px;
  7382. white-space:nowrap;
  7383. text-transform:none;
  7384. }
  7385. #u36610_div {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:8px;
  7391. height:8px;
  7392. background:inherit;
  7393. background-color:rgba(255, 255, 255, 0);
  7394. box-sizing:border-box;
  7395. border-width:1px;
  7396. border-style:solid;
  7397. border-color:rgba(127, 127, 127, 1);
  7398. border-right:0px;
  7399. border-bottom:0px;
  7400. border-radius:0px;
  7401. border-top-right-radius:0px;
  7402. border-bottom-left-radius:0px;
  7403. -moz-box-shadow:none;
  7404. -webkit-box-shadow:none;
  7405. box-shadow:none;
  7406. }
  7407. #u36610 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:2218px;
  7411. top:130px;
  7412. width:8px;
  7413. height:8px;
  7414. display:flex;
  7415. -webkit-transform:rotate(225deg);
  7416. -moz-transform:rotate(225deg);
  7417. -ms-transform:rotate(225deg);
  7418. transform:rotate(225deg);
  7419. }
  7420. #u36610 .text {
  7421. position:absolute;
  7422. align-self:center;
  7423. padding:2px 2px 2px 2px;
  7424. box-sizing:border-box;
  7425. width:100%;
  7426. }
  7427. #u36610_text {
  7428. border-width:0px;
  7429. word-wrap:break-word;
  7430. text-transform:none;
  7431. visibility:hidden;
  7432. }
  7433. #u36611_div {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:169px;
  7439. height:100px;
  7440. background:inherit;
  7441. background-color:rgba(255, 255, 255, 0);
  7442. border:none;
  7443. border-left:0px;
  7444. border-top:0px;
  7445. border-right:0px;
  7446. border-radius:0px;
  7447. border-bottom-right-radius:0px;
  7448. border-bottom-left-radius:0px;
  7449. -moz-box-shadow:none;
  7450. -webkit-box-shadow:none;
  7451. box-shadow:none;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:12px;
  7456. line-height:25px;
  7457. }
  7458. #u36611 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:1880px;
  7462. top:148px;
  7463. width:169px;
  7464. height:100px;
  7465. display:flex;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:12px;
  7470. line-height:25px;
  7471. }
  7472. #u36611 .text {
  7473. position:absolute;
  7474. align-self:flex-start;
  7475. padding:0px 0px 0px 0px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u36611_text {
  7480. border-width:0px;
  7481. white-space:nowrap;
  7482. text-transform:none;
  7483. }
  7484. #u36612 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:0px;
  7490. height:0px;
  7491. }
  7492. #u36613_div {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:375px;
  7498. height:110px;
  7499. background:inherit;
  7500. background-color:rgba(255, 255, 255, 1);
  7501. border:none;
  7502. border-left:0px;
  7503. border-top:0px;
  7504. border-right:0px;
  7505. border-radius:0px;
  7506. border-bottom-right-radius:0px;
  7507. border-bottom-left-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. }
  7512. #u36613 {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:1867px;
  7516. top:449px;
  7517. width:375px;
  7518. height:110px;
  7519. display:flex;
  7520. }
  7521. #u36613 .text {
  7522. position:absolute;
  7523. align-self:center;
  7524. padding:2px 2px 2px 2px;
  7525. box-sizing:border-box;
  7526. width:100%;
  7527. }
  7528. #u36613_text {
  7529. border-width:0px;
  7530. word-wrap:break-word;
  7531. text-transform:none;
  7532. visibility:hidden;
  7533. }
  7534. #u36614_div {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:167px;
  7540. height:30px;
  7541. background:inherit;
  7542. background-color:rgba(255, 255, 255, 0);
  7543. border:none;
  7544. border-left:0px;
  7545. border-top:0px;
  7546. border-right:0px;
  7547. border-radius:0px;
  7548. border-bottom-right-radius:0px;
  7549. border-bottom-left-radius:0px;
  7550. -moz-box-shadow:none;
  7551. -webkit-box-shadow:none;
  7552. box-shadow:none;
  7553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:12px;
  7557. line-height:30px;
  7558. }
  7559. #u36614 {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:1880px;
  7563. top:459px;
  7564. width:167px;
  7565. height:30px;
  7566. display:flex;
  7567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7568. font-weight:400;
  7569. font-style:normal;
  7570. font-size:12px;
  7571. line-height:30px;
  7572. }
  7573. #u36614 .text {
  7574. position:absolute;
  7575. align-self:flex-start;
  7576. padding:0px 0px 0px 0px;
  7577. box-sizing:border-box;
  7578. width:100%;
  7579. }
  7580. #u36614_text {
  7581. border-width:0px;
  7582. white-space:nowrap;
  7583. text-transform:none;
  7584. }
  7585. #u36615_div {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:0px;
  7589. top:0px;
  7590. width:186px;
  7591. height:30px;
  7592. background:inherit;
  7593. background-color:rgba(255, 255, 255, 0);
  7594. border:none;
  7595. border-left:0px;
  7596. border-top:0px;
  7597. border-right:0px;
  7598. border-radius:0px;
  7599. border-bottom-right-radius:0px;
  7600. border-bottom-left-radius:0px;
  7601. -moz-box-shadow:none;
  7602. -webkit-box-shadow:none;
  7603. box-shadow:none;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:12px;
  7608. line-height:30px;
  7609. }
  7610. #u36615 {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:1880px;
  7614. top:489px;
  7615. width:186px;
  7616. height:30px;
  7617. display:flex;
  7618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7619. font-weight:400;
  7620. font-style:normal;
  7621. font-size:12px;
  7622. line-height:30px;
  7623. }
  7624. #u36615 .text {
  7625. position:absolute;
  7626. align-self:flex-start;
  7627. padding:0px 0px 0px 0px;
  7628. box-sizing:border-box;
  7629. width:100%;
  7630. }
  7631. #u36615_text {
  7632. border-width:0px;
  7633. white-space:nowrap;
  7634. text-transform:none;
  7635. }
  7636. #u36616_div {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:133px;
  7642. height:30px;
  7643. background:inherit;
  7644. background-color:rgba(255, 255, 255, 0);
  7645. border:none;
  7646. border-left:0px;
  7647. border-top:0px;
  7648. border-right:0px;
  7649. border-radius:0px;
  7650. border-bottom-right-radius:0px;
  7651. border-bottom-left-radius:0px;
  7652. -moz-box-shadow:none;
  7653. -webkit-box-shadow:none;
  7654. box-shadow:none;
  7655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:12px;
  7659. line-height:30px;
  7660. }
  7661. #u36616 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:1880px;
  7665. top:519px;
  7666. width:133px;
  7667. height:30px;
  7668. display:flex;
  7669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7670. font-weight:400;
  7671. font-style:normal;
  7672. font-size:12px;
  7673. line-height:30px;
  7674. }
  7675. #u36616 .text {
  7676. position:absolute;
  7677. align-self:flex-start;
  7678. padding:0px 0px 0px 0px;
  7679. box-sizing:border-box;
  7680. width:100%;
  7681. }
  7682. #u36616_text {
  7683. border-width:0px;
  7684. white-space:nowrap;
  7685. text-transform:none;
  7686. }
  7687. #u36617 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:0px;
  7693. height:0px;
  7694. }
  7695. #u36618_div {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:0px;
  7699. top:0px;
  7700. width:375px;
  7701. height:180px;
  7702. background:inherit;
  7703. background-color:rgba(255, 255, 255, 1);
  7704. border:none;
  7705. border-top:0px;
  7706. border-bottom:0px;
  7707. border-radius:0px;
  7708. border-top-left-radius:0px;
  7709. border-top-right-radius:0px;
  7710. border-bottom-right-radius:0px;
  7711. border-bottom-left-radius:0px;
  7712. -moz-box-shadow:none;
  7713. -webkit-box-shadow:none;
  7714. box-shadow:none;
  7715. }
  7716. #u36618 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:29px;
  7720. top:259px;
  7721. width:375px;
  7722. height:180px;
  7723. display:flex;
  7724. }
  7725. #u36618 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:2px 2px 2px 2px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u36618_text {
  7733. border-width:0px;
  7734. word-wrap:break-word;
  7735. text-transform:none;
  7736. visibility:hidden;
  7737. }
  7738. #u36619_div {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:0px;
  7742. top:0px;
  7743. width:150px;
  7744. height:150px;
  7745. background:inherit;
  7746. background-color:rgba(255, 255, 255, 0);
  7747. border:none;
  7748. border-left:0px;
  7749. border-top:0px;
  7750. border-right:0px;
  7751. border-radius:0px;
  7752. border-bottom-right-radius:0px;
  7753. border-bottom-left-radius:0px;
  7754. -moz-box-shadow:none;
  7755. -webkit-box-shadow:none;
  7756. box-shadow:none;
  7757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:12px;
  7761. line-height:25px;
  7762. }
  7763. #u36619 {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:53px;
  7767. top:273px;
  7768. width:150px;
  7769. height:150px;
  7770. display:flex;
  7771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:12px;
  7775. line-height:25px;
  7776. }
  7777. #u36619 .text {
  7778. position:absolute;
  7779. align-self:flex-start;
  7780. padding:0px 0px 0px 0px;
  7781. box-sizing:border-box;
  7782. width:100%;
  7783. }
  7784. #u36619_text {
  7785. border-width:0px;
  7786. white-space:nowrap;
  7787. text-transform:none;
  7788. }
  7789. #u36620 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:0px;
  7795. height:0px;
  7796. }
  7797. #u36621_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:375px;
  7803. height:356px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 1);
  7806. border:none;
  7807. border-left:0px;
  7808. border-right:0px;
  7809. border-radius:0px;
  7810. border-top-left-radius:0px;
  7811. border-top-right-radius:0px;
  7812. border-bottom-right-radius:0px;
  7813. border-bottom-left-radius:0px;
  7814. -moz-box-shadow:none;
  7815. -webkit-box-shadow:none;
  7816. box-shadow:none;
  7817. }
  7818. #u36621 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:29px;
  7822. top:449px;
  7823. width:375px;
  7824. height:356px;
  7825. display:flex;
  7826. }
  7827. #u36621 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:2px 2px 2px 2px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u36621_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. visibility:hidden;
  7839. }
  7840. #u36622_div {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:57px;
  7846. height:30px;
  7847. background:inherit;
  7848. background-color:rgba(255, 255, 255, 0);
  7849. border:none;
  7850. border-left:0px;
  7851. border-top:0px;
  7852. border-right:0px;
  7853. border-radius:0px;
  7854. border-bottom-right-radius:0px;
  7855. border-bottom-left-radius:0px;
  7856. -moz-box-shadow:none;
  7857. -webkit-box-shadow:none;
  7858. box-shadow:none;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:14px;
  7863. line-height:30px;
  7864. }
  7865. #u36622 {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:53px;
  7869. top:459px;
  7870. width:57px;
  7871. height:30px;
  7872. display:flex;
  7873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7874. font-weight:400;
  7875. font-style:normal;
  7876. font-size:14px;
  7877. line-height:30px;
  7878. }
  7879. #u36622 .text {
  7880. position:absolute;
  7881. align-self:flex-start;
  7882. padding:0px 0px 0px 0px;
  7883. box-sizing:border-box;
  7884. width:100%;
  7885. }
  7886. #u36622_text {
  7887. border-width:0px;
  7888. white-space:nowrap;
  7889. text-transform:none;
  7890. }
  7891. #u36623_div {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:181px;
  7897. height:30px;
  7898. background:inherit;
  7899. background-color:rgba(255, 255, 255, 0);
  7900. border:none;
  7901. border-left:0px;
  7902. border-top:0px;
  7903. border-right:0px;
  7904. border-radius:0px;
  7905. border-bottom-right-radius:0px;
  7906. border-bottom-left-radius:0px;
  7907. -moz-box-shadow:none;
  7908. -webkit-box-shadow:none;
  7909. box-shadow:none;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:12px;
  7914. line-height:30px;
  7915. }
  7916. #u36623 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:53px;
  7920. top:489px;
  7921. width:181px;
  7922. height:30px;
  7923. display:flex;
  7924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7925. font-weight:400;
  7926. font-style:normal;
  7927. font-size:12px;
  7928. line-height:30px;
  7929. }
  7930. #u36623 .text {
  7931. position:absolute;
  7932. align-self:flex-start;
  7933. padding:0px 0px 0px 0px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u36623_text {
  7938. border-width:0px;
  7939. white-space:nowrap;
  7940. text-transform:none;
  7941. }
  7942. #u36624_div {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:167px;
  7948. height:30px;
  7949. background:inherit;
  7950. background-color:rgba(255, 255, 255, 0);
  7951. border:none;
  7952. border-left:0px;
  7953. border-top:0px;
  7954. border-right:0px;
  7955. border-radius:0px;
  7956. border-bottom-right-radius:0px;
  7957. border-bottom-left-radius:0px;
  7958. -moz-box-shadow:none;
  7959. -webkit-box-shadow:none;
  7960. box-shadow:none;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:12px;
  7965. line-height:30px;
  7966. }
  7967. #u36624 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:53px;
  7971. top:519px;
  7972. width:167px;
  7973. height:30px;
  7974. display:flex;
  7975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:12px;
  7979. line-height:30px;
  7980. }
  7981. #u36624 .text {
  7982. position:absolute;
  7983. align-self:flex-start;
  7984. padding:0px 0px 0px 0px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u36624_text {
  7989. border-width:0px;
  7990. white-space:nowrap;
  7991. text-transform:none;
  7992. }
  7993. #u36625_img {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:0px;
  7997. top:0px;
  7998. width:375px;
  7999. height:252px;
  8000. }
  8001. #u36625 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:29px;
  8005. top:553px;
  8006. width:375px;
  8007. height:252px;
  8008. display:flex;
  8009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. }
  8013. #u36625 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:2px 2px 2px 2px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u36625_text {
  8021. border-width:0px;
  8022. word-wrap:break-word;
  8023. text-transform:none;
  8024. }
  8025. #u36626_div {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:0px;
  8029. top:0px;
  8030. width:85px;
  8031. height:30px;
  8032. background:inherit;
  8033. background-color:rgba(255, 255, 255, 0);
  8034. border:none;
  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. -moz-box-shadow:none;
  8042. -webkit-box-shadow:none;
  8043. box-shadow:none;
  8044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:12px;
  8048. color:#0089FE;
  8049. line-height:30px;
  8050. }
  8051. #u36626 {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:305px;
  8055. top:459px;
  8056. width:85px;
  8057. height:30px;
  8058. display:flex;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:12px;
  8063. color:#0089FE;
  8064. line-height:30px;
  8065. }
  8066. #u36626 .text {
  8067. position:absolute;
  8068. align-self:flex-start;
  8069. padding:0px 0px 0px 0px;
  8070. box-sizing:border-box;
  8071. width:100%;
  8072. }
  8073. #u36626_text {
  8074. border-width:0px;
  8075. white-space:nowrap;
  8076. text-transform:none;
  8077. }
  8078. #u36627 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:0px;
  8082. top:0px;
  8083. width:0px;
  8084. height:0px;
  8085. }
  8086. #u36628_div {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:0px;
  8090. top:0px;
  8091. width:375px;
  8092. height:60px;
  8093. background:inherit;
  8094. background-color:rgba(255, 255, 255, 1);
  8095. box-sizing:border-box;
  8096. border-width:1px;
  8097. border-style:solid;
  8098. border-color:rgba(242, 242, 242, 1);
  8099. border-radius:20px;
  8100. border-top-left-radius:0px;
  8101. border-top-right-radius:0px;
  8102. -moz-box-shadow:none;
  8103. -webkit-box-shadow:none;
  8104. box-shadow:none;
  8105. }
  8106. #u36628 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:29px;
  8110. top:779px;
  8111. width:375px;
  8112. height:60px;
  8113. display:flex;
  8114. }
  8115. #u36628 .text {
  8116. position:absolute;
  8117. align-self:center;
  8118. padding:2px 2px 2px 2px;
  8119. box-sizing:border-box;
  8120. width:100%;
  8121. }
  8122. #u36628_text {
  8123. border-width:0px;
  8124. word-wrap:break-word;
  8125. text-transform:none;
  8126. visibility:hidden;
  8127. }
  8128. #u36629_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:348px;
  8134. height:40px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 1);
  8137. box-sizing:border-box;
  8138. border-width:1px;
  8139. border-style:solid;
  8140. border-color:rgba(121, 121, 121, 1);
  8141. border-radius:63px;
  8142. -moz-box-shadow:none;
  8143. -webkit-box-shadow:none;
  8144. box-shadow:none;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:14px;
  8149. color:#555555;
  8150. }
  8151. #u36629 {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:42px;
  8155. top:789px;
  8156. width:348px;
  8157. height:40px;
  8158. display:flex;
  8159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:14px;
  8163. color:#555555;
  8164. }
  8165. #u36629 .text {
  8166. position:absolute;
  8167. align-self:center;
  8168. padding:2px 2px 2px 2px;
  8169. box-sizing:border-box;
  8170. width:100%;
  8171. }
  8172. #u36629_text {
  8173. border-width:0px;
  8174. word-wrap:break-word;
  8175. text-transform:none;
  8176. }
  8177. #u36630 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:0px;
  8183. height:0px;
  8184. }
  8185. #u36631_div {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:375px;
  8191. height:180px;
  8192. background:inherit;
  8193. background-color:rgba(255, 255, 255, 1);
  8194. border:none;
  8195. border-top:0px;
  8196. border-bottom:0px;
  8197. border-radius:0px;
  8198. border-top-left-radius:0px;
  8199. border-top-right-radius:0px;
  8200. border-bottom-right-radius:0px;
  8201. border-bottom-left-radius:0px;
  8202. -moz-box-shadow:none;
  8203. -webkit-box-shadow:none;
  8204. box-shadow:none;
  8205. }
  8206. #u36631 {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:487px;
  8210. top:259px;
  8211. width:375px;
  8212. height:180px;
  8213. display:flex;
  8214. }
  8215. #u36631 .text {
  8216. position:absolute;
  8217. align-self:center;
  8218. padding:2px 2px 2px 2px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u36631_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. visibility:hidden;
  8227. }
  8228. #u36632_div {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:150px;
  8234. height:150px;
  8235. background:inherit;
  8236. background-color:rgba(255, 255, 255, 0);
  8237. border:none;
  8238. border-left:0px;
  8239. border-top:0px;
  8240. border-right:0px;
  8241. border-radius:0px;
  8242. border-bottom-right-radius:0px;
  8243. border-bottom-left-radius:0px;
  8244. -moz-box-shadow:none;
  8245. -webkit-box-shadow:none;
  8246. box-shadow:none;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:12px;
  8251. line-height:25px;
  8252. }
  8253. #u36632 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:511px;
  8257. top:273px;
  8258. width:150px;
  8259. height:150px;
  8260. display:flex;
  8261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8262. font-weight:400;
  8263. font-style:normal;
  8264. font-size:12px;
  8265. line-height:25px;
  8266. }
  8267. #u36632 .text {
  8268. position:absolute;
  8269. align-self:flex-start;
  8270. padding:0px 0px 0px 0px;
  8271. box-sizing:border-box;
  8272. width:100%;
  8273. }
  8274. #u36632_text {
  8275. border-width:0px;
  8276. white-space:nowrap;
  8277. text-transform:none;
  8278. }
  8279. #u36633 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:0px;
  8285. height:0px;
  8286. }
  8287. #u36634_div {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:0px;
  8292. width:375px;
  8293. height:356px;
  8294. background:inherit;
  8295. background-color:rgba(255, 255, 255, 1);
  8296. border:none;
  8297. border-left:0px;
  8298. border-right:0px;
  8299. border-radius:0px;
  8300. border-top-left-radius:0px;
  8301. border-top-right-radius:0px;
  8302. border-bottom-right-radius:0px;
  8303. border-bottom-left-radius:0px;
  8304. -moz-box-shadow:none;
  8305. -webkit-box-shadow:none;
  8306. box-shadow:none;
  8307. }
  8308. #u36634 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:487px;
  8312. top:449px;
  8313. width:375px;
  8314. height:356px;
  8315. display:flex;
  8316. }
  8317. #u36634 .text {
  8318. position:absolute;
  8319. align-self:center;
  8320. padding:2px 2px 2px 2px;
  8321. box-sizing:border-box;
  8322. width:100%;
  8323. }
  8324. #u36634_text {
  8325. border-width:0px;
  8326. word-wrap:break-word;
  8327. text-transform:none;
  8328. visibility:hidden;
  8329. }
  8330. #u36635_div {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:57px;
  8336. height:30px;
  8337. background:inherit;
  8338. background-color:rgba(255, 255, 255, 0);
  8339. border:none;
  8340. border-left:0px;
  8341. border-top:0px;
  8342. border-right:0px;
  8343. border-radius:0px;
  8344. border-bottom-right-radius:0px;
  8345. border-bottom-left-radius:0px;
  8346. -moz-box-shadow:none;
  8347. -webkit-box-shadow:none;
  8348. box-shadow:none;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:14px;
  8353. line-height:30px;
  8354. }
  8355. #u36635 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:511px;
  8359. top:459px;
  8360. width:57px;
  8361. height:30px;
  8362. display:flex;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:14px;
  8367. line-height:30px;
  8368. }
  8369. #u36635 .text {
  8370. position:absolute;
  8371. align-self:flex-start;
  8372. padding:0px 0px 0px 0px;
  8373. box-sizing:border-box;
  8374. width:100%;
  8375. }
  8376. #u36635_text {
  8377. border-width:0px;
  8378. white-space:nowrap;
  8379. text-transform:none;
  8380. }
  8381. #u36636_div {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:181px;
  8387. height:30px;
  8388. background:inherit;
  8389. background-color:rgba(255, 255, 255, 0);
  8390. border:none;
  8391. border-left:0px;
  8392. border-top:0px;
  8393. border-right:0px;
  8394. border-radius:0px;
  8395. border-bottom-right-radius:0px;
  8396. border-bottom-left-radius:0px;
  8397. -moz-box-shadow:none;
  8398. -webkit-box-shadow:none;
  8399. box-shadow:none;
  8400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8401. font-weight:400;
  8402. font-style:normal;
  8403. font-size:12px;
  8404. line-height:30px;
  8405. }
  8406. #u36636 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:511px;
  8410. top:489px;
  8411. width:181px;
  8412. height:30px;
  8413. display:flex;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:12px;
  8418. line-height:30px;
  8419. }
  8420. #u36636 .text {
  8421. position:absolute;
  8422. align-self:flex-start;
  8423. padding:0px 0px 0px 0px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u36636_text {
  8428. border-width:0px;
  8429. white-space:nowrap;
  8430. text-transform:none;
  8431. }
  8432. #u36637_div {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:167px;
  8438. height:30px;
  8439. background:inherit;
  8440. background-color:rgba(255, 255, 255, 0);
  8441. border:none;
  8442. border-left:0px;
  8443. border-top:0px;
  8444. border-right:0px;
  8445. border-radius:0px;
  8446. border-bottom-right-radius:0px;
  8447. border-bottom-left-radius:0px;
  8448. -moz-box-shadow:none;
  8449. -webkit-box-shadow:none;
  8450. box-shadow:none;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:12px;
  8455. line-height:30px;
  8456. }
  8457. #u36637 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:511px;
  8461. top:519px;
  8462. width:167px;
  8463. height:30px;
  8464. display:flex;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:12px;
  8469. line-height:30px;
  8470. }
  8471. #u36637 .text {
  8472. position:absolute;
  8473. align-self:flex-start;
  8474. padding:0px 0px 0px 0px;
  8475. box-sizing:border-box;
  8476. width:100%;
  8477. }
  8478. #u36637_text {
  8479. border-width:0px;
  8480. white-space:nowrap;
  8481. text-transform:none;
  8482. }
  8483. #u36638_img {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:0px;
  8487. top:0px;
  8488. width:375px;
  8489. height:252px;
  8490. }
  8491. #u36638 {
  8492. border-width:0px;
  8493. position:absolute;
  8494. left:487px;
  8495. top:553px;
  8496. width:375px;
  8497. height:252px;
  8498. display:flex;
  8499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8500. font-weight:400;
  8501. font-style:normal;
  8502. }
  8503. #u36638 .text {
  8504. position:absolute;
  8505. align-self:center;
  8506. padding:2px 2px 2px 2px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u36638_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. }
  8515. #u36639_div {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:0px;
  8519. top:0px;
  8520. width:133px;
  8521. height:30px;
  8522. background:inherit;
  8523. background-color:rgba(255, 255, 255, 0);
  8524. border:none;
  8525. border-left:0px;
  8526. border-top:0px;
  8527. border-right:0px;
  8528. border-radius:0px;
  8529. border-bottom-right-radius:0px;
  8530. border-bottom-left-radius:0px;
  8531. -moz-box-shadow:none;
  8532. -webkit-box-shadow:none;
  8533. box-shadow:none;
  8534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8535. font-weight:400;
  8536. font-style:normal;
  8537. font-size:12px;
  8538. color:#0089FE;
  8539. line-height:30px;
  8540. }
  8541. #u36639 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:715px;
  8545. top:459px;
  8546. width:133px;
  8547. height:30px;
  8548. display:flex;
  8549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:12px;
  8553. color:#0089FE;
  8554. line-height:30px;
  8555. }
  8556. #u36639 .text {
  8557. position:absolute;
  8558. align-self:flex-start;
  8559. padding:0px 0px 0px 0px;
  8560. box-sizing:border-box;
  8561. width:100%;
  8562. }
  8563. #u36639_text {
  8564. border-width:0px;
  8565. white-space:nowrap;
  8566. text-transform:none;
  8567. }
  8568. #u36640 {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:0px;
  8572. top:0px;
  8573. width:0px;
  8574. height:0px;
  8575. }
  8576. #u36641_div {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:0px;
  8580. top:0px;
  8581. width:375px;
  8582. height:60px;
  8583. background:inherit;
  8584. background-color:rgba(255, 255, 255, 1);
  8585. box-sizing:border-box;
  8586. border-width:1px;
  8587. border-style:solid;
  8588. border-color:rgba(242, 242, 242, 1);
  8589. border-radius:20px;
  8590. border-top-left-radius:0px;
  8591. border-top-right-radius:0px;
  8592. -moz-box-shadow:none;
  8593. -webkit-box-shadow:none;
  8594. box-shadow:none;
  8595. }
  8596. #u36641 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:487px;
  8600. top:779px;
  8601. width:375px;
  8602. height:60px;
  8603. display:flex;
  8604. }
  8605. #u36641 .text {
  8606. position:absolute;
  8607. align-self:center;
  8608. padding:2px 2px 2px 2px;
  8609. box-sizing:border-box;
  8610. width:100%;
  8611. }
  8612. #u36641_text {
  8613. border-width:0px;
  8614. word-wrap:break-word;
  8615. text-transform:none;
  8616. visibility:hidden;
  8617. }
  8618. #u36642_div {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:348px;
  8624. height:40px;
  8625. background:inherit;
  8626. background-color:rgba(255, 255, 255, 1);
  8627. box-sizing:border-box;
  8628. border-width:1px;
  8629. border-style:solid;
  8630. border-color:rgba(121, 121, 121, 1);
  8631. border-radius:63px;
  8632. -moz-box-shadow:none;
  8633. -webkit-box-shadow:none;
  8634. box-shadow:none;
  8635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8636. font-weight:400;
  8637. font-style:normal;
  8638. font-size:14px;
  8639. color:#555555;
  8640. }
  8641. #u36642 {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:500px;
  8645. top:789px;
  8646. width:348px;
  8647. height:40px;
  8648. display:flex;
  8649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8650. font-weight:400;
  8651. font-style:normal;
  8652. font-size:14px;
  8653. color:#555555;
  8654. }
  8655. #u36642 .text {
  8656. position:absolute;
  8657. align-self:center;
  8658. padding:2px 2px 2px 2px;
  8659. box-sizing:border-box;
  8660. width:100%;
  8661. }
  8662. #u36642_text {
  8663. border-width:0px;
  8664. word-wrap:break-word;
  8665. text-transform:none;
  8666. }
  8667. #u36643 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:0px;
  8671. top:0px;
  8672. width:0px;
  8673. height:0px;
  8674. }
  8675. #u36644_div {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:0px;
  8679. top:0px;
  8680. width:375px;
  8681. height:180px;
  8682. background:inherit;
  8683. background-color:rgba(255, 255, 255, 1);
  8684. border:none;
  8685. border-top:0px;
  8686. border-bottom:0px;
  8687. border-radius:0px;
  8688. border-top-left-radius:0px;
  8689. border-top-right-radius:0px;
  8690. border-bottom-right-radius:0px;
  8691. border-bottom-left-radius:0px;
  8692. -moz-box-shadow:none;
  8693. -webkit-box-shadow:none;
  8694. box-shadow:none;
  8695. }
  8696. #u36644 {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:957px;
  8700. top:259px;
  8701. width:375px;
  8702. height:180px;
  8703. display:flex;
  8704. }
  8705. #u36644 .text {
  8706. position:absolute;
  8707. align-self:center;
  8708. padding:2px 2px 2px 2px;
  8709. box-sizing:border-box;
  8710. width:100%;
  8711. }
  8712. #u36644_text {
  8713. border-width:0px;
  8714. word-wrap:break-word;
  8715. text-transform:none;
  8716. visibility:hidden;
  8717. }
  8718. #u36645_div {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:150px;
  8724. height:150px;
  8725. background:inherit;
  8726. background-color:rgba(255, 255, 255, 0);
  8727. border:none;
  8728. border-left:0px;
  8729. border-top:0px;
  8730. border-right:0px;
  8731. border-radius:0px;
  8732. border-bottom-right-radius:0px;
  8733. border-bottom-left-radius:0px;
  8734. -moz-box-shadow:none;
  8735. -webkit-box-shadow:none;
  8736. box-shadow:none;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:12px;
  8741. line-height:25px;
  8742. }
  8743. #u36645 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:981px;
  8747. top:273px;
  8748. width:150px;
  8749. height:150px;
  8750. display:flex;
  8751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8752. font-weight:400;
  8753. font-style:normal;
  8754. font-size:12px;
  8755. line-height:25px;
  8756. }
  8757. #u36645 .text {
  8758. position:absolute;
  8759. align-self:flex-start;
  8760. padding:0px 0px 0px 0px;
  8761. box-sizing:border-box;
  8762. width:100%;
  8763. }
  8764. #u36645_text {
  8765. border-width:0px;
  8766. white-space:nowrap;
  8767. text-transform:none;
  8768. }
  8769. #u36646 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:0px;
  8773. top:0px;
  8774. width:0px;
  8775. height:0px;
  8776. }
  8777. #u36647_div {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:375px;
  8783. height:356px;
  8784. background:inherit;
  8785. background-color:rgba(255, 255, 255, 1);
  8786. border:none;
  8787. border-left:0px;
  8788. border-right:0px;
  8789. border-radius:0px;
  8790. border-top-left-radius:0px;
  8791. border-top-right-radius:0px;
  8792. border-bottom-right-radius:0px;
  8793. border-bottom-left-radius:0px;
  8794. -moz-box-shadow:none;
  8795. -webkit-box-shadow:none;
  8796. box-shadow:none;
  8797. }
  8798. #u36647 {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:957px;
  8802. top:449px;
  8803. width:375px;
  8804. height:356px;
  8805. display:flex;
  8806. }
  8807. #u36647 .text {
  8808. position:absolute;
  8809. align-self:center;
  8810. padding:2px 2px 2px 2px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u36647_text {
  8815. border-width:0px;
  8816. word-wrap:break-word;
  8817. text-transform:none;
  8818. visibility:hidden;
  8819. }
  8820. #u36648_div {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:57px;
  8826. height:30px;
  8827. background:inherit;
  8828. background-color:rgba(255, 255, 255, 0);
  8829. border:none;
  8830. border-left:0px;
  8831. border-top:0px;
  8832. border-right:0px;
  8833. border-radius:0px;
  8834. border-bottom-right-radius:0px;
  8835. border-bottom-left-radius:0px;
  8836. -moz-box-shadow:none;
  8837. -webkit-box-shadow:none;
  8838. box-shadow:none;
  8839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:14px;
  8843. line-height:30px;
  8844. }
  8845. #u36648 {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:981px;
  8849. top:459px;
  8850. width:57px;
  8851. height:30px;
  8852. display:flex;
  8853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8854. font-weight:400;
  8855. font-style:normal;
  8856. font-size:14px;
  8857. line-height:30px;
  8858. }
  8859. #u36648 .text {
  8860. position:absolute;
  8861. align-self:flex-start;
  8862. padding:0px 0px 0px 0px;
  8863. box-sizing:border-box;
  8864. width:100%;
  8865. }
  8866. #u36648_text {
  8867. border-width:0px;
  8868. white-space:nowrap;
  8869. text-transform:none;
  8870. }
  8871. #u36649_div {
  8872. border-width:0px;
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:181px;
  8877. height:30px;
  8878. background:inherit;
  8879. background-color:rgba(255, 255, 255, 0);
  8880. border:none;
  8881. border-left:0px;
  8882. border-top:0px;
  8883. border-right:0px;
  8884. border-radius:0px;
  8885. border-bottom-right-radius:0px;
  8886. border-bottom-left-radius:0px;
  8887. -moz-box-shadow:none;
  8888. -webkit-box-shadow:none;
  8889. box-shadow:none;
  8890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8891. font-weight:400;
  8892. font-style:normal;
  8893. font-size:12px;
  8894. line-height:30px;
  8895. }
  8896. #u36649 {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:981px;
  8900. top:489px;
  8901. width:181px;
  8902. height:30px;
  8903. display:flex;
  8904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8905. font-weight:400;
  8906. font-style:normal;
  8907. font-size:12px;
  8908. line-height:30px;
  8909. }
  8910. #u36649 .text {
  8911. position:absolute;
  8912. align-self:flex-start;
  8913. padding:0px 0px 0px 0px;
  8914. box-sizing:border-box;
  8915. width:100%;
  8916. }
  8917. #u36649_text {
  8918. border-width:0px;
  8919. white-space:nowrap;
  8920. text-transform:none;
  8921. }
  8922. #u36650_div {
  8923. border-width:0px;
  8924. position:absolute;
  8925. left:0px;
  8926. top:0px;
  8927. width:167px;
  8928. height:30px;
  8929. background:inherit;
  8930. background-color:rgba(255, 255, 255, 0);
  8931. border:none;
  8932. border-left:0px;
  8933. border-top:0px;
  8934. border-right:0px;
  8935. border-radius:0px;
  8936. border-bottom-right-radius:0px;
  8937. border-bottom-left-radius:0px;
  8938. -moz-box-shadow:none;
  8939. -webkit-box-shadow:none;
  8940. box-shadow:none;
  8941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8942. font-weight:400;
  8943. font-style:normal;
  8944. font-size:12px;
  8945. line-height:30px;
  8946. }
  8947. #u36650 {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:981px;
  8951. top:519px;
  8952. width:167px;
  8953. height:30px;
  8954. display:flex;
  8955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8956. font-weight:400;
  8957. font-style:normal;
  8958. font-size:12px;
  8959. line-height:30px;
  8960. }
  8961. #u36650 .text {
  8962. position:absolute;
  8963. align-self:flex-start;
  8964. padding:0px 0px 0px 0px;
  8965. box-sizing:border-box;
  8966. width:100%;
  8967. }
  8968. #u36650_text {
  8969. border-width:0px;
  8970. white-space:nowrap;
  8971. text-transform:none;
  8972. }
  8973. #u36651_img {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:0px;
  8977. top:0px;
  8978. width:375px;
  8979. height:252px;
  8980. }
  8981. #u36651 {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:957px;
  8985. top:553px;
  8986. width:375px;
  8987. height:252px;
  8988. display:flex;
  8989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8990. font-weight:400;
  8991. font-style:normal;
  8992. }
  8993. #u36651 .text {
  8994. position:absolute;
  8995. align-self:center;
  8996. padding:2px 2px 2px 2px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u36651_text {
  9001. border-width:0px;
  9002. word-wrap:break-word;
  9003. text-transform:none;
  9004. }
  9005. #u36652_div {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:0px;
  9009. top:0px;
  9010. width:85px;
  9011. height:30px;
  9012. background:inherit;
  9013. background-color:rgba(255, 255, 255, 0);
  9014. border:none;
  9015. border-left:0px;
  9016. border-top:0px;
  9017. border-right:0px;
  9018. border-radius:0px;
  9019. border-bottom-right-radius:0px;
  9020. border-bottom-left-radius:0px;
  9021. -moz-box-shadow:none;
  9022. -webkit-box-shadow:none;
  9023. box-shadow:none;
  9024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9025. font-weight:400;
  9026. font-style:normal;
  9027. font-size:12px;
  9028. color:#0089FE;
  9029. line-height:30px;
  9030. }
  9031. #u36652 {
  9032. border-width:0px;
  9033. position:absolute;
  9034. left:1233px;
  9035. top:459px;
  9036. width:85px;
  9037. height:30px;
  9038. display:flex;
  9039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9040. font-weight:400;
  9041. font-style:normal;
  9042. font-size:12px;
  9043. color:#0089FE;
  9044. line-height:30px;
  9045. }
  9046. #u36652 .text {
  9047. position:absolute;
  9048. align-self:flex-start;
  9049. padding:0px 0px 0px 0px;
  9050. box-sizing:border-box;
  9051. width:100%;
  9052. }
  9053. #u36652_text {
  9054. border-width:0px;
  9055. white-space:nowrap;
  9056. text-transform:none;
  9057. }
  9058. #u36653 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:0px;
  9064. height:0px;
  9065. }
  9066. #u36654_div {
  9067. border-width:0px;
  9068. position:absolute;
  9069. left:0px;
  9070. top:0px;
  9071. width:375px;
  9072. height:60px;
  9073. background:inherit;
  9074. background-color:rgba(255, 255, 255, 1);
  9075. box-sizing:border-box;
  9076. border-width:1px;
  9077. border-style:solid;
  9078. border-color:rgba(242, 242, 242, 1);
  9079. border-radius:20px;
  9080. border-top-left-radius:0px;
  9081. border-top-right-radius:0px;
  9082. -moz-box-shadow:none;
  9083. -webkit-box-shadow:none;
  9084. box-shadow:none;
  9085. }
  9086. #u36654 {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:957px;
  9090. top:779px;
  9091. width:375px;
  9092. height:60px;
  9093. display:flex;
  9094. }
  9095. #u36654 .text {
  9096. position:absolute;
  9097. align-self:center;
  9098. padding:2px 2px 2px 2px;
  9099. box-sizing:border-box;
  9100. width:100%;
  9101. }
  9102. #u36654_text {
  9103. border-width:0px;
  9104. word-wrap:break-word;
  9105. text-transform:none;
  9106. visibility:hidden;
  9107. }
  9108. #u36655_div {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:0px;
  9112. top:0px;
  9113. width:348px;
  9114. height:40px;
  9115. background:inherit;
  9116. background-color:rgba(255, 255, 255, 1);
  9117. box-sizing:border-box;
  9118. border-width:1px;
  9119. border-style:solid;
  9120. border-color:rgba(121, 121, 121, 1);
  9121. border-radius:63px;
  9122. -moz-box-shadow:none;
  9123. -webkit-box-shadow:none;
  9124. box-shadow:none;
  9125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9126. font-weight:400;
  9127. font-style:normal;
  9128. font-size:14px;
  9129. color:#555555;
  9130. }
  9131. #u36655 {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:970px;
  9135. top:789px;
  9136. width:348px;
  9137. height:40px;
  9138. display:flex;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:14px;
  9143. color:#555555;
  9144. }
  9145. #u36655 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 2px 2px 2px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u36655_text {
  9153. border-width:0px;
  9154. word-wrap:break-word;
  9155. text-transform:none;
  9156. }
  9157. #u36656 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:0px;
  9163. height:0px;
  9164. }
  9165. #u36657_div {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:0px;
  9169. top:0px;
  9170. width:375px;
  9171. height:180px;
  9172. background:inherit;
  9173. background-color:rgba(255, 255, 255, 1);
  9174. border:none;
  9175. border-top:0px;
  9176. border-bottom:0px;
  9177. border-radius:0px;
  9178. border-top-left-radius:0px;
  9179. border-top-right-radius:0px;
  9180. border-bottom-right-radius:0px;
  9181. border-bottom-left-radius:0px;
  9182. -moz-box-shadow:none;
  9183. -webkit-box-shadow:none;
  9184. box-shadow:none;
  9185. }
  9186. #u36657 {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:1410px;
  9190. top:259px;
  9191. width:375px;
  9192. height:180px;
  9193. display:flex;
  9194. }
  9195. #u36657 .text {
  9196. position:absolute;
  9197. align-self:center;
  9198. padding:2px 2px 2px 2px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u36657_text {
  9203. border-width:0px;
  9204. word-wrap:break-word;
  9205. text-transform:none;
  9206. visibility:hidden;
  9207. }
  9208. #u36658_div {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:150px;
  9214. height:150px;
  9215. background:inherit;
  9216. background-color:rgba(255, 255, 255, 0);
  9217. border:none;
  9218. border-left:0px;
  9219. border-top:0px;
  9220. border-right:0px;
  9221. border-radius:0px;
  9222. border-bottom-right-radius:0px;
  9223. border-bottom-left-radius:0px;
  9224. -moz-box-shadow:none;
  9225. -webkit-box-shadow:none;
  9226. box-shadow:none;
  9227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:12px;
  9231. line-height:25px;
  9232. }
  9233. #u36658 {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:1434px;
  9237. top:273px;
  9238. width:150px;
  9239. height:150px;
  9240. display:flex;
  9241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9242. font-weight:400;
  9243. font-style:normal;
  9244. font-size:12px;
  9245. line-height:25px;
  9246. }
  9247. #u36658 .text {
  9248. position:absolute;
  9249. align-self:flex-start;
  9250. padding:0px 0px 0px 0px;
  9251. box-sizing:border-box;
  9252. width:100%;
  9253. }
  9254. #u36658_text {
  9255. border-width:0px;
  9256. white-space:nowrap;
  9257. text-transform:none;
  9258. }
  9259. #u36659 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:0px;
  9265. height:0px;
  9266. }
  9267. #u36660_div {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:0px;
  9271. top:0px;
  9272. width:375px;
  9273. height:180px;
  9274. background:inherit;
  9275. background-color:rgba(255, 255, 255, 1);
  9276. border:none;
  9277. border-top:0px;
  9278. border-bottom:0px;
  9279. border-radius:0px;
  9280. border-top-left-radius:0px;
  9281. border-top-right-radius:0px;
  9282. border-bottom-right-radius:0px;
  9283. border-bottom-left-radius:0px;
  9284. -moz-box-shadow:none;
  9285. -webkit-box-shadow:none;
  9286. box-shadow:none;
  9287. }
  9288. #u36660 {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:1867px;
  9292. top:259px;
  9293. width:375px;
  9294. height:180px;
  9295. display:flex;
  9296. }
  9297. #u36660 .text {
  9298. position:absolute;
  9299. align-self:center;
  9300. padding:2px 2px 2px 2px;
  9301. box-sizing:border-box;
  9302. width:100%;
  9303. }
  9304. #u36660_text {
  9305. border-width:0px;
  9306. word-wrap:break-word;
  9307. text-transform:none;
  9308. visibility:hidden;
  9309. }
  9310. #u36661_div {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:0px;
  9314. top:0px;
  9315. width:150px;
  9316. height:150px;
  9317. background:inherit;
  9318. background-color:rgba(255, 255, 255, 0);
  9319. border:none;
  9320. border-left:0px;
  9321. border-top:0px;
  9322. border-right:0px;
  9323. border-radius:0px;
  9324. border-bottom-right-radius:0px;
  9325. border-bottom-left-radius:0px;
  9326. -moz-box-shadow:none;
  9327. -webkit-box-shadow:none;
  9328. box-shadow:none;
  9329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:12px;
  9333. line-height:25px;
  9334. }
  9335. #u36661 {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:1891px;
  9339. top:273px;
  9340. width:150px;
  9341. height:150px;
  9342. display:flex;
  9343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9344. font-weight:400;
  9345. font-style:normal;
  9346. font-size:12px;
  9347. line-height:25px;
  9348. }
  9349. #u36661 .text {
  9350. position:absolute;
  9351. align-self:flex-start;
  9352. padding:0px 0px 0px 0px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u36661_text {
  9357. border-width:0px;
  9358. white-space:nowrap;
  9359. text-transform:none;
  9360. }
  9361. #u36662_div {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:80px;
  9367. height:120px;
  9368. background:inherit;
  9369. background-color:rgba(255, 255, 255, 0);
  9370. border:none;
  9371. border-left:0px;
  9372. border-top:0px;
  9373. border-right:0px;
  9374. border-radius:0px;
  9375. border-bottom-right-radius:0px;
  9376. border-bottom-left-radius:0px;
  9377. -moz-box-shadow:none;
  9378. -webkit-box-shadow:none;
  9379. box-shadow:none;
  9380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9381. font-weight:400;
  9382. font-style:normal;
  9383. font-size:12px;
  9384. color:#D9001B;
  9385. line-height:30px;
  9386. }
  9387. #u36662 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:1896px;
  9391. top:579px;
  9392. width:80px;
  9393. height:120px;
  9394. display:flex;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:12px;
  9399. color:#D9001B;
  9400. line-height:30px;
  9401. }
  9402. #u36662 .text {
  9403. position:absolute;
  9404. align-self:flex-start;
  9405. padding:0px 0px 0px 0px;
  9406. box-sizing:border-box;
  9407. width:100%;
  9408. }
  9409. #u36662_text {
  9410. border-width:0px;
  9411. white-space:nowrap;
  9412. text-transform:none;
  9413. }