styles.css 123 KB

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