styles.css 133 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2905px;
  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. #u55198_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. #u55198 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u55198 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u55198_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u55199_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. #u55199 {
  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. #u55199 .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. #u55199_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u55200_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. #u55200 {
  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. #u55200 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u55200_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u55201 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u55202_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u55202 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u55202 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u55202_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u55203_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. #u55203 {
  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. #u55203 .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. #u55203_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u55204_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. #u55204 {
  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. #u55204 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u55204_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u55205 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u55206_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u55206 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u55206 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u55206_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u55207_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u55207 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u55207 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u55207_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u55208 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u55209_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u55209 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u55209 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u55209_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u55210_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u55210 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u55210 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u55210_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u55211 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u55212_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u55212 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u55212 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u55212_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u55213_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u55213 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u55213 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u55213_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u55214 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u55215_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u55215 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u55215 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u55215_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u55216_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u55216 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u55216 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u55216_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u55217 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u55218_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u55218 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u55218 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u55218_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u55219_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u55219 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u55219 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u55219_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u55220 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u55221_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u55221 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u55221 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u55221_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u55222_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u55222 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u55222 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u55222_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u55223 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u55224_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u55224 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u55224 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u55224_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u55225_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u55225 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u55225 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u55225_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u55226 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u55227_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u55227 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u55227 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u55227_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u55228_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u55228 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u55228 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u55228_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u55229 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u55230_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u55230 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u55230 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u55230_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u55231_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u55231 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u55231 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u55231_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u55232_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u55232 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u55232 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u55232_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u55233_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u55233 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u55233 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u55233_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u55234_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u55234 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u55234 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u55234_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u55235_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u55235 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u55235 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u55235_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u55236 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u55237_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u55237 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u55237 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u55237_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u55238_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u55238 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u55238 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u55238_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u55239 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u55240_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u55240 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u55240 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u55240_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u55241_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u55241 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u55241 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u55241_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u55242 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u55243_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u55243_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u55243_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u55243 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u55243 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u55243_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u55243.disabled {
  1428. }
  1429. .u55243_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u55244_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u55244 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u55244 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u55244_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u55245_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u55245 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u55245 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u55245_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u55246_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u55246 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u55246 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u55246_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u55247_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1262px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u55247 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:51px;
  1558. width:1262px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u55247 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u55247_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u55248_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:25px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u55248 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:350px;
  1598. top:61px;
  1599. width:73px;
  1600. height:25px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u55248 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u55248_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u55249_img {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:1223px;
  1625. height:1109px;
  1626. }
  1627. #u55249 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:348px;
  1631. top:109px;
  1632. width:1223px;
  1633. height:1109px;
  1634. display:flex;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:18px;
  1639. }
  1640. #u55249 .text {
  1641. position:absolute;
  1642. align-self:center;
  1643. padding:2px 2px 2px 2px;
  1644. box-sizing:border-box;
  1645. width:100%;
  1646. }
  1647. #u55249_text {
  1648. border-width:0px;
  1649. word-wrap:break-word;
  1650. text-transform:none;
  1651. }
  1652. #u55250_img {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:41px;
  1658. height:41px;
  1659. }
  1660. #u55250 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:487px;
  1664. top:255px;
  1665. width:41px;
  1666. height:41px;
  1667. display:flex;
  1668. }
  1669. #u55250 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u55250_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u55251 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:0px;
  1688. height:0px;
  1689. }
  1690. #u55252_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:129px;
  1696. height:30px;
  1697. background:inherit;
  1698. background-color:rgba(127, 127, 127, 1);
  1699. border:none;
  1700. border-radius:4px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. color:#FFFFFF;
  1708. text-align:right;
  1709. }
  1710. #u55252 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:514px;
  1714. top:230px;
  1715. width:129px;
  1716. height:30px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. color:#FFFFFF;
  1722. text-align:right;
  1723. }
  1724. #u55252 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:0px 10px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u55252_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. }
  1736. #u55253_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:44px;
  1742. height:30px;
  1743. background:inherit;
  1744. background-color:rgba(0, 191, 191, 1);
  1745. border:none;
  1746. border-right:0px;
  1747. border-radius:4px;
  1748. border-top-right-radius:0px;
  1749. border-bottom-right-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1754. font-weight:400;
  1755. font-style:normal;
  1756. color:#FFFFFF;
  1757. }
  1758. #u55253 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:514px;
  1762. top:230px;
  1763. width:44px;
  1764. height:30px;
  1765. display:flex;
  1766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. color:#FFFFFF;
  1770. }
  1771. #u55253 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:0px 0px 0px 10px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u55253_text {
  1779. border-width:0px;
  1780. word-wrap:break-word;
  1781. text-transform:none;
  1782. }
  1783. #u55254_div {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:63px;
  1789. height:17px;
  1790. background:inherit;
  1791. background-color:rgba(255, 255, 255, 0);
  1792. border:none;
  1793. border-radius:0px;
  1794. -moz-box-shadow:none;
  1795. -webkit-box-shadow:none;
  1796. box-shadow:none;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. }
  1802. #u55254 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:580px;
  1806. top:260px;
  1807. width:63px;
  1808. height:17px;
  1809. display:flex;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:12px;
  1814. }
  1815. #u55254 .text {
  1816. position:absolute;
  1817. align-self:flex-start;
  1818. padding:0px 0px 0px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u55254_text {
  1823. border-width:0px;
  1824. white-space:nowrap;
  1825. text-transform:none;
  1826. }
  1827. #u55255 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:0px;
  1833. height:0px;
  1834. }
  1835. #u55256_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:1265px;
  1841. height:1193px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 1);
  1844. border:none;
  1845. border-radius:0px;
  1846. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1847. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1848. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1849. color:#1890FF;
  1850. }
  1851. #u55256 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:1640px;
  1855. top:50px;
  1856. width:1265px;
  1857. height:1193px;
  1858. display:flex;
  1859. color:#1890FF;
  1860. }
  1861. #u55256 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 2px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u55256_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. visibility:hidden;
  1873. }
  1874. #u55257 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:0px;
  1880. height:0px;
  1881. }
  1882. #u55258 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:0px;
  1888. height:0px;
  1889. }
  1890. #u55259_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:993px;
  1896. height:950px;
  1897. }
  1898. #u55259 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1889px;
  1902. top:115px;
  1903. width:993px;
  1904. height:950px;
  1905. display:flex;
  1906. }
  1907. #u55259 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 2px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u55259_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. visibility:hidden;
  1919. }
  1920. #u55260_div {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:29px;
  1926. height:17px;
  1927. background:inherit;
  1928. background-color:rgba(0, 191, 191, 1);
  1929. border:none;
  1930. border-radius:4px;
  1931. -moz-box-shadow:none;
  1932. -webkit-box-shadow:none;
  1933. box-shadow:none;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:10px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u55260 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:1889px;
  1944. top:118px;
  1945. width:29px;
  1946. height:17px;
  1947. display:flex;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:10px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u55260 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:5px 0px 5px 0px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u55260_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. }
  1966. #u55261_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:29px;
  1972. height:17px;
  1973. background:inherit;
  1974. background-color:rgba(217, 0, 27, 1);
  1975. border:none;
  1976. border-radius:4px;
  1977. -moz-box-shadow:none;
  1978. -webkit-box-shadow:none;
  1979. box-shadow:none;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:10px;
  1984. color:#FFFFFF;
  1985. }
  1986. #u55261 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:2556px;
  1990. top:115px;
  1991. width:29px;
  1992. height:17px;
  1993. display:flex;
  1994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:10px;
  1998. color:#FFFFFF;
  1999. }
  2000. #u55261 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:5px 0px 5px 0px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u55261_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. }
  2012. #u55262_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:29px;
  2018. height:17px;
  2019. background:inherit;
  2020. background-color:rgba(245, 154, 35, 1);
  2021. border:none;
  2022. border-radius:4px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:10px;
  2030. color:#FFFFFF;
  2031. }
  2032. #u55262 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:1889px;
  2036. top:346px;
  2037. width:29px;
  2038. height:17px;
  2039. display:flex;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:10px;
  2044. color:#FFFFFF;
  2045. }
  2046. #u55262 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:5px 0px 5px 0px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u55262_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. }
  2058. #u55263_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:29px;
  2064. height:17px;
  2065. background:inherit;
  2066. background-color:rgba(0, 191, 191, 1);
  2067. border:none;
  2068. border-radius:4px;
  2069. -moz-box-shadow:none;
  2070. -webkit-box-shadow:none;
  2071. box-shadow:none;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:10px;
  2076. color:#FFFFFF;
  2077. }
  2078. #u55263 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:2220px;
  2082. top:115px;
  2083. width:29px;
  2084. height:17px;
  2085. display:flex;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:10px;
  2090. color:#FFFFFF;
  2091. }
  2092. #u55263 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:5px 0px 5px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u55263_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. }
  2104. #u55264_div {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:29px;
  2110. height:17px;
  2111. background:inherit;
  2112. background-color:rgba(0, 191, 191, 1);
  2113. border:none;
  2114. border-radius:4px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:10px;
  2122. color:#FFFFFF;
  2123. }
  2124. #u55264 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:2220px;
  2128. top:349px;
  2129. width:29px;
  2130. height:17px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:10px;
  2136. color:#FFFFFF;
  2137. }
  2138. #u55264 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:5px 0px 5px 0px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u55264_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. }
  2150. #u55265_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:29px;
  2156. height:17px;
  2157. background:inherit;
  2158. background-color:rgba(0, 191, 191, 1);
  2159. border:none;
  2160. border-radius:4px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:10px;
  2168. color:#FFFFFF;
  2169. }
  2170. #u55265 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:2550px;
  2174. top:346px;
  2175. width:29px;
  2176. height:17px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:10px;
  2182. color:#FFFFFF;
  2183. }
  2184. #u55265 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:5px 0px 5px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u55265_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. }
  2196. #u55266_div {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:29px;
  2202. height:17px;
  2203. background:inherit;
  2204. background-color:rgba(0, 191, 191, 1);
  2205. border:none;
  2206. border-radius:4px;
  2207. -moz-box-shadow:none;
  2208. -webkit-box-shadow:none;
  2209. box-shadow:none;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:10px;
  2214. color:#FFFFFF;
  2215. }
  2216. #u55266 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:2220px;
  2220. top:602px;
  2221. width:29px;
  2222. height:17px;
  2223. display:flex;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:10px;
  2228. color:#FFFFFF;
  2229. }
  2230. #u55266 .text {
  2231. position:absolute;
  2232. align-self:center;
  2233. padding:5px 0px 5px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u55266_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. }
  2242. #u55267_div {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:29px;
  2248. height:17px;
  2249. background:inherit;
  2250. background-color:rgba(0, 191, 191, 1);
  2251. border:none;
  2252. border-radius:4px;
  2253. -moz-box-shadow:none;
  2254. -webkit-box-shadow:none;
  2255. box-shadow:none;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:10px;
  2260. color:#FFFFFF;
  2261. }
  2262. #u55267 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:2550px;
  2266. top:598px;
  2267. width:29px;
  2268. height:17px;
  2269. display:flex;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:10px;
  2274. color:#FFFFFF;
  2275. }
  2276. #u55267 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:5px 0px 5px 0px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u55267_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. }
  2288. #u55268_div {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:29px;
  2294. height:17px;
  2295. background:inherit;
  2296. background-color:rgba(0, 191, 191, 1);
  2297. border:none;
  2298. border-radius:4px;
  2299. -moz-box-shadow:none;
  2300. -webkit-box-shadow:none;
  2301. box-shadow:none;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. font-size:10px;
  2306. color:#FFFFFF;
  2307. }
  2308. #u55268 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:1889px;
  2312. top:602px;
  2313. width:29px;
  2314. height:17px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:10px;
  2320. color:#FFFFFF;
  2321. }
  2322. #u55268 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:5px 0px 5px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u55268_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u55269_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:29px;
  2340. height:17px;
  2341. background:inherit;
  2342. background-color:rgba(0, 191, 191, 1);
  2343. border:none;
  2344. border-radius:4px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:10px;
  2352. color:#FFFFFF;
  2353. }
  2354. #u55269 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:2220px;
  2358. top:848px;
  2359. width:29px;
  2360. height:17px;
  2361. display:flex;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:10px;
  2366. color:#FFFFFF;
  2367. }
  2368. #u55269 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:5px 0px 5px 0px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u55269_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u55270_div {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:29px;
  2386. height:17px;
  2387. background:inherit;
  2388. background-color:rgba(0, 191, 191, 1);
  2389. border:none;
  2390. border-radius:4px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:10px;
  2398. color:#FFFFFF;
  2399. }
  2400. #u55270 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:2550px;
  2404. top:845px;
  2405. width:29px;
  2406. height:17px;
  2407. display:flex;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:10px;
  2412. color:#FFFFFF;
  2413. }
  2414. #u55270 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:5px 0px 5px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u55270_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. }
  2426. #u55271_div {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:29px;
  2432. height:17px;
  2433. background:inherit;
  2434. background-color:rgba(0, 191, 191, 1);
  2435. border:none;
  2436. border-radius:4px;
  2437. -moz-box-shadow:none;
  2438. -webkit-box-shadow:none;
  2439. box-shadow:none;
  2440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2441. font-weight:400;
  2442. font-style:normal;
  2443. font-size:10px;
  2444. color:#FFFFFF;
  2445. }
  2446. #u55271 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:1889px;
  2450. top:848px;
  2451. width:29px;
  2452. height:17px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:10px;
  2458. color:#FFFFFF;
  2459. }
  2460. #u55271 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:5px 0px 5px 0px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u55271_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. }
  2472. #u55272_div {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:191px;
  2478. height:435px;
  2479. background:inherit;
  2480. background-color:rgba(242, 242, 242, 1);
  2481. border:none;
  2482. border-radius:7px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. }
  2487. #u55272 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:1658px;
  2491. top:281px;
  2492. width:191px;
  2493. height:435px;
  2494. display:flex;
  2495. }
  2496. #u55272 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 2px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u55272_text {
  2504. border-width:0px;
  2505. word-wrap:break-word;
  2506. text-transform:none;
  2507. visibility:hidden;
  2508. }
  2509. #u55273_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:57px;
  2515. height:30px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2524. font-weight:500;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. color:#000000;
  2528. line-height:30px;
  2529. }
  2530. #u55273 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:1658px;
  2534. top:59px;
  2535. width:57px;
  2536. height:30px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2539. font-weight:500;
  2540. font-style:normal;
  2541. font-size:14px;
  2542. color:#000000;
  2543. line-height:30px;
  2544. }
  2545. #u55273 .text {
  2546. position:absolute;
  2547. align-self:flex-start;
  2548. padding:0px 0px 0px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u55273_text {
  2553. border-width:0px;
  2554. white-space:nowrap;
  2555. text-transform:none;
  2556. }
  2557. #u55274 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:0px;
  2563. height:0px;
  2564. }
  2565. #u55275_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:18px;
  2571. height:18px;
  2572. }
  2573. #u55275 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:2857px;
  2577. top:67px;
  2578. width:18px;
  2579. height:18px;
  2580. display:flex;
  2581. }
  2582. #u55275 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 2px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u55275_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u55276_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:2px;
  2601. height:15px;
  2602. }
  2603. #u55276 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:2842px;
  2607. top:69px;
  2608. width:1px;
  2609. height:14px;
  2610. display:flex;
  2611. }
  2612. #u55276 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 2px 2px 2px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u55276_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. visibility:hidden;
  2624. }
  2625. #u55277 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:0px;
  2631. height:0px;
  2632. }
  2633. #u55278_img {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:9px;
  2639. height:9px;
  2640. }
  2641. #u55278 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:2719px;
  2645. top:66px;
  2646. width:9px;
  2647. height:9px;
  2648. display:flex;
  2649. }
  2650. #u55278 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:2px 2px 2px 2px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u55278_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u55279_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:9px;
  2669. height:9px;
  2670. }
  2671. #u55279 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:2731px;
  2675. top:66px;
  2676. width:9px;
  2677. height:9px;
  2678. display:flex;
  2679. }
  2680. #u55279 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 2px 2px 2px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u55279_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. visibility:hidden;
  2692. }
  2693. #u55280_img {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:9px;
  2699. height:9px;
  2700. }
  2701. #u55280 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:2719px;
  2705. top:78px;
  2706. width:9px;
  2707. height:9px;
  2708. display:flex;
  2709. }
  2710. #u55280 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u55280_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u55281_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:9px;
  2729. height:9px;
  2730. }
  2731. #u55281 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:2731px;
  2735. top:78px;
  2736. width:9px;
  2737. height:9px;
  2738. display:flex;
  2739. }
  2740. #u55281 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 2px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u55281_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u55282 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:0px;
  2759. height:0px;
  2760. }
  2761. #u55283_img {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:6px;
  2767. height:6px;
  2768. }
  2769. #u55283 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:2679px;
  2773. top:66px;
  2774. width:6px;
  2775. height:6px;
  2776. display:flex;
  2777. }
  2778. #u55283 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 2px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u55283_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u55284_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:6px;
  2797. height:6px;
  2798. }
  2799. #u55284 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:2686px;
  2803. top:66px;
  2804. width:6px;
  2805. height:6px;
  2806. display:flex;
  2807. }
  2808. #u55284 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 2px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u55284_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u55285_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:6px;
  2827. height:6px;
  2828. }
  2829. #u55285 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:2693px;
  2833. top:66px;
  2834. width:6px;
  2835. height:6px;
  2836. display:flex;
  2837. }
  2838. #u55285 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u55285_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u55286_img {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:6px;
  2857. height:6px;
  2858. }
  2859. #u55286 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:2679px;
  2863. top:73px;
  2864. width:6px;
  2865. height:6px;
  2866. display:flex;
  2867. }
  2868. #u55286 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 2px 2px 2px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u55286_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. visibility:hidden;
  2880. }
  2881. #u55287_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:6px;
  2887. height:6px;
  2888. }
  2889. #u55287 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:2686px;
  2893. top:73px;
  2894. width:6px;
  2895. height:6px;
  2896. display:flex;
  2897. }
  2898. #u55287 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u55287_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u55288_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:6px;
  2917. height:6px;
  2918. }
  2919. #u55288 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:2693px;
  2923. top:73px;
  2924. width:6px;
  2925. height:6px;
  2926. display:flex;
  2927. }
  2928. #u55288 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 2px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u55288_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u55289_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:6px;
  2947. height:6px;
  2948. }
  2949. #u55289 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:2679px;
  2953. top:80px;
  2954. width:6px;
  2955. height:6px;
  2956. display:flex;
  2957. }
  2958. #u55289 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u55289_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u55290_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:6px;
  2977. height:6px;
  2978. }
  2979. #u55290 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:2686px;
  2983. top:80px;
  2984. width:6px;
  2985. height:6px;
  2986. display:flex;
  2987. }
  2988. #u55290 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u55290_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u55291_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:6px;
  3007. height:6px;
  3008. }
  3009. #u55291 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:2693px;
  3013. top:80px;
  3014. width:6px;
  3015. height:6px;
  3016. display:flex;
  3017. }
  3018. #u55291 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u55291_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u55292 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:0px;
  3037. height:0px;
  3038. }
  3039. #u55293_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:4px;
  3045. height:4px;
  3046. }
  3047. #u55293 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:2639px;
  3051. top:67px;
  3052. width:4px;
  3053. height:4px;
  3054. display:flex;
  3055. }
  3056. #u55293 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u55293_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u55294_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:4px;
  3075. height:4px;
  3076. }
  3077. #u55294 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:2644px;
  3081. top:67px;
  3082. width:4px;
  3083. height:4px;
  3084. display:flex;
  3085. }
  3086. #u55294 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u55294_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u55295_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:4px;
  3105. height:4px;
  3106. }
  3107. #u55295 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:2649px;
  3111. top:67px;
  3112. width:4px;
  3113. height:4px;
  3114. display:flex;
  3115. }
  3116. #u55295 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 2px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u55295_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u55296_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:4px;
  3135. height:4px;
  3136. }
  3137. #u55296 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:2654px;
  3141. top:67px;
  3142. width:4px;
  3143. height:4px;
  3144. display:flex;
  3145. }
  3146. #u55296 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 2px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u55296_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u55297_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:4px;
  3165. height:4px;
  3166. }
  3167. #u55297 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:2639px;
  3171. top:72px;
  3172. width:4px;
  3173. height:4px;
  3174. display:flex;
  3175. }
  3176. #u55297 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u55297_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u55298_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:4px;
  3195. height:4px;
  3196. }
  3197. #u55298 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:2644px;
  3201. top:72px;
  3202. width:4px;
  3203. height:4px;
  3204. display:flex;
  3205. }
  3206. #u55298 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 2px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u55298_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. visibility:hidden;
  3218. }
  3219. #u55299_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:4px;
  3225. height:4px;
  3226. }
  3227. #u55299 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:2649px;
  3231. top:72px;
  3232. width:4px;
  3233. height:4px;
  3234. display:flex;
  3235. }
  3236. #u55299 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 2px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u55299_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u55300_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:4px;
  3255. height:4px;
  3256. }
  3257. #u55300 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:2654px;
  3261. top:72px;
  3262. width:4px;
  3263. height:4px;
  3264. display:flex;
  3265. }
  3266. #u55300 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 2px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u55300_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. visibility:hidden;
  3278. }
  3279. #u55301_img {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:4px;
  3285. height:4px;
  3286. }
  3287. #u55301 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:2639px;
  3291. top:77px;
  3292. width:4px;
  3293. height:4px;
  3294. display:flex;
  3295. }
  3296. #u55301 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 2px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u55301_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u55302_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:4px;
  3315. height:4px;
  3316. }
  3317. #u55302 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:2644px;
  3321. top:77px;
  3322. width:4px;
  3323. height:4px;
  3324. display:flex;
  3325. }
  3326. #u55302 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u55302_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u55303_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:4px;
  3345. height:4px;
  3346. }
  3347. #u55303 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:2649px;
  3351. top:77px;
  3352. width:4px;
  3353. height:4px;
  3354. display:flex;
  3355. }
  3356. #u55303 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 2px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u55303_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u55304_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:4px;
  3375. height:4px;
  3376. }
  3377. #u55304 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:2654px;
  3381. top:77px;
  3382. width:4px;
  3383. height:4px;
  3384. display:flex;
  3385. }
  3386. #u55304 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 2px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u55304_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u55305_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:4px;
  3405. height:4px;
  3406. }
  3407. #u55305 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:2639px;
  3411. top:82px;
  3412. width:4px;
  3413. height:4px;
  3414. display:flex;
  3415. }
  3416. #u55305 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u55305_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u55306_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:4px;
  3435. height:4px;
  3436. }
  3437. #u55306 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:2644px;
  3441. top:82px;
  3442. width:4px;
  3443. height:4px;
  3444. display:flex;
  3445. }
  3446. #u55306 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:2px 2px 2px 2px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u55306_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. visibility:hidden;
  3458. }
  3459. #u55307_img {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:4px;
  3465. height:4px;
  3466. }
  3467. #u55307 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:2649px;
  3471. top:82px;
  3472. width:4px;
  3473. height:4px;
  3474. display:flex;
  3475. }
  3476. #u55307 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 2px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u55307_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u55308_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:4px;
  3495. height:4px;
  3496. }
  3497. #u55308 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:2654px;
  3501. top:82px;
  3502. width:4px;
  3503. height:4px;
  3504. display:flex;
  3505. }
  3506. #u55308 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 2px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u55308_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u55309_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:20px;
  3525. height:20px;
  3526. }
  3527. #u55309 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:2761px;
  3531. top:66px;
  3532. width:20px;
  3533. height:20px;
  3534. display:flex;
  3535. }
  3536. #u55309 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 2px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u55309_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u55310_img {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:18px;
  3555. height:18px;
  3556. }
  3557. #u55310 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:2810px;
  3561. top:67px;
  3562. width:18px;
  3563. height:18px;
  3564. display:flex;
  3565. }
  3566. #u55310 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 2px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u55310_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u55311_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:2px;
  3585. height:15px;
  3586. }
  3587. #u55311 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:2795px;
  3591. top:69px;
  3592. width:1px;
  3593. height:14px;
  3594. display:flex;
  3595. }
  3596. #u55311 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u55311_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u55312_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:43px;
  3615. height:30px;
  3616. background:inherit;
  3617. background-color:rgba(255, 255, 255, 0);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3624. font-weight:500;
  3625. font-style:normal;
  3626. font-size:14px;
  3627. color:#000000;
  3628. line-height:30px;
  3629. }
  3630. #u55312 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:1658px;
  3634. top:251px;
  3635. width:43px;
  3636. height:30px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3639. font-weight:500;
  3640. font-style:normal;
  3641. font-size:14px;
  3642. color:#000000;
  3643. line-height:30px;
  3644. }
  3645. #u55312 .text {
  3646. position:absolute;
  3647. align-self:flex-start;
  3648. padding:0px 0px 0px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u55312_text {
  3653. border-width:0px;
  3654. white-space:nowrap;
  3655. text-transform:none;
  3656. }
  3657. #u55313 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:0px;
  3663. height:0px;
  3664. }
  3665. #u55314_div {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:30px;
  3671. height:30px;
  3672. background:inherit;
  3673. background-color:rgba(255, 255, 255, 1);
  3674. box-sizing:border-box;
  3675. border-width:1px;
  3676. border-style:solid;
  3677. border-color:rgba(121, 121, 121, 1);
  3678. border-radius:0px;
  3679. -moz-box-shadow:none;
  3680. -webkit-box-shadow:none;
  3681. box-shadow:none;
  3682. }
  3683. #u55314 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:1659px;
  3687. top:94px;
  3688. width:30px;
  3689. height:30px;
  3690. display:flex;
  3691. }
  3692. #u55314 .text {
  3693. position:absolute;
  3694. align-self:center;
  3695. padding:2px 2px 2px 2px;
  3696. box-sizing:border-box;
  3697. width:100%;
  3698. }
  3699. #u55314_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u55315_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:19px;
  3711. height:18px;
  3712. }
  3713. #u55315 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:1665px;
  3717. top:100px;
  3718. width:19px;
  3719. height:18px;
  3720. display:flex;
  3721. -webkit-transform:rotate(135deg);
  3722. -moz-transform:rotate(135deg);
  3723. -ms-transform:rotate(135deg);
  3724. transform:rotate(135deg);
  3725. }
  3726. #u55315 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 2px 2px 2px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u55315_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. visibility:hidden;
  3738. }
  3739. #u55316 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:0px;
  3745. height:0px;
  3746. }
  3747. #u55317_div {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:30px;
  3753. height:30px;
  3754. background:inherit;
  3755. background-color:rgba(255, 255, 255, 1);
  3756. box-sizing:border-box;
  3757. border-width:1px;
  3758. border-style:solid;
  3759. border-color:rgba(121, 121, 121, 1);
  3760. border-radius:0px;
  3761. -moz-box-shadow:none;
  3762. -webkit-box-shadow:none;
  3763. box-shadow:none;
  3764. }
  3765. #u55317 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:1699px;
  3769. top:94px;
  3770. width:30px;
  3771. height:30px;
  3772. display:flex;
  3773. }
  3774. #u55317 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 2px 2px 2px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u55317_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u55318_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:19px;
  3793. height:18px;
  3794. }
  3795. #u55318 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:1705px;
  3799. top:100px;
  3800. width:19px;
  3801. height:18px;
  3802. display:flex;
  3803. -webkit-transform:rotate(180deg);
  3804. -moz-transform:rotate(180deg);
  3805. -ms-transform:rotate(180deg);
  3806. transform:rotate(180deg);
  3807. }
  3808. #u55318 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 2px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u55318_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u55319 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:0px;
  3827. height:0px;
  3828. }
  3829. #u55320_div {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:30px;
  3835. height:30px;
  3836. background:inherit;
  3837. background-color:rgba(255, 255, 255, 1);
  3838. box-sizing:border-box;
  3839. border-width:1px;
  3840. border-style:solid;
  3841. border-color:rgba(121, 121, 121, 1);
  3842. border-radius:0px;
  3843. -moz-box-shadow:none;
  3844. -webkit-box-shadow:none;
  3845. box-shadow:none;
  3846. }
  3847. #u55320 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:1739px;
  3851. top:94px;
  3852. width:30px;
  3853. height:30px;
  3854. display:flex;
  3855. }
  3856. #u55320 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 2px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u55320_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u55321_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:19px;
  3875. height:18px;
  3876. }
  3877. #u55321 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:1745px;
  3881. top:100px;
  3882. width:19px;
  3883. height:18px;
  3884. display:flex;
  3885. -webkit-transform:rotate(225deg);
  3886. -moz-transform:rotate(225deg);
  3887. -ms-transform:rotate(225deg);
  3888. transform:rotate(225deg);
  3889. }
  3890. #u55321 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 2px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u55321_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u55322 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:0px;
  3909. height:0px;
  3910. }
  3911. #u55323_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:30px;
  3917. height:30px;
  3918. background:inherit;
  3919. background-color:rgba(255, 255, 255, 1);
  3920. box-sizing:border-box;
  3921. border-width:1px;
  3922. border-style:solid;
  3923. border-color:rgba(121, 121, 121, 1);
  3924. border-radius:0px;
  3925. -moz-box-shadow:none;
  3926. -webkit-box-shadow:none;
  3927. box-shadow:none;
  3928. }
  3929. #u55323 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:1659px;
  3933. top:134px;
  3934. width:30px;
  3935. height:30px;
  3936. display:flex;
  3937. }
  3938. #u55323 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:2px 2px 2px 2px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u55323_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. visibility:hidden;
  3950. }
  3951. #u55324_img {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:19px;
  3957. height:18px;
  3958. }
  3959. #u55324 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:1665px;
  3963. top:140px;
  3964. width:19px;
  3965. height:18px;
  3966. display:flex;
  3967. -webkit-transform:rotate(90deg);
  3968. -moz-transform:rotate(90deg);
  3969. -ms-transform:rotate(90deg);
  3970. transform:rotate(90deg);
  3971. }
  3972. #u55324 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 2px 2px 2px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u55324_text {
  3980. border-width:0px;
  3981. word-wrap:break-word;
  3982. text-transform:none;
  3983. visibility:hidden;
  3984. }
  3985. #u55325 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:0px;
  3991. height:0px;
  3992. }
  3993. #u55326_div {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:30px;
  3999. height:30px;
  4000. background:inherit;
  4001. background-color:rgba(255, 255, 255, 1);
  4002. box-sizing:border-box;
  4003. border-width:1px;
  4004. border-style:solid;
  4005. border-color:rgba(121, 121, 121, 1);
  4006. border-radius:0px;
  4007. -moz-box-shadow:none;
  4008. -webkit-box-shadow:none;
  4009. box-shadow:none;
  4010. }
  4011. #u55326 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:1739px;
  4015. top:134px;
  4016. width:30px;
  4017. height:30px;
  4018. display:flex;
  4019. }
  4020. #u55326 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u55326_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u55327_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:19px;
  4039. height:18px;
  4040. }
  4041. #u55327 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:1745px;
  4045. top:140px;
  4046. width:19px;
  4047. height:18px;
  4048. display:flex;
  4049. -webkit-transform:rotate(270deg);
  4050. -moz-transform:rotate(270deg);
  4051. -ms-transform:rotate(270deg);
  4052. transform:rotate(270deg);
  4053. }
  4054. #u55327 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 2px 2px 2px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u55327_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. visibility:hidden;
  4066. }
  4067. #u55328 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:0px;
  4073. height:0px;
  4074. }
  4075. #u55329_div {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:30px;
  4081. height:30px;
  4082. background:inherit;
  4083. background-color:rgba(255, 255, 255, 1);
  4084. box-sizing:border-box;
  4085. border-width:1px;
  4086. border-style:solid;
  4087. border-color:rgba(121, 121, 121, 1);
  4088. border-radius:0px;
  4089. -moz-box-shadow:none;
  4090. -webkit-box-shadow:none;
  4091. box-shadow:none;
  4092. }
  4093. #u55329 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:1659px;
  4097. top:174px;
  4098. width:30px;
  4099. height:30px;
  4100. display:flex;
  4101. }
  4102. #u55329 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u55329_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u55330_img {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:19px;
  4121. height:18px;
  4122. }
  4123. #u55330 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:1665px;
  4127. top:180px;
  4128. width:19px;
  4129. height:18px;
  4130. display:flex;
  4131. -webkit-transform:rotate(51deg);
  4132. -moz-transform:rotate(51deg);
  4133. -ms-transform:rotate(51deg);
  4134. transform:rotate(51deg);
  4135. }
  4136. #u55330 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:2px 2px 2px 2px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u55330_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. visibility:hidden;
  4148. }
  4149. #u55331 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:0px;
  4155. height:0px;
  4156. }
  4157. #u55332_div {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:30px;
  4163. height:30px;
  4164. background:inherit;
  4165. background-color:rgba(255, 255, 255, 1);
  4166. box-sizing:border-box;
  4167. border-width:1px;
  4168. border-style:solid;
  4169. border-color:rgba(121, 121, 121, 1);
  4170. border-radius:0px;
  4171. -moz-box-shadow:none;
  4172. -webkit-box-shadow:none;
  4173. box-shadow:none;
  4174. }
  4175. #u55332 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:1699px;
  4179. top:174px;
  4180. width:30px;
  4181. height:30px;
  4182. display:flex;
  4183. }
  4184. #u55332 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 2px 2px 2px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u55332_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u55333_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:19px;
  4203. height:18px;
  4204. }
  4205. #u55333 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:1705px;
  4209. top:180px;
  4210. width:19px;
  4211. height:18px;
  4212. display:flex;
  4213. }
  4214. #u55333 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 2px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u55333_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u55334 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:0px;
  4233. height:0px;
  4234. }
  4235. #u55335_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:30px;
  4241. height:30px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 1);
  4244. box-sizing:border-box;
  4245. border-width:1px;
  4246. border-style:solid;
  4247. border-color:rgba(121, 121, 121, 1);
  4248. border-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. }
  4253. #u55335 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:1739px;
  4257. top:174px;
  4258. width:30px;
  4259. height:30px;
  4260. display:flex;
  4261. }
  4262. #u55335 .text {
  4263. position:absolute;
  4264. align-self:center;
  4265. padding:2px 2px 2px 2px;
  4266. box-sizing:border-box;
  4267. width:100%;
  4268. }
  4269. #u55335_text {
  4270. border-width:0px;
  4271. word-wrap:break-word;
  4272. text-transform:none;
  4273. visibility:hidden;
  4274. }
  4275. #u55336_img {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:19px;
  4281. height:18px;
  4282. }
  4283. #u55336 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:1745px;
  4287. top:180px;
  4288. width:19px;
  4289. height:18px;
  4290. display:flex;
  4291. -webkit-transform:rotate(300deg);
  4292. -moz-transform:rotate(300deg);
  4293. -ms-transform:rotate(300deg);
  4294. transform:rotate(300deg);
  4295. }
  4296. #u55336 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 2px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u55336_text {
  4304. border-width:0px;
  4305. word-wrap:break-word;
  4306. text-transform:none;
  4307. visibility:hidden;
  4308. }
  4309. #u55337_div {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:30px;
  4315. height:30px;
  4316. background:inherit;
  4317. background-color:rgba(255, 255, 255, 1);
  4318. box-sizing:border-box;
  4319. border-width:1px;
  4320. border-style:solid;
  4321. border-color:rgba(121, 121, 121, 1);
  4322. border-radius:7px;
  4323. -moz-box-shadow:none;
  4324. -webkit-box-shadow:none;
  4325. box-shadow:none;
  4326. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4327. font-weight:700;
  4328. font-style:normal;
  4329. font-size:24px;
  4330. }
  4331. #u55337 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:1779px;
  4335. top:94px;
  4336. width:30px;
  4337. height:30px;
  4338. display:flex;
  4339. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4340. font-weight:700;
  4341. font-style:normal;
  4342. font-size:24px;
  4343. }
  4344. #u55337 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u55337_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u55338_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:30px;
  4362. height:30px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 1);
  4365. box-sizing:border-box;
  4366. border-width:1px;
  4367. border-style:solid;
  4368. border-color:rgba(121, 121, 121, 1);
  4369. border-radius:7px;
  4370. -moz-box-shadow:none;
  4371. -webkit-box-shadow:none;
  4372. box-shadow:none;
  4373. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4374. font-weight:700;
  4375. font-style:normal;
  4376. font-size:24px;
  4377. }
  4378. #u55338 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:1779px;
  4382. top:134px;
  4383. width:30px;
  4384. height:30px;
  4385. display:flex;
  4386. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4387. font-weight:700;
  4388. font-style:normal;
  4389. font-size:24px;
  4390. }
  4391. #u55338 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u55338_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. }
  4403. #u55339_div {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:30px;
  4409. height:30px;
  4410. background:inherit;
  4411. background-color:rgba(255, 255, 255, 1);
  4412. box-sizing:border-box;
  4413. border-width:1px;
  4414. border-style:solid;
  4415. border-color:rgba(121, 121, 121, 1);
  4416. border-radius:7px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4421. font-weight:700;
  4422. font-style:normal;
  4423. font-size:24px;
  4424. }
  4425. #u55339 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:1779px;
  4429. top:174px;
  4430. width:30px;
  4431. height:30px;
  4432. display:flex;
  4433. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4434. font-weight:700;
  4435. font-style:normal;
  4436. font-size:24px;
  4437. }
  4438. #u55339 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u55339_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. }
  4450. #u55340 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:0px;
  4456. height:0px;
  4457. }
  4458. #u55341_div {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:30px;
  4464. height:30px;
  4465. background:inherit;
  4466. background-color:rgba(255, 255, 255, 1);
  4467. box-sizing:border-box;
  4468. border-width:1px;
  4469. border-style:solid;
  4470. border-color:rgba(121, 121, 121, 1);
  4471. border-radius:0px;
  4472. -moz-box-shadow:none;
  4473. -webkit-box-shadow:none;
  4474. box-shadow:none;
  4475. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4476. font-weight:700;
  4477. font-style:normal;
  4478. font-size:18px;
  4479. }
  4480. #u55341 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:1819px;
  4484. top:94px;
  4485. width:30px;
  4486. height:30px;
  4487. display:flex;
  4488. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4489. font-weight:700;
  4490. font-style:normal;
  4491. font-size:18px;
  4492. }
  4493. #u55341 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 2px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u55341_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. visibility:hidden;
  4505. }
  4506. #u55342_img {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:14px;
  4512. height:14px;
  4513. }
  4514. #u55342 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:1827px;
  4518. top:102px;
  4519. width:14px;
  4520. height:14px;
  4521. display:flex;
  4522. }
  4523. #u55342 .text {
  4524. position:absolute;
  4525. align-self:center;
  4526. padding:2px 2px 2px 2px;
  4527. box-sizing:border-box;
  4528. width:100%;
  4529. }
  4530. #u55342_text {
  4531. border-width:0px;
  4532. word-wrap:break-word;
  4533. text-transform:none;
  4534. visibility:hidden;
  4535. }
  4536. #u55343 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:0px;
  4542. height:0px;
  4543. }
  4544. #u55344_div {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:30px;
  4550. height:30px;
  4551. background:inherit;
  4552. background-color:rgba(255, 255, 255, 1);
  4553. box-sizing:border-box;
  4554. border-width:1px;
  4555. border-style:solid;
  4556. border-color:rgba(121, 121, 121, 1);
  4557. border-radius:0px;
  4558. -moz-box-shadow:none;
  4559. -webkit-box-shadow:none;
  4560. box-shadow:none;
  4561. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4562. font-weight:700;
  4563. font-style:normal;
  4564. font-size:18px;
  4565. }
  4566. #u55344 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:1819px;
  4570. top:134px;
  4571. width:30px;
  4572. height:30px;
  4573. display:flex;
  4574. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4575. font-weight:700;
  4576. font-style:normal;
  4577. font-size:18px;
  4578. }
  4579. #u55344 .text {
  4580. position:absolute;
  4581. align-self:center;
  4582. padding:2px 2px 2px 2px;
  4583. box-sizing:border-box;
  4584. width:100%;
  4585. }
  4586. #u55344_text {
  4587. border-width:0px;
  4588. word-wrap:break-word;
  4589. text-transform:none;
  4590. visibility:hidden;
  4591. }
  4592. #u55345_img {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:14px;
  4598. height:14px;
  4599. }
  4600. #u55345 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:1827px;
  4604. top:142px;
  4605. width:14px;
  4606. height:14px;
  4607. display:flex;
  4608. }
  4609. #u55345 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 2px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u55345_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u55346 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:0px;
  4628. height:0px;
  4629. }
  4630. #u55347_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:30px;
  4636. height:30px;
  4637. background:inherit;
  4638. background-color:rgba(255, 255, 255, 1);
  4639. box-sizing:border-box;
  4640. border-width:1px;
  4641. border-style:solid;
  4642. border-color:rgba(121, 121, 121, 1);
  4643. border-radius:0px;
  4644. -moz-box-shadow:none;
  4645. -webkit-box-shadow:none;
  4646. box-shadow:none;
  4647. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4648. font-weight:700;
  4649. font-style:normal;
  4650. font-size:18px;
  4651. }
  4652. #u55347 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1819px;
  4656. top:174px;
  4657. width:30px;
  4658. height:30px;
  4659. display:flex;
  4660. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4661. font-weight:700;
  4662. font-style:normal;
  4663. font-size:18px;
  4664. }
  4665. #u55347 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 2px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u55347_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. visibility:hidden;
  4677. }
  4678. #u55348_img {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:17px;
  4684. height:11px;
  4685. }
  4686. #u55348 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:1826px;
  4690. top:184px;
  4691. width:17px;
  4692. height:11px;
  4693. display:flex;
  4694. }
  4695. #u55348 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 2px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u55348_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u55349 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:0px;
  4714. height:0px;
  4715. }
  4716. #u55350_div {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:84px;
  4722. height:21px;
  4723. background:inherit;
  4724. background-color:rgba(51, 51, 51, 1);
  4725. border:none;
  4726. border-radius:11px;
  4727. -moz-box-shadow:none;
  4728. -webkit-box-shadow:none;
  4729. box-shadow:none;
  4730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:12px;
  4734. color:#FFFFFF;
  4735. text-align:center;
  4736. }
  4737. #u55350 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:1750px;
  4741. top:200px;
  4742. width:84px;
  4743. height:21px;
  4744. display:flex;
  4745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:12px;
  4749. color:#FFFFFF;
  4750. text-align:center;
  4751. }
  4752. #u55350 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u55350_text {
  4760. border-width:0px;
  4761. white-space:nowrap;
  4762. text-transform:none;
  4763. }
  4764. #u55351_img {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:11px;
  4770. height:17px;
  4771. }
  4772. #u55351 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:1802px;
  4776. top:231px;
  4777. width:11px;
  4778. height:17px;
  4779. display:flex;
  4780. }
  4781. #u55351 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 2px 2px 2px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u55351_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u55352_div {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:191px;
  4800. height:6px;
  4801. background:inherit;
  4802. background-color:rgba(255, 255, 255, 1);
  4803. box-sizing:border-box;
  4804. border-width:1px;
  4805. border-style:solid;
  4806. border-color:rgba(228, 228, 228, 1);
  4807. border-radius:7px;
  4808. -moz-box-shadow:none;
  4809. -webkit-box-shadow:none;
  4810. box-shadow:none;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:12px;
  4815. color:#FFFFFF;
  4816. }
  4817. #u55352 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:1658px;
  4821. top:228px;
  4822. width:191px;
  4823. height:6px;
  4824. display:flex;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:12px;
  4829. color:#FFFFFF;
  4830. }
  4831. #u55352 .text {
  4832. position:absolute;
  4833. align-self:center;
  4834. padding:8px 15px 8px 15px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u55352_text {
  4839. border-width:0px;
  4840. word-wrap:break-word;
  4841. text-transform:none;
  4842. visibility:hidden;
  4843. }
  4844. #u55353_div {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:140px;
  4850. height:6px;
  4851. background:inherit;
  4852. background-color:rgba(51, 153, 255, 1);
  4853. box-sizing:border-box;
  4854. border-width:1px;
  4855. border-style:solid;
  4856. border-color:rgba(228, 228, 228, 1);
  4857. border-radius:7px;
  4858. -moz-box-shadow:none;
  4859. -webkit-box-shadow:none;
  4860. box-shadow:none;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:12px;
  4865. color:#FFFFFF;
  4866. }
  4867. #u55353 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:1658px;
  4871. top:228px;
  4872. width:140px;
  4873. height:6px;
  4874. display:flex;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#FFFFFF;
  4880. }
  4881. #u55353 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:8px 15px 8px 15px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u55353_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u55354_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:-3px;
  4898. top:-3px;
  4899. width:20px;
  4900. height:20px;
  4901. }
  4902. #u55354 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:1787px;
  4906. top:224px;
  4907. width:14px;
  4908. height:14px;
  4909. display:flex;
  4910. }
  4911. #u55354 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:2px 2px 2px 2px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u55354_text {
  4919. border-width:0px;
  4920. word-wrap:break-word;
  4921. text-transform:none;
  4922. visibility:hidden;
  4923. }
  4924. #u55355 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:1665px;
  4928. top:370px;
  4929. width:127px;
  4930. height:240px;
  4931. }
  4932. #u55355_children {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:0px;
  4938. height:0px;
  4939. }
  4940. #u55356 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:80px;
  4946. height:20px;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. }
  4951. #u55357_img {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:9px;
  4957. height:9px;
  4958. }
  4959. #u55357 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:6px;
  4963. top:6px;
  4964. width:9px;
  4965. height:9px;
  4966. display:flex;
  4967. }
  4968. #u55357 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u55357_img.selected {
  4976. }
  4977. #u55357.selected {
  4978. }
  4979. #u55357_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u55358_div {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:58px;
  4991. height:20px;
  4992. background:inherit;
  4993. background-color:rgba(255, 255, 255, 0);
  4994. border:none;
  4995. border-radius:0px;
  4996. -moz-box-shadow:none;
  4997. -webkit-box-shadow:none;
  4998. box-shadow:none;
  4999. }
  5000. #u55358 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:22px;
  5004. top:0px;
  5005. width:58px;
  5006. height:20px;
  5007. display:flex;
  5008. }
  5009. #u55358 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 3px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u55358_text {
  5017. border-width:0px;
  5018. white-space:nowrap;
  5019. text-transform:none;
  5020. }
  5021. #u55356_children {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:0px;
  5027. height:0px;
  5028. }
  5029. #u55359 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:20px;
  5033. top:20px;
  5034. width:87px;
  5035. height:20px;
  5036. }
  5037. #u55360_img {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:9px;
  5043. height:9px;
  5044. }
  5045. #u55360 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:6px;
  5049. top:6px;
  5050. width:9px;
  5051. height:9px;
  5052. display:flex;
  5053. }
  5054. #u55360 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 2px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u55360_img.selected {
  5062. }
  5063. #u55360.selected {
  5064. }
  5065. #u55360_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. visibility:hidden;
  5070. }
  5071. #u55361_div {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:65px;
  5077. height:20px;
  5078. background:inherit;
  5079. background-color:rgba(255, 255, 255, 0);
  5080. border:none;
  5081. border-radius:0px;
  5082. -moz-box-shadow:none;
  5083. -webkit-box-shadow:none;
  5084. box-shadow:none;
  5085. }
  5086. #u55361 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:22px;
  5090. top:0px;
  5091. width:65px;
  5092. height:20px;
  5093. display:flex;
  5094. }
  5095. #u55361 .text {
  5096. position:absolute;
  5097. align-self:center;
  5098. padding:2px 2px 2px 3px;
  5099. box-sizing:border-box;
  5100. width:100%;
  5101. }
  5102. #u55361_text {
  5103. border-width:0px;
  5104. white-space:nowrap;
  5105. text-transform:none;
  5106. }
  5107. #u55359_children {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:0px;
  5113. height:0px;
  5114. }
  5115. #u55362 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:20px;
  5119. top:20px;
  5120. width:87px;
  5121. height:20px;
  5122. }
  5123. #u55363_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:65px;
  5129. height:20px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 0);
  5132. border:none;
  5133. border-radius:0px;
  5134. -moz-box-shadow:none;
  5135. -webkit-box-shadow:none;
  5136. box-shadow:none;
  5137. }
  5138. #u55363 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:22px;
  5142. top:0px;
  5143. width:65px;
  5144. height:20px;
  5145. display:flex;
  5146. }
  5147. #u55363 .text {
  5148. position:absolute;
  5149. align-self:center;
  5150. padding:2px 2px 2px 3px;
  5151. box-sizing:border-box;
  5152. width:100%;
  5153. }
  5154. #u55363_text {
  5155. border-width:0px;
  5156. white-space:nowrap;
  5157. text-transform:none;
  5158. }
  5159. #u55364 {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:20px;
  5163. top:40px;
  5164. width:87px;
  5165. height:20px;
  5166. }
  5167. #u55365_div {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:65px;
  5173. height:20px;
  5174. background:inherit;
  5175. background-color:rgba(255, 255, 255, 0);
  5176. border:none;
  5177. border-radius:0px;
  5178. -moz-box-shadow:none;
  5179. -webkit-box-shadow:none;
  5180. box-shadow:none;
  5181. }
  5182. #u55365 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:22px;
  5186. top:0px;
  5187. width:65px;
  5188. height:20px;
  5189. display:flex;
  5190. }
  5191. #u55365 .text {
  5192. position:absolute;
  5193. align-self:center;
  5194. padding:2px 2px 2px 3px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u55365_text {
  5199. border-width:0px;
  5200. white-space:nowrap;
  5201. text-transform:none;
  5202. }
  5203. #u55366 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:20px;
  5207. top:60px;
  5208. width:54px;
  5209. height:20px;
  5210. }
  5211. #u55367_div {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:32px;
  5217. height:20px;
  5218. background:inherit;
  5219. background-color:rgba(255, 255, 255, 0);
  5220. border:none;
  5221. border-radius:0px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. }
  5226. #u55367 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:22px;
  5230. top:0px;
  5231. width:32px;
  5232. height:20px;
  5233. display:flex;
  5234. }
  5235. #u55367 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 3px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u55367_text {
  5243. border-width:0px;
  5244. white-space:nowrap;
  5245. text-transform:none;
  5246. }
  5247. #u55368 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:20px;
  5251. top:100px;
  5252. width:87px;
  5253. height:20px;
  5254. }
  5255. #u55369_img {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:9px;
  5261. height:9px;
  5262. }
  5263. #u55369 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:6px;
  5267. top:6px;
  5268. width:9px;
  5269. height:9px;
  5270. display:flex;
  5271. }
  5272. #u55369 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u55369_img.selected {
  5280. }
  5281. #u55369.selected {
  5282. }
  5283. #u55369_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. visibility:hidden;
  5288. }
  5289. #u55370_div {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:65px;
  5295. height:20px;
  5296. background:inherit;
  5297. background-color:rgba(255, 255, 255, 0);
  5298. border:none;
  5299. border-radius:0px;
  5300. -moz-box-shadow:none;
  5301. -webkit-box-shadow:none;
  5302. box-shadow:none;
  5303. }
  5304. #u55370 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:22px;
  5308. top:0px;
  5309. width:65px;
  5310. height:20px;
  5311. display:flex;
  5312. }
  5313. #u55370 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 2px 2px 3px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u55370_text {
  5321. border-width:0px;
  5322. white-space:nowrap;
  5323. text-transform:none;
  5324. }
  5325. #u55368_children {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:0px;
  5331. height:0px;
  5332. }
  5333. #u55371 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:20px;
  5337. top:20px;
  5338. width:87px;
  5339. height:20px;
  5340. }
  5341. #u55372_div {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:65px;
  5347. height:20px;
  5348. background:inherit;
  5349. background-color:rgba(255, 255, 255, 0);
  5350. border:none;
  5351. border-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. }
  5356. #u55372 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:22px;
  5360. top:0px;
  5361. width:65px;
  5362. height:20px;
  5363. display:flex;
  5364. }
  5365. #u55372 .text {
  5366. position:absolute;
  5367. align-self:center;
  5368. padding:2px 2px 2px 3px;
  5369. box-sizing:border-box;
  5370. width:100%;
  5371. }
  5372. #u55372_text {
  5373. border-width:0px;
  5374. white-space:nowrap;
  5375. text-transform:none;
  5376. }
  5377. #u55373 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:20px;
  5381. top:40px;
  5382. width:87px;
  5383. height:20px;
  5384. }
  5385. #u55374_div {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:65px;
  5391. height:20px;
  5392. background:inherit;
  5393. background-color:rgba(255, 255, 255, 0);
  5394. border:none;
  5395. border-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. }
  5400. #u55374 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:22px;
  5404. top:0px;
  5405. width:65px;
  5406. height:20px;
  5407. display:flex;
  5408. }
  5409. #u55374 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 3px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u55374_text {
  5417. border-width:0px;
  5418. white-space:nowrap;
  5419. text-transform:none;
  5420. }
  5421. #u55375 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:20px;
  5425. top:60px;
  5426. width:54px;
  5427. height:20px;
  5428. }
  5429. #u55376_div {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:32px;
  5435. height:20px;
  5436. background:inherit;
  5437. background-color:rgba(255, 255, 255, 0);
  5438. border:none;
  5439. border-radius:0px;
  5440. -moz-box-shadow:none;
  5441. -webkit-box-shadow:none;
  5442. box-shadow:none;
  5443. }
  5444. #u55376 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:22px;
  5448. top:0px;
  5449. width:32px;
  5450. height:20px;
  5451. display:flex;
  5452. }
  5453. #u55376 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 3px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u55376_text {
  5461. border-width:0px;
  5462. white-space:nowrap;
  5463. text-transform:none;
  5464. }
  5465. #u55377 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:20px;
  5469. top:180px;
  5470. width:87px;
  5471. height:20px;
  5472. }
  5473. #u55378_img {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:9px;
  5479. height:9px;
  5480. }
  5481. #u55378 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:6px;
  5485. top:6px;
  5486. width:9px;
  5487. height:9px;
  5488. display:flex;
  5489. }
  5490. #u55378 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 2px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u55378_img.selected {
  5498. }
  5499. #u55378.selected {
  5500. }
  5501. #u55378_text {
  5502. border-width:0px;
  5503. word-wrap:break-word;
  5504. text-transform:none;
  5505. visibility:hidden;
  5506. }
  5507. #u55379_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:65px;
  5513. height:20px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 0);
  5516. border:none;
  5517. border-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. }
  5522. #u55379 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:22px;
  5526. top:0px;
  5527. width:65px;
  5528. height:20px;
  5529. display:flex;
  5530. }
  5531. #u55379 .text {
  5532. position:absolute;
  5533. align-self:center;
  5534. padding:2px 2px 2px 3px;
  5535. box-sizing:border-box;
  5536. width:100%;
  5537. }
  5538. #u55379_text {
  5539. border-width:0px;
  5540. white-space:nowrap;
  5541. text-transform:none;
  5542. }
  5543. #u55377_children {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:0px;
  5549. height:0px;
  5550. }
  5551. #u55380 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:20px;
  5555. top:20px;
  5556. width:87px;
  5557. height:20px;
  5558. }
  5559. #u55381_div {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:65px;
  5565. height:20px;
  5566. background:inherit;
  5567. background-color:rgba(255, 255, 255, 0);
  5568. border:none;
  5569. border-radius:0px;
  5570. -moz-box-shadow:none;
  5571. -webkit-box-shadow:none;
  5572. box-shadow:none;
  5573. }
  5574. #u55381 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:22px;
  5578. top:0px;
  5579. width:65px;
  5580. height:20px;
  5581. display:flex;
  5582. }
  5583. #u55381 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 3px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u55381_text {
  5591. border-width:0px;
  5592. white-space:nowrap;
  5593. text-transform:none;
  5594. }
  5595. #u55382 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:20px;
  5599. top:40px;
  5600. width:54px;
  5601. height:20px;
  5602. }
  5603. #u55383_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:32px;
  5609. height:20px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border:none;
  5613. border-radius:0px;
  5614. -moz-box-shadow:none;
  5615. -webkit-box-shadow:none;
  5616. box-shadow:none;
  5617. }
  5618. #u55383 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:22px;
  5622. top:0px;
  5623. width:32px;
  5624. height:20px;
  5625. display:flex;
  5626. }
  5627. #u55383 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 3px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u55383_text {
  5635. border-width:0px;
  5636. white-space:nowrap;
  5637. text-transform:none;
  5638. }
  5639. #u55384 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:0px;
  5645. height:0px;
  5646. }
  5647. #u55385_div {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:175px;
  5653. height:30px;
  5654. background:inherit;
  5655. background-color:rgba(255, 255, 255, 1);
  5656. box-sizing:border-box;
  5657. border-width:1px;
  5658. border-style:solid;
  5659. border-color:rgba(201, 201, 201, 1);
  5660. border-radius:4px;
  5661. -moz-box-shadow:none;
  5662. -webkit-box-shadow:none;
  5663. box-shadow:none;
  5664. font-family:'Microsoft YaHei', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:14px;
  5668. color:#CCCCCC;
  5669. text-align:left;
  5670. }
  5671. #u55385 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:1666px;
  5675. top:293px;
  5676. width:175px;
  5677. height:30px;
  5678. display:flex;
  5679. font-family:'Microsoft YaHei', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. font-size:14px;
  5683. color:#CCCCCC;
  5684. text-align:left;
  5685. }
  5686. #u55385 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 8px 2px 8px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u55385_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u55386_input {
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:159px;
  5704. height:25px;
  5705. padding:2px 2px 2px 2px;
  5706. font-family:'Microsoft YaHei', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:10px;
  5710. letter-spacing:normal;
  5711. color:#000000;
  5712. vertical-align:none;
  5713. text-align:left;
  5714. text-transform:none;
  5715. background-color:transparent;
  5716. border-color:transparent;
  5717. }
  5718. #u55386_input.disabled {
  5719. position:absolute;
  5720. left:0px;
  5721. top:0px;
  5722. width:159px;
  5723. height:25px;
  5724. padding:2px 2px 2px 2px;
  5725. font-family:'Microsoft YaHei', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:10px;
  5729. letter-spacing:normal;
  5730. color:#000000;
  5731. vertical-align:none;
  5732. text-align:left;
  5733. text-transform:none;
  5734. background-color:transparent;
  5735. border-color:transparent;
  5736. }
  5737. #u55386_div {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:159px;
  5743. height:25px;
  5744. background:inherit;
  5745. background-color:rgba(255, 255, 255, 1);
  5746. border:none;
  5747. border-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-family:'Microsoft YaHei', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:10px;
  5755. }
  5756. #u55386 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:1676px;
  5760. top:294px;
  5761. width:159px;
  5762. height:25px;
  5763. display:flex;
  5764. font-family:'Microsoft YaHei', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:10px;
  5768. }
  5769. #u55386 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 2px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u55386_div.disabled {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:159px;
  5782. height:25px;
  5783. background:inherit;
  5784. background-color:rgba(240, 240, 240, 1);
  5785. border:none;
  5786. border-radius:0px;
  5787. -moz-box-shadow:none;
  5788. -webkit-box-shadow:none;
  5789. box-shadow:none;
  5790. font-family:'Microsoft YaHei', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:10px;
  5794. }
  5795. #u55386.disabled {
  5796. }
  5797. #u55387_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:25px;
  5803. height:30px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 0);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. color:#3399FF;
  5816. line-height:30px;
  5817. }
  5818. #u55387 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1666px;
  5822. top:332px;
  5823. width:25px;
  5824. height:30px;
  5825. display:flex;
  5826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:12px;
  5830. color:#3399FF;
  5831. line-height:30px;
  5832. }
  5833. #u55387 .text {
  5834. position:absolute;
  5835. align-self:flex-start;
  5836. padding:0px 0px 0px 0px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u55387_text {
  5841. border-width:0px;
  5842. white-space:nowrap;
  5843. text-transform:none;
  5844. }
  5845. #u55388_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:25px;
  5851. height:30px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 0);
  5854. border:none;
  5855. border-radius:0px;
  5856. -moz-box-shadow:none;
  5857. -webkit-box-shadow:none;
  5858. box-shadow:none;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. color:#7F7F7F;
  5864. line-height:30px;
  5865. }
  5866. #u55388 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:1703px;
  5870. top:332px;
  5871. width:25px;
  5872. height:30px;
  5873. display:flex;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. color:#7F7F7F;
  5879. line-height:30px;
  5880. }
  5881. #u55388 .text {
  5882. position:absolute;
  5883. align-self:flex-start;
  5884. padding:0px 0px 0px 0px;
  5885. box-sizing:border-box;
  5886. width:100%;
  5887. }
  5888. #u55388_text {
  5889. border-width:0px;
  5890. white-space:nowrap;
  5891. text-transform:none;
  5892. }
  5893. #u55389_div {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:25px;
  5899. height:30px;
  5900. background:inherit;
  5901. background-color:rgba(255, 255, 255, 0);
  5902. border:none;
  5903. border-radius:0px;
  5904. -moz-box-shadow:none;
  5905. -webkit-box-shadow:none;
  5906. box-shadow:none;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:12px;
  5911. color:#7F7F7F;
  5912. line-height:30px;
  5913. }
  5914. #u55389 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1739px;
  5918. top:332px;
  5919. width:25px;
  5920. height:30px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#7F7F7F;
  5927. line-height:30px;
  5928. }
  5929. #u55389 .text {
  5930. position:absolute;
  5931. align-self:flex-start;
  5932. padding:0px 0px 0px 0px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u55389_text {
  5937. border-width:0px;
  5938. white-space:nowrap;
  5939. text-transform:none;
  5940. }
  5941. #u55390_div {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:25px;
  5947. height:30px;
  5948. background:inherit;
  5949. background-color:rgba(255, 255, 255, 0);
  5950. border:none;
  5951. border-radius:0px;
  5952. -moz-box-shadow:none;
  5953. -webkit-box-shadow:none;
  5954. box-shadow:none;
  5955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:12px;
  5959. color:#7F7F7F;
  5960. line-height:30px;
  5961. }
  5962. #u55390 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:1776px;
  5966. top:332px;
  5967. width:25px;
  5968. height:30px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:12px;
  5974. color:#7F7F7F;
  5975. line-height:30px;
  5976. }
  5977. #u55390 .text {
  5978. position:absolute;
  5979. align-self:flex-start;
  5980. padding:0px 0px 0px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u55390_text {
  5985. border-width:0px;
  5986. white-space:nowrap;
  5987. text-transform:none;
  5988. }
  5989. #u55391_img {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:41px;
  5995. height:41px;
  5996. }
  5997. #u55391 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:452px;
  6001. top:497px;
  6002. width:41px;
  6003. height:41px;
  6004. display:flex;
  6005. }
  6006. #u55391 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:2px 2px 2px 2px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u55391_text {
  6014. border-width:0px;
  6015. word-wrap:break-word;
  6016. text-transform:none;
  6017. visibility:hidden;
  6018. }
  6019. #u55392 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:0px;
  6025. height:0px;
  6026. }
  6027. #u55393_div {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:129px;
  6033. height:30px;
  6034. background:inherit;
  6035. background-color:rgba(127, 127, 127, 1);
  6036. border:none;
  6037. border-radius:4px;
  6038. -moz-box-shadow:none;
  6039. -webkit-box-shadow:none;
  6040. box-shadow:none;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. color:#FFFFFF;
  6045. text-align:right;
  6046. }
  6047. #u55393 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:479px;
  6051. top:472px;
  6052. width:129px;
  6053. height:30px;
  6054. display:flex;
  6055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. color:#FFFFFF;
  6059. text-align:right;
  6060. }
  6061. #u55393 .text {
  6062. position:absolute;
  6063. align-self:center;
  6064. padding:0px 10px 0px 0px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u55393_text {
  6069. border-width:0px;
  6070. word-wrap:break-word;
  6071. text-transform:none;
  6072. }
  6073. #u55394_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:44px;
  6079. height:30px;
  6080. background:inherit;
  6081. background-color:rgba(112, 182, 3, 1);
  6082. border:none;
  6083. border-right:0px;
  6084. border-radius:4px;
  6085. border-top-right-radius:0px;
  6086. border-bottom-right-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. color:#FFFFFF;
  6094. }
  6095. #u55394 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:479px;
  6099. top:472px;
  6100. width:44px;
  6101. height:30px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. color:#FFFFFF;
  6107. }
  6108. #u55394 .text {
  6109. position:absolute;
  6110. align-self:center;
  6111. padding:0px 0px 0px 10px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u55394_text {
  6116. border-width:0px;
  6117. word-wrap:break-word;
  6118. text-transform:none;
  6119. }
  6120. #u55395_img {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:41px;
  6126. height:41px;
  6127. }
  6128. #u55395 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:1056px;
  6132. top:284px;
  6133. width:41px;
  6134. height:41px;
  6135. display:flex;
  6136. }
  6137. #u55395 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:2px 2px 2px 2px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u55395_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. visibility:hidden;
  6149. }
  6150. #u55396 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:0px;
  6156. height:0px;
  6157. }
  6158. #u55397_div {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:129px;
  6164. height:30px;
  6165. background:inherit;
  6166. background-color:rgba(127, 127, 127, 1);
  6167. border:none;
  6168. border-radius:4px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. color:#FFFFFF;
  6176. text-align:right;
  6177. }
  6178. #u55397 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:1083px;
  6182. top:259px;
  6183. width:129px;
  6184. height:30px;
  6185. display:flex;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. color:#FFFFFF;
  6190. text-align:right;
  6191. }
  6192. #u55397 .text {
  6193. position:absolute;
  6194. align-self:center;
  6195. padding:0px 10px 0px 0px;
  6196. box-sizing:border-box;
  6197. width:100%;
  6198. }
  6199. #u55397_text {
  6200. border-width:0px;
  6201. word-wrap:break-word;
  6202. text-transform:none;
  6203. }
  6204. #u55398_div {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:44px;
  6210. height:30px;
  6211. background:inherit;
  6212. background-color:rgba(217, 0, 27, 1);
  6213. border:none;
  6214. border-right:0px;
  6215. border-radius:4px;
  6216. border-top-right-radius:0px;
  6217. border-bottom-right-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. color:#FFFFFF;
  6225. }
  6226. #u55398 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:1083px;
  6230. top:259px;
  6231. width:44px;
  6232. height:30px;
  6233. display:flex;
  6234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. color:#FFFFFF;
  6238. }
  6239. #u55398 .text {
  6240. position:absolute;
  6241. align-self:center;
  6242. padding:0px 0px 0px 10px;
  6243. box-sizing:border-box;
  6244. width:100%;
  6245. }
  6246. #u55398_text {
  6247. border-width:0px;
  6248. word-wrap:break-word;
  6249. text-transform:none;
  6250. }
  6251. #u55399_div {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:674px;
  6257. height:240px;
  6258. background:inherit;
  6259. background-color:rgba(255, 255, 255, 0);
  6260. border:none;
  6261. border-left:0px;
  6262. border-top:0px;
  6263. border-right:0px;
  6264. border-radius:0px;
  6265. border-bottom-right-radius:0px;
  6266. border-bottom-left-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6271. font-weight:500;
  6272. font-style:normal;
  6273. font-size:18px;
  6274. color:#D9001B;
  6275. line-height:40px;
  6276. }
  6277. #u55399 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:423px;
  6281. top:622px;
  6282. width:674px;
  6283. height:240px;
  6284. display:flex;
  6285. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6286. font-weight:500;
  6287. font-style:normal;
  6288. font-size:18px;
  6289. color:#D9001B;
  6290. line-height:40px;
  6291. }
  6292. #u55399 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:0px 0px 0px 0px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u55399_text {
  6300. border-width:0px;
  6301. white-space:nowrap;
  6302. text-transform:none;
  6303. }
  6304. #u55400_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:80px;
  6310. height:30px;
  6311. background:inherit;
  6312. background-color:rgba(242, 242, 242, 1);
  6313. border:none;
  6314. border-radius:4px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. text-align:center;
  6322. }
  6323. #u55400 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:1499px;
  6327. top:61px;
  6328. width:80px;
  6329. height:30px;
  6330. display:flex;
  6331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. text-align:center;
  6335. }
  6336. #u55400 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:0px 0px 0px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u55400_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. }
  6348. #u55401_div {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:80px;
  6354. height:30px;
  6355. background:inherit;
  6356. background-color:rgba(51, 153, 255, 1);
  6357. border:none;
  6358. border-right:0px;
  6359. border-radius:4px;
  6360. border-top-right-radius:0px;
  6361. border-bottom-right-radius:0px;
  6362. -moz-box-shadow:none;
  6363. -webkit-box-shadow:none;
  6364. box-shadow:none;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. color:#FFFFFF;
  6369. text-align:center;
  6370. }
  6371. #u55401 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:1419px;
  6375. top:61px;
  6376. width:80px;
  6377. height:30px;
  6378. display:flex;
  6379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. color:#FFFFFF;
  6383. text-align:center;
  6384. }
  6385. #u55401 .text {
  6386. position:absolute;
  6387. align-self:center;
  6388. padding:0px 0px 0px 0px;
  6389. box-sizing:border-box;
  6390. width:100%;
  6391. }
  6392. #u55401_text {
  6393. border-width:0px;
  6394. word-wrap:break-word;
  6395. text-transform:none;
  6396. }
  6397. #u55402_img {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:41px;
  6403. height:41px;
  6404. }
  6405. #u55402 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:760px;
  6409. top:343px;
  6410. width:41px;
  6411. height:41px;
  6412. display:flex;
  6413. }
  6414. #u55402 .text {
  6415. position:absolute;
  6416. align-self:center;
  6417. padding:2px 2px 2px 2px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u55402_text {
  6422. border-width:0px;
  6423. word-wrap:break-word;
  6424. text-transform:none;
  6425. visibility:hidden;
  6426. }
  6427. #u55403 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:0px;
  6433. height:0px;
  6434. }
  6435. #u55404_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:129px;
  6441. height:30px;
  6442. background:inherit;
  6443. background-color:rgba(127, 127, 127, 1);
  6444. border:none;
  6445. border-radius:4px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. color:#FFFFFF;
  6453. text-align:center;
  6454. }
  6455. #u55404 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:787px;
  6459. top:318px;
  6460. width:129px;
  6461. height:30px;
  6462. display:flex;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. color:#FFFFFF;
  6467. text-align:center;
  6468. }
  6469. #u55404 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:0px 10px 0px 0px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u55404_text {
  6477. border-width:0px;
  6478. word-wrap:break-word;
  6479. text-transform:none;
  6480. }
  6481. #u55405_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:310px;
  6487. height:465px;
  6488. background:inherit;
  6489. background-color:rgba(127, 127, 127, 0.756862745098039);
  6490. border:none;
  6491. border-radius:4px;
  6492. -moz-box-shadow:none;
  6493. -webkit-box-shadow:none;
  6494. box-shadow:none;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. color:#FFFFFF;
  6499. text-align:right;
  6500. }
  6501. #u55405 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:1235px;
  6505. top:131px;
  6506. width:310px;
  6507. height:465px;
  6508. display:flex;
  6509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. color:#FFFFFF;
  6513. text-align:right;
  6514. }
  6515. #u55405 .text {
  6516. position:absolute;
  6517. align-self:center;
  6518. padding:0px 0px 0px 0px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u55405_text {
  6523. border-width:0px;
  6524. word-wrap:break-word;
  6525. text-transform:none;
  6526. visibility:hidden;
  6527. }
  6528. #u55406_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:310px;
  6534. height:580px;
  6535. background:inherit;
  6536. background-color:rgba(127, 127, 127, 0.756862745098039);
  6537. border:none;
  6538. border-radius:4px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. color:#FFFFFF;
  6546. text-align:right;
  6547. }
  6548. #u55406 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:1235px;
  6552. top:609px;
  6553. width:310px;
  6554. height:580px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. color:#FFFFFF;
  6560. text-align:right;
  6561. }
  6562. #u55406 .text {
  6563. position:absolute;
  6564. align-self:center;
  6565. padding:0px 0px 0px 0px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u55406_text {
  6570. border-width:0px;
  6571. word-wrap:break-word;
  6572. text-transform:none;
  6573. visibility:hidden;
  6574. }
  6575. #u55407_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:102px;
  6581. height:25px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 0);
  6584. border:none;
  6585. border-radius:0px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:18px;
  6593. }
  6594. #u55407 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:1262px;
  6598. top:341px;
  6599. width:102px;
  6600. height:25px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:18px;
  6606. }
  6607. #u55407 .text {
  6608. position:absolute;
  6609. align-self:flex-start;
  6610. padding:0px 0px 0px 0px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u55407_text {
  6615. border-width:0px;
  6616. white-space:nowrap;
  6617. text-transform:none;
  6618. }
  6619. #u55408_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:223px;
  6625. height:125px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 0);
  6628. border:none;
  6629. border-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. line-height:25px;
  6637. }
  6638. #u55408 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:1262px;
  6642. top:386px;
  6643. width:223px;
  6644. height:125px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. line-height:25px;
  6650. }
  6651. #u55408 .text {
  6652. position:absolute;
  6653. align-self:flex-start;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u55408_text {
  6659. border-width:0px;
  6660. white-space:nowrap;
  6661. text-transform:none;
  6662. }
  6663. #u55409_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:71px;
  6669. height:20px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 0);
  6672. border:none;
  6673. border-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. color:#0089FE;
  6681. }
  6682. #u55409 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:1451px;
  6686. top:551px;
  6687. width:71px;
  6688. height:20px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. color:#0089FE;
  6694. }
  6695. #u55409 .text {
  6696. position:absolute;
  6697. align-self:flex-start;
  6698. padding:0px 0px 0px 0px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u55409_text {
  6703. border-width:0px;
  6704. white-space:nowrap;
  6705. text-transform:none;
  6706. }
  6707. #u55410_img {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:104px;
  6713. height:104px;
  6714. }
  6715. #u55410 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:1278px;
  6719. top:657px;
  6720. width:104px;
  6721. height:104px;
  6722. display:flex;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. }
  6727. #u55410 .text {
  6728. position:absolute;
  6729. align-self:center;
  6730. padding:2px 2px 2px 2px;
  6731. box-sizing:border-box;
  6732. width:100%;
  6733. }
  6734. #u55410_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. }
  6739. #u55411_div {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:91px;
  6745. height:150px;
  6746. background:inherit;
  6747. background-color:rgba(255, 255, 255, 0);
  6748. border:none;
  6749. border-radius:0px;
  6750. -moz-box-shadow:none;
  6751. -webkit-box-shadow:none;
  6752. box-shadow:none;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. line-height:30px;
  6757. }
  6758. #u55411 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1400px;
  6762. top:634px;
  6763. width:91px;
  6764. height:150px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. line-height:30px;
  6770. }
  6771. #u55411 .text {
  6772. position:absolute;
  6773. align-self:flex-start;
  6774. padding:0px 0px 0px 0px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u55411_text {
  6779. border-width:0px;
  6780. white-space:nowrap;
  6781. text-transform:none;
  6782. }
  6783. #u55412_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:282px;
  6789. height:40px;
  6790. background:inherit;
  6791. background-color:rgba(51, 51, 51, 0.376470588235294);
  6792. border:none;
  6793. border-radius:4px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:18px;
  6801. text-align:center;
  6802. }
  6803. #u55412 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:1249px;
  6807. top:817px;
  6808. width:282px;
  6809. height:40px;
  6810. display:flex;
  6811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:18px;
  6815. text-align:center;
  6816. }
  6817. #u55412 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:0px 0px 0px 20px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u55412_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. }
  6829. #u55413_div {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:63px;
  6835. height:17px;
  6836. background:inherit;
  6837. background-color:rgba(255, 255, 255, 0);
  6838. border:none;
  6839. border-radius:0px;
  6840. -moz-box-shadow:none;
  6841. -webkit-box-shadow:none;
  6842. box-shadow:none;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:12px;
  6847. }
  6848. #u55413 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:1464px;
  6852. top:346px;
  6853. width:63px;
  6854. height:17px;
  6855. display:flex;
  6856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6857. font-weight:400;
  6858. font-style:normal;
  6859. font-size:12px;
  6860. }
  6861. #u55413 .text {
  6862. position:absolute;
  6863. align-self:flex-start;
  6864. padding:0px 0px 0px 0px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u55413_text {
  6869. border-width:0px;
  6870. white-space:nowrap;
  6871. text-transform:none;
  6872. }
  6873. #u55414_div {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:65px;
  6879. height:180px;
  6880. background:inherit;
  6881. background-color:rgba(255, 255, 255, 0);
  6882. border:none;
  6883. border-radius:0px;
  6884. -moz-box-shadow:none;
  6885. -webkit-box-shadow:none;
  6886. box-shadow:none;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. line-height:30px;
  6891. }
  6892. #u55414 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:1262px;
  6896. top:979px;
  6897. width:65px;
  6898. height:180px;
  6899. display:flex;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. line-height:30px;
  6904. }
  6905. #u55414 .text {
  6906. position:absolute;
  6907. align-self:flex-start;
  6908. padding:0px 0px 0px 0px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u55414_text {
  6913. border-width:0px;
  6914. white-space:nowrap;
  6915. text-transform:none;
  6916. }
  6917. #u55415_div {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:29px;
  6923. height:180px;
  6924. background:inherit;
  6925. background-color:rgba(255, 255, 255, 0);
  6926. border:none;
  6927. border-radius:0px;
  6928. -moz-box-shadow:none;
  6929. -webkit-box-shadow:none;
  6930. box-shadow:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. text-align:right;
  6935. line-height:30px;
  6936. }
  6937. #u55415 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:1496px;
  6941. top:979px;
  6942. width:29px;
  6943. height:180px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. text-align:right;
  6949. line-height:30px;
  6950. }
  6951. #u55415 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u55415_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u55416_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:136px;
  6969. height:40px;
  6970. background:inherit;
  6971. background-color:rgba(51, 51, 51, 0.376470588235294);
  6972. border:none;
  6973. border-radius:4px;
  6974. -moz-box-shadow:none;
  6975. -webkit-box-shadow:none;
  6976. box-shadow:none;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. }
  6981. #u55416 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:1249px;
  6985. top:867px;
  6986. width:136px;
  6987. height:40px;
  6988. display:flex;
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. }
  6993. #u55416 .text {
  6994. position:absolute;
  6995. align-self:center;
  6996. padding:0px 0px 0px 20px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u55416_text {
  7001. border-width:0px;
  7002. word-wrap:break-word;
  7003. text-transform:none;
  7004. }
  7005. #u55417_div {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:136px;
  7011. height:40px;
  7012. background:inherit;
  7013. background-color:rgba(51, 51, 51, 0.376470588235294);
  7014. border:none;
  7015. border-radius:4px;
  7016. -moz-box-shadow:none;
  7017. -webkit-box-shadow:none;
  7018. box-shadow:none;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. }
  7023. #u55417 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:1249px;
  7027. top:917px;
  7028. width:136px;
  7029. height:40px;
  7030. display:flex;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. }
  7035. #u55417 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:0px 0px 0px 20px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u55417_text {
  7043. border-width:0px;
  7044. word-wrap:break-word;
  7045. text-transform:none;
  7046. }
  7047. #u55418_div {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:136px;
  7053. height:40px;
  7054. background:inherit;
  7055. background-color:rgba(51, 51, 51, 0.376470588235294);
  7056. border:none;
  7057. border-radius:4px;
  7058. -moz-box-shadow:none;
  7059. -webkit-box-shadow:none;
  7060. box-shadow:none;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. }
  7065. #u55418 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:1395px;
  7069. top:867px;
  7070. width:136px;
  7071. height:40px;
  7072. display:flex;
  7073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. }
  7077. #u55418 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:0px 0px 0px 20px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u55418_text {
  7085. border-width:0px;
  7086. word-wrap:break-word;
  7087. text-transform:none;
  7088. }
  7089. #u55419_div {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:136px;
  7095. height:40px;
  7096. background:inherit;
  7097. background-color:rgba(51, 51, 51, 0.376470588235294);
  7098. border:none;
  7099. border-radius:4px;
  7100. -moz-box-shadow:none;
  7101. -webkit-box-shadow:none;
  7102. box-shadow:none;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. }
  7107. #u55419 {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:1395px;
  7111. top:917px;
  7112. width:136px;
  7113. height:40px;
  7114. display:flex;
  7115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7116. font-weight:400;
  7117. font-style:normal;
  7118. }
  7119. #u55419 .text {
  7120. position:absolute;
  7121. align-self:center;
  7122. padding:0px 0px 0px 20px;
  7123. box-sizing:border-box;
  7124. width:100%;
  7125. }
  7126. #u55419_text {
  7127. border-width:0px;
  7128. word-wrap:break-word;
  7129. text-transform:none;
  7130. }
  7131. #u55420_img {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:256px;
  7137. height:176px;
  7138. }
  7139. #u55420 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1262px;
  7143. top:145px;
  7144. width:256px;
  7145. height:176px;
  7146. display:flex;
  7147. }
  7148. #u55420 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u55420_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. visibility:hidden;
  7160. }
  7161. #u55421_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:91px;
  7167. height:25px;
  7168. background:inherit;
  7169. background-color:rgba(255, 255, 255, 0);
  7170. border:none;
  7171. border-radius:0px;
  7172. -moz-box-shadow:none;
  7173. -webkit-box-shadow:none;
  7174. box-shadow:none;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:18px;
  7179. }
  7180. #u55421 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:370px;
  7184. top:119px;
  7185. width:91px;
  7186. height:25px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:18px;
  7192. }
  7193. #u55421 .text {
  7194. position:absolute;
  7195. align-self:flex-start;
  7196. padding:0px 0px 0px 0px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u55421_text {
  7201. border-width:0px;
  7202. white-space:nowrap;
  7203. text-transform:none;
  7204. }
  7205. #u55422_div {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:0px;
  7209. top:0px;
  7210. width:91px;
  7211. height:25px;
  7212. background:inherit;
  7213. background-color:rgba(255, 255, 255, 0);
  7214. border:none;
  7215. border-radius:0px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:18px;
  7223. }
  7224. #u55422 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:489px;
  7228. top:119px;
  7229. width:91px;
  7230. height:25px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:18px;
  7236. }
  7237. #u55422 .text {
  7238. position:absolute;
  7239. align-self:flex-start;
  7240. padding:0px 0px 0px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u55422_text {
  7245. border-width:0px;
  7246. white-space:nowrap;
  7247. text-transform:none;
  7248. }
  7249. #u55423_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:73px;
  7255. height:25px;
  7256. background:inherit;
  7257. background-color:rgba(255, 255, 255, 0);
  7258. border:none;
  7259. border-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:18px;
  7267. }
  7268. #u55423 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:618px;
  7272. top:119px;
  7273. width:73px;
  7274. height:25px;
  7275. display:flex;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:18px;
  7280. }
  7281. #u55423 .text {
  7282. position:absolute;
  7283. align-self:flex-start;
  7284. padding:0px 0px 0px 0px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u55423_text {
  7289. border-width:0px;
  7290. white-space:nowrap;
  7291. text-transform:none;
  7292. }
  7293. #u55424 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:0px;
  7299. height:0px;
  7300. }
  7301. #u55425_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:200px;
  7307. height:1180px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 1);
  7310. border:none;
  7311. border-radius:0px;
  7312. -moz-box-shadow:none;
  7313. -webkit-box-shadow:none;
  7314. box-shadow:none;
  7315. }
  7316. #u55425 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:120px;
  7320. top:51px;
  7321. width:200px;
  7322. height:1180px;
  7323. display:flex;
  7324. }
  7325. #u55425 .text {
  7326. position:absolute;
  7327. align-self:center;
  7328. padding:2px 2px 2px 2px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u55425_text {
  7333. border-width:0px;
  7334. word-wrap:break-word;
  7335. text-transform:none;
  7336. visibility:hidden;
  7337. }
  7338. #u55426_div {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:200px;
  7344. height:60px;
  7345. background:inherit;
  7346. background-color:rgba(224, 231, 247, 1);
  7347. border:none;
  7348. border-radius:0px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7353. font-weight:500;
  7354. font-style:normal;
  7355. font-size:18px;
  7356. }
  7357. #u55426 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:120px;
  7361. top:51px;
  7362. width:200px;
  7363. height:60px;
  7364. display:flex;
  7365. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7366. font-weight:500;
  7367. font-style:normal;
  7368. font-size:18px;
  7369. }
  7370. #u55426 .text {
  7371. position:absolute;
  7372. align-self:center;
  7373. padding:0px 0px 0px 20px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u55426_text {
  7378. border-width:0px;
  7379. word-wrap:break-word;
  7380. text-transform:none;
  7381. }
  7382. #u55427_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:65px;
  7388. height:22px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 0);
  7391. border:none;
  7392. border-radius:0px;
  7393. -moz-box-shadow:none;
  7394. -webkit-box-shadow:none;
  7395. box-shadow:none;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:16px;
  7400. }
  7401. #u55427 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:142px;
  7405. top:162px;
  7406. width:65px;
  7407. height:22px;
  7408. display:flex;
  7409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7410. font-weight:400;
  7411. font-style:normal;
  7412. font-size:16px;
  7413. }
  7414. #u55427 .text {
  7415. position:absolute;
  7416. align-self:flex-start;
  7417. padding:0px 0px 0px 0px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u55427_text {
  7422. border-width:0px;
  7423. white-space:nowrap;
  7424. text-transform:none;
  7425. }
  7426. #u55428_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:49px;
  7432. height:17px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 0);
  7435. border:none;
  7436. border-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:12px;
  7444. color:#AAAAAA;
  7445. }
  7446. #u55428 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:142px;
  7450. top:126px;
  7451. width:49px;
  7452. height:17px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:12px;
  7458. color:#AAAAAA;
  7459. }
  7460. #u55428 .text {
  7461. position:absolute;
  7462. align-self:flex-start;
  7463. padding:0px 0px 0px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u55428_text {
  7468. border-width:0px;
  7469. white-space:nowrap;
  7470. text-transform:none;
  7471. }
  7472. #u55429_img {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:201px;
  7478. height:2px;
  7479. }
  7480. #u55429 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:120px;
  7484. top:246px;
  7485. width:200px;
  7486. height:1px;
  7487. display:flex;
  7488. }
  7489. #u55429 .text {
  7490. position:absolute;
  7491. align-self:center;
  7492. padding:2px 2px 2px 2px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u55429_text {
  7497. border-width:0px;
  7498. word-wrap:break-word;
  7499. text-transform:none;
  7500. visibility:hidden;
  7501. }
  7502. #u55430_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:65px;
  7508. height:22px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 0);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:16px;
  7520. }
  7521. #u55430 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:142px;
  7525. top:302px;
  7526. width:65px;
  7527. height:22px;
  7528. display:flex;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:16px;
  7533. }
  7534. #u55430 .text {
  7535. position:absolute;
  7536. align-self:flex-start;
  7537. padding:0px 0px 0px 0px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u55430_text {
  7542. border-width:0px;
  7543. white-space:nowrap;
  7544. text-transform:none;
  7545. }
  7546. #u55431_div {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:49px;
  7552. height:17px;
  7553. background:inherit;
  7554. background-color:rgba(255, 255, 255, 0);
  7555. border:none;
  7556. border-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:12px;
  7564. color:#AAAAAA;
  7565. }
  7566. #u55431 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:142px;
  7570. top:266px;
  7571. width:49px;
  7572. height:17px;
  7573. display:flex;
  7574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7575. font-weight:400;
  7576. font-style:normal;
  7577. font-size:12px;
  7578. color:#AAAAAA;
  7579. }
  7580. #u55431 .text {
  7581. position:absolute;
  7582. align-self:flex-start;
  7583. padding:0px 0px 0px 0px;
  7584. box-sizing:border-box;
  7585. width:100%;
  7586. }
  7587. #u55431_text {
  7588. border-width:0px;
  7589. white-space:nowrap;
  7590. text-transform:none;
  7591. }
  7592. #u55432_div {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:0px;
  7596. top:0px;
  7597. width:65px;
  7598. height:22px;
  7599. background:inherit;
  7600. background-color:rgba(255, 255, 255, 0);
  7601. border:none;
  7602. border-radius:0px;
  7603. -moz-box-shadow:none;
  7604. -webkit-box-shadow:none;
  7605. box-shadow:none;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:16px;
  7610. }
  7611. #u55432 {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:142px;
  7615. top:344px;
  7616. width:65px;
  7617. height:22px;
  7618. display:flex;
  7619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:16px;
  7623. }
  7624. #u55432 .text {
  7625. position:absolute;
  7626. align-self:flex-start;
  7627. padding:0px 0px 0px 0px;
  7628. box-sizing:border-box;
  7629. width:100%;
  7630. }
  7631. #u55432_text {
  7632. border-width:0px;
  7633. white-space:nowrap;
  7634. text-transform:none;
  7635. }
  7636. #u55433_div {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:65px;
  7642. height:22px;
  7643. background:inherit;
  7644. background-color:rgba(255, 255, 255, 0);
  7645. border:none;
  7646. border-radius:0px;
  7647. -moz-box-shadow:none;
  7648. -webkit-box-shadow:none;
  7649. box-shadow:none;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:16px;
  7654. }
  7655. #u55433 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:142px;
  7659. top:204px;
  7660. width:65px;
  7661. height:22px;
  7662. display:flex;
  7663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7664. font-weight:400;
  7665. font-style:normal;
  7666. font-size:16px;
  7667. }
  7668. #u55433 .text {
  7669. position:absolute;
  7670. align-self:flex-start;
  7671. padding:0px 0px 0px 0px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u55433_text {
  7676. border-width:0px;
  7677. white-space:nowrap;
  7678. text-transform:none;
  7679. }