styles.css 165 KB

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