styles.css 111 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1839px;
  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. #u40024 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u40025 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u40025 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u40025_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u40025_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u40026_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u40026 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u40026 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u40026_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u40027 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u40028_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u40028 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u40028 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u40028_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u40029 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u40030 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u40030 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u40030_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u40030_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u40031 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u40031 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u40031_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u40031_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u40032 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u40033 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u40033 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u40033_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u40033_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u40034 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u40034 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u40034_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u40034_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u40035 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u40035 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u40035_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u40035_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u40036 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u40036 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u40036_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u40036_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u40037 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u40037 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u40037_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u40037_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u40038_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u40038 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u40038 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u40038_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u40039 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u40040 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u40040 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u40040_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u40040_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u40041_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u40041 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u40041 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u40041_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u40042 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u40043 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u40043 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u40043_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u40043_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u40044_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u40044 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u40044 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u40044_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u40045_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u40045 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u40045 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u40045_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u40046 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u40047 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u40047 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u40047_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u40047_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u40048_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u40048 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u40048 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u40048_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u40049 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u40050 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u40050 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u40050_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u40050_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u40051_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u40051 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u40051 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u40051_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u40052_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:740px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. box-sizing:border-box;
  812. border-width:1px;
  813. border-style:solid;
  814. border-color:rgba(242, 242, 242, 1);
  815. border-radius:26px;
  816. border-top-left-radius:0px;
  817. border-top-right-radius:0px;
  818. filter:drop-shadow(none);
  819. transition:none;
  820. }
  821. #u40052 {
  822. border-width:0px;
  823. position:absolute;
  824. left:29px;
  825. top:105px;
  826. width:375px;
  827. height:740px;
  828. display:flex;
  829. transition:none;
  830. transform-origin:50% 50%;
  831. }
  832. #u40052 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u40052_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u40053_div {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:109px;
  851. height:25px;
  852. background:inherit;
  853. background-color:rgba(255, 255, 255, 0);
  854. border-radius:0px;
  855. filter:drop-shadow(none);
  856. transition:none;
  857. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  858. font-weight:500;
  859. font-style:normal;
  860. font-size:18px;
  861. }
  862. #u40053 {
  863. border-width:0px;
  864. position:absolute;
  865. left:66px;
  866. top:74px;
  867. width:109px;
  868. height:25px;
  869. display:flex;
  870. transition:none;
  871. transform-origin:50% 50%;
  872. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  873. font-weight:500;
  874. font-style:normal;
  875. font-size:18px;
  876. }
  877. #u40053 .text {
  878. position:absolute;
  879. align-self:flex-start;
  880. padding:0px 0px 0px 0px;
  881. box-sizing:border-box;
  882. width:100%;
  883. }
  884. #u40053_text {
  885. border-width:0px;
  886. white-space:nowrap;
  887. text-transform:none;
  888. }
  889. #u40054 {
  890. border-width:0px;
  891. position:absolute;
  892. left:29px;
  893. top:145px;
  894. width:375px;
  895. height:650px;
  896. }
  897. #u40054_state0 {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:375px;
  903. height:650px;
  904. overflow:auto;
  905. -webkit-overflow-scrolling:touch;
  906. -ms-overflow-x:hidden;
  907. overflow-x:hidden;
  908. background-image:none;
  909. border-radius:0px;
  910. -moz-box-shadow:none;
  911. -webkit-box-shadow:none;
  912. box-shadow:none;
  913. }
  914. #u40054_state0_content {
  915. border-width:0px;
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:1px;
  920. height:1px;
  921. }
  922. #u40055 {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:0px;
  928. height:0px;
  929. }
  930. #u40056 {
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:375px;
  936. height:126px;
  937. display:flex;
  938. transition:none;
  939. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  940. font-weight:400;
  941. font-style:normal;
  942. }
  943. #u40056 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:2px 2px 2px 2px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u40056_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:375px;
  956. height:126px;
  957. }
  958. #u40056_text {
  959. border-width:0px;
  960. word-wrap:break-word;
  961. text-transform:none;
  962. }
  963. #u40057 {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:0px;
  969. height:0px;
  970. }
  971. #u40058 {
  972. border-width:0px;
  973. position:absolute;
  974. left:162px;
  975. top:107px;
  976. width:10px;
  977. height:10px;
  978. display:flex;
  979. transition:none;
  980. }
  981. #u40058 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u40058_img {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:10px;
  994. height:10px;
  995. }
  996. #u40058_text {
  997. border-width:0px;
  998. word-wrap:break-word;
  999. text-transform:none;
  1000. visibility:hidden;
  1001. }
  1002. #u40059 {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:181px;
  1006. top:107px;
  1007. width:10px;
  1008. height:10px;
  1009. display:flex;
  1010. transition:none;
  1011. }
  1012. #u40059 .text {
  1013. position:absolute;
  1014. align-self:center;
  1015. padding:2px 2px 2px 2px;
  1016. box-sizing:border-box;
  1017. width:100%;
  1018. }
  1019. #u40059_img {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:10px;
  1025. height:10px;
  1026. }
  1027. #u40059_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. visibility:hidden;
  1032. }
  1033. #u40060 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:200px;
  1037. top:107px;
  1038. width:10px;
  1039. height:10px;
  1040. display:flex;
  1041. transition:none;
  1042. }
  1043. #u40060 .text {
  1044. position:absolute;
  1045. align-self:center;
  1046. padding:2px 2px 2px 2px;
  1047. box-sizing:border-box;
  1048. width:100%;
  1049. }
  1050. #u40060_img {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:10px;
  1056. height:10px;
  1057. }
  1058. #u40060_text {
  1059. border-width:0px;
  1060. word-wrap:break-word;
  1061. text-transform:none;
  1062. visibility:hidden;
  1063. }
  1064. #u40061 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:0px;
  1070. height:0px;
  1071. }
  1072. #u40062_div {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:355px;
  1078. height:100px;
  1079. background:inherit;
  1080. background-color:rgba(51, 51, 51, 1);
  1081. border-radius:4px;
  1082. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1083. transition:none;
  1084. }
  1085. #u40062 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:10px;
  1089. top:135px;
  1090. width:355px;
  1091. height:100px;
  1092. display:flex;
  1093. transition:none;
  1094. transform-origin:50% 50%;
  1095. }
  1096. #u40062 .text {
  1097. position:absolute;
  1098. align-self:center;
  1099. padding:2px 2px 2px 2px;
  1100. box-sizing:border-box;
  1101. width:100%;
  1102. }
  1103. #u40062_text {
  1104. border-width:0px;
  1105. word-wrap:break-word;
  1106. text-transform:none;
  1107. visibility:hidden;
  1108. }
  1109. #u40063_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:255px;
  1115. height:17px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border-radius:0px;
  1119. filter:drop-shadow(none);
  1120. transition:none;
  1121. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1122. font-weight:500;
  1123. font-style:normal;
  1124. font-size:12px;
  1125. color:#FFFFFF;
  1126. }
  1127. #u40063 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:93px;
  1131. top:146px;
  1132. width:255px;
  1133. height:17px;
  1134. display:flex;
  1135. transition:none;
  1136. transform-origin:50% 50%;
  1137. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1138. font-weight:500;
  1139. font-style:normal;
  1140. font-size:12px;
  1141. color:#FFFFFF;
  1142. }
  1143. #u40063 .text {
  1144. position:absolute;
  1145. align-self:flex-start;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u40063_text {
  1151. border-width:0px;
  1152. white-space:nowrap;
  1153. text-transform:none;
  1154. }
  1155. #u40064_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:49px;
  1161. height:66px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. border-radius:0px;
  1165. filter:drop-shadow(none);
  1166. transition:none;
  1167. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1168. font-weight:500;
  1169. font-style:normal;
  1170. font-size:24px;
  1171. color:#FFFFFF;
  1172. }
  1173. #u40064 {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:26px;
  1177. top:150px;
  1178. width:49px;
  1179. height:66px;
  1180. display:flex;
  1181. transition:none;
  1182. transform-origin:50% 50%;
  1183. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1184. font-weight:500;
  1185. font-style:normal;
  1186. font-size:24px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u40064 .text {
  1190. position:absolute;
  1191. align-self:flex-start;
  1192. padding:0px 0px 0px 0px;
  1193. box-sizing:border-box;
  1194. width:100%;
  1195. }
  1196. #u40064_text {
  1197. border-width:0px;
  1198. white-space:nowrap;
  1199. text-transform:none;
  1200. }
  1201. #u40065_div {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:0px;
  1205. top:0px;
  1206. width:253px;
  1207. height:17px;
  1208. background:inherit;
  1209. background-color:rgba(255, 255, 255, 0);
  1210. border-radius:0px;
  1211. filter:drop-shadow(none);
  1212. transition:none;
  1213. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1214. font-weight:500;
  1215. font-style:normal;
  1216. font-size:12px;
  1217. color:#FFFFFF;
  1218. }
  1219. #u40065 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:93px;
  1223. top:173px;
  1224. width:253px;
  1225. height:17px;
  1226. display:flex;
  1227. transition:none;
  1228. transform-origin:50% 50%;
  1229. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1230. font-weight:500;
  1231. font-style:normal;
  1232. font-size:12px;
  1233. color:#FFFFFF;
  1234. }
  1235. #u40065 .text {
  1236. position:absolute;
  1237. align-self:flex-start;
  1238. padding:0px 0px 0px 0px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u40065_text {
  1243. border-width:0px;
  1244. white-space:nowrap;
  1245. text-transform:none;
  1246. }
  1247. #u40066_div {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:253px;
  1253. height:17px;
  1254. background:inherit;
  1255. background-color:rgba(255, 255, 255, 0);
  1256. border-radius:0px;
  1257. filter:drop-shadow(none);
  1258. transition:none;
  1259. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1260. font-weight:500;
  1261. font-style:normal;
  1262. font-size:12px;
  1263. color:#FFFFFF;
  1264. }
  1265. #u40066 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:93px;
  1269. top:200px;
  1270. width:253px;
  1271. height:17px;
  1272. display:flex;
  1273. transition:none;
  1274. transform-origin:50% 50%;
  1275. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1276. font-weight:500;
  1277. font-style:normal;
  1278. font-size:12px;
  1279. color:#FFFFFF;
  1280. }
  1281. #u40066 .text {
  1282. position:absolute;
  1283. align-self:flex-start;
  1284. padding:0px 0px 0px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u40066_text {
  1289. border-width:0px;
  1290. white-space:nowrap;
  1291. text-transform:none;
  1292. }
  1293. #u40067_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:375px;
  1299. height:300px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 1);
  1302. box-sizing:border-box;
  1303. border-width:1px;
  1304. border-style:solid;
  1305. border-color:rgba(242, 242, 242, 1);
  1306. border-left:0px;
  1307. border-top:0px;
  1308. border-right:0px;
  1309. border-radius:0px;
  1310. border-bottom-right-radius:0px;
  1311. border-bottom-left-radius:0px;
  1312. filter:drop-shadow(none);
  1313. transition:none;
  1314. }
  1315. #u40067 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:246px;
  1320. width:375px;
  1321. height:300px;
  1322. display:flex;
  1323. transition:none;
  1324. transform-origin:50% 50%;
  1325. }
  1326. #u40067 .text {
  1327. position:absolute;
  1328. align-self:center;
  1329. padding:2px 2px 2px 2px;
  1330. box-sizing:border-box;
  1331. width:100%;
  1332. }
  1333. #u40067_text {
  1334. border-width:0px;
  1335. word-wrap:break-word;
  1336. text-transform:none;
  1337. visibility:hidden;
  1338. }
  1339. #u40068 {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:0px;
  1345. height:0px;
  1346. }
  1347. #u40069_div {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:30px;
  1353. height:30px;
  1354. background:inherit;
  1355. background-color:rgba(255, 255, 255, 1);
  1356. box-sizing:border-box;
  1357. border-width:1px;
  1358. border-style:solid;
  1359. border-color:rgba(121, 121, 121, 1);
  1360. border-radius:4px;
  1361. filter:drop-shadow(none);
  1362. transition:none;
  1363. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:8px;
  1367. }
  1368. #u40069 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:218px;
  1372. top:403px;
  1373. width:30px;
  1374. height:30px;
  1375. display:flex;
  1376. transition:none;
  1377. transform-origin:50% 50%;
  1378. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:8px;
  1382. }
  1383. #u40069 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u40069_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. }
  1395. #u40070_div {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:0px;
  1399. top:0px;
  1400. width:49px;
  1401. height:17px;
  1402. background:inherit;
  1403. background-color:rgba(255, 255, 255, 0);
  1404. border-radius:0px;
  1405. filter:drop-shadow(none);
  1406. transition:none;
  1407. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:12px;
  1411. }
  1412. #u40070 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:209px;
  1416. top:438px;
  1417. width:49px;
  1418. height:17px;
  1419. display:flex;
  1420. transition:none;
  1421. transform-origin:50% 50%;
  1422. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:12px;
  1426. }
  1427. #u40070 .text {
  1428. position:absolute;
  1429. align-self:flex-start;
  1430. padding:0px 0px 0px 0px;
  1431. box-sizing:border-box;
  1432. width:100%;
  1433. }
  1434. #u40070_text {
  1435. border-width:0px;
  1436. white-space:nowrap;
  1437. text-transform:none;
  1438. }
  1439. #u40071 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:0px;
  1445. height:0px;
  1446. }
  1447. #u40072_div {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:30px;
  1453. height:30px;
  1454. background:inherit;
  1455. background-color:rgba(255, 255, 255, 1);
  1456. box-sizing:border-box;
  1457. border-width:1px;
  1458. border-style:solid;
  1459. border-color:rgba(121, 121, 121, 1);
  1460. border-radius:4px;
  1461. filter:drop-shadow(none);
  1462. transition:none;
  1463. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1464. font-weight:400;
  1465. font-style:normal;
  1466. font-size:8px;
  1467. }
  1468. #u40072 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:125px;
  1472. top:403px;
  1473. width:30px;
  1474. height:30px;
  1475. display:flex;
  1476. transition:none;
  1477. transform-origin:50% 50%;
  1478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. font-size:8px;
  1482. }
  1483. #u40072 .text {
  1484. position:absolute;
  1485. align-self:center;
  1486. padding:2px 2px 2px 2px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u40072_text {
  1491. border-width:0px;
  1492. word-wrap:break-word;
  1493. text-transform:none;
  1494. }
  1495. #u40073_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:49px;
  1501. height:17px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 0);
  1504. border-radius:0px;
  1505. filter:drop-shadow(none);
  1506. transition:none;
  1507. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:12px;
  1511. }
  1512. #u40073 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:115px;
  1516. top:437px;
  1517. width:49px;
  1518. height:17px;
  1519. display:flex;
  1520. transition:none;
  1521. transform-origin:50% 50%;
  1522. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:12px;
  1526. }
  1527. #u40073 .text {
  1528. position:absolute;
  1529. align-self:flex-start;
  1530. padding:0px 0px 0px 0px;
  1531. box-sizing:border-box;
  1532. width:100%;
  1533. }
  1534. #u40073_text {
  1535. border-width:0px;
  1536. white-space:nowrap;
  1537. text-transform:none;
  1538. }
  1539. #u40074 {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:0px;
  1545. height:0px;
  1546. }
  1547. #u40075_div {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:0px;
  1551. top:0px;
  1552. width:30px;
  1553. height:30px;
  1554. background:inherit;
  1555. background-color:rgba(255, 255, 255, 1);
  1556. box-sizing:border-box;
  1557. border-width:1px;
  1558. border-style:solid;
  1559. border-color:rgba(121, 121, 121, 1);
  1560. border-radius:4px;
  1561. filter:drop-shadow(none);
  1562. transition:none;
  1563. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1564. font-weight:400;
  1565. font-style:normal;
  1566. font-size:8px;
  1567. }
  1568. #u40075 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:218px;
  1572. top:330px;
  1573. width:30px;
  1574. height:30px;
  1575. display:flex;
  1576. transition:none;
  1577. transform-origin:50% 50%;
  1578. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1579. font-weight:400;
  1580. font-style:normal;
  1581. font-size:8px;
  1582. }
  1583. #u40075 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 2px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u40075_text {
  1591. border-width:0px;
  1592. word-wrap:break-word;
  1593. text-transform:none;
  1594. }
  1595. #u40076_div {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:49px;
  1601. height:17px;
  1602. background:inherit;
  1603. background-color:rgba(255, 255, 255, 0);
  1604. border-radius:0px;
  1605. filter:drop-shadow(none);
  1606. transition:none;
  1607. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:12px;
  1611. }
  1612. #u40076 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:209px;
  1616. top:365px;
  1617. width:49px;
  1618. height:17px;
  1619. display:flex;
  1620. transition:none;
  1621. transform-origin:50% 50%;
  1622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:12px;
  1626. }
  1627. #u40076 .text {
  1628. position:absolute;
  1629. align-self:flex-start;
  1630. padding:0px 0px 0px 0px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u40076_text {
  1635. border-width:0px;
  1636. white-space:nowrap;
  1637. text-transform:none;
  1638. }
  1639. #u40077 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:0px;
  1643. top:0px;
  1644. width:0px;
  1645. height:0px;
  1646. }
  1647. #u40078_div {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:30px;
  1653. height:30px;
  1654. background:inherit;
  1655. background-color:rgba(255, 255, 255, 1);
  1656. box-sizing:border-box;
  1657. border-width:1px;
  1658. border-style:solid;
  1659. border-color:rgba(121, 121, 121, 1);
  1660. border-radius:4px;
  1661. filter:drop-shadow(none);
  1662. transition:none;
  1663. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:8px;
  1667. }
  1668. #u40078 {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:305px;
  1672. top:404px;
  1673. width:30px;
  1674. height:30px;
  1675. display:flex;
  1676. transition:none;
  1677. transform-origin:50% 50%;
  1678. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:8px;
  1682. }
  1683. #u40078 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u40078_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. }
  1695. #u40079_div {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:49px;
  1701. height:17px;
  1702. background:inherit;
  1703. background-color:rgba(255, 255, 255, 0);
  1704. border-radius:0px;
  1705. filter:drop-shadow(none);
  1706. transition:none;
  1707. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:12px;
  1711. }
  1712. #u40079 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:295px;
  1716. top:438px;
  1717. width:49px;
  1718. height:17px;
  1719. display:flex;
  1720. transition:none;
  1721. transform-origin:50% 50%;
  1722. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:12px;
  1726. }
  1727. #u40079 .text {
  1728. position:absolute;
  1729. align-self:flex-start;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u40079_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u40080 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:0px;
  1745. height:0px;
  1746. }
  1747. #u40081_div {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:375px;
  1753. height:213px;
  1754. background:inherit;
  1755. background-color:rgba(255, 255, 255, 1);
  1756. box-sizing:border-box;
  1757. border-width:1px;
  1758. border-style:solid;
  1759. border-color:rgba(242, 242, 242, 1);
  1760. border-left:0px;
  1761. border-top:0px;
  1762. border-right:0px;
  1763. border-radius:0px;
  1764. border-bottom-right-radius:0px;
  1765. border-bottom-left-radius:0px;
  1766. filter:drop-shadow(none);
  1767. transition:none;
  1768. }
  1769. #u40081 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:556px;
  1774. width:375px;
  1775. height:213px;
  1776. display:flex;
  1777. transition:none;
  1778. transform-origin:50% 50%;
  1779. }
  1780. #u40081 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u40081_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u40082_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:57px;
  1799. height:20px;
  1800. background:inherit;
  1801. background-color:rgba(255, 255, 255, 0);
  1802. border-radius:0px;
  1803. filter:drop-shadow(none);
  1804. transition:none;
  1805. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1806. font-weight:500;
  1807. font-style:normal;
  1808. }
  1809. #u40082 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:10px;
  1813. top:571px;
  1814. width:57px;
  1815. height:20px;
  1816. display:flex;
  1817. transition:none;
  1818. transform-origin:50% 50%;
  1819. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1820. font-weight:500;
  1821. font-style:normal;
  1822. }
  1823. #u40082 .text {
  1824. position:absolute;
  1825. align-self:flex-start;
  1826. padding:0px 0px 0px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u40082_text {
  1831. border-width:0px;
  1832. white-space:nowrap;
  1833. text-transform:none;
  1834. }
  1835. #u40083_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:355px;
  1841. height:70px;
  1842. background:inherit;
  1843. background-color:rgba(51, 51, 51, 1);
  1844. border-radius:4px;
  1845. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1846. transition:none;
  1847. }
  1848. #u40083 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:10px;
  1852. top:600px;
  1853. width:355px;
  1854. height:70px;
  1855. display:flex;
  1856. transition:none;
  1857. transform-origin:50% 50%;
  1858. }
  1859. #u40083 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u40083_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u40084 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:20px;
  1876. top:614px;
  1877. width:29px;
  1878. height:29px;
  1879. display:flex;
  1880. transition:none;
  1881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. }
  1886. #u40084 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u40084_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:29px;
  1899. height:29px;
  1900. }
  1901. #u40084_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. }
  1906. #u40085_div {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:73px;
  1912. height:25px;
  1913. background:inherit;
  1914. background-color:rgba(255, 255, 255, 0);
  1915. border-radius:0px;
  1916. filter:drop-shadow(none);
  1917. transition:none;
  1918. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1919. font-weight:500;
  1920. font-style:normal;
  1921. font-size:18px;
  1922. color:#FFFFFF;
  1923. }
  1924. #u40085 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:63px;
  1928. top:616px;
  1929. width:73px;
  1930. height:25px;
  1931. display:flex;
  1932. transition:none;
  1933. transform-origin:50% 50%;
  1934. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1935. font-weight:500;
  1936. font-style:normal;
  1937. font-size:18px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u40085 .text {
  1941. position:absolute;
  1942. align-self:flex-start;
  1943. padding:0px 0px 0px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u40085_text {
  1948. border-width:0px;
  1949. white-space:nowrap;
  1950. text-transform:none;
  1951. }
  1952. #u40086 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:327px;
  1956. top:629px;
  1957. width:20px;
  1958. height:20px;
  1959. display:flex;
  1960. transition:none;
  1961. }
  1962. #u40086 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u40086_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:20px;
  1975. height:20px;
  1976. }
  1977. #u40086_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. visibility:hidden;
  1982. }
  1983. #u40087_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:189px;
  1989. height:17px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 0);
  1992. border-radius:0px;
  1993. filter:drop-shadow(none);
  1994. transition:none;
  1995. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:12px;
  1999. color:#FFFFFF;
  2000. }
  2001. #u40087 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:63px;
  2005. top:641px;
  2006. width:189px;
  2007. height:17px;
  2008. display:flex;
  2009. transition:none;
  2010. transform-origin:50% 50%;
  2011. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:12px;
  2015. color:#FFFFFF;
  2016. }
  2017. #u40087 .text {
  2018. position:absolute;
  2019. align-self:flex-start;
  2020. padding:0px 0px 0px 0px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u40087_text {
  2025. border-width:0px;
  2026. white-space:nowrap;
  2027. text-transform:none;
  2028. }
  2029. #u40088 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:0px;
  2035. height:0px;
  2036. }
  2037. #u40089_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:355px;
  2043. height:70px;
  2044. background:inherit;
  2045. background-color:rgba(51, 51, 51, 1);
  2046. border-radius:4px;
  2047. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2048. transition:none;
  2049. }
  2050. #u40089 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:10px;
  2054. top:680px;
  2055. width:355px;
  2056. height:70px;
  2057. display:flex;
  2058. transition:none;
  2059. transform-origin:50% 50%;
  2060. }
  2061. #u40089 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 2px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u40089_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. visibility:hidden;
  2073. }
  2074. #u40090 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:20px;
  2078. top:694px;
  2079. width:29px;
  2080. height:29px;
  2081. display:flex;
  2082. transition:none;
  2083. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:14px;
  2087. }
  2088. #u40090 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 2px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u40090_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:29px;
  2101. height:29px;
  2102. }
  2103. #u40090_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. }
  2108. #u40091_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:73px;
  2114. height:25px;
  2115. background:inherit;
  2116. background-color:rgba(255, 255, 255, 0);
  2117. border-radius:0px;
  2118. filter:drop-shadow(none);
  2119. transition:none;
  2120. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2121. font-weight:500;
  2122. font-style:normal;
  2123. font-size:18px;
  2124. color:#FFFFFF;
  2125. }
  2126. #u40091 {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:63px;
  2130. top:696px;
  2131. width:73px;
  2132. height:25px;
  2133. display:flex;
  2134. transition:none;
  2135. transform-origin:50% 50%;
  2136. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2137. font-weight:500;
  2138. font-style:normal;
  2139. font-size:18px;
  2140. color:#FFFFFF;
  2141. }
  2142. #u40091 .text {
  2143. position:absolute;
  2144. align-self:flex-start;
  2145. padding:0px 0px 0px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u40091_text {
  2150. border-width:0px;
  2151. white-space:nowrap;
  2152. text-transform:none;
  2153. }
  2154. #u40092_div {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:97px;
  2160. height:17px;
  2161. background:inherit;
  2162. background-color:rgba(255, 255, 255, 0);
  2163. border-radius:0px;
  2164. filter:drop-shadow(none);
  2165. transition:none;
  2166. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:12px;
  2170. color:#FFFFFF;
  2171. }
  2172. #u40092 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:63px;
  2176. top:721px;
  2177. width:97px;
  2178. height:17px;
  2179. display:flex;
  2180. transition:none;
  2181. transform-origin:50% 50%;
  2182. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#FFFFFF;
  2187. }
  2188. #u40092 .text {
  2189. position:absolute;
  2190. align-self:flex-start;
  2191. padding:0px 0px 0px 0px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u40092_text {
  2196. border-width:0px;
  2197. white-space:nowrap;
  2198. text-transform:none;
  2199. }
  2200. #u40093 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:331px;
  2204. top:710px;
  2205. width:12px;
  2206. height:20px;
  2207. display:flex;
  2208. transition:none;
  2209. }
  2210. #u40093 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 2px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u40093_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:12px;
  2223. height:20px;
  2224. }
  2225. #u40093_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. visibility:hidden;
  2230. }
  2231. #u40094 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:0px;
  2237. height:0px;
  2238. }
  2239. #u40095_div {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:30px;
  2245. height:30px;
  2246. background:inherit;
  2247. background-color:rgba(255, 255, 255, 1);
  2248. box-sizing:border-box;
  2249. border-width:1px;
  2250. border-style:solid;
  2251. border-color:rgba(121, 121, 121, 1);
  2252. border-radius:4px;
  2253. filter:drop-shadow(none);
  2254. transition:none;
  2255. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:8px;
  2259. }
  2260. #u40095 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:219px;
  2264. top:265px;
  2265. width:30px;
  2266. height:30px;
  2267. display:flex;
  2268. transition:none;
  2269. transform-origin:50% 50%;
  2270. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:8px;
  2274. }
  2275. #u40095 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u40095_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u40096_div {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:49px;
  2293. height:17px;
  2294. background:inherit;
  2295. background-color:rgba(255, 255, 255, 0);
  2296. border-radius:0px;
  2297. filter:drop-shadow(none);
  2298. transition:none;
  2299. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:12px;
  2303. }
  2304. #u40096 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:209px;
  2308. top:299px;
  2309. width:49px;
  2310. height:17px;
  2311. display:flex;
  2312. transition:none;
  2313. transform-origin:50% 50%;
  2314. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. }
  2319. #u40096 .text {
  2320. position:absolute;
  2321. align-self:flex-start;
  2322. padding:0px 0px 0px 0px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u40096_text {
  2327. border-width:0px;
  2328. white-space:nowrap;
  2329. text-transform:none;
  2330. }
  2331. #u40097 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:0px;
  2337. height:0px;
  2338. }
  2339. #u40098_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:30px;
  2345. height:30px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 1);
  2348. box-sizing:border-box;
  2349. border-width:1px;
  2350. border-style:solid;
  2351. border-color:rgba(121, 121, 121, 1);
  2352. border-radius:4px;
  2353. filter:drop-shadow(none);
  2354. transition:none;
  2355. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:8px;
  2359. }
  2360. #u40098 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:35px;
  2364. top:265px;
  2365. width:30px;
  2366. height:30px;
  2367. display:flex;
  2368. transition:none;
  2369. transform-origin:50% 50%;
  2370. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:8px;
  2374. }
  2375. #u40098 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 2px 2px 2px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u40098_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. }
  2387. #u40099_div {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:49px;
  2393. height:17px;
  2394. background:inherit;
  2395. background-color:rgba(255, 255, 255, 0);
  2396. border-radius:0px;
  2397. filter:drop-shadow(none);
  2398. transition:none;
  2399. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. }
  2404. #u40099 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:26px;
  2408. top:300px;
  2409. width:49px;
  2410. height:17px;
  2411. display:flex;
  2412. transition:none;
  2413. transform-origin:50% 50%;
  2414. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:12px;
  2418. }
  2419. #u40099 .text {
  2420. position:absolute;
  2421. align-self:flex-start;
  2422. padding:0px 0px 0px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u40099_text {
  2427. border-width:0px;
  2428. white-space:nowrap;
  2429. text-transform:none;
  2430. }
  2431. #u40100 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:0px;
  2437. height:0px;
  2438. }
  2439. #u40101_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:30px;
  2445. height:30px;
  2446. background:inherit;
  2447. background-color:rgba(242, 242, 242, 1);
  2448. box-sizing:border-box;
  2449. border-width:1px;
  2450. border-style:solid;
  2451. border-color:rgba(121, 121, 121, 1);
  2452. border-radius:4px;
  2453. filter:drop-shadow(none);
  2454. transition:none;
  2455. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:8px;
  2459. }
  2460. #u40101 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:35px;
  2464. top:469px;
  2465. width:30px;
  2466. height:30px;
  2467. display:flex;
  2468. transition:none;
  2469. transform-origin:50% 50%;
  2470. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:8px;
  2474. }
  2475. #u40101 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u40101_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. }
  2487. #u40102_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:49px;
  2493. height:17px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border-radius:0px;
  2497. filter:drop-shadow(none);
  2498. transition:none;
  2499. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. }
  2504. #u40102 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:26px;
  2508. top:504px;
  2509. width:49px;
  2510. height:17px;
  2511. display:flex;
  2512. transition:none;
  2513. transform-origin:50% 50%;
  2514. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. }
  2519. #u40102 .text {
  2520. position:absolute;
  2521. align-self:flex-start;
  2522. padding:0px 0px 0px 0px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u40102_text {
  2527. border-width:0px;
  2528. white-space:nowrap;
  2529. text-transform:none;
  2530. }
  2531. #u40103 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:0px;
  2537. height:0px;
  2538. }
  2539. #u40104_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:30px;
  2545. height:30px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 1);
  2548. box-sizing:border-box;
  2549. border-width:1px;
  2550. border-style:solid;
  2551. border-color:rgba(121, 121, 121, 1);
  2552. border-radius:4px;
  2553. filter:drop-shadow(none);
  2554. transition:none;
  2555. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2556. font-weight:400;
  2557. font-style:normal;
  2558. font-size:8px;
  2559. }
  2560. #u40104 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:35px;
  2564. top:403px;
  2565. width:30px;
  2566. height:30px;
  2567. display:flex;
  2568. transition:none;
  2569. transform-origin:50% 50%;
  2570. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:8px;
  2574. }
  2575. #u40104 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 2px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u40104_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. }
  2587. #u40105_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:49px;
  2593. height:17px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 0);
  2596. border-radius:0px;
  2597. filter:drop-shadow(none);
  2598. transition:none;
  2599. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. }
  2604. #u40105 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:26px;
  2608. top:438px;
  2609. width:49px;
  2610. height:17px;
  2611. display:flex;
  2612. transition:none;
  2613. transform-origin:50% 50%;
  2614. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:12px;
  2618. }
  2619. #u40105 .text {
  2620. position:absolute;
  2621. align-self:flex-start;
  2622. padding:0px 0px 0px 0px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u40105_text {
  2627. border-width:0px;
  2628. white-space:nowrap;
  2629. text-transform:none;
  2630. }
  2631. #u40106 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:769px;
  2636. width:375px;
  2637. height:798px;
  2638. display:flex;
  2639. transition:none;
  2640. }
  2641. #u40106 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 2px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u40106_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:375px;
  2654. height:798px;
  2655. }
  2656. #u40106_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. visibility:hidden;
  2661. }
  2662. #u40107 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:0px;
  2666. top:0px;
  2667. width:0px;
  2668. height:0px;
  2669. }
  2670. #u40108_div {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:30px;
  2676. height:30px;
  2677. background:inherit;
  2678. background-color:rgba(255, 255, 255, 1);
  2679. box-sizing:border-box;
  2680. border-width:1px;
  2681. border-style:solid;
  2682. border-color:rgba(121, 121, 121, 1);
  2683. border-radius:4px;
  2684. filter:drop-shadow(none);
  2685. transition:none;
  2686. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:8px;
  2690. }
  2691. #u40108 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:125px;
  2695. top:265px;
  2696. width:30px;
  2697. height:30px;
  2698. display:flex;
  2699. transition:none;
  2700. transform-origin:50% 50%;
  2701. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:8px;
  2705. }
  2706. #u40108 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 2px 2px 2px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u40108_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. }
  2718. #u40109_div {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:49px;
  2724. height:17px;
  2725. background:inherit;
  2726. background-color:rgba(255, 255, 255, 0);
  2727. border-radius:0px;
  2728. filter:drop-shadow(none);
  2729. transition:none;
  2730. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. }
  2735. #u40109 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:115px;
  2739. top:299px;
  2740. width:49px;
  2741. height:17px;
  2742. display:flex;
  2743. transition:none;
  2744. transform-origin:50% 50%;
  2745. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. }
  2750. #u40109 .text {
  2751. position:absolute;
  2752. align-self:flex-start;
  2753. padding:0px 0px 0px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u40109_text {
  2758. border-width:0px;
  2759. white-space:nowrap;
  2760. text-transform:none;
  2761. }
  2762. #u40110 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:0px;
  2768. height:0px;
  2769. }
  2770. #u40111_div {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:30px;
  2776. height:30px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 1);
  2779. box-sizing:border-box;
  2780. border-width:1px;
  2781. border-style:solid;
  2782. border-color:rgba(121, 121, 121, 1);
  2783. border-radius:4px;
  2784. filter:drop-shadow(none);
  2785. transition:none;
  2786. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:8px;
  2790. }
  2791. #u40111 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:305px;
  2795. top:330px;
  2796. width:30px;
  2797. height:30px;
  2798. display:flex;
  2799. transition:none;
  2800. transform-origin:50% 50%;
  2801. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:8px;
  2805. }
  2806. #u40111 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u40111_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. }
  2818. #u40112_div {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:49px;
  2824. height:17px;
  2825. background:inherit;
  2826. background-color:rgba(255, 255, 255, 0);
  2827. border-radius:0px;
  2828. filter:drop-shadow(none);
  2829. transition:none;
  2830. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. }
  2835. #u40112 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:295px;
  2839. top:364px;
  2840. width:49px;
  2841. height:17px;
  2842. display:flex;
  2843. transition:none;
  2844. transform-origin:50% 50%;
  2845. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. }
  2850. #u40112 .text {
  2851. position:absolute;
  2852. align-self:flex-start;
  2853. padding:0px 0px 0px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u40112_text {
  2858. border-width:0px;
  2859. white-space:nowrap;
  2860. text-transform:none;
  2861. }
  2862. #u40113 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:0px;
  2868. height:0px;
  2869. }
  2870. #u40114_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:30px;
  2876. height:30px;
  2877. background:inherit;
  2878. background-color:rgba(255, 255, 255, 1);
  2879. box-sizing:border-box;
  2880. border-width:1px;
  2881. border-style:solid;
  2882. border-color:rgba(121, 121, 121, 1);
  2883. border-radius:4px;
  2884. filter:drop-shadow(none);
  2885. transition:none;
  2886. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:8px;
  2890. }
  2891. #u40114 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:125px;
  2895. top:470px;
  2896. width:30px;
  2897. height:30px;
  2898. display:flex;
  2899. transition:none;
  2900. transform-origin:50% 50%;
  2901. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:8px;
  2905. }
  2906. #u40114 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u40114_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. }
  2918. #u40115_div {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:49px;
  2924. height:17px;
  2925. background:inherit;
  2926. background-color:rgba(255, 255, 255, 0);
  2927. border-radius:0px;
  2928. filter:drop-shadow(none);
  2929. transition:none;
  2930. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. }
  2935. #u40115 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:115px;
  2939. top:504px;
  2940. width:49px;
  2941. height:17px;
  2942. display:flex;
  2943. transition:none;
  2944. transform-origin:50% 50%;
  2945. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. }
  2950. #u40115 .text {
  2951. position:absolute;
  2952. align-self:flex-start;
  2953. padding:0px 0px 0px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u40115_text {
  2958. border-width:0px;
  2959. white-space:nowrap;
  2960. text-transform:none;
  2961. }
  2962. #u40116 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:0px;
  2968. height:0px;
  2969. }
  2970. #u40117_div {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:30px;
  2976. height:30px;
  2977. background:inherit;
  2978. background-color:rgba(255, 255, 255, 1);
  2979. box-sizing:border-box;
  2980. border-width:1px;
  2981. border-style:solid;
  2982. border-color:rgba(121, 121, 121, 1);
  2983. border-radius:4px;
  2984. filter:drop-shadow(none);
  2985. transition:none;
  2986. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. font-size:8px;
  2990. }
  2991. #u40117 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:304px;
  2995. top:474px;
  2996. width:30px;
  2997. height:30px;
  2998. display:flex;
  2999. transition:none;
  3000. transform-origin:50% 50%;
  3001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:8px;
  3005. }
  3006. #u40117 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 2px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u40117_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. }
  3018. #u40118_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:37px;
  3024. height:17px;
  3025. background:inherit;
  3026. background-color:rgba(255, 255, 255, 0);
  3027. border-radius:0px;
  3028. filter:drop-shadow(none);
  3029. transition:none;
  3030. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:12px;
  3034. }
  3035. #u40118 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:301px;
  3039. top:509px;
  3040. width:37px;
  3041. height:17px;
  3042. display:flex;
  3043. transition:none;
  3044. transform-origin:50% 50%;
  3045. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. }
  3050. #u40118 .text {
  3051. position:absolute;
  3052. align-self:flex-start;
  3053. padding:0px 0px 0px 0px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u40118_text {
  3058. border-width:0px;
  3059. white-space:nowrap;
  3060. text-transform:none;
  3061. }
  3062. #u40119 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:0px;
  3068. height:0px;
  3069. }
  3070. #u40120_div {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:30px;
  3076. height:30px;
  3077. background:inherit;
  3078. background-color:rgba(255, 255, 255, 1);
  3079. box-sizing:border-box;
  3080. border-width:1px;
  3081. border-style:solid;
  3082. border-color:rgba(121, 121, 121, 1);
  3083. border-radius:4px;
  3084. filter:drop-shadow(none);
  3085. transition:none;
  3086. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:8px;
  3090. }
  3091. #u40120 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:124px;
  3095. top:329px;
  3096. width:30px;
  3097. height:30px;
  3098. display:flex;
  3099. transition:none;
  3100. transform-origin:50% 50%;
  3101. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:8px;
  3105. }
  3106. #u40120 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 2px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u40120_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. }
  3118. #u40121_div {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:49px;
  3124. height:17px;
  3125. background:inherit;
  3126. background-color:rgba(255, 255, 255, 0);
  3127. border-radius:0px;
  3128. filter:drop-shadow(none);
  3129. transition:none;
  3130. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:12px;
  3134. }
  3135. #u40121 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:115px;
  3139. top:364px;
  3140. width:49px;
  3141. height:17px;
  3142. display:flex;
  3143. transition:none;
  3144. transform-origin:50% 50%;
  3145. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. }
  3150. #u40121 .text {
  3151. position:absolute;
  3152. align-self:flex-start;
  3153. padding:0px 0px 0px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u40121_text {
  3158. border-width:0px;
  3159. white-space:nowrap;
  3160. text-transform:none;
  3161. }
  3162. #u40122 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:0px;
  3166. top:0px;
  3167. width:0px;
  3168. height:0px;
  3169. }
  3170. #u40123_div {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:30px;
  3176. height:30px;
  3177. background:inherit;
  3178. background-color:rgba(255, 255, 255, 1);
  3179. box-sizing:border-box;
  3180. border-width:1px;
  3181. border-style:solid;
  3182. border-color:rgba(121, 121, 121, 1);
  3183. border-radius:4px;
  3184. filter:drop-shadow(none);
  3185. transition:none;
  3186. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:8px;
  3190. }
  3191. #u40123 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:305px;
  3195. top:265px;
  3196. width:30px;
  3197. height:30px;
  3198. display:flex;
  3199. transition:none;
  3200. transform-origin:50% 50%;
  3201. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:8px;
  3205. }
  3206. #u40123 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 2px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u40123_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. }
  3218. #u40124_div {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:85px;
  3224. height:17px;
  3225. background:inherit;
  3226. background-color:rgba(255, 255, 255, 0);
  3227. border-radius:0px;
  3228. filter:drop-shadow(none);
  3229. transition:none;
  3230. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:12px;
  3234. }
  3235. #u40124 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:277px;
  3239. top:299px;
  3240. width:85px;
  3241. height:17px;
  3242. display:flex;
  3243. transition:none;
  3244. transform-origin:50% 50%;
  3245. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. }
  3250. #u40124 .text {
  3251. position:absolute;
  3252. align-self:flex-start;
  3253. padding:0px 0px 0px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u40124_text {
  3258. border-width:0px;
  3259. white-space:nowrap;
  3260. text-transform:none;
  3261. }
  3262. #u40125 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:0px;
  3268. height:0px;
  3269. }
  3270. #u40126_div {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:30px;
  3276. height:30px;
  3277. background:inherit;
  3278. background-color:rgba(255, 255, 255, 1);
  3279. box-sizing:border-box;
  3280. border-width:1px;
  3281. border-style:solid;
  3282. border-color:rgba(121, 121, 121, 1);
  3283. border-radius:4px;
  3284. filter:drop-shadow(none);
  3285. transition:none;
  3286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:8px;
  3290. }
  3291. #u40126 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:219px;
  3295. top:470px;
  3296. width:30px;
  3297. height:30px;
  3298. display:flex;
  3299. transition:none;
  3300. transform-origin:50% 50%;
  3301. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:8px;
  3305. }
  3306. #u40126 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 2px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u40126_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. }
  3318. #u40127_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:49px;
  3324. height:17px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 0);
  3327. border-radius:0px;
  3328. filter:drop-shadow(none);
  3329. transition:none;
  3330. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:12px;
  3334. }
  3335. #u40127 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:209px;
  3339. top:504px;
  3340. width:49px;
  3341. height:17px;
  3342. display:flex;
  3343. transition:none;
  3344. transform-origin:50% 50%;
  3345. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:12px;
  3349. }
  3350. #u40127 .text {
  3351. position:absolute;
  3352. align-self:flex-start;
  3353. padding:0px 0px 0px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u40127_text {
  3358. border-width:0px;
  3359. white-space:nowrap;
  3360. text-transform:none;
  3361. }
  3362. #u40128 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:0px;
  3368. height:0px;
  3369. }
  3370. #u40129_div {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:30px;
  3376. height:30px;
  3377. background:inherit;
  3378. background-color:rgba(255, 255, 255, 1);
  3379. box-sizing:border-box;
  3380. border-width:1px;
  3381. border-style:solid;
  3382. border-color:rgba(121, 121, 121, 1);
  3383. border-radius:4px;
  3384. filter:drop-shadow(none);
  3385. transition:none;
  3386. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:8px;
  3390. }
  3391. #u40129 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:35px;
  3395. top:329px;
  3396. width:30px;
  3397. height:30px;
  3398. display:flex;
  3399. transition:none;
  3400. transform-origin:50% 50%;
  3401. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:8px;
  3405. }
  3406. #u40129 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 2px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u40129_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. }
  3418. #u40130_div {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:49px;
  3424. height:17px;
  3425. background:inherit;
  3426. background-color:rgba(255, 255, 255, 0);
  3427. border-radius:0px;
  3428. filter:drop-shadow(none);
  3429. transition:none;
  3430. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. }
  3435. #u40130 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:26px;
  3439. top:364px;
  3440. width:49px;
  3441. height:17px;
  3442. display:flex;
  3443. transition:none;
  3444. transform-origin:50% 50%;
  3445. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. }
  3450. #u40130 .text {
  3451. position:absolute;
  3452. align-self:flex-start;
  3453. padding:0px 0px 0px 0px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u40130_text {
  3458. border-width:0px;
  3459. white-space:nowrap;
  3460. text-transform:none;
  3461. }
  3462. #u40131 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:44px;
  3466. top:77px;
  3467. width:13px;
  3468. height:19px;
  3469. display:flex;
  3470. transition:none;
  3471. }
  3472. #u40131 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u40131_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:13px;
  3485. height:19px;
  3486. }
  3487. #u40131_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u40132_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:57px;
  3499. height:20px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 0);
  3502. border-radius:0px;
  3503. filter:drop-shadow(none);
  3504. transition:none;
  3505. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. }
  3509. #u40132 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:44px;
  3513. top:115px;
  3514. width:57px;
  3515. height:20px;
  3516. display:flex;
  3517. transition:none;
  3518. transform-origin:50% 50%;
  3519. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. }
  3523. #u40132 .text {
  3524. position:absolute;
  3525. align-self:flex-start;
  3526. padding:0px 0px 0px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u40132_text {
  3531. border-width:0px;
  3532. white-space:nowrap;
  3533. text-transform:none;
  3534. }
  3535. #u40133_div {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:29px;
  3541. height:37px;
  3542. background:inherit;
  3543. background-color:rgba(255, 255, 255, 0);
  3544. border-radius:0px;
  3545. filter:drop-shadow(none);
  3546. transition:none;
  3547. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:28px;
  3551. }
  3552. #u40133 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:367px;
  3556. top:105px;
  3557. width:29px;
  3558. height:37px;
  3559. display:flex;
  3560. transition:none;
  3561. transform-origin:50% 50%;
  3562. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:28px;
  3566. }
  3567. #u40133 .text {
  3568. position:absolute;
  3569. align-self:flex-start;
  3570. padding:0px 0px 0px 0px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u40133_text {
  3575. border-width:0px;
  3576. white-space:nowrap;
  3577. text-transform:none;
  3578. }
  3579. #u40134 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:0px;
  3585. height:0px;
  3586. }
  3587. #u40135_div {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:375px;
  3593. height:50px;
  3594. background:inherit;
  3595. background-color:rgba(255, 255, 255, 1);
  3596. box-sizing:border-box;
  3597. border-width:1px;
  3598. border-style:solid;
  3599. border-color:rgba(242, 242, 242, 1);
  3600. border-radius:26px;
  3601. border-top-left-radius:0px;
  3602. border-top-right-radius:0px;
  3603. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  3604. transition:none;
  3605. }
  3606. #u40135 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:29px;
  3610. top:795px;
  3611. width:375px;
  3612. height:50px;
  3613. display:flex;
  3614. transition:none;
  3615. transform-origin:50% 50%;
  3616. }
  3617. #u40135 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 2px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u40135_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u40136 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:0px;
  3636. height:0px;
  3637. }
  3638. #u40137_div {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:77px;
  3644. height:50px;
  3645. background:inherit;
  3646. background-color:rgba(255, 255, 255, 1);
  3647. border-radius:0px;
  3648. border-top-left-radius:0px;
  3649. border-top-right-radius:0px;
  3650. filter:drop-shadow(none);
  3651. transition:none;
  3652. }
  3653. #u40137 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:178px;
  3657. top:795px;
  3658. width:77px;
  3659. height:50px;
  3660. display:flex;
  3661. transition:none;
  3662. transform-origin:50% 50%;
  3663. }
  3664. #u40137 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 2px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u40137_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u40138 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:0px;
  3683. height:0px;
  3684. }
  3685. #u40139 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:198px;
  3689. top:785px;
  3690. width:38px;
  3691. height:38px;
  3692. display:flex;
  3693. transition:none;
  3694. font-size:12px;
  3695. color:#FFFFFF;
  3696. }
  3697. #u40139 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 2px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u40139_img {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:38px;
  3710. height:38px;
  3711. }
  3712. #u40139_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. }
  3717. #u40140_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:49px;
  3723. height:17px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 0);
  3726. border-radius:0px;
  3727. filter:drop-shadow(none);
  3728. transition:none;
  3729. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. }
  3734. #u40140 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:192px;
  3738. top:824px;
  3739. width:49px;
  3740. height:17px;
  3741. display:flex;
  3742. transition:none;
  3743. transform-origin:50% 50%;
  3744. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:12px;
  3748. }
  3749. #u40140 .text {
  3750. position:absolute;
  3751. align-self:flex-start;
  3752. padding:0px 0px 0px 0px;
  3753. box-sizing:border-box;
  3754. width:100%;
  3755. }
  3756. #u40140_text {
  3757. border-width:0px;
  3758. white-space:nowrap;
  3759. text-transform:none;
  3760. }
  3761. #u40141 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:0px;
  3767. height:0px;
  3768. }
  3769. #u40142_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:75px;
  3775. height:50px;
  3776. background:inherit;
  3777. background-color:rgba(24, 144, 255, 1);
  3778. border-right:0px;
  3779. border-radius:26px;
  3780. border-top-left-radius:0px;
  3781. border-top-right-radius:0px;
  3782. border-bottom-right-radius:0px;
  3783. filter:drop-shadow(none);
  3784. transition:none;
  3785. }
  3786. #u40142 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:29px;
  3790. top:795px;
  3791. width:75px;
  3792. height:50px;
  3793. display:flex;
  3794. transition:none;
  3795. transform-origin:50% 50%;
  3796. }
  3797. #u40142 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 2px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u40142_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. visibility:hidden;
  3809. }
  3810. #u40143 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:0px;
  3816. height:0px;
  3817. }
  3818. #u40144 {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:54px;
  3822. top:799px;
  3823. width:24px;
  3824. height:24px;
  3825. display:flex;
  3826. transition:none;
  3827. font-size:8px;
  3828. }
  3829. #u40144 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u40144_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:24px;
  3842. height:24px;
  3843. }
  3844. #u40144_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. }
  3849. #u40145_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:25px;
  3855. height:17px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 0);
  3858. border-radius:0px;
  3859. filter:drop-shadow(none);
  3860. transition:none;
  3861. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:12px;
  3865. color:#FFFFFF;
  3866. }
  3867. #u40145 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:54px;
  3871. top:824px;
  3872. width:25px;
  3873. height:17px;
  3874. display:flex;
  3875. transition:none;
  3876. transform-origin:50% 50%;
  3877. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. color:#FFFFFF;
  3882. }
  3883. #u40145 .text {
  3884. position:absolute;
  3885. align-self:flex-start;
  3886. padding:0px 0px 0px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u40145_text {
  3891. border-width:0px;
  3892. white-space:nowrap;
  3893. text-transform:none;
  3894. }
  3895. #u40146 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:0px;
  3901. height:0px;
  3902. }
  3903. #u40147_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:75px;
  3909. height:50px;
  3910. background:inherit;
  3911. background-color:rgba(255, 255, 255, 1);
  3912. border-left:0px;
  3913. border-radius:26px;
  3914. border-top-left-radius:0px;
  3915. border-top-right-radius:0px;
  3916. border-bottom-left-radius:0px;
  3917. filter:drop-shadow(none);
  3918. transition:none;
  3919. }
  3920. #u40147 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:329px;
  3924. top:795px;
  3925. width:75px;
  3926. height:50px;
  3927. display:flex;
  3928. transition:none;
  3929. transform-origin:50% 50%;
  3930. }
  3931. #u40147 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 2px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u40147_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u40148 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:0px;
  3950. height:0px;
  3951. }
  3952. #u40149 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:354px;
  3956. top:801px;
  3957. width:24px;
  3958. height:24px;
  3959. display:flex;
  3960. transition:none;
  3961. font-size:8px;
  3962. }
  3963. #u40149 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 2px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u40149_img {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:24px;
  3976. height:24px;
  3977. }
  3978. #u40149_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. }
  3983. #u40150_div {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:25px;
  3989. height:17px;
  3990. background:inherit;
  3991. background-color:rgba(255, 255, 255, 0);
  3992. border-radius:0px;
  3993. filter:drop-shadow(none);
  3994. transition:none;
  3995. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. font-size:12px;
  3999. }
  4000. #u40150 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:354px;
  4004. top:826px;
  4005. width:25px;
  4006. height:17px;
  4007. display:flex;
  4008. transition:none;
  4009. transform-origin:50% 50%;
  4010. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:12px;
  4014. }
  4015. #u40150 .text {
  4016. position:absolute;
  4017. align-self:flex-start;
  4018. padding:0px 0px 0px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u40150_text {
  4023. border-width:0px;
  4024. white-space:nowrap;
  4025. text-transform:none;
  4026. }
  4027. #u40151 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:0px;
  4033. height:0px;
  4034. }
  4035. #u40152_div {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:75px;
  4041. height:50px;
  4042. background:inherit;
  4043. background-color:rgba(255, 255, 255, 1);
  4044. border-radius:0px;
  4045. border-top-left-radius:0px;
  4046. border-top-right-radius:0px;
  4047. filter:drop-shadow(none);
  4048. transition:none;
  4049. }
  4050. #u40152 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:254px;
  4054. top:795px;
  4055. width:75px;
  4056. height:50px;
  4057. display:flex;
  4058. transition:none;
  4059. transform-origin:50% 50%;
  4060. }
  4061. #u40152 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 2px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u40152_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u40153 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:0px;
  4080. height:0px;
  4081. }
  4082. #u40154 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:279px;
  4086. top:799px;
  4087. width:24px;
  4088. height:24px;
  4089. display:flex;
  4090. transition:none;
  4091. font-size:8px;
  4092. }
  4093. #u40154 .text {
  4094. position:absolute;
  4095. align-self:center;
  4096. padding:2px 2px 2px 2px;
  4097. box-sizing:border-box;
  4098. width:100%;
  4099. }
  4100. #u40154_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:24px;
  4106. height:24px;
  4107. }
  4108. #u40154_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. }
  4113. #u40155_div {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:25px;
  4119. height:17px;
  4120. background:inherit;
  4121. background-color:rgba(255, 255, 255, 0);
  4122. border-radius:0px;
  4123. filter:drop-shadow(none);
  4124. transition:none;
  4125. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. }
  4130. #u40155 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:279px;
  4134. top:824px;
  4135. width:25px;
  4136. height:17px;
  4137. display:flex;
  4138. transition:none;
  4139. transform-origin:50% 50%;
  4140. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. }
  4145. #u40155 .text {
  4146. position:absolute;
  4147. align-self:flex-start;
  4148. padding:0px 0px 0px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u40155_text {
  4153. border-width:0px;
  4154. white-space:nowrap;
  4155. text-transform:none;
  4156. }
  4157. #u40156 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:0px;
  4163. height:0px;
  4164. }
  4165. #u40157_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:75px;
  4171. height:50px;
  4172. background:inherit;
  4173. background-color:rgba(255, 255, 255, 1);
  4174. border-radius:0px;
  4175. border-top-left-radius:0px;
  4176. border-top-right-radius:0px;
  4177. filter:drop-shadow(none);
  4178. transition:none;
  4179. }
  4180. #u40157 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:104px;
  4184. top:795px;
  4185. width:75px;
  4186. height:50px;
  4187. display:flex;
  4188. transition:none;
  4189. transform-origin:50% 50%;
  4190. }
  4191. #u40157 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u40157_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u40158 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:0px;
  4210. height:0px;
  4211. }
  4212. #u40159 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:129px;
  4216. top:799px;
  4217. width:24px;
  4218. height:24px;
  4219. display:flex;
  4220. transition:none;
  4221. font-size:8px;
  4222. }
  4223. #u40159 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u40159_img {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:24px;
  4236. height:24px;
  4237. }
  4238. #u40159_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. }
  4243. #u40160_div {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:37px;
  4249. height:17px;
  4250. background:inherit;
  4251. background-color:rgba(255, 255, 255, 0);
  4252. border-radius:0px;
  4253. filter:drop-shadow(none);
  4254. transition:none;
  4255. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. }
  4260. #u40160 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:123px;
  4264. top:824px;
  4265. width:37px;
  4266. height:17px;
  4267. display:flex;
  4268. transition:none;
  4269. transform-origin:50% 50%;
  4270. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:12px;
  4274. }
  4275. #u40160 .text {
  4276. position:absolute;
  4277. align-self:flex-start;
  4278. padding:0px 0px 0px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u40160_text {
  4283. border-width:0px;
  4284. white-space:nowrap;
  4285. text-transform:none;
  4286. }
  4287. #u40161 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:0px;
  4293. height:0px;
  4294. }
  4295. #u40162_div {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:375px;
  4301. height:320px;
  4302. background:inherit;
  4303. background-color:rgba(51, 51, 51, 0.5333333333333333);
  4304. border-top:0px;
  4305. border-radius:25px;
  4306. border-top-left-radius:0px;
  4307. border-top-right-radius:0px;
  4308. filter:drop-shadow(none);
  4309. transition:none;
  4310. }
  4311. #u40162 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:508px;
  4315. top:594px;
  4316. width:375px;
  4317. height:320px;
  4318. display:flex;
  4319. transition:none;
  4320. transform-origin:50% 50%;
  4321. }
  4322. #u40162 .text {
  4323. position:absolute;
  4324. align-self:center;
  4325. padding:2px 2px 2px 2px;
  4326. box-sizing:border-box;
  4327. width:100%;
  4328. }
  4329. #u40162_text {
  4330. border-width:0px;
  4331. word-wrap:break-word;
  4332. text-transform:none;
  4333. visibility:hidden;
  4334. }
  4335. #u40163_div {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:375px;
  4341. height:130px;
  4342. background:inherit;
  4343. background-color:rgba(242, 242, 242, 1);
  4344. border-top:0px;
  4345. border-radius:25px;
  4346. border-top-left-radius:0px;
  4347. border-top-right-radius:0px;
  4348. filter:drop-shadow(none);
  4349. transition:none;
  4350. }
  4351. #u40163 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:508px;
  4355. top:784px;
  4356. width:375px;
  4357. height:130px;
  4358. display:flex;
  4359. transition:none;
  4360. transform-origin:50% 50%;
  4361. }
  4362. #u40163 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 2px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u40163_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u40164 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:0px;
  4381. height:0px;
  4382. }
  4383. #u40165_div {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:375px;
  4389. height:60px;
  4390. background:inherit;
  4391. background-color:rgba(255, 255, 255, 1);
  4392. box-sizing:border-box;
  4393. border-width:1px;
  4394. border-style:solid;
  4395. border-color:rgba(242, 242, 242, 1);
  4396. border-top:0px;
  4397. border-radius:20px;
  4398. border-top-left-radius:0px;
  4399. border-top-right-radius:0px;
  4400. filter:drop-shadow(none);
  4401. transition:none;
  4402. }
  4403. #u40165 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:508px;
  4407. top:854px;
  4408. width:375px;
  4409. height:60px;
  4410. display:flex;
  4411. transition:none;
  4412. transform-origin:50% 50%;
  4413. }
  4414. #u40165 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 2px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u40165_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u40166_div {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:29px;
  4433. height:30px;
  4434. background:inherit;
  4435. background-color:rgba(255, 255, 255, 0);
  4436. border-left:0px;
  4437. border-top:0px;
  4438. border-right:0px;
  4439. border-radius:0px;
  4440. border-bottom-right-radius:0px;
  4441. border-bottom-left-radius:0px;
  4442. filter:drop-shadow(none);
  4443. transition:none;
  4444. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. line-height:30px;
  4449. }
  4450. #u40166 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:681px;
  4454. top:869px;
  4455. width:29px;
  4456. height:30px;
  4457. display:flex;
  4458. transition:none;
  4459. transform-origin:50% 50%;
  4460. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:14px;
  4464. line-height:30px;
  4465. }
  4466. #u40166 .text {
  4467. position:absolute;
  4468. align-self:flex-start;
  4469. padding:0px 0px 0px 0px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u40166_text {
  4474. border-width:0px;
  4475. white-space:nowrap;
  4476. text-transform:none;
  4477. }
  4478. #u40167 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:0px;
  4484. height:0px;
  4485. }
  4486. #u40168_div {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:375px;
  4492. height:60px;
  4493. background:inherit;
  4494. background-color:rgba(255, 255, 255, 1);
  4495. box-sizing:border-box;
  4496. border-width:1px;
  4497. border-style:solid;
  4498. border-color:rgba(242, 242, 242, 1);
  4499. border-left:0px;
  4500. border-right:0px;
  4501. border-radius:0px;
  4502. border-top-left-radius:0px;
  4503. border-top-right-radius:0px;
  4504. border-bottom-right-radius:0px;
  4505. border-bottom-left-radius:0px;
  4506. filter:drop-shadow(none);
  4507. transition:none;
  4508. }
  4509. #u40168 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:508px;
  4513. top:724px;
  4514. width:375px;
  4515. height:60px;
  4516. display:flex;
  4517. transition:none;
  4518. transform-origin:50% 50%;
  4519. }
  4520. #u40168 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 2px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u40168_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u40169_div {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:84px;
  4539. height:30px;
  4540. background:inherit;
  4541. background-color:rgba(255, 255, 255, 0);
  4542. border-left:0px;
  4543. border-top:0px;
  4544. border-right:0px;
  4545. border-radius:0px;
  4546. border-bottom-right-radius:0px;
  4547. border-bottom-left-radius:0px;
  4548. filter:drop-shadow(none);
  4549. transition:none;
  4550. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:14px;
  4554. line-height:30px;
  4555. }
  4556. #u40169 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:640px;
  4560. top:739px;
  4561. width:84px;
  4562. height:30px;
  4563. display:flex;
  4564. transition:none;
  4565. transform-origin:50% 50%;
  4566. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:14px;
  4570. line-height:30px;
  4571. }
  4572. #u40169 .text {
  4573. position:absolute;
  4574. align-self:flex-start;
  4575. padding:0px 0px 0px 0px;
  4576. box-sizing:border-box;
  4577. width:100%;
  4578. }
  4579. #u40169_text {
  4580. border-width:0px;
  4581. white-space:nowrap;
  4582. text-transform:none;
  4583. }
  4584. #u40170 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:0px;
  4590. height:0px;
  4591. }
  4592. #u40171_div {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:375px;
  4598. height:60px;
  4599. background:inherit;
  4600. background-color:rgba(255, 255, 255, 1);
  4601. box-sizing:border-box;
  4602. border-width:1px;
  4603. border-style:solid;
  4604. border-color:rgba(242, 242, 242, 1);
  4605. border-left:0px;
  4606. border-right:0px;
  4607. border-radius:0px;
  4608. border-top-left-radius:0px;
  4609. border-top-right-radius:0px;
  4610. border-bottom-right-radius:0px;
  4611. border-bottom-left-radius:0px;
  4612. filter:drop-shadow(none);
  4613. transition:none;
  4614. }
  4615. #u40171 {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:508px;
  4619. top:664px;
  4620. width:375px;
  4621. height:60px;
  4622. display:flex;
  4623. transition:none;
  4624. transform-origin:50% 50%;
  4625. }
  4626. #u40171 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:2px 2px 2px 2px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u40171_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. visibility:hidden;
  4638. }
  4639. #u40172_div {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:57px;
  4645. height:30px;
  4646. background:inherit;
  4647. background-color:rgba(255, 255, 255, 0);
  4648. border-left:0px;
  4649. border-top:0px;
  4650. border-right:0px;
  4651. border-radius:0px;
  4652. border-bottom-right-radius:0px;
  4653. border-bottom-left-radius:0px;
  4654. filter:drop-shadow(none);
  4655. transition:none;
  4656. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:14px;
  4660. line-height:30px;
  4661. }
  4662. #u40172 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:528px;
  4666. top:679px;
  4667. width:57px;
  4668. height:30px;
  4669. display:flex;
  4670. transition:none;
  4671. transform-origin:50% 50%;
  4672. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:14px;
  4676. line-height:30px;
  4677. }
  4678. #u40172 .text {
  4679. position:absolute;
  4680. align-self:flex-start;
  4681. padding:0px 0px 0px 0px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u40172_text {
  4686. border-width:0px;
  4687. white-space:nowrap;
  4688. text-transform:none;
  4689. }
  4690. #u40173 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:0px;
  4696. height:0px;
  4697. }
  4698. #u40174_div {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:375px;
  4704. height:60px;
  4705. background:inherit;
  4706. background-color:rgba(255, 255, 255, 1);
  4707. box-sizing:border-box;
  4708. border-width:1px;
  4709. border-style:solid;
  4710. border-color:rgba(242, 242, 242, 1);
  4711. border-left:0px;
  4712. border-right:0px;
  4713. border-radius:0px;
  4714. border-top-left-radius:0px;
  4715. border-top-right-radius:0px;
  4716. border-bottom-right-radius:0px;
  4717. border-bottom-left-radius:0px;
  4718. filter:drop-shadow(none);
  4719. transition:none;
  4720. }
  4721. #u40174 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:508px;
  4725. top:785px;
  4726. width:375px;
  4727. height:60px;
  4728. display:flex;
  4729. transition:none;
  4730. transform-origin:50% 50%;
  4731. }
  4732. #u40174 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 2px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u40174_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u40175_div {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:84px;
  4751. height:30px;
  4752. background:inherit;
  4753. background-color:rgba(255, 255, 255, 0);
  4754. border-left:0px;
  4755. border-top:0px;
  4756. border-right:0px;
  4757. border-radius:0px;
  4758. border-bottom-right-radius:0px;
  4759. border-bottom-left-radius:0px;
  4760. filter:drop-shadow(none);
  4761. transition:none;
  4762. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:14px;
  4766. line-height:30px;
  4767. }
  4768. #u40175 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:640px;
  4772. top:800px;
  4773. width:84px;
  4774. height:30px;
  4775. display:flex;
  4776. transition:none;
  4777. transform-origin:50% 50%;
  4778. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:14px;
  4782. line-height:30px;
  4783. }
  4784. #u40175 .text {
  4785. position:absolute;
  4786. align-self:flex-start;
  4787. padding:0px 0px 0px 0px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u40175_text {
  4792. border-width:0px;
  4793. white-space:nowrap;
  4794. text-transform:none;
  4795. }
  4796. #u40176 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:0px;
  4802. height:0px;
  4803. }
  4804. #u40177_div {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:375px;
  4810. height:720px;
  4811. background:inherit;
  4812. background-color:rgba(0, 0, 0, 0.2);
  4813. box-sizing:border-box;
  4814. border-width:1px;
  4815. border-style:solid;
  4816. border-color:rgba(242, 242, 242, 1);
  4817. border-left:0px;
  4818. border-top:0px;
  4819. border-right:0px;
  4820. border-radius:0px;
  4821. border-bottom-right-radius:0px;
  4822. border-bottom-left-radius:0px;
  4823. filter:drop-shadow(none);
  4824. transition:none;
  4825. }
  4826. #u40177 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:1048px;
  4830. top:77px;
  4831. width:375px;
  4832. height:720px;
  4833. display:flex;
  4834. transition:none;
  4835. transform-origin:50% 50%;
  4836. }
  4837. #u40177 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 2px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u40177_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u40178_div {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:250px;
  4856. height:720px;
  4857. background:inherit;
  4858. background-color:rgba(255, 255, 255, 1);
  4859. box-sizing:border-box;
  4860. border-width:1px;
  4861. border-style:solid;
  4862. border-color:rgba(242, 242, 242, 1);
  4863. border-left:0px;
  4864. border-top:0px;
  4865. border-right:0px;
  4866. border-radius:0px;
  4867. border-bottom-right-radius:0px;
  4868. border-bottom-left-radius:0px;
  4869. filter:drop-shadow(none);
  4870. transition:none;
  4871. }
  4872. #u40178 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:1048px;
  4876. top:77px;
  4877. width:250px;
  4878. height:720px;
  4879. display:flex;
  4880. transition:none;
  4881. transform-origin:50% 50%;
  4882. }
  4883. #u40178 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 2px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u40178_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u40179 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:0px;
  4902. height:0px;
  4903. }
  4904. #u40180_div {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:109px;
  4910. height:25px;
  4911. background:inherit;
  4912. background-color:rgba(255, 255, 255, 0);
  4913. border-radius:0px;
  4914. filter:drop-shadow(none);
  4915. transition:none;
  4916. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:18px;
  4920. }
  4921. #u40180 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:1063px;
  4925. top:147px;
  4926. width:109px;
  4927. height:25px;
  4928. display:flex;
  4929. transition:none;
  4930. transform-origin:50% 50%;
  4931. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:18px;
  4935. }
  4936. #u40180 .text {
  4937. position:absolute;
  4938. align-self:flex-start;
  4939. padding:0px 0px 0px 0px;
  4940. box-sizing:border-box;
  4941. width:100%;
  4942. }
  4943. #u40180_text {
  4944. border-width:0px;
  4945. white-space:nowrap;
  4946. text-transform:none;
  4947. }
  4948. #u40181 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:1227px;
  4952. top:152px;
  4953. width:9px;
  4954. height:14px;
  4955. display:flex;
  4956. transition:none;
  4957. }
  4958. #u40181 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 2px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u40181_img {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:9px;
  4971. height:14px;
  4972. }
  4973. #u40181_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. visibility:hidden;
  4978. }
  4979. #u40182_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:35px;
  4985. height:17px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 0);
  4988. border-radius:0px;
  4989. filter:drop-shadow(none);
  4990. transition:none;
  4991. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:12px;
  4995. color:#1890FF;
  4996. }
  4997. #u40182 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:1243px;
  5001. top:151px;
  5002. width:35px;
  5003. height:17px;
  5004. display:flex;
  5005. transition:none;
  5006. transform-origin:50% 50%;
  5007. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:12px;
  5011. color:#1890FF;
  5012. }
  5013. #u40182 .text {
  5014. position:absolute;
  5015. align-self:flex-start;
  5016. padding:0px 0px 0px 0px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u40182_text {
  5021. border-width:0px;
  5022. white-space:nowrap;
  5023. text-transform:none;
  5024. }
  5025. #u40183 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:0px;
  5031. height:0px;
  5032. }
  5033. #u40184_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:109px;
  5039. height:25px;
  5040. background:inherit;
  5041. background-color:rgba(255, 255, 255, 0);
  5042. border-radius:0px;
  5043. filter:drop-shadow(none);
  5044. transition:none;
  5045. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:18px;
  5049. }
  5050. #u40184 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:1063px;
  5054. top:192px;
  5055. width:109px;
  5056. height:25px;
  5057. display:flex;
  5058. transition:none;
  5059. transform-origin:50% 50%;
  5060. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:18px;
  5064. }
  5065. #u40184 .text {
  5066. position:absolute;
  5067. align-self:flex-start;
  5068. padding:0px 0px 0px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u40184_text {
  5073. border-width:0px;
  5074. white-space:nowrap;
  5075. text-transform:none;
  5076. }
  5077. #u40185 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:1227px;
  5081. top:197px;
  5082. width:9px;
  5083. height:14px;
  5084. display:flex;
  5085. transition:none;
  5086. }
  5087. #u40185 .text {
  5088. position:absolute;
  5089. align-self:center;
  5090. padding:2px 2px 2px 2px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u40185_img {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:9px;
  5100. height:14px;
  5101. }
  5102. #u40185_text {
  5103. border-width:0px;
  5104. word-wrap:break-word;
  5105. text-transform:none;
  5106. visibility:hidden;
  5107. }
  5108. #u40186_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:35px;
  5114. height:17px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. border-radius:0px;
  5118. filter:drop-shadow(none);
  5119. transition:none;
  5120. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. }
  5125. #u40186 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:1243px;
  5129. top:196px;
  5130. width:35px;
  5131. height:17px;
  5132. display:flex;
  5133. transition:none;
  5134. transform-origin:50% 50%;
  5135. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:12px;
  5139. }
  5140. #u40186 .text {
  5141. position:absolute;
  5142. align-self:flex-start;
  5143. padding:0px 0px 0px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u40186_text {
  5148. border-width:0px;
  5149. white-space:nowrap;
  5150. text-transform:none;
  5151. }
  5152. #u40187 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:0px;
  5158. height:0px;
  5159. }
  5160. #u40188_div {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:109px;
  5166. height:25px;
  5167. background:inherit;
  5168. background-color:rgba(255, 255, 255, 0);
  5169. border-radius:0px;
  5170. filter:drop-shadow(none);
  5171. transition:none;
  5172. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:18px;
  5176. }
  5177. #u40188 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:1063px;
  5181. top:237px;
  5182. width:109px;
  5183. height:25px;
  5184. display:flex;
  5185. transition:none;
  5186. transform-origin:50% 50%;
  5187. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:18px;
  5191. }
  5192. #u40188 .text {
  5193. position:absolute;
  5194. align-self:flex-start;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u40188_text {
  5200. border-width:0px;
  5201. white-space:nowrap;
  5202. text-transform:none;
  5203. }
  5204. #u40189 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:1227px;
  5208. top:242px;
  5209. width:9px;
  5210. height:14px;
  5211. display:flex;
  5212. transition:none;
  5213. }
  5214. #u40189 .text {
  5215. position:absolute;
  5216. align-self:center;
  5217. padding:2px 2px 2px 2px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u40189_img {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:9px;
  5227. height:14px;
  5228. }
  5229. #u40189_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u40190_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:35px;
  5241. height:17px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 0);
  5244. border-radius:0px;
  5245. filter:drop-shadow(none);
  5246. transition:none;
  5247. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:12px;
  5251. }
  5252. #u40190 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:1243px;
  5256. top:241px;
  5257. width:35px;
  5258. height:17px;
  5259. display:flex;
  5260. transition:none;
  5261. transform-origin:50% 50%;
  5262. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:12px;
  5266. }
  5267. #u40190 .text {
  5268. position:absolute;
  5269. align-self:flex-start;
  5270. padding:0px 0px 0px 0px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u40190_text {
  5275. border-width:0px;
  5276. white-space:nowrap;
  5277. text-transform:none;
  5278. }
  5279. #u40191_input {
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:60px;
  5284. height:26px;
  5285. padding:2px 2px 2px 2px;
  5286. font-family:"ArialMT", "Arial", sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:14px;
  5290. letter-spacing:normal;
  5291. color:#AAAAAA;
  5292. vertical-align:none;
  5293. text-align:left;
  5294. text-transform:none;
  5295. background-color:transparent;
  5296. border-color:transparent;
  5297. }
  5298. #u40191_input.disabled {
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:60px;
  5303. height:26px;
  5304. padding:2px 2px 2px 2px;
  5305. font-family:"ArialMT", "Arial", sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:14px;
  5309. letter-spacing:normal;
  5310. color:#AAAAAA;
  5311. vertical-align:none;
  5312. text-align:left;
  5313. text-transform:none;
  5314. background-color:transparent;
  5315. border-color:transparent;
  5316. }
  5317. #u40191_div {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:60px;
  5323. height:26px;
  5324. background:inherit;
  5325. background-color:rgba(255, 255, 255, 1);
  5326. border-radius:0px;
  5327. filter:drop-shadow(none);
  5328. transition:none;
  5329. font-size:14px;
  5330. color:#AAAAAA;
  5331. }
  5332. #u40191 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:1063px;
  5336. top:97px;
  5337. width:60px;
  5338. height:26px;
  5339. display:flex;
  5340. transition:none;
  5341. transform-origin:50% 50%;
  5342. font-size:14px;
  5343. color:#AAAAAA;
  5344. }
  5345. #u40191 .text {
  5346. position:absolute;
  5347. align-self:flex-start;
  5348. padding:2px 2px 2px 2px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u40191_div.disabled {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:60px;
  5358. height:26px;
  5359. background:inherit;
  5360. background-color:rgba(240, 240, 240, 1);
  5361. border-radius:0px;
  5362. filter:drop-shadow(none);
  5363. transition:none;
  5364. font-size:14px;
  5365. color:#AAAAAA;
  5366. }
  5367. #u40191.disabled {
  5368. }
  5369. .u40191_input_option {
  5370. font-size:14px;
  5371. }
  5372. #u40192_div {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:500px;
  5378. height:923px;
  5379. background:inherit;
  5380. background-color:rgba(255, 255, 255, 0);
  5381. border-radius:0px;
  5382. filter:drop-shadow(none);
  5383. transition:none;
  5384. }
  5385. #u40192 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:508px;
  5389. top:81px;
  5390. width:500px;
  5391. height:923px;
  5392. display:flex;
  5393. transition:none;
  5394. transform-origin:50% 50%;
  5395. }
  5396. #u40192 .text {
  5397. position:absolute;
  5398. align-self:flex-start;
  5399. padding:0px 0px 0px 0px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u40192_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. }
  5408. #u40193 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:0px;
  5414. height:0px;
  5415. }
  5416. #u40194_div {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:375px;
  5422. height:720px;
  5423. background:inherit;
  5424. background-color:rgba(0, 0, 0, 0.2);
  5425. box-sizing:border-box;
  5426. border-width:1px;
  5427. border-style:solid;
  5428. border-color:rgba(242, 242, 242, 1);
  5429. border-left:0px;
  5430. border-top:0px;
  5431. border-right:0px;
  5432. border-radius:0px;
  5433. border-bottom-right-radius:0px;
  5434. border-bottom-left-radius:0px;
  5435. filter:drop-shadow(none);
  5436. transition:none;
  5437. }
  5438. #u40194 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1464px;
  5442. top:77px;
  5443. width:375px;
  5444. height:720px;
  5445. display:flex;
  5446. transition:none;
  5447. transform-origin:50% 50%;
  5448. }
  5449. #u40194 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:2px 2px 2px 2px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u40194_text {
  5457. border-width:0px;
  5458. word-wrap:break-word;
  5459. text-transform:none;
  5460. visibility:hidden;
  5461. }
  5462. #u40195_div {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:250px;
  5468. height:720px;
  5469. background:inherit;
  5470. background-color:rgba(255, 255, 255, 1);
  5471. box-sizing:border-box;
  5472. border-width:1px;
  5473. border-style:solid;
  5474. border-color:rgba(242, 242, 242, 1);
  5475. border-left:0px;
  5476. border-top:0px;
  5477. border-right:0px;
  5478. border-radius:0px;
  5479. border-bottom-right-radius:0px;
  5480. border-bottom-left-radius:0px;
  5481. filter:drop-shadow(none);
  5482. transition:none;
  5483. }
  5484. #u40195 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:1464px;
  5488. top:77px;
  5489. width:250px;
  5490. height:720px;
  5491. display:flex;
  5492. transition:none;
  5493. transform-origin:50% 50%;
  5494. }
  5495. #u40195 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 2px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u40195_text {
  5503. border-width:0px;
  5504. word-wrap:break-word;
  5505. text-transform:none;
  5506. visibility:hidden;
  5507. }
  5508. #u40196 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:0px;
  5514. height:0px;
  5515. }
  5516. #u40197_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:109px;
  5522. height:25px;
  5523. background:inherit;
  5524. background-color:rgba(255, 255, 255, 0);
  5525. border-radius:0px;
  5526. filter:drop-shadow(none);
  5527. transition:none;
  5528. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:18px;
  5532. }
  5533. #u40197 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:1479px;
  5537. top:211px;
  5538. width:109px;
  5539. height:25px;
  5540. display:flex;
  5541. transition:none;
  5542. transform-origin:50% 50%;
  5543. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:18px;
  5547. }
  5548. #u40197 .text {
  5549. position:absolute;
  5550. align-self:flex-start;
  5551. padding:0px 0px 0px 0px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u40197_text {
  5556. border-width:0px;
  5557. white-space:nowrap;
  5558. text-transform:none;
  5559. }
  5560. #u40198 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:1643px;
  5564. top:216px;
  5565. width:9px;
  5566. height:14px;
  5567. display:flex;
  5568. transition:none;
  5569. }
  5570. #u40198 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u40198_img {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:9px;
  5583. height:14px;
  5584. }
  5585. #u40198_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. visibility:hidden;
  5590. }
  5591. #u40199_div {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:35px;
  5597. height:17px;
  5598. background:inherit;
  5599. background-color:rgba(255, 255, 255, 0);
  5600. border-radius:0px;
  5601. filter:drop-shadow(none);
  5602. transition:none;
  5603. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:12px;
  5607. color:#1890FF;
  5608. }
  5609. #u40199 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:1659px;
  5613. top:215px;
  5614. width:35px;
  5615. height:17px;
  5616. display:flex;
  5617. transition:none;
  5618. transform-origin:50% 50%;
  5619. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#1890FF;
  5624. }
  5625. #u40199 .text {
  5626. position:absolute;
  5627. align-self:flex-start;
  5628. padding:0px 0px 0px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u40199_text {
  5633. border-width:0px;
  5634. white-space:nowrap;
  5635. text-transform:none;
  5636. }
  5637. #u40200 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:0px;
  5643. height:0px;
  5644. }
  5645. #u40201_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:109px;
  5651. height:25px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 0);
  5654. border-radius:0px;
  5655. filter:drop-shadow(none);
  5656. transition:none;
  5657. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:18px;
  5661. }
  5662. #u40201 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:1479px;
  5666. top:256px;
  5667. width:109px;
  5668. height:25px;
  5669. display:flex;
  5670. transition:none;
  5671. transform-origin:50% 50%;
  5672. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:18px;
  5676. }
  5677. #u40201 .text {
  5678. position:absolute;
  5679. align-self:flex-start;
  5680. padding:0px 0px 0px 0px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u40201_text {
  5685. border-width:0px;
  5686. white-space:nowrap;
  5687. text-transform:none;
  5688. }
  5689. #u40202 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:1643px;
  5693. top:261px;
  5694. width:9px;
  5695. height:14px;
  5696. display:flex;
  5697. transition:none;
  5698. }
  5699. #u40202 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:2px 2px 2px 2px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u40202_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:9px;
  5712. height:14px;
  5713. }
  5714. #u40202_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. visibility:hidden;
  5719. }
  5720. #u40203_div {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:35px;
  5726. height:17px;
  5727. background:inherit;
  5728. background-color:rgba(255, 255, 255, 0);
  5729. border-radius:0px;
  5730. filter:drop-shadow(none);
  5731. transition:none;
  5732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5733. font-weight:400;
  5734. font-style:normal;
  5735. font-size:12px;
  5736. }
  5737. #u40203 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:1659px;
  5741. top:260px;
  5742. width:35px;
  5743. height:17px;
  5744. display:flex;
  5745. transition:none;
  5746. transform-origin:50% 50%;
  5747. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:12px;
  5751. }
  5752. #u40203 .text {
  5753. position:absolute;
  5754. align-self:flex-start;
  5755. padding:0px 0px 0px 0px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u40203_text {
  5760. border-width:0px;
  5761. white-space:nowrap;
  5762. text-transform:none;
  5763. }
  5764. #u40204 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:0px;
  5770. height:0px;
  5771. }
  5772. #u40205_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. #u40205 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:1479px;
  5793. top:301px;
  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. #u40205 .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. #u40205_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u40206 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1643px;
  5820. top:306px;
  5821. width:9px;
  5822. height:14px;
  5823. display:flex;
  5824. transition:none;
  5825. }
  5826. #u40206 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 2px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u40206_img {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:9px;
  5839. height:14px;
  5840. }
  5841. #u40206_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. visibility:hidden;
  5846. }
  5847. #u40207_div {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:35px;
  5853. height:17px;
  5854. background:inherit;
  5855. background-color:rgba(255, 255, 255, 0);
  5856. border-radius:0px;
  5857. filter:drop-shadow(none);
  5858. transition:none;
  5859. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. }
  5864. #u40207 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:1659px;
  5868. top:305px;
  5869. width:35px;
  5870. height:17px;
  5871. display:flex;
  5872. transition:none;
  5873. transform-origin:50% 50%;
  5874. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. }
  5879. #u40207 .text {
  5880. position:absolute;
  5881. align-self:flex-start;
  5882. padding:0px 0px 0px 0px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u40207_text {
  5887. border-width:0px;
  5888. white-space:nowrap;
  5889. text-transform:none;
  5890. }
  5891. #u40208_input {
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:60px;
  5896. height:26px;
  5897. padding:2px 2px 2px 2px;
  5898. font-family:"ArialMT", "Arial", sans-serif;
  5899. font-weight:400;
  5900. font-style:normal;
  5901. font-size:14px;
  5902. letter-spacing:normal;
  5903. color:#AAAAAA;
  5904. vertical-align:none;
  5905. text-align:left;
  5906. text-transform:none;
  5907. background-color:transparent;
  5908. border-color:transparent;
  5909. }
  5910. #u40208_input.disabled {
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:60px;
  5915. height:26px;
  5916. padding:2px 2px 2px 2px;
  5917. font-family:"ArialMT", "Arial", sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:14px;
  5921. letter-spacing:normal;
  5922. color:#AAAAAA;
  5923. vertical-align:none;
  5924. text-align:left;
  5925. text-transform:none;
  5926. background-color:transparent;
  5927. border-color:transparent;
  5928. }
  5929. #u40208_div {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:60px;
  5935. height:26px;
  5936. background:inherit;
  5937. background-color:rgba(255, 255, 255, 1);
  5938. border-radius:0px;
  5939. filter:drop-shadow(none);
  5940. transition:none;
  5941. font-size:14px;
  5942. color:#AAAAAA;
  5943. }
  5944. #u40208 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:1479px;
  5948. top:165px;
  5949. width:60px;
  5950. height:26px;
  5951. display:flex;
  5952. transition:none;
  5953. transform-origin:50% 50%;
  5954. font-size:14px;
  5955. color:#AAAAAA;
  5956. }
  5957. #u40208 .text {
  5958. position:absolute;
  5959. align-self:flex-start;
  5960. padding:2px 2px 2px 2px;
  5961. box-sizing:border-box;
  5962. width:100%;
  5963. }
  5964. #u40208_div.disabled {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:60px;
  5970. height:26px;
  5971. background:inherit;
  5972. background-color:rgba(240, 240, 240, 1);
  5973. border-radius:0px;
  5974. filter:drop-shadow(none);
  5975. transition:none;
  5976. font-size:14px;
  5977. color:#AAAAAA;
  5978. }
  5979. #u40208.disabled {
  5980. }
  5981. .u40208_input_option {
  5982. font-size:14px;
  5983. }
  5984. #u40209 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:0px;
  5990. height:0px;
  5991. }
  5992. #u40210_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:109px;
  5998. height:25px;
  5999. background:inherit;
  6000. background-color:rgba(255, 255, 255, 0);
  6001. border-radius:0px;
  6002. filter:drop-shadow(none);
  6003. transition:none;
  6004. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:18px;
  6008. }
  6009. #u40210 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:1479px;
  6013. top:120px;
  6014. width:109px;
  6015. height:25px;
  6016. display:flex;
  6017. transition:none;
  6018. transform-origin:50% 50%;
  6019. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:18px;
  6023. }
  6024. #u40210 .text {
  6025. position:absolute;
  6026. align-self:flex-start;
  6027. padding:0px 0px 0px 0px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u40210_text {
  6032. border-width:0px;
  6033. white-space:nowrap;
  6034. text-transform:none;
  6035. }
  6036. #u40211 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:1643px;
  6040. top:125px;
  6041. width:9px;
  6042. height:14px;
  6043. display:flex;
  6044. transition:none;
  6045. }
  6046. #u40211 .text {
  6047. position:absolute;
  6048. align-self:center;
  6049. padding:2px 2px 2px 2px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u40211_img {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:9px;
  6059. height:14px;
  6060. }
  6061. #u40211_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. visibility:hidden;
  6066. }
  6067. #u40212_div {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:40px;
  6073. height:17px;
  6074. background:inherit;
  6075. background-color:rgba(255, 255, 255, 0);
  6076. border-radius:0px;
  6077. filter:drop-shadow(none);
  6078. transition:none;
  6079. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. color:#1890FF;
  6084. }
  6085. #u40212 {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:1659px;
  6089. top:124px;
  6090. width:40px;
  6091. height:17px;
  6092. display:flex;
  6093. transition:none;
  6094. transform-origin:50% 50%;
  6095. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:12px;
  6099. color:#1890FF;
  6100. }
  6101. #u40212 .text {
  6102. position:absolute;
  6103. align-self:flex-start;
  6104. padding:0px 0px 0px 0px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u40212_text {
  6109. border-width:0px;
  6110. white-space:nowrap;
  6111. text-transform:none;
  6112. }
  6113. #u40213_div {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:73px;
  6119. height:17px;
  6120. background:inherit;
  6121. background-color:rgba(255, 255, 255, 0);
  6122. border-radius:0px;
  6123. filter:drop-shadow(none);
  6124. transition:none;
  6125. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:12px;
  6129. color:#AAAAAA;
  6130. }
  6131. #u40213 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:1479px;
  6135. top:93px;
  6136. width:73px;
  6137. height:17px;
  6138. display:flex;
  6139. transition:none;
  6140. transform-origin:50% 50%;
  6141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:12px;
  6145. color:#AAAAAA;
  6146. }
  6147. #u40213 .text {
  6148. position:absolute;
  6149. align-self:flex-start;
  6150. padding:0px 0px 0px 0px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u40213_text {
  6155. border-width:0px;
  6156. white-space:nowrap;
  6157. text-transform:none;
  6158. }