styles.css 160 KB

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