styles.css 133 KB

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