styles.css 226 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2895px;
  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. #u41365 {
  20. border-width:0px;
  21. position:absolute;
  22. left:1812px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. display:flex;
  27. transition:none;
  28. }
  29. #u41365 .text {
  30. position:absolute;
  31. align-self:center;
  32. padding:2px 2px 2px 2px;
  33. box-sizing:border-box;
  34. width:100%;
  35. }
  36. #u41365_img {
  37. border-width:0px;
  38. position:absolute;
  39. left:0px;
  40. top:0px;
  41. width:433px;
  42. height:865px;
  43. }
  44. #u41365_text {
  45. border-width:0px;
  46. word-wrap:break-word;
  47. text-transform:none;
  48. visibility:hidden;
  49. }
  50. #u41366_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. #u41366 {
  69. border-width:0px;
  70. position:absolute;
  71. left:1841px;
  72. top:67px;
  73. width:375px;
  74. height:40px;
  75. display:flex;
  76. transition:none;
  77. transform-origin:50% 50%;
  78. }
  79. #u41366 .text {
  80. position:absolute;
  81. align-self:center;
  82. padding:2px 2px 2px 2px;
  83. box-sizing:border-box;
  84. width:100%;
  85. }
  86. #u41366_text {
  87. border-width:0px;
  88. word-wrap:break-word;
  89. text-transform:none;
  90. visibility:hidden;
  91. }
  92. #u41367 {
  93. border-width:0px;
  94. position:absolute;
  95. left:0px;
  96. top:0px;
  97. width:0px;
  98. height:0px;
  99. }
  100. #u41368_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. #u41368 {
  118. border-width:0px;
  119. position:absolute;
  120. left:2121px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. transition:none;
  126. transform-origin:50% 50%;
  127. }
  128. #u41368 .text {
  129. position:absolute;
  130. align-self:center;
  131. padding:2px 2px 2px 2px;
  132. box-sizing:border-box;
  133. width:100%;
  134. }
  135. #u41368_text {
  136. border-width:0px;
  137. word-wrap:break-word;
  138. text-transform:none;
  139. visibility:hidden;
  140. }
  141. #u41369 {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:0px;
  147. height:0px;
  148. }
  149. #u41370 {
  150. border-width:0px;
  151. position:absolute;
  152. left:2184px;
  153. top:78px;
  154. width:18px;
  155. height:18px;
  156. display:flex;
  157. transition:none;
  158. }
  159. #u41370 .text {
  160. position:absolute;
  161. align-self:center;
  162. padding:2px 2px 2px 2px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u41370_img {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:18px;
  172. height:18px;
  173. }
  174. #u41370_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u41371 {
  181. border-width:0px;
  182. position:absolute;
  183. left:2190px;
  184. top:84px;
  185. width:6px;
  186. height:6px;
  187. display:flex;
  188. transition:none;
  189. }
  190. #u41371 .text {
  191. position:absolute;
  192. align-self:center;
  193. padding:2px 2px 2px 2px;
  194. box-sizing:border-box;
  195. width:100%;
  196. }
  197. #u41371_img {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:6px;
  203. height:6px;
  204. }
  205. #u41371_text {
  206. border-width:0px;
  207. word-wrap:break-word;
  208. text-transform:none;
  209. visibility:hidden;
  210. }
  211. #u41372 {
  212. border-width:0px;
  213. position:absolute;
  214. left:0px;
  215. top:0px;
  216. width:0px;
  217. height:0px;
  218. }
  219. #u41373 {
  220. border-width:0px;
  221. position:absolute;
  222. left:2135px;
  223. top:85px;
  224. width:5px;
  225. height:5px;
  226. display:flex;
  227. transition:none;
  228. }
  229. #u41373 .text {
  230. position:absolute;
  231. align-self:center;
  232. padding:2px 2px 2px 2px;
  233. box-sizing:border-box;
  234. width:100%;
  235. }
  236. #u41373_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:5px;
  242. height:5px;
  243. }
  244. #u41373_text {
  245. border-width:0px;
  246. word-wrap:break-word;
  247. text-transform:none;
  248. visibility:hidden;
  249. }
  250. #u41374 {
  251. border-width:0px;
  252. position:absolute;
  253. left:2151px;
  254. top:85px;
  255. width:5px;
  256. height:5px;
  257. display:flex;
  258. transition:none;
  259. }
  260. #u41374 .text {
  261. position:absolute;
  262. align-self:center;
  263. padding:2px 2px 2px 2px;
  264. box-sizing:border-box;
  265. width:100%;
  266. }
  267. #u41374_img {
  268. border-width:0px;
  269. position:absolute;
  270. left:0px;
  271. top:0px;
  272. width:5px;
  273. height:5px;
  274. }
  275. #u41374_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. visibility:hidden;
  280. }
  281. #u41375 {
  282. border-width:0px;
  283. position:absolute;
  284. left:2142px;
  285. top:84px;
  286. width:7px;
  287. height:7px;
  288. display:flex;
  289. transition:none;
  290. }
  291. #u41375 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:2px 2px 2px 2px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u41375_img {
  299. border-width:0px;
  300. position:absolute;
  301. left:0px;
  302. top:0px;
  303. width:7px;
  304. height:7px;
  305. }
  306. #u41375_text {
  307. border-width:0px;
  308. word-wrap:break-word;
  309. text-transform:none;
  310. visibility:hidden;
  311. }
  312. #u41376 {
  313. border-width:0px;
  314. position:absolute;
  315. left:2159px;
  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. #u41376 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u41376_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:19px;
  339. height:2px;
  340. }
  341. #u41376_text {
  342. border-width:0px;
  343. word-wrap:break-word;
  344. text-transform:none;
  345. visibility:hidden;
  346. }
  347. #u41377_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. #u41377 {
  367. border-width:0px;
  368. position:absolute;
  369. left:1841px;
  370. top:788px;
  371. width:375px;
  372. height:50px;
  373. display:flex;
  374. transition:none;
  375. transform-origin:50% 50%;
  376. }
  377. #u41377 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u41377_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u41378 {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:0px;
  396. height:0px;
  397. }
  398. #u41379 {
  399. border-width:0px;
  400. position:absolute;
  401. left:1881px;
  402. top:792px;
  403. width:24px;
  404. height:24px;
  405. display:flex;
  406. transition:none;
  407. font-size:8px;
  408. }
  409. #u41379 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u41379_img {
  417. border-width:0px;
  418. position:absolute;
  419. left:0px;
  420. top:0px;
  421. width:24px;
  422. height:24px;
  423. }
  424. #u41379_text {
  425. border-width:0px;
  426. word-wrap:break-word;
  427. text-transform:none;
  428. }
  429. #u41380_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. #u41380 {
  447. border-width:0px;
  448. position:absolute;
  449. left:1881px;
  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. #u41380 .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. #u41380_text {
  469. border-width:0px;
  470. white-space:nowrap;
  471. text-transform:none;
  472. }
  473. #u41381 {
  474. border-width:0px;
  475. position:absolute;
  476. left:0px;
  477. top:0px;
  478. width:0px;
  479. height:0px;
  480. }
  481. #u41382 {
  482. border-width:0px;
  483. position:absolute;
  484. left:2151px;
  485. top:794px;
  486. width:24px;
  487. height:24px;
  488. display:flex;
  489. transition:none;
  490. font-size:8px;
  491. }
  492. #u41382 .text {
  493. position:absolute;
  494. align-self:center;
  495. padding:2px 2px 2px 2px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u41382_img {
  500. border-width:0px;
  501. position:absolute;
  502. left:0px;
  503. top:0px;
  504. width:24px;
  505. height:24px;
  506. }
  507. #u41382_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. }
  512. #u41383_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. #u41383 {
  530. border-width:0px;
  531. position:absolute;
  532. left:2151px;
  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. #u41383 .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. #u41383_text {
  552. border-width:0px;
  553. white-space:nowrap;
  554. text-transform:none;
  555. }
  556. #u41384_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. #u41384 {
  570. border-width:0px;
  571. position:absolute;
  572. left:1841px;
  573. top:107px;
  574. width:375px;
  575. height:681px;
  576. display:flex;
  577. transition:none;
  578. transform-origin:50% 50%;
  579. }
  580. #u41384 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u41384_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u41385 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u41386 {
  602. border-width:0px;
  603. position:absolute;
  604. left:2063px;
  605. top:792px;
  606. width:24px;
  607. height:24px;
  608. display:flex;
  609. transition:none;
  610. font-size:8px;
  611. }
  612. #u41386 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u41386_img {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:24px;
  625. height:24px;
  626. }
  627. #u41386_text {
  628. border-width:0px;
  629. word-wrap:break-word;
  630. text-transform:none;
  631. }
  632. #u41387_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. #u41387 {
  650. border-width:0px;
  651. position:absolute;
  652. left:2057px;
  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. #u41387 .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. #u41387_text {
  672. border-width:0px;
  673. white-space:nowrap;
  674. text-transform:none;
  675. }
  676. #u41388 {
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:0px;
  682. height:0px;
  683. }
  684. #u41389 {
  685. border-width:0px;
  686. position:absolute;
  687. left:1969px;
  688. top:792px;
  689. width:24px;
  690. height:24px;
  691. display:flex;
  692. transition:none;
  693. font-size:8px;
  694. }
  695. #u41389 .text {
  696. position:absolute;
  697. align-self:center;
  698. padding:2px 2px 2px 2px;
  699. box-sizing:border-box;
  700. width:100%;
  701. }
  702. #u41389_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u41389_text {
  711. border-width:0px;
  712. word-wrap:break-word;
  713. text-transform:none;
  714. }
  715. #u41390_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. #u41390 {
  733. border-width:0px;
  734. position:absolute;
  735. left:1963px;
  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. #u41390 .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. #u41390_text {
  755. border-width:0px;
  756. white-space:nowrap;
  757. text-transform:none;
  758. }
  759. #u41391_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. #u41391 {
  779. border-width:0px;
  780. position:absolute;
  781. left:1841px;
  782. top:107px;
  783. width:375px;
  784. height:732px;
  785. display:flex;
  786. transition:none;
  787. transform-origin:50% 50%;
  788. }
  789. #u41391 .text {
  790. position:absolute;
  791. align-self:center;
  792. padding:2px 2px 2px 2px;
  793. box-sizing:border-box;
  794. width:100%;
  795. }
  796. #u41391_text {
  797. border-width:0px;
  798. word-wrap:break-word;
  799. text-transform:none;
  800. visibility:hidden;
  801. }
  802. #u41392 {
  803. border-width:0px;
  804. position:absolute;
  805. left:1840px;
  806. top:24px;
  807. width:376px;
  808. height:818px;
  809. display:flex;
  810. transition:none;
  811. }
  812. #u41392 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u41392_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:376px;
  825. height:818px;
  826. }
  827. #u41392_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. visibility:hidden;
  832. }
  833. #u41393 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:433px;
  839. height:865px;
  840. }
  841. #u41394 {
  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. #u41394 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u41394_img {
  859. border-width:0px;
  860. position:absolute;
  861. left:0px;
  862. top:0px;
  863. width:433px;
  864. height:865px;
  865. }
  866. #u41394_text {
  867. border-width:0px;
  868. word-wrap:break-word;
  869. text-transform:none;
  870. visibility:hidden;
  871. }
  872. #u41395_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. #u41395 {
  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. #u41395 .text {
  906. position:absolute;
  907. align-self:center;
  908. padding:2px 2px 2px 2px;
  909. box-sizing:border-box;
  910. width:100%;
  911. }
  912. #u41395_text {
  913. border-width:0px;
  914. word-wrap:break-word;
  915. text-transform:none;
  916. visibility:hidden;
  917. }
  918. #u41396 {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:0px;
  924. height:0px;
  925. }
  926. #u41397_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. #u41397 {
  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. #u41397 .text {
  955. position:absolute;
  956. align-self:center;
  957. padding:2px 2px 2px 2px;
  958. box-sizing:border-box;
  959. width:100%;
  960. }
  961. #u41397_text {
  962. border-width:0px;
  963. word-wrap:break-word;
  964. text-transform:none;
  965. visibility:hidden;
  966. }
  967. #u41398 {
  968. border-width:0px;
  969. position:absolute;
  970. left:0px;
  971. top:0px;
  972. width:0px;
  973. height:0px;
  974. }
  975. #u41399 {
  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. #u41399 .text {
  986. position:absolute;
  987. align-self:center;
  988. padding:2px 2px 2px 2px;
  989. box-sizing:border-box;
  990. width:100%;
  991. }
  992. #u41399_img {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:18px;
  998. height:18px;
  999. }
  1000. #u41399_text {
  1001. border-width:0px;
  1002. word-wrap:break-word;
  1003. text-transform:none;
  1004. visibility:hidden;
  1005. }
  1006. #u41400 {
  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. #u41400 .text {
  1017. position:absolute;
  1018. align-self:center;
  1019. padding:2px 2px 2px 2px;
  1020. box-sizing:border-box;
  1021. width:100%;
  1022. }
  1023. #u41400_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:6px;
  1029. height:6px;
  1030. }
  1031. #u41400_text {
  1032. border-width:0px;
  1033. word-wrap:break-word;
  1034. text-transform:none;
  1035. visibility:hidden;
  1036. }
  1037. #u41401 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:0px;
  1043. height:0px;
  1044. }
  1045. #u41402 {
  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. #u41402 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u41402_img {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:5px;
  1068. height:5px;
  1069. }
  1070. #u41402_text {
  1071. border-width:0px;
  1072. word-wrap:break-word;
  1073. text-transform:none;
  1074. visibility:hidden;
  1075. }
  1076. #u41403 {
  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. #u41403 .text {
  1087. position:absolute;
  1088. align-self:center;
  1089. padding:2px 2px 2px 2px;
  1090. box-sizing:border-box;
  1091. width:100%;
  1092. }
  1093. #u41403_img {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:5px;
  1099. height:5px;
  1100. }
  1101. #u41403_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. visibility:hidden;
  1106. }
  1107. #u41404 {
  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. #u41404 .text {
  1118. position:absolute;
  1119. align-self:center;
  1120. padding:2px 2px 2px 2px;
  1121. box-sizing:border-box;
  1122. width:100%;
  1123. }
  1124. #u41404_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:7px;
  1130. height:7px;
  1131. }
  1132. #u41404_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. visibility:hidden;
  1137. }
  1138. #u41405 {
  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. #u41405 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u41405_img {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:19px;
  1165. height:2px;
  1166. }
  1167. #u41405_text {
  1168. border-width:0px;
  1169. word-wrap:break-word;
  1170. text-transform:none;
  1171. visibility:hidden;
  1172. }
  1173. #u41406 {
  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. #u41406 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u41406_img {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:375px;
  1196. height:44px;
  1197. }
  1198. #u41406_text {
  1199. border-width:0px;
  1200. word-wrap:break-word;
  1201. text-transform:none;
  1202. visibility:hidden;
  1203. }
  1204. #u41407_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. #u41407 {
  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. #u41407 .text {
  1235. position:absolute;
  1236. align-self:center;
  1237. padding:2px 2px 2px 2px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u41407_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. visibility:hidden;
  1246. }
  1247. #u41408 {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:0px;
  1253. height:0px;
  1254. }
  1255. #u41409 {
  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. #u41409 .text {
  1267. position:absolute;
  1268. align-self:center;
  1269. padding:2px 2px 2px 2px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u41409_img {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:24px;
  1279. height:24px;
  1280. }
  1281. #u41409_text {
  1282. border-width:0px;
  1283. word-wrap:break-word;
  1284. text-transform:none;
  1285. }
  1286. #u41410_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. #u41410 {
  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. #u41410 .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. #u41410_text {
  1326. border-width:0px;
  1327. white-space:nowrap;
  1328. text-transform:none;
  1329. }
  1330. #u41411 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:0px;
  1336. height:0px;
  1337. }
  1338. #u41412 {
  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. #u41412 .text {
  1350. position:absolute;
  1351. align-self:center;
  1352. padding:2px 2px 2px 2px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u41412_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:24px;
  1362. height:24px;
  1363. }
  1364. #u41412_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. }
  1369. #u41413_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. #u41413 {
  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. #u41413 .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. #u41413_text {
  1409. border-width:0px;
  1410. white-space:nowrap;
  1411. text-transform:none;
  1412. }
  1413. #u41414_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. #u41414 {
  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. #u41414 .text {
  1438. position:absolute;
  1439. align-self:center;
  1440. padding:2px 2px 2px 2px;
  1441. box-sizing:border-box;
  1442. width:100%;
  1443. }
  1444. #u41414_text {
  1445. border-width:0px;
  1446. word-wrap:break-word;
  1447. text-transform:none;
  1448. visibility:hidden;
  1449. }
  1450. #u41415 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u41416 {
  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. #u41416 .text {
  1470. position:absolute;
  1471. align-self:center;
  1472. padding:2px 2px 2px 2px;
  1473. box-sizing:border-box;
  1474. width:100%;
  1475. }
  1476. #u41416_img {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:24px;
  1482. height:24px;
  1483. }
  1484. #u41416_text {
  1485. border-width:0px;
  1486. word-wrap:break-word;
  1487. text-transform:none;
  1488. }
  1489. #u41417_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. #u41417 {
  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. #u41417 .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. #u41417_text {
  1529. border-width:0px;
  1530. white-space:nowrap;
  1531. text-transform:none;
  1532. }
  1533. #u41418 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:0px;
  1539. height:0px;
  1540. }
  1541. #u41419 {
  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. #u41419 .text {
  1553. position:absolute;
  1554. align-self:center;
  1555. padding:2px 2px 2px 2px;
  1556. box-sizing:border-box;
  1557. width:100%;
  1558. }
  1559. #u41419_img {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:24px;
  1565. height:24px;
  1566. }
  1567. #u41419_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. }
  1572. #u41420_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. #u41420 {
  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. #u41420 .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. #u41420_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u41421_div {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:375px;
  1622. height:772px;
  1623. background:inherit;
  1624. background-color:rgba(24, 144, 255, 1);
  1625. border-top:0px;
  1626. border-radius:28px;
  1627. border-top-left-radius:0px;
  1628. border-top-right-radius:0px;
  1629. filter:drop-shadow(none);
  1630. transition:none;
  1631. }
  1632. #u41421 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:29px;
  1636. top:68px;
  1637. width:375px;
  1638. height:772px;
  1639. display:flex;
  1640. transition:none;
  1641. transform-origin:50% 50%;
  1642. }
  1643. #u41421 .text {
  1644. position:absolute;
  1645. align-self:center;
  1646. padding:2px 2px 2px 2px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u41421_text {
  1651. border-width:0px;
  1652. word-wrap:break-word;
  1653. text-transform:none;
  1654. visibility:hidden;
  1655. }
  1656. #u41422_div {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:12px;
  1662. height:12px;
  1663. background:inherit;
  1664. background-color:rgba(255, 255, 255, 0);
  1665. box-sizing:border-box;
  1666. border-width:2px;
  1667. border-style:solid;
  1668. border-color:rgba(255, 255, 255, 1);
  1669. border-right:0px;
  1670. border-bottom:0px;
  1671. border-radius:0px;
  1672. border-top-right-radius:0px;
  1673. border-bottom-left-radius:0px;
  1674. filter:drop-shadow(none);
  1675. transition:none;
  1676. }
  1677. #u41422 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:39px;
  1681. top:81px;
  1682. width:12px;
  1683. height:12px;
  1684. display:flex;
  1685. -webkit-transform:rotate(315deg);
  1686. -moz-transform:rotate(315deg);
  1687. -ms-transform:rotate(315deg);
  1688. transform:rotate(315deg);
  1689. transition:none;
  1690. transform-origin:50% 50%;
  1691. }
  1692. #u41422 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u41422_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. visibility:hidden;
  1704. }
  1705. #u41423 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:0px;
  1711. height:0px;
  1712. }
  1713. #u41424_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:375px;
  1719. height:60px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 1);
  1722. border-top:0px;
  1723. border-radius:28px;
  1724. border-top-left-radius:0px;
  1725. border-top-right-radius:0px;
  1726. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1727. transition:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:14px;
  1732. color:#FFFFFF;
  1733. }
  1734. #u41424 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:29px;
  1738. top:780px;
  1739. width:375px;
  1740. height:60px;
  1741. display:flex;
  1742. transition:none;
  1743. transform-origin:50% 50%;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:14px;
  1748. color:#FFFFFF;
  1749. }
  1750. #u41424 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 2px 2px 2px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u41424_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. visibility:hidden;
  1762. }
  1763. #u41425_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:324px;
  1769. height:40px;
  1770. background:inherit;
  1771. background-color:rgba(0, 137, 254, 1);
  1772. border-radius:63px;
  1773. filter:drop-shadow(none);
  1774. transition:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. color:#FFFFFF;
  1780. }
  1781. #u41425 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:57px;
  1785. top:789px;
  1786. width:324px;
  1787. height:40px;
  1788. display:flex;
  1789. transition:none;
  1790. transform-origin:50% 50%;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:14px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u41425 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 2px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u41425_text {
  1805. border-width:0px;
  1806. word-wrap:break-word;
  1807. text-transform:none;
  1808. }
  1809. #u41426 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:0px;
  1815. height:0px;
  1816. }
  1817. #u41427_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:88px;
  1823. height:32px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 1);
  1826. box-sizing:border-box;
  1827. border-width:1px;
  1828. border-style:solid;
  1829. border-color:rgba(242, 242, 242, 1);
  1830. border-radius:33px;
  1831. filter:drop-shadow(none);
  1832. transition:none;
  1833. }
  1834. #u41427 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:309px;
  1838. top:71px;
  1839. width:88px;
  1840. height:32px;
  1841. display:flex;
  1842. transition:none;
  1843. transform-origin:50% 50%;
  1844. }
  1845. #u41427 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u41427_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u41428 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:0px;
  1864. height:0px;
  1865. }
  1866. #u41429 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:372px;
  1870. top:78px;
  1871. width:18px;
  1872. height:18px;
  1873. display:flex;
  1874. transition:none;
  1875. }
  1876. #u41429 .text {
  1877. position:absolute;
  1878. align-self:center;
  1879. padding:2px 2px 2px 2px;
  1880. box-sizing:border-box;
  1881. width:100%;
  1882. }
  1883. #u41429_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:18px;
  1889. height:18px;
  1890. }
  1891. #u41429_text {
  1892. border-width:0px;
  1893. word-wrap:break-word;
  1894. text-transform:none;
  1895. visibility:hidden;
  1896. }
  1897. #u41430 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:378px;
  1901. top:84px;
  1902. width:6px;
  1903. height:6px;
  1904. display:flex;
  1905. transition:none;
  1906. }
  1907. #u41430 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 2px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u41430_img {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:6px;
  1920. height:6px;
  1921. }
  1922. #u41430_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. visibility:hidden;
  1927. }
  1928. #u41431 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:0px;
  1934. height:0px;
  1935. }
  1936. #u41432 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:323px;
  1940. top:85px;
  1941. width:5px;
  1942. height:5px;
  1943. display:flex;
  1944. transition:none;
  1945. }
  1946. #u41432 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u41432_img {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:5px;
  1959. height:5px;
  1960. }
  1961. #u41432_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. visibility:hidden;
  1966. }
  1967. #u41433 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:339px;
  1971. top:85px;
  1972. width:5px;
  1973. height:5px;
  1974. display:flex;
  1975. transition:none;
  1976. }
  1977. #u41433 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 2px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u41433_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:5px;
  1990. height:5px;
  1991. }
  1992. #u41433_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. visibility:hidden;
  1997. }
  1998. #u41434 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:330px;
  2002. top:84px;
  2003. width:7px;
  2004. height:7px;
  2005. display:flex;
  2006. transition:none;
  2007. }
  2008. #u41434 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 2px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u41434_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:7px;
  2021. height:7px;
  2022. }
  2023. #u41434_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. visibility:hidden;
  2028. }
  2029. #u41435 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:347px;
  2033. top:87px;
  2034. width:18px;
  2035. height:1px;
  2036. display:flex;
  2037. -webkit-transform:rotate(90deg);
  2038. -moz-transform:rotate(90deg);
  2039. -ms-transform:rotate(90deg);
  2040. transform:rotate(90deg);
  2041. transition:none;
  2042. }
  2043. #u41435 .text {
  2044. position:absolute;
  2045. align-self:center;
  2046. padding:2px 2px 2px 2px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u41435_img {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:19px;
  2056. height:2px;
  2057. }
  2058. #u41435_text {
  2059. border-width:0px;
  2060. word-wrap:break-word;
  2061. text-transform:none;
  2062. visibility:hidden;
  2063. }
  2064. #u41436_div {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:169px;
  2070. height:40px;
  2071. background:inherit;
  2072. background-color:rgba(255, 255, 255, 0);
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. filter:drop-shadow(none);
  2080. transition:none;
  2081. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2082. font-weight:500;
  2083. font-style:normal;
  2084. font-size:28px;
  2085. color:#FFFFFF;
  2086. text-align:right;
  2087. }
  2088. #u41436 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:132px;
  2092. top:341px;
  2093. width:169px;
  2094. height:40px;
  2095. display:flex;
  2096. transition:none;
  2097. transform-origin:50% 50%;
  2098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2099. font-weight:500;
  2100. font-style:normal;
  2101. font-size:28px;
  2102. color:#FFFFFF;
  2103. text-align:right;
  2104. }
  2105. #u41436 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u41436_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u41437_div {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:360px;
  2123. height:384px;
  2124. background:inherit;
  2125. background-color:rgba(255, 255, 255, 1);
  2126. border-bottom:0px;
  2127. border-radius:18px;
  2128. border-bottom-right-radius:0px;
  2129. border-bottom-left-radius:0px;
  2130. filter:drop-shadow(none);
  2131. transition:none;
  2132. }
  2133. #u41437 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:37px;
  2137. top:400px;
  2138. width:360px;
  2139. height:384px;
  2140. display:flex;
  2141. transition:none;
  2142. transform-origin:50% 50%;
  2143. }
  2144. #u41437 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 2px 2px 2px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u41437_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. visibility:hidden;
  2156. }
  2157. #u41438_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:73px;
  2163. height:25px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border-left:0px;
  2167. border-top:0px;
  2168. border-right:0px;
  2169. border-radius:0px;
  2170. border-bottom-right-radius:0px;
  2171. border-bottom-left-radius:0px;
  2172. filter:drop-shadow(none);
  2173. transition:none;
  2174. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2175. font-weight:500;
  2176. font-style:normal;
  2177. font-size:18px;
  2178. color:#5C93FF;
  2179. text-align:center;
  2180. }
  2181. #u41438 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:180px;
  2185. top:433px;
  2186. width:73px;
  2187. height:25px;
  2188. display:flex;
  2189. transition:none;
  2190. transform-origin:50% 50%;
  2191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2192. font-weight:500;
  2193. font-style:normal;
  2194. font-size:18px;
  2195. color:#5C93FF;
  2196. text-align:center;
  2197. }
  2198. #u41438 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:0px 0px 0px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u41438_text {
  2206. border-width:0px;
  2207. white-space:nowrap;
  2208. text-transform:none;
  2209. }
  2210. #u41439 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:57px;
  2214. top:553px;
  2215. width:30px;
  2216. height:30px;
  2217. display:flex;
  2218. transition:none;
  2219. color:#FFFFFF;
  2220. }
  2221. #u41439 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 2px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u41439_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:30px;
  2234. height:30px;
  2235. }
  2236. #u41439_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. }
  2241. #u41440_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:109px;
  2247. height:25px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 0);
  2250. border-left:0px;
  2251. border-top:0px;
  2252. border-right:0px;
  2253. border-radius:0px;
  2254. border-bottom-right-radius:0px;
  2255. border-bottom-left-radius:0px;
  2256. filter:drop-shadow(none);
  2257. transition:none;
  2258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2259. font-weight:500;
  2260. font-style:normal;
  2261. font-size:18px;
  2262. color:#5C93FF;
  2263. }
  2264. #u41440 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:95px;
  2268. top:553px;
  2269. width:109px;
  2270. height:25px;
  2271. display:flex;
  2272. transition:none;
  2273. transform-origin:50% 50%;
  2274. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2275. font-weight:500;
  2276. font-style:normal;
  2277. font-size:18px;
  2278. color:#5C93FF;
  2279. }
  2280. #u41440 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:0px 0px 0px 0px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u41440_text {
  2288. border-width:0px;
  2289. white-space:nowrap;
  2290. text-transform:none;
  2291. }
  2292. #u41441_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:169px;
  2298. height:30px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border-left:0px;
  2302. border-top:0px;
  2303. border-right:0px;
  2304. border-radius:0px;
  2305. border-bottom-right-radius:0px;
  2306. border-bottom-left-radius:0px;
  2307. filter:drop-shadow(none);
  2308. transition:none;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:12px;
  2313. line-height:30px;
  2314. }
  2315. #u41441 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:95px;
  2319. top:578px;
  2320. width:169px;
  2321. height:30px;
  2322. display:flex;
  2323. transition:none;
  2324. transform-origin:50% 50%;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. line-height:30px;
  2330. }
  2331. #u41441 .text {
  2332. position:absolute;
  2333. align-self:flex-start;
  2334. padding:0px 0px 0px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u41441_text {
  2339. border-width:0px;
  2340. white-space:nowrap;
  2341. text-transform:none;
  2342. }
  2343. #u41442 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:57px;
  2347. top:623px;
  2348. width:30px;
  2349. height:30px;
  2350. display:flex;
  2351. transition:none;
  2352. color:#FFFFFF;
  2353. }
  2354. #u41442 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u41442_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:30px;
  2367. height:30px;
  2368. }
  2369. #u41442_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. }
  2374. #u41443_div {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:73px;
  2380. height:25px;
  2381. background:inherit;
  2382. background-color:rgba(255, 255, 255, 0);
  2383. border-left:0px;
  2384. border-top:0px;
  2385. border-right:0px;
  2386. border-radius:0px;
  2387. border-bottom-right-radius:0px;
  2388. border-bottom-left-radius:0px;
  2389. filter:drop-shadow(none);
  2390. transition:none;
  2391. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2392. font-weight:500;
  2393. font-style:normal;
  2394. font-size:18px;
  2395. color:#5C93FF;
  2396. }
  2397. #u41443 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:95px;
  2401. top:625px;
  2402. width:73px;
  2403. height:25px;
  2404. display:flex;
  2405. transition:none;
  2406. transform-origin:50% 50%;
  2407. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2408. font-weight:500;
  2409. font-style:normal;
  2410. font-size:18px;
  2411. color:#5C93FF;
  2412. }
  2413. #u41443 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:0px 0px 0px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u41443_text {
  2421. border-width:0px;
  2422. white-space:nowrap;
  2423. text-transform:none;
  2424. }
  2425. #u41444_div {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:205px;
  2431. height:30px;
  2432. background:inherit;
  2433. background-color:rgba(255, 255, 255, 0);
  2434. border-left:0px;
  2435. border-top:0px;
  2436. border-right:0px;
  2437. border-radius:0px;
  2438. border-bottom-right-radius:0px;
  2439. border-bottom-left-radius:0px;
  2440. filter:drop-shadow(none);
  2441. transition:none;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:12px;
  2446. line-height:30px;
  2447. }
  2448. #u41444 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:95px;
  2452. top:650px;
  2453. width:205px;
  2454. height:30px;
  2455. display:flex;
  2456. transition:none;
  2457. transform-origin:50% 50%;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. line-height:30px;
  2463. }
  2464. #u41444 .text {
  2465. position:absolute;
  2466. align-self:flex-start;
  2467. padding:0px 0px 0px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u41444_text {
  2472. border-width:0px;
  2473. white-space:nowrap;
  2474. text-transform:none;
  2475. }
  2476. #u41445 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:57px;
  2480. top:694px;
  2481. width:30px;
  2482. height:30px;
  2483. display:flex;
  2484. transition:none;
  2485. color:#FFFFFF;
  2486. }
  2487. #u41445 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:2px 2px 2px 2px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u41445_img {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:30px;
  2500. height:30px;
  2501. }
  2502. #u41445_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. }
  2507. #u41446_div {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:73px;
  2513. height:25px;
  2514. background:inherit;
  2515. background-color:rgba(255, 255, 255, 0);
  2516. border-left:0px;
  2517. border-top:0px;
  2518. border-right:0px;
  2519. border-radius:0px;
  2520. border-bottom-right-radius:0px;
  2521. border-bottom-left-radius:0px;
  2522. filter:drop-shadow(none);
  2523. transition:none;
  2524. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2525. font-weight:500;
  2526. font-style:normal;
  2527. font-size:18px;
  2528. color:#5C93FF;
  2529. }
  2530. #u41446 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:95px;
  2534. top:696px;
  2535. width:73px;
  2536. height:25px;
  2537. display:flex;
  2538. transition:none;
  2539. transform-origin:50% 50%;
  2540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2541. font-weight:500;
  2542. font-style:normal;
  2543. font-size:18px;
  2544. color:#5C93FF;
  2545. }
  2546. #u41446 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:0px 0px 0px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u41446_text {
  2554. border-width:0px;
  2555. white-space:nowrap;
  2556. text-transform:none;
  2557. }
  2558. #u41447_div {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:286px;
  2564. height:34px;
  2565. background:inherit;
  2566. background-color:rgba(255, 255, 255, 0);
  2567. border-left:0px;
  2568. border-top:0px;
  2569. border-right:0px;
  2570. border-radius:0px;
  2571. border-bottom-right-radius:0px;
  2572. border-bottom-left-radius:0px;
  2573. filter:drop-shadow(none);
  2574. transition:none;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:12px;
  2579. }
  2580. #u41447 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:95px;
  2584. top:726px;
  2585. width:286px;
  2586. height:34px;
  2587. display:flex;
  2588. transition:none;
  2589. transform-origin:50% 50%;
  2590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:12px;
  2594. }
  2595. #u41447 .text {
  2596. position:absolute;
  2597. align-self:flex-start;
  2598. padding:0px 0px 0px 0px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u41447_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. }
  2607. #u41448 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:66px;
  2611. top:141px;
  2612. width:300px;
  2613. height:170px;
  2614. display:flex;
  2615. transition:none;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:18px;
  2620. }
  2621. #u41448 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 2px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u41448_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:300px;
  2634. height:170px;
  2635. }
  2636. #u41448_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. }
  2641. #u41449 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:1359px;
  2645. top:0px;
  2646. width:433px;
  2647. height:865px;
  2648. }
  2649. #u41450 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:433px;
  2655. height:865px;
  2656. display:flex;
  2657. transition:none;
  2658. }
  2659. #u41450 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u41450_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:433px;
  2672. height:865px;
  2673. }
  2674. #u41450_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u41451_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:375px;
  2686. height:40px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 1);
  2689. box-sizing:border-box;
  2690. border-width:1px;
  2691. border-style:solid;
  2692. border-color:rgba(215, 215, 215, 1);
  2693. border-left:0px;
  2694. border-top:0px;
  2695. border-right:0px;
  2696. border-radius:0px;
  2697. border-bottom-right-radius:0px;
  2698. border-bottom-left-radius:0px;
  2699. filter:drop-shadow(none);
  2700. transition:none;
  2701. }
  2702. #u41451 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:29px;
  2706. top:67px;
  2707. width:375px;
  2708. height:40px;
  2709. display:flex;
  2710. transition:none;
  2711. transform-origin:50% 50%;
  2712. }
  2713. #u41451 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u41451_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. visibility:hidden;
  2725. }
  2726. #u41452 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:0px;
  2732. height:0px;
  2733. }
  2734. #u41453_div {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:88px;
  2740. height:32px;
  2741. background:inherit;
  2742. background-color:rgba(255, 255, 255, 1);
  2743. box-sizing:border-box;
  2744. border-width:1px;
  2745. border-style:solid;
  2746. border-color:rgba(242, 242, 242, 1);
  2747. border-radius:33px;
  2748. filter:drop-shadow(none);
  2749. transition:none;
  2750. }
  2751. #u41453 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:309px;
  2755. top:71px;
  2756. width:88px;
  2757. height:32px;
  2758. display:flex;
  2759. transition:none;
  2760. transform-origin:50% 50%;
  2761. }
  2762. #u41453 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 2px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u41453_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u41454 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:0px;
  2781. height:0px;
  2782. }
  2783. #u41455 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:372px;
  2787. top:78px;
  2788. width:18px;
  2789. height:18px;
  2790. display:flex;
  2791. transition:none;
  2792. }
  2793. #u41455 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 2px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u41455_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:18px;
  2806. height:18px;
  2807. }
  2808. #u41455_text {
  2809. border-width:0px;
  2810. word-wrap:break-word;
  2811. text-transform:none;
  2812. visibility:hidden;
  2813. }
  2814. #u41456 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:378px;
  2818. top:84px;
  2819. width:6px;
  2820. height:6px;
  2821. display:flex;
  2822. transition:none;
  2823. }
  2824. #u41456 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 2px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u41456_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:6px;
  2837. height:6px;
  2838. }
  2839. #u41456_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u41457 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:0px;
  2851. height:0px;
  2852. }
  2853. #u41458 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:323px;
  2857. top:85px;
  2858. width:5px;
  2859. height:5px;
  2860. display:flex;
  2861. transition:none;
  2862. }
  2863. #u41458 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 2px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u41458_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:5px;
  2876. height:5px;
  2877. }
  2878. #u41458_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. visibility:hidden;
  2883. }
  2884. #u41459 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:339px;
  2888. top:85px;
  2889. width:5px;
  2890. height:5px;
  2891. display:flex;
  2892. transition:none;
  2893. }
  2894. #u41459 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u41459_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:5px;
  2907. height:5px;
  2908. }
  2909. #u41459_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. visibility:hidden;
  2914. }
  2915. #u41460 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:330px;
  2919. top:84px;
  2920. width:7px;
  2921. height:7px;
  2922. display:flex;
  2923. transition:none;
  2924. }
  2925. #u41460 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u41460_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:7px;
  2938. height:7px;
  2939. }
  2940. #u41460_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u41461 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:347px;
  2950. top:87px;
  2951. width:18px;
  2952. height:1px;
  2953. display:flex;
  2954. -webkit-transform:rotate(90deg);
  2955. -moz-transform:rotate(90deg);
  2956. -ms-transform:rotate(90deg);
  2957. transform:rotate(90deg);
  2958. transition:none;
  2959. }
  2960. #u41461 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:2px 2px 2px 2px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u41461_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:19px;
  2973. height:2px;
  2974. }
  2975. #u41461_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u41462 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:29px;
  2985. top:24px;
  2986. width:375px;
  2987. height:44px;
  2988. display:flex;
  2989. transition:none;
  2990. }
  2991. #u41462 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u41462_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:375px;
  3004. height:44px;
  3005. }
  3006. #u41462_text {
  3007. border-width:0px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. visibility:hidden;
  3011. }
  3012. #u41463_div {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:375px;
  3018. height:50px;
  3019. background:inherit;
  3020. background-color:rgba(255, 255, 255, 1);
  3021. box-sizing:border-box;
  3022. border-width:1px;
  3023. border-style:solid;
  3024. border-color:rgba(242, 242, 242, 1);
  3025. border-radius:26px;
  3026. border-top-left-radius:0px;
  3027. border-top-right-radius:0px;
  3028. filter:drop-shadow(none);
  3029. transition:none;
  3030. }
  3031. #u41463 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:29px;
  3035. top:788px;
  3036. width:375px;
  3037. height:50px;
  3038. display:flex;
  3039. transition:none;
  3040. transform-origin:50% 50%;
  3041. }
  3042. #u41463 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 2px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u41463_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u41464 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:0px;
  3061. height:0px;
  3062. }
  3063. #u41465 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:69px;
  3067. top:792px;
  3068. width:24px;
  3069. height:24px;
  3070. display:flex;
  3071. transition:none;
  3072. font-size:8px;
  3073. }
  3074. #u41465 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u41465_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:24px;
  3087. height:24px;
  3088. }
  3089. #u41465_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. }
  3094. #u41466_div {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:25px;
  3100. height:17px;
  3101. background:inherit;
  3102. background-color:rgba(255, 255, 255, 0);
  3103. border-radius:0px;
  3104. filter:drop-shadow(none);
  3105. transition:none;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:12px;
  3110. }
  3111. #u41466 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:69px;
  3115. top:817px;
  3116. width:25px;
  3117. height:17px;
  3118. display:flex;
  3119. transition:none;
  3120. transform-origin:50% 50%;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. }
  3126. #u41466 .text {
  3127. position:absolute;
  3128. align-self:flex-start;
  3129. padding:0px 0px 0px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u41466_text {
  3134. border-width:0px;
  3135. white-space:nowrap;
  3136. text-transform:none;
  3137. }
  3138. #u41467 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:0px;
  3144. height:0px;
  3145. }
  3146. #u41468 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:339px;
  3150. top:794px;
  3151. width:24px;
  3152. height:24px;
  3153. display:flex;
  3154. transition:none;
  3155. font-size:8px;
  3156. }
  3157. #u41468 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u41468_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:24px;
  3170. height:24px;
  3171. }
  3172. #u41468_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. }
  3177. #u41469_div {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:25px;
  3183. height:17px;
  3184. background:inherit;
  3185. background-color:rgba(255, 255, 255, 0);
  3186. border-radius:0px;
  3187. filter:drop-shadow(none);
  3188. transition:none;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. }
  3194. #u41469 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:339px;
  3198. top:819px;
  3199. width:25px;
  3200. height:17px;
  3201. display:flex;
  3202. transition:none;
  3203. transform-origin:50% 50%;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. }
  3209. #u41469 .text {
  3210. position:absolute;
  3211. align-self:flex-start;
  3212. padding:0px 0px 0px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u41469_text {
  3217. border-width:0px;
  3218. white-space:nowrap;
  3219. text-transform:none;
  3220. }
  3221. #u41470_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:375px;
  3227. height:681px;
  3228. background:inherit;
  3229. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3230. border-radius:0px;
  3231. filter:drop-shadow(none);
  3232. transition:none;
  3233. }
  3234. #u41470 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:29px;
  3238. top:107px;
  3239. width:375px;
  3240. height:681px;
  3241. display:flex;
  3242. transition:none;
  3243. transform-origin:50% 50%;
  3244. }
  3245. #u41470 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 2px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u41470_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. visibility:hidden;
  3257. }
  3258. #u41471 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:0px;
  3264. height:0px;
  3265. }
  3266. #u41472 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:251px;
  3270. top:792px;
  3271. width:24px;
  3272. height:24px;
  3273. display:flex;
  3274. transition:none;
  3275. font-size:8px;
  3276. }
  3277. #u41472 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 2px 2px 2px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u41472_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:24px;
  3290. height:24px;
  3291. }
  3292. #u41472_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u41473_div {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:37px;
  3303. height:17px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border-radius:0px;
  3307. filter:drop-shadow(none);
  3308. transition:none;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:12px;
  3313. }
  3314. #u41473 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:245px;
  3318. top:817px;
  3319. width:37px;
  3320. height:17px;
  3321. display:flex;
  3322. transition:none;
  3323. transform-origin:50% 50%;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. }
  3329. #u41473 .text {
  3330. position:absolute;
  3331. align-self:flex-start;
  3332. padding:0px 0px 0px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u41473_text {
  3337. border-width:0px;
  3338. white-space:nowrap;
  3339. text-transform:none;
  3340. }
  3341. #u41474 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:0px;
  3347. height:0px;
  3348. }
  3349. #u41475 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:157px;
  3353. top:792px;
  3354. width:24px;
  3355. height:24px;
  3356. display:flex;
  3357. transition:none;
  3358. font-size:8px;
  3359. }
  3360. #u41475 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u41475_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:24px;
  3373. height:24px;
  3374. }
  3375. #u41475_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. }
  3380. #u41476_div {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:37px;
  3386. height:17px;
  3387. background:inherit;
  3388. background-color:rgba(255, 255, 255, 0);
  3389. border-radius:0px;
  3390. filter:drop-shadow(none);
  3391. transition:none;
  3392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. font-size:12px;
  3396. }
  3397. #u41476 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:151px;
  3401. top:817px;
  3402. width:37px;
  3403. height:17px;
  3404. display:flex;
  3405. transition:none;
  3406. transform-origin:50% 50%;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. }
  3412. #u41476 .text {
  3413. position:absolute;
  3414. align-self:flex-start;
  3415. padding:0px 0px 0px 0px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u41476_text {
  3420. border-width:0px;
  3421. white-space:nowrap;
  3422. text-transform:none;
  3423. }
  3424. #u41477_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:375px;
  3430. height:732px;
  3431. background:inherit;
  3432. background-color:rgba(244, 244, 244, 1);
  3433. box-sizing:border-box;
  3434. border-width:1px;
  3435. border-style:solid;
  3436. border-color:rgba(242, 242, 242, 1);
  3437. border-radius:26px;
  3438. border-top-left-radius:0px;
  3439. border-top-right-radius:0px;
  3440. filter:drop-shadow(none);
  3441. transition:none;
  3442. }
  3443. #u41477 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:1388px;
  3447. top:107px;
  3448. width:375px;
  3449. height:732px;
  3450. display:flex;
  3451. transition:none;
  3452. transform-origin:50% 50%;
  3453. }
  3454. #u41477 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 2px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u41477_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u41478_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:375px;
  3473. height:732px;
  3474. background:inherit;
  3475. background-color:rgba(242, 242, 242, 1);
  3476. box-sizing:border-box;
  3477. border-width:1px;
  3478. border-style:solid;
  3479. border-color:rgba(242, 242, 242, 1);
  3480. border-radius:26px;
  3481. border-top-left-radius:0px;
  3482. border-top-right-radius:0px;
  3483. filter:drop-shadow(none);
  3484. transition:none;
  3485. }
  3486. #u41478 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:1388px;
  3490. top:107px;
  3491. width:375px;
  3492. height:732px;
  3493. display:flex;
  3494. transition:none;
  3495. transform-origin:50% 50%;
  3496. }
  3497. #u41478 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u41478_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u41479 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:0px;
  3516. height:0px;
  3517. }
  3518. #u41480_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:375px;
  3524. height:40px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 1);
  3527. border-left:0px;
  3528. border-top:0px;
  3529. border-right:0px;
  3530. border-radius:0px;
  3531. border-bottom-right-radius:0px;
  3532. border-bottom-left-radius:0px;
  3533. filter:drop-shadow(none);
  3534. transition:none;
  3535. }
  3536. #u41480 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:1388px;
  3540. top:67px;
  3541. width:375px;
  3542. height:40px;
  3543. display:flex;
  3544. transition:none;
  3545. transform-origin:50% 50%;
  3546. }
  3547. #u41480 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 2px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u41480_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u41481 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:0px;
  3566. height:0px;
  3567. }
  3568. #u41482_div {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:88px;
  3574. height:32px;
  3575. background:inherit;
  3576. background-color:rgba(255, 255, 255, 1);
  3577. box-sizing:border-box;
  3578. border-width:1px;
  3579. border-style:solid;
  3580. border-color:rgba(242, 242, 242, 1);
  3581. border-radius:33px;
  3582. filter:drop-shadow(none);
  3583. transition:none;
  3584. }
  3585. #u41482 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:1665px;
  3589. top:69px;
  3590. width:88px;
  3591. height:32px;
  3592. display:flex;
  3593. transition:none;
  3594. transform-origin:50% 50%;
  3595. }
  3596. #u41482 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u41482_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u41483 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:0px;
  3615. height:0px;
  3616. }
  3617. #u41484 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:1728px;
  3621. top:76px;
  3622. width:18px;
  3623. height:18px;
  3624. display:flex;
  3625. transition:none;
  3626. }
  3627. #u41484 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 2px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u41484_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:18px;
  3640. height:18px;
  3641. }
  3642. #u41484_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u41485 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:1734px;
  3652. top:82px;
  3653. width:6px;
  3654. height:6px;
  3655. display:flex;
  3656. transition:none;
  3657. }
  3658. #u41485 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u41485_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:6px;
  3671. height:6px;
  3672. }
  3673. #u41485_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u41486 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:0px;
  3685. height:0px;
  3686. }
  3687. #u41487 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:1679px;
  3691. top:83px;
  3692. width:5px;
  3693. height:5px;
  3694. display:flex;
  3695. transition:none;
  3696. }
  3697. #u41487 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 2px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u41487_img {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:5px;
  3710. height:5px;
  3711. }
  3712. #u41487_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u41488 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:1695px;
  3722. top:83px;
  3723. width:5px;
  3724. height:5px;
  3725. display:flex;
  3726. transition:none;
  3727. }
  3728. #u41488 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:2px 2px 2px 2px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u41488_img {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:5px;
  3741. height:5px;
  3742. }
  3743. #u41488_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u41489 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:1686px;
  3753. top:82px;
  3754. width:7px;
  3755. height:7px;
  3756. display:flex;
  3757. transition:none;
  3758. }
  3759. #u41489 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 2px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u41489_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:7px;
  3772. height:7px;
  3773. }
  3774. #u41489_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u41490 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:1703px;
  3784. top:85px;
  3785. width:18px;
  3786. height:1px;
  3787. display:flex;
  3788. -webkit-transform:rotate(90deg);
  3789. -moz-transform:rotate(90deg);
  3790. -ms-transform:rotate(90deg);
  3791. transform:rotate(90deg);
  3792. transition:none;
  3793. }
  3794. #u41490 .text {
  3795. position:absolute;
  3796. align-self:center;
  3797. padding:2px 2px 2px 2px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u41490_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:19px;
  3807. height:2px;
  3808. }
  3809. #u41490_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u41491_div {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:12px;
  3821. height:12px;
  3822. background:inherit;
  3823. background-color:rgba(255, 255, 255, 0);
  3824. box-sizing:border-box;
  3825. border-width:2px;
  3826. border-style:solid;
  3827. border-color:rgba(51, 51, 51, 1);
  3828. border-right:0px;
  3829. border-bottom:0px;
  3830. border-radius:0px;
  3831. border-top-right-radius:0px;
  3832. border-bottom-left-radius:0px;
  3833. filter:drop-shadow(none);
  3834. transition:none;
  3835. }
  3836. #u41491 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:1404px;
  3840. top:79px;
  3841. width:12px;
  3842. height:12px;
  3843. display:flex;
  3844. -webkit-transform:rotate(315deg);
  3845. -moz-transform:rotate(315deg);
  3846. -ms-transform:rotate(315deg);
  3847. transform:rotate(315deg);
  3848. transition:none;
  3849. transform-origin:50% 50%;
  3850. }
  3851. #u41491 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 2px 2px 2px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u41491_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u41492_div {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:109px;
  3870. height:25px;
  3871. background:inherit;
  3872. background-color:rgba(255, 255, 255, 0);
  3873. border-radius:0px;
  3874. filter:drop-shadow(none);
  3875. transition:none;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:18px;
  3880. }
  3881. #u41492 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:1418px;
  3885. top:72px;
  3886. width:109px;
  3887. height:25px;
  3888. display:flex;
  3889. transition:none;
  3890. transform-origin:50% 50%;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:18px;
  3895. }
  3896. #u41492 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u41492_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u41493_div {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:375px;
  3914. height:833px;
  3915. background:inherit;
  3916. background-color:rgba(255, 255, 255, 0.996078431372549);
  3917. border-radius:0px;
  3918. filter:drop-shadow(none);
  3919. transition:none;
  3920. }
  3921. #u41493 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:1388px;
  3925. top:159px;
  3926. width:375px;
  3927. height:833px;
  3928. display:flex;
  3929. transition:none;
  3930. transform-origin:50% 50%;
  3931. }
  3932. #u41493 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u41493_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u41494_div {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:73px;
  3951. height:25px;
  3952. background:inherit;
  3953. background-color:rgba(255, 255, 255, 0);
  3954. border-radius:0px;
  3955. filter:drop-shadow(none);
  3956. transition:none;
  3957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3958. font-weight:500;
  3959. font-style:normal;
  3960. font-size:18px;
  3961. }
  3962. #u41494 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:1408px;
  3966. top:178px;
  3967. width:73px;
  3968. height:25px;
  3969. display:flex;
  3970. transition:none;
  3971. transform-origin:50% 50%;
  3972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3973. font-weight:500;
  3974. font-style:normal;
  3975. font-size:18px;
  3976. }
  3977. #u41494 .text {
  3978. position:absolute;
  3979. align-self:flex-start;
  3980. padding:0px 0px 0px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u41494_text {
  3985. border-width:0px;
  3986. white-space:nowrap;
  3987. text-transform:none;
  3988. }
  3989. #u41495 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:0px;
  3995. height:0px;
  3996. }
  3997. #u41496_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:375px;
  4003. height:40px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 1);
  4006. border-left:0px;
  4007. border-top:0px;
  4008. border-right:0px;
  4009. border-radius:0px;
  4010. border-bottom-right-radius:0px;
  4011. border-bottom-left-radius:0px;
  4012. filter:drop-shadow(none);
  4013. transition:none;
  4014. }
  4015. #u41496 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:1841px;
  4019. top:67px;
  4020. width:375px;
  4021. height:40px;
  4022. display:flex;
  4023. transition:none;
  4024. transform-origin:50% 50%;
  4025. }
  4026. #u41496 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 2px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u41496_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u41497 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:0px;
  4045. height:0px;
  4046. }
  4047. #u41498_div {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:88px;
  4053. height:32px;
  4054. background:inherit;
  4055. background-color:rgba(255, 255, 255, 1);
  4056. box-sizing:border-box;
  4057. border-width:1px;
  4058. border-style:solid;
  4059. border-color:rgba(242, 242, 242, 1);
  4060. border-radius:33px;
  4061. filter:drop-shadow(none);
  4062. transition:none;
  4063. }
  4064. #u41498 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:2118px;
  4068. top:69px;
  4069. width:88px;
  4070. height:32px;
  4071. display:flex;
  4072. transition:none;
  4073. transform-origin:50% 50%;
  4074. }
  4075. #u41498 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 2px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u41498_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u41499 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:0px;
  4094. height:0px;
  4095. }
  4096. #u41500 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:2181px;
  4100. top:76px;
  4101. width:18px;
  4102. height:18px;
  4103. display:flex;
  4104. transition:none;
  4105. }
  4106. #u41500 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u41500_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:18px;
  4119. height:18px;
  4120. }
  4121. #u41500_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u41501 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:2187px;
  4131. top:82px;
  4132. width:6px;
  4133. height:6px;
  4134. display:flex;
  4135. transition:none;
  4136. }
  4137. #u41501 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 2px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u41501_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:6px;
  4150. height:6px;
  4151. }
  4152. #u41501_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u41502 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:0px;
  4164. height:0px;
  4165. }
  4166. #u41503 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:2132px;
  4170. top:83px;
  4171. width:5px;
  4172. height:5px;
  4173. display:flex;
  4174. transition:none;
  4175. }
  4176. #u41503 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u41503_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:5px;
  4189. height:5px;
  4190. }
  4191. #u41503_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u41504 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:2148px;
  4201. top:83px;
  4202. width:5px;
  4203. height:5px;
  4204. display:flex;
  4205. transition:none;
  4206. }
  4207. #u41504 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 2px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u41504_img {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:5px;
  4220. height:5px;
  4221. }
  4222. #u41504_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u41505 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:2139px;
  4232. top:82px;
  4233. width:7px;
  4234. height:7px;
  4235. display:flex;
  4236. transition:none;
  4237. }
  4238. #u41505 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u41505_img {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:7px;
  4251. height:7px;
  4252. }
  4253. #u41505_text {
  4254. border-width:0px;
  4255. word-wrap:break-word;
  4256. text-transform:none;
  4257. visibility:hidden;
  4258. }
  4259. #u41506 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:2156px;
  4263. top:85px;
  4264. width:18px;
  4265. height:1px;
  4266. display:flex;
  4267. -webkit-transform:rotate(90deg);
  4268. -moz-transform:rotate(90deg);
  4269. -ms-transform:rotate(90deg);
  4270. transform:rotate(90deg);
  4271. transition:none;
  4272. }
  4273. #u41506 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 2px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u41506_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:19px;
  4286. height:2px;
  4287. }
  4288. #u41506_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u41507_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:12px;
  4300. height:12px;
  4301. background:inherit;
  4302. background-color:rgba(255, 255, 255, 0);
  4303. box-sizing:border-box;
  4304. border-width:2px;
  4305. border-style:solid;
  4306. border-color:rgba(51, 51, 51, 1);
  4307. border-right:0px;
  4308. border-bottom:0px;
  4309. border-radius:0px;
  4310. border-top-right-radius:0px;
  4311. border-bottom-left-radius:0px;
  4312. filter:drop-shadow(none);
  4313. transition:none;
  4314. }
  4315. #u41507 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1857px;
  4319. top:79px;
  4320. width:12px;
  4321. height:12px;
  4322. display:flex;
  4323. -webkit-transform:rotate(315deg);
  4324. -moz-transform:rotate(315deg);
  4325. -ms-transform:rotate(315deg);
  4326. transform:rotate(315deg);
  4327. transition:none;
  4328. transform-origin:50% 50%;
  4329. }
  4330. #u41507 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 2px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u41507_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u41508_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:73px;
  4349. height:25px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 0);
  4352. border-radius:0px;
  4353. filter:drop-shadow(none);
  4354. transition:none;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:18px;
  4359. }
  4360. #u41508 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:1871px;
  4364. top:72px;
  4365. width:73px;
  4366. height:25px;
  4367. display:flex;
  4368. transition:none;
  4369. transform-origin:50% 50%;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:18px;
  4374. }
  4375. #u41508 .text {
  4376. position:absolute;
  4377. align-self:flex-start;
  4378. padding:0px 0px 0px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u41508_text {
  4383. border-width:0px;
  4384. white-space:nowrap;
  4385. text-transform:none;
  4386. }
  4387. #u41509 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:1841px;
  4391. top:24px;
  4392. width:375px;
  4393. height:44px;
  4394. display:flex;
  4395. transition:none;
  4396. }
  4397. #u41509 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u41509_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:375px;
  4410. height:44px;
  4411. }
  4412. #u41509_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u41510 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:57px;
  4422. top:473px;
  4423. width:30px;
  4424. height:30px;
  4425. display:flex;
  4426. transition:none;
  4427. color:#FFFFFF;
  4428. }
  4429. #u41510 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:2px 2px 2px 2px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u41510_img {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:30px;
  4442. height:30px;
  4443. }
  4444. #u41510_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. }
  4449. #u41511_div {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:73px;
  4455. height:25px;
  4456. background:inherit;
  4457. background-color:rgba(255, 255, 255, 0);
  4458. border-left:0px;
  4459. border-top:0px;
  4460. border-right:0px;
  4461. border-radius:0px;
  4462. border-bottom-right-radius:0px;
  4463. border-bottom-left-radius:0px;
  4464. filter:drop-shadow(none);
  4465. transition:none;
  4466. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4467. font-weight:500;
  4468. font-style:normal;
  4469. font-size:18px;
  4470. color:#5C93FF;
  4471. }
  4472. #u41511 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:95px;
  4476. top:473px;
  4477. width:73px;
  4478. height:25px;
  4479. display:flex;
  4480. transition:none;
  4481. transform-origin:50% 50%;
  4482. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4483. font-weight:500;
  4484. font-style:normal;
  4485. font-size:18px;
  4486. color:#5C93FF;
  4487. }
  4488. #u41511 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:0px 0px 0px 0px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u41511_text {
  4496. border-width:0px;
  4497. white-space:nowrap;
  4498. text-transform:none;
  4499. }
  4500. #u41512_div {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:286px;
  4506. height:34px;
  4507. background:inherit;
  4508. background-color:rgba(255, 255, 255, 0);
  4509. border-left:0px;
  4510. border-top:0px;
  4511. border-right:0px;
  4512. border-radius:0px;
  4513. border-bottom-right-radius:0px;
  4514. border-bottom-left-radius:0px;
  4515. filter:drop-shadow(none);
  4516. transition:none;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. }
  4522. #u41512 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:95px;
  4526. top:503px;
  4527. width:286px;
  4528. height:34px;
  4529. display:flex;
  4530. transition:none;
  4531. transform-origin:50% 50%;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. }
  4537. #u41512 .text {
  4538. position:absolute;
  4539. align-self:flex-start;
  4540. padding:0px 0px 0px 0px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u41512_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. }
  4549. #u41513 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:453px;
  4553. top:0px;
  4554. width:433px;
  4555. height:865px;
  4556. }
  4557. #u41514 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:433px;
  4563. height:865px;
  4564. display:flex;
  4565. transition:none;
  4566. }
  4567. #u41514 .text {
  4568. position:absolute;
  4569. align-self:center;
  4570. padding:2px 2px 2px 2px;
  4571. box-sizing:border-box;
  4572. width:100%;
  4573. }
  4574. #u41514_img {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:433px;
  4580. height:865px;
  4581. }
  4582. #u41514_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u41515_div {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:375px;
  4594. height:40px;
  4595. background:inherit;
  4596. background-color:rgba(255, 255, 255, 1);
  4597. box-sizing:border-box;
  4598. border-width:1px;
  4599. border-style:solid;
  4600. border-color:rgba(215, 215, 215, 1);
  4601. border-left:0px;
  4602. border-top:0px;
  4603. border-right:0px;
  4604. border-radius:0px;
  4605. border-bottom-right-radius:0px;
  4606. border-bottom-left-radius:0px;
  4607. filter:drop-shadow(none);
  4608. transition:none;
  4609. }
  4610. #u41515 {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:29px;
  4614. top:67px;
  4615. width:375px;
  4616. height:40px;
  4617. display:flex;
  4618. transition:none;
  4619. transform-origin:50% 50%;
  4620. }
  4621. #u41515 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 2px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u41515_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u41516 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:0px;
  4640. height:0px;
  4641. }
  4642. #u41517_div {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:88px;
  4648. height:32px;
  4649. background:inherit;
  4650. background-color:rgba(255, 255, 255, 1);
  4651. box-sizing:border-box;
  4652. border-width:1px;
  4653. border-style:solid;
  4654. border-color:rgba(242, 242, 242, 1);
  4655. border-radius:33px;
  4656. filter:drop-shadow(none);
  4657. transition:none;
  4658. }
  4659. #u41517 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:309px;
  4663. top:71px;
  4664. width:88px;
  4665. height:32px;
  4666. display:flex;
  4667. transition:none;
  4668. transform-origin:50% 50%;
  4669. }
  4670. #u41517 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u41517_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u41518 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:0px;
  4689. height:0px;
  4690. }
  4691. #u41519 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:372px;
  4695. top:78px;
  4696. width:18px;
  4697. height:18px;
  4698. display:flex;
  4699. transition:none;
  4700. }
  4701. #u41519 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 2px 2px 2px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u41519_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:18px;
  4714. height:18px;
  4715. }
  4716. #u41519_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u41520 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:378px;
  4726. top:84px;
  4727. width:6px;
  4728. height:6px;
  4729. display:flex;
  4730. transition:none;
  4731. }
  4732. #u41520 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 2px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u41520_img {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:6px;
  4745. height:6px;
  4746. }
  4747. #u41520_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u41521 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:0px;
  4759. height:0px;
  4760. }
  4761. #u41522 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:323px;
  4765. top:85px;
  4766. width:5px;
  4767. height:5px;
  4768. display:flex;
  4769. transition:none;
  4770. }
  4771. #u41522 .text {
  4772. position:absolute;
  4773. align-self:center;
  4774. padding:2px 2px 2px 2px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u41522_img {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:5px;
  4784. height:5px;
  4785. }
  4786. #u41522_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u41523 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:339px;
  4796. top:85px;
  4797. width:5px;
  4798. height:5px;
  4799. display:flex;
  4800. transition:none;
  4801. }
  4802. #u41523 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 2px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u41523_img {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:5px;
  4815. height:5px;
  4816. }
  4817. #u41523_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u41524 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:330px;
  4827. top:84px;
  4828. width:7px;
  4829. height:7px;
  4830. display:flex;
  4831. transition:none;
  4832. }
  4833. #u41524 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u41524_img {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:7px;
  4846. height:7px;
  4847. }
  4848. #u41524_text {
  4849. border-width:0px;
  4850. word-wrap:break-word;
  4851. text-transform:none;
  4852. visibility:hidden;
  4853. }
  4854. #u41525 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:347px;
  4858. top:87px;
  4859. width:18px;
  4860. height:1px;
  4861. display:flex;
  4862. -webkit-transform:rotate(90deg);
  4863. -moz-transform:rotate(90deg);
  4864. -ms-transform:rotate(90deg);
  4865. transform:rotate(90deg);
  4866. transition:none;
  4867. }
  4868. #u41525 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:2px 2px 2px 2px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u41525_img {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:19px;
  4881. height:2px;
  4882. }
  4883. #u41525_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u41526 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:29px;
  4893. top:24px;
  4894. width:375px;
  4895. height:44px;
  4896. display:flex;
  4897. transition:none;
  4898. }
  4899. #u41526 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 2px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u41526_img {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:375px;
  4912. height:44px;
  4913. }
  4914. #u41526_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u41527_div {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:375px;
  4926. height:50px;
  4927. background:inherit;
  4928. background-color:rgba(255, 255, 255, 1);
  4929. box-sizing:border-box;
  4930. border-width:1px;
  4931. border-style:solid;
  4932. border-color:rgba(242, 242, 242, 1);
  4933. border-radius:26px;
  4934. border-top-left-radius:0px;
  4935. border-top-right-radius:0px;
  4936. filter:drop-shadow(none);
  4937. transition:none;
  4938. }
  4939. #u41527 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:29px;
  4943. top:788px;
  4944. width:375px;
  4945. height:50px;
  4946. display:flex;
  4947. transition:none;
  4948. transform-origin:50% 50%;
  4949. }
  4950. #u41527 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u41527_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u41528 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:0px;
  4969. height:0px;
  4970. }
  4971. #u41529 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:69px;
  4975. top:792px;
  4976. width:24px;
  4977. height:24px;
  4978. display:flex;
  4979. transition:none;
  4980. font-size:8px;
  4981. }
  4982. #u41529 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 2px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u41529_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:24px;
  4995. height:24px;
  4996. }
  4997. #u41529_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. }
  5002. #u41530_div {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:25px;
  5008. height:17px;
  5009. background:inherit;
  5010. background-color:rgba(255, 255, 255, 0);
  5011. border-radius:0px;
  5012. filter:drop-shadow(none);
  5013. transition:none;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. }
  5019. #u41530 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:69px;
  5023. top:817px;
  5024. width:25px;
  5025. height:17px;
  5026. display:flex;
  5027. transition:none;
  5028. transform-origin:50% 50%;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:12px;
  5033. }
  5034. #u41530 .text {
  5035. position:absolute;
  5036. align-self:flex-start;
  5037. padding:0px 0px 0px 0px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u41530_text {
  5042. border-width:0px;
  5043. white-space:nowrap;
  5044. text-transform:none;
  5045. }
  5046. #u41531 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:0px;
  5052. height:0px;
  5053. }
  5054. #u41532 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:339px;
  5058. top:794px;
  5059. width:24px;
  5060. height:24px;
  5061. display:flex;
  5062. transition:none;
  5063. font-size:8px;
  5064. }
  5065. #u41532 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 2px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u41532_img {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:24px;
  5078. height:24px;
  5079. }
  5080. #u41532_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. }
  5085. #u41533_div {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:25px;
  5091. height:17px;
  5092. background:inherit;
  5093. background-color:rgba(255, 255, 255, 0);
  5094. border-radius:0px;
  5095. filter:drop-shadow(none);
  5096. transition:none;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:12px;
  5101. }
  5102. #u41533 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:339px;
  5106. top:819px;
  5107. width:25px;
  5108. height:17px;
  5109. display:flex;
  5110. transition:none;
  5111. transform-origin:50% 50%;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:12px;
  5116. }
  5117. #u41533 .text {
  5118. position:absolute;
  5119. align-self:flex-start;
  5120. padding:0px 0px 0px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u41533_text {
  5125. border-width:0px;
  5126. white-space:nowrap;
  5127. text-transform:none;
  5128. }
  5129. #u41534_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:375px;
  5135. height:681px;
  5136. background:inherit;
  5137. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5138. border-radius:0px;
  5139. filter:drop-shadow(none);
  5140. transition:none;
  5141. }
  5142. #u41534 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:29px;
  5146. top:107px;
  5147. width:375px;
  5148. height:681px;
  5149. display:flex;
  5150. transition:none;
  5151. transform-origin:50% 50%;
  5152. }
  5153. #u41534 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u41534_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u41535 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:0px;
  5172. height:0px;
  5173. }
  5174. #u41536 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:251px;
  5178. top:792px;
  5179. width:24px;
  5180. height:24px;
  5181. display:flex;
  5182. transition:none;
  5183. font-size:8px;
  5184. }
  5185. #u41536 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 2px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u41536_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:24px;
  5198. height:24px;
  5199. }
  5200. #u41536_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. }
  5205. #u41537_div {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:37px;
  5211. height:17px;
  5212. background:inherit;
  5213. background-color:rgba(255, 255, 255, 0);
  5214. border-radius:0px;
  5215. filter:drop-shadow(none);
  5216. transition:none;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:12px;
  5221. }
  5222. #u41537 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:245px;
  5226. top:817px;
  5227. width:37px;
  5228. height:17px;
  5229. display:flex;
  5230. transition:none;
  5231. transform-origin:50% 50%;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:12px;
  5236. }
  5237. #u41537 .text {
  5238. position:absolute;
  5239. align-self:flex-start;
  5240. padding:0px 0px 0px 0px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u41537_text {
  5245. border-width:0px;
  5246. white-space:nowrap;
  5247. text-transform:none;
  5248. }
  5249. #u41538 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:0px;
  5255. height:0px;
  5256. }
  5257. #u41539 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:157px;
  5261. top:792px;
  5262. width:24px;
  5263. height:24px;
  5264. display:flex;
  5265. transition:none;
  5266. font-size:8px;
  5267. }
  5268. #u41539 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 2px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u41539_img {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:24px;
  5281. height:24px;
  5282. }
  5283. #u41539_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. }
  5288. #u41540_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:37px;
  5294. height:17px;
  5295. background:inherit;
  5296. background-color:rgba(255, 255, 255, 0);
  5297. border-radius:0px;
  5298. filter:drop-shadow(none);
  5299. transition:none;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. }
  5305. #u41540 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:151px;
  5309. top:817px;
  5310. width:37px;
  5311. height:17px;
  5312. display:flex;
  5313. transition:none;
  5314. transform-origin:50% 50%;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:12px;
  5319. }
  5320. #u41540 .text {
  5321. position:absolute;
  5322. align-self:flex-start;
  5323. padding:0px 0px 0px 0px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u41540_text {
  5328. border-width:0px;
  5329. white-space:nowrap;
  5330. text-transform:none;
  5331. }
  5332. #u41541_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:375px;
  5338. height:732px;
  5339. background:inherit;
  5340. background-color:rgba(244, 244, 244, 1);
  5341. box-sizing:border-box;
  5342. border-width:1px;
  5343. border-style:solid;
  5344. border-color:rgba(242, 242, 242, 1);
  5345. border-radius:26px;
  5346. border-top-left-radius:0px;
  5347. border-top-right-radius:0px;
  5348. filter:drop-shadow(none);
  5349. transition:none;
  5350. }
  5351. #u41541 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:482px;
  5355. top:107px;
  5356. width:375px;
  5357. height:732px;
  5358. display:flex;
  5359. transition:none;
  5360. transform-origin:50% 50%;
  5361. }
  5362. #u41541 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 2px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u41541_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. visibility:hidden;
  5374. }
  5375. #u41542_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:375px;
  5381. height:732px;
  5382. background:inherit;
  5383. background-color:rgba(242, 242, 242, 1);
  5384. box-sizing:border-box;
  5385. border-width:1px;
  5386. border-style:solid;
  5387. border-color:rgba(242, 242, 242, 1);
  5388. border-radius:26px;
  5389. border-top-left-radius:0px;
  5390. border-top-right-radius:0px;
  5391. filter:drop-shadow(none);
  5392. transition:none;
  5393. }
  5394. #u41542 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:482px;
  5398. top:107px;
  5399. width:375px;
  5400. height:732px;
  5401. display:flex;
  5402. transition:none;
  5403. transform-origin:50% 50%;
  5404. }
  5405. #u41542 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u41542_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u41543 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:0px;
  5424. height:0px;
  5425. }
  5426. #u41544_div {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:375px;
  5432. height:40px;
  5433. background:inherit;
  5434. background-color:rgba(255, 255, 255, 1);
  5435. border-left:0px;
  5436. border-top:0px;
  5437. border-right:0px;
  5438. border-radius:0px;
  5439. border-bottom-right-radius:0px;
  5440. border-bottom-left-radius:0px;
  5441. filter:drop-shadow(none);
  5442. transition:none;
  5443. }
  5444. #u41544 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:482px;
  5448. top:67px;
  5449. width:375px;
  5450. height:40px;
  5451. display:flex;
  5452. transition:none;
  5453. transform-origin:50% 50%;
  5454. }
  5455. #u41544 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 2px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u41544_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u41545 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:0px;
  5474. height:0px;
  5475. }
  5476. #u41546_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:88px;
  5482. height:32px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 1);
  5485. box-sizing:border-box;
  5486. border-width:1px;
  5487. border-style:solid;
  5488. border-color:rgba(242, 242, 242, 1);
  5489. border-radius:33px;
  5490. filter:drop-shadow(none);
  5491. transition:none;
  5492. }
  5493. #u41546 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:759px;
  5497. top:69px;
  5498. width:88px;
  5499. height:32px;
  5500. display:flex;
  5501. transition:none;
  5502. transform-origin:50% 50%;
  5503. }
  5504. #u41546 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u41546_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. visibility:hidden;
  5516. }
  5517. #u41547 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:0px;
  5523. height:0px;
  5524. }
  5525. #u41548 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:822px;
  5529. top:76px;
  5530. width:18px;
  5531. height:18px;
  5532. display:flex;
  5533. transition:none;
  5534. }
  5535. #u41548 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 2px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u41548_img {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:18px;
  5548. height:18px;
  5549. }
  5550. #u41548_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u41549 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:828px;
  5560. top:82px;
  5561. width:6px;
  5562. height:6px;
  5563. display:flex;
  5564. transition:none;
  5565. }
  5566. #u41549 .text {
  5567. position:absolute;
  5568. align-self:center;
  5569. padding:2px 2px 2px 2px;
  5570. box-sizing:border-box;
  5571. width:100%;
  5572. }
  5573. #u41549_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:6px;
  5579. height:6px;
  5580. }
  5581. #u41549_text {
  5582. border-width:0px;
  5583. word-wrap:break-word;
  5584. text-transform:none;
  5585. visibility:hidden;
  5586. }
  5587. #u41550 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:0px;
  5593. height:0px;
  5594. }
  5595. #u41551 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:773px;
  5599. top:83px;
  5600. width:5px;
  5601. height:5px;
  5602. display:flex;
  5603. transition:none;
  5604. }
  5605. #u41551 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 2px 2px 2px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u41551_img {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:5px;
  5618. height:5px;
  5619. }
  5620. #u41551_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u41552 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:789px;
  5630. top:83px;
  5631. width:5px;
  5632. height:5px;
  5633. display:flex;
  5634. transition:none;
  5635. }
  5636. #u41552 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 2px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u41552_img {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:5px;
  5649. height:5px;
  5650. }
  5651. #u41552_text {
  5652. border-width:0px;
  5653. word-wrap:break-word;
  5654. text-transform:none;
  5655. visibility:hidden;
  5656. }
  5657. #u41553 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:780px;
  5661. top:82px;
  5662. width:7px;
  5663. height:7px;
  5664. display:flex;
  5665. transition:none;
  5666. }
  5667. #u41553 .text {
  5668. position:absolute;
  5669. align-self:center;
  5670. padding:2px 2px 2px 2px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u41553_img {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:7px;
  5680. height:7px;
  5681. }
  5682. #u41553_text {
  5683. border-width:0px;
  5684. word-wrap:break-word;
  5685. text-transform:none;
  5686. visibility:hidden;
  5687. }
  5688. #u41554 {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:797px;
  5692. top:85px;
  5693. width:18px;
  5694. height:1px;
  5695. display:flex;
  5696. -webkit-transform:rotate(90deg);
  5697. -moz-transform:rotate(90deg);
  5698. -ms-transform:rotate(90deg);
  5699. transform:rotate(90deg);
  5700. transition:none;
  5701. }
  5702. #u41554 .text {
  5703. position:absolute;
  5704. align-self:center;
  5705. padding:2px 2px 2px 2px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u41554_img {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:19px;
  5715. height:2px;
  5716. }
  5717. #u41554_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u41555_div {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:12px;
  5729. height:12px;
  5730. background:inherit;
  5731. background-color:rgba(255, 255, 255, 0);
  5732. box-sizing:border-box;
  5733. border-width:2px;
  5734. border-style:solid;
  5735. border-color:rgba(51, 51, 51, 1);
  5736. border-right:0px;
  5737. border-bottom:0px;
  5738. border-radius:0px;
  5739. border-top-right-radius:0px;
  5740. border-bottom-left-radius:0px;
  5741. filter:drop-shadow(none);
  5742. transition:none;
  5743. }
  5744. #u41555 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:498px;
  5748. top:79px;
  5749. width:12px;
  5750. height:12px;
  5751. display:flex;
  5752. -webkit-transform:rotate(315deg);
  5753. -moz-transform:rotate(315deg);
  5754. -ms-transform:rotate(315deg);
  5755. transform:rotate(315deg);
  5756. transition:none;
  5757. transform-origin:50% 50%;
  5758. }
  5759. #u41555 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u41555_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u41556_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:109px;
  5778. height:25px;
  5779. background:inherit;
  5780. background-color:rgba(255, 255, 255, 0);
  5781. border-radius:0px;
  5782. filter:drop-shadow(none);
  5783. transition:none;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:18px;
  5788. }
  5789. #u41556 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:512px;
  5793. top:72px;
  5794. width:109px;
  5795. height:25px;
  5796. display:flex;
  5797. transition:none;
  5798. transform-origin:50% 50%;
  5799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:18px;
  5803. }
  5804. #u41556 .text {
  5805. position:absolute;
  5806. align-self:flex-start;
  5807. padding:0px 0px 0px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u41556_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u41557_div {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:375px;
  5822. height:58px;
  5823. background:inherit;
  5824. background-color:rgba(24, 144, 255, 1);
  5825. border-radius:0px;
  5826. filter:drop-shadow(none);
  5827. transition:none;
  5828. }
  5829. #u41557 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:482px;
  5833. top:101px;
  5834. width:375px;
  5835. height:58px;
  5836. display:flex;
  5837. transition:none;
  5838. transform-origin:50% 50%;
  5839. }
  5840. #u41557 .text {
  5841. position:absolute;
  5842. align-self:center;
  5843. padding:2px 2px 2px 2px;
  5844. box-sizing:border-box;
  5845. width:100%;
  5846. }
  5847. #u41557_text {
  5848. border-width:0px;
  5849. word-wrap:break-word;
  5850. text-transform:none;
  5851. visibility:hidden;
  5852. }
  5853. #u41558_div {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:375px;
  5859. height:524px;
  5860. background:inherit;
  5861. background-color:rgba(255, 255, 255, 0.996078431372549);
  5862. border-radius:0px;
  5863. filter:drop-shadow(none);
  5864. transition:none;
  5865. }
  5866. #u41558 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:482px;
  5870. top:255px;
  5871. width:375px;
  5872. height:524px;
  5873. display:flex;
  5874. transition:none;
  5875. transform-origin:50% 50%;
  5876. }
  5877. #u41558 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:2px 2px 2px 2px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u41558_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. visibility:hidden;
  5889. }
  5890. #u41559_div {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:73px;
  5896. height:25px;
  5897. background:inherit;
  5898. background-color:rgba(255, 255, 255, 0);
  5899. border-radius:0px;
  5900. filter:drop-shadow(none);
  5901. transition:none;
  5902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5903. font-weight:500;
  5904. font-style:normal;
  5905. font-size:18px;
  5906. }
  5907. #u41559 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:502px;
  5911. top:274px;
  5912. width:73px;
  5913. height:25px;
  5914. display:flex;
  5915. transition:none;
  5916. transform-origin:50% 50%;
  5917. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5918. font-weight:500;
  5919. font-style:normal;
  5920. font-size:18px;
  5921. }
  5922. #u41559 .text {
  5923. position:absolute;
  5924. align-self:flex-start;
  5925. padding:0px 0px 0px 0px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u41559_text {
  5930. border-width:0px;
  5931. white-space:nowrap;
  5932. text-transform:none;
  5933. }
  5934. #u41560 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. }
  5942. #u41561 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:0px;
  5948. height:0px;
  5949. }
  5950. #u41562 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:488px;
  5954. top:120px;
  5955. width:20px;
  5956. height:20px;
  5957. display:flex;
  5958. transition:none;
  5959. font-size:11px;
  5960. color:#1890FF;
  5961. }
  5962. #u41562 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:2px 2px 2px 2px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u41562_img {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:20px;
  5975. height:20px;
  5976. }
  5977. #u41562_text {
  5978. border-width:0px;
  5979. word-wrap:break-word;
  5980. text-transform:none;
  5981. }
  5982. #u41563_div {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:49px;
  5988. height:30px;
  5989. background:inherit;
  5990. background-color:rgba(255, 255, 255, 0);
  5991. border-left:0px;
  5992. border-top:0px;
  5993. border-right:0px;
  5994. border-radius:0px;
  5995. border-bottom-right-radius:0px;
  5996. border-bottom-left-radius:0px;
  5997. filter:drop-shadow(none);
  5998. transition:none;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:12px;
  6003. color:#FFFFFF;
  6004. line-height:30px;
  6005. }
  6006. #u41563 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:513px;
  6010. top:115px;
  6011. width:49px;
  6012. height:30px;
  6013. display:flex;
  6014. transition:none;
  6015. transform-origin:50% 50%;
  6016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. font-size:12px;
  6020. color:#FFFFFF;
  6021. line-height:30px;
  6022. }
  6023. #u41563 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:0px 0px 0px 0px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u41563_text {
  6031. border-width:0px;
  6032. white-space:nowrap;
  6033. text-transform:none;
  6034. }
  6035. #u41564 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:575px;
  6039. top:120px;
  6040. width:20px;
  6041. height:20px;
  6042. display:flex;
  6043. transition:none;
  6044. font-size:11px;
  6045. color:#1890FF;
  6046. }
  6047. #u41564 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:2px 2px 2px 2px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u41564_img {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:20px;
  6060. height:20px;
  6061. }
  6062. #u41564_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. }
  6067. #u41565_div {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:49px;
  6073. height:30px;
  6074. background:inherit;
  6075. background-color:rgba(255, 255, 255, 0);
  6076. border-left:0px;
  6077. border-top:0px;
  6078. border-right:0px;
  6079. border-radius:0px;
  6080. border-bottom-right-radius:0px;
  6081. border-bottom-left-radius:0px;
  6082. filter:drop-shadow(none);
  6083. transition:none;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:12px;
  6088. color:#FFFFFF;
  6089. line-height:30px;
  6090. }
  6091. #u41565 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:600px;
  6095. top:115px;
  6096. width:49px;
  6097. height:30px;
  6098. display:flex;
  6099. transition:none;
  6100. transform-origin:50% 50%;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:12px;
  6105. color:#FFFFFF;
  6106. line-height:30px;
  6107. }
  6108. #u41565 .text {
  6109. position:absolute;
  6110. align-self:center;
  6111. padding:0px 0px 0px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u41565_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u41566 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:669px;
  6124. top:120px;
  6125. width:20px;
  6126. height:20px;
  6127. display:flex;
  6128. transition:none;
  6129. font-size:11px;
  6130. color:#1890FF;
  6131. }
  6132. #u41566 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 2px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u41566_img {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:20px;
  6145. height:20px;
  6146. }
  6147. #u41566_text {
  6148. border-width:0px;
  6149. word-wrap:break-word;
  6150. text-transform:none;
  6151. }
  6152. #u41567_div {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:49px;
  6158. height:30px;
  6159. background:inherit;
  6160. background-color:rgba(255, 255, 255, 0);
  6161. border-left:0px;
  6162. border-top:0px;
  6163. border-right:0px;
  6164. border-radius:0px;
  6165. border-bottom-right-radius:0px;
  6166. border-bottom-left-radius:0px;
  6167. filter:drop-shadow(none);
  6168. transition:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. color:#FFFFFF;
  6174. line-height:30px;
  6175. }
  6176. #u41567 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:694px;
  6180. top:115px;
  6181. width:49px;
  6182. height:30px;
  6183. display:flex;
  6184. transition:none;
  6185. transform-origin:50% 50%;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:12px;
  6190. color:#FFFFFF;
  6191. line-height:30px;
  6192. }
  6193. #u41567 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:0px 0px 0px 0px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u41567_text {
  6201. border-width:0px;
  6202. white-space:nowrap;
  6203. text-transform:none;
  6204. }
  6205. #u41568 {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:763px;
  6209. top:120px;
  6210. width:20px;
  6211. height:20px;
  6212. display:flex;
  6213. transition:none;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:11px;
  6218. color:#1890FF;
  6219. }
  6220. #u41568 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 2px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u41568_img {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:20px;
  6233. height:20px;
  6234. }
  6235. #u41568_text {
  6236. border-width:0px;
  6237. word-wrap:break-word;
  6238. text-transform:none;
  6239. }
  6240. #u41569_div {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:0px;
  6244. top:0px;
  6245. width:49px;
  6246. height:30px;
  6247. background:inherit;
  6248. background-color:rgba(255, 255, 255, 0);
  6249. border-left:0px;
  6250. border-top:0px;
  6251. border-right:0px;
  6252. border-radius:0px;
  6253. border-bottom-right-radius:0px;
  6254. border-bottom-left-radius:0px;
  6255. filter:drop-shadow(none);
  6256. transition:none;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:12px;
  6261. color:#FFFFFF;
  6262. line-height:30px;
  6263. }
  6264. #u41569 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:788px;
  6268. top:115px;
  6269. width:49px;
  6270. height:30px;
  6271. display:flex;
  6272. transition:none;
  6273. transform-origin:50% 50%;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:12px;
  6278. color:#FFFFFF;
  6279. line-height:30px;
  6280. }
  6281. #u41569 .text {
  6282. position:absolute;
  6283. align-self:center;
  6284. padding:0px 0px 0px 0px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u41569_text {
  6289. border-width:0px;
  6290. white-space:nowrap;
  6291. text-transform:none;
  6292. }
  6293. #u41570_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:375px;
  6299. height:60px;
  6300. background:inherit;
  6301. background-color:rgba(255, 255, 255, 1);
  6302. border-top:0px;
  6303. border-radius:28px;
  6304. border-top-left-radius:0px;
  6305. border-top-right-radius:0px;
  6306. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6307. transition:none;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:#FFFFFF;
  6313. }
  6314. #u41570 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:482px;
  6318. top:780px;
  6319. width:375px;
  6320. height:60px;
  6321. display:flex;
  6322. transition:none;
  6323. transform-origin:50% 50%;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:14px;
  6328. color:#FFFFFF;
  6329. }
  6330. #u41570 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:2px 2px 2px 2px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u41570_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. visibility:hidden;
  6342. }
  6343. #u41571_div {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:324px;
  6349. height:40px;
  6350. background:inherit;
  6351. background-color:rgba(24, 144, 255, 1);
  6352. border-radius:63px;
  6353. filter:drop-shadow(none);
  6354. transition:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. color:#FFFFFF;
  6360. }
  6361. #u41571 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:510px;
  6365. top:789px;
  6366. width:324px;
  6367. height:40px;
  6368. display:flex;
  6369. transition:none;
  6370. transform-origin:50% 50%;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:14px;
  6375. color:#FFFFFF;
  6376. }
  6377. #u41571 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 2px 2px 2px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u41571_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. }
  6389. #u41572 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:0px;
  6395. height:0px;
  6396. }
  6397. #u41573_div {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:375px;
  6403. height:60px;
  6404. background:inherit;
  6405. background-color:rgba(255, 255, 255, 1);
  6406. border-top:0px;
  6407. border-radius:28px;
  6408. border-top-left-radius:0px;
  6409. border-top-right-radius:0px;
  6410. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6411. transition:none;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:14px;
  6416. color:#FFFFFF;
  6417. }
  6418. #u41573 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:1388px;
  6422. top:992px;
  6423. width:375px;
  6424. height:60px;
  6425. display:flex;
  6426. transition:none;
  6427. transform-origin:50% 50%;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:14px;
  6432. color:#FFFFFF;
  6433. }
  6434. #u41573 .text {
  6435. position:absolute;
  6436. align-self:center;
  6437. padding:2px 2px 2px 2px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u41573_text {
  6442. border-width:0px;
  6443. word-wrap:break-word;
  6444. text-transform:none;
  6445. visibility:hidden;
  6446. }
  6447. #u41574_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:324px;
  6453. height:40px;
  6454. background:inherit;
  6455. background-color:rgba(215, 215, 215, 1);
  6456. border-radius:63px;
  6457. filter:drop-shadow(none);
  6458. transition:none;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. color:#FFFFFF;
  6464. }
  6465. #u41574 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:1416px;
  6469. top:1001px;
  6470. width:324px;
  6471. height:40px;
  6472. display:flex;
  6473. transition:none;
  6474. transform-origin:50% 50%;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. color:#FFFFFF;
  6480. }
  6481. #u41574 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 2px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u41574_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. }
  6493. #u41575_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:183px;
  6499. height:20px;
  6500. background:inherit;
  6501. background-color:rgba(255, 255, 255, 0);
  6502. border-left:0px;
  6503. border-top:0px;
  6504. border-right:0px;
  6505. border-radius:0px;
  6506. border-bottom-right-radius:0px;
  6507. border-bottom-left-radius:0px;
  6508. filter:drop-shadow(none);
  6509. transition:none;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:14px;
  6514. color:#D9001B;
  6515. }
  6516. #u41575 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:1948px;
  6520. top:643px;
  6521. width:183px;
  6522. height:20px;
  6523. display:flex;
  6524. transition:none;
  6525. transform-origin:50% 50%;
  6526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:14px;
  6530. color:#D9001B;
  6531. }
  6532. #u41575 .text {
  6533. position:absolute;
  6534. align-self:flex-start;
  6535. padding:0px 0px 0px 0px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u41575_text {
  6540. border-width:0px;
  6541. white-space:nowrap;
  6542. text-transform:none;
  6543. }
  6544. #u41576 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:0px;
  6550. height:0px;
  6551. }
  6552. #u41577_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:375px;
  6558. height:80px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 1);
  6561. border-top:0px;
  6562. border-bottom:0px;
  6563. border-radius:0px;
  6564. border-top-left-radius:0px;
  6565. border-top-right-radius:0px;
  6566. border-bottom-right-radius:0px;
  6567. border-bottom-left-radius:0px;
  6568. filter:drop-shadow(none);
  6569. transition:none;
  6570. }
  6571. #u41577 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:482px;
  6575. top:165px;
  6576. width:375px;
  6577. height:80px;
  6578. display:flex;
  6579. transition:none;
  6580. transform-origin:50% 50%;
  6581. }
  6582. #u41577 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:2px 2px 2px 2px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u41577_text {
  6590. border-width:0px;
  6591. word-wrap:break-word;
  6592. text-transform:none;
  6593. visibility:hidden;
  6594. }
  6595. #u41578_div {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:73px;
  6601. height:30px;
  6602. background:inherit;
  6603. background-color:rgba(255, 255, 255, 0);
  6604. border-left:0px;
  6605. border-top:0px;
  6606. border-right:0px;
  6607. border-radius:0px;
  6608. border-bottom-right-radius:0px;
  6609. border-bottom-left-radius:0px;
  6610. filter:drop-shadow(none);
  6611. transition:none;
  6612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6613. font-weight:500;
  6614. font-style:normal;
  6615. font-size:18px;
  6616. line-height:30px;
  6617. }
  6618. #u41578 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:501px;
  6622. top:175px;
  6623. width:73px;
  6624. height:30px;
  6625. display:flex;
  6626. transition:none;
  6627. transform-origin:50% 50%;
  6628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6629. font-weight:500;
  6630. font-style:normal;
  6631. font-size:18px;
  6632. line-height:30px;
  6633. }
  6634. #u41578 .text {
  6635. position:absolute;
  6636. align-self:flex-start;
  6637. padding:0px 0px 0px 0px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u41578_text {
  6642. border-width:0px;
  6643. white-space:nowrap;
  6644. text-transform:none;
  6645. }
  6646. #u41579_input {
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:346px;
  6651. height:27px;
  6652. padding:2px 2px 2px 2px;
  6653. font-family:'ArialMT', 'Arial', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:14px;
  6657. letter-spacing:normal;
  6658. color:#1890FF;
  6659. vertical-align:none;
  6660. text-align:left;
  6661. text-transform:none;
  6662. background-color:transparent;
  6663. border-color:transparent;
  6664. }
  6665. #u41579_input.disabled {
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:346px;
  6670. height:27px;
  6671. padding:2px 2px 2px 2px;
  6672. font-family:'ArialMT', 'Arial', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:14px;
  6676. letter-spacing:normal;
  6677. color:#1890FF;
  6678. vertical-align:none;
  6679. text-align:left;
  6680. text-transform:none;
  6681. background-color:transparent;
  6682. border-color:transparent;
  6683. }
  6684. #u41579_div {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:346px;
  6690. height:27px;
  6691. background:inherit;
  6692. background-color:rgba(255, 255, 255, 1);
  6693. border-radius:0px;
  6694. filter:drop-shadow(none);
  6695. transition:none;
  6696. font-size:14px;
  6697. color:#1890FF;
  6698. }
  6699. #u41579 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:501px;
  6703. top:208px;
  6704. width:346px;
  6705. height:27px;
  6706. display:flex;
  6707. transition:none;
  6708. transform-origin:50% 50%;
  6709. font-size:14px;
  6710. color:#1890FF;
  6711. }
  6712. #u41579 .text {
  6713. position:absolute;
  6714. align-self:flex-start;
  6715. padding:2px 2px 2px 2px;
  6716. box-sizing:border-box;
  6717. width:100%;
  6718. }
  6719. #u41579_div.disabled {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:346px;
  6725. height:27px;
  6726. background:inherit;
  6727. background-color:rgba(240, 240, 240, 1);
  6728. border-radius:0px;
  6729. filter:drop-shadow(none);
  6730. transition:none;
  6731. font-size:14px;
  6732. color:#1890FF;
  6733. }
  6734. #u41579.disabled {
  6735. }
  6736. .u41579_input_option {
  6737. font-size:14px;
  6738. }
  6739. #u41580_div {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:308px;
  6745. height:34px;
  6746. background:inherit;
  6747. background-color:rgba(255, 255, 255, 0);
  6748. border-left:0px;
  6749. border-top:0px;
  6750. border-right:0px;
  6751. border-radius:0px;
  6752. border-bottom-right-radius:0px;
  6753. border-bottom-left-radius:0px;
  6754. filter:drop-shadow(none);
  6755. transition:none;
  6756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:12px;
  6760. color:#D9001B;
  6761. }
  6762. #u41580 {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:508px;
  6766. top:235px;
  6767. width:308px;
  6768. height:34px;
  6769. display:flex;
  6770. transition:none;
  6771. transform-origin:50% 50%;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:12px;
  6776. color:#D9001B;
  6777. }
  6778. #u41580 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:0px 0px 0px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u41580_text {
  6786. border-width:0px;
  6787. white-space:nowrap;
  6788. text-transform:none;
  6789. }
  6790. #u41581 {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:0px;
  6796. height:0px;
  6797. }
  6798. #u41582 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:2275px;
  6802. top:2px;
  6803. width:433px;
  6804. height:865px;
  6805. }
  6806. #u41583 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:433px;
  6812. height:865px;
  6813. display:flex;
  6814. transition:none;
  6815. }
  6816. #u41583 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:2px 2px 2px 2px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u41583_img {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:433px;
  6829. height:865px;
  6830. }
  6831. #u41583_text {
  6832. border-width:0px;
  6833. word-wrap:break-word;
  6834. text-transform:none;
  6835. visibility:hidden;
  6836. }
  6837. #u41584_div {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:375px;
  6843. height:40px;
  6844. background:inherit;
  6845. background-color:rgba(255, 255, 255, 1);
  6846. box-sizing:border-box;
  6847. border-width:1px;
  6848. border-style:solid;
  6849. border-color:rgba(215, 215, 215, 1);
  6850. border-left:0px;
  6851. border-top:0px;
  6852. border-right:0px;
  6853. border-radius:0px;
  6854. border-bottom-right-radius:0px;
  6855. border-bottom-left-radius:0px;
  6856. filter:drop-shadow(none);
  6857. transition:none;
  6858. }
  6859. #u41584 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:29px;
  6863. top:67px;
  6864. width:375px;
  6865. height:40px;
  6866. display:flex;
  6867. transition:none;
  6868. transform-origin:50% 50%;
  6869. }
  6870. #u41584 .text {
  6871. position:absolute;
  6872. align-self:center;
  6873. padding:2px 2px 2px 2px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u41584_text {
  6878. border-width:0px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. visibility:hidden;
  6882. }
  6883. #u41585 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:0px;
  6889. height:0px;
  6890. }
  6891. #u41586_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:88px;
  6897. height:32px;
  6898. background:inherit;
  6899. background-color:rgba(255, 255, 255, 1);
  6900. box-sizing:border-box;
  6901. border-width:1px;
  6902. border-style:solid;
  6903. border-color:rgba(242, 242, 242, 1);
  6904. border-radius:33px;
  6905. filter:drop-shadow(none);
  6906. transition:none;
  6907. }
  6908. #u41586 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:309px;
  6912. top:71px;
  6913. width:88px;
  6914. height:32px;
  6915. display:flex;
  6916. transition:none;
  6917. transform-origin:50% 50%;
  6918. }
  6919. #u41586 .text {
  6920. position:absolute;
  6921. align-self:center;
  6922. padding:2px 2px 2px 2px;
  6923. box-sizing:border-box;
  6924. width:100%;
  6925. }
  6926. #u41586_text {
  6927. border-width:0px;
  6928. word-wrap:break-word;
  6929. text-transform:none;
  6930. visibility:hidden;
  6931. }
  6932. #u41587 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:0px;
  6938. height:0px;
  6939. }
  6940. #u41588 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:372px;
  6944. top:78px;
  6945. width:18px;
  6946. height:18px;
  6947. display:flex;
  6948. transition:none;
  6949. }
  6950. #u41588 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 2px 2px 2px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u41588_img {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:18px;
  6963. height:18px;
  6964. }
  6965. #u41588_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. visibility:hidden;
  6970. }
  6971. #u41589 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:378px;
  6975. top:84px;
  6976. width:6px;
  6977. height:6px;
  6978. display:flex;
  6979. transition:none;
  6980. }
  6981. #u41589 .text {
  6982. position:absolute;
  6983. align-self:center;
  6984. padding:2px 2px 2px 2px;
  6985. box-sizing:border-box;
  6986. width:100%;
  6987. }
  6988. #u41589_img {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:6px;
  6994. height:6px;
  6995. }
  6996. #u41589_text {
  6997. border-width:0px;
  6998. word-wrap:break-word;
  6999. text-transform:none;
  7000. visibility:hidden;
  7001. }
  7002. #u41590 {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:0px;
  7008. height:0px;
  7009. }
  7010. #u41591 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:323px;
  7014. top:85px;
  7015. width:5px;
  7016. height:5px;
  7017. display:flex;
  7018. transition:none;
  7019. }
  7020. #u41591 .text {
  7021. position:absolute;
  7022. align-self:center;
  7023. padding:2px 2px 2px 2px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u41591_img {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:5px;
  7033. height:5px;
  7034. }
  7035. #u41591_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. visibility:hidden;
  7040. }
  7041. #u41592 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:339px;
  7045. top:85px;
  7046. width:5px;
  7047. height:5px;
  7048. display:flex;
  7049. transition:none;
  7050. }
  7051. #u41592 .text {
  7052. position:absolute;
  7053. align-self:center;
  7054. padding:2px 2px 2px 2px;
  7055. box-sizing:border-box;
  7056. width:100%;
  7057. }
  7058. #u41592_img {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:5px;
  7064. height:5px;
  7065. }
  7066. #u41592_text {
  7067. border-width:0px;
  7068. word-wrap:break-word;
  7069. text-transform:none;
  7070. visibility:hidden;
  7071. }
  7072. #u41593 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:330px;
  7076. top:84px;
  7077. width:7px;
  7078. height:7px;
  7079. display:flex;
  7080. transition:none;
  7081. }
  7082. #u41593 .text {
  7083. position:absolute;
  7084. align-self:center;
  7085. padding:2px 2px 2px 2px;
  7086. box-sizing:border-box;
  7087. width:100%;
  7088. }
  7089. #u41593_img {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:7px;
  7095. height:7px;
  7096. }
  7097. #u41593_text {
  7098. border-width:0px;
  7099. word-wrap:break-word;
  7100. text-transform:none;
  7101. visibility:hidden;
  7102. }
  7103. #u41594 {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:347px;
  7107. top:87px;
  7108. width:18px;
  7109. height:1px;
  7110. display:flex;
  7111. -webkit-transform:rotate(90deg);
  7112. -moz-transform:rotate(90deg);
  7113. -ms-transform:rotate(90deg);
  7114. transform:rotate(90deg);
  7115. transition:none;
  7116. }
  7117. #u41594 .text {
  7118. position:absolute;
  7119. align-self:center;
  7120. padding:2px 2px 2px 2px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u41594_img {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:19px;
  7130. height:2px;
  7131. }
  7132. #u41594_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. visibility:hidden;
  7137. }
  7138. #u41595 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:29px;
  7142. top:24px;
  7143. width:375px;
  7144. height:44px;
  7145. display:flex;
  7146. transition:none;
  7147. }
  7148. #u41595 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u41595_img {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:375px;
  7161. height:44px;
  7162. }
  7163. #u41595_text {
  7164. border-width:0px;
  7165. word-wrap:break-word;
  7166. text-transform:none;
  7167. visibility:hidden;
  7168. }
  7169. #u41596_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:375px;
  7175. height:50px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 1);
  7178. box-sizing:border-box;
  7179. border-width:1px;
  7180. border-style:solid;
  7181. border-color:rgba(242, 242, 242, 1);
  7182. border-radius:26px;
  7183. border-top-left-radius:0px;
  7184. border-top-right-radius:0px;
  7185. filter:drop-shadow(none);
  7186. transition:none;
  7187. }
  7188. #u41596 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:29px;
  7192. top:788px;
  7193. width:375px;
  7194. height:50px;
  7195. display:flex;
  7196. transition:none;
  7197. transform-origin:50% 50%;
  7198. }
  7199. #u41596 .text {
  7200. position:absolute;
  7201. align-self:center;
  7202. padding:2px 2px 2px 2px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u41596_text {
  7207. border-width:0px;
  7208. word-wrap:break-word;
  7209. text-transform:none;
  7210. visibility:hidden;
  7211. }
  7212. #u41597 {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:0px;
  7218. height:0px;
  7219. }
  7220. #u41598 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:69px;
  7224. top:792px;
  7225. width:24px;
  7226. height:24px;
  7227. display:flex;
  7228. transition:none;
  7229. font-size:8px;
  7230. }
  7231. #u41598 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 2px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u41598_img {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:24px;
  7244. height:24px;
  7245. }
  7246. #u41598_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. }
  7251. #u41599_div {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:25px;
  7257. height:17px;
  7258. background:inherit;
  7259. background-color:rgba(255, 255, 255, 0);
  7260. border-radius:0px;
  7261. filter:drop-shadow(none);
  7262. transition:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:12px;
  7267. }
  7268. #u41599 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:69px;
  7272. top:817px;
  7273. width:25px;
  7274. height:17px;
  7275. display:flex;
  7276. transition:none;
  7277. transform-origin:50% 50%;
  7278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7279. font-weight:400;
  7280. font-style:normal;
  7281. font-size:12px;
  7282. }
  7283. #u41599 .text {
  7284. position:absolute;
  7285. align-self:flex-start;
  7286. padding:0px 0px 0px 0px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u41599_text {
  7291. border-width:0px;
  7292. white-space:nowrap;
  7293. text-transform:none;
  7294. }
  7295. #u41600 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:0px;
  7301. height:0px;
  7302. }
  7303. #u41601 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:339px;
  7307. top:794px;
  7308. width:24px;
  7309. height:24px;
  7310. display:flex;
  7311. transition:none;
  7312. font-size:8px;
  7313. }
  7314. #u41601 .text {
  7315. position:absolute;
  7316. align-self:center;
  7317. padding:2px 2px 2px 2px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u41601_img {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:24px;
  7327. height:24px;
  7328. }
  7329. #u41601_text {
  7330. border-width:0px;
  7331. word-wrap:break-word;
  7332. text-transform:none;
  7333. }
  7334. #u41602_div {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:25px;
  7340. height:17px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 0);
  7343. border-radius:0px;
  7344. filter:drop-shadow(none);
  7345. transition:none;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:12px;
  7350. }
  7351. #u41602 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:339px;
  7355. top:819px;
  7356. width:25px;
  7357. height:17px;
  7358. display:flex;
  7359. transition:none;
  7360. transform-origin:50% 50%;
  7361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:12px;
  7365. }
  7366. #u41602 .text {
  7367. position:absolute;
  7368. align-self:flex-start;
  7369. padding:0px 0px 0px 0px;
  7370. box-sizing:border-box;
  7371. width:100%;
  7372. }
  7373. #u41602_text {
  7374. border-width:0px;
  7375. white-space:nowrap;
  7376. text-transform:none;
  7377. }
  7378. #u41603_div {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:375px;
  7384. height:681px;
  7385. background:inherit;
  7386. background-color:rgba(242, 242, 242, 0.4627450980392157);
  7387. border-radius:0px;
  7388. filter:drop-shadow(none);
  7389. transition:none;
  7390. }
  7391. #u41603 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:29px;
  7395. top:107px;
  7396. width:375px;
  7397. height:681px;
  7398. display:flex;
  7399. transition:none;
  7400. transform-origin:50% 50%;
  7401. }
  7402. #u41603 .text {
  7403. position:absolute;
  7404. align-self:center;
  7405. padding:2px 2px 2px 2px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u41603_text {
  7410. border-width:0px;
  7411. word-wrap:break-word;
  7412. text-transform:none;
  7413. visibility:hidden;
  7414. }
  7415. #u41604 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:0px;
  7421. height:0px;
  7422. }
  7423. #u41605 {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:251px;
  7427. top:792px;
  7428. width:24px;
  7429. height:24px;
  7430. display:flex;
  7431. transition:none;
  7432. font-size:8px;
  7433. }
  7434. #u41605 .text {
  7435. position:absolute;
  7436. align-self:center;
  7437. padding:2px 2px 2px 2px;
  7438. box-sizing:border-box;
  7439. width:100%;
  7440. }
  7441. #u41605_img {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:0px;
  7445. top:0px;
  7446. width:24px;
  7447. height:24px;
  7448. }
  7449. #u41605_text {
  7450. border-width:0px;
  7451. word-wrap:break-word;
  7452. text-transform:none;
  7453. }
  7454. #u41606_div {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:0px;
  7458. top:0px;
  7459. width:37px;
  7460. height:17px;
  7461. background:inherit;
  7462. background-color:rgba(255, 255, 255, 0);
  7463. border-radius:0px;
  7464. filter:drop-shadow(none);
  7465. transition:none;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:12px;
  7470. }
  7471. #u41606 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:245px;
  7475. top:817px;
  7476. width:37px;
  7477. height:17px;
  7478. display:flex;
  7479. transition:none;
  7480. transform-origin:50% 50%;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:12px;
  7485. }
  7486. #u41606 .text {
  7487. position:absolute;
  7488. align-self:flex-start;
  7489. padding:0px 0px 0px 0px;
  7490. box-sizing:border-box;
  7491. width:100%;
  7492. }
  7493. #u41606_text {
  7494. border-width:0px;
  7495. white-space:nowrap;
  7496. text-transform:none;
  7497. }
  7498. #u41607 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:0px;
  7504. height:0px;
  7505. }
  7506. #u41608 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:157px;
  7510. top:792px;
  7511. width:24px;
  7512. height:24px;
  7513. display:flex;
  7514. transition:none;
  7515. font-size:8px;
  7516. }
  7517. #u41608 .text {
  7518. position:absolute;
  7519. align-self:center;
  7520. padding:2px 2px 2px 2px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u41608_img {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:24px;
  7530. height:24px;
  7531. }
  7532. #u41608_text {
  7533. border-width:0px;
  7534. word-wrap:break-word;
  7535. text-transform:none;
  7536. }
  7537. #u41609_div {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:37px;
  7543. height:17px;
  7544. background:inherit;
  7545. background-color:rgba(255, 255, 255, 0);
  7546. border-radius:0px;
  7547. filter:drop-shadow(none);
  7548. transition:none;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:12px;
  7553. }
  7554. #u41609 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:151px;
  7558. top:817px;
  7559. width:37px;
  7560. height:17px;
  7561. display:flex;
  7562. transition:none;
  7563. transform-origin:50% 50%;
  7564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7565. font-weight:400;
  7566. font-style:normal;
  7567. font-size:12px;
  7568. }
  7569. #u41609 .text {
  7570. position:absolute;
  7571. align-self:flex-start;
  7572. padding:0px 0px 0px 0px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u41609_text {
  7577. border-width:0px;
  7578. white-space:nowrap;
  7579. text-transform:none;
  7580. }
  7581. #u41610_div {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:375px;
  7587. height:775px;
  7588. background:inherit;
  7589. background-color:rgba(255, 255, 255, 1);
  7590. border-top:0px;
  7591. border-radius:28px;
  7592. border-top-left-radius:0px;
  7593. border-top-right-radius:0px;
  7594. filter:drop-shadow(none);
  7595. transition:none;
  7596. }
  7597. #u41610 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:2304px;
  7601. top:67px;
  7602. width:375px;
  7603. height:775px;
  7604. display:flex;
  7605. transition:none;
  7606. transform-origin:50% 50%;
  7607. }
  7608. #u41610 .text {
  7609. position:absolute;
  7610. align-self:center;
  7611. padding:2px 2px 2px 2px;
  7612. box-sizing:border-box;
  7613. width:100%;
  7614. }
  7615. #u41610_text {
  7616. border-width:0px;
  7617. word-wrap:break-word;
  7618. text-transform:none;
  7619. visibility:hidden;
  7620. }
  7621. #u41611_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:121px;
  7627. height:30px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border-left:0px;
  7631. border-top:0px;
  7632. border-right:0px;
  7633. border-radius:0px;
  7634. border-bottom-right-radius:0px;
  7635. border-bottom-left-radius:0px;
  7636. filter:drop-shadow(none);
  7637. transition:none;
  7638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7639. font-weight:400;
  7640. font-style:normal;
  7641. line-height:30px;
  7642. }
  7643. #u41611 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:2426px;
  7647. top:228px;
  7648. width:121px;
  7649. height:30px;
  7650. display:flex;
  7651. transition:none;
  7652. transform-origin:50% 50%;
  7653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. line-height:30px;
  7657. }
  7658. #u41611 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:0px 0px 0px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u41611_text {
  7666. border-width:0px;
  7667. white-space:nowrap;
  7668. text-transform:none;
  7669. }
  7670. #u41612_div {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:126px;
  7676. height:40px;
  7677. background:inherit;
  7678. background-color:rgba(255, 255, 255, 1);
  7679. box-sizing:border-box;
  7680. border-width:1px;
  7681. border-style:solid;
  7682. border-color:rgba(121, 121, 121, 1);
  7683. border-radius:63px;
  7684. filter:drop-shadow(none);
  7685. transition:none;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:14px;
  7690. }
  7691. #u41612 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:2502px;
  7695. top:355px;
  7696. width:126px;
  7697. height:40px;
  7698. display:flex;
  7699. transition:none;
  7700. transform-origin:50% 50%;
  7701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:14px;
  7705. }
  7706. #u41612 .text {
  7707. position:absolute;
  7708. align-self:center;
  7709. padding:2px 2px 2px 2px;
  7710. box-sizing:border-box;
  7711. width:100%;
  7712. }
  7713. #u41612_text {
  7714. border-width:0px;
  7715. word-wrap:break-word;
  7716. text-transform:none;
  7717. }
  7718. #u41613 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:2450px;
  7722. top:129px;
  7723. width:83px;
  7724. height:83px;
  7725. display:flex;
  7726. transition:none;
  7727. }
  7728. #u41613 .text {
  7729. position:absolute;
  7730. align-self:center;
  7731. padding:2px 2px 2px 2px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u41613_img {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:83px;
  7741. height:83px;
  7742. }
  7743. #u41613_text {
  7744. border-width:0px;
  7745. word-wrap:break-word;
  7746. text-transform:none;
  7747. visibility:hidden;
  7748. }
  7749. #u41614_div {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:126px;
  7755. height:40px;
  7756. background:inherit;
  7757. background-color:rgba(255, 255, 255, 1);
  7758. box-sizing:border-box;
  7759. border-width:1px;
  7760. border-style:solid;
  7761. border-color:rgba(121, 121, 121, 1);
  7762. border-radius:63px;
  7763. filter:drop-shadow(none);
  7764. transition:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:14px;
  7769. }
  7770. #u41614 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:2356px;
  7774. top:355px;
  7775. width:126px;
  7776. height:40px;
  7777. display:flex;
  7778. transition:none;
  7779. transform-origin:50% 50%;
  7780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:14px;
  7784. }
  7785. #u41614 .text {
  7786. position:absolute;
  7787. align-self:center;
  7788. padding:2px 2px 2px 2px;
  7789. box-sizing:border-box;
  7790. width:100%;
  7791. }
  7792. #u41614_text {
  7793. border-width:0px;
  7794. word-wrap:break-word;
  7795. text-transform:none;
  7796. }
  7797. #u41615_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:30px;
  7803. height:30px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 0);
  7806. border-left:0px;
  7807. border-top:0px;
  7808. border-right:0px;
  7809. border-radius:0px;
  7810. border-bottom-right-radius:0px;
  7811. border-bottom-left-radius:0px;
  7812. filter:drop-shadow(none);
  7813. transition:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:18px;
  7818. text-align:center;
  7819. line-height:30px;
  7820. }
  7821. #u41615 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:2314px;
  7825. top:77px;
  7826. width:30px;
  7827. height:30px;
  7828. display:flex;
  7829. transition:none;
  7830. transform-origin:50% 50%;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:18px;
  7835. text-align:center;
  7836. line-height:30px;
  7837. }
  7838. #u41615 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:0px 0px 0px 0px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u41615_text {
  7846. border-width:0px;
  7847. word-wrap:break-word;
  7848. text-transform:none;
  7849. }
  7850. #u41616 {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:0px;
  7856. height:0px;
  7857. }
  7858. #u41617 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:2316px;
  7862. top:433px;
  7863. width:350px;
  7864. height:40px;
  7865. display:flex;
  7866. transition:none;
  7867. }
  7868. #u41617 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 2px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u41617_img {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:350px;
  7881. height:40px;
  7882. }
  7883. #u41617_text {
  7884. border-width:0px;
  7885. word-wrap:break-word;
  7886. text-transform:none;
  7887. visibility:hidden;
  7888. }
  7889. #u41618 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:0px;
  7895. height:0px;
  7896. }
  7897. #u41619_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:221px;
  7903. height:30px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 0);
  7906. border-left:0px;
  7907. border-top:0px;
  7908. border-right:0px;
  7909. border-radius:0px;
  7910. border-bottom-right-radius:0px;
  7911. border-bottom-left-radius:0px;
  7912. filter:drop-shadow(none);
  7913. transition:none;
  7914. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7915. font-style:normal;
  7916. color:#FFFFFF;
  7917. text-align:center;
  7918. line-height:30px;
  7919. }
  7920. #u41619 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:2396px;
  7924. top:438px;
  7925. width:221px;
  7926. height:30px;
  7927. display:flex;
  7928. transition:none;
  7929. transform-origin:50% 50%;
  7930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7931. font-style:normal;
  7932. color:#FFFFFF;
  7933. text-align:center;
  7934. line-height:30px;
  7935. }
  7936. #u41619 .text {
  7937. position:absolute;
  7938. align-self:center;
  7939. padding:0px 0px 0px 0px;
  7940. box-sizing:border-box;
  7941. width:100%;
  7942. }
  7943. #u41619_text {
  7944. border-width:0px;
  7945. white-space:nowrap;
  7946. text-transform:none;
  7947. }
  7948. #u41620 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:2366px;
  7952. top:440px;
  7953. width:26px;
  7954. height:26px;
  7955. display:flex;
  7956. transition:none;
  7957. }
  7958. #u41620 .text {
  7959. position:absolute;
  7960. align-self:center;
  7961. padding:2px 2px 2px 2px;
  7962. box-sizing:border-box;
  7963. width:100%;
  7964. }
  7965. #u41620_img {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:26px;
  7971. height:26px;
  7972. }
  7973. #u41620_text {
  7974. border-width:0px;
  7975. word-wrap:break-word;
  7976. text-transform:none;
  7977. }
  7978. #u41621_div {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:304px;
  7984. height:60px;
  7985. background:inherit;
  7986. background-color:rgba(255, 255, 255, 0);
  7987. border-left:0px;
  7988. border-top:0px;
  7989. border-right:0px;
  7990. border-radius:0px;
  7991. border-bottom-right-radius:0px;
  7992. border-bottom-left-radius:0px;
  7993. filter:drop-shadow(none);
  7994. transition:none;
  7995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:14px;
  7999. text-align:center;
  8000. line-height:30px;
  8001. }
  8002. #u41621 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:2347px;
  8006. top:269px;
  8007. width:304px;
  8008. height:60px;
  8009. display:flex;
  8010. transition:none;
  8011. transform-origin:50% 50%;
  8012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8013. font-weight:400;
  8014. font-style:normal;
  8015. font-size:14px;
  8016. text-align:center;
  8017. line-height:30px;
  8018. }
  8019. #u41621 .text {
  8020. position:absolute;
  8021. align-self:center;
  8022. padding:0px 0px 0px 0px;
  8023. box-sizing:border-box;
  8024. width:100%;
  8025. }
  8026. #u41621_text {
  8027. border-width:0px;
  8028. word-wrap:break-word;
  8029. text-transform:none;
  8030. }
  8031. #u41622_div {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:0px;
  8035. top:0px;
  8036. width:413px;
  8037. height:40px;
  8038. background:inherit;
  8039. background-color:rgba(255, 255, 255, 0);
  8040. border-left:0px;
  8041. border-top:0px;
  8042. border-right:0px;
  8043. border-radius:0px;
  8044. border-bottom-right-radius:0px;
  8045. border-bottom-left-radius:0px;
  8046. filter:drop-shadow(none);
  8047. transition:none;
  8048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:14px;
  8052. color:#D9001B;
  8053. }
  8054. #u41622 {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:2482px;
  8058. top:392px;
  8059. width:413px;
  8060. height:40px;
  8061. display:flex;
  8062. transition:none;
  8063. transform-origin:50% 50%;
  8064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8065. font-weight:400;
  8066. font-style:normal;
  8067. font-size:14px;
  8068. color:#D9001B;
  8069. }
  8070. #u41622 .text {
  8071. position:absolute;
  8072. align-self:flex-start;
  8073. padding:0px 0px 0px 0px;
  8074. box-sizing:border-box;
  8075. width:100%;
  8076. }
  8077. #u41622_text {
  8078. border-width:0px;
  8079. white-space:nowrap;
  8080. text-transform:none;
  8081. }
  8082. #u41623 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:0px;
  8086. top:0px;
  8087. width:0px;
  8088. height:0px;
  8089. }
  8090. #u41624_div {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:0px;
  8094. top:0px;
  8095. width:645px;
  8096. height:120px;
  8097. background:inherit;
  8098. background-color:rgba(255, 255, 255, 0);
  8099. border-left:0px;
  8100. border-top:0px;
  8101. border-right:0px;
  8102. border-radius:0px;
  8103. border-bottom-right-radius:0px;
  8104. border-bottom-left-radius:0px;
  8105. filter:drop-shadow(none);
  8106. transition:none;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:14px;
  8111. color:#D9001B;
  8112. }
  8113. #u41624 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:2156px;
  8117. top:877px;
  8118. width:645px;
  8119. height:120px;
  8120. display:flex;
  8121. transition:none;
  8122. transform-origin:50% 50%;
  8123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8124. font-weight:400;
  8125. font-style:normal;
  8126. font-size:14px;
  8127. color:#D9001B;
  8128. }
  8129. #u41624 .text {
  8130. position:absolute;
  8131. align-self:flex-start;
  8132. padding:0px 0px 0px 0px;
  8133. box-sizing:border-box;
  8134. width:100%;
  8135. }
  8136. #u41624_text {
  8137. border-width:0px;
  8138. white-space:nowrap;
  8139. text-transform:none;
  8140. }
  8141. #u41625 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:0px;
  8147. height:0px;
  8148. }
  8149. #u41626_div {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:260px;
  8155. height:40px;
  8156. background:inherit;
  8157. background-color:rgba(255, 255, 255, 1);
  8158. border-radius:63px;
  8159. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  8160. transition:none;
  8161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8162. font-weight:400;
  8163. font-style:normal;
  8164. font-size:14px;
  8165. }
  8166. #u41626 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:2159px;
  8170. top:923px;
  8171. width:260px;
  8172. height:40px;
  8173. display:flex;
  8174. transition:none;
  8175. transform-origin:50% 50%;
  8176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8177. font-weight:400;
  8178. font-style:normal;
  8179. font-size:14px;
  8180. }
  8181. #u41626 .text {
  8182. position:absolute;
  8183. align-self:center;
  8184. padding:2px 2px 2px 2px;
  8185. box-sizing:border-box;
  8186. width:100%;
  8187. }
  8188. #u41626_text {
  8189. border-width:0px;
  8190. word-wrap:break-word;
  8191. text-transform:none;
  8192. visibility:hidden;
  8193. }
  8194. #u41627 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:2169px;
  8198. top:933px;
  8199. width:19px;
  8200. height:19px;
  8201. display:flex;
  8202. transition:none;
  8203. }
  8204. #u41627 .text {
  8205. position:absolute;
  8206. align-self:center;
  8207. padding:2px 2px 2px 2px;
  8208. box-sizing:border-box;
  8209. width:100%;
  8210. }
  8211. #u41627_img {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:19px;
  8217. height:19px;
  8218. }
  8219. #u41627_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. visibility:hidden;
  8224. }
  8225. #u41628_div {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:199px;
  8231. height:17px;
  8232. background:inherit;
  8233. background-color:rgba(255, 255, 255, 0);
  8234. border-left:0px;
  8235. border-top:0px;
  8236. border-right:0px;
  8237. border-radius:0px;
  8238. border-bottom-right-radius:0px;
  8239. border-bottom-left-radius:0px;
  8240. filter:drop-shadow(none);
  8241. transition:none;
  8242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:12px;
  8246. }
  8247. #u41628 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:2198px;
  8251. top:934px;
  8252. width:199px;
  8253. height:17px;
  8254. display:flex;
  8255. transition:none;
  8256. transform-origin:50% 50%;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:12px;
  8261. }
  8262. #u41628 .text {
  8263. position:absolute;
  8264. align-self:flex-start;
  8265. padding:0px 0px 0px 0px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u41628_text {
  8270. border-width:0px;
  8271. white-space:nowrap;
  8272. text-transform:none;
  8273. }
  8274. #u41629 {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:0px;
  8280. height:0px;
  8281. }
  8282. #u41630 {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:0px;
  8286. top:0px;
  8287. width:0px;
  8288. height:0px;
  8289. }
  8290. #u41631 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:837px;
  8294. top:363px;
  8295. width:7px;
  8296. height:12px;
  8297. display:flex;
  8298. -webkit-transform:rotate(180deg);
  8299. -moz-transform:rotate(180deg);
  8300. -ms-transform:rotate(180deg);
  8301. transform:rotate(180deg);
  8302. transition:none;
  8303. }
  8304. #u41631 .text {
  8305. position:absolute;
  8306. align-self:center;
  8307. padding:2px 2px 2px 2px;
  8308. box-sizing:border-box;
  8309. width:100%;
  8310. }
  8311. #u41631_img {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:7px;
  8317. height:12px;
  8318. }
  8319. #u41631_text {
  8320. border-width:0px;
  8321. word-wrap:break-word;
  8322. text-transform:none;
  8323. visibility:hidden;
  8324. }
  8325. #u41632_div {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:235px;
  8331. height:40px;
  8332. background:inherit;
  8333. background-color:rgba(255, 255, 255, 0);
  8334. border-left:0px;
  8335. border-top:0px;
  8336. border-right:0px;
  8337. border-radius:0px;
  8338. border-bottom-right-radius:0px;
  8339. border-bottom-left-radius:0px;
  8340. filter:drop-shadow(none);
  8341. transition:none;
  8342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8343. font-weight:400;
  8344. font-style:normal;
  8345. font-size:14px;
  8346. color:#AAAAAA;
  8347. line-height:40px;
  8348. }
  8349. #u41632 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:502px;
  8353. top:349px;
  8354. width:235px;
  8355. height:40px;
  8356. display:flex;
  8357. transition:none;
  8358. transform-origin:50% 50%;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:14px;
  8363. color:#AAAAAA;
  8364. line-height:40px;
  8365. }
  8366. #u41632 .text {
  8367. position:absolute;
  8368. align-self:flex-start;
  8369. padding:0px 0px 0px 0px;
  8370. box-sizing:border-box;
  8371. width:100%;
  8372. }
  8373. #u41632_text {
  8374. border-width:0px;
  8375. word-wrap:break-word;
  8376. text-transform:none;
  8377. }
  8378. #u41633_div {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:36px;
  8384. height:40px;
  8385. background:inherit;
  8386. background-color:rgba(255, 255, 255, 0);
  8387. border-left:0px;
  8388. border-top:0px;
  8389. border-right:0px;
  8390. border-radius:0px;
  8391. border-bottom-right-radius:0px;
  8392. border-bottom-left-radius:0px;
  8393. filter:drop-shadow(none);
  8394. transition:none;
  8395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8396. font-weight:400;
  8397. font-style:normal;
  8398. font-size:14px;
  8399. line-height:40px;
  8400. }
  8401. #u41633 {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:502px;
  8405. top:309px;
  8406. width:36px;
  8407. height:40px;
  8408. display:flex;
  8409. transition:none;
  8410. transform-origin:50% 50%;
  8411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8412. font-weight:400;
  8413. font-style:normal;
  8414. font-size:14px;
  8415. line-height:40px;
  8416. }
  8417. #u41633 .text {
  8418. position:absolute;
  8419. align-self:flex-start;
  8420. padding:0px 0px 0px 0px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u41633_text {
  8425. border-width:0px;
  8426. white-space:nowrap;
  8427. text-transform:none;
  8428. }
  8429. #u41634 {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:0px;
  8435. height:0px;
  8436. }
  8437. #u41635 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:0px;
  8442. width:0px;
  8443. height:0px;
  8444. }
  8445. #u41636 {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:837px;
  8449. top:443px;
  8450. width:7px;
  8451. height:12px;
  8452. display:flex;
  8453. -webkit-transform:rotate(180deg);
  8454. -moz-transform:rotate(180deg);
  8455. -ms-transform:rotate(180deg);
  8456. transform:rotate(180deg);
  8457. transition:none;
  8458. }
  8459. #u41636 .text {
  8460. position:absolute;
  8461. align-self:center;
  8462. padding:2px 2px 2px 2px;
  8463. box-sizing:border-box;
  8464. width:100%;
  8465. }
  8466. #u41636_img {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:7px;
  8472. height:12px;
  8473. }
  8474. #u41636_text {
  8475. border-width:0px;
  8476. word-wrap:break-word;
  8477. text-transform:none;
  8478. visibility:hidden;
  8479. }
  8480. #u41637_div {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:235px;
  8486. height:40px;
  8487. background:inherit;
  8488. background-color:rgba(255, 255, 255, 0);
  8489. border-left:0px;
  8490. border-top:0px;
  8491. border-right:0px;
  8492. border-radius:0px;
  8493. border-bottom-right-radius:0px;
  8494. border-bottom-left-radius:0px;
  8495. filter:drop-shadow(none);
  8496. transition:none;
  8497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:14px;
  8501. color:#AAAAAA;
  8502. line-height:40px;
  8503. }
  8504. #u41637 {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:502px;
  8508. top:429px;
  8509. width:235px;
  8510. height:40px;
  8511. display:flex;
  8512. transition:none;
  8513. transform-origin:50% 50%;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:14px;
  8518. color:#AAAAAA;
  8519. line-height:40px;
  8520. }
  8521. #u41637 .text {
  8522. position:absolute;
  8523. align-self:flex-start;
  8524. padding:0px 0px 0px 0px;
  8525. box-sizing:border-box;
  8526. width:100%;
  8527. }
  8528. #u41637_text {
  8529. border-width:0px;
  8530. word-wrap:break-word;
  8531. text-transform:none;
  8532. }
  8533. #u41638_div {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:0px;
  8537. top:0px;
  8538. width:36px;
  8539. height:40px;
  8540. background:inherit;
  8541. background-color:rgba(255, 255, 255, 0);
  8542. border-left:0px;
  8543. border-top:0px;
  8544. border-right:0px;
  8545. border-radius:0px;
  8546. border-bottom-right-radius:0px;
  8547. border-bottom-left-radius:0px;
  8548. filter:drop-shadow(none);
  8549. transition:none;
  8550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8551. font-weight:400;
  8552. font-style:normal;
  8553. font-size:14px;
  8554. line-height:40px;
  8555. }
  8556. #u41638 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:502px;
  8560. top:389px;
  8561. width:36px;
  8562. height:40px;
  8563. display:flex;
  8564. transition:none;
  8565. transform-origin:50% 50%;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:14px;
  8570. line-height:40px;
  8571. }
  8572. #u41638 .text {
  8573. position:absolute;
  8574. align-self:flex-start;
  8575. padding:0px 0px 0px 0px;
  8576. box-sizing:border-box;
  8577. width:100%;
  8578. }
  8579. #u41638_text {
  8580. border-width:0px;
  8581. white-space:nowrap;
  8582. text-transform:none;
  8583. }
  8584. #u41639 {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:0px;
  8590. height:0px;
  8591. }
  8592. #u41640 {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:0px;
  8596. top:0px;
  8597. width:0px;
  8598. height:0px;
  8599. }
  8600. #u41641 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:837px;
  8604. top:527px;
  8605. width:7px;
  8606. height:12px;
  8607. display:flex;
  8608. -webkit-transform:rotate(180deg);
  8609. -moz-transform:rotate(180deg);
  8610. -ms-transform:rotate(180deg);
  8611. transform:rotate(180deg);
  8612. transition:none;
  8613. }
  8614. #u41641 .text {
  8615. position:absolute;
  8616. align-self:center;
  8617. padding:2px 2px 2px 2px;
  8618. box-sizing:border-box;
  8619. width:100%;
  8620. }
  8621. #u41641_img {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:7px;
  8627. height:12px;
  8628. }
  8629. #u41641_text {
  8630. border-width:0px;
  8631. word-wrap:break-word;
  8632. text-transform:none;
  8633. visibility:hidden;
  8634. }
  8635. #u41642_div {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:235px;
  8641. height:40px;
  8642. background:inherit;
  8643. background-color:rgba(255, 255, 255, 0);
  8644. border-left:0px;
  8645. border-top:0px;
  8646. border-right:0px;
  8647. border-radius:0px;
  8648. border-bottom-right-radius:0px;
  8649. border-bottom-left-radius:0px;
  8650. filter:drop-shadow(none);
  8651. transition:none;
  8652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8653. font-weight:400;
  8654. font-style:normal;
  8655. font-size:14px;
  8656. color:#AAAAAA;
  8657. line-height:40px;
  8658. }
  8659. #u41642 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:502px;
  8663. top:513px;
  8664. width:235px;
  8665. height:40px;
  8666. display:flex;
  8667. transition:none;
  8668. transform-origin:50% 50%;
  8669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. font-size:14px;
  8673. color:#AAAAAA;
  8674. line-height:40px;
  8675. }
  8676. #u41642 .text {
  8677. position:absolute;
  8678. align-self:flex-start;
  8679. padding:0px 0px 0px 0px;
  8680. box-sizing:border-box;
  8681. width:100%;
  8682. }
  8683. #u41642_text {
  8684. border-width:0px;
  8685. word-wrap:break-word;
  8686. text-transform:none;
  8687. }
  8688. #u41643_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:36px;
  8694. height:40px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 0);
  8697. border-left:0px;
  8698. border-top:0px;
  8699. border-right:0px;
  8700. border-radius:0px;
  8701. border-bottom-right-radius:0px;
  8702. border-bottom-left-radius:0px;
  8703. filter:drop-shadow(none);
  8704. transition:none;
  8705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8706. font-weight:400;
  8707. font-style:normal;
  8708. font-size:14px;
  8709. line-height:40px;
  8710. }
  8711. #u41643 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:502px;
  8715. top:473px;
  8716. width:36px;
  8717. height:40px;
  8718. display:flex;
  8719. transition:none;
  8720. transform-origin:50% 50%;
  8721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. font-size:14px;
  8725. line-height:40px;
  8726. }
  8727. #u41643 .text {
  8728. position:absolute;
  8729. align-self:flex-start;
  8730. padding:0px 0px 0px 0px;
  8731. box-sizing:border-box;
  8732. width:100%;
  8733. }
  8734. #u41643_text {
  8735. border-width:0px;
  8736. white-space:nowrap;
  8737. text-transform:none;
  8738. }
  8739. #u41644 {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:0px;
  8745. height:0px;
  8746. }
  8747. #u41645_div {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:0px;
  8751. top:0px;
  8752. width:346px;
  8753. height:222px;
  8754. background:inherit;
  8755. background-color:rgba(255, 255, 255, 1);
  8756. border-radius:9px;
  8757. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  8758. transition:none;
  8759. }
  8760. #u41645 {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:473px;
  8764. top:930px;
  8765. width:346px;
  8766. height:222px;
  8767. display:flex;
  8768. transition:none;
  8769. transform-origin:50% 50%;
  8770. }
  8771. #u41645 .text {
  8772. position:absolute;
  8773. align-self:center;
  8774. padding:2px 2px 2px 2px;
  8775. box-sizing:border-box;
  8776. width:100%;
  8777. }
  8778. #u41645_text {
  8779. border-width:0px;
  8780. word-wrap:break-word;
  8781. text-transform:none;
  8782. visibility:hidden;
  8783. }
  8784. #u41646 {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:473px;
  8788. top:1081px;
  8789. width:346px;
  8790. height:1px;
  8791. display:flex;
  8792. transition:none;
  8793. }
  8794. #u41646 .text {
  8795. position:absolute;
  8796. align-self:center;
  8797. padding:2px 2px 2px 2px;
  8798. box-sizing:border-box;
  8799. width:100%;
  8800. }
  8801. #u41646_img {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:347px;
  8807. height:2px;
  8808. }
  8809. #u41646_text {
  8810. border-width:0px;
  8811. word-wrap:break-word;
  8812. text-transform:none;
  8813. visibility:hidden;
  8814. }
  8815. #u41647 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:638px;
  8819. top:1085px;
  8820. width:1px;
  8821. height:67px;
  8822. display:flex;
  8823. transition:none;
  8824. }
  8825. #u41647 .text {
  8826. position:absolute;
  8827. align-self:center;
  8828. padding:2px 2px 2px 2px;
  8829. box-sizing:border-box;
  8830. width:100%;
  8831. }
  8832. #u41647_img {
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:0px;
  8836. top:0px;
  8837. width:2px;
  8838. height:68px;
  8839. }
  8840. #u41647_text {
  8841. border-width:0px;
  8842. word-wrap:break-word;
  8843. text-transform:none;
  8844. visibility:hidden;
  8845. }
  8846. #u41648 {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:473px;
  8850. top:1081px;
  8851. width:346px;
  8852. height:1px;
  8853. display:flex;
  8854. transition:none;
  8855. }
  8856. #u41648 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 2px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u41648_img {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:0px;
  8867. top:0px;
  8868. width:347px;
  8869. height:2px;
  8870. }
  8871. #u41648_text {
  8872. border-width:0px;
  8873. word-wrap:break-word;
  8874. text-transform:none;
  8875. visibility:hidden;
  8876. }
  8877. #u41649 {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:638px;
  8881. top:1085px;
  8882. width:1px;
  8883. height:67px;
  8884. display:flex;
  8885. transition:none;
  8886. }
  8887. #u41649 .text {
  8888. position:absolute;
  8889. align-self:center;
  8890. padding:2px 2px 2px 2px;
  8891. box-sizing:border-box;
  8892. width:100%;
  8893. }
  8894. #u41649_img {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:0px;
  8898. top:0px;
  8899. width:2px;
  8900. height:68px;
  8901. }
  8902. #u41649_text {
  8903. border-width:0px;
  8904. word-wrap:break-word;
  8905. text-transform:none;
  8906. visibility:hidden;
  8907. }
  8908. #u41650_div {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:105px;
  8914. height:30px;
  8915. background:inherit;
  8916. background-color:rgba(255, 255, 255, 0);
  8917. border-radius:0px;
  8918. filter:drop-shadow(none);
  8919. transition:none;
  8920. font-family:'ArialMT', 'Arial', sans-serif;
  8921. font-weight:400;
  8922. font-style:normal;
  8923. font-size:22px;
  8924. color:#0099FF;
  8925. text-align:center;
  8926. }
  8927. #u41650 {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:506px;
  8931. top:1107px;
  8932. width:105px;
  8933. height:30px;
  8934. display:flex;
  8935. transition:none;
  8936. transform-origin:50% 50%;
  8937. font-family:'ArialMT', 'Arial', sans-serif;
  8938. font-weight:400;
  8939. font-style:normal;
  8940. font-size:22px;
  8941. color:#0099FF;
  8942. text-align:center;
  8943. }
  8944. #u41650 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:0px 0px 0px 0px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u41650_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. }
  8956. #u41651_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:105px;
  8962. height:30px;
  8963. background:inherit;
  8964. background-color:rgba(255, 255, 255, 0);
  8965. border-radius:0px;
  8966. filter:drop-shadow(none);
  8967. transition:none;
  8968. font-family:'ArialMT', 'Arial', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:22px;
  8972. color:#0099FF;
  8973. text-align:center;
  8974. }
  8975. #u41651 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:679px;
  8979. top:1107px;
  8980. width:105px;
  8981. height:30px;
  8982. display:flex;
  8983. transition:none;
  8984. transform-origin:50% 50%;
  8985. font-family:'ArialMT', 'Arial', sans-serif;
  8986. font-weight:400;
  8987. font-style:normal;
  8988. font-size:22px;
  8989. color:#0099FF;
  8990. text-align:center;
  8991. }
  8992. #u41651 .text {
  8993. position:absolute;
  8994. align-self:center;
  8995. padding:0px 0px 0px 0px;
  8996. box-sizing:border-box;
  8997. width:100%;
  8998. }
  8999. #u41651_text {
  9000. border-width:0px;
  9001. word-wrap:break-word;
  9002. text-transform:none;
  9003. }
  9004. #u41652_div {
  9005. border-width:0px;
  9006. position:absolute;
  9007. left:0px;
  9008. top:0px;
  9009. width:126px;
  9010. height:40px;
  9011. background:inherit;
  9012. background-color:rgba(255, 255, 255, 0);
  9013. border-radius:0px;
  9014. filter:drop-shadow(none);
  9015. transition:none;
  9016. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9017. font-weight:650;
  9018. font-style:normal;
  9019. font-size:22px;
  9020. text-align:center;
  9021. }
  9022. #u41652 {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:582px;
  9026. top:946px;
  9027. width:126px;
  9028. height:40px;
  9029. display:flex;
  9030. transition:none;
  9031. transform-origin:50% 50%;
  9032. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9033. font-weight:650;
  9034. font-style:normal;
  9035. font-size:22px;
  9036. text-align:center;
  9037. }
  9038. #u41652 .text {
  9039. position:absolute;
  9040. align-self:center;
  9041. padding:0px 0px 0px 0px;
  9042. box-sizing:border-box;
  9043. width:100%;
  9044. }
  9045. #u41652_text {
  9046. border-width:0px;
  9047. word-wrap:break-word;
  9048. text-transform:none;
  9049. }
  9050. #u41653_div {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:280px;
  9056. height:50px;
  9057. background:inherit;
  9058. background-color:rgba(255, 255, 255, 0);
  9059. border-radius:0px;
  9060. filter:drop-shadow(none);
  9061. transition:none;
  9062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9063. font-weight:400;
  9064. font-style:normal;
  9065. font-size:18px;
  9066. text-align:center;
  9067. }
  9068. #u41653 {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:506px;
  9072. top:999px;
  9073. width:280px;
  9074. height:50px;
  9075. display:flex;
  9076. transition:none;
  9077. transform-origin:50% 50%;
  9078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9079. font-weight:400;
  9080. font-style:normal;
  9081. font-size:18px;
  9082. text-align:center;
  9083. }
  9084. #u41653 .text {
  9085. position:absolute;
  9086. align-self:flex-start;
  9087. padding:0px 0px 0px 0px;
  9088. box-sizing:border-box;
  9089. width:100%;
  9090. }
  9091. #u41653_text {
  9092. border-width:0px;
  9093. word-wrap:break-word;
  9094. text-transform:none;
  9095. }
  9096. #u41654 {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:906px;
  9100. top:0px;
  9101. width:433px;
  9102. height:865px;
  9103. }
  9104. #u41655 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:433px;
  9110. height:865px;
  9111. display:flex;
  9112. transition:none;
  9113. }
  9114. #u41655 .text {
  9115. position:absolute;
  9116. align-self:center;
  9117. padding:2px 2px 2px 2px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u41655_img {
  9122. border-width:0px;
  9123. position:absolute;
  9124. left:0px;
  9125. top:0px;
  9126. width:433px;
  9127. height:865px;
  9128. }
  9129. #u41655_text {
  9130. border-width:0px;
  9131. word-wrap:break-word;
  9132. text-transform:none;
  9133. visibility:hidden;
  9134. }
  9135. #u41656_div {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:0px;
  9139. top:0px;
  9140. width:375px;
  9141. height:40px;
  9142. background:inherit;
  9143. background-color:rgba(255, 255, 255, 1);
  9144. box-sizing:border-box;
  9145. border-width:1px;
  9146. border-style:solid;
  9147. border-color:rgba(215, 215, 215, 1);
  9148. border-left:0px;
  9149. border-top:0px;
  9150. border-right:0px;
  9151. border-radius:0px;
  9152. border-bottom-right-radius:0px;
  9153. border-bottom-left-radius:0px;
  9154. filter:drop-shadow(none);
  9155. transition:none;
  9156. }
  9157. #u41656 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:29px;
  9161. top:67px;
  9162. width:375px;
  9163. height:40px;
  9164. display:flex;
  9165. transition:none;
  9166. transform-origin:50% 50%;
  9167. }
  9168. #u41656 .text {
  9169. position:absolute;
  9170. align-self:center;
  9171. padding:2px 2px 2px 2px;
  9172. box-sizing:border-box;
  9173. width:100%;
  9174. }
  9175. #u41656_text {
  9176. border-width:0px;
  9177. word-wrap:break-word;
  9178. text-transform:none;
  9179. visibility:hidden;
  9180. }
  9181. #u41657 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:0px;
  9187. height:0px;
  9188. }
  9189. #u41658_div {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:88px;
  9195. height:32px;
  9196. background:inherit;
  9197. background-color:rgba(255, 255, 255, 1);
  9198. box-sizing:border-box;
  9199. border-width:1px;
  9200. border-style:solid;
  9201. border-color:rgba(242, 242, 242, 1);
  9202. border-radius:33px;
  9203. filter:drop-shadow(none);
  9204. transition:none;
  9205. }
  9206. #u41658 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:309px;
  9210. top:71px;
  9211. width:88px;
  9212. height:32px;
  9213. display:flex;
  9214. transition:none;
  9215. transform-origin:50% 50%;
  9216. }
  9217. #u41658 .text {
  9218. position:absolute;
  9219. align-self:center;
  9220. padding:2px 2px 2px 2px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u41658_text {
  9225. border-width:0px;
  9226. word-wrap:break-word;
  9227. text-transform:none;
  9228. visibility:hidden;
  9229. }
  9230. #u41659 {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:0px;
  9236. height:0px;
  9237. }
  9238. #u41660 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:372px;
  9242. top:78px;
  9243. width:18px;
  9244. height:18px;
  9245. display:flex;
  9246. transition:none;
  9247. }
  9248. #u41660 .text {
  9249. position:absolute;
  9250. align-self:center;
  9251. padding:2px 2px 2px 2px;
  9252. box-sizing:border-box;
  9253. width:100%;
  9254. }
  9255. #u41660_img {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:18px;
  9261. height:18px;
  9262. }
  9263. #u41660_text {
  9264. border-width:0px;
  9265. word-wrap:break-word;
  9266. text-transform:none;
  9267. visibility:hidden;
  9268. }
  9269. #u41661 {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:378px;
  9273. top:84px;
  9274. width:6px;
  9275. height:6px;
  9276. display:flex;
  9277. transition:none;
  9278. }
  9279. #u41661 .text {
  9280. position:absolute;
  9281. align-self:center;
  9282. padding:2px 2px 2px 2px;
  9283. box-sizing:border-box;
  9284. width:100%;
  9285. }
  9286. #u41661_img {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:0px;
  9290. top:0px;
  9291. width:6px;
  9292. height:6px;
  9293. }
  9294. #u41661_text {
  9295. border-width:0px;
  9296. word-wrap:break-word;
  9297. text-transform:none;
  9298. visibility:hidden;
  9299. }
  9300. #u41662 {
  9301. border-width:0px;
  9302. position:absolute;
  9303. left:0px;
  9304. top:0px;
  9305. width:0px;
  9306. height:0px;
  9307. }
  9308. #u41663 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:323px;
  9312. top:85px;
  9313. width:5px;
  9314. height:5px;
  9315. display:flex;
  9316. transition:none;
  9317. }
  9318. #u41663 .text {
  9319. position:absolute;
  9320. align-self:center;
  9321. padding:2px 2px 2px 2px;
  9322. box-sizing:border-box;
  9323. width:100%;
  9324. }
  9325. #u41663_img {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:5px;
  9331. height:5px;
  9332. }
  9333. #u41663_text {
  9334. border-width:0px;
  9335. word-wrap:break-word;
  9336. text-transform:none;
  9337. visibility:hidden;
  9338. }
  9339. #u41664 {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:339px;
  9343. top:85px;
  9344. width:5px;
  9345. height:5px;
  9346. display:flex;
  9347. transition:none;
  9348. }
  9349. #u41664 .text {
  9350. position:absolute;
  9351. align-self:center;
  9352. padding:2px 2px 2px 2px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u41664_img {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:5px;
  9362. height:5px;
  9363. }
  9364. #u41664_text {
  9365. border-width:0px;
  9366. word-wrap:break-word;
  9367. text-transform:none;
  9368. visibility:hidden;
  9369. }
  9370. #u41665 {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:330px;
  9374. top:84px;
  9375. width:7px;
  9376. height:7px;
  9377. display:flex;
  9378. transition:none;
  9379. }
  9380. #u41665 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 2px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u41665_img {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:0px;
  9391. top:0px;
  9392. width:7px;
  9393. height:7px;
  9394. }
  9395. #u41665_text {
  9396. border-width:0px;
  9397. word-wrap:break-word;
  9398. text-transform:none;
  9399. visibility:hidden;
  9400. }
  9401. #u41666 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:347px;
  9405. top:87px;
  9406. width:18px;
  9407. height:1px;
  9408. display:flex;
  9409. -webkit-transform:rotate(90deg);
  9410. -moz-transform:rotate(90deg);
  9411. -ms-transform:rotate(90deg);
  9412. transform:rotate(90deg);
  9413. transition:none;
  9414. }
  9415. #u41666 .text {
  9416. position:absolute;
  9417. align-self:center;
  9418. padding:2px 2px 2px 2px;
  9419. box-sizing:border-box;
  9420. width:100%;
  9421. }
  9422. #u41666_img {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:0px;
  9426. top:0px;
  9427. width:19px;
  9428. height:2px;
  9429. }
  9430. #u41666_text {
  9431. border-width:0px;
  9432. word-wrap:break-word;
  9433. text-transform:none;
  9434. visibility:hidden;
  9435. }
  9436. #u41667 {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:29px;
  9440. top:24px;
  9441. width:375px;
  9442. height:44px;
  9443. display:flex;
  9444. transition:none;
  9445. }
  9446. #u41667 .text {
  9447. position:absolute;
  9448. align-self:center;
  9449. padding:2px 2px 2px 2px;
  9450. box-sizing:border-box;
  9451. width:100%;
  9452. }
  9453. #u41667_img {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:375px;
  9459. height:44px;
  9460. }
  9461. #u41667_text {
  9462. border-width:0px;
  9463. word-wrap:break-word;
  9464. text-transform:none;
  9465. visibility:hidden;
  9466. }
  9467. #u41668_div {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:0px;
  9471. top:0px;
  9472. width:375px;
  9473. height:50px;
  9474. background:inherit;
  9475. background-color:rgba(255, 255, 255, 1);
  9476. box-sizing:border-box;
  9477. border-width:1px;
  9478. border-style:solid;
  9479. border-color:rgba(242, 242, 242, 1);
  9480. border-radius:26px;
  9481. border-top-left-radius:0px;
  9482. border-top-right-radius:0px;
  9483. filter:drop-shadow(none);
  9484. transition:none;
  9485. }
  9486. #u41668 {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:29px;
  9490. top:788px;
  9491. width:375px;
  9492. height:50px;
  9493. display:flex;
  9494. transition:none;
  9495. transform-origin:50% 50%;
  9496. }
  9497. #u41668 .text {
  9498. position:absolute;
  9499. align-self:center;
  9500. padding:2px 2px 2px 2px;
  9501. box-sizing:border-box;
  9502. width:100%;
  9503. }
  9504. #u41668_text {
  9505. border-width:0px;
  9506. word-wrap:break-word;
  9507. text-transform:none;
  9508. visibility:hidden;
  9509. }
  9510. #u41669 {
  9511. border-width:0px;
  9512. position:absolute;
  9513. left:0px;
  9514. top:0px;
  9515. width:0px;
  9516. height:0px;
  9517. }
  9518. #u41670 {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:69px;
  9522. top:792px;
  9523. width:24px;
  9524. height:24px;
  9525. display:flex;
  9526. transition:none;
  9527. font-size:8px;
  9528. }
  9529. #u41670 .text {
  9530. position:absolute;
  9531. align-self:center;
  9532. padding:2px 2px 2px 2px;
  9533. box-sizing:border-box;
  9534. width:100%;
  9535. }
  9536. #u41670_img {
  9537. border-width:0px;
  9538. position:absolute;
  9539. left:0px;
  9540. top:0px;
  9541. width:24px;
  9542. height:24px;
  9543. }
  9544. #u41670_text {
  9545. border-width:0px;
  9546. word-wrap:break-word;
  9547. text-transform:none;
  9548. }
  9549. #u41671_div {
  9550. border-width:0px;
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:25px;
  9555. height:17px;
  9556. background:inherit;
  9557. background-color:rgba(255, 255, 255, 0);
  9558. border-radius:0px;
  9559. filter:drop-shadow(none);
  9560. transition:none;
  9561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9562. font-weight:400;
  9563. font-style:normal;
  9564. font-size:12px;
  9565. }
  9566. #u41671 {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:69px;
  9570. top:817px;
  9571. width:25px;
  9572. height:17px;
  9573. display:flex;
  9574. transition:none;
  9575. transform-origin:50% 50%;
  9576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9577. font-weight:400;
  9578. font-style:normal;
  9579. font-size:12px;
  9580. }
  9581. #u41671 .text {
  9582. position:absolute;
  9583. align-self:flex-start;
  9584. padding:0px 0px 0px 0px;
  9585. box-sizing:border-box;
  9586. width:100%;
  9587. }
  9588. #u41671_text {
  9589. border-width:0px;
  9590. white-space:nowrap;
  9591. text-transform:none;
  9592. }
  9593. #u41672 {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:0px;
  9597. top:0px;
  9598. width:0px;
  9599. height:0px;
  9600. }
  9601. #u41673 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:339px;
  9605. top:794px;
  9606. width:24px;
  9607. height:24px;
  9608. display:flex;
  9609. transition:none;
  9610. font-size:8px;
  9611. }
  9612. #u41673 .text {
  9613. position:absolute;
  9614. align-self:center;
  9615. padding:2px 2px 2px 2px;
  9616. box-sizing:border-box;
  9617. width:100%;
  9618. }
  9619. #u41673_img {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:24px;
  9625. height:24px;
  9626. }
  9627. #u41673_text {
  9628. border-width:0px;
  9629. word-wrap:break-word;
  9630. text-transform:none;
  9631. }
  9632. #u41674_div {
  9633. border-width:0px;
  9634. position:absolute;
  9635. left:0px;
  9636. top:0px;
  9637. width:25px;
  9638. height:17px;
  9639. background:inherit;
  9640. background-color:rgba(255, 255, 255, 0);
  9641. border-radius:0px;
  9642. filter:drop-shadow(none);
  9643. transition:none;
  9644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9645. font-weight:400;
  9646. font-style:normal;
  9647. font-size:12px;
  9648. }
  9649. #u41674 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:339px;
  9653. top:819px;
  9654. width:25px;
  9655. height:17px;
  9656. display:flex;
  9657. transition:none;
  9658. transform-origin:50% 50%;
  9659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9660. font-weight:400;
  9661. font-style:normal;
  9662. font-size:12px;
  9663. }
  9664. #u41674 .text {
  9665. position:absolute;
  9666. align-self:flex-start;
  9667. padding:0px 0px 0px 0px;
  9668. box-sizing:border-box;
  9669. width:100%;
  9670. }
  9671. #u41674_text {
  9672. border-width:0px;
  9673. white-space:nowrap;
  9674. text-transform:none;
  9675. }
  9676. #u41675_div {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:0px;
  9680. top:0px;
  9681. width:375px;
  9682. height:681px;
  9683. background:inherit;
  9684. background-color:rgba(242, 242, 242, 0.4627450980392157);
  9685. border-radius:0px;
  9686. filter:drop-shadow(none);
  9687. transition:none;
  9688. }
  9689. #u41675 {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:29px;
  9693. top:107px;
  9694. width:375px;
  9695. height:681px;
  9696. display:flex;
  9697. transition:none;
  9698. transform-origin:50% 50%;
  9699. }
  9700. #u41675 .text {
  9701. position:absolute;
  9702. align-self:center;
  9703. padding:2px 2px 2px 2px;
  9704. box-sizing:border-box;
  9705. width:100%;
  9706. }
  9707. #u41675_text {
  9708. border-width:0px;
  9709. word-wrap:break-word;
  9710. text-transform:none;
  9711. visibility:hidden;
  9712. }
  9713. #u41676 {
  9714. border-width:0px;
  9715. position:absolute;
  9716. left:0px;
  9717. top:0px;
  9718. width:0px;
  9719. height:0px;
  9720. }
  9721. #u41677 {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:251px;
  9725. top:792px;
  9726. width:24px;
  9727. height:24px;
  9728. display:flex;
  9729. transition:none;
  9730. font-size:8px;
  9731. }
  9732. #u41677 .text {
  9733. position:absolute;
  9734. align-self:center;
  9735. padding:2px 2px 2px 2px;
  9736. box-sizing:border-box;
  9737. width:100%;
  9738. }
  9739. #u41677_img {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:0px;
  9743. top:0px;
  9744. width:24px;
  9745. height:24px;
  9746. }
  9747. #u41677_text {
  9748. border-width:0px;
  9749. word-wrap:break-word;
  9750. text-transform:none;
  9751. }
  9752. #u41678_div {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:37px;
  9758. height:17px;
  9759. background:inherit;
  9760. background-color:rgba(255, 255, 255, 0);
  9761. border-radius:0px;
  9762. filter:drop-shadow(none);
  9763. transition:none;
  9764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9765. font-weight:400;
  9766. font-style:normal;
  9767. font-size:12px;
  9768. }
  9769. #u41678 {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:245px;
  9773. top:817px;
  9774. width:37px;
  9775. height:17px;
  9776. display:flex;
  9777. transition:none;
  9778. transform-origin:50% 50%;
  9779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9780. font-weight:400;
  9781. font-style:normal;
  9782. font-size:12px;
  9783. }
  9784. #u41678 .text {
  9785. position:absolute;
  9786. align-self:flex-start;
  9787. padding:0px 0px 0px 0px;
  9788. box-sizing:border-box;
  9789. width:100%;
  9790. }
  9791. #u41678_text {
  9792. border-width:0px;
  9793. white-space:nowrap;
  9794. text-transform:none;
  9795. }
  9796. #u41679 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:0px;
  9800. top:0px;
  9801. width:0px;
  9802. height:0px;
  9803. }
  9804. #u41680 {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:157px;
  9808. top:792px;
  9809. width:24px;
  9810. height:24px;
  9811. display:flex;
  9812. transition:none;
  9813. font-size:8px;
  9814. }
  9815. #u41680 .text {
  9816. position:absolute;
  9817. align-self:center;
  9818. padding:2px 2px 2px 2px;
  9819. box-sizing:border-box;
  9820. width:100%;
  9821. }
  9822. #u41680_img {
  9823. border-width:0px;
  9824. position:absolute;
  9825. left:0px;
  9826. top:0px;
  9827. width:24px;
  9828. height:24px;
  9829. }
  9830. #u41680_text {
  9831. border-width:0px;
  9832. word-wrap:break-word;
  9833. text-transform:none;
  9834. }
  9835. #u41681_div {
  9836. border-width:0px;
  9837. position:absolute;
  9838. left:0px;
  9839. top:0px;
  9840. width:37px;
  9841. height:17px;
  9842. background:inherit;
  9843. background-color:rgba(255, 255, 255, 0);
  9844. border-radius:0px;
  9845. filter:drop-shadow(none);
  9846. transition:none;
  9847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9848. font-weight:400;
  9849. font-style:normal;
  9850. font-size:12px;
  9851. }
  9852. #u41681 {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:151px;
  9856. top:817px;
  9857. width:37px;
  9858. height:17px;
  9859. display:flex;
  9860. transition:none;
  9861. transform-origin:50% 50%;
  9862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9863. font-weight:400;
  9864. font-style:normal;
  9865. font-size:12px;
  9866. }
  9867. #u41681 .text {
  9868. position:absolute;
  9869. align-self:flex-start;
  9870. padding:0px 0px 0px 0px;
  9871. box-sizing:border-box;
  9872. width:100%;
  9873. }
  9874. #u41681_text {
  9875. border-width:0px;
  9876. white-space:nowrap;
  9877. text-transform:none;
  9878. }
  9879. #u41682_div {
  9880. border-width:0px;
  9881. position:absolute;
  9882. left:0px;
  9883. top:0px;
  9884. width:375px;
  9885. height:732px;
  9886. background:inherit;
  9887. background-color:rgba(244, 244, 244, 1);
  9888. box-sizing:border-box;
  9889. border-width:1px;
  9890. border-style:solid;
  9891. border-color:rgba(242, 242, 242, 1);
  9892. border-radius:26px;
  9893. border-top-left-radius:0px;
  9894. border-top-right-radius:0px;
  9895. filter:drop-shadow(none);
  9896. transition:none;
  9897. }
  9898. #u41682 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:935px;
  9902. top:107px;
  9903. width:375px;
  9904. height:732px;
  9905. display:flex;
  9906. transition:none;
  9907. transform-origin:50% 50%;
  9908. }
  9909. #u41682 .text {
  9910. position:absolute;
  9911. align-self:center;
  9912. padding:2px 2px 2px 2px;
  9913. box-sizing:border-box;
  9914. width:100%;
  9915. }
  9916. #u41682_text {
  9917. border-width:0px;
  9918. word-wrap:break-word;
  9919. text-transform:none;
  9920. visibility:hidden;
  9921. }
  9922. #u41683_div {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:0px;
  9926. top:0px;
  9927. width:375px;
  9928. height:732px;
  9929. background:inherit;
  9930. background-color:rgba(242, 242, 242, 1);
  9931. box-sizing:border-box;
  9932. border-width:1px;
  9933. border-style:solid;
  9934. border-color:rgba(242, 242, 242, 1);
  9935. border-radius:26px;
  9936. border-top-left-radius:0px;
  9937. border-top-right-radius:0px;
  9938. filter:drop-shadow(none);
  9939. transition:none;
  9940. }
  9941. #u41683 {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:935px;
  9945. top:107px;
  9946. width:375px;
  9947. height:732px;
  9948. display:flex;
  9949. transition:none;
  9950. transform-origin:50% 50%;
  9951. }
  9952. #u41683 .text {
  9953. position:absolute;
  9954. align-self:center;
  9955. padding:2px 2px 2px 2px;
  9956. box-sizing:border-box;
  9957. width:100%;
  9958. }
  9959. #u41683_text {
  9960. border-width:0px;
  9961. word-wrap:break-word;
  9962. text-transform:none;
  9963. visibility:hidden;
  9964. }
  9965. #u41684 {
  9966. border-width:0px;
  9967. position:absolute;
  9968. left:0px;
  9969. top:0px;
  9970. width:0px;
  9971. height:0px;
  9972. }
  9973. #u41685_div {
  9974. border-width:0px;
  9975. position:absolute;
  9976. left:0px;
  9977. top:0px;
  9978. width:375px;
  9979. height:40px;
  9980. background:inherit;
  9981. background-color:rgba(255, 255, 255, 1);
  9982. border-left:0px;
  9983. border-top:0px;
  9984. border-right:0px;
  9985. border-radius:0px;
  9986. border-bottom-right-radius:0px;
  9987. border-bottom-left-radius:0px;
  9988. filter:drop-shadow(none);
  9989. transition:none;
  9990. }
  9991. #u41685 {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:935px;
  9995. top:67px;
  9996. width:375px;
  9997. height:40px;
  9998. display:flex;
  9999. transition:none;
  10000. transform-origin:50% 50%;
  10001. }
  10002. #u41685 .text {
  10003. position:absolute;
  10004. align-self:center;
  10005. padding:2px 2px 2px 2px;
  10006. box-sizing:border-box;
  10007. width:100%;
  10008. }
  10009. #u41685_text {
  10010. border-width:0px;
  10011. word-wrap:break-word;
  10012. text-transform:none;
  10013. visibility:hidden;
  10014. }
  10015. #u41686 {
  10016. border-width:0px;
  10017. position:absolute;
  10018. left:0px;
  10019. top:0px;
  10020. width:0px;
  10021. height:0px;
  10022. }
  10023. #u41687_div {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:0px;
  10027. top:0px;
  10028. width:88px;
  10029. height:32px;
  10030. background:inherit;
  10031. background-color:rgba(255, 255, 255, 1);
  10032. box-sizing:border-box;
  10033. border-width:1px;
  10034. border-style:solid;
  10035. border-color:rgba(242, 242, 242, 1);
  10036. border-radius:33px;
  10037. filter:drop-shadow(none);
  10038. transition:none;
  10039. }
  10040. #u41687 {
  10041. border-width:0px;
  10042. position:absolute;
  10043. left:1212px;
  10044. top:69px;
  10045. width:88px;
  10046. height:32px;
  10047. display:flex;
  10048. transition:none;
  10049. transform-origin:50% 50%;
  10050. }
  10051. #u41687 .text {
  10052. position:absolute;
  10053. align-self:center;
  10054. padding:2px 2px 2px 2px;
  10055. box-sizing:border-box;
  10056. width:100%;
  10057. }
  10058. #u41687_text {
  10059. border-width:0px;
  10060. word-wrap:break-word;
  10061. text-transform:none;
  10062. visibility:hidden;
  10063. }
  10064. #u41688 {
  10065. border-width:0px;
  10066. position:absolute;
  10067. left:0px;
  10068. top:0px;
  10069. width:0px;
  10070. height:0px;
  10071. }
  10072. #u41689 {
  10073. border-width:0px;
  10074. position:absolute;
  10075. left:1275px;
  10076. top:76px;
  10077. width:18px;
  10078. height:18px;
  10079. display:flex;
  10080. transition:none;
  10081. }
  10082. #u41689 .text {
  10083. position:absolute;
  10084. align-self:center;
  10085. padding:2px 2px 2px 2px;
  10086. box-sizing:border-box;
  10087. width:100%;
  10088. }
  10089. #u41689_img {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:0px;
  10093. top:0px;
  10094. width:18px;
  10095. height:18px;
  10096. }
  10097. #u41689_text {
  10098. border-width:0px;
  10099. word-wrap:break-word;
  10100. text-transform:none;
  10101. visibility:hidden;
  10102. }
  10103. #u41690 {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:1281px;
  10107. top:82px;
  10108. width:6px;
  10109. height:6px;
  10110. display:flex;
  10111. transition:none;
  10112. }
  10113. #u41690 .text {
  10114. position:absolute;
  10115. align-self:center;
  10116. padding:2px 2px 2px 2px;
  10117. box-sizing:border-box;
  10118. width:100%;
  10119. }
  10120. #u41690_img {
  10121. border-width:0px;
  10122. position:absolute;
  10123. left:0px;
  10124. top:0px;
  10125. width:6px;
  10126. height:6px;
  10127. }
  10128. #u41690_text {
  10129. border-width:0px;
  10130. word-wrap:break-word;
  10131. text-transform:none;
  10132. visibility:hidden;
  10133. }
  10134. #u41691 {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:0px;
  10138. top:0px;
  10139. width:0px;
  10140. height:0px;
  10141. }
  10142. #u41692 {
  10143. border-width:0px;
  10144. position:absolute;
  10145. left:1226px;
  10146. top:83px;
  10147. width:5px;
  10148. height:5px;
  10149. display:flex;
  10150. transition:none;
  10151. }
  10152. #u41692 .text {
  10153. position:absolute;
  10154. align-self:center;
  10155. padding:2px 2px 2px 2px;
  10156. box-sizing:border-box;
  10157. width:100%;
  10158. }
  10159. #u41692_img {
  10160. border-width:0px;
  10161. position:absolute;
  10162. left:0px;
  10163. top:0px;
  10164. width:5px;
  10165. height:5px;
  10166. }
  10167. #u41692_text {
  10168. border-width:0px;
  10169. word-wrap:break-word;
  10170. text-transform:none;
  10171. visibility:hidden;
  10172. }
  10173. #u41693 {
  10174. border-width:0px;
  10175. position:absolute;
  10176. left:1242px;
  10177. top:83px;
  10178. width:5px;
  10179. height:5px;
  10180. display:flex;
  10181. transition:none;
  10182. }
  10183. #u41693 .text {
  10184. position:absolute;
  10185. align-self:center;
  10186. padding:2px 2px 2px 2px;
  10187. box-sizing:border-box;
  10188. width:100%;
  10189. }
  10190. #u41693_img {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:5px;
  10196. height:5px;
  10197. }
  10198. #u41693_text {
  10199. border-width:0px;
  10200. word-wrap:break-word;
  10201. text-transform:none;
  10202. visibility:hidden;
  10203. }
  10204. #u41694 {
  10205. border-width:0px;
  10206. position:absolute;
  10207. left:1233px;
  10208. top:82px;
  10209. width:7px;
  10210. height:7px;
  10211. display:flex;
  10212. transition:none;
  10213. }
  10214. #u41694 .text {
  10215. position:absolute;
  10216. align-self:center;
  10217. padding:2px 2px 2px 2px;
  10218. box-sizing:border-box;
  10219. width:100%;
  10220. }
  10221. #u41694_img {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:0px;
  10225. top:0px;
  10226. width:7px;
  10227. height:7px;
  10228. }
  10229. #u41694_text {
  10230. border-width:0px;
  10231. word-wrap:break-word;
  10232. text-transform:none;
  10233. visibility:hidden;
  10234. }
  10235. #u41695 {
  10236. border-width:0px;
  10237. position:absolute;
  10238. left:1250px;
  10239. top:85px;
  10240. width:18px;
  10241. height:1px;
  10242. display:flex;
  10243. -webkit-transform:rotate(90deg);
  10244. -moz-transform:rotate(90deg);
  10245. -ms-transform:rotate(90deg);
  10246. transform:rotate(90deg);
  10247. transition:none;
  10248. }
  10249. #u41695 .text {
  10250. position:absolute;
  10251. align-self:center;
  10252. padding:2px 2px 2px 2px;
  10253. box-sizing:border-box;
  10254. width:100%;
  10255. }
  10256. #u41695_img {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:19px;
  10262. height:2px;
  10263. }
  10264. #u41695_text {
  10265. border-width:0px;
  10266. word-wrap:break-word;
  10267. text-transform:none;
  10268. visibility:hidden;
  10269. }
  10270. #u41696_div {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:0px;
  10274. top:0px;
  10275. width:12px;
  10276. height:12px;
  10277. background:inherit;
  10278. background-color:rgba(255, 255, 255, 0);
  10279. box-sizing:border-box;
  10280. border-width:2px;
  10281. border-style:solid;
  10282. border-color:rgba(51, 51, 51, 1);
  10283. border-right:0px;
  10284. border-bottom:0px;
  10285. border-radius:0px;
  10286. border-top-right-radius:0px;
  10287. border-bottom-left-radius:0px;
  10288. filter:drop-shadow(none);
  10289. transition:none;
  10290. }
  10291. #u41696 {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:951px;
  10295. top:79px;
  10296. width:12px;
  10297. height:12px;
  10298. display:flex;
  10299. -webkit-transform:rotate(315deg);
  10300. -moz-transform:rotate(315deg);
  10301. -ms-transform:rotate(315deg);
  10302. transform:rotate(315deg);
  10303. transition:none;
  10304. transform-origin:50% 50%;
  10305. }
  10306. #u41696 .text {
  10307. position:absolute;
  10308. align-self:center;
  10309. padding:2px 2px 2px 2px;
  10310. box-sizing:border-box;
  10311. width:100%;
  10312. }
  10313. #u41696_text {
  10314. border-width:0px;
  10315. word-wrap:break-word;
  10316. text-transform:none;
  10317. visibility:hidden;
  10318. }
  10319. #u41697_div {
  10320. border-width:0px;
  10321. position:absolute;
  10322. left:0px;
  10323. top:0px;
  10324. width:109px;
  10325. height:25px;
  10326. background:inherit;
  10327. background-color:rgba(255, 255, 255, 0);
  10328. border-radius:0px;
  10329. filter:drop-shadow(none);
  10330. transition:none;
  10331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10332. font-weight:400;
  10333. font-style:normal;
  10334. font-size:18px;
  10335. }
  10336. #u41697 {
  10337. border-width:0px;
  10338. position:absolute;
  10339. left:965px;
  10340. top:72px;
  10341. width:109px;
  10342. height:25px;
  10343. display:flex;
  10344. transition:none;
  10345. transform-origin:50% 50%;
  10346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10347. font-weight:400;
  10348. font-style:normal;
  10349. font-size:18px;
  10350. }
  10351. #u41697 .text {
  10352. position:absolute;
  10353. align-self:flex-start;
  10354. padding:0px 0px 0px 0px;
  10355. box-sizing:border-box;
  10356. width:100%;
  10357. }
  10358. #u41697_text {
  10359. border-width:0px;
  10360. white-space:nowrap;
  10361. text-transform:none;
  10362. }
  10363. #u41698_div {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:0px;
  10367. top:0px;
  10368. width:375px;
  10369. height:612px;
  10370. background:inherit;
  10371. background-color:rgba(255, 255, 255, 0.996078431372549);
  10372. border-radius:0px;
  10373. filter:drop-shadow(none);
  10374. transition:none;
  10375. }
  10376. #u41698 {
  10377. border-width:0px;
  10378. position:absolute;
  10379. left:935px;
  10380. top:167px;
  10381. width:375px;
  10382. height:612px;
  10383. display:flex;
  10384. transition:none;
  10385. transform-origin:50% 50%;
  10386. }
  10387. #u41698 .text {
  10388. position:absolute;
  10389. align-self:center;
  10390. padding:2px 2px 2px 2px;
  10391. box-sizing:border-box;
  10392. width:100%;
  10393. }
  10394. #u41698_text {
  10395. border-width:0px;
  10396. word-wrap:break-word;
  10397. text-transform:none;
  10398. visibility:hidden;
  10399. }
  10400. #u41699_div {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:375px;
  10406. height:60px;
  10407. background:inherit;
  10408. background-color:rgba(255, 255, 255, 1);
  10409. border-top:0px;
  10410. border-radius:28px;
  10411. border-top-left-radius:0px;
  10412. border-top-right-radius:0px;
  10413. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  10414. transition:none;
  10415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:14px;
  10419. color:#FFFFFF;
  10420. }
  10421. #u41699 {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:935px;
  10425. top:780px;
  10426. width:375px;
  10427. height:60px;
  10428. display:flex;
  10429. transition:none;
  10430. transform-origin:50% 50%;
  10431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10432. font-weight:400;
  10433. font-style:normal;
  10434. font-size:14px;
  10435. color:#FFFFFF;
  10436. }
  10437. #u41699 .text {
  10438. position:absolute;
  10439. align-self:center;
  10440. padding:2px 2px 2px 2px;
  10441. box-sizing:border-box;
  10442. width:100%;
  10443. }
  10444. #u41699_text {
  10445. border-width:0px;
  10446. word-wrap:break-word;
  10447. text-transform:none;
  10448. visibility:hidden;
  10449. }
  10450. #u41700_div {
  10451. border-width:0px;
  10452. position:absolute;
  10453. left:0px;
  10454. top:0px;
  10455. width:324px;
  10456. height:40px;
  10457. background:inherit;
  10458. background-color:rgba(215, 215, 215, 1);
  10459. border-radius:63px;
  10460. filter:drop-shadow(none);
  10461. transition:none;
  10462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10463. font-weight:400;
  10464. font-style:normal;
  10465. font-size:14px;
  10466. color:#FFFFFF;
  10467. }
  10468. #u41700 {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:963px;
  10472. top:789px;
  10473. width:324px;
  10474. height:40px;
  10475. display:flex;
  10476. transition:none;
  10477. transform-origin:50% 50%;
  10478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10479. font-weight:400;
  10480. font-style:normal;
  10481. font-size:14px;
  10482. color:#FFFFFF;
  10483. }
  10484. #u41700 .text {
  10485. position:absolute;
  10486. align-self:center;
  10487. padding:2px 2px 2px 2px;
  10488. box-sizing:border-box;
  10489. width:100%;
  10490. }
  10491. #u41700_text {
  10492. border-width:0px;
  10493. word-wrap:break-word;
  10494. text-transform:none;
  10495. }
  10496. #u41701_div {
  10497. border-width:0px;
  10498. position:absolute;
  10499. left:0px;
  10500. top:0px;
  10501. width:343px;
  10502. height:200px;
  10503. background:inherit;
  10504. background-color:rgba(242, 242, 242, 1);
  10505. border-radius:6px;
  10506. filter:drop-shadow(none);
  10507. transition:none;
  10508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10509. font-weight:400;
  10510. font-style:normal;
  10511. font-size:14px;
  10512. color:#FFFFFF;
  10513. }
  10514. #u41701 {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:950px;
  10518. top:241px;
  10519. width:343px;
  10520. height:200px;
  10521. display:flex;
  10522. transition:none;
  10523. transform-origin:50% 50%;
  10524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10525. font-weight:400;
  10526. font-style:normal;
  10527. font-size:14px;
  10528. color:#FFFFFF;
  10529. }
  10530. #u41701 .text {
  10531. position:absolute;
  10532. align-self:center;
  10533. padding:2px 2px 2px 2px;
  10534. box-sizing:border-box;
  10535. width:100%;
  10536. }
  10537. #u41701_text {
  10538. border-width:0px;
  10539. word-wrap:break-word;
  10540. text-transform:none;
  10541. visibility:hidden;
  10542. }
  10543. #u41702_div {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:0px;
  10547. top:0px;
  10548. width:73px;
  10549. height:25px;
  10550. background:inherit;
  10551. background-color:rgba(255, 255, 255, 0);
  10552. border-radius:0px;
  10553. filter:drop-shadow(none);
  10554. transition:none;
  10555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10556. font-weight:500;
  10557. font-style:normal;
  10558. font-size:18px;
  10559. }
  10560. #u41702 {
  10561. border-width:0px;
  10562. position:absolute;
  10563. left:955px;
  10564. top:184px;
  10565. width:73px;
  10566. height:25px;
  10567. display:flex;
  10568. transition:none;
  10569. transform-origin:50% 50%;
  10570. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10571. font-weight:500;
  10572. font-style:normal;
  10573. font-size:18px;
  10574. }
  10575. #u41702 .text {
  10576. position:absolute;
  10577. align-self:flex-start;
  10578. padding:0px 0px 0px 0px;
  10579. box-sizing:border-box;
  10580. width:100%;
  10581. }
  10582. #u41702_text {
  10583. border-width:0px;
  10584. white-space:nowrap;
  10585. text-transform:none;
  10586. }
  10587. #u41703_div {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:50px;
  10593. height:20px;
  10594. background:inherit;
  10595. background-color:rgba(255, 255, 255, 0);
  10596. border-radius:0px;
  10597. filter:drop-shadow(none);
  10598. transition:none;
  10599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10600. font-weight:400;
  10601. font-style:normal;
  10602. }
  10603. #u41703 {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:965px;
  10607. top:369px;
  10608. width:50px;
  10609. height:20px;
  10610. display:flex;
  10611. transition:none;
  10612. transform-origin:50% 50%;
  10613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10614. font-weight:400;
  10615. font-style:normal;
  10616. }
  10617. #u41703 .text {
  10618. position:absolute;
  10619. align-self:flex-start;
  10620. padding:0px 0px 0px 0px;
  10621. box-sizing:border-box;
  10622. width:100%;
  10623. }
  10624. #u41703_text {
  10625. border-width:0px;
  10626. white-space:nowrap;
  10627. text-transform:none;
  10628. }
  10629. #u41704_div {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:0px;
  10633. top:0px;
  10634. width:85px;
  10635. height:20px;
  10636. background:inherit;
  10637. background-color:rgba(255, 255, 255, 0);
  10638. border-radius:0px;
  10639. filter:drop-shadow(none);
  10640. transition:none;
  10641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10642. font-weight:400;
  10643. font-style:normal;
  10644. color:#AAAAAA;
  10645. }
  10646. #u41704 {
  10647. border-width:0px;
  10648. position:absolute;
  10649. left:965px;
  10650. top:394px;
  10651. width:85px;
  10652. height:20px;
  10653. display:flex;
  10654. transition:none;
  10655. transform-origin:50% 50%;
  10656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10657. font-weight:400;
  10658. font-style:normal;
  10659. color:#AAAAAA;
  10660. }
  10661. #u41704 .text {
  10662. position:absolute;
  10663. align-self:flex-start;
  10664. padding:0px 0px 0px 0px;
  10665. box-sizing:border-box;
  10666. width:100%;
  10667. }
  10668. #u41704_text {
  10669. border-width:0px;
  10670. white-space:nowrap;
  10671. text-transform:none;
  10672. }
  10673. #u41705_div {
  10674. border-width:0px;
  10675. position:absolute;
  10676. left:0px;
  10677. top:0px;
  10678. width:57px;
  10679. height:20px;
  10680. background:inherit;
  10681. background-color:rgba(255, 255, 255, 0);
  10682. border-radius:0px;
  10683. filter:drop-shadow(none);
  10684. transition:none;
  10685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10686. font-weight:400;
  10687. font-style:normal;
  10688. }
  10689. #u41705 {
  10690. border-width:0px;
  10691. position:absolute;
  10692. left:965px;
  10693. top:259px;
  10694. width:57px;
  10695. height:20px;
  10696. display:flex;
  10697. transition:none;
  10698. transform-origin:50% 50%;
  10699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10700. font-weight:400;
  10701. font-style:normal;
  10702. }
  10703. #u41705 .text {
  10704. position:absolute;
  10705. align-self:flex-start;
  10706. padding:0px 0px 0px 0px;
  10707. box-sizing:border-box;
  10708. width:100%;
  10709. }
  10710. #u41705_text {
  10711. border-width:0px;
  10712. white-space:nowrap;
  10713. text-transform:none;
  10714. }
  10715. #u41706_div {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:0px;
  10719. top:0px;
  10720. width:36px;
  10721. height:20px;
  10722. background:inherit;
  10723. background-color:rgba(255, 255, 255, 0);
  10724. border-radius:0px;
  10725. filter:drop-shadow(none);
  10726. transition:none;
  10727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10728. font-weight:400;
  10729. font-style:normal;
  10730. color:#AAAAAA;
  10731. }
  10732. #u41706 {
  10733. border-width:0px;
  10734. position:absolute;
  10735. left:965px;
  10736. top:284px;
  10737. width:36px;
  10738. height:20px;
  10739. display:flex;
  10740. transition:none;
  10741. transform-origin:50% 50%;
  10742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10743. font-weight:400;
  10744. font-style:normal;
  10745. color:#AAAAAA;
  10746. }
  10747. #u41706 .text {
  10748. position:absolute;
  10749. align-self:flex-start;
  10750. padding:0px 0px 0px 0px;
  10751. box-sizing:border-box;
  10752. width:100%;
  10753. }
  10754. #u41706_text {
  10755. border-width:0px;
  10756. white-space:nowrap;
  10757. text-transform:none;
  10758. }
  10759. #u41707_div {
  10760. border-width:0px;
  10761. position:absolute;
  10762. left:0px;
  10763. top:0px;
  10764. width:57px;
  10765. height:20px;
  10766. background:inherit;
  10767. background-color:rgba(255, 255, 255, 0);
  10768. border-radius:0px;
  10769. filter:drop-shadow(none);
  10770. transition:none;
  10771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10772. font-weight:400;
  10773. font-style:normal;
  10774. }
  10775. #u41707 {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:965px;
  10779. top:314px;
  10780. width:57px;
  10781. height:20px;
  10782. display:flex;
  10783. transition:none;
  10784. transform-origin:50% 50%;
  10785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10786. font-weight:400;
  10787. font-style:normal;
  10788. }
  10789. #u41707 .text {
  10790. position:absolute;
  10791. align-self:flex-start;
  10792. padding:0px 0px 0px 0px;
  10793. box-sizing:border-box;
  10794. width:100%;
  10795. }
  10796. #u41707_text {
  10797. border-width:0px;
  10798. white-space:nowrap;
  10799. text-transform:none;
  10800. }
  10801. #u41708_div {
  10802. border-width:0px;
  10803. position:absolute;
  10804. left:0px;
  10805. top:0px;
  10806. width:83px;
  10807. height:20px;
  10808. background:inherit;
  10809. background-color:rgba(255, 255, 255, 0);
  10810. border-radius:0px;
  10811. filter:drop-shadow(none);
  10812. transition:none;
  10813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10814. font-weight:400;
  10815. font-style:normal;
  10816. color:#AAAAAA;
  10817. }
  10818. #u41708 {
  10819. border-width:0px;
  10820. position:absolute;
  10821. left:965px;
  10822. top:339px;
  10823. width:83px;
  10824. height:20px;
  10825. display:flex;
  10826. transition:none;
  10827. transform-origin:50% 50%;
  10828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10829. font-weight:400;
  10830. font-style:normal;
  10831. color:#AAAAAA;
  10832. }
  10833. #u41708 .text {
  10834. position:absolute;
  10835. align-self:flex-start;
  10836. padding:0px 0px 0px 0px;
  10837. box-sizing:border-box;
  10838. width:100%;
  10839. }
  10840. #u41708_text {
  10841. border-width:0px;
  10842. white-space:nowrap;
  10843. text-transform:none;
  10844. }
  10845. #u41709_div {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:0px;
  10849. top:0px;
  10850. width:83px;
  10851. height:30px;
  10852. background:inherit;
  10853. background-color:rgba(24, 144, 255, 1);
  10854. border-radius:4px;
  10855. filter:drop-shadow(none);
  10856. transition:none;
  10857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10858. font-weight:400;
  10859. font-style:normal;
  10860. font-size:12px;
  10861. color:#FFFFFF;
  10862. }
  10863. #u41709 {
  10864. border-width:0px;
  10865. position:absolute;
  10866. left:1194px;
  10867. top:334px;
  10868. width:83px;
  10869. height:30px;
  10870. display:flex;
  10871. transition:none;
  10872. transform-origin:50% 50%;
  10873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10874. font-weight:400;
  10875. font-style:normal;
  10876. font-size:12px;
  10877. color:#FFFFFF;
  10878. }
  10879. #u41709 .text {
  10880. position:absolute;
  10881. align-self:center;
  10882. padding:2px 2px 2px 2px;
  10883. box-sizing:border-box;
  10884. width:100%;
  10885. }
  10886. #u41709_text {
  10887. border-width:0px;
  10888. word-wrap:break-word;
  10889. text-transform:none;
  10890. }
  10891. #u41710_div {
  10892. border-width:0px;
  10893. position:absolute;
  10894. left:0px;
  10895. top:0px;
  10896. width:265px;
  10897. height:17px;
  10898. background:inherit;
  10899. background-color:rgba(255, 255, 255, 0);
  10900. border-radius:0px;
  10901. filter:drop-shadow(none);
  10902. transition:none;
  10903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10904. font-weight:400;
  10905. font-style:normal;
  10906. font-size:12px;
  10907. color:#AAAAAA;
  10908. }
  10909. #u41710 {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:955px;
  10913. top:214px;
  10914. width:265px;
  10915. height:17px;
  10916. display:flex;
  10917. transition:none;
  10918. transform-origin:50% 50%;
  10919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10920. font-weight:400;
  10921. font-style:normal;
  10922. font-size:12px;
  10923. color:#AAAAAA;
  10924. }
  10925. #u41710 .text {
  10926. position:absolute;
  10927. align-self:flex-start;
  10928. padding:0px 0px 0px 0px;
  10929. box-sizing:border-box;
  10930. width:100%;
  10931. }
  10932. #u41710_text {
  10933. border-width:0px;
  10934. white-space:nowrap;
  10935. text-transform:none;
  10936. }
  10937. #u41711_div {
  10938. border-width:0px;
  10939. position:absolute;
  10940. left:0px;
  10941. top:0px;
  10942. width:375px;
  10943. height:58px;
  10944. background:inherit;
  10945. background-color:rgba(24, 144, 255, 1);
  10946. border-radius:0px;
  10947. filter:drop-shadow(none);
  10948. transition:none;
  10949. }
  10950. #u41711 {
  10951. border-width:0px;
  10952. position:absolute;
  10953. left:935px;
  10954. top:101px;
  10955. width:375px;
  10956. height:58px;
  10957. display:flex;
  10958. transition:none;
  10959. transform-origin:50% 50%;
  10960. }
  10961. #u41711 .text {
  10962. position:absolute;
  10963. align-self:center;
  10964. padding:2px 2px 2px 2px;
  10965. box-sizing:border-box;
  10966. width:100%;
  10967. }
  10968. #u41711_text {
  10969. border-width:0px;
  10970. word-wrap:break-word;
  10971. text-transform:none;
  10972. visibility:hidden;
  10973. }
  10974. #u41712 {
  10975. border-width:0px;
  10976. position:absolute;
  10977. left:0px;
  10978. top:0px;
  10979. width:0px;
  10980. height:0px;
  10981. }
  10982. #u41713 {
  10983. border-width:0px;
  10984. position:absolute;
  10985. left:0px;
  10986. top:0px;
  10987. width:0px;
  10988. height:0px;
  10989. }
  10990. #u41714 {
  10991. border-width:0px;
  10992. position:absolute;
  10993. left:941px;
  10994. top:120px;
  10995. width:20px;
  10996. height:20px;
  10997. display:flex;
  10998. transition:none;
  10999. font-size:11px;
  11000. color:#1890FF;
  11001. }
  11002. #u41714 .text {
  11003. position:absolute;
  11004. align-self:center;
  11005. padding:2px 2px 2px 2px;
  11006. box-sizing:border-box;
  11007. width:100%;
  11008. }
  11009. #u41714_img {
  11010. border-width:0px;
  11011. position:absolute;
  11012. left:0px;
  11013. top:0px;
  11014. width:20px;
  11015. height:20px;
  11016. }
  11017. #u41714_text {
  11018. border-width:0px;
  11019. word-wrap:break-word;
  11020. text-transform:none;
  11021. }
  11022. #u41715_div {
  11023. border-width:0px;
  11024. position:absolute;
  11025. left:0px;
  11026. top:0px;
  11027. width:49px;
  11028. height:30px;
  11029. background:inherit;
  11030. background-color:rgba(255, 255, 255, 0);
  11031. border-left:0px;
  11032. border-top:0px;
  11033. border-right:0px;
  11034. border-radius:0px;
  11035. border-bottom-right-radius:0px;
  11036. border-bottom-left-radius:0px;
  11037. filter:drop-shadow(none);
  11038. transition:none;
  11039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11040. font-weight:400;
  11041. font-style:normal;
  11042. font-size:12px;
  11043. color:#FFFFFF;
  11044. line-height:30px;
  11045. }
  11046. #u41715 {
  11047. border-width:0px;
  11048. position:absolute;
  11049. left:966px;
  11050. top:115px;
  11051. width:49px;
  11052. height:30px;
  11053. display:flex;
  11054. transition:none;
  11055. transform-origin:50% 50%;
  11056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11057. font-weight:400;
  11058. font-style:normal;
  11059. font-size:12px;
  11060. color:#FFFFFF;
  11061. line-height:30px;
  11062. }
  11063. #u41715 .text {
  11064. position:absolute;
  11065. align-self:center;
  11066. padding:0px 0px 0px 0px;
  11067. box-sizing:border-box;
  11068. width:100%;
  11069. }
  11070. #u41715_text {
  11071. border-width:0px;
  11072. white-space:nowrap;
  11073. text-transform:none;
  11074. }
  11075. #u41716 {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:1028px;
  11079. top:120px;
  11080. width:20px;
  11081. height:20px;
  11082. display:flex;
  11083. transition:none;
  11084. font-size:11px;
  11085. color:#1890FF;
  11086. }
  11087. #u41716 .text {
  11088. position:absolute;
  11089. align-self:center;
  11090. padding:2px 2px 2px 2px;
  11091. box-sizing:border-box;
  11092. width:100%;
  11093. }
  11094. #u41716_img {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:0px;
  11098. top:0px;
  11099. width:20px;
  11100. height:20px;
  11101. }
  11102. #u41716_text {
  11103. border-width:0px;
  11104. word-wrap:break-word;
  11105. text-transform:none;
  11106. }
  11107. #u41717_div {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:0px;
  11111. top:0px;
  11112. width:49px;
  11113. height:30px;
  11114. background:inherit;
  11115. background-color:rgba(255, 255, 255, 0);
  11116. border-left:0px;
  11117. border-top:0px;
  11118. border-right:0px;
  11119. border-radius:0px;
  11120. border-bottom-right-radius:0px;
  11121. border-bottom-left-radius:0px;
  11122. filter:drop-shadow(none);
  11123. transition:none;
  11124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11125. font-weight:400;
  11126. font-style:normal;
  11127. font-size:12px;
  11128. color:#FFFFFF;
  11129. line-height:30px;
  11130. }
  11131. #u41717 {
  11132. border-width:0px;
  11133. position:absolute;
  11134. left:1053px;
  11135. top:115px;
  11136. width:49px;
  11137. height:30px;
  11138. display:flex;
  11139. transition:none;
  11140. transform-origin:50% 50%;
  11141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11142. font-weight:400;
  11143. font-style:normal;
  11144. font-size:12px;
  11145. color:#FFFFFF;
  11146. line-height:30px;
  11147. }
  11148. #u41717 .text {
  11149. position:absolute;
  11150. align-self:center;
  11151. padding:0px 0px 0px 0px;
  11152. box-sizing:border-box;
  11153. width:100%;
  11154. }
  11155. #u41717_text {
  11156. border-width:0px;
  11157. white-space:nowrap;
  11158. text-transform:none;
  11159. }
  11160. #u41718 {
  11161. border-width:0px;
  11162. position:absolute;
  11163. left:1122px;
  11164. top:120px;
  11165. width:20px;
  11166. height:20px;
  11167. display:flex;
  11168. transition:none;
  11169. font-size:11px;
  11170. color:#1890FF;
  11171. }
  11172. #u41718 .text {
  11173. position:absolute;
  11174. align-self:center;
  11175. padding:2px 2px 2px 2px;
  11176. box-sizing:border-box;
  11177. width:100%;
  11178. }
  11179. #u41718_img {
  11180. border-width:0px;
  11181. position:absolute;
  11182. left:0px;
  11183. top:0px;
  11184. width:20px;
  11185. height:20px;
  11186. }
  11187. #u41718_text {
  11188. border-width:0px;
  11189. word-wrap:break-word;
  11190. text-transform:none;
  11191. }
  11192. #u41719_div {
  11193. border-width:0px;
  11194. position:absolute;
  11195. left:0px;
  11196. top:0px;
  11197. width:49px;
  11198. height:30px;
  11199. background:inherit;
  11200. background-color:rgba(255, 255, 255, 0);
  11201. border-left:0px;
  11202. border-top:0px;
  11203. border-right:0px;
  11204. border-radius:0px;
  11205. border-bottom-right-radius:0px;
  11206. border-bottom-left-radius:0px;
  11207. filter:drop-shadow(none);
  11208. transition:none;
  11209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11210. font-weight:400;
  11211. font-style:normal;
  11212. font-size:12px;
  11213. color:#FFFFFF;
  11214. line-height:30px;
  11215. }
  11216. #u41719 {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:1147px;
  11220. top:115px;
  11221. width:49px;
  11222. height:30px;
  11223. display:flex;
  11224. transition:none;
  11225. transform-origin:50% 50%;
  11226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11227. font-weight:400;
  11228. font-style:normal;
  11229. font-size:12px;
  11230. color:#FFFFFF;
  11231. line-height:30px;
  11232. }
  11233. #u41719 .text {
  11234. position:absolute;
  11235. align-self:center;
  11236. padding:0px 0px 0px 0px;
  11237. box-sizing:border-box;
  11238. width:100%;
  11239. }
  11240. #u41719_text {
  11241. border-width:0px;
  11242. white-space:nowrap;
  11243. text-transform:none;
  11244. }
  11245. #u41720 {
  11246. border-width:0px;
  11247. position:absolute;
  11248. left:1216px;
  11249. top:120px;
  11250. width:20px;
  11251. height:20px;
  11252. display:flex;
  11253. transition:none;
  11254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11255. font-weight:400;
  11256. font-style:normal;
  11257. font-size:11px;
  11258. color:#1890FF;
  11259. }
  11260. #u41720 .text {
  11261. position:absolute;
  11262. align-self:center;
  11263. padding:2px 2px 2px 2px;
  11264. box-sizing:border-box;
  11265. width:100%;
  11266. }
  11267. #u41720_img {
  11268. border-width:0px;
  11269. position:absolute;
  11270. left:0px;
  11271. top:0px;
  11272. width:20px;
  11273. height:20px;
  11274. }
  11275. #u41720_text {
  11276. border-width:0px;
  11277. word-wrap:break-word;
  11278. text-transform:none;
  11279. }
  11280. #u41721_div {
  11281. border-width:0px;
  11282. position:absolute;
  11283. left:0px;
  11284. top:0px;
  11285. width:49px;
  11286. height:30px;
  11287. background:inherit;
  11288. background-color:rgba(255, 255, 255, 0);
  11289. border-left:0px;
  11290. border-top:0px;
  11291. border-right:0px;
  11292. border-radius:0px;
  11293. border-bottom-right-radius:0px;
  11294. border-bottom-left-radius:0px;
  11295. filter:drop-shadow(none);
  11296. transition:none;
  11297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11298. font-weight:400;
  11299. font-style:normal;
  11300. font-size:12px;
  11301. color:#FFFFFF;
  11302. line-height:30px;
  11303. }
  11304. #u41721 {
  11305. border-width:0px;
  11306. position:absolute;
  11307. left:1241px;
  11308. top:115px;
  11309. width:49px;
  11310. height:30px;
  11311. display:flex;
  11312. transition:none;
  11313. transform-origin:50% 50%;
  11314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11315. font-weight:400;
  11316. font-style:normal;
  11317. font-size:12px;
  11318. color:#FFFFFF;
  11319. line-height:30px;
  11320. }
  11321. #u41721 .text {
  11322. position:absolute;
  11323. align-self:center;
  11324. padding:0px 0px 0px 0px;
  11325. box-sizing:border-box;
  11326. width:100%;
  11327. }
  11328. #u41721_text {
  11329. border-width:0px;
  11330. white-space:nowrap;
  11331. text-transform:none;
  11332. }
  11333. #u41722_div {
  11334. border-width:0px;
  11335. position:absolute;
  11336. left:0px;
  11337. top:0px;
  11338. width:375px;
  11339. height:58px;
  11340. background:inherit;
  11341. background-color:rgba(24, 144, 255, 1);
  11342. border-radius:0px;
  11343. filter:drop-shadow(none);
  11344. transition:none;
  11345. }
  11346. #u41722 {
  11347. border-width:0px;
  11348. position:absolute;
  11349. left:1388px;
  11350. top:101px;
  11351. width:375px;
  11352. height:58px;
  11353. display:flex;
  11354. transition:none;
  11355. transform-origin:50% 50%;
  11356. }
  11357. #u41722 .text {
  11358. position:absolute;
  11359. align-self:center;
  11360. padding:2px 2px 2px 2px;
  11361. box-sizing:border-box;
  11362. width:100%;
  11363. }
  11364. #u41722_text {
  11365. border-width:0px;
  11366. word-wrap:break-word;
  11367. text-transform:none;
  11368. visibility:hidden;
  11369. }
  11370. #u41723 {
  11371. border-width:0px;
  11372. position:absolute;
  11373. left:0px;
  11374. top:0px;
  11375. width:0px;
  11376. height:0px;
  11377. }
  11378. #u41724 {
  11379. border-width:0px;
  11380. position:absolute;
  11381. left:0px;
  11382. top:0px;
  11383. width:0px;
  11384. height:0px;
  11385. }
  11386. #u41725 {
  11387. border-width:0px;
  11388. position:absolute;
  11389. left:1394px;
  11390. top:120px;
  11391. width:20px;
  11392. height:20px;
  11393. display:flex;
  11394. transition:none;
  11395. font-size:11px;
  11396. color:#1890FF;
  11397. }
  11398. #u41725 .text {
  11399. position:absolute;
  11400. align-self:center;
  11401. padding:2px 2px 2px 2px;
  11402. box-sizing:border-box;
  11403. width:100%;
  11404. }
  11405. #u41725_img {
  11406. border-width:0px;
  11407. position:absolute;
  11408. left:0px;
  11409. top:0px;
  11410. width:20px;
  11411. height:20px;
  11412. }
  11413. #u41725_text {
  11414. border-width:0px;
  11415. word-wrap:break-word;
  11416. text-transform:none;
  11417. }
  11418. #u41726_div {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:0px;
  11422. top:0px;
  11423. width:49px;
  11424. height:30px;
  11425. background:inherit;
  11426. background-color:rgba(255, 255, 255, 0);
  11427. border-left:0px;
  11428. border-top:0px;
  11429. border-right:0px;
  11430. border-radius:0px;
  11431. border-bottom-right-radius:0px;
  11432. border-bottom-left-radius:0px;
  11433. filter:drop-shadow(none);
  11434. transition:none;
  11435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11436. font-weight:400;
  11437. font-style:normal;
  11438. font-size:12px;
  11439. color:#FFFFFF;
  11440. line-height:30px;
  11441. }
  11442. #u41726 {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:1419px;
  11446. top:115px;
  11447. width:49px;
  11448. height:30px;
  11449. display:flex;
  11450. transition:none;
  11451. transform-origin:50% 50%;
  11452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11453. font-weight:400;
  11454. font-style:normal;
  11455. font-size:12px;
  11456. color:#FFFFFF;
  11457. line-height:30px;
  11458. }
  11459. #u41726 .text {
  11460. position:absolute;
  11461. align-self:center;
  11462. padding:0px 0px 0px 0px;
  11463. box-sizing:border-box;
  11464. width:100%;
  11465. }
  11466. #u41726_text {
  11467. border-width:0px;
  11468. white-space:nowrap;
  11469. text-transform:none;
  11470. }
  11471. #u41727 {
  11472. border-width:0px;
  11473. position:absolute;
  11474. left:1481px;
  11475. top:120px;
  11476. width:20px;
  11477. height:20px;
  11478. display:flex;
  11479. transition:none;
  11480. font-size:11px;
  11481. color:#1890FF;
  11482. }
  11483. #u41727 .text {
  11484. position:absolute;
  11485. align-self:center;
  11486. padding:2px 2px 2px 2px;
  11487. box-sizing:border-box;
  11488. width:100%;
  11489. }
  11490. #u41727_img {
  11491. border-width:0px;
  11492. position:absolute;
  11493. left:0px;
  11494. top:0px;
  11495. width:20px;
  11496. height:20px;
  11497. }
  11498. #u41727_text {
  11499. border-width:0px;
  11500. word-wrap:break-word;
  11501. text-transform:none;
  11502. }
  11503. #u41728_div {
  11504. border-width:0px;
  11505. position:absolute;
  11506. left:0px;
  11507. top:0px;
  11508. width:49px;
  11509. height:30px;
  11510. background:inherit;
  11511. background-color:rgba(255, 255, 255, 0);
  11512. border-left:0px;
  11513. border-top:0px;
  11514. border-right:0px;
  11515. border-radius:0px;
  11516. border-bottom-right-radius:0px;
  11517. border-bottom-left-radius:0px;
  11518. filter:drop-shadow(none);
  11519. transition:none;
  11520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11521. font-weight:400;
  11522. font-style:normal;
  11523. font-size:12px;
  11524. color:#FFFFFF;
  11525. line-height:30px;
  11526. }
  11527. #u41728 {
  11528. border-width:0px;
  11529. position:absolute;
  11530. left:1506px;
  11531. top:115px;
  11532. width:49px;
  11533. height:30px;
  11534. display:flex;
  11535. transition:none;
  11536. transform-origin:50% 50%;
  11537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11538. font-weight:400;
  11539. font-style:normal;
  11540. font-size:12px;
  11541. color:#FFFFFF;
  11542. line-height:30px;
  11543. }
  11544. #u41728 .text {
  11545. position:absolute;
  11546. align-self:center;
  11547. padding:0px 0px 0px 0px;
  11548. box-sizing:border-box;
  11549. width:100%;
  11550. }
  11551. #u41728_text {
  11552. border-width:0px;
  11553. white-space:nowrap;
  11554. text-transform:none;
  11555. }
  11556. #u41729 {
  11557. border-width:0px;
  11558. position:absolute;
  11559. left:1575px;
  11560. top:120px;
  11561. width:20px;
  11562. height:20px;
  11563. display:flex;
  11564. transition:none;
  11565. font-size:11px;
  11566. color:#1890FF;
  11567. }
  11568. #u41729 .text {
  11569. position:absolute;
  11570. align-self:center;
  11571. padding:2px 2px 2px 2px;
  11572. box-sizing:border-box;
  11573. width:100%;
  11574. }
  11575. #u41729_img {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:0px;
  11579. top:0px;
  11580. width:20px;
  11581. height:20px;
  11582. }
  11583. #u41729_text {
  11584. border-width:0px;
  11585. word-wrap:break-word;
  11586. text-transform:none;
  11587. }
  11588. #u41730_div {
  11589. border-width:0px;
  11590. position:absolute;
  11591. left:0px;
  11592. top:0px;
  11593. width:49px;
  11594. height:30px;
  11595. background:inherit;
  11596. background-color:rgba(255, 255, 255, 0);
  11597. border-left:0px;
  11598. border-top:0px;
  11599. border-right:0px;
  11600. border-radius:0px;
  11601. border-bottom-right-radius:0px;
  11602. border-bottom-left-radius:0px;
  11603. filter:drop-shadow(none);
  11604. transition:none;
  11605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. font-size:12px;
  11609. color:#FFFFFF;
  11610. line-height:30px;
  11611. }
  11612. #u41730 {
  11613. border-width:0px;
  11614. position:absolute;
  11615. left:1600px;
  11616. top:115px;
  11617. width:49px;
  11618. height:30px;
  11619. display:flex;
  11620. transition:none;
  11621. transform-origin:50% 50%;
  11622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11623. font-weight:400;
  11624. font-style:normal;
  11625. font-size:12px;
  11626. color:#FFFFFF;
  11627. line-height:30px;
  11628. }
  11629. #u41730 .text {
  11630. position:absolute;
  11631. align-self:center;
  11632. padding:0px 0px 0px 0px;
  11633. box-sizing:border-box;
  11634. width:100%;
  11635. }
  11636. #u41730_text {
  11637. border-width:0px;
  11638. white-space:nowrap;
  11639. text-transform:none;
  11640. }
  11641. #u41731 {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:1669px;
  11645. top:120px;
  11646. width:20px;
  11647. height:20px;
  11648. display:flex;
  11649. transition:none;
  11650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11651. font-weight:400;
  11652. font-style:normal;
  11653. font-size:11px;
  11654. color:#1890FF;
  11655. }
  11656. #u41731 .text {
  11657. position:absolute;
  11658. align-self:center;
  11659. padding:2px 2px 2px 2px;
  11660. box-sizing:border-box;
  11661. width:100%;
  11662. }
  11663. #u41731_img {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:0px;
  11667. top:0px;
  11668. width:20px;
  11669. height:20px;
  11670. }
  11671. #u41731_text {
  11672. border-width:0px;
  11673. word-wrap:break-word;
  11674. text-transform:none;
  11675. }
  11676. #u41732_div {
  11677. border-width:0px;
  11678. position:absolute;
  11679. left:0px;
  11680. top:0px;
  11681. width:49px;
  11682. height:30px;
  11683. background:inherit;
  11684. background-color:rgba(255, 255, 255, 0);
  11685. border-left:0px;
  11686. border-top:0px;
  11687. border-right:0px;
  11688. border-radius:0px;
  11689. border-bottom-right-radius:0px;
  11690. border-bottom-left-radius:0px;
  11691. filter:drop-shadow(none);
  11692. transition:none;
  11693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11694. font-weight:400;
  11695. font-style:normal;
  11696. font-size:12px;
  11697. color:#FFFFFF;
  11698. line-height:30px;
  11699. }
  11700. #u41732 {
  11701. border-width:0px;
  11702. position:absolute;
  11703. left:1694px;
  11704. top:115px;
  11705. width:49px;
  11706. height:30px;
  11707. display:flex;
  11708. transition:none;
  11709. transform-origin:50% 50%;
  11710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11711. font-weight:400;
  11712. font-style:normal;
  11713. font-size:12px;
  11714. color:#FFFFFF;
  11715. line-height:30px;
  11716. }
  11717. #u41732 .text {
  11718. position:absolute;
  11719. align-self:center;
  11720. padding:0px 0px 0px 0px;
  11721. box-sizing:border-box;
  11722. width:100%;
  11723. }
  11724. #u41732_text {
  11725. border-width:0px;
  11726. white-space:nowrap;
  11727. text-transform:none;
  11728. }
  11729. #u41733 {
  11730. border-width:0px;
  11731. position:absolute;
  11732. left:0px;
  11733. top:0px;
  11734. width:0px;
  11735. height:0px;
  11736. }
  11737. #u41734 {
  11738. border-width:0px;
  11739. position:absolute;
  11740. left:0px;
  11741. top:0px;
  11742. width:0px;
  11743. height:0px;
  11744. }
  11745. #u41735 {
  11746. border-width:0px;
  11747. position:absolute;
  11748. left:0px;
  11749. top:0px;
  11750. width:0px;
  11751. height:0px;
  11752. }
  11753. #u41736_div {
  11754. border-width:0px;
  11755. position:absolute;
  11756. left:0px;
  11757. top:0px;
  11758. width:235px;
  11759. height:40px;
  11760. background:inherit;
  11761. background-color:rgba(255, 255, 255, 0);
  11762. border-left:0px;
  11763. border-top:0px;
  11764. border-right:0px;
  11765. border-radius:0px;
  11766. border-bottom-right-radius:0px;
  11767. border-bottom-left-radius:0px;
  11768. filter:drop-shadow(none);
  11769. transition:none;
  11770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11771. font-weight:400;
  11772. font-style:normal;
  11773. font-size:14px;
  11774. color:#AAAAAA;
  11775. line-height:40px;
  11776. }
  11777. #u41736 {
  11778. border-width:0px;
  11779. position:absolute;
  11780. left:1407px;
  11781. top:252px;
  11782. width:235px;
  11783. height:40px;
  11784. display:flex;
  11785. transition:none;
  11786. transform-origin:50% 50%;
  11787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11788. font-weight:400;
  11789. font-style:normal;
  11790. font-size:14px;
  11791. color:#AAAAAA;
  11792. line-height:40px;
  11793. }
  11794. #u41736 .text {
  11795. position:absolute;
  11796. align-self:flex-start;
  11797. padding:0px 0px 0px 0px;
  11798. box-sizing:border-box;
  11799. width:100%;
  11800. }
  11801. #u41736_text {
  11802. border-width:0px;
  11803. word-wrap:break-word;
  11804. text-transform:none;
  11805. }
  11806. #u41737_div {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:0px;
  11810. top:0px;
  11811. width:36px;
  11812. height:40px;
  11813. background:inherit;
  11814. background-color:rgba(255, 255, 255, 0);
  11815. border-left:0px;
  11816. border-top:0px;
  11817. border-right:0px;
  11818. border-radius:0px;
  11819. border-bottom-right-radius:0px;
  11820. border-bottom-left-radius:0px;
  11821. filter:drop-shadow(none);
  11822. transition:none;
  11823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11824. font-weight:400;
  11825. font-style:normal;
  11826. font-size:14px;
  11827. line-height:40px;
  11828. }
  11829. #u41737 {
  11830. border-width:0px;
  11831. position:absolute;
  11832. left:1407px;
  11833. top:212px;
  11834. width:36px;
  11835. height:40px;
  11836. display:flex;
  11837. transition:none;
  11838. transform-origin:50% 50%;
  11839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11840. font-weight:400;
  11841. font-style:normal;
  11842. font-size:14px;
  11843. line-height:40px;
  11844. }
  11845. #u41737 .text {
  11846. position:absolute;
  11847. align-self:flex-start;
  11848. padding:0px 0px 0px 0px;
  11849. box-sizing:border-box;
  11850. width:100%;
  11851. }
  11852. #u41737_text {
  11853. border-width:0px;
  11854. white-space:nowrap;
  11855. text-transform:none;
  11856. }
  11857. #u41738 {
  11858. border-width:0px;
  11859. position:absolute;
  11860. left:0px;
  11861. top:0px;
  11862. width:0px;
  11863. height:0px;
  11864. }
  11865. #u41739 {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:0px;
  11869. top:0px;
  11870. width:0px;
  11871. height:0px;
  11872. }
  11873. #u41740 {
  11874. border-width:0px;
  11875. position:absolute;
  11876. left:1742px;
  11877. top:427px;
  11878. width:7px;
  11879. height:12px;
  11880. display:flex;
  11881. -webkit-transform:rotate(180deg);
  11882. -moz-transform:rotate(180deg);
  11883. -ms-transform:rotate(180deg);
  11884. transform:rotate(180deg);
  11885. transition:none;
  11886. }
  11887. #u41740 .text {
  11888. position:absolute;
  11889. align-self:center;
  11890. padding:2px 2px 2px 2px;
  11891. box-sizing:border-box;
  11892. width:100%;
  11893. }
  11894. #u41740_img {
  11895. border-width:0px;
  11896. position:absolute;
  11897. left:0px;
  11898. top:0px;
  11899. width:7px;
  11900. height:12px;
  11901. }
  11902. #u41740_text {
  11903. border-width:0px;
  11904. word-wrap:break-word;
  11905. text-transform:none;
  11906. visibility:hidden;
  11907. }
  11908. #u41741_div {
  11909. border-width:0px;
  11910. position:absolute;
  11911. left:0px;
  11912. top:0px;
  11913. width:235px;
  11914. height:40px;
  11915. background:inherit;
  11916. background-color:rgba(255, 255, 255, 0);
  11917. border-left:0px;
  11918. border-top:0px;
  11919. border-right:0px;
  11920. border-radius:0px;
  11921. border-bottom-right-radius:0px;
  11922. border-bottom-left-radius:0px;
  11923. filter:drop-shadow(none);
  11924. transition:none;
  11925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11926. font-weight:400;
  11927. font-style:normal;
  11928. font-size:14px;
  11929. color:#AAAAAA;
  11930. line-height:40px;
  11931. }
  11932. #u41741 {
  11933. border-width:0px;
  11934. position:absolute;
  11935. left:1407px;
  11936. top:413px;
  11937. width:235px;
  11938. height:40px;
  11939. display:flex;
  11940. transition:none;
  11941. transform-origin:50% 50%;
  11942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11943. font-weight:400;
  11944. font-style:normal;
  11945. font-size:14px;
  11946. color:#AAAAAA;
  11947. line-height:40px;
  11948. }
  11949. #u41741 .text {
  11950. position:absolute;
  11951. align-self:flex-start;
  11952. padding:0px 0px 0px 0px;
  11953. box-sizing:border-box;
  11954. width:100%;
  11955. }
  11956. #u41741_text {
  11957. border-width:0px;
  11958. word-wrap:break-word;
  11959. text-transform:none;
  11960. }
  11961. #u41742_div {
  11962. border-width:0px;
  11963. position:absolute;
  11964. left:0px;
  11965. top:0px;
  11966. width:64px;
  11967. height:40px;
  11968. background:inherit;
  11969. background-color:rgba(255, 255, 255, 0);
  11970. border-left:0px;
  11971. border-top:0px;
  11972. border-right:0px;
  11973. border-radius:0px;
  11974. border-bottom-right-radius:0px;
  11975. border-bottom-left-radius:0px;
  11976. filter:drop-shadow(none);
  11977. transition:none;
  11978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11979. font-weight:400;
  11980. font-style:normal;
  11981. font-size:14px;
  11982. line-height:40px;
  11983. }
  11984. #u41742 {
  11985. border-width:0px;
  11986. position:absolute;
  11987. left:1407px;
  11988. top:373px;
  11989. width:64px;
  11990. height:40px;
  11991. display:flex;
  11992. transition:none;
  11993. transform-origin:50% 50%;
  11994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11995. font-weight:400;
  11996. font-style:normal;
  11997. font-size:14px;
  11998. line-height:40px;
  11999. }
  12000. #u41742 .text {
  12001. position:absolute;
  12002. align-self:flex-start;
  12003. padding:0px 0px 0px 0px;
  12004. box-sizing:border-box;
  12005. width:100%;
  12006. }
  12007. #u41742_text {
  12008. border-width:0px;
  12009. white-space:nowrap;
  12010. text-transform:none;
  12011. }
  12012. #u41743 {
  12013. border-width:0px;
  12014. position:absolute;
  12015. left:0px;
  12016. top:0px;
  12017. width:0px;
  12018. height:0px;
  12019. }
  12020. #u41744 {
  12021. border-width:0px;
  12022. position:absolute;
  12023. left:0px;
  12024. top:0px;
  12025. width:0px;
  12026. height:0px;
  12027. }
  12028. #u41745_div {
  12029. border-width:0px;
  12030. position:absolute;
  12031. left:0px;
  12032. top:0px;
  12033. width:235px;
  12034. height:40px;
  12035. background:inherit;
  12036. background-color:rgba(255, 255, 255, 0);
  12037. border-left:0px;
  12038. border-top:0px;
  12039. border-right:0px;
  12040. border-radius:0px;
  12041. border-bottom-right-radius:0px;
  12042. border-bottom-left-radius:0px;
  12043. filter:drop-shadow(none);
  12044. transition:none;
  12045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12046. font-weight:400;
  12047. font-style:normal;
  12048. font-size:14px;
  12049. color:#AAAAAA;
  12050. line-height:40px;
  12051. }
  12052. #u41745 {
  12053. border-width:0px;
  12054. position:absolute;
  12055. left:1407px;
  12056. top:723px;
  12057. width:235px;
  12058. height:40px;
  12059. display:flex;
  12060. transition:none;
  12061. transform-origin:50% 50%;
  12062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12063. font-weight:400;
  12064. font-style:normal;
  12065. font-size:14px;
  12066. color:#AAAAAA;
  12067. line-height:40px;
  12068. }
  12069. #u41745 .text {
  12070. position:absolute;
  12071. align-self:flex-start;
  12072. padding:0px 0px 0px 0px;
  12073. box-sizing:border-box;
  12074. width:100%;
  12075. }
  12076. #u41745_text {
  12077. border-width:0px;
  12078. word-wrap:break-word;
  12079. text-transform:none;
  12080. }
  12081. #u41746_div {
  12082. border-width:0px;
  12083. position:absolute;
  12084. left:0px;
  12085. top:0px;
  12086. width:57px;
  12087. height:40px;
  12088. background:inherit;
  12089. background-color:rgba(255, 255, 255, 0);
  12090. border-left:0px;
  12091. border-top:0px;
  12092. border-right:0px;
  12093. border-radius:0px;
  12094. border-bottom-right-radius:0px;
  12095. border-bottom-left-radius:0px;
  12096. filter:drop-shadow(none);
  12097. transition:none;
  12098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12099. font-weight:400;
  12100. font-style:normal;
  12101. font-size:14px;
  12102. line-height:40px;
  12103. }
  12104. #u41746 {
  12105. border-width:0px;
  12106. position:absolute;
  12107. left:1407px;
  12108. top:683px;
  12109. width:57px;
  12110. height:40px;
  12111. display:flex;
  12112. transition:none;
  12113. transform-origin:50% 50%;
  12114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12115. font-weight:400;
  12116. font-style:normal;
  12117. font-size:14px;
  12118. line-height:40px;
  12119. }
  12120. #u41746 .text {
  12121. position:absolute;
  12122. align-self:flex-start;
  12123. padding:0px 0px 0px 0px;
  12124. box-sizing:border-box;
  12125. width:100%;
  12126. }
  12127. #u41746_text {
  12128. border-width:0px;
  12129. white-space:nowrap;
  12130. text-transform:none;
  12131. }
  12132. #u41747 {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:0px;
  12136. top:0px;
  12137. width:0px;
  12138. height:0px;
  12139. }
  12140. #u41748_div {
  12141. border-width:0px;
  12142. position:absolute;
  12143. left:0px;
  12144. top:0px;
  12145. width:64px;
  12146. height:40px;
  12147. background:inherit;
  12148. background-color:rgba(255, 255, 255, 0);
  12149. border-left:0px;
  12150. border-top:0px;
  12151. border-right:0px;
  12152. border-radius:0px;
  12153. border-bottom-right-radius:0px;
  12154. border-bottom-left-radius:0px;
  12155. filter:drop-shadow(none);
  12156. transition:none;
  12157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12158. font-weight:400;
  12159. font-style:normal;
  12160. font-size:14px;
  12161. line-height:40px;
  12162. }
  12163. #u41748 {
  12164. border-width:0px;
  12165. position:absolute;
  12166. left:1407px;
  12167. top:533px;
  12168. width:64px;
  12169. height:40px;
  12170. display:flex;
  12171. transition:none;
  12172. transform-origin:50% 50%;
  12173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12174. font-weight:400;
  12175. font-style:normal;
  12176. font-size:14px;
  12177. line-height:40px;
  12178. }
  12179. #u41748 .text {
  12180. position:absolute;
  12181. align-self:flex-start;
  12182. padding:0px 0px 0px 0px;
  12183. box-sizing:border-box;
  12184. width:100%;
  12185. }
  12186. #u41748_text {
  12187. border-width:0px;
  12188. white-space:nowrap;
  12189. text-transform:none;
  12190. }
  12191. #u41749 {
  12192. border-width:0px;
  12193. position:absolute;
  12194. left:1407px;
  12195. top:573px;
  12196. width:331px;
  12197. height:110px;
  12198. display:flex;
  12199. transition:none;
  12200. }
  12201. #u41749 .text {
  12202. position:absolute;
  12203. align-self:center;
  12204. padding:2px 2px 2px 2px;
  12205. box-sizing:border-box;
  12206. width:100%;
  12207. }
  12208. #u41749_img {
  12209. border-width:0px;
  12210. position:absolute;
  12211. left:0px;
  12212. top:0px;
  12213. width:331px;
  12214. height:110px;
  12215. }
  12216. #u41749_text {
  12217. border-width:0px;
  12218. word-wrap:break-word;
  12219. text-transform:none;
  12220. visibility:hidden;
  12221. }
  12222. #u41750_div {
  12223. border-width:0px;
  12224. position:absolute;
  12225. left:0px;
  12226. top:0px;
  12227. width:137px;
  12228. height:30px;
  12229. background:inherit;
  12230. background-color:rgba(255, 255, 255, 0);
  12231. border-left:0px;
  12232. border-top:0px;
  12233. border-right:0px;
  12234. border-radius:0px;
  12235. border-bottom-right-radius:0px;
  12236. border-bottom-left-radius:0px;
  12237. filter:drop-shadow(none);
  12238. transition:none;
  12239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12240. font-weight:400;
  12241. font-style:normal;
  12242. font-size:11px;
  12243. color:#D9001B;
  12244. line-height:30px;
  12245. }
  12246. #u41750 {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:1498px;
  12250. top:544px;
  12251. width:137px;
  12252. height:30px;
  12253. display:flex;
  12254. transition:none;
  12255. transform-origin:50% 50%;
  12256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12257. font-weight:400;
  12258. font-style:normal;
  12259. font-size:11px;
  12260. color:#D9001B;
  12261. line-height:30px;
  12262. }
  12263. #u41750 .text {
  12264. position:absolute;
  12265. align-self:flex-start;
  12266. padding:0px 0px 0px 0px;
  12267. box-sizing:border-box;
  12268. width:100%;
  12269. }
  12270. #u41750_text {
  12271. border-width:0px;
  12272. white-space:nowrap;
  12273. text-transform:none;
  12274. }
  12275. #u41751 {
  12276. border-width:0px;
  12277. position:absolute;
  12278. left:0px;
  12279. top:0px;
  12280. width:0px;
  12281. height:0px;
  12282. }
  12283. #u41752 {
  12284. border-width:0px;
  12285. position:absolute;
  12286. left:0px;
  12287. top:0px;
  12288. width:0px;
  12289. height:0px;
  12290. }
  12291. #u41753_div {
  12292. border-width:0px;
  12293. position:absolute;
  12294. left:0px;
  12295. top:0px;
  12296. width:337px;
  12297. height:40px;
  12298. background:inherit;
  12299. background-color:rgba(255, 255, 255, 0);
  12300. border-left:0px;
  12301. border-top:0px;
  12302. border-right:0px;
  12303. border-radius:0px;
  12304. border-bottom-right-radius:0px;
  12305. border-bottom-left-radius:0px;
  12306. filter:drop-shadow(none);
  12307. transition:none;
  12308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12309. font-weight:400;
  12310. font-style:normal;
  12311. font-size:14px;
  12312. color:#AAAAAA;
  12313. line-height:40px;
  12314. }
  12315. #u41753 {
  12316. border-width:0px;
  12317. position:absolute;
  12318. left:1407px;
  12319. top:331px;
  12320. width:337px;
  12321. height:40px;
  12322. display:flex;
  12323. transition:none;
  12324. transform-origin:50% 50%;
  12325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12326. font-weight:400;
  12327. font-style:normal;
  12328. font-size:14px;
  12329. color:#AAAAAA;
  12330. line-height:40px;
  12331. }
  12332. #u41753 .text {
  12333. position:absolute;
  12334. align-self:flex-start;
  12335. padding:0px 0px 0px 0px;
  12336. box-sizing:border-box;
  12337. width:100%;
  12338. }
  12339. #u41753_text {
  12340. border-width:0px;
  12341. word-wrap:break-word;
  12342. text-transform:none;
  12343. }
  12344. #u41754_div {
  12345. border-width:0px;
  12346. position:absolute;
  12347. left:0px;
  12348. top:0px;
  12349. width:64px;
  12350. height:40px;
  12351. background:inherit;
  12352. background-color:rgba(255, 255, 255, 0);
  12353. border-left:0px;
  12354. border-top:0px;
  12355. border-right:0px;
  12356. border-radius:0px;
  12357. border-bottom-right-radius:0px;
  12358. border-bottom-left-radius:0px;
  12359. filter:drop-shadow(none);
  12360. transition:none;
  12361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12362. font-weight:400;
  12363. font-style:normal;
  12364. font-size:14px;
  12365. line-height:40px;
  12366. }
  12367. #u41754 {
  12368. border-width:0px;
  12369. position:absolute;
  12370. left:1407px;
  12371. top:291px;
  12372. width:64px;
  12373. height:40px;
  12374. display:flex;
  12375. transition:none;
  12376. transform-origin:50% 50%;
  12377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12378. font-weight:400;
  12379. font-style:normal;
  12380. font-size:14px;
  12381. line-height:40px;
  12382. }
  12383. #u41754 .text {
  12384. position:absolute;
  12385. align-self:flex-start;
  12386. padding:0px 0px 0px 0px;
  12387. box-sizing:border-box;
  12388. width:100%;
  12389. }
  12390. #u41754_text {
  12391. border-width:0px;
  12392. white-space:nowrap;
  12393. text-transform:none;
  12394. }
  12395. #u41755 {
  12396. border-width:0px;
  12397. position:absolute;
  12398. left:0px;
  12399. top:0px;
  12400. width:0px;
  12401. height:0px;
  12402. }
  12403. #u41756 {
  12404. border-width:0px;
  12405. position:absolute;
  12406. left:0px;
  12407. top:0px;
  12408. width:0px;
  12409. height:0px;
  12410. }
  12411. #u41757_div {
  12412. border-width:0px;
  12413. position:absolute;
  12414. left:0px;
  12415. top:0px;
  12416. width:235px;
  12417. height:40px;
  12418. background:inherit;
  12419. background-color:rgba(255, 255, 255, 0);
  12420. border-left:0px;
  12421. border-top:0px;
  12422. border-right:0px;
  12423. border-radius:0px;
  12424. border-bottom-right-radius:0px;
  12425. border-bottom-left-radius:0px;
  12426. filter:drop-shadow(none);
  12427. transition:none;
  12428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12429. font-weight:400;
  12430. font-style:normal;
  12431. font-size:14px;
  12432. color:#AAAAAA;
  12433. line-height:40px;
  12434. }
  12435. #u41757 {
  12436. border-width:0px;
  12437. position:absolute;
  12438. left:1407px;
  12439. top:493px;
  12440. width:235px;
  12441. height:40px;
  12442. display:flex;
  12443. transition:none;
  12444. transform-origin:50% 50%;
  12445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12446. font-weight:400;
  12447. font-style:normal;
  12448. font-size:14px;
  12449. color:#AAAAAA;
  12450. line-height:40px;
  12451. }
  12452. #u41757 .text {
  12453. position:absolute;
  12454. align-self:flex-start;
  12455. padding:0px 0px 0px 0px;
  12456. box-sizing:border-box;
  12457. width:100%;
  12458. }
  12459. #u41757_text {
  12460. border-width:0px;
  12461. word-wrap:break-word;
  12462. text-transform:none;
  12463. }
  12464. #u41758_div {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:57px;
  12470. height:40px;
  12471. background:inherit;
  12472. background-color:rgba(255, 255, 255, 0);
  12473. border-left:0px;
  12474. border-top:0px;
  12475. border-right:0px;
  12476. border-radius:0px;
  12477. border-bottom-right-radius:0px;
  12478. border-bottom-left-radius:0px;
  12479. filter:drop-shadow(none);
  12480. transition:none;
  12481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12482. font-weight:400;
  12483. font-style:normal;
  12484. font-size:14px;
  12485. line-height:40px;
  12486. }
  12487. #u41758 {
  12488. border-width:0px;
  12489. position:absolute;
  12490. left:1407px;
  12491. top:453px;
  12492. width:57px;
  12493. height:40px;
  12494. display:flex;
  12495. transition:none;
  12496. transform-origin:50% 50%;
  12497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12498. font-weight:400;
  12499. font-style:normal;
  12500. font-size:14px;
  12501. line-height:40px;
  12502. }
  12503. #u41758 .text {
  12504. position:absolute;
  12505. align-self:flex-start;
  12506. padding:0px 0px 0px 0px;
  12507. box-sizing:border-box;
  12508. width:100%;
  12509. }
  12510. #u41758_text {
  12511. border-width:0px;
  12512. white-space:nowrap;
  12513. text-transform:none;
  12514. }
  12515. #u41759 {
  12516. border-width:0px;
  12517. position:absolute;
  12518. left:0px;
  12519. top:0px;
  12520. width:0px;
  12521. height:0px;
  12522. }
  12523. #u41760 {
  12524. border-width:0px;
  12525. position:absolute;
  12526. left:0px;
  12527. top:0px;
  12528. width:0px;
  12529. height:0px;
  12530. }
  12531. #u41761_div {
  12532. border-width:0px;
  12533. position:absolute;
  12534. left:0px;
  12535. top:0px;
  12536. width:235px;
  12537. height:40px;
  12538. background:inherit;
  12539. background-color:rgba(255, 255, 255, 0);
  12540. border-left:0px;
  12541. border-top:0px;
  12542. border-right:0px;
  12543. border-radius:0px;
  12544. border-bottom-right-radius:0px;
  12545. border-bottom-left-radius:0px;
  12546. filter:drop-shadow(none);
  12547. transition:none;
  12548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12549. font-weight:400;
  12550. font-style:normal;
  12551. font-size:14px;
  12552. color:#AAAAAA;
  12553. line-height:40px;
  12554. }
  12555. #u41761 {
  12556. border-width:0px;
  12557. position:absolute;
  12558. left:1407px;
  12559. top:803px;
  12560. width:235px;
  12561. height:40px;
  12562. display:flex;
  12563. transition:none;
  12564. transform-origin:50% 50%;
  12565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12566. font-weight:400;
  12567. font-style:normal;
  12568. font-size:14px;
  12569. color:#AAAAAA;
  12570. line-height:40px;
  12571. }
  12572. #u41761 .text {
  12573. position:absolute;
  12574. align-self:flex-start;
  12575. padding:0px 0px 0px 0px;
  12576. box-sizing:border-box;
  12577. width:100%;
  12578. }
  12579. #u41761_text {
  12580. border-width:0px;
  12581. word-wrap:break-word;
  12582. text-transform:none;
  12583. }
  12584. #u41762_div {
  12585. border-width:0px;
  12586. position:absolute;
  12587. left:0px;
  12588. top:0px;
  12589. width:64px;
  12590. height:40px;
  12591. background:inherit;
  12592. background-color:rgba(255, 255, 255, 0);
  12593. border-left:0px;
  12594. border-top:0px;
  12595. border-right:0px;
  12596. border-radius:0px;
  12597. border-bottom-right-radius:0px;
  12598. border-bottom-left-radius:0px;
  12599. filter:drop-shadow(none);
  12600. transition:none;
  12601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12602. font-weight:400;
  12603. font-style:normal;
  12604. font-size:14px;
  12605. line-height:40px;
  12606. }
  12607. #u41762 {
  12608. border-width:0px;
  12609. position:absolute;
  12610. left:1407px;
  12611. top:763px;
  12612. width:64px;
  12613. height:40px;
  12614. display:flex;
  12615. transition:none;
  12616. transform-origin:50% 50%;
  12617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12618. font-weight:400;
  12619. font-style:normal;
  12620. font-size:14px;
  12621. line-height:40px;
  12622. }
  12623. #u41762 .text {
  12624. position:absolute;
  12625. align-self:flex-start;
  12626. padding:0px 0px 0px 0px;
  12627. box-sizing:border-box;
  12628. width:100%;
  12629. }
  12630. #u41762_text {
  12631. border-width:0px;
  12632. white-space:nowrap;
  12633. text-transform:none;
  12634. }
  12635. #u41763_div {
  12636. border-width:0px;
  12637. position:absolute;
  12638. left:0px;
  12639. top:0px;
  12640. width:294px;
  12641. height:17px;
  12642. background:inherit;
  12643. background-color:rgba(255, 255, 255, 0);
  12644. border-left:0px;
  12645. border-top:0px;
  12646. border-right:0px;
  12647. border-radius:0px;
  12648. border-bottom-right-radius:0px;
  12649. border-bottom-left-radius:0px;
  12650. filter:drop-shadow(none);
  12651. transition:none;
  12652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12653. font-weight:400;
  12654. font-style:normal;
  12655. font-size:12px;
  12656. color:#D9001B;
  12657. }
  12658. #u41763 {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:1439px;
  12662. top:792px;
  12663. width:294px;
  12664. height:17px;
  12665. display:flex;
  12666. transition:none;
  12667. transform-origin:50% 50%;
  12668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12669. font-weight:400;
  12670. font-style:normal;
  12671. font-size:12px;
  12672. color:#D9001B;
  12673. }
  12674. #u41763 .text {
  12675. position:absolute;
  12676. align-self:flex-start;
  12677. padding:0px 0px 0px 0px;
  12678. box-sizing:border-box;
  12679. width:100%;
  12680. }
  12681. #u41763_text {
  12682. border-width:0px;
  12683. white-space:nowrap;
  12684. text-transform:none;
  12685. }
  12686. #u41764 {
  12687. border-width:0px;
  12688. position:absolute;
  12689. left:0px;
  12690. top:0px;
  12691. width:0px;
  12692. height:0px;
  12693. }
  12694. #u41765_div {
  12695. border-width:0px;
  12696. position:absolute;
  12697. left:0px;
  12698. top:0px;
  12699. width:57px;
  12700. height:40px;
  12701. background:inherit;
  12702. background-color:rgba(255, 255, 255, 0);
  12703. border-left:0px;
  12704. border-top:0px;
  12705. border-right:0px;
  12706. border-radius:0px;
  12707. border-bottom-right-radius:0px;
  12708. border-bottom-left-radius:0px;
  12709. filter:drop-shadow(none);
  12710. transition:none;
  12711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12712. font-weight:400;
  12713. font-style:normal;
  12714. font-size:14px;
  12715. line-height:40px;
  12716. }
  12717. #u41765 {
  12718. border-width:0px;
  12719. position:absolute;
  12720. left:1407px;
  12721. top:843px;
  12722. width:57px;
  12723. height:40px;
  12724. display:flex;
  12725. transition:none;
  12726. transform-origin:50% 50%;
  12727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12728. font-weight:400;
  12729. font-style:normal;
  12730. font-size:14px;
  12731. line-height:40px;
  12732. }
  12733. #u41765 .text {
  12734. position:absolute;
  12735. align-self:flex-start;
  12736. padding:0px 0px 0px 0px;
  12737. box-sizing:border-box;
  12738. width:100%;
  12739. }
  12740. #u41765_text {
  12741. border-width:0px;
  12742. white-space:nowrap;
  12743. text-transform:none;
  12744. }
  12745. #u41766_div {
  12746. border-width:0px;
  12747. position:absolute;
  12748. left:0px;
  12749. top:0px;
  12750. width:229px;
  12751. height:34px;
  12752. background:inherit;
  12753. background-color:rgba(255, 255, 255, 0);
  12754. border-left:0px;
  12755. border-top:0px;
  12756. border-right:0px;
  12757. border-radius:0px;
  12758. border-bottom-right-radius:0px;
  12759. border-bottom-left-radius:0px;
  12760. filter:drop-shadow(none);
  12761. transition:none;
  12762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12763. font-weight:400;
  12764. font-style:normal;
  12765. font-size:12px;
  12766. color:#AAAAAA;
  12767. }
  12768. #u41766 {
  12769. border-width:0px;
  12770. position:absolute;
  12771. left:1509px;
  12772. top:883px;
  12773. width:229px;
  12774. height:34px;
  12775. display:flex;
  12776. transition:none;
  12777. transform-origin:50% 50%;
  12778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12779. font-weight:400;
  12780. font-style:normal;
  12781. font-size:12px;
  12782. color:#AAAAAA;
  12783. }
  12784. #u41766 .text {
  12785. position:absolute;
  12786. align-self:flex-start;
  12787. padding:0px 0px 0px 0px;
  12788. box-sizing:border-box;
  12789. width:100%;
  12790. }
  12791. #u41766_text {
  12792. border-width:0px;
  12793. white-space:nowrap;
  12794. text-transform:none;
  12795. }
  12796. #u41767 {
  12797. border-width:0px;
  12798. position:absolute;
  12799. left:1407px;
  12800. top:883px;
  12801. width:90px;
  12802. height:90px;
  12803. display:flex;
  12804. transition:none;
  12805. font-size:28px;
  12806. }
  12807. #u41767 .text {
  12808. position:absolute;
  12809. align-self:center;
  12810. padding:2px 2px 2px 2px;
  12811. box-sizing:border-box;
  12812. width:100%;
  12813. }
  12814. #u41767_img {
  12815. border-width:0px;
  12816. position:absolute;
  12817. left:0px;
  12818. top:0px;
  12819. width:90px;
  12820. height:90px;
  12821. }
  12822. #u41767_text {
  12823. border-width:0px;
  12824. word-wrap:break-word;
  12825. text-transform:none;
  12826. }
  12827. #u41768_div {
  12828. border-width:0px;
  12829. position:absolute;
  12830. left:0px;
  12831. top:0px;
  12832. width:620px;
  12833. height:34px;
  12834. background:inherit;
  12835. background-color:rgba(255, 255, 255, 0);
  12836. border-left:0px;
  12837. border-top:0px;
  12838. border-right:0px;
  12839. border-radius:0px;
  12840. border-bottom-right-radius:0px;
  12841. border-bottom-left-radius:0px;
  12842. filter:drop-shadow(none);
  12843. transition:none;
  12844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12845. font-weight:400;
  12846. font-style:normal;
  12847. font-size:12px;
  12848. color:#D9001B;
  12849. }
  12850. #u41768 {
  12851. border-width:0px;
  12852. position:absolute;
  12853. left:473px;
  12854. top:883px;
  12855. width:620px;
  12856. height:34px;
  12857. display:flex;
  12858. transition:none;
  12859. transform-origin:50% 50%;
  12860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12861. font-weight:400;
  12862. font-style:normal;
  12863. font-size:12px;
  12864. color:#D9001B;
  12865. }
  12866. #u41768 .text {
  12867. position:absolute;
  12868. align-self:center;
  12869. padding:0px 0px 0px 0px;
  12870. box-sizing:border-box;
  12871. width:100%;
  12872. }
  12873. #u41768_text {
  12874. border-width:0px;
  12875. white-space:nowrap;
  12876. text-transform:none;
  12877. }