styles.css 112 KB

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