styles.css 122 KB

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