styles.css 125 KB

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