styles.css 124 KB

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