styles.css 124 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1185px;
  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. #u42499 {
  20. border-width:0px;
  21. position:absolute;
  22. left:35px;
  23. top:-961px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u42500 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u42500 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u42500_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u42500_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u42501_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u42501 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u42501 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u42501_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u42502 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u42503_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u42503 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u42503 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u42503_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u42504 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u42505 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u42505 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u42505_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u42505_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u42506 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u42506 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u42506_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u42506_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u42507 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u42508 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u42508 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u42508_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u42508_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u42509 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u42509 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u42509_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u42509_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u42510 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u42510 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u42510_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u42510_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u42511 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u42511 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u42511_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u42511_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u42512 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u42512 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u42512_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u42512_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u42513_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u42513 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u42513 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u42513_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u42514 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u42515 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u42515 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u42515_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u42515_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u42516_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u42516 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u42516 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u42516_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u42517 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u42518 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u42518 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u42518_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u42518_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u42519_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u42519 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u42519 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u42519_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u42520_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u42520 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u42520 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u42520_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u42521 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u42522 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u42522 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u42522_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u42522_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u42523_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u42523 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u42523 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u42523_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u42524 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u42525 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u42525 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u42525_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u42525_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u42526_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u42526 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u42526 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u42526_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u42527_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:772px;
  809. background:inherit;
  810. background-color:rgba(24, 144, 255, 1);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u42527 {
  819. border-width:0px;
  820. position:absolute;
  821. left:64px;
  822. top:-893px;
  823. width:375px;
  824. height:772px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u42527 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u42527_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u42528_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:12px;
  848. height:12px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 0);
  851. box-sizing:border-box;
  852. border-width:2px;
  853. border-style:solid;
  854. border-color:rgba(255, 255, 255, 1);
  855. border-right:0px;
  856. border-bottom:0px;
  857. border-radius:0px;
  858. border-top-right-radius:0px;
  859. border-bottom-left-radius:0px;
  860. filter:drop-shadow(none);
  861. transition:none;
  862. }
  863. #u42528 {
  864. border-width:0px;
  865. position:absolute;
  866. left:74px;
  867. top:-880px;
  868. width:12px;
  869. height:12px;
  870. display:flex;
  871. -webkit-transform:rotate(315deg);
  872. -moz-transform:rotate(315deg);
  873. -ms-transform:rotate(315deg);
  874. transform:rotate(315deg);
  875. transition:none;
  876. transform-origin:50% 50%;
  877. }
  878. #u42528 .text {
  879. position:absolute;
  880. align-self:center;
  881. padding:2px 2px 2px 2px;
  882. box-sizing:border-box;
  883. width:100%;
  884. }
  885. #u42528_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u42529 {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:0px;
  897. height:0px;
  898. }
  899. #u42530_div {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:88px;
  905. height:32px;
  906. background:inherit;
  907. background-color:rgba(255, 255, 255, 1);
  908. box-sizing:border-box;
  909. border-width:1px;
  910. border-style:solid;
  911. border-color:rgba(242, 242, 242, 1);
  912. border-radius:33px;
  913. filter:drop-shadow(none);
  914. transition:none;
  915. }
  916. #u42530 {
  917. border-width:0px;
  918. position:absolute;
  919. left:344px;
  920. top:-890px;
  921. width:88px;
  922. height:32px;
  923. display:flex;
  924. transition:none;
  925. transform-origin:50% 50%;
  926. }
  927. #u42530 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u42530_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u42531 {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:0px;
  946. height:0px;
  947. }
  948. #u42532 {
  949. border-width:0px;
  950. position:absolute;
  951. left:407px;
  952. top:-883px;
  953. width:18px;
  954. height:18px;
  955. display:flex;
  956. transition:none;
  957. }
  958. #u42532 .text {
  959. position:absolute;
  960. align-self:center;
  961. padding:2px 2px 2px 2px;
  962. box-sizing:border-box;
  963. width:100%;
  964. }
  965. #u42532_img {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:18px;
  971. height:18px;
  972. }
  973. #u42532_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u42533 {
  980. border-width:0px;
  981. position:absolute;
  982. left:413px;
  983. top:-877px;
  984. width:6px;
  985. height:6px;
  986. display:flex;
  987. transition:none;
  988. }
  989. #u42533 .text {
  990. position:absolute;
  991. align-self:center;
  992. padding:2px 2px 2px 2px;
  993. box-sizing:border-box;
  994. width:100%;
  995. }
  996. #u42533_img {
  997. border-width:0px;
  998. position:absolute;
  999. left:0px;
  1000. top:0px;
  1001. width:6px;
  1002. height:6px;
  1003. }
  1004. #u42533_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u42534 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u42535 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:358px;
  1022. top:-876px;
  1023. width:5px;
  1024. height:5px;
  1025. display:flex;
  1026. transition:none;
  1027. }
  1028. #u42535 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u42535_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:5px;
  1041. height:5px;
  1042. }
  1043. #u42535_text {
  1044. border-width:0px;
  1045. word-wrap:break-word;
  1046. text-transform:none;
  1047. visibility:hidden;
  1048. }
  1049. #u42536 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:374px;
  1053. top:-876px;
  1054. width:5px;
  1055. height:5px;
  1056. display:flex;
  1057. transition:none;
  1058. }
  1059. #u42536 .text {
  1060. position:absolute;
  1061. align-self:center;
  1062. padding:2px 2px 2px 2px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u42536_img {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:0px;
  1070. top:0px;
  1071. width:5px;
  1072. height:5px;
  1073. }
  1074. #u42536_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. visibility:hidden;
  1079. }
  1080. #u42537 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:365px;
  1084. top:-877px;
  1085. width:7px;
  1086. height:7px;
  1087. display:flex;
  1088. transition:none;
  1089. }
  1090. #u42537 .text {
  1091. position:absolute;
  1092. align-self:center;
  1093. padding:2px 2px 2px 2px;
  1094. box-sizing:border-box;
  1095. width:100%;
  1096. }
  1097. #u42537_img {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:7px;
  1103. height:7px;
  1104. }
  1105. #u42537_text {
  1106. border-width:0px;
  1107. word-wrap:break-word;
  1108. text-transform:none;
  1109. visibility:hidden;
  1110. }
  1111. #u42538 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:382px;
  1115. top:-874px;
  1116. width:18px;
  1117. height:1px;
  1118. display:flex;
  1119. -webkit-transform:rotate(90deg);
  1120. -moz-transform:rotate(90deg);
  1121. -ms-transform:rotate(90deg);
  1122. transform:rotate(90deg);
  1123. transition:none;
  1124. }
  1125. #u42538 .text {
  1126. position:absolute;
  1127. align-self:center;
  1128. padding:2px 2px 2px 2px;
  1129. box-sizing:border-box;
  1130. width:100%;
  1131. }
  1132. #u42538_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:19px;
  1138. height:2px;
  1139. }
  1140. #u42538_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. visibility:hidden;
  1145. }
  1146. #u42539_div {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:169px;
  1152. height:40px;
  1153. background:inherit;
  1154. background-color:rgba(255, 255, 255, 0);
  1155. border-left:0px;
  1156. border-top:0px;
  1157. border-right:0px;
  1158. border-radius:0px;
  1159. border-bottom-right-radius:0px;
  1160. border-bottom-left-radius:0px;
  1161. filter:drop-shadow(none);
  1162. transition:none;
  1163. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1164. font-weight:500;
  1165. font-style:normal;
  1166. font-size:28px;
  1167. color:#FFFFFF;
  1168. text-align:right;
  1169. }
  1170. #u42539 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:167px;
  1174. top:-650px;
  1175. width:169px;
  1176. height:40px;
  1177. display:flex;
  1178. transition:none;
  1179. transform-origin:50% 50%;
  1180. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1181. font-weight:500;
  1182. font-style:normal;
  1183. font-size:28px;
  1184. color:#FFFFFF;
  1185. text-align:right;
  1186. }
  1187. #u42539 .text {
  1188. position:absolute;
  1189. align-self:center;
  1190. padding:0px 0px 0px 0px;
  1191. box-sizing:border-box;
  1192. width:100%;
  1193. }
  1194. #u42539_text {
  1195. border-width:0px;
  1196. white-space:nowrap;
  1197. text-transform:none;
  1198. }
  1199. #u42540_div {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:0px;
  1203. top:0px;
  1204. width:360px;
  1205. height:410px;
  1206. background:inherit;
  1207. background-color:rgba(255, 255, 255, 1);
  1208. border-bottom:0px;
  1209. border-radius:18px;
  1210. border-bottom-right-radius:0px;
  1211. border-bottom-left-radius:0px;
  1212. filter:drop-shadow(none);
  1213. transition:none;
  1214. }
  1215. #u42540 {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:72px;
  1219. top:-591px;
  1220. width:360px;
  1221. height:410px;
  1222. display:flex;
  1223. transition:none;
  1224. transform-origin:50% 50%;
  1225. }
  1226. #u42540 .text {
  1227. position:absolute;
  1228. align-self:center;
  1229. padding:2px 2px 2px 2px;
  1230. box-sizing:border-box;
  1231. width:100%;
  1232. }
  1233. #u42540_text {
  1234. border-width:0px;
  1235. word-wrap:break-word;
  1236. text-transform:none;
  1237. visibility:hidden;
  1238. }
  1239. #u42541_div {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:73px;
  1245. height:25px;
  1246. background:inherit;
  1247. background-color:rgba(255, 255, 255, 0);
  1248. border-left:0px;
  1249. border-top:0px;
  1250. border-right:0px;
  1251. border-radius:0px;
  1252. border-bottom-right-radius:0px;
  1253. border-bottom-left-radius:0px;
  1254. filter:drop-shadow(none);
  1255. transition:none;
  1256. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1257. font-weight:500;
  1258. font-style:normal;
  1259. font-size:18px;
  1260. color:#5C93FF;
  1261. text-align:center;
  1262. }
  1263. #u42541 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:215px;
  1267. top:-558px;
  1268. width:73px;
  1269. height:25px;
  1270. display:flex;
  1271. transition:none;
  1272. transform-origin:50% 50%;
  1273. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1274. font-weight:500;
  1275. font-style:normal;
  1276. font-size:18px;
  1277. color:#5C93FF;
  1278. text-align:center;
  1279. }
  1280. #u42541 .text {
  1281. position:absolute;
  1282. align-self:center;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u42541_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u42542 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:92px;
  1296. top:-498px;
  1297. width:30px;
  1298. height:30px;
  1299. display:flex;
  1300. transition:none;
  1301. color:#FFFFFF;
  1302. }
  1303. #u42542 .text {
  1304. position:absolute;
  1305. align-self:center;
  1306. padding:2px 2px 2px 2px;
  1307. box-sizing:border-box;
  1308. width:100%;
  1309. }
  1310. #u42542_img {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:30px;
  1316. height:30px;
  1317. }
  1318. #u42542_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. }
  1323. #u42543_div {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:73px;
  1329. height:25px;
  1330. background:inherit;
  1331. background-color:rgba(255, 255, 255, 0);
  1332. border-left:0px;
  1333. border-top:0px;
  1334. border-right:0px;
  1335. border-radius:0px;
  1336. border-bottom-right-radius:0px;
  1337. border-bottom-left-radius:0px;
  1338. filter:drop-shadow(none);
  1339. transition:none;
  1340. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1341. font-weight:500;
  1342. font-style:normal;
  1343. font-size:18px;
  1344. color:#5C93FF;
  1345. }
  1346. #u42543 {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:130px;
  1350. top:-498px;
  1351. width:73px;
  1352. height:25px;
  1353. display:flex;
  1354. transition:none;
  1355. transform-origin:50% 50%;
  1356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1357. font-weight:500;
  1358. font-style:normal;
  1359. font-size:18px;
  1360. color:#5C93FF;
  1361. }
  1362. #u42543 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:0px 0px 0px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u42543_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u42544_div {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:169px;
  1380. height:30px;
  1381. background:inherit;
  1382. background-color:rgba(255, 255, 255, 0);
  1383. border-left:0px;
  1384. border-top:0px;
  1385. border-right:0px;
  1386. border-radius:0px;
  1387. border-bottom-right-radius:0px;
  1388. border-bottom-left-radius:0px;
  1389. filter:drop-shadow(none);
  1390. transition:none;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:12px;
  1395. line-height:30px;
  1396. }
  1397. #u42544 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:130px;
  1401. top:-473px;
  1402. width:169px;
  1403. height:30px;
  1404. display:flex;
  1405. transition:none;
  1406. transform-origin:50% 50%;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:12px;
  1411. line-height:30px;
  1412. }
  1413. #u42544 .text {
  1414. position:absolute;
  1415. align-self:flex-start;
  1416. padding:0px 0px 0px 0px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u42544_text {
  1421. border-width:0px;
  1422. white-space:nowrap;
  1423. text-transform:none;
  1424. }
  1425. #u42545 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:92px;
  1429. top:-428px;
  1430. width:30px;
  1431. height:30px;
  1432. display:flex;
  1433. transition:none;
  1434. color:#FFFFFF;
  1435. }
  1436. #u42545 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:2px 2px 2px 2px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u42545_img {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:30px;
  1449. height:30px;
  1450. }
  1451. #u42545_text {
  1452. border-width:0px;
  1453. word-wrap:break-word;
  1454. text-transform:none;
  1455. }
  1456. #u42546_div {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:0px;
  1460. top:0px;
  1461. width:109px;
  1462. height:25px;
  1463. background:inherit;
  1464. background-color:rgba(255, 255, 255, 0);
  1465. border-left:0px;
  1466. border-top:0px;
  1467. border-right:0px;
  1468. border-radius:0px;
  1469. border-bottom-right-radius:0px;
  1470. border-bottom-left-radius:0px;
  1471. filter:drop-shadow(none);
  1472. transition:none;
  1473. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1474. font-weight:500;
  1475. font-style:normal;
  1476. font-size:18px;
  1477. color:#5C93FF;
  1478. }
  1479. #u42546 {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:130px;
  1483. top:-426px;
  1484. width:109px;
  1485. height:25px;
  1486. display:flex;
  1487. transition:none;
  1488. transform-origin:50% 50%;
  1489. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1490. font-weight:500;
  1491. font-style:normal;
  1492. font-size:18px;
  1493. color:#5C93FF;
  1494. }
  1495. #u42546 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:0px 0px 0px 0px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u42546_text {
  1503. border-width:0px;
  1504. white-space:nowrap;
  1505. text-transform:none;
  1506. }
  1507. #u42547_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:217px;
  1513. height:30px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 0);
  1516. border-left:0px;
  1517. border-top:0px;
  1518. border-right:0px;
  1519. border-radius:0px;
  1520. border-bottom-right-radius:0px;
  1521. border-bottom-left-radius:0px;
  1522. filter:drop-shadow(none);
  1523. transition:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:12px;
  1528. line-height:30px;
  1529. }
  1530. #u42547 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:130px;
  1534. top:-401px;
  1535. width:217px;
  1536. height:30px;
  1537. display:flex;
  1538. transition:none;
  1539. transform-origin:50% 50%;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:12px;
  1544. line-height:30px;
  1545. }
  1546. #u42547 .text {
  1547. position:absolute;
  1548. align-self:flex-start;
  1549. padding:0px 0px 0px 0px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u42547_text {
  1554. border-width:0px;
  1555. white-space:nowrap;
  1556. text-transform:none;
  1557. }
  1558. #u42548 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:92px;
  1562. top:-358px;
  1563. width:30px;
  1564. height:30px;
  1565. display:flex;
  1566. transition:none;
  1567. color:#FFFFFF;
  1568. }
  1569. #u42548 .text {
  1570. position:absolute;
  1571. align-self:center;
  1572. padding:2px 2px 2px 2px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u42548_img {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:30px;
  1582. height:30px;
  1583. }
  1584. #u42548_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. }
  1589. #u42549_div {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:73px;
  1595. height:25px;
  1596. background:inherit;
  1597. background-color:rgba(255, 255, 255, 0);
  1598. border-left:0px;
  1599. border-top:0px;
  1600. border-right:0px;
  1601. border-radius:0px;
  1602. border-bottom-right-radius:0px;
  1603. border-bottom-left-radius:0px;
  1604. filter:drop-shadow(none);
  1605. transition:none;
  1606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1607. font-weight:500;
  1608. font-style:normal;
  1609. font-size:18px;
  1610. color:#5C93FF;
  1611. }
  1612. #u42549 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:130px;
  1616. top:-356px;
  1617. width:73px;
  1618. height:25px;
  1619. display:flex;
  1620. transition:none;
  1621. transform-origin:50% 50%;
  1622. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1623. font-weight:500;
  1624. font-style:normal;
  1625. font-size:18px;
  1626. color:#5C93FF;
  1627. }
  1628. #u42549 .text {
  1629. position:absolute;
  1630. align-self:center;
  1631. padding:0px 0px 0px 0px;
  1632. box-sizing:border-box;
  1633. width:100%;
  1634. }
  1635. #u42549_text {
  1636. border-width:0px;
  1637. white-space:nowrap;
  1638. text-transform:none;
  1639. }
  1640. #u42550_div {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:286px;
  1646. height:34px;
  1647. background:inherit;
  1648. background-color:rgba(255, 255, 255, 0);
  1649. border-left:0px;
  1650. border-top:0px;
  1651. border-right:0px;
  1652. border-radius:0px;
  1653. border-bottom-right-radius:0px;
  1654. border-bottom-left-radius:0px;
  1655. filter:drop-shadow(none);
  1656. transition:none;
  1657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:12px;
  1661. }
  1662. #u42550 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:130px;
  1666. top:-326px;
  1667. width:286px;
  1668. height:34px;
  1669. display:flex;
  1670. transition:none;
  1671. transform-origin:50% 50%;
  1672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1673. font-weight:400;
  1674. font-style:normal;
  1675. font-size:12px;
  1676. }
  1677. #u42550 .text {
  1678. position:absolute;
  1679. align-self:flex-start;
  1680. padding:0px 0px 0px 0px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u42550_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. }
  1689. #u42551 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:101px;
  1693. top:-840px;
  1694. width:300px;
  1695. height:170px;
  1696. display:flex;
  1697. transition:none;
  1698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:18px;
  1702. }
  1703. #u42551 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u42551_img {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:0px;
  1714. top:0px;
  1715. width:300px;
  1716. height:170px;
  1717. }
  1718. #u42551_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. }
  1723. #u42552 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:0px;
  1729. height:0px;
  1730. }
  1731. #u42553_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:375px;
  1737. height:144px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 1);
  1740. border-top:0px;
  1741. border-radius:28px;
  1742. border-top-left-radius:0px;
  1743. border-top-right-radius:0px;
  1744. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1745. transition:none;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#FFFFFF;
  1751. }
  1752. #u42553 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:64px;
  1756. top:-265px;
  1757. width:375px;
  1758. height:144px;
  1759. display:flex;
  1760. transition:none;
  1761. transform-origin:50% 50%;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. color:#FFFFFF;
  1767. }
  1768. #u42553 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u42553_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. visibility:hidden;
  1780. }
  1781. #u42554_div {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:324px;
  1787. height:40px;
  1788. background:inherit;
  1789. background-color:rgba(0, 137, 254, 1);
  1790. border-radius:63px;
  1791. filter:drop-shadow(none);
  1792. transition:none;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#FFFFFF;
  1798. }
  1799. #u42554 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:92px;
  1803. top:-256px;
  1804. width:324px;
  1805. height:40px;
  1806. display:flex;
  1807. transition:none;
  1808. transform-origin:50% 50%;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. color:#FFFFFF;
  1814. }
  1815. #u42554 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 2px 2px 2px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u42554_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. }
  1827. #u42555_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:133px;
  1833. height:17px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 0);
  1836. border-left:0px;
  1837. border-top:0px;
  1838. border-right:0px;
  1839. border-radius:0px;
  1840. border-bottom-right-radius:0px;
  1841. border-bottom-left-radius:0px;
  1842. filter:drop-shadow(none);
  1843. transition:none;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:12px;
  1848. color:#AAAAAA;
  1849. }
  1850. #u42555 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:185px;
  1854. top:-200px;
  1855. width:133px;
  1856. height:17px;
  1857. display:flex;
  1858. transition:none;
  1859. transform-origin:50% 50%;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:12px;
  1864. color:#AAAAAA;
  1865. }
  1866. #u42555 .text {
  1867. position:absolute;
  1868. align-self:flex-start;
  1869. padding:0px 0px 0px 0px;
  1870. box-sizing:border-box;
  1871. width:100%;
  1872. }
  1873. #u42555_text {
  1874. border-width:0px;
  1875. white-space:nowrap;
  1876. text-transform:none;
  1877. }
  1878. #u42556_div {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:160px;
  1884. height:40px;
  1885. background:inherit;
  1886. background-color:rgba(254, 248, 231, 1);
  1887. border-radius:63px;
  1888. filter:drop-shadow(none);
  1889. transition:none;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:14px;
  1894. color:#F59A23;
  1895. }
  1896. #u42556 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:96px;
  1900. top:-172px;
  1901. width:160px;
  1902. height:40px;
  1903. display:flex;
  1904. transition:none;
  1905. transform-origin:50% 50%;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#F59A23;
  1911. }
  1912. #u42556 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u42556_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u42557_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:160px;
  1930. height:40px;
  1931. background:inherit;
  1932. background-color:rgba(254, 248, 231, 1);
  1933. border-radius:63px;
  1934. filter:drop-shadow(none);
  1935. transition:none;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:14px;
  1940. color:#F59A23;
  1941. }
  1942. #u42557 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:266px;
  1946. top:-172px;
  1947. width:160px;
  1948. height:40px;
  1949. display:flex;
  1950. transition:none;
  1951. transform-origin:50% 50%;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:14px;
  1956. color:#F59A23;
  1957. }
  1958. #u42557 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 2px 2px 2px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u42557_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u42558_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:301px;
  1976. height:20px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 0);
  1979. border-left:0px;
  1980. border-top:0px;
  1981. border-right:0px;
  1982. border-radius:0px;
  1983. border-bottom-right-radius:0px;
  1984. border-bottom-left-radius:0px;
  1985. filter:drop-shadow(none);
  1986. transition:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. color:#D9001B;
  1992. }
  1993. #u42558 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:92px;
  1997. top:-82px;
  1998. width:301px;
  1999. height:20px;
  2000. display:flex;
  2001. transition:none;
  2002. transform-origin:50% 50%;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:14px;
  2007. color:#D9001B;
  2008. }
  2009. #u42558 .text {
  2010. position:absolute;
  2011. align-self:flex-start;
  2012. padding:0px 0px 0px 0px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u42558_text {
  2017. border-width:0px;
  2018. white-space:nowrap;
  2019. text-transform:none;
  2020. }
  2021. #u42559 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:433px;
  2027. height:865px;
  2028. }
  2029. #u42560 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:433px;
  2035. height:865px;
  2036. display:flex;
  2037. transition:none;
  2038. }
  2039. #u42560 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u42560_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:433px;
  2052. height:865px;
  2053. }
  2054. #u42560_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u42561_div {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:375px;
  2066. height:40px;
  2067. background:inherit;
  2068. background-color:rgba(255, 255, 255, 1);
  2069. box-sizing:border-box;
  2070. border-width:1px;
  2071. border-style:solid;
  2072. border-color:rgba(215, 215, 215, 1);
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. filter:drop-shadow(none);
  2080. transition:none;
  2081. }
  2082. #u42561 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:29px;
  2086. top:67px;
  2087. width:375px;
  2088. height:40px;
  2089. display:flex;
  2090. transition:none;
  2091. transform-origin:50% 50%;
  2092. }
  2093. #u42561 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 2px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u42561_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u42562 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:0px;
  2112. height:0px;
  2113. }
  2114. #u42563_div {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:88px;
  2120. height:32px;
  2121. background:inherit;
  2122. background-color:rgba(255, 255, 255, 1);
  2123. box-sizing:border-box;
  2124. border-width:1px;
  2125. border-style:solid;
  2126. border-color:rgba(242, 242, 242, 1);
  2127. border-radius:33px;
  2128. filter:drop-shadow(none);
  2129. transition:none;
  2130. }
  2131. #u42563 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:309px;
  2135. top:71px;
  2136. width:88px;
  2137. height:32px;
  2138. display:flex;
  2139. transition:none;
  2140. transform-origin:50% 50%;
  2141. }
  2142. #u42563 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 2px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u42563_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. visibility:hidden;
  2154. }
  2155. #u42564 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:0px;
  2161. height:0px;
  2162. }
  2163. #u42565 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:372px;
  2167. top:78px;
  2168. width:18px;
  2169. height:18px;
  2170. display:flex;
  2171. transition:none;
  2172. }
  2173. #u42565 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 2px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u42565_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:18px;
  2186. height:18px;
  2187. }
  2188. #u42565_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. visibility:hidden;
  2193. }
  2194. #u42566 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:378px;
  2198. top:84px;
  2199. width:6px;
  2200. height:6px;
  2201. display:flex;
  2202. transition:none;
  2203. }
  2204. #u42566 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 2px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u42566_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:6px;
  2217. height:6px;
  2218. }
  2219. #u42566_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. visibility:hidden;
  2224. }
  2225. #u42567 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u42568 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:323px;
  2237. top:85px;
  2238. width:5px;
  2239. height:5px;
  2240. display:flex;
  2241. transition:none;
  2242. }
  2243. #u42568 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:2px 2px 2px 2px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u42568_img {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:5px;
  2256. height:5px;
  2257. }
  2258. #u42568_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u42569 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:339px;
  2268. top:85px;
  2269. width:5px;
  2270. height:5px;
  2271. display:flex;
  2272. transition:none;
  2273. }
  2274. #u42569 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:2px 2px 2px 2px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u42569_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:5px;
  2287. height:5px;
  2288. }
  2289. #u42569_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u42570 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:330px;
  2299. top:84px;
  2300. width:7px;
  2301. height:7px;
  2302. display:flex;
  2303. transition:none;
  2304. }
  2305. #u42570 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 2px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u42570_img {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:7px;
  2318. height:7px;
  2319. }
  2320. #u42570_text {
  2321. border-width:0px;
  2322. word-wrap:break-word;
  2323. text-transform:none;
  2324. visibility:hidden;
  2325. }
  2326. #u42571 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:347px;
  2330. top:87px;
  2331. width:18px;
  2332. height:1px;
  2333. display:flex;
  2334. -webkit-transform:rotate(90deg);
  2335. -moz-transform:rotate(90deg);
  2336. -ms-transform:rotate(90deg);
  2337. transform:rotate(90deg);
  2338. transition:none;
  2339. }
  2340. #u42571 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u42571_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:19px;
  2353. height:2px;
  2354. }
  2355. #u42571_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u42572 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:29px;
  2365. top:24px;
  2366. width:375px;
  2367. height:44px;
  2368. display:flex;
  2369. transition:none;
  2370. }
  2371. #u42572 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 2px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u42572_img {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:375px;
  2384. height:44px;
  2385. }
  2386. #u42572_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. visibility:hidden;
  2391. }
  2392. #u42573_div {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:375px;
  2398. height:50px;
  2399. background:inherit;
  2400. background-color:rgba(255, 255, 255, 1);
  2401. box-sizing:border-box;
  2402. border-width:1px;
  2403. border-style:solid;
  2404. border-color:rgba(242, 242, 242, 1);
  2405. border-radius:26px;
  2406. border-top-left-radius:0px;
  2407. border-top-right-radius:0px;
  2408. filter:drop-shadow(none);
  2409. transition:none;
  2410. }
  2411. #u42573 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:29px;
  2415. top:788px;
  2416. width:375px;
  2417. height:50px;
  2418. display:flex;
  2419. transition:none;
  2420. transform-origin:50% 50%;
  2421. }
  2422. #u42573 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u42573_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u42574 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:0px;
  2441. height:0px;
  2442. }
  2443. #u42575 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:69px;
  2447. top:792px;
  2448. width:24px;
  2449. height:24px;
  2450. display:flex;
  2451. transition:none;
  2452. font-size:8px;
  2453. }
  2454. #u42575 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 2px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u42575_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:24px;
  2467. height:24px;
  2468. }
  2469. #u42575_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. }
  2474. #u42576_div {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:25px;
  2480. height:17px;
  2481. background:inherit;
  2482. background-color:rgba(255, 255, 255, 0);
  2483. border-radius:0px;
  2484. filter:drop-shadow(none);
  2485. transition:none;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. }
  2491. #u42576 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:69px;
  2495. top:817px;
  2496. width:25px;
  2497. height:17px;
  2498. display:flex;
  2499. transition:none;
  2500. transform-origin:50% 50%;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. }
  2506. #u42576 .text {
  2507. position:absolute;
  2508. align-self:flex-start;
  2509. padding:0px 0px 0px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u42576_text {
  2514. border-width:0px;
  2515. white-space:nowrap;
  2516. text-transform:none;
  2517. }
  2518. #u42577 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:0px;
  2524. height:0px;
  2525. }
  2526. #u42578 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:339px;
  2530. top:794px;
  2531. width:24px;
  2532. height:24px;
  2533. display:flex;
  2534. transition:none;
  2535. font-size:8px;
  2536. }
  2537. #u42578 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 2px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u42578_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:24px;
  2550. height:24px;
  2551. }
  2552. #u42578_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. }
  2557. #u42579_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:25px;
  2563. height:17px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 0);
  2566. border-radius:0px;
  2567. filter:drop-shadow(none);
  2568. transition:none;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. }
  2574. #u42579 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:339px;
  2578. top:819px;
  2579. width:25px;
  2580. height:17px;
  2581. display:flex;
  2582. transition:none;
  2583. transform-origin:50% 50%;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. }
  2589. #u42579 .text {
  2590. position:absolute;
  2591. align-self:flex-start;
  2592. padding:0px 0px 0px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u42579_text {
  2597. border-width:0px;
  2598. white-space:nowrap;
  2599. text-transform:none;
  2600. }
  2601. #u42580_div {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:375px;
  2607. height:681px;
  2608. background:inherit;
  2609. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2610. border-radius:0px;
  2611. filter:drop-shadow(none);
  2612. transition:none;
  2613. }
  2614. #u42580 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:29px;
  2618. top:107px;
  2619. width:375px;
  2620. height:681px;
  2621. display:flex;
  2622. transition:none;
  2623. transform-origin:50% 50%;
  2624. }
  2625. #u42580 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u42580_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u42581 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:0px;
  2644. height:0px;
  2645. }
  2646. #u42582 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:251px;
  2650. top:792px;
  2651. width:24px;
  2652. height:24px;
  2653. display:flex;
  2654. transition:none;
  2655. font-size:8px;
  2656. }
  2657. #u42582 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 2px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u42582_img {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:24px;
  2670. height:24px;
  2671. }
  2672. #u42582_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. }
  2677. #u42583_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:37px;
  2683. height:17px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border-radius:0px;
  2687. filter:drop-shadow(none);
  2688. transition:none;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:12px;
  2693. }
  2694. #u42583 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:245px;
  2698. top:817px;
  2699. width:37px;
  2700. height:17px;
  2701. display:flex;
  2702. transition:none;
  2703. transform-origin:50% 50%;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. }
  2709. #u42583 .text {
  2710. position:absolute;
  2711. align-self:flex-start;
  2712. padding:0px 0px 0px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u42583_text {
  2717. border-width:0px;
  2718. white-space:nowrap;
  2719. text-transform:none;
  2720. }
  2721. #u42584 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:0px;
  2727. height:0px;
  2728. }
  2729. #u42585 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:157px;
  2733. top:792px;
  2734. width:24px;
  2735. height:24px;
  2736. display:flex;
  2737. transition:none;
  2738. font-size:8px;
  2739. }
  2740. #u42585 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 2px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u42585_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:24px;
  2753. height:24px;
  2754. }
  2755. #u42585_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. }
  2760. #u42586_div {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:37px;
  2766. height:17px;
  2767. background:inherit;
  2768. background-color:rgba(255, 255, 255, 0);
  2769. border-radius:0px;
  2770. filter:drop-shadow(none);
  2771. transition:none;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. }
  2777. #u42586 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:151px;
  2781. top:817px;
  2782. width:37px;
  2783. height:17px;
  2784. display:flex;
  2785. transition:none;
  2786. transform-origin:50% 50%;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. }
  2792. #u42586 .text {
  2793. position:absolute;
  2794. align-self:flex-start;
  2795. padding:0px 0px 0px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u42586_text {
  2800. border-width:0px;
  2801. white-space:nowrap;
  2802. text-transform:none;
  2803. }
  2804. #u42587_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:375px;
  2810. height:732px;
  2811. background:inherit;
  2812. background-color:rgba(244, 244, 244, 1);
  2813. box-sizing:border-box;
  2814. border-width:1px;
  2815. border-style:solid;
  2816. border-color:rgba(242, 242, 242, 1);
  2817. border-radius:26px;
  2818. border-top-left-radius:0px;
  2819. border-top-right-radius:0px;
  2820. filter:drop-shadow(none);
  2821. transition:none;
  2822. }
  2823. #u42587 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:29px;
  2827. top:193px;
  2828. width:375px;
  2829. height:732px;
  2830. display:flex;
  2831. transition:none;
  2832. transform-origin:50% 50%;
  2833. }
  2834. #u42587 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 2px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u42587_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u42588_div {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:375px;
  2853. height:1006px;
  2854. background:inherit;
  2855. background-color:rgba(242, 242, 242, 1);
  2856. box-sizing:border-box;
  2857. border-width:1px;
  2858. border-style:solid;
  2859. border-color:rgba(242, 242, 242, 1);
  2860. border-radius:26px;
  2861. border-top-left-radius:0px;
  2862. border-top-right-radius:0px;
  2863. filter:drop-shadow(none);
  2864. transition:none;
  2865. }
  2866. #u42588 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:29px;
  2870. top:181px;
  2871. width:375px;
  2872. height:1006px;
  2873. display:flex;
  2874. transition:none;
  2875. transform-origin:50% 50%;
  2876. }
  2877. #u42588 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 2px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u42588_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u42589 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:0px;
  2896. height:0px;
  2897. }
  2898. #u42590_div {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:375px;
  2904. height:40px;
  2905. background:inherit;
  2906. background-color:rgba(255, 255, 255, 1);
  2907. border-left:0px;
  2908. border-top:0px;
  2909. border-right:0px;
  2910. border-radius:0px;
  2911. border-bottom-right-radius:0px;
  2912. border-bottom-left-radius:0px;
  2913. filter:drop-shadow(none);
  2914. transition:none;
  2915. }
  2916. #u42590 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:29px;
  2920. top:67px;
  2921. width:375px;
  2922. height:40px;
  2923. display:flex;
  2924. transition:none;
  2925. transform-origin:50% 50%;
  2926. }
  2927. #u42590 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 2px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u42590_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u42591 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:0px;
  2946. height:0px;
  2947. }
  2948. #u42592_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:88px;
  2954. height:32px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 1);
  2957. box-sizing:border-box;
  2958. border-width:1px;
  2959. border-style:solid;
  2960. border-color:rgba(242, 242, 242, 1);
  2961. border-radius:33px;
  2962. filter:drop-shadow(none);
  2963. transition:none;
  2964. }
  2965. #u42592 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:306px;
  2969. top:69px;
  2970. width:88px;
  2971. height:32px;
  2972. display:flex;
  2973. transition:none;
  2974. transform-origin:50% 50%;
  2975. }
  2976. #u42592 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 2px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u42592_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u42593 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:0px;
  2995. height:0px;
  2996. }
  2997. #u42594 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:369px;
  3001. top:76px;
  3002. width:18px;
  3003. height:18px;
  3004. display:flex;
  3005. transition:none;
  3006. }
  3007. #u42594 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:2px 2px 2px 2px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u42594_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:18px;
  3020. height:18px;
  3021. }
  3022. #u42594_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. visibility:hidden;
  3027. }
  3028. #u42595 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:375px;
  3032. top:82px;
  3033. width:6px;
  3034. height:6px;
  3035. display:flex;
  3036. transition:none;
  3037. }
  3038. #u42595 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 2px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u42595_img {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:6px;
  3051. height:6px;
  3052. }
  3053. #u42595_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u42596 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:0px;
  3065. height:0px;
  3066. }
  3067. #u42597 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:320px;
  3071. top:83px;
  3072. width:5px;
  3073. height:5px;
  3074. display:flex;
  3075. transition:none;
  3076. }
  3077. #u42597 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u42597_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:5px;
  3090. height:5px;
  3091. }
  3092. #u42597_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u42598 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:336px;
  3102. top:83px;
  3103. width:5px;
  3104. height:5px;
  3105. display:flex;
  3106. transition:none;
  3107. }
  3108. #u42598 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 2px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u42598_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:5px;
  3121. height:5px;
  3122. }
  3123. #u42598_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u42599 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:327px;
  3133. top:82px;
  3134. width:7px;
  3135. height:7px;
  3136. display:flex;
  3137. transition:none;
  3138. }
  3139. #u42599 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 2px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u42599_img {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:7px;
  3152. height:7px;
  3153. }
  3154. #u42599_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u42600 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:344px;
  3164. top:85px;
  3165. width:18px;
  3166. height:1px;
  3167. display:flex;
  3168. -webkit-transform:rotate(90deg);
  3169. -moz-transform:rotate(90deg);
  3170. -ms-transform:rotate(90deg);
  3171. transform:rotate(90deg);
  3172. transition:none;
  3173. }
  3174. #u42600 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u42600_img {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:19px;
  3187. height:2px;
  3188. }
  3189. #u42600_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. visibility:hidden;
  3194. }
  3195. #u42601_div {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:12px;
  3201. height:12px;
  3202. background:inherit;
  3203. background-color:rgba(255, 255, 255, 0);
  3204. box-sizing:border-box;
  3205. border-width:2px;
  3206. border-style:solid;
  3207. border-color:rgba(51, 51, 51, 1);
  3208. border-right:0px;
  3209. border-bottom:0px;
  3210. border-radius:0px;
  3211. border-top-right-radius:0px;
  3212. border-bottom-left-radius:0px;
  3213. filter:drop-shadow(none);
  3214. transition:none;
  3215. }
  3216. #u42601 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:45px;
  3220. top:79px;
  3221. width:12px;
  3222. height:12px;
  3223. display:flex;
  3224. -webkit-transform:rotate(315deg);
  3225. -moz-transform:rotate(315deg);
  3226. -ms-transform:rotate(315deg);
  3227. transform:rotate(315deg);
  3228. transition:none;
  3229. transform-origin:50% 50%;
  3230. }
  3231. #u42601 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u42601_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u42602_div {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:91px;
  3250. height:25px;
  3251. background:inherit;
  3252. background-color:rgba(255, 255, 255, 0);
  3253. border-radius:0px;
  3254. filter:drop-shadow(none);
  3255. transition:none;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:18px;
  3260. }
  3261. #u42602 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:59px;
  3265. top:72px;
  3266. width:91px;
  3267. height:25px;
  3268. display:flex;
  3269. transition:none;
  3270. transform-origin:50% 50%;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:18px;
  3275. }
  3276. #u42602 .text {
  3277. position:absolute;
  3278. align-self:flex-start;
  3279. padding:0px 0px 0px 0px;
  3280. box-sizing:border-box;
  3281. width:100%;
  3282. }
  3283. #u42602_text {
  3284. border-width:0px;
  3285. white-space:nowrap;
  3286. text-transform:none;
  3287. }
  3288. #u42603 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:0px;
  3294. height:0px;
  3295. }
  3296. #u42604_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:375px;
  3302. height:80px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 1);
  3305. border-top:0px;
  3306. border-bottom:0px;
  3307. border-radius:0px;
  3308. border-top-left-radius:0px;
  3309. border-top-right-radius:0px;
  3310. border-bottom-right-radius:0px;
  3311. border-bottom-left-radius:0px;
  3312. filter:drop-shadow(none);
  3313. transition:none;
  3314. }
  3315. #u42604 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:29px;
  3319. top:181px;
  3320. width:375px;
  3321. height:80px;
  3322. display:flex;
  3323. transition:none;
  3324. transform-origin:50% 50%;
  3325. }
  3326. #u42604 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u42604_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u42605_div {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:73px;
  3345. height:30px;
  3346. background:inherit;
  3347. background-color:rgba(255, 255, 255, 0);
  3348. border-left:0px;
  3349. border-top:0px;
  3350. border-right:0px;
  3351. border-radius:0px;
  3352. border-bottom-right-radius:0px;
  3353. border-bottom-left-radius:0px;
  3354. filter:drop-shadow(none);
  3355. transition:none;
  3356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3357. font-weight:500;
  3358. font-style:normal;
  3359. font-size:18px;
  3360. line-height:30px;
  3361. }
  3362. #u42605 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:48px;
  3366. top:191px;
  3367. width:73px;
  3368. height:30px;
  3369. display:flex;
  3370. transition:none;
  3371. transform-origin:50% 50%;
  3372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3373. font-weight:500;
  3374. font-style:normal;
  3375. font-size:18px;
  3376. line-height:30px;
  3377. }
  3378. #u42605 .text {
  3379. position:absolute;
  3380. align-self:flex-start;
  3381. padding:0px 0px 0px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u42605_text {
  3386. border-width:0px;
  3387. white-space:nowrap;
  3388. text-transform:none;
  3389. }
  3390. #u42606_input {
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:346px;
  3395. height:27px;
  3396. padding:2px 2px 2px 2px;
  3397. font-family:'ArialMT', 'Arial', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:14px;
  3401. letter-spacing:normal;
  3402. color:#1890FF;
  3403. vertical-align:none;
  3404. text-align:left;
  3405. text-transform:none;
  3406. background-color:transparent;
  3407. border-color:transparent;
  3408. }
  3409. #u42606_input.disabled {
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:346px;
  3414. height:27px;
  3415. padding:2px 2px 2px 2px;
  3416. font-family:'ArialMT', 'Arial', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. letter-spacing:normal;
  3421. color:#1890FF;
  3422. vertical-align:none;
  3423. text-align:left;
  3424. text-transform:none;
  3425. background-color:transparent;
  3426. border-color:transparent;
  3427. }
  3428. #u42606_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:346px;
  3434. height:27px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 1);
  3437. border-radius:0px;
  3438. filter:drop-shadow(none);
  3439. transition:none;
  3440. font-size:14px;
  3441. color:#1890FF;
  3442. }
  3443. #u42606 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:48px;
  3447. top:224px;
  3448. width:346px;
  3449. height:27px;
  3450. display:flex;
  3451. transition:none;
  3452. transform-origin:50% 50%;
  3453. font-size:14px;
  3454. color:#1890FF;
  3455. }
  3456. #u42606 .text {
  3457. position:absolute;
  3458. align-self:flex-start;
  3459. padding:2px 2px 2px 2px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u42606_div.disabled {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:346px;
  3469. height:27px;
  3470. background:inherit;
  3471. background-color:rgba(240, 240, 240, 1);
  3472. border-radius:0px;
  3473. filter:drop-shadow(none);
  3474. transition:none;
  3475. font-size:14px;
  3476. color:#1890FF;
  3477. }
  3478. #u42606.disabled {
  3479. }
  3480. .u42606_input_option {
  3481. font-size:14px;
  3482. }
  3483. #u42607_div {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:308px;
  3489. height:34px;
  3490. background:inherit;
  3491. background-color:rgba(255, 255, 255, 0);
  3492. border-left:0px;
  3493. border-top:0px;
  3494. border-right:0px;
  3495. border-radius:0px;
  3496. border-bottom-right-radius:0px;
  3497. border-bottom-left-radius:0px;
  3498. filter:drop-shadow(none);
  3499. transition:none;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#D9001B;
  3505. }
  3506. #u42607 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:140px;
  3510. top:199px;
  3511. width:308px;
  3512. height:34px;
  3513. display:flex;
  3514. transition:none;
  3515. transform-origin:50% 50%;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. color:#D9001B;
  3521. }
  3522. #u42607 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:0px 0px 0px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u42607_text {
  3530. border-width:0px;
  3531. white-space:nowrap;
  3532. text-transform:none;
  3533. }
  3534. #u42608 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:0px;
  3540. height:0px;
  3541. }
  3542. #u42609 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:448px;
  3546. top:1px;
  3547. width:433px;
  3548. height:865px;
  3549. }
  3550. #u42610 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:433px;
  3556. height:865px;
  3557. display:flex;
  3558. transition:none;
  3559. }
  3560. #u42610 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 2px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u42610_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:433px;
  3573. height:865px;
  3574. }
  3575. #u42610_text {
  3576. border-width:0px;
  3577. word-wrap:break-word;
  3578. text-transform:none;
  3579. visibility:hidden;
  3580. }
  3581. #u42611_div {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:375px;
  3587. height:40px;
  3588. background:inherit;
  3589. background-color:rgba(255, 255, 255, 1);
  3590. box-sizing:border-box;
  3591. border-width:1px;
  3592. border-style:solid;
  3593. border-color:rgba(215, 215, 215, 1);
  3594. border-left:0px;
  3595. border-top:0px;
  3596. border-right:0px;
  3597. border-radius:0px;
  3598. border-bottom-right-radius:0px;
  3599. border-bottom-left-radius:0px;
  3600. filter:drop-shadow(none);
  3601. transition:none;
  3602. }
  3603. #u42611 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:29px;
  3607. top:67px;
  3608. width:375px;
  3609. height:40px;
  3610. display:flex;
  3611. transition:none;
  3612. transform-origin:50% 50%;
  3613. }
  3614. #u42611 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 2px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u42611_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u42612 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:0px;
  3633. height:0px;
  3634. }
  3635. #u42613_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:88px;
  3641. height:32px;
  3642. background:inherit;
  3643. background-color:rgba(255, 255, 255, 1);
  3644. box-sizing:border-box;
  3645. border-width:1px;
  3646. border-style:solid;
  3647. border-color:rgba(242, 242, 242, 1);
  3648. border-radius:33px;
  3649. filter:drop-shadow(none);
  3650. transition:none;
  3651. }
  3652. #u42613 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:309px;
  3656. top:71px;
  3657. width:88px;
  3658. height:32px;
  3659. display:flex;
  3660. transition:none;
  3661. transform-origin:50% 50%;
  3662. }
  3663. #u42613 .text {
  3664. position:absolute;
  3665. align-self:center;
  3666. padding:2px 2px 2px 2px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u42613_text {
  3671. border-width:0px;
  3672. word-wrap:break-word;
  3673. text-transform:none;
  3674. visibility:hidden;
  3675. }
  3676. #u42614 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:0px;
  3682. height:0px;
  3683. }
  3684. #u42615 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:372px;
  3688. top:78px;
  3689. width:18px;
  3690. height:18px;
  3691. display:flex;
  3692. transition:none;
  3693. }
  3694. #u42615 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 2px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u42615_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:18px;
  3707. height:18px;
  3708. }
  3709. #u42615_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u42616 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:378px;
  3719. top:84px;
  3720. width:6px;
  3721. height:6px;
  3722. display:flex;
  3723. transition:none;
  3724. }
  3725. #u42616 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 2px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u42616_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:6px;
  3738. height:6px;
  3739. }
  3740. #u42616_text {
  3741. border-width:0px;
  3742. word-wrap:break-word;
  3743. text-transform:none;
  3744. visibility:hidden;
  3745. }
  3746. #u42617 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:0px;
  3752. height:0px;
  3753. }
  3754. #u42618 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:323px;
  3758. top:85px;
  3759. width:5px;
  3760. height:5px;
  3761. display:flex;
  3762. transition:none;
  3763. }
  3764. #u42618 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:2px 2px 2px 2px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u42618_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:5px;
  3777. height:5px;
  3778. }
  3779. #u42618_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u42619 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:339px;
  3789. top:85px;
  3790. width:5px;
  3791. height:5px;
  3792. display:flex;
  3793. transition:none;
  3794. }
  3795. #u42619 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 2px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u42619_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:5px;
  3808. height:5px;
  3809. }
  3810. #u42619_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u42620 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:330px;
  3820. top:84px;
  3821. width:7px;
  3822. height:7px;
  3823. display:flex;
  3824. transition:none;
  3825. }
  3826. #u42620 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 2px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u42620_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:7px;
  3839. height:7px;
  3840. }
  3841. #u42620_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. visibility:hidden;
  3846. }
  3847. #u42621 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:347px;
  3851. top:87px;
  3852. width:18px;
  3853. height:1px;
  3854. display:flex;
  3855. -webkit-transform:rotate(90deg);
  3856. -moz-transform:rotate(90deg);
  3857. -ms-transform:rotate(90deg);
  3858. transform:rotate(90deg);
  3859. transition:none;
  3860. }
  3861. #u42621 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 2px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u42621_img {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:19px;
  3874. height:2px;
  3875. }
  3876. #u42621_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u42622 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:29px;
  3886. top:24px;
  3887. width:375px;
  3888. height:44px;
  3889. display:flex;
  3890. transition:none;
  3891. }
  3892. #u42622 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u42622_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:375px;
  3905. height:44px;
  3906. }
  3907. #u42622_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u42623_div {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:375px;
  3919. height:50px;
  3920. background:inherit;
  3921. background-color:rgba(255, 255, 255, 1);
  3922. box-sizing:border-box;
  3923. border-width:1px;
  3924. border-style:solid;
  3925. border-color:rgba(242, 242, 242, 1);
  3926. border-radius:26px;
  3927. border-top-left-radius:0px;
  3928. border-top-right-radius:0px;
  3929. filter:drop-shadow(none);
  3930. transition:none;
  3931. }
  3932. #u42623 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:29px;
  3936. top:788px;
  3937. width:375px;
  3938. height:50px;
  3939. display:flex;
  3940. transition:none;
  3941. transform-origin:50% 50%;
  3942. }
  3943. #u42623 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 2px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u42623_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u42624 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:0px;
  3962. height:0px;
  3963. }
  3964. #u42625 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:69px;
  3968. top:792px;
  3969. width:24px;
  3970. height:24px;
  3971. display:flex;
  3972. transition:none;
  3973. font-size:8px;
  3974. }
  3975. #u42625 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 2px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u42625_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:24px;
  3988. height:24px;
  3989. }
  3990. #u42625_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. }
  3995. #u42626_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:25px;
  4001. height:17px;
  4002. background:inherit;
  4003. background-color:rgba(255, 255, 255, 0);
  4004. border-radius:0px;
  4005. filter:drop-shadow(none);
  4006. transition:none;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:12px;
  4011. }
  4012. #u42626 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:69px;
  4016. top:817px;
  4017. width:25px;
  4018. height:17px;
  4019. display:flex;
  4020. transition:none;
  4021. transform-origin:50% 50%;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. }
  4027. #u42626 .text {
  4028. position:absolute;
  4029. align-self:flex-start;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u42626_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u42627 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:0px;
  4045. height:0px;
  4046. }
  4047. #u42628 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:339px;
  4051. top:794px;
  4052. width:24px;
  4053. height:24px;
  4054. display:flex;
  4055. transition:none;
  4056. font-size:8px;
  4057. }
  4058. #u42628 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u42628_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:24px;
  4071. height:24px;
  4072. }
  4073. #u42628_text {
  4074. border-width:0px;
  4075. word-wrap:break-word;
  4076. text-transform:none;
  4077. }
  4078. #u42629_div {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:25px;
  4084. height:17px;
  4085. background:inherit;
  4086. background-color:rgba(255, 255, 255, 0);
  4087. border-radius:0px;
  4088. filter:drop-shadow(none);
  4089. transition:none;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:12px;
  4094. }
  4095. #u42629 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:339px;
  4099. top:819px;
  4100. width:25px;
  4101. height:17px;
  4102. display:flex;
  4103. transition:none;
  4104. transform-origin:50% 50%;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:12px;
  4109. }
  4110. #u42629 .text {
  4111. position:absolute;
  4112. align-self:flex-start;
  4113. padding:0px 0px 0px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u42629_text {
  4118. border-width:0px;
  4119. white-space:nowrap;
  4120. text-transform:none;
  4121. }
  4122. #u42630_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:375px;
  4128. height:681px;
  4129. background:inherit;
  4130. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4131. border-radius:0px;
  4132. filter:drop-shadow(none);
  4133. transition:none;
  4134. }
  4135. #u42630 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:29px;
  4139. top:107px;
  4140. width:375px;
  4141. height:681px;
  4142. display:flex;
  4143. transition:none;
  4144. transform-origin:50% 50%;
  4145. }
  4146. #u42630 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u42630_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u42631 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:0px;
  4165. height:0px;
  4166. }
  4167. #u42632 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:251px;
  4171. top:792px;
  4172. width:24px;
  4173. height:24px;
  4174. display:flex;
  4175. transition:none;
  4176. font-size:8px;
  4177. }
  4178. #u42632 .text {
  4179. position:absolute;
  4180. align-self:center;
  4181. padding:2px 2px 2px 2px;
  4182. box-sizing:border-box;
  4183. width:100%;
  4184. }
  4185. #u42632_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:24px;
  4191. height:24px;
  4192. }
  4193. #u42632_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. }
  4198. #u42633_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:37px;
  4204. height:17px;
  4205. background:inherit;
  4206. background-color:rgba(255, 255, 255, 0);
  4207. border-radius:0px;
  4208. filter:drop-shadow(none);
  4209. transition:none;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. }
  4215. #u42633 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:245px;
  4219. top:817px;
  4220. width:37px;
  4221. height:17px;
  4222. display:flex;
  4223. transition:none;
  4224. transform-origin:50% 50%;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:12px;
  4229. }
  4230. #u42633 .text {
  4231. position:absolute;
  4232. align-self:flex-start;
  4233. padding:0px 0px 0px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u42633_text {
  4238. border-width:0px;
  4239. white-space:nowrap;
  4240. text-transform:none;
  4241. }
  4242. #u42634 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:0px;
  4248. height:0px;
  4249. }
  4250. #u42635 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:157px;
  4254. top:792px;
  4255. width:24px;
  4256. height:24px;
  4257. display:flex;
  4258. transition:none;
  4259. font-size:8px;
  4260. }
  4261. #u42635 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 2px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u42635_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:24px;
  4274. height:24px;
  4275. }
  4276. #u42635_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. }
  4281. #u42636_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:37px;
  4287. height:17px;
  4288. background:inherit;
  4289. background-color:rgba(255, 255, 255, 0);
  4290. border-radius:0px;
  4291. filter:drop-shadow(none);
  4292. transition:none;
  4293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:12px;
  4297. }
  4298. #u42636 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:151px;
  4302. top:817px;
  4303. width:37px;
  4304. height:17px;
  4305. display:flex;
  4306. transition:none;
  4307. transform-origin:50% 50%;
  4308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:12px;
  4312. }
  4313. #u42636 .text {
  4314. position:absolute;
  4315. align-self:flex-start;
  4316. padding:0px 0px 0px 0px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u42636_text {
  4321. border-width:0px;
  4322. white-space:nowrap;
  4323. text-transform:none;
  4324. }
  4325. #u42637_div {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:375px;
  4331. height:775px;
  4332. background:inherit;
  4333. background-color:rgba(255, 255, 255, 1);
  4334. border-top:0px;
  4335. border-radius:28px;
  4336. border-top-left-radius:0px;
  4337. border-top-right-radius:0px;
  4338. filter:drop-shadow(none);
  4339. transition:none;
  4340. }
  4341. #u42637 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:477px;
  4345. top:66px;
  4346. width:375px;
  4347. height:775px;
  4348. display:flex;
  4349. transition:none;
  4350. transform-origin:50% 50%;
  4351. }
  4352. #u42637 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 2px 2px 2px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u42637_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. visibility:hidden;
  4364. }
  4365. #u42638_div {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:121px;
  4371. height:30px;
  4372. background:inherit;
  4373. background-color:rgba(255, 255, 255, 0);
  4374. border-left:0px;
  4375. border-top:0px;
  4376. border-right:0px;
  4377. border-radius:0px;
  4378. border-bottom-right-radius:0px;
  4379. border-bottom-left-radius:0px;
  4380. filter:drop-shadow(none);
  4381. transition:none;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. line-height:30px;
  4386. }
  4387. #u42638 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:599px;
  4391. top:227px;
  4392. width:121px;
  4393. height:30px;
  4394. display:flex;
  4395. transition:none;
  4396. transform-origin:50% 50%;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. line-height:30px;
  4401. }
  4402. #u42638 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:0px 0px 0px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u42638_text {
  4410. border-width:0px;
  4411. white-space:nowrap;
  4412. text-transform:none;
  4413. }
  4414. #u42639_div {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:126px;
  4420. height:40px;
  4421. background:inherit;
  4422. background-color:rgba(255, 255, 255, 1);
  4423. box-sizing:border-box;
  4424. border-width:1px;
  4425. border-style:solid;
  4426. border-color:rgba(121, 121, 121, 1);
  4427. border-radius:63px;
  4428. filter:drop-shadow(none);
  4429. transition:none;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. }
  4435. #u42639 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:675px;
  4439. top:354px;
  4440. width:126px;
  4441. height:40px;
  4442. display:flex;
  4443. transition:none;
  4444. transform-origin:50% 50%;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:14px;
  4449. }
  4450. #u42639 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u42639_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. }
  4462. #u42640 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:623px;
  4466. top:128px;
  4467. width:83px;
  4468. height:83px;
  4469. display:flex;
  4470. transition:none;
  4471. }
  4472. #u42640 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:2px 2px 2px 2px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u42640_img {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:83px;
  4485. height:83px;
  4486. }
  4487. #u42640_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u42641_div {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:126px;
  4499. height:40px;
  4500. background:inherit;
  4501. background-color:rgba(255, 255, 255, 1);
  4502. box-sizing:border-box;
  4503. border-width:1px;
  4504. border-style:solid;
  4505. border-color:rgba(121, 121, 121, 1);
  4506. border-radius:63px;
  4507. filter:drop-shadow(none);
  4508. transition:none;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. }
  4514. #u42641 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:529px;
  4518. top:354px;
  4519. width:126px;
  4520. height:40px;
  4521. display:flex;
  4522. transition:none;
  4523. transform-origin:50% 50%;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:14px;
  4528. }
  4529. #u42641 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 2px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u42641_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. }
  4541. #u42642_div {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:30px;
  4547. height:30px;
  4548. background:inherit;
  4549. background-color:rgba(255, 255, 255, 0);
  4550. border-left:0px;
  4551. border-top:0px;
  4552. border-right:0px;
  4553. border-radius:0px;
  4554. border-bottom-right-radius:0px;
  4555. border-bottom-left-radius:0px;
  4556. filter:drop-shadow(none);
  4557. transition:none;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:18px;
  4562. text-align:center;
  4563. line-height:30px;
  4564. }
  4565. #u42642 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:487px;
  4569. top:76px;
  4570. width:30px;
  4571. height:30px;
  4572. display:flex;
  4573. transition:none;
  4574. transform-origin:50% 50%;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:18px;
  4579. text-align:center;
  4580. line-height:30px;
  4581. }
  4582. #u42642 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:0px 0px 0px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u42642_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. }
  4594. #u42643 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:0px;
  4600. height:0px;
  4601. }
  4602. #u42644 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:489px;
  4606. top:432px;
  4607. width:350px;
  4608. height:40px;
  4609. display:flex;
  4610. transition:none;
  4611. }
  4612. #u42644 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 2px 2px 2px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u42644_img {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:350px;
  4625. height:40px;
  4626. }
  4627. #u42644_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u42645 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:0px;
  4639. height:0px;
  4640. }
  4641. #u42646_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:221px;
  4647. height:30px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 0);
  4650. border-left:0px;
  4651. border-top:0px;
  4652. border-right:0px;
  4653. border-radius:0px;
  4654. border-bottom-right-radius:0px;
  4655. border-bottom-left-radius:0px;
  4656. filter:drop-shadow(none);
  4657. transition:none;
  4658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4659. font-style:normal;
  4660. color:#FFFFFF;
  4661. text-align:center;
  4662. line-height:30px;
  4663. }
  4664. #u42646 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:569px;
  4668. top:437px;
  4669. width:221px;
  4670. height:30px;
  4671. display:flex;
  4672. transition:none;
  4673. transform-origin:50% 50%;
  4674. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4675. font-style:normal;
  4676. color:#FFFFFF;
  4677. text-align:center;
  4678. line-height:30px;
  4679. }
  4680. #u42646 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:0px 0px 0px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u42646_text {
  4688. border-width:0px;
  4689. white-space:nowrap;
  4690. text-transform:none;
  4691. }
  4692. #u42647 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:539px;
  4696. top:439px;
  4697. width:26px;
  4698. height:26px;
  4699. display:flex;
  4700. transition:none;
  4701. }
  4702. #u42647 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 2px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u42647_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:26px;
  4715. height:26px;
  4716. }
  4717. #u42647_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. }
  4722. #u42648_div {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:304px;
  4728. height:60px;
  4729. background:inherit;
  4730. background-color:rgba(255, 255, 255, 0);
  4731. border-left:0px;
  4732. border-top:0px;
  4733. border-right:0px;
  4734. border-radius:0px;
  4735. border-bottom-right-radius:0px;
  4736. border-bottom-left-radius:0px;
  4737. filter:drop-shadow(none);
  4738. transition:none;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:14px;
  4743. text-align:center;
  4744. line-height:30px;
  4745. }
  4746. #u42648 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:520px;
  4750. top:268px;
  4751. width:304px;
  4752. height:60px;
  4753. display:flex;
  4754. transition:none;
  4755. transform-origin:50% 50%;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. text-align:center;
  4761. line-height:30px;
  4762. }
  4763. #u42648 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:0px 0px 0px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u42648_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. }
  4775. #u42649_div {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:413px;
  4781. height:40px;
  4782. background:inherit;
  4783. background-color:rgba(255, 255, 255, 0);
  4784. border-left:0px;
  4785. border-top:0px;
  4786. border-right:0px;
  4787. border-radius:0px;
  4788. border-bottom-right-radius:0px;
  4789. border-bottom-left-radius:0px;
  4790. filter:drop-shadow(none);
  4791. transition:none;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:14px;
  4796. color:#D9001B;
  4797. }
  4798. #u42649 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:655px;
  4802. top:391px;
  4803. width:413px;
  4804. height:40px;
  4805. display:flex;
  4806. transition:none;
  4807. transform-origin:50% 50%;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:14px;
  4812. color:#D9001B;
  4813. }
  4814. #u42649 .text {
  4815. position:absolute;
  4816. align-self:flex-start;
  4817. padding:0px 0px 0px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u42649_text {
  4822. border-width:0px;
  4823. white-space:nowrap;
  4824. text-transform:none;
  4825. }
  4826. #u42650 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:0px;
  4832. height:0px;
  4833. }
  4834. #u42651_div {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:645px;
  4840. height:120px;
  4841. background:inherit;
  4842. background-color:rgba(255, 255, 255, 0);
  4843. border-left:0px;
  4844. border-top:0px;
  4845. border-right:0px;
  4846. border-radius:0px;
  4847. border-bottom-right-radius:0px;
  4848. border-bottom-left-radius:0px;
  4849. filter:drop-shadow(none);
  4850. transition:none;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:14px;
  4855. color:#D9001B;
  4856. }
  4857. #u42651 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:1302px;
  4861. top:-218px;
  4862. width:645px;
  4863. height:120px;
  4864. display:flex;
  4865. transition:none;
  4866. transform-origin:50% 50%;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:14px;
  4871. color:#D9001B;
  4872. }
  4873. #u42651 .text {
  4874. position:absolute;
  4875. align-self:flex-start;
  4876. padding:0px 0px 0px 0px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u42651_text {
  4881. border-width:0px;
  4882. white-space:nowrap;
  4883. text-transform:none;
  4884. }
  4885. #u42652 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:0px;
  4891. height:0px;
  4892. }
  4893. #u42653_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:260px;
  4899. height:40px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 1);
  4902. border-radius:63px;
  4903. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  4904. transition:none;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:14px;
  4909. }
  4910. #u42653 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:1305px;
  4914. top:-172px;
  4915. width:260px;
  4916. height:40px;
  4917. display:flex;
  4918. transition:none;
  4919. transform-origin:50% 50%;
  4920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:14px;
  4924. }
  4925. #u42653 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 2px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u42653_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u42654 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:1315px;
  4942. top:-162px;
  4943. width:19px;
  4944. height:19px;
  4945. display:flex;
  4946. transition:none;
  4947. }
  4948. #u42654 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 2px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u42654_img {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:19px;
  4961. height:19px;
  4962. }
  4963. #u42654_text {
  4964. border-width:0px;
  4965. word-wrap:break-word;
  4966. text-transform:none;
  4967. visibility:hidden;
  4968. }
  4969. #u42655_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:199px;
  4975. height:17px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 0);
  4978. border-left:0px;
  4979. border-top:0px;
  4980. border-right:0px;
  4981. border-radius:0px;
  4982. border-bottom-right-radius:0px;
  4983. border-bottom-left-radius:0px;
  4984. filter:drop-shadow(none);
  4985. transition:none;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. }
  4991. #u42655 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:1344px;
  4995. top:-161px;
  4996. width:199px;
  4997. height:17px;
  4998. display:flex;
  4999. transition:none;
  5000. transform-origin:50% 50%;
  5001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:12px;
  5005. }
  5006. #u42655 .text {
  5007. position:absolute;
  5008. align-self:flex-start;
  5009. padding:0px 0px 0px 0px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u42655_text {
  5014. border-width:0px;
  5015. white-space:nowrap;
  5016. text-transform:none;
  5017. }
  5018. #u42656_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:375px;
  5024. height:838px;
  5025. background:inherit;
  5026. background-color:rgba(255, 255, 255, 1);
  5027. border-radius:4px;
  5028. filter:drop-shadow(none);
  5029. transition:none;
  5030. }
  5031. #u42656 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:29px;
  5035. top:271px;
  5036. width:375px;
  5037. height:838px;
  5038. display:flex;
  5039. transition:none;
  5040. transform-origin:50% 50%;
  5041. }
  5042. #u42656 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u42656_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u42657 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:0px;
  5061. height:0px;
  5062. }
  5063. #u42658 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:0px;
  5069. height:0px;
  5070. }
  5071. #u42659 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:378px;
  5075. top:374px;
  5076. width:7px;
  5077. height:12px;
  5078. display:flex;
  5079. -webkit-transform:rotate(180deg);
  5080. -moz-transform:rotate(180deg);
  5081. -ms-transform:rotate(180deg);
  5082. transform:rotate(180deg);
  5083. transition:none;
  5084. }
  5085. #u42659 .text {
  5086. position:absolute;
  5087. align-self:center;
  5088. padding:2px 2px 2px 2px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u42659_img {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:7px;
  5098. height:12px;
  5099. }
  5100. #u42659_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u42660_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:235px;
  5112. height:40px;
  5113. background:inherit;
  5114. background-color:rgba(255, 255, 255, 0);
  5115. border-left:0px;
  5116. border-top:0px;
  5117. border-right:0px;
  5118. border-radius:0px;
  5119. border-bottom-right-radius:0px;
  5120. border-bottom-left-radius:0px;
  5121. filter:drop-shadow(none);
  5122. transition:none;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:14px;
  5127. color:#AAAAAA;
  5128. line-height:40px;
  5129. }
  5130. #u42660 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:43px;
  5134. top:360px;
  5135. width:235px;
  5136. height:40px;
  5137. display:flex;
  5138. transition:none;
  5139. transform-origin:50% 50%;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:14px;
  5144. color:#AAAAAA;
  5145. line-height:40px;
  5146. }
  5147. #u42660 .text {
  5148. position:absolute;
  5149. align-self:flex-start;
  5150. padding:0px 0px 0px 0px;
  5151. box-sizing:border-box;
  5152. width:100%;
  5153. }
  5154. #u42660_text {
  5155. border-width:0px;
  5156. word-wrap:break-word;
  5157. text-transform:none;
  5158. }
  5159. #u42661_div {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:92px;
  5165. height:40px;
  5166. background:inherit;
  5167. background-color:rgba(255, 255, 255, 0);
  5168. border-left:0px;
  5169. border-top:0px;
  5170. border-right:0px;
  5171. border-radius:0px;
  5172. border-bottom-right-radius:0px;
  5173. border-bottom-left-radius:0px;
  5174. filter:drop-shadow(none);
  5175. transition:none;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:14px;
  5180. line-height:40px;
  5181. }
  5182. #u42661 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:43px;
  5186. top:320px;
  5187. width:92px;
  5188. height:40px;
  5189. display:flex;
  5190. transition:none;
  5191. transform-origin:50% 50%;
  5192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. font-size:14px;
  5196. line-height:40px;
  5197. }
  5198. #u42661 .text {
  5199. position:absolute;
  5200. align-self:flex-start;
  5201. padding:0px 0px 0px 0px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u42661_text {
  5206. border-width:0px;
  5207. white-space:nowrap;
  5208. text-transform:none;
  5209. }
  5210. #u42662 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:0px;
  5214. top:0px;
  5215. width:0px;
  5216. height:0px;
  5217. }
  5218. #u42663 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:0px;
  5224. height:0px;
  5225. }
  5226. #u42664_div {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:235px;
  5232. height:40px;
  5233. background:inherit;
  5234. background-color:rgba(255, 255, 255, 0);
  5235. border-left:0px;
  5236. border-top:0px;
  5237. border-right:0px;
  5238. border-radius:0px;
  5239. border-bottom-right-radius:0px;
  5240. border-bottom-left-radius:0px;
  5241. filter:drop-shadow(none);
  5242. transition:none;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:14px;
  5247. color:#AAAAAA;
  5248. line-height:40px;
  5249. }
  5250. #u42664 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:43px;
  5254. top:440px;
  5255. width:235px;
  5256. height:40px;
  5257. display:flex;
  5258. transition:none;
  5259. transform-origin:50% 50%;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:14px;
  5264. color:#AAAAAA;
  5265. line-height:40px;
  5266. }
  5267. #u42664 .text {
  5268. position:absolute;
  5269. align-self:flex-start;
  5270. padding:0px 0px 0px 0px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u42664_text {
  5275. border-width:0px;
  5276. word-wrap:break-word;
  5277. text-transform:none;
  5278. }
  5279. #u42665_div {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:36px;
  5285. height:40px;
  5286. background:inherit;
  5287. background-color:rgba(255, 255, 255, 0);
  5288. border-left:0px;
  5289. border-top:0px;
  5290. border-right:0px;
  5291. border-radius:0px;
  5292. border-bottom-right-radius:0px;
  5293. border-bottom-left-radius:0px;
  5294. filter:drop-shadow(none);
  5295. transition:none;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:14px;
  5300. line-height:40px;
  5301. }
  5302. #u42665 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:43px;
  5306. top:400px;
  5307. width:36px;
  5308. height:40px;
  5309. display:flex;
  5310. transition:none;
  5311. transform-origin:50% 50%;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:14px;
  5316. line-height:40px;
  5317. }
  5318. #u42665 .text {
  5319. position:absolute;
  5320. align-self:flex-start;
  5321. padding:0px 0px 0px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u42665_text {
  5326. border-width:0px;
  5327. white-space:nowrap;
  5328. text-transform:none;
  5329. }
  5330. #u42666 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:0px;
  5336. height:0px;
  5337. }
  5338. #u42667 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:0px;
  5344. height:0px;
  5345. }
  5346. #u42668_div {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:235px;
  5352. height:40px;
  5353. background:inherit;
  5354. background-color:rgba(255, 255, 255, 0);
  5355. border-left:0px;
  5356. border-top:0px;
  5357. border-right:0px;
  5358. border-radius:0px;
  5359. border-bottom-right-radius:0px;
  5360. border-bottom-left-radius:0px;
  5361. filter:drop-shadow(none);
  5362. transition:none;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:14px;
  5367. color:#AAAAAA;
  5368. line-height:40px;
  5369. }
  5370. #u42668 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:39px;
  5374. top:774px;
  5375. width:235px;
  5376. height:40px;
  5377. display:flex;
  5378. transition:none;
  5379. transform-origin:50% 50%;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:14px;
  5384. color:#AAAAAA;
  5385. line-height:40px;
  5386. }
  5387. #u42668 .text {
  5388. position:absolute;
  5389. align-self:flex-start;
  5390. padding:0px 0px 0px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u42668_text {
  5395. border-width:0px;
  5396. word-wrap:break-word;
  5397. text-transform:none;
  5398. }
  5399. #u42669_div {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:71px;
  5405. height:40px;
  5406. background:inherit;
  5407. background-color:rgba(255, 255, 255, 0);
  5408. border-left:0px;
  5409. border-top:0px;
  5410. border-right:0px;
  5411. border-radius:0px;
  5412. border-bottom-right-radius:0px;
  5413. border-bottom-left-radius:0px;
  5414. filter:drop-shadow(none);
  5415. transition:none;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:14px;
  5420. line-height:40px;
  5421. }
  5422. #u42669 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:39px;
  5426. top:734px;
  5427. width:71px;
  5428. height:40px;
  5429. display:flex;
  5430. transition:none;
  5431. transform-origin:50% 50%;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:14px;
  5436. line-height:40px;
  5437. }
  5438. #u42669 .text {
  5439. position:absolute;
  5440. align-self:flex-start;
  5441. padding:0px 0px 0px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u42669_text {
  5446. border-width:0px;
  5447. white-space:nowrap;
  5448. text-transform:none;
  5449. }
  5450. #u42670 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:0px;
  5456. height:0px;
  5457. }
  5458. #u42671_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:71px;
  5464. height:40px;
  5465. background:inherit;
  5466. background-color:rgba(255, 255, 255, 0);
  5467. border-left:0px;
  5468. border-top:0px;
  5469. border-right:0px;
  5470. border-radius:0px;
  5471. border-bottom-right-radius:0px;
  5472. border-bottom-left-radius:0px;
  5473. filter:drop-shadow(none);
  5474. transition:none;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:14px;
  5479. line-height:40px;
  5480. }
  5481. #u42671 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:39px;
  5485. top:814px;
  5486. width:71px;
  5487. height:40px;
  5488. display:flex;
  5489. transition:none;
  5490. transform-origin:50% 50%;
  5491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:14px;
  5495. line-height:40px;
  5496. }
  5497. #u42671 .text {
  5498. position:absolute;
  5499. align-self:flex-start;
  5500. padding:0px 0px 0px 0px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u42671_text {
  5505. border-width:0px;
  5506. white-space:nowrap;
  5507. text-transform:none;
  5508. }
  5509. #u42672 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:39px;
  5513. top:854px;
  5514. width:331px;
  5515. height:110px;
  5516. display:flex;
  5517. transition:none;
  5518. }
  5519. #u42672 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:2px 2px 2px 2px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u42672_img {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:331px;
  5532. height:110px;
  5533. }
  5534. #u42672_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u42673 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:0px;
  5546. height:0px;
  5547. }
  5548. #u42674 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:0px;
  5554. height:0px;
  5555. }
  5556. #u42675_div {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:337px;
  5562. height:40px;
  5563. background:inherit;
  5564. background-color:rgba(255, 255, 255, 0);
  5565. border-left:0px;
  5566. border-top:0px;
  5567. border-right:0px;
  5568. border-radius:0px;
  5569. border-bottom-right-radius:0px;
  5570. border-bottom-left-radius:0px;
  5571. filter:drop-shadow(none);
  5572. transition:none;
  5573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:14px;
  5577. color:#AAAAAA;
  5578. line-height:40px;
  5579. }
  5580. #u42675 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:39px;
  5584. top:520px;
  5585. width:337px;
  5586. height:40px;
  5587. display:flex;
  5588. transition:none;
  5589. transform-origin:50% 50%;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:14px;
  5594. color:#AAAAAA;
  5595. line-height:40px;
  5596. }
  5597. #u42675 .text {
  5598. position:absolute;
  5599. align-self:flex-start;
  5600. padding:0px 0px 0px 0px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u42675_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. }
  5609. #u42676_div {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:64px;
  5615. height:40px;
  5616. background:inherit;
  5617. background-color:rgba(255, 255, 255, 0);
  5618. border-left:0px;
  5619. border-top:0px;
  5620. border-right:0px;
  5621. border-radius:0px;
  5622. border-bottom-right-radius:0px;
  5623. border-bottom-left-radius:0px;
  5624. filter:drop-shadow(none);
  5625. transition:none;
  5626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:14px;
  5630. line-height:40px;
  5631. }
  5632. #u42676 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:39px;
  5636. top:480px;
  5637. width:64px;
  5638. height:40px;
  5639. display:flex;
  5640. transition:none;
  5641. transform-origin:50% 50%;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:14px;
  5646. line-height:40px;
  5647. }
  5648. #u42676 .text {
  5649. position:absolute;
  5650. align-self:flex-start;
  5651. padding:0px 0px 0px 0px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u42676_text {
  5656. border-width:0px;
  5657. white-space:nowrap;
  5658. text-transform:none;
  5659. }
  5660. #u42677 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:0px;
  5666. height:0px;
  5667. }
  5668. #u42678_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:322px;
  5674. height:163px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 1);
  5677. border-left:0px;
  5678. border-top:0px;
  5679. border-right:0px;
  5680. border-radius:0px;
  5681. border-bottom-right-radius:0px;
  5682. border-bottom-left-radius:0px;
  5683. filter:drop-shadow(none);
  5684. transition:none;
  5685. }
  5686. #u42678 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:39px;
  5690. top:560px;
  5691. width:322px;
  5692. height:163px;
  5693. display:flex;
  5694. transition:none;
  5695. transform-origin:50% 50%;
  5696. }
  5697. #u42678 .text {
  5698. position:absolute;
  5699. align-self:center;
  5700. padding:2px 2px 2px 2px;
  5701. box-sizing:border-box;
  5702. width:100%;
  5703. }
  5704. #u42678_text {
  5705. border-width:0px;
  5706. word-wrap:break-word;
  5707. text-transform:none;
  5708. visibility:hidden;
  5709. }
  5710. #u42679_div {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:92px;
  5716. height:20px;
  5717. background:inherit;
  5718. background-color:rgba(255, 255, 255, 0);
  5719. border-radius:0px;
  5720. filter:drop-shadow(none);
  5721. transition:none;
  5722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. }
  5726. #u42679 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:39px;
  5730. top:570px;
  5731. width:92px;
  5732. height:20px;
  5733. display:flex;
  5734. transition:none;
  5735. transform-origin:50% 50%;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. }
  5740. #u42679 .text {
  5741. position:absolute;
  5742. align-self:flex-start;
  5743. padding:0px 0px 0px 0px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u42679_text {
  5748. border-width:0px;
  5749. white-space:nowrap;
  5750. text-transform:none;
  5751. }
  5752. #u42680 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:39px;
  5756. top:621px;
  5757. width:103px;
  5758. height:103px;
  5759. display:flex;
  5760. transition:none;
  5761. }
  5762. #u42680 .text {
  5763. position:absolute;
  5764. align-self:center;
  5765. padding:2px 2px 2px 2px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u42680_img {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:103px;
  5775. height:103px;
  5776. }
  5777. #u42680_text {
  5778. border-width:0px;
  5779. word-wrap:break-word;
  5780. text-transform:none;
  5781. }
  5782. #u42681_div {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:342px;
  5788. height:17px;
  5789. background:inherit;
  5790. background-color:rgba(255, 255, 255, 0);
  5791. border-radius:0px;
  5792. filter:drop-shadow(none);
  5793. transition:none;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#AAAAAA;
  5799. }
  5800. #u42681 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:39px;
  5804. top:592px;
  5805. width:342px;
  5806. height:17px;
  5807. display:flex;
  5808. transition:none;
  5809. transform-origin:50% 50%;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:12px;
  5814. color:#AAAAAA;
  5815. }
  5816. #u42681 .text {
  5817. position:absolute;
  5818. align-self:flex-start;
  5819. padding:0px 0px 0px 0px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u42681_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. }
  5828. #u42682 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:0px;
  5834. height:0px;
  5835. }
  5836. #u42683_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:355px;
  5842. height:30px;
  5843. background:inherit;
  5844. background-color:rgba(255, 255, 0, 0.09803921568627451);
  5845. border-left:0px;
  5846. border-top:0px;
  5847. border-right:0px;
  5848. border-radius:0px;
  5849. border-bottom-right-radius:0px;
  5850. border-bottom-left-radius:0px;
  5851. filter:drop-shadow(none);
  5852. transition:none;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:11px;
  5857. color:#555555;
  5858. line-height:30px;
  5859. }
  5860. #u42683 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:39px;
  5864. top:280px;
  5865. width:355px;
  5866. height:30px;
  5867. display:flex;
  5868. transition:none;
  5869. transform-origin:50% 50%;
  5870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:11px;
  5874. color:#555555;
  5875. line-height:30px;
  5876. }
  5877. #u42683 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:0px 0px 0px 30px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u42683_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. }
  5889. #u42684 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:52px;
  5893. top:289px;
  5894. width:12px;
  5895. height:12px;
  5896. display:flex;
  5897. transition:none;
  5898. }
  5899. #u42684 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u42684_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:12px;
  5912. height:12px;
  5913. }
  5914. #u42684_text {
  5915. border-width:0px;
  5916. word-wrap:break-word;
  5917. text-transform:none;
  5918. visibility:hidden;
  5919. }
  5920. #u42685 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:0px;
  5926. height:0px;
  5927. }
  5928. #u42686_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:57px;
  5934. height:40px;
  5935. background:inherit;
  5936. background-color:rgba(255, 255, 255, 0);
  5937. border-left:0px;
  5938. border-top:0px;
  5939. border-right:0px;
  5940. border-radius:0px;
  5941. border-bottom-right-radius:0px;
  5942. border-bottom-left-radius:0px;
  5943. filter:drop-shadow(none);
  5944. transition:none;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:14px;
  5949. line-height:40px;
  5950. }
  5951. #u42686 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:39px;
  5955. top:964px;
  5956. width:57px;
  5957. height:40px;
  5958. display:flex;
  5959. transition:none;
  5960. transform-origin:50% 50%;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:14px;
  5965. line-height:40px;
  5966. }
  5967. #u42686 .text {
  5968. position:absolute;
  5969. align-self:flex-start;
  5970. padding:0px 0px 0px 0px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u42686_text {
  5975. border-width:0px;
  5976. white-space:nowrap;
  5977. text-transform:none;
  5978. }
  5979. #u42687_div {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:253px;
  5985. height:34px;
  5986. background:inherit;
  5987. background-color:rgba(255, 255, 255, 0);
  5988. border-left:0px;
  5989. border-top:0px;
  5990. border-right:0px;
  5991. border-radius:0px;
  5992. border-bottom-right-radius:0px;
  5993. border-bottom-left-radius:0px;
  5994. filter:drop-shadow(none);
  5995. transition:none;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:12px;
  6000. color:#AAAAAA;
  6001. }
  6002. #u42687 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:141px;
  6006. top:1004px;
  6007. width:253px;
  6008. height:34px;
  6009. display:flex;
  6010. transition:none;
  6011. transform-origin:50% 50%;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:12px;
  6016. color:#AAAAAA;
  6017. }
  6018. #u42687 .text {
  6019. position:absolute;
  6020. align-self:flex-start;
  6021. padding:0px 0px 0px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u42687_text {
  6026. border-width:0px;
  6027. white-space:nowrap;
  6028. text-transform:none;
  6029. }
  6030. #u42688 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:39px;
  6034. top:1004px;
  6035. width:90px;
  6036. height:90px;
  6037. display:flex;
  6038. transition:none;
  6039. font-size:28px;
  6040. }
  6041. #u42688 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:2px 2px 2px 2px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u42688_img {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:90px;
  6054. height:90px;
  6055. }
  6056. #u42688_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. }
  6061. #u42689 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:0px;
  6067. height:0px;
  6068. }
  6069. #u42690_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:375px;
  6075. height:60px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 1);
  6078. border-top:0px;
  6079. border-radius:28px;
  6080. border-top-left-radius:0px;
  6081. border-top-right-radius:0px;
  6082. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6083. transition:none;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:14px;
  6088. color:#FFFFFF;
  6089. }
  6090. #u42690 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:29px;
  6094. top:1127px;
  6095. width:375px;
  6096. height:60px;
  6097. display:flex;
  6098. transition:none;
  6099. transform-origin:50% 50%;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:14px;
  6104. color:#FFFFFF;
  6105. }
  6106. #u42690 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 2px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u42690_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u42691_div {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:324px;
  6125. height:40px;
  6126. background:inherit;
  6127. background-color:rgba(0, 137, 254, 1);
  6128. border-radius:63px;
  6129. filter:drop-shadow(none);
  6130. transition:none;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:14px;
  6135. color:#FFFFFF;
  6136. }
  6137. #u42691 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:55px;
  6141. top:1137px;
  6142. width:324px;
  6143. height:40px;
  6144. display:flex;
  6145. transition:none;
  6146. transform-origin:50% 50%;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:14px;
  6151. color:#FFFFFF;
  6152. }
  6153. #u42691 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 2px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u42691_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. }
  6165. #u42692 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:0px;
  6171. height:0px;
  6172. }
  6173. #u42693 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:0px;
  6179. height:0px;
  6180. }
  6181. #u42694_div {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:375px;
  6187. height:74px;
  6188. background:inherit;
  6189. background-color:rgba(24, 144, 255, 1);
  6190. border-radius:0px;
  6191. filter:drop-shadow(none);
  6192. transition:none;
  6193. }
  6194. #u42694 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:29px;
  6198. top:107px;
  6199. width:375px;
  6200. height:74px;
  6201. display:flex;
  6202. transition:none;
  6203. transform-origin:50% 50%;
  6204. }
  6205. #u42694 .text {
  6206. position:absolute;
  6207. align-self:center;
  6208. padding:2px 2px 2px 2px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u42694_text {
  6213. border-width:0px;
  6214. word-wrap:break-word;
  6215. text-transform:none;
  6216. visibility:hidden;
  6217. }
  6218. #u42695_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:348px;
  6224. height:30px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 0);
  6227. border-left:0px;
  6228. border-top:0px;
  6229. border-right:0px;
  6230. border-radius:0px;
  6231. border-bottom-right-radius:0px;
  6232. border-bottom-left-radius:0px;
  6233. filter:drop-shadow(none);
  6234. transition:none;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:12px;
  6239. color:#FFFFFF;
  6240. line-height:30px;
  6241. }
  6242. #u42695 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:43px;
  6246. top:139px;
  6247. width:348px;
  6248. height:30px;
  6249. display:flex;
  6250. transition:none;
  6251. transform-origin:50% 50%;
  6252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:12px;
  6256. color:#FFFFFF;
  6257. line-height:30px;
  6258. }
  6259. #u42695 .text {
  6260. position:absolute;
  6261. align-self:center;
  6262. padding:0px 0px 0px 0px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u42695_text {
  6267. border-width:0px;
  6268. white-space:nowrap;
  6269. text-transform:none;
  6270. }
  6271. #u42696_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:113px;
  6277. height:20px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 0);
  6280. border-radius:0px;
  6281. filter:drop-shadow(none);
  6282. transition:none;
  6283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. color:#FFFFFF;
  6287. }
  6288. #u42696 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:43px;
  6292. top:117px;
  6293. width:113px;
  6294. height:20px;
  6295. display:flex;
  6296. transition:none;
  6297. transform-origin:50% 50%;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. color:#FFFFFF;
  6302. }
  6303. #u42696 .text {
  6304. position:absolute;
  6305. align-self:flex-start;
  6306. padding:0px 0px 0px 0px;
  6307. box-sizing:border-box;
  6308. width:100%;
  6309. }
  6310. #u42696_text {
  6311. border-width:0px;
  6312. white-space:nowrap;
  6313. text-transform:none;
  6314. }
  6315. #u42697_div {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:0px;
  6319. top:0px;
  6320. width:415px;
  6321. height:25px;
  6322. background:inherit;
  6323. background-color:rgba(255, 255, 255, 0);
  6324. border-left:0px;
  6325. border-top:0px;
  6326. border-right:0px;
  6327. border-radius:0px;
  6328. border-bottom-right-radius:0px;
  6329. border-bottom-left-radius:0px;
  6330. filter:drop-shadow(none);
  6331. transition:none;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:12px;
  6336. color:#D9001B;
  6337. line-height:25px;
  6338. }
  6339. #u42697 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:459px;
  6343. top:891px;
  6344. width:415px;
  6345. height:25px;
  6346. display:flex;
  6347. transition:none;
  6348. transform-origin:50% 50%;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:12px;
  6353. color:#D9001B;
  6354. line-height:25px;
  6355. }
  6356. #u42697 .text {
  6357. position:absolute;
  6358. align-self:flex-start;
  6359. padding:0px 0px 0px 0px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u42697_text {
  6364. border-width:0px;
  6365. white-space:nowrap;
  6366. text-transform:none;
  6367. }
  6368. #u42698_div {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:369px;
  6374. height:75px;
  6375. background:inherit;
  6376. background-color:rgba(255, 255, 255, 0);
  6377. border-left:0px;
  6378. border-top:0px;
  6379. border-right:0px;
  6380. border-radius:0px;
  6381. border-bottom-right-radius:0px;
  6382. border-bottom-left-radius:0px;
  6383. filter:drop-shadow(none);
  6384. transition:none;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:12px;
  6389. color:#D9001B;
  6390. line-height:25px;
  6391. }
  6392. #u42698 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:459px;
  6396. top:1158px;
  6397. width:369px;
  6398. height:75px;
  6399. display:flex;
  6400. transition:none;
  6401. transform-origin:50% 50%;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:12px;
  6406. color:#D9001B;
  6407. line-height:25px;
  6408. }
  6409. #u42698 .text {
  6410. position:absolute;
  6411. align-self:flex-start;
  6412. padding:0px 0px 0px 0px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u42698_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. }
  6421. #u42699_div {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:346px;
  6427. height:219px;
  6428. background:inherit;
  6429. background-color:rgba(255, 255, 255, 1);
  6430. border-radius:9px;
  6431. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6432. transition:none;
  6433. }
  6434. #u42699 {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:460px;
  6438. top:924px;
  6439. width:346px;
  6440. height:219px;
  6441. display:flex;
  6442. transition:none;
  6443. transform-origin:50% 50%;
  6444. }
  6445. #u42699 .text {
  6446. position:absolute;
  6447. align-self:center;
  6448. padding:2px 2px 2px 2px;
  6449. box-sizing:border-box;
  6450. width:100%;
  6451. }
  6452. #u42699_text {
  6453. border-width:0px;
  6454. word-wrap:break-word;
  6455. text-transform:none;
  6456. visibility:hidden;
  6457. }
  6458. #u42700_div {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:49px;
  6464. height:33px;
  6465. background:inherit;
  6466. background-color:rgba(255, 255, 255, 0);
  6467. border-radius:0px;
  6468. filter:drop-shadow(none);
  6469. transition:none;
  6470. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6471. font-weight:650;
  6472. font-style:normal;
  6473. font-size:24px;
  6474. text-align:center;
  6475. }
  6476. #u42700 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:609px;
  6480. top:962px;
  6481. width:49px;
  6482. height:33px;
  6483. display:flex;
  6484. transition:none;
  6485. transform-origin:50% 50%;
  6486. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6487. font-weight:650;
  6488. font-style:normal;
  6489. font-size:24px;
  6490. text-align:center;
  6491. }
  6492. #u42700 .text {
  6493. position:absolute;
  6494. align-self:center;
  6495. padding:0px 0px 0px 0px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u42700_text {
  6500. border-width:0px;
  6501. white-space:nowrap;
  6502. text-transform:none;
  6503. }
  6504. #u42701_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:173px;
  6510. height:60px;
  6511. background:inherit;
  6512. background-color:rgba(255, 255, 255, 0);
  6513. box-sizing:border-box;
  6514. border-width:1px;
  6515. border-style:solid;
  6516. border-color:rgba(215, 215, 215, 1);
  6517. border-left:0px;
  6518. border-bottom:0px;
  6519. border-radius:0px;
  6520. border-top-left-radius:0px;
  6521. border-bottom-right-radius:0px;
  6522. filter:drop-shadow(none);
  6523. transition:none;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:22px;
  6528. color:#0099FF;
  6529. text-align:center;
  6530. }
  6531. #u42701 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:459px;
  6535. top:1083px;
  6536. width:173px;
  6537. height:60px;
  6538. display:flex;
  6539. transition:none;
  6540. transform-origin:50% 50%;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:22px;
  6545. color:#0099FF;
  6546. text-align:center;
  6547. }
  6548. #u42701 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:0px 0px 0px 0px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u42701_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. }
  6560. #u42702_div {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:173px;
  6566. height:60px;
  6567. background:inherit;
  6568. background-color:rgba(255, 255, 255, 0);
  6569. box-sizing:border-box;
  6570. border-width:1px;
  6571. border-style:solid;
  6572. border-color:rgba(215, 215, 215, 1);
  6573. border-left:0px;
  6574. border-right:0px;
  6575. border-bottom:0px;
  6576. border-radius:0px;
  6577. border-top-left-radius:0px;
  6578. border-top-right-radius:0px;
  6579. filter:drop-shadow(none);
  6580. transition:none;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:22px;
  6585. color:#0099FF;
  6586. text-align:center;
  6587. }
  6588. #u42702 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:632px;
  6592. top:1083px;
  6593. width:173px;
  6594. height:60px;
  6595. display:flex;
  6596. transition:none;
  6597. transform-origin:50% 50%;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:22px;
  6602. color:#0099FF;
  6603. text-align:center;
  6604. }
  6605. #u42702 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u42702_text {
  6613. border-width:0px;
  6614. word-wrap:break-word;
  6615. text-transform:none;
  6616. }
  6617. #u42703_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:287px;
  6623. height:40px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border-radius:0px;
  6627. filter:drop-shadow(none);
  6628. transition:none;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:14px;
  6633. text-align:center;
  6634. }
  6635. #u42703 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:492px;
  6639. top:1017px;
  6640. width:287px;
  6641. height:40px;
  6642. display:flex;
  6643. transition:none;
  6644. transform-origin:50% 50%;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:14px;
  6649. text-align:center;
  6650. }
  6651. #u42703 .text {
  6652. position:absolute;
  6653. align-self:center;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u42703_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. }
  6663. #u42704_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:329px;
  6669. height:25px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 0);
  6672. border-left:0px;
  6673. border-top:0px;
  6674. border-right:0px;
  6675. border-radius:0px;
  6676. border-bottom-right-radius:0px;
  6677. border-bottom-left-radius:0px;
  6678. filter:drop-shadow(none);
  6679. transition:none;
  6680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6681. font-weight:400;
  6682. font-style:normal;
  6683. font-size:12px;
  6684. color:#D9001B;
  6685. line-height:25px;
  6686. }
  6687. #u42704 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:856px;
  6691. top:1164px;
  6692. width:329px;
  6693. height:25px;
  6694. display:flex;
  6695. transition:none;
  6696. transform-origin:50% 50%;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. color:#D9001B;
  6702. line-height:25px;
  6703. }
  6704. #u42704 .text {
  6705. position:absolute;
  6706. align-self:flex-start;
  6707. padding:0px 0px 0px 0px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u42704_text {
  6712. border-width:0px;
  6713. word-wrap:break-word;
  6714. text-transform:none;
  6715. }
  6716. #u42705 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:0px;
  6722. height:0px;
  6723. }
  6724. #u42706_div {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:346px;
  6730. height:219px;
  6731. background:inherit;
  6732. background-color:rgba(255, 255, 255, 1);
  6733. border-radius:9px;
  6734. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6735. transition:none;
  6736. }
  6737. #u42706 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:839px;
  6741. top:924px;
  6742. width:346px;
  6743. height:219px;
  6744. display:flex;
  6745. transition:none;
  6746. transform-origin:50% 50%;
  6747. }
  6748. #u42706 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 2px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u42706_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u42707_div {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:49px;
  6767. height:33px;
  6768. background:inherit;
  6769. background-color:rgba(255, 255, 255, 0);
  6770. border-radius:0px;
  6771. filter:drop-shadow(none);
  6772. transition:none;
  6773. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6774. font-weight:650;
  6775. font-style:normal;
  6776. font-size:24px;
  6777. text-align:center;
  6778. }
  6779. #u42707 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:988px;
  6783. top:962px;
  6784. width:49px;
  6785. height:33px;
  6786. display:flex;
  6787. transition:none;
  6788. transform-origin:50% 50%;
  6789. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6790. font-weight:650;
  6791. font-style:normal;
  6792. font-size:24px;
  6793. text-align:center;
  6794. }
  6795. #u42707 .text {
  6796. position:absolute;
  6797. align-self:center;
  6798. padding:0px 0px 0px 0px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u42707_text {
  6803. border-width:0px;
  6804. white-space:nowrap;
  6805. text-transform:none;
  6806. }
  6807. #u42708_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:173px;
  6813. height:60px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 0);
  6816. box-sizing:border-box;
  6817. border-width:1px;
  6818. border-style:solid;
  6819. border-color:rgba(215, 215, 215, 1);
  6820. border-left:0px;
  6821. border-bottom:0px;
  6822. border-radius:0px;
  6823. border-top-left-radius:0px;
  6824. border-bottom-right-radius:0px;
  6825. filter:drop-shadow(none);
  6826. transition:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:22px;
  6831. color:#0099FF;
  6832. text-align:center;
  6833. }
  6834. #u42708 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:838px;
  6838. top:1083px;
  6839. width:173px;
  6840. height:60px;
  6841. display:flex;
  6842. transition:none;
  6843. transform-origin:50% 50%;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:22px;
  6848. color:#0099FF;
  6849. text-align:center;
  6850. }
  6851. #u42708 .text {
  6852. position:absolute;
  6853. align-self:center;
  6854. padding:0px 0px 0px 0px;
  6855. box-sizing:border-box;
  6856. width:100%;
  6857. }
  6858. #u42708_text {
  6859. border-width:0px;
  6860. word-wrap:break-word;
  6861. text-transform:none;
  6862. }
  6863. #u42709_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:287px;
  6869. height:40px;
  6870. background:inherit;
  6871. background-color:rgba(255, 255, 255, 0);
  6872. border-radius:0px;
  6873. filter:drop-shadow(none);
  6874. transition:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:14px;
  6879. text-align:center;
  6880. }
  6881. #u42709 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:871px;
  6885. top:1017px;
  6886. width:287px;
  6887. height:40px;
  6888. display:flex;
  6889. transition:none;
  6890. transform-origin:50% 50%;
  6891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:14px;
  6895. text-align:center;
  6896. }
  6897. #u42709 .text {
  6898. position:absolute;
  6899. align-self:center;
  6900. padding:0px 0px 0px 0px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u42709_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. }
  6909. #u42710_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:173px;
  6915. height:60px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. box-sizing:border-box;
  6919. border-width:1px;
  6920. border-style:solid;
  6921. border-color:rgba(215, 215, 215, 1);
  6922. border-left:0px;
  6923. border-right:0px;
  6924. border-bottom:0px;
  6925. border-radius:0px;
  6926. border-top-left-radius:0px;
  6927. border-top-right-radius:0px;
  6928. filter:drop-shadow(none);
  6929. transition:none;
  6930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:22px;
  6934. color:#0099FF;
  6935. text-align:center;
  6936. }
  6937. #u42710 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:1011px;
  6941. top:1083px;
  6942. width:173px;
  6943. height:60px;
  6944. display:flex;
  6945. transition:none;
  6946. transform-origin:50% 50%;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:22px;
  6951. color:#0099FF;
  6952. text-align:center;
  6953. }
  6954. #u42710 .text {
  6955. position:absolute;
  6956. align-self:center;
  6957. padding:0px 0px 0px 0px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u42710_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. }